diff --git a/.github/configs/nvidia-master.yaml b/.github/configs/nvidia-master.yaml index 5ac22d28b..3449ef449 100644 --- a/.github/configs/nvidia-master.yaml +++ b/.github/configs/nvidia-master.yaml @@ -4782,12 +4782,84 @@ gemma4-bf16-h100-vllm: osl: 1024 benchmark-client: [aiperf] search-space: - - { tp: 2, conc-start: 4, conc-end: 32 } - - isl: 8192 - osl: 1024 + - { tp: 2, conc-start: 1, conc-end: 1, max-num-batched-tokens: 4096 } + +# Agentic-replay pair (vLLM vs SGLang) on google/gemma-4-31B-it, 2x H100 / TP=2 / +# fp8, both cache-ON, driven by AIPerf over the committed 64k agentic-coding trace +# (first 1000 records). Distinct model-prefix `gemma4-agentic` so the launcher +# resolves dedicated trace-replay scripts (gemma4-agentic_...) rather than the +# fixed-seq-len gemma4_*.sh. context-length 73728 covers the <=66,655 session- +# cumulative max of the #1000 subset (AIPerf threads each mooncake session, so +# context ACCUMULATES across turns; sizing from per-record input_length truncates). +# The "xiu" (slight) inequivalence vs SGLang is the established gemma4 recipe: vLLM +# does on-the-fly fp8 over google/gemma-4-31B-it; SGLang uses the pre-quantized +# RedHatAI/gemma-4-31B-it-FP8-dynamic (its on-the-fly fp8 crashes on the vision tower). +gemma4-agentic-fp8-h100-2x-vllm: + image: vllm/vllm-openai:v0.21.0 + model: google/gemma-4-31B-it + model-prefix: gemma4-agentic + runner: h100-2x + precision: fp8 + framework: vllm + multinode: false + scenarios: + agentic-replay: + - input-file: benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl#1000 + custom-dataset-type: mooncake_trace + max-model-len: 73728 + benchmark-client: [aiperf] + search-space: + - { tp: 2, conc-list: [16] } + +gemma4-agentic-fp8-h100-2x-sglang: + image: lmsysorg/sglang:v0.5.12-cu130 + model: RedHatAI/gemma-4-31B-it-FP8-dynamic + model-prefix: gemma4-agentic + runner: h100-2x + precision: fp8 + framework: sglang + multinode: false + scenarios: + agentic-replay: + - input-file: benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl#1000 + custom-dataset-type: mooncake_trace + max-model-len: 73728 + benchmark-client: [aiperf] + search-space: + - { tp: 2, conc-list: [16] } + +qwen3-4b-2507-bf16-h100-vllm: + image: vllm/vllm-openai:v0.21.0 + model: Qwen/Qwen3-4B-Instruct-2507 + model-prefix: qwen3-4b-2507 + runner: h100-2x + precision: bf16 + framework: vllm + multinode: false + # Qwen3-4B-Instruct-2507 is a dense Qwen3ForCausalLM transformer (256K native + # context, no rope-scaling), so vLLM V1 keeps automatic prefix caching ON by + # default. It replaces the prior Qwen/Qwen3.5-4B, a hybrid-Mamba model for which + # vLLM auto-DISABLES prefix caching (observed 0% hit rate on the agentic trace). + scenarios: + agentic-replay: + - input-file: benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl + custom-dataset-type: mooncake_trace + max-model-len: 8192 + benchmark-client: [aiperf] + search-space: + - { tp: 1, conc-list: [2] } + # 64k agentic-coding trace (committed in-repo), first 2000 records replayed + # at concurrency 32. AIPerf threads each mooncake session (session_id), so + # context ACCUMULATES across turns: the realized per-request total reaches + # ~65,847 tokens (the "64k" target), NOT the per-record input_length max of + # 37,818. max-model-len 73728 covers that with headroom; 40960 rejected ~55% + # of requests with HTTP 400 (input+output > context window). + - input-file: benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl#2000 + custom-dataset-type: mooncake_trace + max-model-len: 73728 benchmark-client: [aiperf] search-space: - - { tp: 2, conc-start: 4, conc-end: 32 } + - { tp: 1, conc-list: [32] } minimaxm2.5-fp8-h100-vllm: image: vllm/vllm-openai:v0.21.0 diff --git a/.github/workflows/benchmark-tmpl.yml b/.github/workflows/benchmark-tmpl.yml index c74e0b007..1aec07747 100644 --- a/.github/workflows/benchmark-tmpl.yml +++ b/.github/workflows/benchmark-tmpl.yml @@ -101,6 +101,16 @@ on: required: false type: string default: '1800' + input-file: + description: "Repo-relative trace JSONL for agentic-replay (mooncake_trace)" + required: false + type: string + default: '' + custom-dataset-type: + description: "AIPerf --custom-dataset-type for agentic-replay (e.g. mooncake_trace)" + required: false + type: string + default: '' env: RANDOM_RANGE_RATIO: 0.8 HF_TOKEN: ${{ secrets.HF_TOKEN }} @@ -131,6 +141,8 @@ env: OFFLOADING: ${{ inputs.offloading }} TOTAL_CPU_DRAM_GB: ${{ inputs.total-cpu-dram-gb }} DURATION: ${{ inputs.duration }} + INPUT_FILE: ${{ inputs.input-file }} + CUSTOM_DATASET_TYPE: ${{ inputs.custom-dataset-type }} RESULT_DIR: /workspace/results PYTHONDONTWRITEBYTECODE: '1' PYTHONPYCACHEPREFIX: /tmp/inferencex-pycache diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index b5cfa7cec..c7821e463 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -51,6 +51,7 @@ jobs: multi-node-eval-config: ${{ steps.get-jobs.outputs.multi-node-eval-config }} agentic-config: ${{ steps.get-jobs.outputs.agentic-config }} multi-node-agentic-config: ${{ steps.get-jobs.outputs.multi-node-agentic-config }} + agentic-replay-config: ${{ steps.get-jobs.outputs.agentic-replay-config }} steps: - name: Checkout code (ref) if: ${{ inputs.ref && inputs.ref != '' }} @@ -71,12 +72,14 @@ jobs: ${{ inputs.generate-cli-command || github.event.inputs.generate-cli-command }}) AGENTIC=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if x.get('scenario-type') == 'agentic-coding' and 'prefill' not in x]))") MULTI_AGENTIC=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if x.get('scenario-type') == 'agentic-coding' and 'prefill' in x]))") - SINGLE=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' not in x and x.get('scenario-type') != 'agentic-coding' and not x.get('eval-only', False)]))") + AGENTIC_REPLAY=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if x.get('scenario-type') == 'agentic-replay' and 'prefill' not in x]))") + SINGLE=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' not in x and x.get('scenario-type') not in ('agentic-coding', 'agentic-replay') and not x.get('eval-only', False)]))") MULTI=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' in x and x.get('scenario-type') != 'agentic-coding' and not x.get('eval-only', False)]))") - EVALS=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' not in x and x.get('scenario-type') != 'agentic-coding' and x.get('run-eval', False)]))") + EVALS=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' not in x and x.get('scenario-type') not in ('agentic-coding', 'agentic-replay') and x.get('run-eval', False)]))") MULTI_EVAL=$(echo "$CONFIG_JSON" | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps([x for x in d if 'prefill' in x and x.get('run-eval', False)]))") echo "agentic-config=$AGENTIC" >> $GITHUB_OUTPUT echo "multi-node-agentic-config=$MULTI_AGENTIC" >> $GITHUB_OUTPUT + echo "agentic-replay-config=$AGENTIC_REPLAY" >> $GITHUB_OUTPUT echo "single-node-config=$SINGLE" >> $GITHUB_OUTPUT echo "multi-node-config=$MULTI" >> $GITHUB_OUTPUT echo "eval-config=$EVALS" >> $GITHUB_OUTPUT @@ -269,6 +272,41 @@ jobs: run-eval: false ref: ${{ inputs.ref }} + test-sweep-agentic-replay: + needs: get-jobs + if: ${{ needs.get-jobs.outputs.agentic-replay-config != '[]' }} + uses: ./.github/workflows/benchmark-tmpl.yml + name: agentic-replay / + strategy: + fail-fast: false + matrix: + config: ${{ fromJson(needs.get-jobs.outputs.agentic-replay-config) }} + secrets: inherit + with: + exp-name: ${{ matrix.config.exp-name }} + runner: ${{ matrix.config.runner }} + image: ${{ matrix.config.image }} + model: ${{ matrix.config.model }} + model-prefix: ${{ matrix.config.model-prefix }} + framework: ${{ matrix.config.framework }} + benchmark-client: ${{ matrix.config.benchmark-client }} + precision: ${{ matrix.config.precision }} + tp: ${{ matrix.config.tp }} + ep: ${{ matrix.config.ep }} + dp-attn: ${{ matrix.config.dp-attn }} + conc: ${{ matrix.config.conc }} + isl: ${{ matrix.config.isl }} + osl: ${{ matrix.config.osl }} + max-model-len: ${{ matrix.config.max-model-len }} + input-file: ${{ matrix.config.input-file }} + custom-dataset-type: ${{ matrix.config.custom-dataset-type }} + duration: ${{ inputs.duration-override != '' && inputs.duration-override || matrix.config.duration }} + spec-decoding: 'none' + disagg: 'false' + run-eval: false + scenario-type: agentic-replay + ref: ${{ inputs.ref }} + test-sweep-evals: needs: get-jobs if: ${{ needs.get-jobs.outputs.eval-config != '[]' }} @@ -304,8 +342,8 @@ jobs: ref: ${{ inputs.ref }} collect-results: - needs: [test-sweep-multi-node, test-sweep-single-node, test-sweep-agentic, test-sweep-multi-node-agentic] - if: ${{ always() && (needs.test-sweep-multi-node.result != 'skipped' || needs.test-sweep-single-node.result != 'skipped' || needs.test-sweep-agentic.result != 'skipped' || needs.test-sweep-multi-node-agentic.result != 'skipped') }} + needs: [test-sweep-multi-node, test-sweep-single-node, test-sweep-agentic, test-sweep-multi-node-agentic, test-sweep-agentic-replay] + if: ${{ always() && (needs.test-sweep-multi-node.result != 'skipped' || needs.test-sweep-single-node.result != 'skipped' || needs.test-sweep-agentic.result != 'skipped' || needs.test-sweep-multi-node-agentic.result != 'skipped' || needs.test-sweep-agentic-replay.result != 'skipped') }} uses: ./.github/workflows/collect-results.yml secrets: inherit with: diff --git a/.github/workflows/run-sweep.yml b/.github/workflows/run-sweep.yml index dd683dd95..f9650b453 100644 --- a/.github/workflows/run-sweep.yml +++ b/.github/workflows/run-sweep.yml @@ -265,6 +265,40 @@ jobs: run-eval: false scenario-type: agentic-coding + sweep-single-node-agentic-replay: + needs: setup + if: ${{ needs.setup.outputs.reuse-enabled != 'true' && toJson(fromJson(needs.setup.outputs.search-space-config).single_node['agentic-replay']) != 'null' }} + uses: ./.github/workflows/benchmark-tmpl.yml + name: agentic-replay / + strategy: + fail-fast: false + matrix: + config: ${{ fromJson(needs.setup.outputs.search-space-config).single_node['agentic-replay'] }} + secrets: inherit + with: + exp-name: ${{ matrix.config.exp-name }} + runner: ${{ matrix.config.runner }} + image: ${{ matrix.config.image }} + model: ${{ matrix.config.model }} + model-prefix: ${{ matrix.config.model-prefix }} + framework: ${{ matrix.config.framework }} + benchmark-client: ${{ matrix.config.benchmark-client }} + precision: ${{ matrix.config.precision }} + tp: ${{ matrix.config.tp }} + ep: ${{ matrix.config.ep }} + dp-attn: ${{ matrix.config.dp-attn }} + conc: ${{ matrix.config.conc }} + isl: ${{ matrix.config.isl }} + osl: ${{ matrix.config.osl }} + max-model-len: ${{ matrix.config.max-model-len }} + input-file: ${{ matrix.config.input-file }} + custom-dataset-type: ${{ matrix.config.custom-dataset-type }} + duration: ${{ matrix.config.duration }} + spec-decoding: 'none' + disagg: ${{ 'false' }} + run-eval: false + scenario-type: agentic-replay + sweep-multi-node-agentic: needs: setup if: ${{ needs.setup.outputs.reuse-enabled != 'true' && toJson(fromJson(needs.setup.outputs.search-space-config).multi_node['agentic']) != 'null' }} @@ -381,6 +415,7 @@ jobs: sweep-single-node-1k1k, sweep-single-node-8k1k, sweep-agentic, + sweep-single-node-agentic-replay, sweep-multi-node-1k1k, sweep-multi-node-8k1k, sweep-multi-node-agentic, @@ -393,6 +428,7 @@ jobs: ( needs.sweep-single-node-1k1k.result != 'skipped' || needs.sweep-single-node-8k1k.result != 'skipped' || + needs.sweep-single-node-agentic-replay.result != 'skipped' || needs.sweep-multi-node-1k1k.result != 'skipped' || needs.sweep-multi-node-8k1k.result != 'skipped' ) @@ -534,6 +570,7 @@ jobs: always() && github.event_name == 'pull_request' && needs.collect-results.result == 'success' + continue-on-error: true runs-on: ubuntu-latest env: diff --git a/benchmarks/benchmark_lib.sh b/benchmarks/benchmark_lib.sh index 6e8515444..da5b32644 100644 --- a/benchmarks/benchmark_lib.sh +++ b/benchmarks/benchmark_lib.sh @@ -614,6 +614,12 @@ run_client_benchmark() { local use_chat_template=false local dsv4=false local trust_remote_code=false + # Agentic-replay (trace) path: when --input-file is set, the benchmark + # replays a recorded mooncake_trace JSONL through AIPerf instead of a + # synthetic isl/osl workload. Only the aiperf client supports this. + local input_file="" + local custom_dataset_type="" + local request_count="" while [[ $# -gt 0 ]]; do case $1 in @@ -630,6 +636,9 @@ run_client_benchmark() { --bench-serving-dir) bench_serving_dir="$2"; shift 2 ;; --server-pid) server_pid="$2"; shift 2 ;; --random-seed) random_seed="$2"; shift 2 ;; + --input-file) input_file="$2"; shift 2 ;; + --custom-dataset-type) custom_dataset_type="$2"; shift 2 ;; + --request-count) request_count="$2"; shift 2 ;; --use-chat-template) use_chat_template=true; shift ;; --dsv4) dsv4=true; use_chat_template=true; shift ;; --trust-remote-code) trust_remote_code=true; shift ;; @@ -640,9 +649,13 @@ run_client_benchmark() { if [[ -z "$model" ]]; then echo "Error: --model is required"; return 1; fi if [[ -z "$port" ]]; then echo "Error: --port is required"; return 1; fi if [[ -z "$backend" ]]; then echo "Error: --backend is required"; return 1; fi - if [[ -z "$isl" ]]; then echo "Error: --isl is required"; return 1; fi - if [[ -z "$osl" ]]; then echo "Error: --osl is required"; return 1; fi - if [[ -z "$random_range_ratio" ]]; then echo "Error: --random-range-ratio is required"; return 1; fi + # isl/osl/random-range-ratio describe a synthetic workload; they are not + # required when replaying a recorded trace via --input-file. + if [[ -z "$input_file" ]]; then + if [[ -z "$isl" ]]; then echo "Error: --isl is required"; return 1; fi + if [[ -z "$osl" ]]; then echo "Error: --osl is required"; return 1; fi + if [[ -z "$random_range_ratio" ]]; then echo "Error: --random-range-ratio is required"; return 1; fi + fi if [[ -z "$concurrency" ]]; then echo "Error: --concurrency is required"; return 1; fi if [[ -z "$result_filename" ]]; then echo "Error: --result-filename is required"; return 1; fi if [[ -z "$result_dir" ]]; then echo "Error: --result-dir is required"; return 1; fi @@ -658,20 +671,42 @@ run_client_benchmark() { --url "http://0.0.0.0:$port" --endpoint-type "$endpoint_type" --concurrency "$concurrency" - --request-count "$((concurrency * 10))" - --warmup-request-count "$((concurrency * 2))" - --isl "$isl" - --osl "$osl" --result-filename "$result_filename" --result-dir "$result_dir" --bench-serving-dir "$bench_serving_dir" ) + if [[ -n "$input_file" ]]; then + # Trace replay: replay the recorded dataset once. request-count + # equals the dataset record count; isl/osl and warmup do not + # apply (the trace defines per-request lengths). + if [[ -z "$request_count" ]]; then + echo "Error: --request-count is required when --input-file is set"; return 1 + fi + aiperf_args+=( + --request-count "$request_count" + --input-file "$input_file" + ) + if [[ -n "$custom_dataset_type" ]]; then + aiperf_args+=(--custom-dataset-type "$custom_dataset_type") + fi + else + aiperf_args+=( + --request-count "$((concurrency * 10))" + --warmup-request-count "$((concurrency * 2))" + --isl "$isl" + --osl "$osl" + ) + fi if [[ -n "$random_seed" ]]; then aiperf_args+=(--random-seed "$random_seed") fi run_aiperf_benchmark "${aiperf_args[@]}" ;; inferencex_native) + if [[ -n "$input_file" ]]; then + echo "Error: --input-file (trace replay) is only supported with BENCHMARK_CLIENT=aiperf" + return 1 + fi local native_args=( --model "$model" --port "$port" diff --git a/benchmarks/single_node/agentic/datasets/agentic-coding-128k.jsonl b/benchmarks/single_node/agentic/datasets/agentic-coding-128k.jsonl new file mode 100644 index 000000000..0b8ee77ef --- /dev/null +++ b/benchmarks/single_node/agentic/datasets/agentic-coding-128k.jsonl @@ -0,0 +1,16957 @@ +{"session_id":"sess-c1ff91a76156","input_length":52502,"output_length":80,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502],"timestamp":0.0,"group_id":7} +{"session_id":"sess-c1ff91a76156","input_length":740,"output_length":658,"hash_ids":[1503,1504],"delay":16714.3} +{"session_id":"sess-c1ff91a76156","input_length":735,"output_length":113,"hash_ids":[1505,1506],"delay":3027.6} +{"session_id":"sess-c1ff91a76156","input_length":902,"output_length":256,"hash_ids":[1507,1508],"delay":13918.9} +{"session_id":"sess-c1ff91a76156","input_length":3017,"output_length":463,"hash_ids":[1509,1510,1511,1512,1513,1514],"delay":27639.0} +{"session_id":"sess-c1ff91a76156","input_length":774,"output_length":939,"hash_ids":[1515,1516],"delay":9735.2} +{"session_id":"sess-c1ff91a76156","input_length":4192,"output_length":519,"hash_ids":[1517,1518,1519,1520,1521,1522,1523,1524,1525],"delay":576.0} +{"session_id":"sess-c1ff91a76156","input_length":2547,"output_length":376,"hash_ids":[1526,1527,1528,1529,1530],"delay":16824.9} +{"session_id":"sess-c1ff91a76156","input_length":4100,"output_length":217,"hash_ids":[1531,1532,1533,1534,1535,1536,1537,1538,1539],"delay":1107.1} +{"session_id":"sess-c1ff91a76156","input_length":729,"output_length":54,"hash_ids":[1540,1541],"delay":595.2} +{"session_id":"sess-c1ff91a76156","input_length":4496,"output_length":210,"hash_ids":[1542,1543,1544,1545,1546,1547,1548,1549,1550],"delay":24238.7} +{"session_id":"sess-c1ff91a76156","input_length":454,"output_length":118,"hash_ids":[1551],"delay":1881.5} +{"session_id":"sess-c1ff91a76156","input_length":1209,"output_length":564,"hash_ids":[1552,1553,1554],"delay":1045.2} +{"session_id":"sess-c1ff91a76156","input_length":1302,"output_length":89,"hash_ids":[1555,1556,1557],"delay":1327.5} +{"session_id":"sess-c1ff91a76156","input_length":3447,"output_length":587,"hash_ids":[1558,1559,1560,1561,1562,1563,1564],"delay":612.6} +{"session_id":"sess-c1ff91a76156","input_length":282,"output_length":78,"hash_ids":[1565],"delay":608.3} +{"session_id":"sess-c1ff91a76156","input_length":1280,"output_length":209,"hash_ids":[1566,1567,1568],"delay":4894.4} +{"session_id":"sess-c1ff91a76156","input_length":661,"output_length":701,"hash_ids":[1569,1570],"delay":9478.7} +{"session_id":"sess-c1ff91a76156","input_length":997,"output_length":322,"hash_ids":[1571,1572],"delay":1170.8} +{"session_id":"sess-c1ff91a76156","input_length":1502,"output_length":359,"hash_ids":[1573,1574,1575],"delay":11415.3} +{"session_id":"sess-c1ff91a76156","input_length":2988,"output_length":90,"hash_ids":[1576,1577,1578,1579,1580,1581],"delay":2361.2} +{"session_id":"sess-c1ff91a76156","input_length":404,"output_length":239,"hash_ids":[1582],"delay":352.9} +{"session_id":"sess-c1ff91a76156","input_length":5205,"output_length":456,"hash_ids":[1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593],"delay":13974.5} +{"session_id":"sess-c1ff91a76156","input_length":775,"output_length":161,"hash_ids":[1594,1595],"delay":121.2} +{"session_id":"sess-c1ff91a76156","input_length":1648,"output_length":55,"hash_ids":[1596,1597,1598,1599],"delay":1587.6} +{"session_id":"sess-c1ff91a76156","input_length":6149,"output_length":90,"hash_ids":[1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612],"delay":621.5} +{"session_id":"sess-c1ff91a76156","input_length":5207,"output_length":769,"hash_ids":[1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623],"delay":322.8} +{"session_id":"sess-c1ff91a76156","input_length":930,"output_length":189,"hash_ids":[1624,1625],"delay":460.5} +{"session_id":"sess-c1ff91a76156","input_length":2381,"output_length":400,"hash_ids":[1626,1627,1628,1629,1630],"delay":179.0} +{"session_id":"sess-c1ff91a76156","input_length":7091,"output_length":1416,"hash_ids":[1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644],"delay":568.6} +{"session_id":"sess-c1ff91a76156","input_length":1609,"output_length":1314,"hash_ids":[1645,1646,1647,1648],"delay":145.9} +{"session_id":"sess-2495d27f0a93","input_length":78222,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,204063,204064,204065,204066,204067,204068,204069,204070,204071,204072,204073,204074,204075,204076,204077,204078,204079,204080,204081,204082,204083,204084,204085,204086,204087,204088,204089,204090,204091,204092,204093,204094,204095,204096,204097,204098,204099,204100,204101,204102,204103,204104,204105,204106,204107,204108,204109,204110,204111,204112],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2495d27f0a93","input_length":748,"output_length":123,"hash_ids":[204113,204114],"delay":178.5} +{"session_id":"sess-2495d27f0a93","input_length":2051,"output_length":491,"hash_ids":[204115,204116,204117,204118,204119],"delay":3565.3} +{"session_id":"sess-2495d27f0a93","input_length":3682,"output_length":256,"hash_ids":[204120,204121,204122,204123,204124,204125,204126,204127],"delay":693.8} +{"session_id":"sess-2495d27f0a93","input_length":2427,"output_length":328,"hash_ids":[204128,204129,204130,204131,204132],"delay":15094.1} +{"session_id":"sess-2495d27f0a93","input_length":1421,"output_length":165,"hash_ids":[204133,204134,204135],"delay":3798.0} +{"session_id":"sess-2495d27f0a93","input_length":931,"output_length":254,"hash_ids":[204136,204137],"delay":2153.7} +{"session_id":"sess-2495d27f0a93","input_length":1776,"output_length":68,"hash_ids":[204138,204139,204140,204141],"delay":519.8} +{"session_id":"sess-2495d27f0a93","input_length":512,"output_length":423,"hash_ids":[204142],"delay":273.3} +{"session_id":"sess-2495d27f0a93","input_length":4852,"output_length":205,"hash_ids":[204143,204144,204145,204146,204147,204148,204149,204150,204151,204152],"delay":8427.4} +{"session_id":"sess-2495d27f0a93","input_length":1456,"output_length":171,"hash_ids":[204153,204154,204155],"delay":233.5} +{"session_id":"sess-2495d27f0a93","input_length":2970,"output_length":300,"hash_ids":[204156,204157,204158,204159,204160,204161],"delay":1575.9} +{"session_id":"sess-2495d27f0a93","input_length":3089,"output_length":97,"hash_ids":[204162,204163,204164,204165,204166,204167,204168],"delay":8328.4} +{"session_id":"sess-2495d27f0a93","input_length":264,"output_length":474,"hash_ids":[204169],"delay":13754.3} +{"session_id":"sess-2495d27f0a93","input_length":2103,"output_length":270,"hash_ids":[204170,204171,204172,204173,204174],"delay":11079.8} +{"session_id":"sess-2495d27f0a93","input_length":102,"output_length":358,"hash_ids":[204175],"delay":667.0} +{"session_id":"sess-2495d27f0a93","input_length":2890,"output_length":63,"hash_ids":[204176,204177,204178,204179,204180,204181],"delay":433.0} +{"session_id":"sess-2495d27f0a93","input_length":587,"output_length":1116,"hash_ids":[204182,204183],"delay":421.2} +{"session_id":"sess-2495d27f0a93","input_length":3285,"output_length":467,"hash_ids":[204184,204185,204186,204187,204188,204189,204190],"delay":23597.5} +{"session_id":"sess-2495d27f0a93","input_length":885,"output_length":91,"hash_ids":[204191,204192],"delay":7321.1} +{"session_id":"sess-2495d27f0a93","input_length":4706,"output_length":627,"hash_ids":[204193,204194,204195,204196,204197,204198,204199,204200,204201,204202],"delay":410.7} +{"session_id":"sess-2495d27f0a93","input_length":1089,"output_length":571,"hash_ids":[204203,204204,204205],"delay":1902.1} +{"session_id":"sess-2495d27f0a93","input_length":486,"output_length":411,"hash_ids":[204206],"delay":5846.5} +{"session_id":"sess-2495d27f0a93","input_length":2812,"output_length":455,"hash_ids":[204207,204208,204209,204210,204211,204212],"delay":648.9} +{"session_id":"sess-c836a2b80919","input_length":54552,"output_length":682,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,208063,208064,208065,208066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c836a2b80919","input_length":2704,"output_length":258,"hash_ids":[208067,208068,208069,208070,208071,208072],"delay":1450.1} +{"session_id":"sess-c836a2b80919","input_length":584,"output_length":1341,"hash_ids":[208073,208074],"delay":1587.5} +{"session_id":"sess-c836a2b80919","input_length":5242,"output_length":1149,"hash_ids":[208075,208076,208077,208078,208079,208080,208081,208082,208083,208084,208085],"delay":592.7} +{"session_id":"sess-c836a2b80919","input_length":1562,"output_length":1518,"hash_ids":[208086,208087,208088,208089],"delay":25714.3} +{"session_id":"sess-c836a2b80919","input_length":312,"output_length":59,"hash_ids":[208090],"delay":1148.3} +{"session_id":"sess-c836a2b80919","input_length":2722,"output_length":30,"hash_ids":[208091,208092,208093,208094,208095,208096],"delay":1473.8} +{"session_id":"sess-c836a2b80919","input_length":4448,"output_length":153,"hash_ids":[208097,208098,208099,208100,208101,208102,208103,208104,208105],"delay":21713.6} +{"session_id":"sess-c836a2b80919","input_length":3648,"output_length":250,"hash_ids":[208106,208107,208108,208109,208110,208111,208112,208113],"delay":1763.4} +{"session_id":"sess-c836a2b80919","input_length":3611,"output_length":266,"hash_ids":[208114,208115,208116,208117,208118,208119,208120,208121],"delay":8632.9} +{"session_id":"sess-c836a2b80919","input_length":358,"output_length":151,"hash_ids":[208122],"delay":172.6} +{"session_id":"sess-c836a2b80919","input_length":6953,"output_length":279,"hash_ids":[208123,208124,208125,208126,208127,208128,208129,208130,208131,208132,208133,208134,208135,208136],"delay":14490.0} +{"session_id":"sess-c836a2b80919","input_length":2201,"output_length":164,"hash_ids":[208137,208138,208139,208140,208141],"delay":723.3} +{"session_id":"sess-c836a2b80919","input_length":5001,"output_length":74,"hash_ids":[208142,208143,208144,208145,208146,208147,208148,208149,208150,208151],"delay":7420.0} +{"session_id":"sess-c836a2b80919","input_length":1702,"output_length":766,"hash_ids":[208152,208153,208154,208155],"delay":300.8} +{"session_id":"sess-c836a2b80919","input_length":931,"output_length":247,"hash_ids":[208156,208157],"delay":440.9} +{"session_id":"sess-c836a2b80919","input_length":1333,"output_length":882,"hash_ids":[208158,208159,208160],"delay":886.4} +{"session_id":"sess-c836a2b80919","input_length":1702,"output_length":2155,"hash_ids":[208161,208162,208163,208164],"delay":1588.7} +{"session_id":"sess-c836a2b80919","input_length":6850,"output_length":420,"hash_ids":[208165,208166,208167,208168,208169,208170,208171,208172,208173,208174,208175,208176,208177,208178],"delay":650.9} +{"session_id":"sess-c836a2b80919","input_length":316,"output_length":96,"hash_ids":[208179],"delay":666.0} +{"session_id":"sess-c836a2b80919","input_length":652,"output_length":198,"hash_ids":[208180,208181],"delay":400.8} +{"session_id":"sess-c836a2b80919","input_length":1338,"output_length":94,"hash_ids":[208182,208183,208184],"delay":581.1} +{"session_id":"sess-c836a2b80919","input_length":2200,"output_length":283,"hash_ids":[208185,208186,208187,208188,208189],"delay":578.9} +{"session_id":"sess-c836a2b80919","input_length":741,"output_length":557,"hash_ids":[208190,208191],"delay":243.5} +{"session_id":"sess-c836a2b80919","input_length":1423,"output_length":219,"hash_ids":[208192,208193,208194],"delay":1076.7} +{"session_id":"sess-c836a2b80919","input_length":199,"output_length":1190,"hash_ids":[208195],"delay":96.3} +{"session_id":"sess-c836a2b80919","input_length":64,"output_length":465,"hash_ids":[208196],"delay":234.6} +{"session_id":"sess-c836a2b80919","input_length":1405,"output_length":274,"hash_ids":[208197,208198,208199],"delay":592.8} +{"session_id":"sess-c836a2b80919","input_length":895,"output_length":1556,"hash_ids":[208200,208201],"delay":510.5} +{"session_id":"sess-fb63cbd73fa5","input_length":58776,"output_length":1458,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,212063,212064,212065,212066,212067,212068,212069,212070,212071,212072,212073,212074],"timestamp":0.0,"group_id":10} +{"session_id":"sess-fb63cbd73fa5","input_length":3335,"output_length":571,"hash_ids":[212075,212076,212077,212078,212079,212080,212081],"delay":538.3} +{"session_id":"sess-fb63cbd73fa5","input_length":799,"output_length":130,"hash_ids":[212082,212083],"delay":2793.1} +{"session_id":"sess-fb63cbd73fa5","input_length":1647,"output_length":108,"hash_ids":[212084,212085,212086,212087],"delay":939.6} +{"session_id":"sess-fb63cbd73fa5","input_length":3761,"output_length":2346,"hash_ids":[212088,212089,212090,212091,212092,212093,212094,212095],"delay":1825.8} +{"session_id":"sess-fb63cbd73fa5","input_length":602,"output_length":122,"hash_ids":[212096,212097],"delay":798.8} +{"session_id":"sess-fb63cbd73fa5","input_length":818,"output_length":633,"hash_ids":[212098,212099],"delay":1300.9} +{"session_id":"sess-fb63cbd73fa5","input_length":2459,"output_length":280,"hash_ids":[212100,212101,212102,212103,212104],"delay":578.3} +{"session_id":"sess-fb63cbd73fa5","input_length":369,"output_length":1059,"hash_ids":[212105],"delay":457.1} +{"session_id":"sess-fb63cbd73fa5","input_length":521,"output_length":101,"hash_ids":[212106,212107],"delay":1263.0} +{"session_id":"sess-fb63cbd73fa5","input_length":753,"output_length":1528,"hash_ids":[212108,212109],"delay":4660.8} +{"session_id":"sess-fb63cbd73fa5","input_length":451,"output_length":177,"hash_ids":[212110],"delay":2559.2} +{"session_id":"sess-fb63cbd73fa5","input_length":3587,"output_length":1087,"hash_ids":[212111,212112,212113,212114,212115,212116,212117,212118],"delay":2217.0} +{"session_id":"sess-fb63cbd73fa5","input_length":4772,"output_length":54,"hash_ids":[212119,212120,212121,212122,212123,212124,212125,212126,212127,212128],"delay":507.9} +{"session_id":"sess-fb63cbd73fa5","input_length":383,"output_length":132,"hash_ids":[212129],"delay":340.1} +{"session_id":"sess-fb63cbd73fa5","input_length":975,"output_length":192,"hash_ids":[212130,212131],"delay":13723.4} +{"session_id":"sess-fb63cbd73fa5","input_length":3409,"output_length":197,"hash_ids":[212132,212133,212134,212135,212136,212137,212138],"delay":957.0} +{"session_id":"sess-fb63cbd73fa5","input_length":1240,"output_length":219,"hash_ids":[212139,212140,212141],"delay":314.1} +{"session_id":"sess-fb63cbd73fa5","input_length":3863,"output_length":66,"hash_ids":[212142,212143,212144,212145,212146,212147,212148,212149],"delay":612.3} +{"session_id":"sess-fb63cbd73fa5","input_length":1341,"output_length":558,"hash_ids":[212150,212151,212152],"delay":10983.2} +{"session_id":"sess-fb63cbd73fa5","input_length":2393,"output_length":1942,"hash_ids":[212153,212154,212155,212156,212157],"delay":1696.1} +{"session_id":"sess-db9e90f6153b","input_length":52682,"output_length":294,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-db9e90f6153b","input_length":276,"output_length":488,"hash_ids":[212158],"delay":925.3} +{"session_id":"sess-db9e90f6153b","input_length":2710,"output_length":79,"hash_ids":[212159,212160,212161,212162,212163,212164],"delay":152.0} +{"session_id":"sess-db9e90f6153b","input_length":3096,"output_length":684,"hash_ids":[212165,212166,212167,212168,212169,212170,212171],"delay":1566.0} +{"session_id":"sess-db9e90f6153b","input_length":1198,"output_length":667,"hash_ids":[212172,212173,212174],"delay":3158.0} +{"session_id":"sess-db9e90f6153b","input_length":2844,"output_length":785,"hash_ids":[212175,212176,212177,212178,212179,212180],"delay":775.1} +{"session_id":"sess-db9e90f6153b","input_length":136,"output_length":118,"hash_ids":[212181],"delay":7062.0} +{"session_id":"sess-db9e90f6153b","input_length":603,"output_length":866,"hash_ids":[212182,212183],"delay":2651.1} +{"session_id":"sess-db9e90f6153b","input_length":1533,"output_length":295,"hash_ids":[212184,212185,212186],"delay":510.4} +{"session_id":"sess-db9e90f6153b","input_length":1552,"output_length":61,"hash_ids":[212187,212188,212189,212190],"delay":450.0} +{"session_id":"sess-db9e90f6153b","input_length":1772,"output_length":30,"hash_ids":[212191,212192,212193,212194],"delay":768.2} +{"session_id":"sess-db9e90f6153b","input_length":2742,"output_length":94,"hash_ids":[212195,212196,212197,212198,212199,212200],"delay":473.7} +{"session_id":"sess-db9e90f6153b","input_length":3728,"output_length":397,"hash_ids":[212201,212202,212203,212204,212205,212206,212207,212208],"delay":1395.1} +{"session_id":"sess-db9e90f6153b","input_length":305,"output_length":825,"hash_ids":[212209],"delay":1744.0} +{"session_id":"sess-db9e90f6153b","input_length":2219,"output_length":1845,"hash_ids":[212210,212211,212212,212213,212214],"delay":402.6} +{"session_id":"sess-db9e90f6153b","input_length":2006,"output_length":107,"hash_ids":[212215,212216,212217,212218],"delay":656.5} +{"session_id":"sess-db9e90f6153b","input_length":684,"output_length":572,"hash_ids":[212219,212220],"delay":3591.3} +{"session_id":"sess-db9e90f6153b","input_length":4648,"output_length":423,"hash_ids":[212221,212222,212223,212224,212225,212226,212227,212228,212229,212230],"delay":2302.8} +{"session_id":"sess-db9e90f6153b","input_length":452,"output_length":1722,"hash_ids":[212231],"delay":833.5} +{"session_id":"sess-db9e90f6153b","input_length":2007,"output_length":99,"hash_ids":[212232,212233,212234,212235],"delay":946.1} +{"session_id":"sess-6050eb9300e4","input_length":57267,"output_length":244,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,220063,220064,220065,220066,220067,220068,220069,220070,220071],"timestamp":0.0,"group_id":24} +{"session_id":"sess-6050eb9300e4","input_length":468,"output_length":445,"hash_ids":[220072],"delay":1035.9} +{"session_id":"sess-6050eb9300e4","input_length":6716,"output_length":312,"hash_ids":[220073,220074,220075,220076,220077,220078,220079,220080,220081,220082,220083,220084,220085,220086],"delay":42414.3} +{"session_id":"sess-6050eb9300e4","input_length":3066,"output_length":911,"hash_ids":[220087,220088,220089,220090,220091,220092],"delay":450.5} +{"session_id":"sess-8424c25b34cc","input_length":59214,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,224063,224064,224065,224066,224067,224068,224069,224070,224071,224072,224073,224074,224075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8424c25b34cc","input_length":1136,"output_length":92,"hash_ids":[224076,224077,224078],"delay":1434.4} +{"session_id":"sess-8424c25b34cc","input_length":2051,"output_length":1023,"hash_ids":[224079,224080,224081,224082,224083],"delay":250.9} +{"session_id":"sess-8424c25b34cc","input_length":539,"output_length":140,"hash_ids":[224084,224085],"delay":70136.7} +{"session_id":"sess-8424c25b34cc","input_length":1344,"output_length":310,"hash_ids":[224086,224087,224088],"delay":60643.4} +{"session_id":"sess-8424c25b34cc","input_length":3017,"output_length":709,"hash_ids":[224089,224090,224091,224092,224093,224094],"delay":16997.4} +{"session_id":"sess-8424c25b34cc","input_length":1125,"output_length":309,"hash_ids":[224095,224096,224097],"delay":2283.8} +{"session_id":"sess-8424c25b34cc","input_length":3232,"output_length":588,"hash_ids":[224098,224099,224100,224101,224102,224103,224104],"delay":1032.7} +{"session_id":"sess-8424c25b34cc","input_length":2181,"output_length":694,"hash_ids":[224105,224106,224107,224108,224109],"delay":305.1} +{"session_id":"sess-8424c25b34cc","input_length":1876,"output_length":108,"hash_ids":[224110,224111,224112,224113],"delay":684.3} +{"session_id":"sess-8424c25b34cc","input_length":206,"output_length":239,"hash_ids":[224114],"delay":2048.7} +{"session_id":"sess-8424c25b34cc","input_length":5905,"output_length":91,"hash_ids":[224115,224116,224117,224118,224119,224120,224121,224122,224123,224124,224125,224126],"delay":15902.5} +{"session_id":"sess-8424c25b34cc","input_length":1204,"output_length":53,"hash_ids":[224127,224128,224129],"delay":1077.5} +{"session_id":"sess-8424c25b34cc","input_length":2070,"output_length":866,"hash_ids":[224130,224131,224132,224133,224134],"delay":533.4} +{"session_id":"sess-8424c25b34cc","input_length":336,"output_length":332,"hash_ids":[224135],"delay":405.1} +{"session_id":"sess-8424c25b34cc","input_length":1526,"output_length":321,"hash_ids":[224136,224137,224138],"delay":6091.9} +{"session_id":"sess-8424c25b34cc","input_length":3757,"output_length":813,"hash_ids":[224139,224140,224141,224142,224143,224144,224145,224146],"delay":15948.5} +{"session_id":"sess-8424c25b34cc","input_length":9539,"output_length":217,"hash_ids":[224147,224148,224149,224150,224151,224152,224153,224154,224155,224156,224157,224158,224159,224160,224161,224162,224163,224164,224165],"delay":17093.0} +{"session_id":"sess-8424c25b34cc","input_length":1634,"output_length":252,"hash_ids":[224166,224167,224168,224169],"delay":4971.0} +{"session_id":"sess-8424c25b34cc","input_length":1993,"output_length":974,"hash_ids":[224170,224171,224172,224173],"delay":499.1} +{"session_id":"sess-8424c25b34cc","input_length":525,"output_length":776,"hash_ids":[224174,224175],"delay":14214.6} +{"session_id":"sess-8424c25b34cc","input_length":3487,"output_length":401,"hash_ids":[224176,224177,224178,224179,224180,224181,224182],"delay":666.4} +{"session_id":"sess-8424c25b34cc","input_length":3079,"output_length":52,"hash_ids":[224183,224184,224185,224186,224187,224188,224189],"delay":675.6} +{"session_id":"sess-8424c25b34cc","input_length":870,"output_length":183,"hash_ids":[224190,224191],"delay":701.5} +{"session_id":"sess-8424c25b34cc","input_length":2302,"output_length":268,"hash_ids":[224192,224193,224194,224195,224196],"delay":465.5} +{"session_id":"sess-8424c25b34cc","input_length":841,"output_length":310,"hash_ids":[224197,224198],"delay":145.2} +{"session_id":"sess-8424c25b34cc","input_length":4032,"output_length":104,"hash_ids":[224199,224200,224201,224202,224203,224204,224205,224206],"delay":391.5} +{"session_id":"sess-c44d8b86cf14","input_length":59769,"output_length":568,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,228063,228064,228065,228066,228067,228068,228069,228070,228071,228072,228073,228074,228075,228076],"timestamp":0.0,"group_id":6} +{"session_id":"sess-c44d8b86cf14","input_length":1134,"output_length":1338,"hash_ids":[228077,228078,228079],"delay":1495.3} +{"session_id":"sess-c44d8b86cf14","input_length":2973,"output_length":339,"hash_ids":[228080,228081,228082,228083,228084,228085],"delay":3264.8} +{"session_id":"sess-c44d8b86cf14","input_length":853,"output_length":569,"hash_ids":[228086,228087],"delay":14126.7} +{"session_id":"sess-c44d8b86cf14","input_length":1285,"output_length":439,"hash_ids":[228088,228089,228090],"delay":1402.1} +{"session_id":"sess-c44d8b86cf14","input_length":293,"output_length":106,"hash_ids":[228091],"delay":3360.1} +{"session_id":"sess-c44d8b86cf14","input_length":4046,"output_length":412,"hash_ids":[228092,228093,228094,228095,228096,228097,228098,228099],"delay":829.6} +{"session_id":"sess-c44d8b86cf14","input_length":1300,"output_length":311,"hash_ids":[228100,228101,228102],"delay":1631.6} +{"session_id":"sess-c44d8b86cf14","input_length":2501,"output_length":489,"hash_ids":[228103,228104,228105,228106,228107],"delay":2266.9} +{"session_id":"sess-c44d8b86cf14","input_length":1040,"output_length":594,"hash_ids":[228108,228109,228110],"delay":939.4} +{"session_id":"sess-c44d8b86cf14","input_length":2226,"output_length":125,"hash_ids":[228111,228112,228113,228114,228115],"delay":2034.0} +{"session_id":"sess-c44d8b86cf14","input_length":3279,"output_length":244,"hash_ids":[228116,228117,228118,228119,228120,228121,228122],"delay":4909.0} +{"session_id":"sess-c44d8b86cf14","input_length":2353,"output_length":338,"hash_ids":[228123,228124,228125,228126,228127],"delay":49499.3} +{"session_id":"sess-c44d8b86cf14","input_length":1169,"output_length":156,"hash_ids":[228128,228129,228130],"delay":729.9} +{"session_id":"sess-c44d8b86cf14","input_length":1811,"output_length":97,"hash_ids":[228131,228132,228133,228134],"delay":339.8} +{"session_id":"sess-c44d8b86cf14","input_length":2571,"output_length":165,"hash_ids":[228135,228136,228137,228138,228139,228140],"delay":216.8} +{"session_id":"sess-c44d8b86cf14","input_length":3260,"output_length":335,"hash_ids":[228141,228142,228143,228144,228145,228146,228147],"delay":9107.3} +{"session_id":"sess-c44d8b86cf14","input_length":4205,"output_length":164,"hash_ids":[228148,228149,228150,228151,228152,228153,228154,228155,228156],"delay":232.4} +{"session_id":"sess-c44d8b86cf14","input_length":929,"output_length":280,"hash_ids":[228157,228158],"delay":1279.6} +{"session_id":"sess-c44d8b86cf14","input_length":8292,"output_length":558,"hash_ids":[228159,228160,228161,228162,228163,228164,228165,228166,228167,228168,228169,228170,228171,228172,228173,228174,228175],"delay":985.1} +{"session_id":"sess-c44d8b86cf14","input_length":4442,"output_length":134,"hash_ids":[228176,228177,228178,228179,228180,228181,228182,228183,228184],"delay":861.9} +{"session_id":"sess-c44d8b86cf14","input_length":1447,"output_length":235,"hash_ids":[228185,228186,228187],"delay":1009.1} +{"session_id":"sess-c44d8b86cf14","input_length":1305,"output_length":110,"hash_ids":[228188,228189,228190],"delay":525.9} +{"session_id":"sess-f9dc29bfcc78","input_length":52423,"output_length":121,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f9dc29bfcc78","input_length":1637,"output_length":319,"hash_ids":[228191,228192,228193,228194],"delay":702.1} +{"session_id":"sess-f9dc29bfcc78","input_length":136,"output_length":173,"hash_ids":[228195],"delay":16794.3} +{"session_id":"sess-f9dc29bfcc78","input_length":1271,"output_length":849,"hash_ids":[228196,228197,228198],"delay":26360.9} +{"session_id":"sess-f9dc29bfcc78","input_length":1036,"output_length":335,"hash_ids":[228199,228200,228201],"delay":2583.4} +{"session_id":"sess-f9dc29bfcc78","input_length":386,"output_length":207,"hash_ids":[228202],"delay":1500.8} +{"session_id":"sess-f9dc29bfcc78","input_length":733,"output_length":1853,"hash_ids":[228203,228204],"delay":340.5} +{"session_id":"sess-f9dc29bfcc78","input_length":219,"output_length":109,"hash_ids":[228205],"delay":852.7} +{"session_id":"sess-f9dc29bfcc78","input_length":2350,"output_length":457,"hash_ids":[228206,228207,228208,228209,228210],"delay":7445.3} +{"session_id":"sess-c0e91f999cb4","input_length":56235,"output_length":1411,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,236063,236064,236065,236066,236067,236068,236069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c0e91f999cb4","input_length":480,"output_length":1345,"hash_ids":[236070],"delay":960.1} +{"session_id":"sess-c0e91f999cb4","input_length":3214,"output_length":155,"hash_ids":[236071,236072,236073,236074,236075,236076,236077],"delay":397.6} +{"session_id":"sess-c0e91f999cb4","input_length":2790,"output_length":182,"hash_ids":[236078,236079,236080,236081,236082,236083],"delay":623.9} +{"session_id":"sess-c0e91f999cb4","input_length":404,"output_length":30,"hash_ids":[236084],"delay":1145.9} +{"session_id":"sess-c0e91f999cb4","input_length":8770,"output_length":661,"hash_ids":[236085,236086,236087,236088,236089,236090,236091,236092,236093,236094,236095,236096,236097,236098,236099,236100,236101,236102],"delay":3139.2} +{"session_id":"sess-c0e91f999cb4","input_length":1018,"output_length":531,"hash_ids":[236103,236104],"delay":1492.2} +{"session_id":"sess-c0e91f999cb4","input_length":2187,"output_length":134,"hash_ids":[236105,236106,236107,236108,236109],"delay":385.4} +{"session_id":"sess-c0e91f999cb4","input_length":8634,"output_length":1645,"hash_ids":[236110,236111,236112,236113,236114,236115,236116,236117,236118,236119,236120,236121,236122,236123,236124,236125,236126],"delay":1472.9} +{"session_id":"sess-c0e91f999cb4","input_length":1230,"output_length":252,"hash_ids":[236127,236128,236129],"delay":1938.8} +{"session_id":"sess-c0e91f999cb4","input_length":789,"output_length":144,"hash_ids":[236130,236131],"delay":1751.5} +{"session_id":"sess-c0e91f999cb4","input_length":1135,"output_length":331,"hash_ids":[236132,236133,236134],"delay":1476.6} +{"session_id":"sess-c0e91f999cb4","input_length":1733,"output_length":585,"hash_ids":[236135,236136,236137,236138],"delay":538.8} +{"session_id":"sess-c0e91f999cb4","input_length":1284,"output_length":159,"hash_ids":[236139,236140,236141],"delay":1215.8} +{"session_id":"sess-c0e91f999cb4","input_length":1539,"output_length":33,"hash_ids":[236142,236143,236144,236145],"delay":449.5} +{"session_id":"sess-c0e91f999cb4","input_length":2643,"output_length":293,"hash_ids":[236146,236147,236148,236149,236150,236151],"delay":1357.7} +{"session_id":"sess-c0e91f999cb4","input_length":1193,"output_length":34,"hash_ids":[236152,236153,236154],"delay":1331.9} +{"session_id":"sess-c0e91f999cb4","input_length":923,"output_length":113,"hash_ids":[236155,236156],"delay":1322.7} +{"session_id":"sess-c0e91f999cb4","input_length":4723,"output_length":30,"hash_ids":[236157,236158,236159,236160,236161,236162,236163,236164,236165,236166],"delay":16528.9} +{"session_id":"sess-c0e91f999cb4","input_length":1326,"output_length":676,"hash_ids":[236167,236168,236169],"delay":1637.8} +{"session_id":"sess-c0e91f999cb4","input_length":1566,"output_length":66,"hash_ids":[236170,236171,236172,236173],"delay":14130.2} +{"session_id":"sess-c0e91f999cb4","input_length":1929,"output_length":378,"hash_ids":[236174,236175,236176,236177],"delay":304.1} +{"session_id":"sess-c0e91f999cb4","input_length":1716,"output_length":44,"hash_ids":[236178,236179,236180,236181],"delay":686.6} +{"session_id":"sess-c0e91f999cb4","input_length":3184,"output_length":481,"hash_ids":[236182,236183,236184,236185,236186,236187,236188],"delay":1055.1} +{"session_id":"sess-3f438d5e76d5","input_length":54111,"output_length":757,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,240063,240064,240065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3f438d5e76d5","input_length":446,"output_length":622,"hash_ids":[240066],"delay":28879.9} +{"session_id":"sess-3f438d5e76d5","input_length":1103,"output_length":232,"hash_ids":[240067,240068,240069],"delay":11498.6} +{"session_id":"sess-3f438d5e76d5","input_length":5350,"output_length":439,"hash_ids":[240070,240071,240072,240073,240074,240075,240076,240077,240078,240079,240080],"delay":2466.0} +{"session_id":"sess-3f438d5e76d5","input_length":5987,"output_length":693,"hash_ids":[240081,240082,240083,240084,240085,240086,240087,240088,240089,240090,240091,240092],"delay":51674.5} +{"session_id":"sess-3f438d5e76d5","input_length":3014,"output_length":358,"hash_ids":[240093,240094,240095,240096,240097,240098],"delay":14127.5} +{"session_id":"sess-3f438d5e76d5","input_length":72,"output_length":254,"hash_ids":[240099],"delay":45626.0} +{"session_id":"sess-3f438d5e76d5","input_length":565,"output_length":118,"hash_ids":[240100,240101],"delay":1075.0} +{"session_id":"sess-3f438d5e76d5","input_length":3374,"output_length":1970,"hash_ids":[240102,240103,240104,240105,240106,240107,240108],"delay":8100.7} +{"session_id":"sess-3f438d5e76d5","input_length":389,"output_length":216,"hash_ids":[240109],"delay":818.2} +{"session_id":"sess-3f438d5e76d5","input_length":4411,"output_length":579,"hash_ids":[240110,240111,240112,240113,240114,240115,240116,240117,240118],"delay":619.4} +{"session_id":"sess-3f438d5e76d5","input_length":324,"output_length":1195,"hash_ids":[240119],"delay":1321.6} +{"session_id":"sess-3f438d5e76d5","input_length":2045,"output_length":242,"hash_ids":[240120,240121,240122,240123],"delay":1931.6} +{"session_id":"sess-3f438d5e76d5","input_length":692,"output_length":761,"hash_ids":[240124,240125],"delay":2572.8} +{"session_id":"sess-3f438d5e76d5","input_length":678,"output_length":57,"hash_ids":[240126,240127],"delay":8716.2} +{"session_id":"sess-3f438d5e76d5","input_length":65,"output_length":931,"hash_ids":[240128],"delay":747.9} +{"session_id":"sess-3f438d5e76d5","input_length":1676,"output_length":1389,"hash_ids":[240129,240130,240131,240132],"delay":1070.2} +{"session_id":"sess-3f438d5e76d5","input_length":3564,"output_length":201,"hash_ids":[240133,240134,240135,240136,240137,240138,240139],"delay":7802.8} +{"session_id":"sess-3f438d5e76d5","input_length":2989,"output_length":144,"hash_ids":[240140,240141,240142,240143,240144,240145],"delay":652.6} +{"session_id":"sess-3f438d5e76d5","input_length":2074,"output_length":75,"hash_ids":[240146,240147,240148,240149,240150],"delay":988.3} +{"session_id":"sess-3f438d5e76d5","input_length":7246,"output_length":30,"hash_ids":[240151,240152,240153,240154,240155,240156,240157,240158,240159,240160,240161,240162,240163,240164,240165],"delay":156.7} +{"session_id":"sess-3f438d5e76d5","input_length":1261,"output_length":472,"hash_ids":[240166,240167,240168],"delay":1947.9} +{"session_id":"sess-3f438d5e76d5","input_length":4854,"output_length":728,"hash_ids":[240169,240170,240171,240172,240173,240174,240175,240176,240177,240178],"delay":616.5} +{"session_id":"sess-3f438d5e76d5","input_length":972,"output_length":159,"hash_ids":[240179,240180],"delay":656.8} +{"session_id":"sess-3f438d5e76d5","input_length":2873,"output_length":616,"hash_ids":[240181,240182,240183,240184,240185,240186],"delay":2308.1} +{"session_id":"sess-0201393b1811","input_length":56752,"output_length":2259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,244063,244064,244065,244066,244067,244068,244069,244070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0201393b1811","input_length":5561,"output_length":54,"hash_ids":[244071,244072,244073,244074,244075,244076,244077,244078,244079,244080,244081],"delay":1243.1} +{"session_id":"sess-0201393b1811","input_length":1376,"output_length":83,"hash_ids":[244082,244083,244084],"delay":54047.8} +{"session_id":"sess-0201393b1811","input_length":1213,"output_length":1007,"hash_ids":[244085,244086,244087],"delay":889.1} +{"session_id":"sess-0201393b1811","input_length":3756,"output_length":809,"hash_ids":[244088,244089,244090,244091,244092,244093,244094,244095],"delay":188.0} +{"session_id":"sess-0201393b1811","input_length":4697,"output_length":117,"hash_ids":[244096,244097,244098,244099,244100,244101,244102,244103,244104,244105],"delay":5524.4} +{"session_id":"sess-0201393b1811","input_length":2602,"output_length":1190,"hash_ids":[244106,244107,244108,244109,244110,244111],"delay":29720.6} +{"session_id":"sess-0201393b1811","input_length":3738,"output_length":61,"hash_ids":[244112,244113,244114,244115,244116,244117,244118,244119],"delay":5851.5} +{"session_id":"sess-0201393b1811","input_length":405,"output_length":143,"hash_ids":[244120],"delay":539.1} +{"session_id":"sess-0201393b1811","input_length":1259,"output_length":131,"hash_ids":[244121,244122,244123],"delay":1654.5} +{"session_id":"sess-0201393b1811","input_length":517,"output_length":627,"hash_ids":[244124,244125],"delay":6329.2} +{"session_id":"sess-0201393b1811","input_length":2935,"output_length":69,"hash_ids":[244126,244127,244128,244129,244130,244131],"delay":853.4} +{"session_id":"sess-0201393b1811","input_length":154,"output_length":998,"hash_ids":[244132],"delay":816.3} +{"session_id":"sess-0201393b1811","input_length":1725,"output_length":30,"hash_ids":[244133,244134,244135,244136],"delay":1241.2} +{"session_id":"sess-0201393b1811","input_length":400,"output_length":251,"hash_ids":[244137],"delay":344.1} +{"session_id":"sess-0201393b1811","input_length":2866,"output_length":1478,"hash_ids":[244138,244139,244140,244141,244142,244143],"delay":1032.4} +{"session_id":"sess-0201393b1811","input_length":8511,"output_length":218,"hash_ids":[244144,244145,244146,244147,244148,244149,244150,244151,244152,244153,244154,244155,244156,244157,244158,244159,244160],"delay":30224.7} +{"session_id":"sess-0201393b1811","input_length":1540,"output_length":401,"hash_ids":[244161,244162,244163,244164],"delay":929.8} +{"session_id":"sess-0201393b1811","input_length":905,"output_length":49,"hash_ids":[244165,244166],"delay":576.4} +{"session_id":"sess-0201393b1811","input_length":2089,"output_length":984,"hash_ids":[244167,244168,244169,244170,244171],"delay":314.4} +{"session_id":"sess-0201393b1811","input_length":3051,"output_length":87,"hash_ids":[244172,244173,244174,244175,244176,244177],"delay":799.5} +{"session_id":"sess-0201393b1811","input_length":2744,"output_length":50,"hash_ids":[244178,244179,244180,244181,244182,244183],"delay":579.1} +{"session_id":"sess-0201393b1811","input_length":362,"output_length":30,"hash_ids":[244184],"delay":486.6} +{"session_id":"sess-0201393b1811","input_length":1725,"output_length":250,"hash_ids":[244185,244186,244187,244188],"delay":142.9} +{"session_id":"sess-0201393b1811","input_length":3675,"output_length":236,"hash_ids":[244189,244190,244191,244192,244193,244194,244195,244196],"delay":21927.3} +{"session_id":"sess-0201393b1811","input_length":4711,"output_length":98,"hash_ids":[244197,244198,244199,244200,244201,244202,244203,244204,244205,244206],"delay":570.6} +{"session_id":"sess-07d0959daa53","input_length":56500,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,248063,248064,248065,248066,248067,248068,248069,248070],"timestamp":0.0,"group_id":12} +{"session_id":"sess-07d0959daa53","input_length":307,"output_length":433,"hash_ids":[248071],"delay":13137.8} +{"session_id":"sess-07d0959daa53","input_length":606,"output_length":1038,"hash_ids":[248072,248073],"delay":3809.9} +{"session_id":"sess-07d0959daa53","input_length":2635,"output_length":725,"hash_ids":[248074,248075,248076,248077,248078,248079],"delay":1955.5} +{"session_id":"sess-07d0959daa53","input_length":1072,"output_length":454,"hash_ids":[248080,248081,248082],"delay":314.1} +{"session_id":"sess-07d0959daa53","input_length":539,"output_length":346,"hash_ids":[248083,248084],"delay":18675.7} +{"session_id":"sess-07d0959daa53","input_length":2671,"output_length":254,"hash_ids":[248085,248086,248087,248088,248089,248090],"delay":9779.0} +{"session_id":"sess-07d0959daa53","input_length":1737,"output_length":340,"hash_ids":[248091,248092,248093,248094],"delay":27399.6} +{"session_id":"sess-07d0959daa53","input_length":423,"output_length":73,"hash_ids":[248095],"delay":25946.3} +{"session_id":"sess-07d0959daa53","input_length":2215,"output_length":175,"hash_ids":[248096,248097,248098,248099,248100],"delay":4892.3} +{"session_id":"sess-07d0959daa53","input_length":1910,"output_length":69,"hash_ids":[248101,248102,248103,248104],"delay":12772.2} +{"session_id":"sess-07d0959daa53","input_length":1591,"output_length":335,"hash_ids":[248105,248106,248107,248108],"delay":2059.7} +{"session_id":"sess-07d0959daa53","input_length":436,"output_length":137,"hash_ids":[248109],"delay":3189.8} +{"session_id":"sess-07d0959daa53","input_length":5544,"output_length":160,"hash_ids":[248110,248111,248112,248113,248114,248115,248116,248117,248118,248119,248120],"delay":1231.2} +{"session_id":"sess-07d0959daa53","input_length":4088,"output_length":2968,"hash_ids":[248121,248122,248123,248124,248125,248126,248127,248128],"delay":564.1} +{"session_id":"sess-07d0959daa53","input_length":807,"output_length":103,"hash_ids":[248129,248130],"delay":895.3} +{"session_id":"sess-07d0959daa53","input_length":5229,"output_length":190,"hash_ids":[248131,248132,248133,248134,248135,248136,248137,248138,248139,248140,248141],"delay":715.4} +{"session_id":"sess-07d0959daa53","input_length":2788,"output_length":371,"hash_ids":[248142,248143,248144,248145,248146,248147],"delay":30656.6} +{"session_id":"sess-07d0959daa53","input_length":2210,"output_length":111,"hash_ids":[248148,248149,248150,248151,248152],"delay":2332.2} +{"session_id":"sess-07d0959daa53","input_length":315,"output_length":837,"hash_ids":[248153],"delay":1829.4} +{"session_id":"sess-07d0959daa53","input_length":1399,"output_length":215,"hash_ids":[248154,248155,248156],"delay":675.4} +{"session_id":"sess-07d0959daa53","input_length":1187,"output_length":469,"hash_ids":[248157,248158,248159],"delay":581.1} +{"session_id":"sess-07d0959daa53","input_length":216,"output_length":299,"hash_ids":[248160],"delay":459.0} +{"session_id":"sess-07d0959daa53","input_length":203,"output_length":297,"hash_ids":[248161],"delay":1322.3} +{"session_id":"sess-07d0959daa53","input_length":5804,"output_length":230,"hash_ids":[248162,248163,248164,248165,248166,248167,248168,248169,248170,248171,248172,248173],"delay":431.0} +{"session_id":"sess-07d0959daa53","input_length":4163,"output_length":592,"hash_ids":[248174,248175,248176,248177,248178,248179,248180,248181,248182],"delay":25415.1} +{"session_id":"sess-07d0959daa53","input_length":1524,"output_length":317,"hash_ids":[248183,248184,248185],"delay":1809.6} +{"session_id":"sess-07d0959daa53","input_length":2191,"output_length":230,"hash_ids":[248186,248187,248188,248189,248190],"delay":683.3} +{"session_id":"sess-07d0959daa53","input_length":2005,"output_length":66,"hash_ids":[248191,248192,248193,248194],"delay":3620.6} +{"session_id":"sess-81bdac1ce8f6","input_length":63031,"output_length":484,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,252063,252064,252065,252066,252067,252068,252069,252070,252071,252072,252073,252074,252075,252076,252077,252078,252079,252080,252081,252082,252083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-81bdac1ce8f6","input_length":3116,"output_length":581,"hash_ids":[252084,252085,252086,252087,252088,252089,252090],"delay":966.0} +{"session_id":"sess-f7d00f98d143","input_length":65958,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,256063,256064,256065,256066,256067,256068,256069,256070,256071,256072,256073,256074,256075,256076,256077,256078,256079,256080,256081,256082,256083,256084,256085,256086,256087,256088],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f7d00f98d143","input_length":240,"output_length":1867,"hash_ids":[256089],"delay":5321.2} +{"session_id":"sess-9f3a318bd5cc","input_length":52795,"output_length":519,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,260063],"timestamp":0.0,"group_id":11} +{"session_id":"sess-9f3a318bd5cc","input_length":164,"output_length":166,"hash_ids":[260064],"delay":646.6} +{"session_id":"sess-9f3a318bd5cc","input_length":572,"output_length":885,"hash_ids":[260065,260066],"delay":1750.4} +{"session_id":"sess-0f811ab75821","input_length":61113,"output_length":524,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,264063,264064,264065,264066,264067,264068,264069,264070,264071,264072,264073,264074,264075,264076,264077,264078,264079],"timestamp":0.0,"group_id":40} +{"session_id":"sess-0f811ab75821","input_length":973,"output_length":217,"hash_ids":[264080,264081],"delay":816.5} +{"session_id":"sess-0f811ab75821","input_length":215,"output_length":283,"hash_ids":[264082],"delay":41804.6} +{"session_id":"sess-0f811ab75821","input_length":5376,"output_length":52,"hash_ids":[264083,264084,264085,264086,264087,264088,264089,264090,264091,264092,264093],"delay":690.3} +{"session_id":"sess-0f811ab75821","input_length":417,"output_length":290,"hash_ids":[264094],"delay":519.2} +{"session_id":"sess-0f811ab75821","input_length":455,"output_length":86,"hash_ids":[264095],"delay":6640.5} +{"session_id":"sess-0f811ab75821","input_length":831,"output_length":124,"hash_ids":[264096,264097],"delay":2495.6} +{"session_id":"sess-0f811ab75821","input_length":255,"output_length":372,"hash_ids":[264098],"delay":1069.6} +{"session_id":"sess-0f811ab75821","input_length":1423,"output_length":354,"hash_ids":[264099,264100,264101],"delay":4404.1} +{"session_id":"sess-0f811ab75821","input_length":848,"output_length":381,"hash_ids":[264102,264103],"delay":801.2} +{"session_id":"sess-0f811ab75821","input_length":1508,"output_length":333,"hash_ids":[264104,264105,264106],"delay":694.7} +{"session_id":"sess-1936f7550d49","input_length":57186,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,268063,268064,268065,268066,268067,268068,268069,268070,268071],"timestamp":0.0,"group_id":14} +{"session_id":"sess-1936f7550d49","input_length":817,"output_length":75,"hash_ids":[268072,268073],"delay":926.4} +{"session_id":"sess-1936f7550d49","input_length":6026,"output_length":445,"hash_ids":[268074,268075,268076,268077,268078,268079,268080,268081,268082,268083,268084,268085],"delay":20172.0} +{"session_id":"sess-1936f7550d49","input_length":1175,"output_length":465,"hash_ids":[268086,268087,268088],"delay":9075.1} +{"session_id":"sess-1936f7550d49","input_length":1776,"output_length":997,"hash_ids":[268089,268090,268091,268092],"delay":344.4} +{"session_id":"sess-1936f7550d49","input_length":1956,"output_length":352,"hash_ids":[268093,268094,268095,268096],"delay":377.0} +{"session_id":"sess-1936f7550d49","input_length":3430,"output_length":135,"hash_ids":[268097,268098,268099,268100,268101,268102,268103],"delay":596.3} +{"session_id":"sess-1936f7550d49","input_length":362,"output_length":30,"hash_ids":[268104],"delay":923.0} +{"session_id":"sess-1936f7550d49","input_length":1120,"output_length":200,"hash_ids":[268105,268106,268107],"delay":659.3} +{"session_id":"sess-1936f7550d49","input_length":6248,"output_length":404,"hash_ids":[268108,268109,268110,268111,268112,268113,268114,268115,268116,268117,268118,268119,268120],"delay":1742.0} +{"session_id":"sess-1936f7550d49","input_length":403,"output_length":584,"hash_ids":[268121],"delay":1515.9} +{"session_id":"sess-1936f7550d49","input_length":4794,"output_length":967,"hash_ids":[268122,268123,268124,268125,268126,268127,268128,268129,268130,268131],"delay":954.9} +{"session_id":"sess-1936f7550d49","input_length":1121,"output_length":163,"hash_ids":[268132,268133,268134],"delay":1103.5} +{"session_id":"sess-1936f7550d49","input_length":3067,"output_length":251,"hash_ids":[268135,268136,268137,268138,268139,268140],"delay":14420.8} +{"session_id":"sess-1936f7550d49","input_length":1579,"output_length":72,"hash_ids":[268141,268142,268143,268144],"delay":741.8} +{"session_id":"sess-1936f7550d49","input_length":449,"output_length":316,"hash_ids":[268145],"delay":599.7} +{"session_id":"sess-1936f7550d49","input_length":3094,"output_length":352,"hash_ids":[268146,268147,268148,268149,268150,268151,268152],"delay":350.4} +{"session_id":"sess-1936f7550d49","input_length":1154,"output_length":481,"hash_ids":[268153,268154,268155],"delay":8841.1} +{"session_id":"sess-1936f7550d49","input_length":5090,"output_length":663,"hash_ids":[268156,268157,268158,268159,268160,268161,268162,268163,268164,268165],"delay":10758.2} +{"session_id":"sess-1936f7550d49","input_length":2662,"output_length":145,"hash_ids":[268166,268167,268168,268169,268170,268171],"delay":323.2} +{"session_id":"sess-1936f7550d49","input_length":9960,"output_length":133,"hash_ids":[268172,268173,268174,268175,268176,268177,268178,268179,268180,268181,268182,268183,268184,268185,268186,268187,268188,268189,268190,268191],"delay":465.5} +{"session_id":"sess-1936f7550d49","input_length":5663,"output_length":491,"hash_ids":[268192,268193,268194,268195,268196,268197,268198,268199,268200,268201,268202,268203],"delay":648.9} +{"session_id":"sess-1936f7550d49","input_length":2537,"output_length":525,"hash_ids":[268204,268205,268206,268207,268208],"delay":430.5} +{"session_id":"sess-f0e64bc4ab14","input_length":69592,"output_length":331,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,272063,272064,272065,272066,272067,272068,272069,272070,272071,272072,272073,272074,272075,272076,272077,272078,272079,272080,272081,272082,272083,272084,272085,272086,272087,272088,272089,272090,272091,272092,272093,272094,272095],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f0e64bc4ab14","input_length":788,"output_length":385,"hash_ids":[272096,272097],"delay":19690.4} +{"session_id":"sess-f0e64bc4ab14","input_length":1774,"output_length":446,"hash_ids":[272098,272099,272100,272101],"delay":1325.2} +{"session_id":"sess-f0e64bc4ab14","input_length":5830,"output_length":341,"hash_ids":[272102,272103,272104,272105,272106,272107,272108,272109,272110,272111,272112,272113],"delay":5565.3} +{"session_id":"sess-f0e64bc4ab14","input_length":572,"output_length":550,"hash_ids":[272114,272115],"delay":1683.5} +{"session_id":"sess-f0e64bc4ab14","input_length":839,"output_length":115,"hash_ids":[272116,272117],"delay":477.6} +{"session_id":"sess-f0e64bc4ab14","input_length":4110,"output_length":1058,"hash_ids":[272118,272119,272120,272121,272122,272123,272124,272125,272126],"delay":44389.3} +{"session_id":"sess-f0e64bc4ab14","input_length":972,"output_length":100,"hash_ids":[272127,272128],"delay":214.9} +{"session_id":"sess-f0e64bc4ab14","input_length":2101,"output_length":501,"hash_ids":[272129,272130,272131,272132,272133],"delay":312.0} +{"session_id":"sess-f0e64bc4ab14","input_length":231,"output_length":51,"hash_ids":[272134],"delay":600.2} +{"session_id":"sess-f0e64bc4ab14","input_length":3729,"output_length":117,"hash_ids":[272135,272136,272137,272138,272139,272140,272141,272142],"delay":7092.8} +{"session_id":"sess-f0e64bc4ab14","input_length":232,"output_length":304,"hash_ids":[272143],"delay":785.8} +{"session_id":"sess-f0e64bc4ab14","input_length":1614,"output_length":552,"hash_ids":[272144,272145,272146,272147],"delay":392.5} +{"session_id":"sess-f0e64bc4ab14","input_length":3279,"output_length":193,"hash_ids":[272148,272149,272150,272151,272152,272153,272154],"delay":6584.8} +{"session_id":"sess-f0e64bc4ab14","input_length":728,"output_length":303,"hash_ids":[272155,272156],"delay":1539.1} +{"session_id":"sess-f0e64bc4ab14","input_length":2203,"output_length":327,"hash_ids":[272157,272158,272159,272160,272161],"delay":405.1} +{"session_id":"sess-f0e64bc4ab14","input_length":2356,"output_length":2733,"hash_ids":[272162,272163,272164,272165,272166],"delay":11470.8} +{"session_id":"sess-f0e64bc4ab14","input_length":448,"output_length":117,"hash_ids":[272167],"delay":931.4} +{"session_id":"sess-f0e64bc4ab14","input_length":699,"output_length":1039,"hash_ids":[272168,272169],"delay":575.1} +{"session_id":"sess-f0e64bc4ab14","input_length":3493,"output_length":60,"hash_ids":[272170,272171,272172,272173,272174,272175,272176],"delay":20252.6} +{"session_id":"sess-f0e64bc4ab14","input_length":599,"output_length":593,"hash_ids":[272177,272178],"delay":511.7} +{"session_id":"sess-f0e64bc4ab14","input_length":2903,"output_length":897,"hash_ids":[272179,272180,272181,272182,272183,272184],"delay":1219.7} +{"session_id":"sess-f0e64bc4ab14","input_length":2322,"output_length":486,"hash_ids":[272185,272186,272187,272188,272189],"delay":3175.0} +{"session_id":"sess-f0e64bc4ab14","input_length":235,"output_length":456,"hash_ids":[272190],"delay":743.2} +{"session_id":"sess-f0e64bc4ab14","input_length":2291,"output_length":82,"hash_ids":[272191,272192,272193,272194,272195],"delay":743.9} +{"session_id":"sess-a53a0550b1b2","input_length":59666,"output_length":607,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,276063,276064,276065,276066,276067,276068,276069,276070,276071,276072,276073,276074,276075,276076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a53a0550b1b2","input_length":3314,"output_length":1011,"hash_ids":[276077,276078,276079,276080,276081,276082,276083],"delay":2514.4} +{"session_id":"sess-a53a0550b1b2","input_length":833,"output_length":220,"hash_ids":[276084,276085],"delay":2831.6} +{"session_id":"sess-a53a0550b1b2","input_length":1199,"output_length":182,"hash_ids":[276086,276087,276088],"delay":525.5} +{"session_id":"sess-a53a0550b1b2","input_length":2676,"output_length":397,"hash_ids":[276089,276090,276091,276092,276093,276094],"delay":1077.2} +{"session_id":"sess-a53a0550b1b2","input_length":3020,"output_length":451,"hash_ids":[276095,276096,276097,276098,276099,276100],"delay":1082.1} +{"session_id":"sess-a53a0550b1b2","input_length":8445,"output_length":303,"hash_ids":[276101,276102,276103,276104,276105,276106,276107,276108,276109,276110,276111,276112,276113,276114,276115,276116,276117],"delay":800.5} +{"session_id":"sess-a53a0550b1b2","input_length":2407,"output_length":120,"hash_ids":[276118,276119,276120,276121,276122],"delay":1366.5} +{"session_id":"sess-a53a0550b1b2","input_length":1123,"output_length":697,"hash_ids":[276123,276124,276125],"delay":1073.7} +{"session_id":"sess-a53a0550b1b2","input_length":1590,"output_length":247,"hash_ids":[276126,276127,276128,276129],"delay":49867.6} +{"session_id":"sess-a53a0550b1b2","input_length":891,"output_length":639,"hash_ids":[276130,276131],"delay":378.3} +{"session_id":"sess-a53a0550b1b2","input_length":2486,"output_length":32,"hash_ids":[276132,276133,276134,276135,276136],"delay":1353.6} +{"session_id":"sess-a53a0550b1b2","input_length":626,"output_length":487,"hash_ids":[276137,276138],"delay":1018.8} +{"session_id":"sess-a53a0550b1b2","input_length":1266,"output_length":665,"hash_ids":[276139,276140,276141],"delay":2576.6} +{"session_id":"sess-a53a0550b1b2","input_length":1315,"output_length":499,"hash_ids":[276142,276143,276144],"delay":624.0} +{"session_id":"sess-a53a0550b1b2","input_length":1444,"output_length":63,"hash_ids":[276145,276146,276147],"delay":761.1} +{"session_id":"sess-a53a0550b1b2","input_length":309,"output_length":933,"hash_ids":[276148],"delay":1242.9} +{"session_id":"sess-a53a0550b1b2","input_length":291,"output_length":122,"hash_ids":[276149],"delay":19547.0} +{"session_id":"sess-a53a0550b1b2","input_length":941,"output_length":191,"hash_ids":[276150,276151],"delay":486.7} +{"session_id":"sess-a53a0550b1b2","input_length":729,"output_length":402,"hash_ids":[276152,276153],"delay":4835.6} +{"session_id":"sess-a53a0550b1b2","input_length":700,"output_length":53,"hash_ids":[276154,276155],"delay":98.6} +{"session_id":"sess-a53a0550b1b2","input_length":838,"output_length":559,"hash_ids":[276156,276157],"delay":34287.1} +{"session_id":"sess-a53a0550b1b2","input_length":1197,"output_length":943,"hash_ids":[276158,276159,276160],"delay":6905.1} +{"session_id":"sess-a53a0550b1b2","input_length":342,"output_length":107,"hash_ids":[276161],"delay":396.8} +{"session_id":"sess-a53a0550b1b2","input_length":637,"output_length":820,"hash_ids":[276162,276163],"delay":508.7} +{"session_id":"sess-a53a0550b1b2","input_length":645,"output_length":686,"hash_ids":[276164,276165],"delay":14767.0} +{"session_id":"sess-a53a0550b1b2","input_length":4806,"output_length":174,"hash_ids":[276166,276167,276168,276169,276170,276171,276172,276173,276174,276175],"delay":438.7} +{"session_id":"sess-a53a0550b1b2","input_length":1233,"output_length":820,"hash_ids":[276176,276177,276178],"delay":829.1} +{"session_id":"sess-a53a0550b1b2","input_length":463,"output_length":256,"hash_ids":[276179],"delay":116.6} +{"session_id":"sess-a53a0550b1b2","input_length":1191,"output_length":585,"hash_ids":[276180,276181,276182],"delay":285.8} +{"session_id":"sess-a53a0550b1b2","input_length":2889,"output_length":119,"hash_ids":[276183,276184,276185,276186,276187,276188],"delay":336.7} +{"session_id":"sess-5ba3c4e8cb20","input_length":56443,"output_length":267,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,280063,280064,280065,280066,280067,280068,280069,280070],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5ba3c4e8cb20","input_length":1974,"output_length":147,"hash_ids":[280071,280072,280073,280074],"delay":2346.1} +{"session_id":"sess-5ba3c4e8cb20","input_length":1719,"output_length":172,"hash_ids":[280075,280076,280077,280078],"delay":622.9} +{"session_id":"sess-5ba3c4e8cb20","input_length":6336,"output_length":1027,"hash_ids":[280079,280080,280081,280082,280083,280084,280085,280086,280087,280088,280089,280090,280091],"delay":1776.7} +{"session_id":"sess-5ba3c4e8cb20","input_length":5624,"output_length":163,"hash_ids":[280092,280093,280094,280095,280096,280097,280098,280099,280100,280101,280102],"delay":3650.2} +{"session_id":"sess-5ba3c4e8cb20","input_length":2283,"output_length":303,"hash_ids":[280103,280104,280105,280106,280107],"delay":1179.9} +{"session_id":"sess-5ba3c4e8cb20","input_length":1544,"output_length":241,"hash_ids":[280108,280109,280110,280111],"delay":2545.7} +{"session_id":"sess-5ba3c4e8cb20","input_length":1826,"output_length":895,"hash_ids":[280112,280113,280114,280115],"delay":25382.3} +{"session_id":"sess-5ba3c4e8cb20","input_length":2625,"output_length":251,"hash_ids":[280116,280117,280118,280119,280120,280121],"delay":2334.3} +{"session_id":"sess-5ba3c4e8cb20","input_length":305,"output_length":567,"hash_ids":[280122],"delay":435.6} +{"session_id":"sess-5ba3c4e8cb20","input_length":4909,"output_length":183,"hash_ids":[280123,280124,280125,280126,280127,280128,280129,280130,280131,280132],"delay":8912.2} +{"session_id":"sess-5ba3c4e8cb20","input_length":3523,"output_length":268,"hash_ids":[280133,280134,280135,280136,280137,280138,280139],"delay":4194.5} +{"session_id":"sess-5ba3c4e8cb20","input_length":1277,"output_length":700,"hash_ids":[280140,280141,280142],"delay":15689.2} +{"session_id":"sess-5ba3c4e8cb20","input_length":2088,"output_length":1643,"hash_ids":[280143,280144,280145,280146,280147],"delay":14904.3} +{"session_id":"sess-5ba3c4e8cb20","input_length":3286,"output_length":482,"hash_ids":[280148,280149,280150,280151,280152,280153,280154],"delay":12275.1} +{"session_id":"sess-5ba3c4e8cb20","input_length":2444,"output_length":441,"hash_ids":[280155,280156,280157,280158,280159],"delay":1130.4} +{"session_id":"sess-5ba3c4e8cb20","input_length":9638,"output_length":798,"hash_ids":[280160,280161,280162,280163,280164,280165,280166,280167,280168,280169,280170,280171,280172,280173,280174,280175,280176,280177,280178],"delay":293.4} +{"session_id":"sess-5ba3c4e8cb20","input_length":6232,"output_length":1247,"hash_ids":[280179,280180,280181,280182,280183,280184,280185,280186,280187,280188,280189,280190,280191],"delay":11501.7} +{"session_id":"sess-5ba3c4e8cb20","input_length":3403,"output_length":59,"hash_ids":[280192,280193,280194,280195,280196,280197,280198],"delay":2803.7} +{"session_id":"sess-5ba3c4e8cb20","input_length":217,"output_length":173,"hash_ids":[280199],"delay":1095.7} +{"session_id":"sess-d30922903705","input_length":53043,"output_length":55,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,284063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d30922903705","input_length":232,"output_length":297,"hash_ids":[284064],"delay":746.7} +{"session_id":"sess-d30922903705","input_length":900,"output_length":371,"hash_ids":[284065,284066],"delay":649.8} +{"session_id":"sess-d30922903705","input_length":771,"output_length":328,"hash_ids":[284067,284068],"delay":1059.0} +{"session_id":"sess-d30922903705","input_length":7374,"output_length":601,"hash_ids":[284069,284070,284071,284072,284073,284074,284075,284076,284077,284078,284079,284080,284081,284082,284083],"delay":16591.0} +{"session_id":"sess-d30922903705","input_length":4259,"output_length":543,"hash_ids":[284084,284085,284086,284087,284088,284089,284090,284091,284092],"delay":12458.4} +{"session_id":"sess-d30922903705","input_length":1653,"output_length":178,"hash_ids":[284093,284094,284095,284096],"delay":478.7} +{"session_id":"sess-d30922903705","input_length":8730,"output_length":293,"hash_ids":[284097,284098,284099,284100,284101,284102,284103,284104,284105,284106,284107,284108,284109,284110,284111,284112,284113,284114],"delay":435.5} +{"session_id":"sess-d30922903705","input_length":1608,"output_length":108,"hash_ids":[284115,284116,284117,284118],"delay":5130.6} +{"session_id":"sess-d30922903705","input_length":1216,"output_length":200,"hash_ids":[284119,284120,284121],"delay":684.8} +{"session_id":"sess-d30922903705","input_length":4393,"output_length":187,"hash_ids":[284122,284123,284124,284125,284126,284127,284128,284129,284130],"delay":6567.4} +{"session_id":"sess-d30922903705","input_length":3559,"output_length":474,"hash_ids":[284131,284132,284133,284134,284135,284136,284137],"delay":693.8} +{"session_id":"sess-d30922903705","input_length":893,"output_length":346,"hash_ids":[284138,284139],"delay":669.6} +{"session_id":"sess-d30922903705","input_length":218,"output_length":105,"hash_ids":[284140],"delay":647.4} +{"session_id":"sess-d30922903705","input_length":5951,"output_length":347,"hash_ids":[284141,284142,284143,284144,284145,284146,284147,284148,284149,284150,284151,284152],"delay":42069.6} +{"session_id":"sess-d30922903705","input_length":549,"output_length":994,"hash_ids":[284153,284154],"delay":354.8} +{"session_id":"sess-d30922903705","input_length":73,"output_length":267,"hash_ids":[284155],"delay":610.1} +{"session_id":"sess-d30922903705","input_length":531,"output_length":321,"hash_ids":[284156,284157],"delay":8939.6} +{"session_id":"sess-d30922903705","input_length":565,"output_length":1105,"hash_ids":[284158,284159],"delay":779.1} +{"session_id":"sess-d30922903705","input_length":1291,"output_length":252,"hash_ids":[284160,284161,284162],"delay":779.1} +{"session_id":"sess-d30922903705","input_length":441,"output_length":188,"hash_ids":[284163],"delay":2892.2} +{"session_id":"sess-d30922903705","input_length":1509,"output_length":1225,"hash_ids":[284164,284165,284166],"delay":461.4} +{"session_id":"sess-d30922903705","input_length":255,"output_length":969,"hash_ids":[284167],"delay":1049.6} +{"session_id":"sess-d30922903705","input_length":4700,"output_length":201,"hash_ids":[284168,284169,284170,284171,284172,284173,284174,284175,284176,284177],"delay":413.2} +{"session_id":"sess-d30922903705","input_length":497,"output_length":419,"hash_ids":[284178],"delay":594.9} +{"session_id":"sess-d30922903705","input_length":306,"output_length":736,"hash_ids":[284179],"delay":1084.2} +{"session_id":"sess-d30922903705","input_length":5131,"output_length":797,"hash_ids":[284180,284181,284182,284183,284184,284185,284186,284187,284188,284189,284190],"delay":300.1} +{"session_id":"sess-d30922903705","input_length":1209,"output_length":526,"hash_ids":[284191,284192,284193],"delay":379.3} +{"session_id":"sess-d30922903705","input_length":923,"output_length":881,"hash_ids":[284194,284195],"delay":2294.9} +{"session_id":"sess-d30922903705","input_length":1855,"output_length":190,"hash_ids":[284196,284197,284198,284199],"delay":458.1} +{"session_id":"sess-d30922903705","input_length":1091,"output_length":593,"hash_ids":[284200,284201,284202],"delay":361.1} +{"session_id":"sess-d30922903705","input_length":942,"output_length":799,"hash_ids":[284203,284204],"delay":308.6} +{"session_id":"sess-f64ffae31822","input_length":54556,"output_length":158,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,288063,288064,288065,288066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f64ffae31822","input_length":1996,"output_length":68,"hash_ids":[288067,288068,288069,288070],"delay":853.8} +{"session_id":"sess-4d05df65be14","input_length":52704,"output_length":118,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4d05df65be14","input_length":3497,"output_length":525,"hash_ids":[288071,288072,288073,288074,288075,288076,288077],"delay":6458.4} +{"session_id":"sess-4d05df65be14","input_length":1631,"output_length":539,"hash_ids":[288078,288079,288080,288081],"delay":3115.2} +{"session_id":"sess-4d05df65be14","input_length":1028,"output_length":664,"hash_ids":[288082,288083,288084],"delay":5835.7} +{"session_id":"sess-4d05df65be14","input_length":9595,"output_length":130,"hash_ids":[288085,288086,288087,288088,288089,288090,288091,288092,288093,288094,288095,288096,288097,288098,288099,288100,288101,288102,288103],"delay":1005.6} +{"session_id":"sess-4d05df65be14","input_length":1338,"output_length":67,"hash_ids":[288104,288105,288106],"delay":16130.1} +{"session_id":"sess-4d05df65be14","input_length":464,"output_length":1407,"hash_ids":[288107],"delay":536.0} +{"session_id":"sess-4d05df65be14","input_length":906,"output_length":44,"hash_ids":[288108,288109],"delay":2338.2} +{"session_id":"sess-4d05df65be14","input_length":1065,"output_length":447,"hash_ids":[288110,288111,288112],"delay":159.2} +{"session_id":"sess-4d05df65be14","input_length":7379,"output_length":407,"hash_ids":[288113,288114,288115,288116,288117,288118,288119,288120,288121,288122,288123,288124,288125,288126,288127],"delay":1997.8} +{"session_id":"sess-4d05df65be14","input_length":1349,"output_length":459,"hash_ids":[288128,288129,288130],"delay":8335.8} +{"session_id":"sess-4d05df65be14","input_length":490,"output_length":324,"hash_ids":[288131],"delay":504.0} +{"session_id":"sess-4d05df65be14","input_length":391,"output_length":174,"hash_ids":[288132],"delay":1641.6} +{"session_id":"sess-4d05df65be14","input_length":2026,"output_length":519,"hash_ids":[288133,288134,288135,288136],"delay":873.2} +{"session_id":"sess-4d05df65be14","input_length":150,"output_length":2141,"hash_ids":[288137],"delay":11381.7} +{"session_id":"sess-4d05df65be14","input_length":5669,"output_length":376,"hash_ids":[288138,288139,288140,288141,288142,288143,288144,288145,288146,288147,288148,288149],"delay":3586.2} +{"session_id":"sess-4d05df65be14","input_length":5580,"output_length":396,"hash_ids":[288150,288151,288152,288153,288154,288155,288156,288157,288158,288159,288160],"delay":431.3} +{"session_id":"sess-4d05df65be14","input_length":5398,"output_length":872,"hash_ids":[288161,288162,288163,288164,288165,288166,288167,288168,288169,288170,288171],"delay":514.1} +{"session_id":"sess-4d05df65be14","input_length":1246,"output_length":1578,"hash_ids":[288172,288173,288174],"delay":64.9} +{"session_id":"sess-4d05df65be14","input_length":1700,"output_length":1511,"hash_ids":[288175,288176,288177,288178],"delay":586.4} +{"session_id":"sess-4d05df65be14","input_length":513,"output_length":222,"hash_ids":[288179,288180],"delay":970.6} +{"session_id":"sess-4d05df65be14","input_length":3653,"output_length":361,"hash_ids":[288181,288182,288183,288184,288185,288186,288187,288188],"delay":2673.8} +{"session_id":"sess-4d05df65be14","input_length":2812,"output_length":308,"hash_ids":[288189,288190,288191,288192,288193,288194],"delay":6411.1} +{"session_id":"sess-4d05df65be14","input_length":1907,"output_length":284,"hash_ids":[288195,288196,288197,288198],"delay":1377.1} +{"session_id":"sess-4d05df65be14","input_length":2857,"output_length":77,"hash_ids":[288199,288200,288201,288202,288203,288204],"delay":258.4} +{"session_id":"sess-394b31d305b3","input_length":54953,"output_length":371,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,296063,296064,296065,296066,296067],"timestamp":0.0,"group_id":4} +{"session_id":"sess-394b31d305b3","input_length":4145,"output_length":282,"hash_ids":[296068,296069,296070,296071,296072,296073,296074,296075,296076],"delay":1432.1} +{"session_id":"sess-394b31d305b3","input_length":490,"output_length":686,"hash_ids":[296077],"delay":773.7} +{"session_id":"sess-394b31d305b3","input_length":332,"output_length":187,"hash_ids":[296078],"delay":3132.5} +{"session_id":"sess-394b31d305b3","input_length":4646,"output_length":209,"hash_ids":[296079,296080,296081,296082,296083,296084,296085,296086,296087,296088],"delay":2661.8} +{"session_id":"sess-394b31d305b3","input_length":1029,"output_length":873,"hash_ids":[296089,296090,296091],"delay":38844.0} +{"session_id":"sess-394b31d305b3","input_length":3147,"output_length":252,"hash_ids":[296092,296093,296094,296095,296096,296097,296098],"delay":4488.7} +{"session_id":"sess-394b31d305b3","input_length":413,"output_length":395,"hash_ids":[296099],"delay":653.4} +{"session_id":"sess-394b31d305b3","input_length":2989,"output_length":490,"hash_ids":[296100,296101,296102,296103,296104,296105],"delay":1603.7} +{"session_id":"sess-394b31d305b3","input_length":1822,"output_length":265,"hash_ids":[296106,296107,296108,296109],"delay":899.0} +{"session_id":"sess-394b31d305b3","input_length":1287,"output_length":508,"hash_ids":[296110,296111,296112],"delay":634.9} +{"session_id":"sess-394b31d305b3","input_length":674,"output_length":277,"hash_ids":[296113,296114],"delay":2946.0} +{"session_id":"sess-394b31d305b3","input_length":1145,"output_length":218,"hash_ids":[296115,296116,296117],"delay":364.1} +{"session_id":"sess-394b31d305b3","input_length":1417,"output_length":388,"hash_ids":[296118,296119,296120],"delay":14756.6} +{"session_id":"sess-394b31d305b3","input_length":5332,"output_length":61,"hash_ids":[296121,296122,296123,296124,296125,296126,296127,296128,296129,296130,296131],"delay":4751.4} +{"session_id":"sess-394b31d305b3","input_length":1959,"output_length":84,"hash_ids":[296132,296133,296134,296135],"delay":4959.5} +{"session_id":"sess-394b31d305b3","input_length":2579,"output_length":186,"hash_ids":[296136,296137,296138,296139,296140,296141],"delay":546.5} +{"session_id":"sess-394b31d305b3","input_length":2365,"output_length":1048,"hash_ids":[296142,296143,296144,296145,296146],"delay":299.6} +{"session_id":"sess-394b31d305b3","input_length":535,"output_length":154,"hash_ids":[296147,296148],"delay":1582.7} +{"session_id":"sess-394b31d305b3","input_length":1084,"output_length":869,"hash_ids":[296149,296150,296151],"delay":3749.2} +{"session_id":"sess-394b31d305b3","input_length":2305,"output_length":131,"hash_ids":[296152,296153,296154,296155,296156],"delay":735.5} +{"session_id":"sess-394b31d305b3","input_length":4865,"output_length":639,"hash_ids":[296157,296158,296159,296160,296161,296162,296163,296164,296165,296166],"delay":1806.4} +{"session_id":"sess-394b31d305b3","input_length":469,"output_length":361,"hash_ids":[296167],"delay":547.2} +{"session_id":"sess-394b31d305b3","input_length":3762,"output_length":455,"hash_ids":[296168,296169,296170,296171,296172,296173,296174,296175],"delay":945.6} +{"session_id":"sess-0efd2436835c","input_length":69534,"output_length":516,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,300063,300064,300065,300066,300067,300068,300069,300070,300071,300072,300073,300074,300075,300076,300077,300078,300079,300080,300081,300082,300083,300084,300085,300086,300087,300088,300089,300090,300091,300092,300093,300094,300095],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0efd2436835c","input_length":2657,"output_length":437,"hash_ids":[300096,300097,300098,300099,300100,300101],"delay":888.7} +{"session_id":"sess-0efd2436835c","input_length":2704,"output_length":457,"hash_ids":[300102,300103,300104,300105,300106,300107],"delay":17534.5} +{"session_id":"sess-0efd2436835c","input_length":1461,"output_length":148,"hash_ids":[300108,300109,300110],"delay":590.4} +{"session_id":"sess-0efd2436835c","input_length":4320,"output_length":423,"hash_ids":[300111,300112,300113,300114,300115,300116,300117,300118,300119],"delay":1472.9} +{"session_id":"sess-0efd2436835c","input_length":502,"output_length":601,"hash_ids":[300120],"delay":542.6} +{"session_id":"sess-0efd2436835c","input_length":259,"output_length":358,"hash_ids":[300121],"delay":26144.4} +{"session_id":"sess-0efd2436835c","input_length":351,"output_length":531,"hash_ids":[300122],"delay":1193.3} +{"session_id":"sess-0efd2436835c","input_length":859,"output_length":75,"hash_ids":[300123,300124],"delay":286.8} +{"session_id":"sess-0efd2436835c","input_length":507,"output_length":874,"hash_ids":[300125],"delay":438.6} +{"session_id":"sess-0efd2436835c","input_length":1222,"output_length":972,"hash_ids":[300126,300127,300128],"delay":716.9} +{"session_id":"sess-655c3e1aca72","input_length":56650,"output_length":611,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,304063,304064,304065,304066,304067,304068,304069,304070],"timestamp":0.0,"group_id":5} +{"session_id":"sess-655c3e1aca72","input_length":433,"output_length":2869,"hash_ids":[304071],"delay":2685.4} +{"session_id":"sess-655c3e1aca72","input_length":291,"output_length":388,"hash_ids":[304072],"delay":3707.5} +{"session_id":"sess-655c3e1aca72","input_length":4026,"output_length":190,"hash_ids":[304073,304074,304075,304076,304077,304078,304079,304080],"delay":14786.9} +{"session_id":"sess-655c3e1aca72","input_length":1132,"output_length":909,"hash_ids":[304081,304082,304083],"delay":453.0} +{"session_id":"sess-655c3e1aca72","input_length":7152,"output_length":389,"hash_ids":[304084,304085,304086,304087,304088,304089,304090,304091,304092,304093,304094,304095,304096,304097],"delay":2232.5} +{"session_id":"sess-655c3e1aca72","input_length":748,"output_length":724,"hash_ids":[304098,304099],"delay":1451.9} +{"session_id":"sess-655c3e1aca72","input_length":391,"output_length":206,"hash_ids":[304100],"delay":2455.8} +{"session_id":"sess-655c3e1aca72","input_length":1341,"output_length":99,"hash_ids":[304101,304102,304103],"delay":565.1} +{"session_id":"sess-655c3e1aca72","input_length":3122,"output_length":288,"hash_ids":[304104,304105,304106,304107,304108,304109,304110],"delay":3464.9} +{"session_id":"sess-655c3e1aca72","input_length":1359,"output_length":204,"hash_ids":[304111,304112,304113],"delay":465.0} +{"session_id":"sess-655c3e1aca72","input_length":173,"output_length":200,"hash_ids":[304114],"delay":353.4} +{"session_id":"sess-655c3e1aca72","input_length":8912,"output_length":831,"hash_ids":[304115,304116,304117,304118,304119,304120,304121,304122,304123,304124,304125,304126,304127,304128,304129,304130,304131,304132],"delay":1641.7} +{"session_id":"sess-655c3e1aca72","input_length":604,"output_length":397,"hash_ids":[304133,304134],"delay":1862.6} +{"session_id":"sess-655c3e1aca72","input_length":4049,"output_length":282,"hash_ids":[304135,304136,304137,304138,304139,304140,304141,304142],"delay":1198.0} +{"session_id":"sess-655c3e1aca72","input_length":5850,"output_length":505,"hash_ids":[304143,304144,304145,304146,304147,304148,304149,304150,304151,304152,304153,304154],"delay":809.3} +{"session_id":"sess-655c3e1aca72","input_length":1186,"output_length":577,"hash_ids":[304155,304156,304157],"delay":1147.3} +{"session_id":"sess-f11efadce84e","input_length":55458,"output_length":354,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,308063,308064,308065,308066,308067,308068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f11efadce84e","input_length":3888,"output_length":151,"hash_ids":[308069,308070,308071,308072,308073,308074,308075,308076],"delay":2489.9} +{"session_id":"sess-f11efadce84e","input_length":225,"output_length":317,"hash_ids":[308077],"delay":1161.9} +{"session_id":"sess-f11efadce84e","input_length":570,"output_length":211,"hash_ids":[308078,308079],"delay":933.3} +{"session_id":"sess-f11efadce84e","input_length":364,"output_length":388,"hash_ids":[308080],"delay":4438.4} +{"session_id":"sess-f11efadce84e","input_length":2133,"output_length":691,"hash_ids":[308081,308082,308083,308084,308085],"delay":1740.1} +{"session_id":"sess-f11efadce84e","input_length":966,"output_length":107,"hash_ids":[308086,308087],"delay":828.7} +{"session_id":"sess-f11efadce84e","input_length":2538,"output_length":490,"hash_ids":[308088,308089,308090,308091,308092],"delay":1030.2} +{"session_id":"sess-f11efadce84e","input_length":2808,"output_length":231,"hash_ids":[308093,308094,308095,308096,308097,308098],"delay":1074.8} +{"session_id":"sess-f11efadce84e","input_length":1961,"output_length":564,"hash_ids":[308099,308100,308101,308102],"delay":7985.6} +{"session_id":"sess-f11efadce84e","input_length":2569,"output_length":2002,"hash_ids":[308103,308104,308105,308106,308107,308108],"delay":10486.1} +{"session_id":"sess-f11efadce84e","input_length":1927,"output_length":62,"hash_ids":[308109,308110,308111,308112],"delay":20033.0} +{"session_id":"sess-f11efadce84e","input_length":790,"output_length":541,"hash_ids":[308113,308114],"delay":381.6} +{"session_id":"sess-f11efadce84e","input_length":232,"output_length":449,"hash_ids":[308115],"delay":433.4} +{"session_id":"sess-f11efadce84e","input_length":344,"output_length":614,"hash_ids":[308116],"delay":501.1} +{"session_id":"sess-f11efadce84e","input_length":1889,"output_length":38,"hash_ids":[308117,308118,308119,308120],"delay":19821.3} +{"session_id":"sess-f11efadce84e","input_length":2135,"output_length":779,"hash_ids":[308121,308122,308123,308124,308125],"delay":641.1} +{"session_id":"sess-f11efadce84e","input_length":1733,"output_length":111,"hash_ids":[308126,308127,308128,308129],"delay":2254.9} +{"session_id":"sess-f11efadce84e","input_length":3627,"output_length":668,"hash_ids":[308130,308131,308132,308133,308134,308135,308136,308137],"delay":1091.9} +{"session_id":"sess-f11efadce84e","input_length":2240,"output_length":510,"hash_ids":[308138,308139,308140,308141,308142],"delay":7629.3} +{"session_id":"sess-f11efadce84e","input_length":2089,"output_length":205,"hash_ids":[308143,308144,308145,308146,308147],"delay":794.5} +{"session_id":"sess-f11efadce84e","input_length":6120,"output_length":288,"hash_ids":[308148,308149,308150,308151,308152,308153,308154,308155,308156,308157,308158,308159],"delay":539.2} +{"session_id":"sess-f11efadce84e","input_length":746,"output_length":115,"hash_ids":[308160,308161],"delay":1122.8} +{"session_id":"sess-f11efadce84e","input_length":388,"output_length":74,"hash_ids":[308162],"delay":9552.3} +{"session_id":"sess-f11efadce84e","input_length":222,"output_length":772,"hash_ids":[308163],"delay":3290.3} +{"session_id":"sess-f11efadce84e","input_length":3735,"output_length":556,"hash_ids":[308164,308165,308166,308167,308168,308169,308170,308171],"delay":480.5} +{"session_id":"sess-f11efadce84e","input_length":2022,"output_length":737,"hash_ids":[308172,308173,308174,308175],"delay":471.5} +{"session_id":"sess-f11efadce84e","input_length":6890,"output_length":392,"hash_ids":[308176,308177,308178,308179,308180,308181,308182,308183,308184,308185,308186,308187,308188,308189],"delay":17393.6} +{"session_id":"sess-f11efadce84e","input_length":657,"output_length":382,"hash_ids":[308190,308191],"delay":1940.9} +{"session_id":"sess-f11efadce84e","input_length":6874,"output_length":547,"hash_ids":[308192,308193,308194,308195,308196,308197,308198,308199,308200,308201,308202,308203,308204,308205],"delay":16211.0} +{"session_id":"sess-b00c361db86a","input_length":61508,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,312063,312064,312065,312066,312067,312068,312069,312070,312071,312072,312073,312074,312075,312076,312077,312078,312079,312080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b00c361db86a","input_length":6845,"output_length":263,"hash_ids":[312081,312082,312083,312084,312085,312086,312087,312088,312089,312090,312091,312092,312093,312094],"delay":8513.4} +{"session_id":"sess-b00c361db86a","input_length":1847,"output_length":582,"hash_ids":[312095,312096,312097,312098],"delay":22437.6} +{"session_id":"sess-b00c361db86a","input_length":318,"output_length":1463,"hash_ids":[312099],"delay":10514.4} +{"session_id":"sess-b00c361db86a","input_length":1739,"output_length":248,"hash_ids":[312100,312101,312102,312103],"delay":347.1} +{"session_id":"sess-b00c361db86a","input_length":424,"output_length":213,"hash_ids":[312104],"delay":1303.0} +{"session_id":"sess-b00c361db86a","input_length":2971,"output_length":451,"hash_ids":[312105,312106,312107,312108,312109,312110],"delay":502.6} +{"session_id":"sess-b00c361db86a","input_length":6637,"output_length":532,"hash_ids":[312111,312112,312113,312114,312115,312116,312117,312118,312119,312120,312121,312122,312123],"delay":553.8} +{"session_id":"sess-b00c361db86a","input_length":277,"output_length":232,"hash_ids":[312124],"delay":329.0} +{"session_id":"sess-b00c361db86a","input_length":763,"output_length":336,"hash_ids":[312125,312126],"delay":1185.6} +{"session_id":"sess-b00c361db86a","input_length":4528,"output_length":492,"hash_ids":[312127,312128,312129,312130,312131,312132,312133,312134,312135],"delay":731.6} +{"session_id":"sess-b00c361db86a","input_length":3010,"output_length":286,"hash_ids":[312136,312137,312138,312139,312140,312141],"delay":1415.7} +{"session_id":"sess-b00c361db86a","input_length":2453,"output_length":77,"hash_ids":[312142,312143,312144,312145,312146],"delay":160.5} +{"session_id":"sess-b00c361db86a","input_length":1844,"output_length":2340,"hash_ids":[312147,312148,312149,312150],"delay":3794.2} +{"session_id":"sess-b00c361db86a","input_length":1053,"output_length":1170,"hash_ids":[312151,312152,312153],"delay":821.2} +{"session_id":"sess-b00c361db86a","input_length":1209,"output_length":49,"hash_ids":[312154,312155,312156],"delay":947.9} +{"session_id":"sess-b00c361db86a","input_length":2146,"output_length":56,"hash_ids":[312157,312158,312159,312160,312161],"delay":1387.7} +{"session_id":"sess-b00c361db86a","input_length":4166,"output_length":167,"hash_ids":[312162,312163,312164,312165,312166,312167,312168,312169,312170],"delay":1152.0} +{"session_id":"sess-b00c361db86a","input_length":7824,"output_length":426,"hash_ids":[312171,312172,312173,312174,312175,312176,312177,312178,312179,312180,312181,312182,312183,312184,312185,312186],"delay":125.3} +{"session_id":"sess-b00c361db86a","input_length":714,"output_length":281,"hash_ids":[312187,312188],"delay":619.5} +{"session_id":"sess-b00c361db86a","input_length":8150,"output_length":625,"hash_ids":[312189,312190,312191,312192,312193,312194,312195,312196,312197,312198,312199,312200,312201,312202,312203,312204],"delay":2615.9} +{"session_id":"sess-0d5f0f263b95","input_length":53024,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,316063],"timestamp":0.0,"group_id":13} +{"session_id":"sess-0d5f0f263b95","input_length":1443,"output_length":1264,"hash_ids":[316064,316065,316066],"delay":9026.5} +{"session_id":"sess-0d5f0f263b95","input_length":2662,"output_length":620,"hash_ids":[316067,316068,316069,316070,316071,316072],"delay":3638.1} +{"session_id":"sess-0d5f0f263b95","input_length":695,"output_length":304,"hash_ids":[316073,316074],"delay":1535.0} +{"session_id":"sess-0d5f0f263b95","input_length":1629,"output_length":302,"hash_ids":[316075,316076,316077,316078],"delay":807.2} +{"session_id":"sess-0d5f0f263b95","input_length":3475,"output_length":532,"hash_ids":[316079,316080,316081,316082,316083,316084,316085],"delay":275.1} +{"session_id":"sess-0d5f0f263b95","input_length":4004,"output_length":325,"hash_ids":[316086,316087,316088,316089,316090,316091,316092,316093],"delay":5437.4} +{"session_id":"sess-0d5f0f263b95","input_length":1180,"output_length":393,"hash_ids":[316094,316095,316096],"delay":1625.0} +{"session_id":"sess-0d5f0f263b95","input_length":4533,"output_length":42,"hash_ids":[316097,316098,316099,316100,316101,316102,316103,316104,316105],"delay":52158.1} +{"session_id":"sess-0d5f0f263b95","input_length":883,"output_length":102,"hash_ids":[316106,316107],"delay":2715.8} +{"session_id":"sess-0d5f0f263b95","input_length":842,"output_length":508,"hash_ids":[316108,316109],"delay":5558.8} +{"session_id":"sess-0d5f0f263b95","input_length":1680,"output_length":482,"hash_ids":[316110,316111,316112,316113],"delay":813.0} +{"session_id":"sess-0d5f0f263b95","input_length":803,"output_length":652,"hash_ids":[316114,316115],"delay":812.7} +{"session_id":"sess-0d5f0f263b95","input_length":2088,"output_length":771,"hash_ids":[316116,316117,316118,316119,316120],"delay":1303.8} +{"session_id":"sess-0d5f0f263b95","input_length":2576,"output_length":398,"hash_ids":[316121,316122,316123,316124,316125,316126],"delay":803.0} +{"session_id":"sess-0d5f0f263b95","input_length":1285,"output_length":191,"hash_ids":[316127,316128,316129],"delay":459.7} +{"session_id":"sess-0d5f0f263b95","input_length":1146,"output_length":139,"hash_ids":[316130,316131,316132],"delay":2853.7} +{"session_id":"sess-0d5f0f263b95","input_length":289,"output_length":143,"hash_ids":[316133],"delay":1337.4} +{"session_id":"sess-0d5f0f263b95","input_length":1612,"output_length":238,"hash_ids":[316134,316135,316136,316137],"delay":633.9} +{"session_id":"sess-0d5f0f263b95","input_length":3129,"output_length":191,"hash_ids":[316138,316139,316140,316141,316142,316143,316144],"delay":661.7} +{"session_id":"sess-0d5f0f263b95","input_length":1836,"output_length":763,"hash_ids":[316145,316146,316147,316148],"delay":946.6} +{"session_id":"sess-0d5f0f263b95","input_length":1192,"output_length":458,"hash_ids":[316149,316150,316151],"delay":20647.0} +{"session_id":"sess-0d5f0f263b95","input_length":696,"output_length":279,"hash_ids":[316152,316153],"delay":1686.1} +{"session_id":"sess-0d5f0f263b95","input_length":665,"output_length":1897,"hash_ids":[316154,316155],"delay":927.0} +{"session_id":"sess-0d5f0f263b95","input_length":1121,"output_length":1435,"hash_ids":[316156,316157,316158],"delay":9750.5} +{"session_id":"sess-0d5f0f263b95","input_length":1625,"output_length":103,"hash_ids":[316159,316160,316161,316162],"delay":2124.1} +{"session_id":"sess-0d5f0f263b95","input_length":834,"output_length":406,"hash_ids":[316163,316164],"delay":6185.5} +{"session_id":"sess-0d5f0f263b95","input_length":2378,"output_length":451,"hash_ids":[316165,316166,316167,316168,316169],"delay":3699.0} +{"session_id":"sess-0d5f0f263b95","input_length":1491,"output_length":195,"hash_ids":[316170,316171,316172],"delay":442.0} +{"session_id":"sess-0d5f0f263b95","input_length":1400,"output_length":1042,"hash_ids":[316173,316174,316175],"delay":9035.8} +{"session_id":"sess-0d5f0f263b95","input_length":1474,"output_length":378,"hash_ids":[316176,316177,316178],"delay":444.3} +{"session_id":"sess-0d5f0f263b95","input_length":1612,"output_length":1274,"hash_ids":[316179,316180,316181,316182],"delay":200.6} +{"session_id":"sess-0d5f0f263b95","input_length":1371,"output_length":74,"hash_ids":[316183,316184,316185],"delay":763.1} +{"session_id":"sess-0d5f0f263b95","input_length":134,"output_length":720,"hash_ids":[316186],"delay":570.2} +{"session_id":"sess-0d5f0f263b95","input_length":415,"output_length":329,"hash_ids":[316187],"delay":720.6} +{"session_id":"sess-0d5f0f263b95","input_length":1236,"output_length":87,"hash_ids":[316188,316189,316190],"delay":170.9} +{"session_id":"sess-0d5f0f263b95","input_length":561,"output_length":1613,"hash_ids":[316191,316192],"delay":1096.3} +{"session_id":"sess-0d5f0f263b95","input_length":606,"output_length":88,"hash_ids":[316193,316194],"delay":646.2} +{"session_id":"sess-aca6ad924693","input_length":59319,"output_length":1046,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,320063,320064,320065,320066,320067,320068,320069,320070,320071,320072,320073,320074,320075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-aca6ad924693","input_length":1228,"output_length":144,"hash_ids":[320076,320077,320078],"delay":1201.8} +{"session_id":"sess-aca6ad924693","input_length":585,"output_length":59,"hash_ids":[320079,320080],"delay":357.2} +{"session_id":"sess-aca6ad924693","input_length":2867,"output_length":586,"hash_ids":[320081,320082,320083,320084,320085,320086],"delay":8357.1} +{"session_id":"sess-aca6ad924693","input_length":314,"output_length":104,"hash_ids":[320087],"delay":898.2} +{"session_id":"sess-aca6ad924693","input_length":431,"output_length":234,"hash_ids":[320088],"delay":3212.6} +{"session_id":"sess-aca6ad924693","input_length":3123,"output_length":217,"hash_ids":[320089,320090,320091,320092,320093,320094,320095],"delay":629.6} +{"session_id":"sess-aca6ad924693","input_length":5515,"output_length":71,"hash_ids":[320096,320097,320098,320099,320100,320101,320102,320103,320104,320105,320106],"delay":1767.8} +{"session_id":"sess-aca6ad924693","input_length":4730,"output_length":911,"hash_ids":[320107,320108,320109,320110,320111,320112,320113,320114,320115,320116],"delay":524.4} +{"session_id":"sess-aca6ad924693","input_length":3403,"output_length":1339,"hash_ids":[320117,320118,320119,320120,320121,320122,320123],"delay":1083.4} +{"session_id":"sess-aca6ad924693","input_length":4454,"output_length":285,"hash_ids":[320124,320125,320126,320127,320128,320129,320130,320131,320132],"delay":677.8} +{"session_id":"sess-aca6ad924693","input_length":1890,"output_length":280,"hash_ids":[320133,320134,320135,320136],"delay":10579.0} +{"session_id":"sess-aca6ad924693","input_length":824,"output_length":158,"hash_ids":[320137,320138],"delay":796.4} +{"session_id":"sess-aca6ad924693","input_length":3594,"output_length":235,"hash_ids":[320139,320140,320141,320142,320143,320144,320145,320146],"delay":2219.2} +{"session_id":"sess-aca6ad924693","input_length":970,"output_length":61,"hash_ids":[320147,320148],"delay":3665.6} +{"session_id":"sess-aca6ad924693","input_length":2785,"output_length":232,"hash_ids":[320149,320150,320151,320152,320153,320154],"delay":5182.2} +{"session_id":"sess-aca6ad924693","input_length":1474,"output_length":75,"hash_ids":[320155,320156,320157],"delay":1278.5} +{"session_id":"sess-aca6ad924693","input_length":3288,"output_length":119,"hash_ids":[320158,320159,320160,320161,320162,320163,320164],"delay":400.6} +{"session_id":"sess-aca6ad924693","input_length":893,"output_length":151,"hash_ids":[320165,320166],"delay":270.9} +{"session_id":"sess-aca6ad924693","input_length":466,"output_length":741,"hash_ids":[320167],"delay":504.1} +{"session_id":"sess-aca6ad924693","input_length":1372,"output_length":128,"hash_ids":[320168,320169,320170],"delay":1938.8} +{"session_id":"sess-aca6ad924693","input_length":4372,"output_length":356,"hash_ids":[320171,320172,320173,320174,320175,320176,320177,320178,320179],"delay":784.5} +{"session_id":"sess-aca6ad924693","input_length":1367,"output_length":365,"hash_ids":[320180,320181,320182],"delay":1820.0} +{"session_id":"sess-aca6ad924693","input_length":711,"output_length":156,"hash_ids":[320183,320184],"delay":172.1} +{"session_id":"sess-aca6ad924693","input_length":482,"output_length":543,"hash_ids":[320185],"delay":8485.4} +{"session_id":"sess-aca6ad924693","input_length":1940,"output_length":251,"hash_ids":[320186,320187,320188,320189],"delay":276.8} +{"session_id":"sess-aca6ad924693","input_length":374,"output_length":257,"hash_ids":[320190],"delay":416.4} +{"session_id":"sess-aca6ad924693","input_length":2124,"output_length":271,"hash_ids":[320191,320192,320193,320194,320195],"delay":293.1} +{"session_id":"sess-aca6ad924693","input_length":3053,"output_length":202,"hash_ids":[320196,320197,320198,320199,320200,320201],"delay":282.2} +{"session_id":"sess-aca6ad924693","input_length":1767,"output_length":878,"hash_ids":[320202,320203,320204,320205],"delay":715.3} +{"session_id":"sess-06bd0b518cd6","input_length":55860,"output_length":255,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,324063,324064,324065,324066,324067,324068,324069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-06bd0b518cd6","input_length":764,"output_length":184,"hash_ids":[324070,324071],"delay":3737.9} +{"session_id":"sess-06bd0b518cd6","input_length":5341,"output_length":206,"hash_ids":[324072,324073,324074,324075,324076,324077,324078,324079,324080,324081,324082],"delay":47769.5} +{"session_id":"sess-06bd0b518cd6","input_length":273,"output_length":643,"hash_ids":[324083],"delay":7001.1} +{"session_id":"sess-06bd0b518cd6","input_length":504,"output_length":50,"hash_ids":[324084],"delay":1165.9} +{"session_id":"sess-06bd0b518cd6","input_length":1536,"output_length":356,"hash_ids":[324085,324086,324087],"delay":2127.5} +{"session_id":"sess-06bd0b518cd6","input_length":4843,"output_length":1090,"hash_ids":[324088,324089,324090,324091,324092,324093,324094,324095,324096,324097],"delay":4835.7} +{"session_id":"sess-06bd0b518cd6","input_length":3770,"output_length":521,"hash_ids":[324098,324099,324100,324101,324102,324103,324104,324105],"delay":24400.5} +{"session_id":"sess-06bd0b518cd6","input_length":6092,"output_length":142,"hash_ids":[324106,324107,324108,324109,324110,324111,324112,324113,324114,324115,324116,324117],"delay":591.4} +{"session_id":"sess-06bd0b518cd6","input_length":2987,"output_length":274,"hash_ids":[324118,324119,324120,324121,324122,324123],"delay":1622.5} +{"session_id":"sess-06bd0b518cd6","input_length":641,"output_length":138,"hash_ids":[324124,324125],"delay":673.2} +{"session_id":"sess-06bd0b518cd6","input_length":980,"output_length":367,"hash_ids":[324126,324127],"delay":803.7} +{"session_id":"sess-06bd0b518cd6","input_length":2750,"output_length":1260,"hash_ids":[324128,324129,324130,324131,324132,324133],"delay":1074.9} +{"session_id":"sess-2c04549a49e7","input_length":54586,"output_length":432,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,328063,328064,328065,328066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2c04549a49e7","input_length":426,"output_length":514,"hash_ids":[328067],"delay":25939.9} +{"session_id":"sess-2c04549a49e7","input_length":533,"output_length":272,"hash_ids":[328068,328069],"delay":22212.7} +{"session_id":"sess-2c04549a49e7","input_length":2155,"output_length":122,"hash_ids":[328070,328071,328072,328073,328074],"delay":2788.2} +{"session_id":"sess-2c04549a49e7","input_length":3176,"output_length":35,"hash_ids":[328075,328076,328077,328078,328079,328080,328081],"delay":9756.0} +{"session_id":"sess-2c04549a49e7","input_length":386,"output_length":291,"hash_ids":[328082],"delay":2963.9} +{"session_id":"sess-2c04549a49e7","input_length":855,"output_length":826,"hash_ids":[328083,328084],"delay":10812.6} +{"session_id":"sess-2c04549a49e7","input_length":8639,"output_length":399,"hash_ids":[328085,328086,328087,328088,328089,328090,328091,328092,328093,328094,328095,328096,328097,328098,328099,328100,328101],"delay":1753.7} +{"session_id":"sess-2c04549a49e7","input_length":778,"output_length":518,"hash_ids":[328102,328103],"delay":190.3} +{"session_id":"sess-2c04549a49e7","input_length":2000,"output_length":932,"hash_ids":[328104,328105,328106,328107],"delay":10631.2} +{"session_id":"sess-2c04549a49e7","input_length":3750,"output_length":265,"hash_ids":[328108,328109,328110,328111,328112,328113,328114,328115],"delay":17746.1} +{"session_id":"sess-2c04549a49e7","input_length":1267,"output_length":519,"hash_ids":[328116,328117,328118],"delay":2407.6} +{"session_id":"sess-2c04549a49e7","input_length":3209,"output_length":2153,"hash_ids":[328119,328120,328121,328122,328123,328124,328125],"delay":337.2} +{"session_id":"sess-2c04549a49e7","input_length":4462,"output_length":1244,"hash_ids":[328126,328127,328128,328129,328130,328131,328132,328133,328134],"delay":36243.5} +{"session_id":"sess-2c04549a49e7","input_length":2569,"output_length":573,"hash_ids":[328135,328136,328137,328138,328139,328140],"delay":13084.8} +{"session_id":"sess-2c04549a49e7","input_length":831,"output_length":291,"hash_ids":[328141,328142],"delay":367.4} +{"session_id":"sess-2c04549a49e7","input_length":1454,"output_length":488,"hash_ids":[328143,328144,328145],"delay":1073.7} +{"session_id":"sess-2c04549a49e7","input_length":266,"output_length":1381,"hash_ids":[328146],"delay":366.9} +{"session_id":"sess-2c04549a49e7","input_length":1155,"output_length":152,"hash_ids":[328147,328148,328149],"delay":871.6} +{"session_id":"sess-2c04549a49e7","input_length":7527,"output_length":83,"hash_ids":[328150,328151,328152,328153,328154,328155,328156,328157,328158,328159,328160,328161,328162,328163,328164],"delay":345.3} +{"session_id":"sess-13c9c5c6cc62","input_length":52251,"output_length":671,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502],"timestamp":0.0,"group_id":2} +{"session_id":"sess-13c9c5c6cc62","input_length":903,"output_length":455,"hash_ids":[328165,328166],"delay":879.1} +{"session_id":"sess-13c9c5c6cc62","input_length":8677,"output_length":473,"hash_ids":[328167,328168,328169,328170,328171,328172,328173,328174,328175,328176,328177,328178,328179,328180,328181,328182,328183],"delay":337.5} +{"session_id":"sess-13c9c5c6cc62","input_length":1187,"output_length":144,"hash_ids":[328184,328185,328186],"delay":12826.2} +{"session_id":"sess-13c9c5c6cc62","input_length":2671,"output_length":421,"hash_ids":[328187,328188,328189,328190,328191,328192],"delay":15144.2} +{"session_id":"sess-0f6d74adb8a7","input_length":53638,"output_length":145,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,336063,336064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0f6d74adb8a7","input_length":674,"output_length":862,"hash_ids":[336065,336066],"delay":360.2} +{"session_id":"sess-0f6d74adb8a7","input_length":500,"output_length":842,"hash_ids":[336067],"delay":2996.9} +{"session_id":"sess-0f6d74adb8a7","input_length":1150,"output_length":233,"hash_ids":[336068,336069,336070],"delay":593.5} +{"session_id":"sess-0f6d74adb8a7","input_length":1132,"output_length":430,"hash_ids":[336071,336072,336073],"delay":2891.8} +{"session_id":"sess-0f6d74adb8a7","input_length":3602,"output_length":94,"hash_ids":[336074,336075,336076,336077,336078,336079,336080,336081],"delay":23699.9} +{"session_id":"sess-0f6d74adb8a7","input_length":833,"output_length":207,"hash_ids":[336082,336083],"delay":337.3} +{"session_id":"sess-0f6d74adb8a7","input_length":2927,"output_length":164,"hash_ids":[336084,336085,336086,336087,336088,336089],"delay":5341.5} +{"session_id":"sess-0f6d74adb8a7","input_length":1610,"output_length":631,"hash_ids":[336090,336091,336092,336093],"delay":22758.0} +{"session_id":"sess-0f6d74adb8a7","input_length":5435,"output_length":64,"hash_ids":[336094,336095,336096,336097,336098,336099,336100,336101,336102,336103,336104],"delay":645.6} +{"session_id":"sess-0f6d74adb8a7","input_length":2839,"output_length":149,"hash_ids":[336105,336106,336107,336108,336109,336110],"delay":664.7} +{"session_id":"sess-0f6d74adb8a7","input_length":4005,"output_length":1507,"hash_ids":[336111,336112,336113,336114,336115,336116,336117,336118],"delay":692.7} +{"session_id":"sess-0f6d74adb8a7","input_length":682,"output_length":386,"hash_ids":[336119,336120],"delay":2534.3} +{"session_id":"sess-0f6d74adb8a7","input_length":459,"output_length":187,"hash_ids":[336121],"delay":599.3} +{"session_id":"sess-0f6d74adb8a7","input_length":8565,"output_length":384,"hash_ids":[336122,336123,336124,336125,336126,336127,336128,336129,336130,336131,336132,336133,336134,336135,336136,336137,336138],"delay":3027.6} +{"session_id":"sess-0f6d74adb8a7","input_length":1694,"output_length":140,"hash_ids":[336139,336140,336141,336142],"delay":42593.9} +{"session_id":"sess-0f6d74adb8a7","input_length":2835,"output_length":1183,"hash_ids":[336143,336144,336145,336146,336147,336148],"delay":34296.6} +{"session_id":"sess-0f6d74adb8a7","input_length":887,"output_length":625,"hash_ids":[336149,336150],"delay":2492.8} +{"session_id":"sess-0f6d74adb8a7","input_length":353,"output_length":56,"hash_ids":[336151],"delay":7975.6} +{"session_id":"sess-0f6d74adb8a7","input_length":1215,"output_length":73,"hash_ids":[336152,336153,336154],"delay":922.1} +{"session_id":"sess-0f6d74adb8a7","input_length":1896,"output_length":332,"hash_ids":[336155,336156,336157,336158],"delay":871.0} +{"session_id":"sess-0f6d74adb8a7","input_length":9954,"output_length":137,"hash_ids":[336159,336160,336161,336162,336163,336164,336165,336166,336167,336168,336169,336170,336171,336172,336173,336174,336175,336176,336177,336178],"delay":907.2} +{"session_id":"sess-0f6d74adb8a7","input_length":3909,"output_length":160,"hash_ids":[336179,336180,336181,336182,336183,336184,336185,336186],"delay":10917.6} +{"session_id":"sess-0f6d74adb8a7","input_length":3074,"output_length":899,"hash_ids":[336187,336188,336189,336190,336191,336192,336193],"delay":304.6} +{"session_id":"sess-0f6d74adb8a7","input_length":1952,"output_length":131,"hash_ids":[336194,336195,336196,336197],"delay":1001.4} +{"session_id":"sess-0f6d74adb8a7","input_length":905,"output_length":389,"hash_ids":[336198,336199],"delay":228.0} +{"session_id":"sess-0f6d74adb8a7","input_length":2539,"output_length":463,"hash_ids":[336200,336201,336202,336203,336204],"delay":8255.6} +{"session_id":"sess-0f6d74adb8a7","input_length":589,"output_length":217,"hash_ids":[336205,336206],"delay":393.8} +{"session_id":"sess-6b9f4f74f383","input_length":58636,"output_length":180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,340063,340064,340065,340066,340067,340068,340069,340070,340071,340072,340073,340074],"timestamp":0.0,"group_id":45} +{"session_id":"sess-6b9f4f74f383","input_length":4963,"output_length":1514,"hash_ids":[340075,340076,340077,340078,340079,340080,340081,340082,340083,340084],"delay":2786.4} +{"session_id":"sess-6b9f4f74f383","input_length":3980,"output_length":252,"hash_ids":[340085,340086,340087,340088,340089,340090,340091,340092],"delay":485.6} +{"session_id":"sess-6b9f4f74f383","input_length":5953,"output_length":255,"hash_ids":[340093,340094,340095,340096,340097,340098,340099,340100,340101,340102,340103,340104],"delay":566.3} +{"session_id":"sess-6b9f4f74f383","input_length":2858,"output_length":323,"hash_ids":[340105,340106,340107,340108,340109,340110],"delay":4842.1} +{"session_id":"sess-6b9f4f74f383","input_length":2461,"output_length":1274,"hash_ids":[340111,340112,340113,340114,340115],"delay":357.7} +{"session_id":"sess-6b9f4f74f383","input_length":1962,"output_length":119,"hash_ids":[340116,340117,340118,340119],"delay":1146.2} +{"session_id":"sess-6b9f4f74f383","input_length":6706,"output_length":46,"hash_ids":[340120,340121,340122,340123,340124,340125,340126,340127,340128,340129,340130,340131,340132,340133],"delay":355.0} +{"session_id":"sess-6b9f4f74f383","input_length":88,"output_length":344,"hash_ids":[340134],"delay":11277.4} +{"session_id":"sess-6b9f4f74f383","input_length":895,"output_length":1815,"hash_ids":[340135,340136],"delay":1778.5} +{"session_id":"sess-6b9f4f74f383","input_length":4932,"output_length":575,"hash_ids":[340137,340138,340139,340140,340141,340142,340143,340144,340145,340146],"delay":1044.5} +{"session_id":"sess-6b9f4f74f383","input_length":3529,"output_length":30,"hash_ids":[340147,340148,340149,340150,340151,340152,340153],"delay":914.3} +{"session_id":"sess-6b9f4f74f383","input_length":1759,"output_length":410,"hash_ids":[340154,340155,340156,340157],"delay":1112.6} +{"session_id":"sess-6b9f4f74f383","input_length":702,"output_length":185,"hash_ids":[340158,340159],"delay":1495.8} +{"session_id":"sess-6b9f4f74f383","input_length":2350,"output_length":222,"hash_ids":[340160,340161,340162,340163,340164],"delay":19004.8} +{"session_id":"sess-6b9f4f74f383","input_length":276,"output_length":250,"hash_ids":[340165],"delay":35820.3} +{"session_id":"sess-6b9f4f74f383","input_length":1412,"output_length":433,"hash_ids":[340166,340167,340168],"delay":2086.5} +{"session_id":"sess-6b9f4f74f383","input_length":2897,"output_length":2027,"hash_ids":[340169,340170,340171,340172,340173,340174],"delay":1168.2} +{"session_id":"sess-6b9f4f74f383","input_length":3765,"output_length":363,"hash_ids":[340175,340176,340177,340178,340179,340180,340181,340182],"delay":560.8} +{"session_id":"sess-6b9f4f74f383","input_length":1202,"output_length":2244,"hash_ids":[340183,340184,340185],"delay":1366.3} +{"session_id":"sess-6b9f4f74f383","input_length":77,"output_length":545,"hash_ids":[340186],"delay":268.3} +{"session_id":"sess-6b9f4f74f383","input_length":5253,"output_length":444,"hash_ids":[340187,340188,340189,340190,340191,340192,340193,340194,340195,340196,340197],"delay":420.3} +{"session_id":"sess-90a326653d43","input_length":59230,"output_length":89,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,344063,344064,344065,344066,344067,344068,344069,344070,344071,344072,344073,344074,344075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-90a326653d43","input_length":984,"output_length":161,"hash_ids":[344076,344077],"delay":493.1} +{"session_id":"sess-90a326653d43","input_length":755,"output_length":138,"hash_ids":[344078,344079],"delay":15163.6} +{"session_id":"sess-90a326653d43","input_length":6215,"output_length":190,"hash_ids":[344080,344081,344082,344083,344084,344085,344086,344087,344088,344089,344090,344091,344092],"delay":930.9} +{"session_id":"sess-90a326653d43","input_length":2147,"output_length":115,"hash_ids":[344093,344094,344095,344096,344097],"delay":988.2} +{"session_id":"sess-90a326653d43","input_length":888,"output_length":734,"hash_ids":[344098,344099],"delay":771.7} +{"session_id":"sess-90a326653d43","input_length":103,"output_length":527,"hash_ids":[344100],"delay":1945.1} +{"session_id":"sess-90a326653d43","input_length":3076,"output_length":116,"hash_ids":[344101,344102,344103,344104,344105,344106,344107],"delay":1264.9} +{"session_id":"sess-90a326653d43","input_length":964,"output_length":155,"hash_ids":[344108,344109],"delay":3597.0} +{"session_id":"sess-90a326653d43","input_length":1581,"output_length":918,"hash_ids":[344110,344111,344112,344113],"delay":339.4} +{"session_id":"sess-90a326653d43","input_length":1722,"output_length":618,"hash_ids":[344114,344115,344116,344117],"delay":1167.0} +{"session_id":"sess-90a326653d43","input_length":4940,"output_length":48,"hash_ids":[344118,344119,344120,344121,344122,344123,344124,344125,344126,344127],"delay":2187.6} +{"session_id":"sess-90a326653d43","input_length":3221,"output_length":132,"hash_ids":[344128,344129,344130,344131,344132,344133,344134],"delay":1532.3} +{"session_id":"sess-90a326653d43","input_length":7117,"output_length":166,"hash_ids":[344135,344136,344137,344138,344139,344140,344141,344142,344143,344144,344145,344146,344147,344148],"delay":1151.9} +{"session_id":"sess-ff3f78d2bf29","input_length":58688,"output_length":939,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,348063,348064,348065,348066,348067,348068,348069,348070,348071,348072,348073,348074],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ff3f78d2bf29","input_length":1358,"output_length":223,"hash_ids":[348075,348076,348077],"delay":490.2} +{"session_id":"sess-ff3f78d2bf29","input_length":1971,"output_length":744,"hash_ids":[348078,348079,348080,348081],"delay":183.8} +{"session_id":"sess-ff3f78d2bf29","input_length":1740,"output_length":277,"hash_ids":[348082,348083,348084,348085],"delay":1063.9} +{"session_id":"sess-ff3f78d2bf29","input_length":479,"output_length":51,"hash_ids":[348086],"delay":1323.5} +{"session_id":"sess-ff3f78d2bf29","input_length":380,"output_length":162,"hash_ids":[348087],"delay":1311.1} +{"session_id":"sess-ff3f78d2bf29","input_length":1054,"output_length":406,"hash_ids":[348088,348089,348090],"delay":2129.8} +{"session_id":"sess-ff3f78d2bf29","input_length":632,"output_length":65,"hash_ids":[348091,348092],"delay":2795.9} +{"session_id":"sess-ff3f78d2bf29","input_length":1336,"output_length":236,"hash_ids":[348093,348094,348095],"delay":1224.0} +{"session_id":"sess-ff3f78d2bf29","input_length":1823,"output_length":210,"hash_ids":[348096,348097,348098,348099],"delay":514.8} +{"session_id":"sess-ff3f78d2bf29","input_length":2141,"output_length":79,"hash_ids":[348100,348101,348102,348103,348104],"delay":503.4} +{"session_id":"sess-ff3f78d2bf29","input_length":270,"output_length":629,"hash_ids":[348105],"delay":23793.3} +{"session_id":"sess-ff3f78d2bf29","input_length":2965,"output_length":473,"hash_ids":[348106,348107,348108,348109,348110,348111],"delay":2454.3} +{"session_id":"sess-ff3f78d2bf29","input_length":3702,"output_length":802,"hash_ids":[348112,348113,348114,348115,348116,348117,348118,348119],"delay":13288.8} +{"session_id":"sess-ff3f78d2bf29","input_length":1027,"output_length":321,"hash_ids":[348120,348121,348122],"delay":302.5} +{"session_id":"sess-ff3f78d2bf29","input_length":2422,"output_length":2008,"hash_ids":[348123,348124,348125,348126,348127],"delay":11595.3} +{"session_id":"sess-ff3f78d2bf29","input_length":1150,"output_length":1325,"hash_ids":[348128,348129,348130],"delay":1340.9} +{"session_id":"sess-ff3f78d2bf29","input_length":1174,"output_length":1098,"hash_ids":[348131,348132,348133],"delay":1484.2} +{"session_id":"sess-ff3f78d2bf29","input_length":564,"output_length":58,"hash_ids":[348134,348135],"delay":266.9} +{"session_id":"sess-ff3f78d2bf29","input_length":7904,"output_length":362,"hash_ids":[348136,348137,348138,348139,348140,348141,348142,348143,348144,348145,348146,348147,348148,348149,348150,348151],"delay":3919.2} +{"session_id":"sess-ff3f78d2bf29","input_length":1883,"output_length":746,"hash_ids":[348152,348153,348154,348155],"delay":192.8} +{"session_id":"sess-ff3f78d2bf29","input_length":1366,"output_length":2351,"hash_ids":[348156,348157,348158],"delay":354.7} +{"session_id":"sess-ff3f78d2bf29","input_length":365,"output_length":175,"hash_ids":[348159],"delay":514.1} +{"session_id":"sess-ff3f78d2bf29","input_length":4269,"output_length":124,"hash_ids":[348160,348161,348162,348163,348164,348165,348166,348167,348168],"delay":14642.3} +{"session_id":"sess-ff3f78d2bf29","input_length":2211,"output_length":359,"hash_ids":[348169,348170,348171,348172,348173],"delay":262.0} +{"session_id":"sess-ff3f78d2bf29","input_length":1186,"output_length":538,"hash_ids":[348174,348175,348176],"delay":195.8} +{"session_id":"sess-ff3f78d2bf29","input_length":2709,"output_length":226,"hash_ids":[348177,348178,348179,348180,348181,348182],"delay":205.4} +{"session_id":"sess-ff3f78d2bf29","input_length":1624,"output_length":528,"hash_ids":[348183,348184,348185,348186],"delay":350.4} +{"session_id":"sess-ff3f78d2bf29","input_length":738,"output_length":558,"hash_ids":[348187,348188],"delay":181.9} +{"session_id":"sess-ff3f78d2bf29","input_length":179,"output_length":307,"hash_ids":[348189],"delay":552.8} +{"session_id":"sess-ff3f78d2bf29","input_length":4896,"output_length":178,"hash_ids":[348190,348191,348192,348193,348194,348195,348196,348197,348198,348199],"delay":2329.5} +{"session_id":"sess-c222893c8659","input_length":56706,"output_length":398,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,352063,352064,352065,352066,352067,352068,352069,352070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c222893c8659","input_length":2456,"output_length":71,"hash_ids":[352071,352072,352073,352074,352075],"delay":895.3} +{"session_id":"sess-c222893c8659","input_length":6696,"output_length":119,"hash_ids":[352076,352077,352078,352079,352080,352081,352082,352083,352084,352085,352086,352087,352088,352089],"delay":3020.4} +{"session_id":"sess-c222893c8659","input_length":916,"output_length":55,"hash_ids":[352090,352091],"delay":1654.6} +{"session_id":"sess-c222893c8659","input_length":1084,"output_length":139,"hash_ids":[352092,352093,352094],"delay":489.3} +{"session_id":"sess-c222893c8659","input_length":2979,"output_length":704,"hash_ids":[352095,352096,352097,352098,352099,352100],"delay":4844.2} +{"session_id":"sess-c222893c8659","input_length":242,"output_length":2418,"hash_ids":[352101],"delay":517.1} +{"session_id":"sess-c222893c8659","input_length":698,"output_length":565,"hash_ids":[352102,352103],"delay":179.1} +{"session_id":"sess-c222893c8659","input_length":2289,"output_length":97,"hash_ids":[352104,352105,352106,352107,352108],"delay":652.1} +{"session_id":"sess-c222893c8659","input_length":387,"output_length":30,"hash_ids":[352109],"delay":1234.2} +{"session_id":"sess-c222893c8659","input_length":3784,"output_length":146,"hash_ids":[352110,352111,352112,352113,352114,352115,352116,352117],"delay":563.7} +{"session_id":"sess-c222893c8659","input_length":376,"output_length":444,"hash_ids":[352118],"delay":1043.1} +{"session_id":"sess-c222893c8659","input_length":327,"output_length":169,"hash_ids":[352119],"delay":592.2} +{"session_id":"sess-c222893c8659","input_length":1332,"output_length":315,"hash_ids":[352120,352121,352122],"delay":1239.7} +{"session_id":"sess-c222893c8659","input_length":886,"output_length":380,"hash_ids":[352123,352124],"delay":697.2} +{"session_id":"sess-c222893c8659","input_length":773,"output_length":660,"hash_ids":[352125,352126],"delay":221.8} +{"session_id":"sess-c222893c8659","input_length":1220,"output_length":179,"hash_ids":[352127,352128,352129],"delay":265.4} +{"session_id":"sess-c222893c8659","input_length":6988,"output_length":104,"hash_ids":[352130,352131,352132,352133,352134,352135,352136,352137,352138,352139,352140,352141,352142,352143],"delay":1663.2} +{"session_id":"sess-c222893c8659","input_length":1627,"output_length":44,"hash_ids":[352144,352145,352146,352147],"delay":9068.2} +{"session_id":"sess-c222893c8659","input_length":1863,"output_length":67,"hash_ids":[352148,352149,352150,352151],"delay":1390.5} +{"session_id":"sess-c222893c8659","input_length":541,"output_length":130,"hash_ids":[352152,352153],"delay":371.5} +{"session_id":"sess-c222893c8659","input_length":9638,"output_length":108,"hash_ids":[352154,352155,352156,352157,352158,352159,352160,352161,352162,352163,352164,352165,352166,352167,352168,352169,352170,352171,352172],"delay":158.7} +{"session_id":"sess-c222893c8659","input_length":3210,"output_length":907,"hash_ids":[352173,352174,352175,352176,352177,352178,352179],"delay":21648.0} +{"session_id":"sess-c222893c8659","input_length":1445,"output_length":322,"hash_ids":[352180,352181,352182],"delay":557.5} +{"session_id":"sess-d50c8e739d56","input_length":54253,"output_length":1029,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,356063,356064,356065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-d50c8e739d56","input_length":8262,"output_length":456,"hash_ids":[356066,356067,356068,356069,356070,356071,356072,356073,356074,356075,356076,356077,356078,356079,356080,356081,356082],"delay":1157.2} +{"session_id":"sess-d50c8e739d56","input_length":636,"output_length":331,"hash_ids":[356083,356084],"delay":2190.8} +{"session_id":"sess-d50c8e739d56","input_length":642,"output_length":70,"hash_ids":[356085,356086],"delay":1938.3} +{"session_id":"sess-d50c8e739d56","input_length":422,"output_length":501,"hash_ids":[356087],"delay":23867.0} +{"session_id":"sess-d50c8e739d56","input_length":609,"output_length":1521,"hash_ids":[356088,356089],"delay":2568.0} +{"session_id":"sess-d50c8e739d56","input_length":772,"output_length":204,"hash_ids":[356090,356091],"delay":951.2} +{"session_id":"sess-d50c8e739d56","input_length":1510,"output_length":670,"hash_ids":[356092,356093,356094],"delay":11996.1} +{"session_id":"sess-d50c8e739d56","input_length":1572,"output_length":581,"hash_ids":[356095,356096,356097,356098],"delay":1635.6} +{"session_id":"sess-d50c8e739d56","input_length":1799,"output_length":1341,"hash_ids":[356099,356100,356101,356102],"delay":313.4} +{"session_id":"sess-d50c8e739d56","input_length":2174,"output_length":303,"hash_ids":[356103,356104,356105,356106,356107],"delay":17334.9} +{"session_id":"sess-d50c8e739d56","input_length":1363,"output_length":478,"hash_ids":[356108,356109,356110],"delay":7640.5} +{"session_id":"sess-d50c8e739d56","input_length":72,"output_length":892,"hash_ids":[356111],"delay":1330.6} +{"session_id":"sess-d50c8e739d56","input_length":823,"output_length":80,"hash_ids":[356112,356113],"delay":58378.8} +{"session_id":"sess-d50c8e739d56","input_length":9439,"output_length":123,"hash_ids":[356114,356115,356116,356117,356118,356119,356120,356121,356122,356123,356124,356125,356126,356127,356128,356129,356130,356131,356132],"delay":12860.0} +{"session_id":"sess-d50c8e739d56","input_length":172,"output_length":67,"hash_ids":[356133],"delay":5918.3} +{"session_id":"sess-d50c8e739d56","input_length":884,"output_length":98,"hash_ids":[356134,356135],"delay":896.9} +{"session_id":"sess-d50c8e739d56","input_length":1203,"output_length":2406,"hash_ids":[356136,356137,356138],"delay":1381.5} +{"session_id":"sess-d50c8e739d56","input_length":918,"output_length":276,"hash_ids":[356139,356140],"delay":2328.2} +{"session_id":"sess-d50c8e739d56","input_length":4031,"output_length":642,"hash_ids":[356141,356142,356143,356144,356145,356146,356147,356148],"delay":299.0} +{"session_id":"sess-d50c8e739d56","input_length":3571,"output_length":533,"hash_ids":[356149,356150,356151,356152,356153,356154,356155],"delay":286.7} +{"session_id":"sess-d50c8e739d56","input_length":512,"output_length":240,"hash_ids":[356156],"delay":1330.0} +{"session_id":"sess-d50c8e739d56","input_length":502,"output_length":236,"hash_ids":[356157],"delay":414.5} +{"session_id":"sess-d50c8e739d56","input_length":424,"output_length":633,"hash_ids":[356158],"delay":5713.4} +{"session_id":"sess-d50c8e739d56","input_length":869,"output_length":1005,"hash_ids":[356159,356160],"delay":417.8} +{"session_id":"sess-d50c8e739d56","input_length":202,"output_length":445,"hash_ids":[356161],"delay":942.7} +{"session_id":"sess-d50c8e739d56","input_length":1441,"output_length":218,"hash_ids":[356162,356163,356164],"delay":774.2} +{"session_id":"sess-d50c8e739d56","input_length":961,"output_length":122,"hash_ids":[356165,356166],"delay":4476.9} +{"session_id":"sess-d50c8e739d56","input_length":5270,"output_length":665,"hash_ids":[356167,356168,356169,356170,356171,356172,356173,356174,356175,356176,356177],"delay":292.9} +{"session_id":"sess-d50c8e739d56","input_length":6680,"output_length":123,"hash_ids":[356178,356179,356180,356181,356182,356183,356184,356185,356186,356187,356188,356189,356190,356191],"delay":7524.5} +{"session_id":"sess-a832fce644c9","input_length":58626,"output_length":509,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,360063,360064,360065,360066,360067,360068,360069,360070,360071,360072,360073,360074],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a832fce644c9","input_length":636,"output_length":65,"hash_ids":[360075,360076],"delay":1729.5} +{"session_id":"sess-a832fce644c9","input_length":5415,"output_length":160,"hash_ids":[360077,360078,360079,360080,360081,360082,360083,360084,360085,360086,360087],"delay":2084.0} +{"session_id":"sess-a832fce644c9","input_length":2282,"output_length":192,"hash_ids":[360088,360089,360090,360091,360092],"delay":633.8} +{"session_id":"sess-a832fce644c9","input_length":628,"output_length":405,"hash_ids":[360093,360094],"delay":21265.2} +{"session_id":"sess-a832fce644c9","input_length":5768,"output_length":487,"hash_ids":[360095,360096,360097,360098,360099,360100,360101,360102,360103,360104,360105,360106],"delay":6924.3} +{"session_id":"sess-ded4f321b590","input_length":68007,"output_length":1000,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,364063,364064,364065,364066,364067,364068,364069,364070,364071,364072,364073,364074,364075,364076,364077,364078,364079,364080,364081,364082,364083,364084,364085,364086,364087,364088,364089,364090,364091,364092],"timestamp":0.0,"group_id":15} +{"session_id":"sess-ded4f321b590","input_length":1382,"output_length":616,"hash_ids":[364093,364094,364095],"delay":4543.5} +{"session_id":"sess-ded4f321b590","input_length":1613,"output_length":887,"hash_ids":[364096,364097,364098,364099],"delay":22974.1} +{"session_id":"sess-ded4f321b590","input_length":2652,"output_length":64,"hash_ids":[364100,364101,364102,364103,364104,364105],"delay":2139.5} +{"session_id":"sess-ded4f321b590","input_length":774,"output_length":527,"hash_ids":[364106,364107],"delay":487.4} +{"session_id":"sess-ded4f321b590","input_length":7060,"output_length":670,"hash_ids":[364108,364109,364110,364111,364112,364113,364114,364115,364116,364117,364118,364119,364120,364121],"delay":1318.4} +{"session_id":"sess-ded4f321b590","input_length":2459,"output_length":339,"hash_ids":[364122,364123,364124,364125,364126],"delay":36221.6} +{"session_id":"sess-ded4f321b590","input_length":504,"output_length":499,"hash_ids":[364127],"delay":783.6} +{"session_id":"sess-ded4f321b590","input_length":6211,"output_length":245,"hash_ids":[364128,364129,364130,364131,364132,364133,364134,364135,364136,364137,364138,364139,364140],"delay":523.3} +{"session_id":"sess-ded4f321b590","input_length":1852,"output_length":262,"hash_ids":[364141,364142,364143,364144],"delay":1522.7} +{"session_id":"sess-ded4f321b590","input_length":2771,"output_length":172,"hash_ids":[364145,364146,364147,364148,364149,364150],"delay":816.6} +{"session_id":"sess-ded4f321b590","input_length":2821,"output_length":159,"hash_ids":[364151,364152,364153,364154,364155,364156],"delay":20035.9} +{"session_id":"sess-ded4f321b590","input_length":1374,"output_length":818,"hash_ids":[364157,364158,364159],"delay":1374.6} +{"session_id":"sess-ded4f321b590","input_length":3066,"output_length":955,"hash_ids":[364160,364161,364162,364163,364164,364165],"delay":376.9} +{"session_id":"sess-ded4f321b590","input_length":1454,"output_length":71,"hash_ids":[364166,364167,364168],"delay":3406.6} +{"session_id":"sess-ded4f321b590","input_length":2757,"output_length":466,"hash_ids":[364169,364170,364171,364172,364173,364174],"delay":344.4} +{"session_id":"sess-ded4f321b590","input_length":259,"output_length":218,"hash_ids":[364175],"delay":879.0} +{"session_id":"sess-ded4f321b590","input_length":2600,"output_length":60,"hash_ids":[364176,364177,364178,364179,364180,364181],"delay":184.4} +{"session_id":"sess-ded4f321b590","input_length":4852,"output_length":174,"hash_ids":[364182,364183,364184,364185,364186,364187,364188,364189,364190,364191],"delay":210.9} +{"session_id":"sess-ded4f321b590","input_length":4011,"output_length":230,"hash_ids":[364192,364193,364194,364195,364196,364197,364198,364199],"delay":1368.8} +{"session_id":"sess-ded4f321b590","input_length":1611,"output_length":618,"hash_ids":[364200,364201,364202,364203],"delay":876.7} +{"session_id":"sess-ad31faa0f634","input_length":68593,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,368063,368064,368065,368066,368067,368068,368069,368070,368071,368072,368073,368074,368075,368076,368077,368078,368079,368080,368081,368082,368083,368084,368085,368086,368087,368088,368089,368090,368091,368092,368093],"timestamp":0.0,"group_id":31} +{"session_id":"sess-7703bb5818aa","input_length":71634,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,372063,372064,372065,372066,372067,372068,372069,372070,372071,372072,372073,372074,372075,372076,372077,372078,372079,372080,372081,372082,372083,372084,372085,372086,372087,372088,372089,372090,372091,372092,372093,372094,372095,372096,372097,372098,372099],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7703bb5818aa","input_length":2383,"output_length":124,"hash_ids":[372100,372101,372102,372103,372104],"delay":49426.6} +{"session_id":"sess-7703bb5818aa","input_length":3820,"output_length":1088,"hash_ids":[372105,372106,372107,372108,372109,372110,372111,372112],"delay":6772.7} +{"session_id":"sess-7703bb5818aa","input_length":1644,"output_length":260,"hash_ids":[372113,372114,372115,372116],"delay":1952.3} +{"session_id":"sess-7703bb5818aa","input_length":3039,"output_length":222,"hash_ids":[372117,372118,372119,372120,372121,372122],"delay":27689.2} +{"session_id":"sess-7703bb5818aa","input_length":2700,"output_length":123,"hash_ids":[372123,372124,372125,372126,372127,372128],"delay":8361.0} +{"session_id":"sess-7703bb5818aa","input_length":4290,"output_length":305,"hash_ids":[372129,372130,372131,372132,372133,372134,372135,372136,372137],"delay":4505.5} +{"session_id":"sess-7703bb5818aa","input_length":879,"output_length":144,"hash_ids":[372138,372139],"delay":1529.8} +{"session_id":"sess-7703bb5818aa","input_length":1056,"output_length":428,"hash_ids":[372140,372141,372142],"delay":116.0} +{"session_id":"sess-7703bb5818aa","input_length":816,"output_length":31,"hash_ids":[372143,372144],"delay":1240.3} +{"session_id":"sess-7703bb5818aa","input_length":665,"output_length":86,"hash_ids":[372145,372146],"delay":413.7} +{"session_id":"sess-7703bb5818aa","input_length":2008,"output_length":1121,"hash_ids":[372147,372148,372149,372150],"delay":1055.6} +{"session_id":"sess-7703bb5818aa","input_length":1243,"output_length":1267,"hash_ids":[372151,372152,372153],"delay":438.4} +{"session_id":"sess-7703bb5818aa","input_length":4143,"output_length":707,"hash_ids":[372154,372155,372156,372157,372158,372159,372160,372161,372162],"delay":313.7} +{"session_id":"sess-7703bb5818aa","input_length":2542,"output_length":288,"hash_ids":[372163,372164,372165,372166,372167],"delay":203.8} +{"session_id":"sess-7703bb5818aa","input_length":2398,"output_length":93,"hash_ids":[372168,372169,372170,372171,372172],"delay":989.5} +{"session_id":"sess-7703bb5818aa","input_length":489,"output_length":436,"hash_ids":[372173],"delay":95.7} +{"session_id":"sess-7703bb5818aa","input_length":6182,"output_length":108,"hash_ids":[372174,372175,372176,372177,372178,372179,372180,372181,372182,372183,372184,372185,372186],"delay":213.9} +{"session_id":"sess-7703bb5818aa","input_length":954,"output_length":354,"hash_ids":[372187,372188],"delay":435.3} +{"session_id":"sess-7703bb5818aa","input_length":420,"output_length":454,"hash_ids":[372189],"delay":720.9} +{"session_id":"sess-7703bb5818aa","input_length":811,"output_length":1163,"hash_ids":[372190,372191],"delay":682.1} +{"session_id":"sess-7703bb5818aa","input_length":5366,"output_length":61,"hash_ids":[372192,372193,372194,372195,372196,372197,372198,372199,372200,372201,372202],"delay":416.6} +{"session_id":"sess-9c57b0f62bcf","input_length":60906,"output_length":1369,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,376063,376064,376065,376066,376067,376068,376069,376070,376071,376072,376073,376074,376075,376076,376077,376078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9c57b0f62bcf","input_length":1032,"output_length":248,"hash_ids":[376079,376080,376081],"delay":722.9} +{"session_id":"sess-9c57b0f62bcf","input_length":5818,"output_length":478,"hash_ids":[376082,376083,376084,376085,376086,376087,376088,376089,376090,376091,376092,376093],"delay":18094.7} +{"session_id":"sess-9c57b0f62bcf","input_length":2762,"output_length":1655,"hash_ids":[376094,376095,376096,376097,376098,376099],"delay":891.0} +{"session_id":"sess-9c57b0f62bcf","input_length":1789,"output_length":241,"hash_ids":[376100,376101,376102,376103],"delay":1674.0} +{"session_id":"sess-9c57b0f62bcf","input_length":5729,"output_length":150,"hash_ids":[376104,376105,376106,376107,376108,376109,376110,376111,376112,376113,376114,376115],"delay":21117.2} +{"session_id":"sess-9c57b0f62bcf","input_length":1749,"output_length":309,"hash_ids":[376116,376117,376118,376119],"delay":8546.8} +{"session_id":"sess-9c57b0f62bcf","input_length":283,"output_length":1038,"hash_ids":[376120],"delay":1023.9} +{"session_id":"sess-9c57b0f62bcf","input_length":198,"output_length":30,"hash_ids":[376121],"delay":23266.0} +{"session_id":"sess-9c57b0f62bcf","input_length":3312,"output_length":433,"hash_ids":[376122,376123,376124,376125,376126,376127,376128],"delay":1220.7} +{"session_id":"sess-9c57b0f62bcf","input_length":4397,"output_length":939,"hash_ids":[376129,376130,376131,376132,376133,376134,376135,376136,376137],"delay":1876.4} +{"session_id":"sess-9c57b0f62bcf","input_length":315,"output_length":446,"hash_ids":[376138],"delay":225.0} +{"session_id":"sess-9c57b0f62bcf","input_length":1052,"output_length":41,"hash_ids":[376139,376140,376141],"delay":18764.1} +{"session_id":"sess-9c57b0f62bcf","input_length":3064,"output_length":229,"hash_ids":[376142,376143,376144,376145,376146,376147],"delay":12069.7} +{"session_id":"sess-9c57b0f62bcf","input_length":2855,"output_length":156,"hash_ids":[376148,376149,376150,376151,376152,376153],"delay":1585.5} +{"session_id":"sess-9c57b0f62bcf","input_length":2045,"output_length":215,"hash_ids":[376154,376155,376156,376157],"delay":13528.5} +{"session_id":"sess-9c57b0f62bcf","input_length":2586,"output_length":175,"hash_ids":[376158,376159,376160,376161,376162,376163],"delay":170.1} +{"session_id":"sess-9c57b0f62bcf","input_length":629,"output_length":1412,"hash_ids":[376164,376165],"delay":452.0} +{"session_id":"sess-9c57b0f62bcf","input_length":1319,"output_length":1282,"hash_ids":[376166,376167,376168],"delay":986.3} +{"session_id":"sess-9c57b0f62bcf","input_length":977,"output_length":226,"hash_ids":[376169,376170],"delay":704.8} +{"session_id":"sess-9c57b0f62bcf","input_length":628,"output_length":835,"hash_ids":[376171,376172],"delay":895.7} +{"session_id":"sess-9c57b0f62bcf","input_length":5382,"output_length":441,"hash_ids":[376173,376174,376175,376176,376177,376178,376179,376180,376181,376182,376183],"delay":620.3} +{"session_id":"sess-9c57b0f62bcf","input_length":1962,"output_length":855,"hash_ids":[376184,376185,376186,376187],"delay":5205.1} +{"session_id":"sess-9c57b0f62bcf","input_length":2018,"output_length":349,"hash_ids":[376188,376189,376190,376191],"delay":505.9} +{"session_id":"sess-f8fbfc7732e4","input_length":57255,"output_length":213,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,380063,380064,380065,380066,380067,380068,380069,380070,380071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f8fbfc7732e4","input_length":253,"output_length":650,"hash_ids":[380072],"delay":1689.5} +{"session_id":"sess-f8fbfc7732e4","input_length":3609,"output_length":47,"hash_ids":[380073,380074,380075,380076,380077,380078,380079,380080],"delay":30518.0} +{"session_id":"sess-f8fbfc7732e4","input_length":3097,"output_length":927,"hash_ids":[380081,380082,380083,380084,380085,380086,380087],"delay":616.3} +{"session_id":"sess-ff794e4c42c3","input_length":54479,"output_length":2104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,384063,384064,384065,384066],"timestamp":0.0,"group_id":3} +{"session_id":"sess-ff794e4c42c3","input_length":1754,"output_length":1012,"hash_ids":[384067,384068,384069,384070],"delay":1337.7} +{"session_id":"sess-ff794e4c42c3","input_length":2855,"output_length":356,"hash_ids":[384071,384072,384073,384074,384075,384076],"delay":1109.1} +{"session_id":"sess-ff794e4c42c3","input_length":336,"output_length":177,"hash_ids":[384077],"delay":687.0} +{"session_id":"sess-ff794e4c42c3","input_length":691,"output_length":1203,"hash_ids":[384078,384079],"delay":4652.5} +{"session_id":"sess-ff794e4c42c3","input_length":7245,"output_length":445,"hash_ids":[384080,384081,384082,384083,384084,384085,384086,384087,384088,384089,384090,384091,384092,384093,384094],"delay":9943.0} +{"session_id":"sess-ff794e4c42c3","input_length":809,"output_length":186,"hash_ids":[384095,384096],"delay":822.6} +{"session_id":"sess-ff794e4c42c3","input_length":1383,"output_length":113,"hash_ids":[384097,384098,384099],"delay":40761.0} +{"session_id":"sess-ff794e4c42c3","input_length":3390,"output_length":732,"hash_ids":[384100,384101,384102,384103,384104,384105,384106],"delay":618.5} +{"session_id":"sess-ff794e4c42c3","input_length":1451,"output_length":423,"hash_ids":[384107,384108,384109],"delay":670.5} +{"session_id":"sess-ff794e4c42c3","input_length":1564,"output_length":501,"hash_ids":[384110,384111,384112,384113],"delay":310.9} +{"session_id":"sess-ff794e4c42c3","input_length":550,"output_length":368,"hash_ids":[384114,384115],"delay":649.1} +{"session_id":"sess-ff794e4c42c3","input_length":5762,"output_length":289,"hash_ids":[384116,384117,384118,384119,384120,384121,384122,384123,384124,384125,384126,384127],"delay":763.5} +{"session_id":"sess-ff794e4c42c3","input_length":1954,"output_length":1284,"hash_ids":[384128,384129,384130,384131],"delay":506.8} +{"session_id":"sess-ff794e4c42c3","input_length":3819,"output_length":831,"hash_ids":[384132,384133,384134,384135,384136,384137,384138,384139],"delay":1718.4} +{"session_id":"sess-ff794e4c42c3","input_length":750,"output_length":659,"hash_ids":[384140,384141],"delay":1237.9} +{"session_id":"sess-ff794e4c42c3","input_length":7893,"output_length":105,"hash_ids":[384142,384143,384144,384145,384146,384147,384148,384149,384150,384151,384152,384153,384154,384155,384156,384157],"delay":1795.3} +{"session_id":"sess-ff794e4c42c3","input_length":982,"output_length":224,"hash_ids":[384158,384159],"delay":424.8} +{"session_id":"sess-ff794e4c42c3","input_length":2429,"output_length":82,"hash_ids":[384160,384161,384162,384163,384164],"delay":10035.5} +{"session_id":"sess-ff794e4c42c3","input_length":8676,"output_length":942,"hash_ids":[384165,384166,384167,384168,384169,384170,384171,384172,384173,384174,384175,384176,384177,384178,384179,384180,384181],"delay":385.6} +{"session_id":"sess-ff794e4c42c3","input_length":4881,"output_length":435,"hash_ids":[384182,384183,384184,384185,384186,384187,384188,384189,384190,384191],"delay":6331.6} +{"session_id":"sess-bed671422b77","input_length":57153,"output_length":240,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,388063,388064,388065,388066,388067,388068,388069,388070,388071],"timestamp":0.0,"group_id":47} +{"session_id":"sess-02d536d22d92","input_length":57864,"output_length":1703,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,392063,392064,392065,392066,392067,392068,392069,392070,392071,392072,392073],"timestamp":0.0,"group_id":1} +{"session_id":"sess-02d536d22d92","input_length":4524,"output_length":1549,"hash_ids":[392074,392075,392076,392077,392078,392079,392080,392081,392082],"delay":1215.0} +{"session_id":"sess-02d536d22d92","input_length":3640,"output_length":318,"hash_ids":[392083,392084,392085,392086,392087,392088,392089,392090],"delay":1745.6} +{"session_id":"sess-02d536d22d92","input_length":1496,"output_length":88,"hash_ids":[392091,392092,392093],"delay":1498.5} +{"session_id":"sess-02d536d22d92","input_length":5563,"output_length":356,"hash_ids":[392094,392095,392096,392097,392098,392099,392100,392101,392102,392103,392104],"delay":469.0} +{"session_id":"sess-02d536d22d92","input_length":1934,"output_length":92,"hash_ids":[392105,392106,392107,392108],"delay":546.0} +{"session_id":"sess-02d536d22d92","input_length":4006,"output_length":66,"hash_ids":[392109,392110,392111,392112,392113,392114,392115,392116],"delay":16415.4} +{"session_id":"sess-02d536d22d92","input_length":241,"output_length":122,"hash_ids":[392117],"delay":40372.0} +{"session_id":"sess-02d536d22d92","input_length":246,"output_length":243,"hash_ids":[392118],"delay":139.9} +{"session_id":"sess-02d536d22d92","input_length":372,"output_length":198,"hash_ids":[392119],"delay":419.9} +{"session_id":"sess-02d536d22d92","input_length":8097,"output_length":275,"hash_ids":[392120,392121,392122,392123,392124,392125,392126,392127,392128,392129,392130,392131,392132,392133,392134,392135],"delay":11352.1} +{"session_id":"sess-02d536d22d92","input_length":2426,"output_length":285,"hash_ids":[392136,392137,392138,392139,392140],"delay":2692.5} +{"session_id":"sess-02d536d22d92","input_length":1032,"output_length":72,"hash_ids":[392141,392142,392143],"delay":7118.5} +{"session_id":"sess-02d536d22d92","input_length":4461,"output_length":532,"hash_ids":[392144,392145,392146,392147,392148,392149,392150,392151,392152],"delay":2483.6} +{"session_id":"sess-02d536d22d92","input_length":1117,"output_length":762,"hash_ids":[392153,392154,392155],"delay":465.3} +{"session_id":"sess-02d536d22d92","input_length":363,"output_length":1532,"hash_ids":[392156],"delay":518.9} +{"session_id":"sess-02d536d22d92","input_length":1861,"output_length":553,"hash_ids":[392157,392158,392159,392160],"delay":214.2} +{"session_id":"sess-02d536d22d92","input_length":384,"output_length":454,"hash_ids":[392161],"delay":3253.1} +{"session_id":"sess-02d536d22d92","input_length":2090,"output_length":111,"hash_ids":[392162,392163,392164,392165,392166],"delay":1078.7} +{"session_id":"sess-02d536d22d92","input_length":1636,"output_length":53,"hash_ids":[392167,392168,392169,392170],"delay":170.8} +{"session_id":"sess-02d536d22d92","input_length":423,"output_length":328,"hash_ids":[392171],"delay":195.5} +{"session_id":"sess-02d536d22d92","input_length":2953,"output_length":1285,"hash_ids":[392172,392173,392174,392175,392176,392177],"delay":1113.6} +{"session_id":"sess-02d536d22d92","input_length":1396,"output_length":132,"hash_ids":[392178,392179,392180],"delay":407.9} +{"session_id":"sess-02d536d22d92","input_length":419,"output_length":282,"hash_ids":[392181],"delay":1854.0} +{"session_id":"sess-02d536d22d92","input_length":1649,"output_length":200,"hash_ids":[392182,392183,392184,392185],"delay":315.0} +{"session_id":"sess-02d536d22d92","input_length":4163,"output_length":103,"hash_ids":[392186,392187,392188,392189,392190,392191,392192,392193,392194],"delay":2328.3} +{"session_id":"sess-8ba456589000","input_length":59583,"output_length":575,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,396063,396064,396065,396066,396067,396068,396069,396070,396071,396072,396073,396074,396075,396076],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8ba456589000","input_length":567,"output_length":670,"hash_ids":[396077,396078],"delay":449.9} +{"session_id":"sess-8ba456589000","input_length":705,"output_length":69,"hash_ids":[396079,396080],"delay":1208.3} +{"session_id":"sess-8ba456589000","input_length":556,"output_length":74,"hash_ids":[396081,396082],"delay":22054.1} +{"session_id":"sess-8ba456589000","input_length":2548,"output_length":213,"hash_ids":[396083,396084,396085,396086,396087],"delay":1977.5} +{"session_id":"sess-8ba456589000","input_length":6209,"output_length":823,"hash_ids":[396088,396089,396090,396091,396092,396093,396094,396095,396096,396097,396098,396099,396100],"delay":40286.4} +{"session_id":"sess-8ba456589000","input_length":1038,"output_length":409,"hash_ids":[396101,396102,396103],"delay":777.5} +{"session_id":"sess-8ba456589000","input_length":862,"output_length":241,"hash_ids":[396104,396105],"delay":48783.2} +{"session_id":"sess-8ba456589000","input_length":435,"output_length":184,"hash_ids":[396106],"delay":553.5} +{"session_id":"sess-a279e1646267","input_length":74727,"output_length":242,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,400063,400064,400065,400066,400067,400068,400069,400070,400071,400072,400073,400074,400075,400076,400077,400078,400079,400080,400081,400082,400083,400084,400085,400086,400087,400088,400089,400090,400091,400092,400093,400094,400095,400096,400097,400098,400099,400100,400101,400102,400103,400104,400105],"timestamp":0.0,"group_id":6} +{"session_id":"sess-a279e1646267","input_length":363,"output_length":293,"hash_ids":[400106],"delay":1123.7} +{"session_id":"sess-a279e1646267","input_length":2982,"output_length":287,"hash_ids":[400107,400108,400109,400110,400111,400112],"delay":11831.5} +{"session_id":"sess-a279e1646267","input_length":906,"output_length":1101,"hash_ids":[400113,400114],"delay":7896.7} +{"session_id":"sess-a279e1646267","input_length":785,"output_length":244,"hash_ids":[400115,400116],"delay":724.6} +{"session_id":"sess-a279e1646267","input_length":1315,"output_length":814,"hash_ids":[400117,400118,400119],"delay":2505.0} +{"session_id":"sess-a279e1646267","input_length":1141,"output_length":521,"hash_ids":[400120,400121,400122],"delay":528.5} +{"session_id":"sess-a279e1646267","input_length":9137,"output_length":218,"hash_ids":[400123,400124,400125,400126,400127,400128,400129,400130,400131,400132,400133,400134,400135,400136,400137,400138,400139,400140],"delay":99.5} +{"session_id":"sess-a279e1646267","input_length":816,"output_length":30,"hash_ids":[400141,400142],"delay":13338.7} +{"session_id":"sess-a279e1646267","input_length":211,"output_length":832,"hash_ids":[400143],"delay":23538.7} +{"session_id":"sess-a279e1646267","input_length":1518,"output_length":711,"hash_ids":[400144,400145,400146],"delay":11013.7} +{"session_id":"sess-a279e1646267","input_length":1686,"output_length":525,"hash_ids":[400147,400148,400149,400150],"delay":6410.9} +{"session_id":"sess-a279e1646267","input_length":2318,"output_length":129,"hash_ids":[400151,400152,400153,400154,400155],"delay":311.1} +{"session_id":"sess-a279e1646267","input_length":301,"output_length":137,"hash_ids":[400156],"delay":564.7} +{"session_id":"sess-a279e1646267","input_length":8021,"output_length":370,"hash_ids":[400157,400158,400159,400160,400161,400162,400163,400164,400165,400166,400167,400168,400169,400170,400171,400172],"delay":396.3} +{"session_id":"sess-a279e1646267","input_length":923,"output_length":148,"hash_ids":[400173,400174],"delay":448.1} +{"session_id":"sess-a279e1646267","input_length":4749,"output_length":221,"hash_ids":[400175,400176,400177,400178,400179,400180,400181,400182,400183,400184],"delay":7819.3} +{"session_id":"sess-a279e1646267","input_length":1711,"output_length":718,"hash_ids":[400185,400186,400187,400188],"delay":1027.9} +{"session_id":"sess-a279e1646267","input_length":1505,"output_length":79,"hash_ids":[400189,400190,400191],"delay":2065.3} +{"session_id":"sess-a279e1646267","input_length":1905,"output_length":1036,"hash_ids":[400192,400193,400194,400195],"delay":18902.0} +{"session_id":"sess-a279e1646267","input_length":1118,"output_length":382,"hash_ids":[400196,400197,400198],"delay":2615.8} +{"session_id":"sess-a279e1646267","input_length":1024,"output_length":765,"hash_ids":[400199,400200],"delay":15010.7} +{"session_id":"sess-a279e1646267","input_length":636,"output_length":485,"hash_ids":[400201,400202],"delay":395.5} +{"session_id":"sess-a279e1646267","input_length":527,"output_length":941,"hash_ids":[400203,400204],"delay":5492.2} +{"session_id":"sess-00605285a4a0","input_length":64000,"output_length":1582,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,404063,404064,404065,404066,404067,404068,404069,404070,404071,404072,404073,404074,404075,404076,404077,404078,404079,404080,404081,404082,404083,404084],"timestamp":0.0,"group_id":2} +{"session_id":"sess-00605285a4a0","input_length":4058,"output_length":398,"hash_ids":[404085,404086,404087,404088,404089,404090,404091,404092],"delay":191.1} +{"session_id":"sess-00605285a4a0","input_length":2156,"output_length":172,"hash_ids":[404093,404094,404095,404096,404097],"delay":2811.1} +{"session_id":"sess-00605285a4a0","input_length":528,"output_length":84,"hash_ids":[404098,404099],"delay":1094.9} +{"session_id":"sess-00605285a4a0","input_length":865,"output_length":100,"hash_ids":[404100,404101],"delay":2211.6} +{"session_id":"sess-00605285a4a0","input_length":1328,"output_length":69,"hash_ids":[404102,404103,404104],"delay":2488.3} +{"session_id":"sess-00605285a4a0","input_length":3734,"output_length":2149,"hash_ids":[404105,404106,404107,404108,404109,404110,404111,404112],"delay":2618.9} +{"session_id":"sess-00605285a4a0","input_length":6109,"output_length":232,"hash_ids":[404113,404114,404115,404116,404117,404118,404119,404120,404121,404122,404123,404124],"delay":5301.1} +{"session_id":"sess-00605285a4a0","input_length":1720,"output_length":837,"hash_ids":[404125,404126,404127,404128],"delay":559.1} +{"session_id":"sess-00605285a4a0","input_length":1486,"output_length":58,"hash_ids":[404129,404130,404131],"delay":2630.3} +{"session_id":"sess-00605285a4a0","input_length":8423,"output_length":234,"hash_ids":[404132,404133,404134,404135,404136,404137,404138,404139,404140,404141,404142,404143,404144,404145,404146,404147,404148],"delay":1079.3} +{"session_id":"sess-00605285a4a0","input_length":635,"output_length":429,"hash_ids":[404149,404150],"delay":1159.8} +{"session_id":"sess-00605285a4a0","input_length":3079,"output_length":2432,"hash_ids":[404151,404152,404153,404154,404155,404156,404157],"delay":1161.9} +{"session_id":"sess-00605285a4a0","input_length":5022,"output_length":956,"hash_ids":[404158,404159,404160,404161,404162,404163,404164,404165,404166,404167],"delay":2302.5} +{"session_id":"sess-00605285a4a0","input_length":2060,"output_length":211,"hash_ids":[404168,404169,404170,404171,404172],"delay":1364.1} +{"session_id":"sess-00605285a4a0","input_length":4068,"output_length":190,"hash_ids":[404173,404174,404175,404176,404177,404178,404179,404180],"delay":2993.5} +{"session_id":"sess-00605285a4a0","input_length":255,"output_length":416,"hash_ids":[404181],"delay":287.0} +{"session_id":"sess-00605285a4a0","input_length":4582,"output_length":503,"hash_ids":[404182,404183,404184,404185,404186,404187,404188,404189,404190],"delay":353.7} +{"session_id":"sess-00605285a4a0","input_length":1066,"output_length":279,"hash_ids":[404191,404192,404193],"delay":1389.5} +{"session_id":"sess-00605285a4a0","input_length":1478,"output_length":83,"hash_ids":[404194,404195,404196],"delay":5684.0} +{"session_id":"sess-00605285a4a0","input_length":656,"output_length":74,"hash_ids":[404197,404198],"delay":15646.5} +{"session_id":"sess-00605285a4a0","input_length":1485,"output_length":155,"hash_ids":[404199,404200,404201],"delay":3514.8} +{"session_id":"sess-00605285a4a0","input_length":623,"output_length":59,"hash_ids":[404202,404203],"delay":766.4} +{"session_id":"sess-25aeea071b1d","input_length":56719,"output_length":1347,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,408063,408064,408065,408066,408067,408068,408069,408070],"timestamp":0.0,"group_id":2} +{"session_id":"sess-25aeea071b1d","input_length":1463,"output_length":366,"hash_ids":[408071,408072,408073],"delay":469.5} +{"session_id":"sess-25aeea071b1d","input_length":2509,"output_length":905,"hash_ids":[408074,408075,408076,408077,408078],"delay":3988.0} +{"session_id":"sess-25aeea071b1d","input_length":2402,"output_length":273,"hash_ids":[408079,408080,408081,408082,408083],"delay":27925.9} +{"session_id":"sess-25aeea071b1d","input_length":1173,"output_length":673,"hash_ids":[408084,408085,408086],"delay":4351.9} +{"session_id":"sess-25aeea071b1d","input_length":1931,"output_length":341,"hash_ids":[408087,408088,408089,408090],"delay":818.3} +{"session_id":"sess-25aeea071b1d","input_length":8753,"output_length":226,"hash_ids":[408091,408092,408093,408094,408095,408096,408097,408098,408099,408100,408101,408102,408103,408104,408105,408106,408107,408108],"delay":34481.2} +{"session_id":"sess-25aeea071b1d","input_length":4301,"output_length":1308,"hash_ids":[408109,408110,408111,408112,408113,408114,408115,408116,408117],"delay":994.6} +{"session_id":"sess-25aeea071b1d","input_length":622,"output_length":124,"hash_ids":[408118,408119],"delay":14388.9} +{"session_id":"sess-25aeea071b1d","input_length":1488,"output_length":153,"hash_ids":[408120,408121,408122],"delay":156.6} +{"session_id":"sess-25aeea071b1d","input_length":1037,"output_length":291,"hash_ids":[408123,408124,408125],"delay":3417.6} +{"session_id":"sess-25aeea071b1d","input_length":1220,"output_length":287,"hash_ids":[408126,408127,408128],"delay":446.0} +{"session_id":"sess-25aeea071b1d","input_length":5387,"output_length":2857,"hash_ids":[408129,408130,408131,408132,408133,408134,408135,408136,408137,408138,408139],"delay":164.8} +{"session_id":"sess-25aeea071b1d","input_length":2389,"output_length":170,"hash_ids":[408140,408141,408142,408143,408144],"delay":2437.0} +{"session_id":"sess-25aeea071b1d","input_length":933,"output_length":455,"hash_ids":[408145,408146],"delay":411.3} +{"session_id":"sess-25aeea071b1d","input_length":527,"output_length":456,"hash_ids":[408147,408148],"delay":2314.0} +{"session_id":"sess-25aeea071b1d","input_length":6815,"output_length":370,"hash_ids":[408149,408150,408151,408152,408153,408154,408155,408156,408157,408158,408159,408160,408161,408162],"delay":19378.6} +{"session_id":"sess-25aeea071b1d","input_length":8575,"output_length":223,"hash_ids":[408163,408164,408165,408166,408167,408168,408169,408170,408171,408172,408173,408174,408175,408176,408177,408178,408179],"delay":11851.8} +{"session_id":"sess-25aeea071b1d","input_length":371,"output_length":91,"hash_ids":[408180],"delay":1258.3} +{"session_id":"sess-25aeea071b1d","input_length":328,"output_length":596,"hash_ids":[408181],"delay":403.4} +{"session_id":"sess-25aeea071b1d","input_length":1911,"output_length":30,"hash_ids":[408182,408183,408184,408185],"delay":6458.3} +{"session_id":"sess-25aeea071b1d","input_length":1469,"output_length":154,"hash_ids":[408186,408187,408188],"delay":2209.0} +{"session_id":"sess-25aeea071b1d","input_length":1174,"output_length":297,"hash_ids":[408189,408190,408191],"delay":730.7} +{"session_id":"sess-79d85d76762d","input_length":53157,"output_length":147,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,412063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d44db55b045f","input_length":52503,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702],"timestamp":0.0,"group_id":3} +{"session_id":"sess-d44db55b045f","input_length":1298,"output_length":400,"hash_ids":[412064,412065,412066],"delay":1713.2} +{"session_id":"sess-d44db55b045f","input_length":4903,"output_length":161,"hash_ids":[412067,412068,412069,412070,412071,412072,412073,412074,412075,412076],"delay":24302.8} +{"session_id":"sess-d44db55b045f","input_length":619,"output_length":732,"hash_ids":[412077,412078],"delay":949.1} +{"session_id":"sess-d44db55b045f","input_length":4541,"output_length":258,"hash_ids":[412079,412080,412081,412082,412083,412084,412085,412086,412087],"delay":1917.8} +{"session_id":"sess-d44db55b045f","input_length":110,"output_length":282,"hash_ids":[412088],"delay":1793.9} +{"session_id":"sess-d44db55b045f","input_length":2175,"output_length":915,"hash_ids":[412089,412090,412091,412092,412093],"delay":4220.3} +{"session_id":"sess-d44db55b045f","input_length":3113,"output_length":267,"hash_ids":[412094,412095,412096,412097,412098,412099,412100],"delay":5077.4} +{"session_id":"sess-d44db55b045f","input_length":931,"output_length":208,"hash_ids":[412101,412102],"delay":821.6} +{"session_id":"sess-d44db55b045f","input_length":1606,"output_length":366,"hash_ids":[412103,412104,412105,412106],"delay":336.4} +{"session_id":"sess-d44db55b045f","input_length":1500,"output_length":104,"hash_ids":[412107,412108,412109],"delay":23111.4} +{"session_id":"sess-d44db55b045f","input_length":2211,"output_length":55,"hash_ids":[412110,412111,412112,412113,412114],"delay":968.5} +{"session_id":"sess-d44db55b045f","input_length":560,"output_length":1204,"hash_ids":[412115,412116],"delay":5723.5} +{"session_id":"sess-d44db55b045f","input_length":245,"output_length":30,"hash_ids":[412117],"delay":773.4} +{"session_id":"sess-d44db55b045f","input_length":1222,"output_length":267,"hash_ids":[412118,412119,412120],"delay":505.4} +{"session_id":"sess-d44db55b045f","input_length":505,"output_length":2248,"hash_ids":[412121],"delay":20392.2} +{"session_id":"sess-d44db55b045f","input_length":3725,"output_length":539,"hash_ids":[412122,412123,412124,412125,412126,412127,412128,412129],"delay":789.8} +{"session_id":"sess-d44db55b045f","input_length":1453,"output_length":686,"hash_ids":[412130,412131,412132],"delay":266.1} +{"session_id":"sess-d44db55b045f","input_length":3284,"output_length":563,"hash_ids":[412133,412134,412135,412136,412137,412138,412139],"delay":2668.3} +{"session_id":"sess-d44db55b045f","input_length":1157,"output_length":783,"hash_ids":[412140,412141,412142],"delay":311.4} +{"session_id":"sess-d44db55b045f","input_length":613,"output_length":182,"hash_ids":[412143,412144],"delay":2990.7} +{"session_id":"sess-d44db55b045f","input_length":7815,"output_length":361,"hash_ids":[412145,412146,412147,412148,412149,412150,412151,412152,412153,412154,412155,412156,412157,412158,412159,412160],"delay":1373.8} +{"session_id":"sess-d44db55b045f","input_length":1195,"output_length":43,"hash_ids":[412161,412162,412163],"delay":2878.0} +{"session_id":"sess-d44db55b045f","input_length":1008,"output_length":477,"hash_ids":[412164,412165],"delay":2093.2} +{"session_id":"sess-d44db55b045f","input_length":270,"output_length":271,"hash_ids":[412166],"delay":1478.0} +{"session_id":"sess-d44db55b045f","input_length":4318,"output_length":831,"hash_ids":[412167,412168,412169,412170,412171,412172,412173,412174,412175],"delay":195.3} +{"session_id":"sess-d44db55b045f","input_length":807,"output_length":510,"hash_ids":[412176,412177],"delay":1998.7} +{"session_id":"sess-d44db55b045f","input_length":1944,"output_length":606,"hash_ids":[412178,412179,412180,412181],"delay":408.9} +{"session_id":"sess-d44db55b045f","input_length":1839,"output_length":189,"hash_ids":[412182,412183,412184,412185],"delay":260.4} +{"session_id":"sess-d44db55b045f","input_length":5486,"output_length":221,"hash_ids":[412186,412187,412188,412189,412190,412191,412192,412193,412194,412195,412196],"delay":29275.4} +{"session_id":"sess-d44db55b045f","input_length":1874,"output_length":72,"hash_ids":[412197,412198,412199,412200],"delay":3070.4} +{"session_id":"sess-d44db55b045f","input_length":1460,"output_length":895,"hash_ids":[412201,412202,412203],"delay":2064.2} +{"session_id":"sess-851bb16d847f","input_length":53360,"output_length":50,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,420063,420064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-851bb16d847f","input_length":4671,"output_length":429,"hash_ids":[420065,420066,420067,420068,420069,420070,420071,420072,420073,420074],"delay":9216.3} +{"session_id":"sess-851bb16d847f","input_length":3084,"output_length":1394,"hash_ids":[420075,420076,420077,420078,420079,420080,420081],"delay":1224.9} +{"session_id":"sess-851bb16d847f","input_length":4008,"output_length":189,"hash_ids":[420082,420083,420084,420085,420086,420087,420088,420089],"delay":13845.2} +{"session_id":"sess-851bb16d847f","input_length":1262,"output_length":188,"hash_ids":[420090,420091,420092],"delay":31416.2} +{"session_id":"sess-851bb16d847f","input_length":2083,"output_length":283,"hash_ids":[420093,420094,420095,420096,420097],"delay":438.6} +{"session_id":"sess-851bb16d847f","input_length":620,"output_length":875,"hash_ids":[420098,420099],"delay":620.8} +{"session_id":"sess-851bb16d847f","input_length":103,"output_length":74,"hash_ids":[420100],"delay":2619.9} +{"session_id":"sess-851bb16d847f","input_length":532,"output_length":304,"hash_ids":[420101,420102],"delay":1184.2} +{"session_id":"sess-851bb16d847f","input_length":1757,"output_length":134,"hash_ids":[420103,420104,420105,420106],"delay":653.4} +{"session_id":"sess-851bb16d847f","input_length":4105,"output_length":30,"hash_ids":[420107,420108,420109,420110,420111,420112,420113,420114,420115],"delay":9836.2} +{"session_id":"sess-851bb16d847f","input_length":1940,"output_length":196,"hash_ids":[420116,420117,420118,420119],"delay":42417.7} +{"session_id":"sess-851bb16d847f","input_length":1955,"output_length":1432,"hash_ids":[420120,420121,420122,420123],"delay":400.0} +{"session_id":"sess-851bb16d847f","input_length":1007,"output_length":579,"hash_ids":[420124,420125],"delay":19515.3} +{"session_id":"sess-851bb16d847f","input_length":7534,"output_length":261,"hash_ids":[420126,420127,420128,420129,420130,420131,420132,420133,420134,420135,420136,420137,420138,420139,420140],"delay":10725.0} +{"session_id":"sess-851bb16d847f","input_length":1129,"output_length":339,"hash_ids":[420141,420142,420143],"delay":4547.1} +{"session_id":"sess-851bb16d847f","input_length":1279,"output_length":353,"hash_ids":[420144,420145,420146],"delay":22522.0} +{"session_id":"sess-851bb16d847f","input_length":6230,"output_length":205,"hash_ids":[420147,420148,420149,420150,420151,420152,420153,420154,420155,420156,420157,420158,420159],"delay":317.6} +{"session_id":"sess-851bb16d847f","input_length":742,"output_length":204,"hash_ids":[420160,420161],"delay":1415.5} +{"session_id":"sess-851bb16d847f","input_length":578,"output_length":142,"hash_ids":[420162,420163],"delay":2190.1} +{"session_id":"sess-851bb16d847f","input_length":606,"output_length":316,"hash_ids":[420164,420165],"delay":18591.5} +{"session_id":"sess-851bb16d847f","input_length":4362,"output_length":57,"hash_ids":[420166,420167,420168,420169,420170,420171,420172,420173,420174],"delay":4945.9} +{"session_id":"sess-851bb16d847f","input_length":1348,"output_length":1239,"hash_ids":[420175,420176,420177],"delay":5388.7} +{"session_id":"sess-851bb16d847f","input_length":1912,"output_length":76,"hash_ids":[420178,420179,420180,420181],"delay":481.1} +{"session_id":"sess-851bb16d847f","input_length":393,"output_length":337,"hash_ids":[420182],"delay":287.6} +{"session_id":"sess-851bb16d847f","input_length":857,"output_length":246,"hash_ids":[420183,420184],"delay":4780.1} +{"session_id":"sess-851bb16d847f","input_length":1036,"output_length":344,"hash_ids":[420185,420186,420187],"delay":261.6} +{"session_id":"sess-851bb16d847f","input_length":9751,"output_length":1689,"hash_ids":[420188,420189,420190,420191,420192,420193,420194,420195,420196,420197,420198,420199,420200,420201,420202,420203,420204,420205,420206,420207],"delay":14469.3} +{"session_id":"sess-273b06fc5c27","input_length":55992,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,424063,424064,424065,424066,424067,424068,424069],"timestamp":0.0,"group_id":6} +{"session_id":"sess-273b06fc5c27","input_length":2799,"output_length":85,"hash_ids":[424070,424071,424072,424073,424074,424075],"delay":25595.4} +{"session_id":"sess-273b06fc5c27","input_length":514,"output_length":1291,"hash_ids":[424076,424077],"delay":19628.0} +{"session_id":"sess-273b06fc5c27","input_length":319,"output_length":170,"hash_ids":[424078],"delay":26692.2} +{"session_id":"sess-273b06fc5c27","input_length":3153,"output_length":633,"hash_ids":[424079,424080,424081,424082,424083,424084,424085],"delay":419.5} +{"session_id":"sess-b4b0ad42912b","input_length":53462,"output_length":323,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,428063,428064],"timestamp":0.0,"group_id":5} +{"session_id":"sess-b4b0ad42912b","input_length":863,"output_length":139,"hash_ids":[428065,428066],"delay":371.1} +{"session_id":"sess-b4b0ad42912b","input_length":1347,"output_length":68,"hash_ids":[428067,428068,428069],"delay":326.6} +{"session_id":"sess-b4b0ad42912b","input_length":2359,"output_length":1336,"hash_ids":[428070,428071,428072,428073,428074],"delay":854.9} +{"session_id":"sess-b4b0ad42912b","input_length":2284,"output_length":163,"hash_ids":[428075,428076,428077,428078,428079],"delay":17605.9} +{"session_id":"sess-b4b0ad42912b","input_length":8774,"output_length":230,"hash_ids":[428080,428081,428082,428083,428084,428085,428086,428087,428088,428089,428090,428091,428092,428093,428094,428095,428096,428097],"delay":330.8} +{"session_id":"sess-b4b0ad42912b","input_length":1240,"output_length":88,"hash_ids":[428098,428099,428100],"delay":880.1} +{"session_id":"sess-b4b0ad42912b","input_length":445,"output_length":959,"hash_ids":[428101],"delay":40379.0} +{"session_id":"sess-b4b0ad42912b","input_length":2329,"output_length":624,"hash_ids":[428102,428103,428104,428105,428106],"delay":5117.1} +{"session_id":"sess-b4b0ad42912b","input_length":3616,"output_length":745,"hash_ids":[428107,428108,428109,428110,428111,428112,428113,428114],"delay":2155.9} +{"session_id":"sess-b4b0ad42912b","input_length":2042,"output_length":149,"hash_ids":[428115,428116,428117,428118],"delay":573.8} +{"session_id":"sess-b4b0ad42912b","input_length":3283,"output_length":33,"hash_ids":[428119,428120,428121,428122,428123,428124,428125],"delay":719.5} +{"session_id":"sess-b4b0ad42912b","input_length":5998,"output_length":315,"hash_ids":[428126,428127,428128,428129,428130,428131,428132,428133,428134,428135,428136,428137],"delay":14588.5} +{"session_id":"sess-b4b0ad42912b","input_length":1347,"output_length":421,"hash_ids":[428138,428139,428140],"delay":19167.8} +{"session_id":"sess-b4b0ad42912b","input_length":5435,"output_length":274,"hash_ids":[428141,428142,428143,428144,428145,428146,428147,428148,428149,428150,428151],"delay":9273.2} +{"session_id":"sess-b4b0ad42912b","input_length":1886,"output_length":54,"hash_ids":[428152,428153,428154,428155],"delay":416.4} +{"session_id":"sess-b4b0ad42912b","input_length":8271,"output_length":286,"hash_ids":[428156,428157,428158,428159,428160,428161,428162,428163,428164,428165,428166,428167,428168,428169,428170,428171,428172],"delay":12877.6} +{"session_id":"sess-b4b0ad42912b","input_length":427,"output_length":851,"hash_ids":[428173],"delay":791.2} +{"session_id":"sess-b4b0ad42912b","input_length":2946,"output_length":529,"hash_ids":[428174,428175,428176,428177,428178,428179],"delay":513.3} +{"session_id":"sess-b4b0ad42912b","input_length":2453,"output_length":267,"hash_ids":[428180,428181,428182,428183,428184],"delay":1187.3} +{"session_id":"sess-b4b0ad42912b","input_length":389,"output_length":354,"hash_ids":[428185],"delay":197.4} +{"session_id":"sess-b4b0ad42912b","input_length":3591,"output_length":133,"hash_ids":[428186,428187,428188,428189,428190,428191,428192,428193],"delay":654.3} +{"session_id":"sess-b4b0ad42912b","input_length":2348,"output_length":195,"hash_ids":[428194,428195,428196,428197,428198],"delay":290.1} +{"session_id":"sess-b4b0ad42912b","input_length":3217,"output_length":703,"hash_ids":[428199,428200,428201,428202,428203,428204,428205],"delay":225.7} +{"session_id":"sess-b4b0ad42912b","input_length":1192,"output_length":531,"hash_ids":[428206,428207,428208],"delay":802.3} +{"session_id":"sess-87060315f238","input_length":58417,"output_length":386,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,432063,432064,432065,432066,432067,432068,432069,432070,432071,432072,432073,432074],"timestamp":0.0,"group_id":6} +{"session_id":"sess-87060315f238","input_length":2555,"output_length":422,"hash_ids":[432075,432076,432077,432078,432079],"delay":420.1} +{"session_id":"sess-87060315f238","input_length":2400,"output_length":1833,"hash_ids":[432080,432081,432082,432083,432084],"delay":29742.8} +{"session_id":"sess-87060315f238","input_length":1127,"output_length":1217,"hash_ids":[432085,432086,432087],"delay":1025.4} +{"session_id":"sess-87060315f238","input_length":2155,"output_length":422,"hash_ids":[432088,432089,432090,432091,432092],"delay":973.7} +{"session_id":"sess-87060315f238","input_length":3968,"output_length":614,"hash_ids":[432093,432094,432095,432096,432097,432098,432099,432100],"delay":1258.0} +{"session_id":"sess-87060315f238","input_length":575,"output_length":112,"hash_ids":[432101,432102],"delay":614.3} +{"session_id":"sess-87060315f238","input_length":1593,"output_length":696,"hash_ids":[432103,432104,432105,432106],"delay":2667.0} +{"session_id":"sess-87060315f238","input_length":2155,"output_length":131,"hash_ids":[432107,432108,432109,432110,432111],"delay":1720.7} +{"session_id":"sess-87060315f238","input_length":2073,"output_length":95,"hash_ids":[432112,432113,432114,432115,432116],"delay":1698.9} +{"session_id":"sess-87060315f238","input_length":359,"output_length":206,"hash_ids":[432117],"delay":635.4} +{"session_id":"sess-87060315f238","input_length":1835,"output_length":249,"hash_ids":[432118,432119,432120,432121],"delay":435.2} +{"session_id":"sess-87060315f238","input_length":3688,"output_length":758,"hash_ids":[432122,432123,432124,432125,432126,432127,432128,432129],"delay":945.9} +{"session_id":"sess-87060315f238","input_length":906,"output_length":979,"hash_ids":[432130,432131],"delay":3831.0} +{"session_id":"sess-87060315f238","input_length":7030,"output_length":458,"hash_ids":[432132,432133,432134,432135,432136,432137,432138,432139,432140,432141,432142,432143,432144,432145],"delay":828.1} +{"session_id":"sess-87060315f238","input_length":435,"output_length":749,"hash_ids":[432146],"delay":287.2} +{"session_id":"sess-87060315f238","input_length":650,"output_length":332,"hash_ids":[432147,432148],"delay":6165.6} +{"session_id":"sess-87060315f238","input_length":9852,"output_length":322,"hash_ids":[432149,432150,432151,432152,432153,432154,432155,432156,432157,432158,432159,432160,432161,432162,432163,432164,432165,432166,432167,432168],"delay":2671.7} +{"session_id":"sess-87060315f238","input_length":3755,"output_length":173,"hash_ids":[432169,432170,432171,432172,432173,432174,432175,432176],"delay":5320.6} +{"session_id":"sess-87060315f238","input_length":3411,"output_length":591,"hash_ids":[432177,432178,432179,432180,432181,432182,432183],"delay":325.7} +{"session_id":"sess-87060315f238","input_length":1002,"output_length":232,"hash_ids":[432184,432185],"delay":2547.8} +{"session_id":"sess-87060315f238","input_length":1181,"output_length":313,"hash_ids":[432186,432187,432188],"delay":1206.7} +{"session_id":"sess-87060315f238","input_length":984,"output_length":1805,"hash_ids":[432189,432190],"delay":712.7} +{"session_id":"sess-87060315f238","input_length":736,"output_length":238,"hash_ids":[432191,432192],"delay":379.9} +{"session_id":"sess-87060315f238","input_length":2391,"output_length":171,"hash_ids":[432193,432194,432195,432196,432197],"delay":6197.3} +{"session_id":"sess-16a80d72777e","input_length":55596,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,436063,436064,436065,436066,436067,436068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-16a80d72777e","input_length":1134,"output_length":87,"hash_ids":[436069,436070,436071],"delay":1207.5} +{"session_id":"sess-16a80d72777e","input_length":103,"output_length":1317,"hash_ids":[436072],"delay":550.0} +{"session_id":"sess-16a80d72777e","input_length":4302,"output_length":105,"hash_ids":[436073,436074,436075,436076,436077,436078,436079,436080,436081],"delay":3417.7} +{"session_id":"sess-16a80d72777e","input_length":1652,"output_length":1666,"hash_ids":[436082,436083,436084,436085],"delay":10835.9} +{"session_id":"sess-16a80d72777e","input_length":479,"output_length":245,"hash_ids":[436086],"delay":737.2} +{"session_id":"sess-16a80d72777e","input_length":8732,"output_length":513,"hash_ids":[436087,436088,436089,436090,436091,436092,436093,436094,436095,436096,436097,436098,436099,436100,436101,436102,436103,436104],"delay":1677.5} +{"session_id":"sess-16a80d72777e","input_length":171,"output_length":367,"hash_ids":[436105],"delay":2946.8} +{"session_id":"sess-16a80d72777e","input_length":420,"output_length":169,"hash_ids":[436106],"delay":9420.4} +{"session_id":"sess-16a80d72777e","input_length":1888,"output_length":192,"hash_ids":[436107,436108,436109,436110],"delay":655.6} +{"session_id":"sess-16a80d72777e","input_length":4371,"output_length":74,"hash_ids":[436111,436112,436113,436114,436115,436116,436117,436118,436119],"delay":2780.2} +{"session_id":"sess-16a80d72777e","input_length":580,"output_length":76,"hash_ids":[436120,436121],"delay":6054.6} +{"session_id":"sess-16a80d72777e","input_length":2168,"output_length":903,"hash_ids":[436122,436123,436124,436125,436126],"delay":826.1} +{"session_id":"sess-082945891f15","input_length":53029,"output_length":304,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,440063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-082945891f15","input_length":2020,"output_length":1433,"hash_ids":[440064,440065,440066,440067],"delay":2540.6} +{"session_id":"sess-082945891f15","input_length":223,"output_length":30,"hash_ids":[440068],"delay":569.5} +{"session_id":"sess-082945891f15","input_length":1150,"output_length":51,"hash_ids":[440069,440070,440071],"delay":6735.2} +{"session_id":"sess-082945891f15","input_length":1410,"output_length":372,"hash_ids":[440072,440073,440074],"delay":7773.4} +{"session_id":"sess-082945891f15","input_length":2512,"output_length":493,"hash_ids":[440075,440076,440077,440078,440079],"delay":1786.5} +{"session_id":"sess-082945891f15","input_length":863,"output_length":1291,"hash_ids":[440080,440081],"delay":972.4} +{"session_id":"sess-082945891f15","input_length":6870,"output_length":141,"hash_ids":[440082,440083,440084,440085,440086,440087,440088,440089,440090,440091,440092,440093,440094,440095],"delay":1831.2} +{"session_id":"sess-082945891f15","input_length":3627,"output_length":268,"hash_ids":[440096,440097,440098,440099,440100,440101,440102,440103],"delay":501.6} +{"session_id":"sess-ad9d56c983e0","input_length":55403,"output_length":422,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,444063,444064,444065,444066,444067,444068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ad9d56c983e0","input_length":1863,"output_length":256,"hash_ids":[444069,444070,444071,444072],"delay":747.5} +{"session_id":"sess-ad9d56c983e0","input_length":3308,"output_length":701,"hash_ids":[444073,444074,444075,444076,444077,444078,444079],"delay":610.2} +{"session_id":"sess-ad9d56c983e0","input_length":3056,"output_length":158,"hash_ids":[444080,444081,444082,444083,444084,444085],"delay":18895.0} +{"session_id":"sess-ad9d56c983e0","input_length":2439,"output_length":167,"hash_ids":[444086,444087,444088,444089,444090],"delay":5593.4} +{"session_id":"sess-ad9d56c983e0","input_length":61,"output_length":422,"hash_ids":[444091],"delay":955.3} +{"session_id":"sess-ad9d56c983e0","input_length":1635,"output_length":243,"hash_ids":[444092,444093,444094,444095],"delay":2301.0} +{"session_id":"sess-a9d77fbe0a23","input_length":54601,"output_length":283,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,448063,448064,448065,448066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a9d77fbe0a23","input_length":786,"output_length":137,"hash_ids":[448067,448068],"delay":666.0} +{"session_id":"sess-a9d77fbe0a23","input_length":2376,"output_length":262,"hash_ids":[448069,448070,448071,448072,448073],"delay":444.4} +{"session_id":"sess-a9d77fbe0a23","input_length":349,"output_length":439,"hash_ids":[448074],"delay":1009.5} +{"session_id":"sess-a9d77fbe0a23","input_length":1165,"output_length":547,"hash_ids":[448075,448076,448077],"delay":1696.8} +{"session_id":"sess-a9d77fbe0a23","input_length":351,"output_length":459,"hash_ids":[448078],"delay":8378.8} +{"session_id":"sess-a9d77fbe0a23","input_length":1579,"output_length":201,"hash_ids":[448079,448080,448081,448082],"delay":1466.2} +{"session_id":"sess-a9d77fbe0a23","input_length":2794,"output_length":645,"hash_ids":[448083,448084,448085,448086,448087,448088],"delay":686.1} +{"session_id":"sess-a9d77fbe0a23","input_length":2310,"output_length":642,"hash_ids":[448089,448090,448091,448092,448093],"delay":1339.5} +{"session_id":"sess-a9d77fbe0a23","input_length":1141,"output_length":455,"hash_ids":[448094,448095,448096],"delay":63622.0} +{"session_id":"sess-a9d77fbe0a23","input_length":1122,"output_length":155,"hash_ids":[448097,448098,448099],"delay":10044.9} +{"session_id":"sess-a9d77fbe0a23","input_length":98,"output_length":170,"hash_ids":[448100],"delay":23819.4} +{"session_id":"sess-33cb851f0dd7","input_length":62966,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,452063,452064,452065,452066,452067,452068,452069,452070,452071,452072,452073,452074,452075,452076,452077,452078,452079,452080,452081,452082],"timestamp":0.0,"group_id":7} +{"session_id":"sess-33cb851f0dd7","input_length":645,"output_length":2211,"hash_ids":[452083,452084],"delay":764.6} +{"session_id":"sess-33cb851f0dd7","input_length":1219,"output_length":80,"hash_ids":[452085,452086,452087],"delay":2786.7} +{"session_id":"sess-33cb851f0dd7","input_length":5755,"output_length":67,"hash_ids":[452088,452089,452090,452091,452092,452093,452094,452095,452096,452097,452098,452099],"delay":441.9} +{"session_id":"sess-33cb851f0dd7","input_length":4684,"output_length":92,"hash_ids":[452100,452101,452102,452103,452104,452105,452106,452107,452108,452109],"delay":8200.9} +{"session_id":"sess-33cb851f0dd7","input_length":1240,"output_length":176,"hash_ids":[452110,452111,452112],"delay":933.5} +{"session_id":"sess-33cb851f0dd7","input_length":5169,"output_length":1202,"hash_ids":[452113,452114,452115,452116,452117,452118,452119,452120,452121,452122,452123],"delay":537.7} +{"session_id":"sess-33cb851f0dd7","input_length":2894,"output_length":301,"hash_ids":[452124,452125,452126,452127,452128,452129],"delay":10326.6} +{"session_id":"sess-33cb851f0dd7","input_length":1395,"output_length":46,"hash_ids":[452130,452131,452132],"delay":211.0} +{"session_id":"sess-33cb851f0dd7","input_length":1883,"output_length":585,"hash_ids":[452133,452134,452135,452136],"delay":547.9} +{"session_id":"sess-33cb851f0dd7","input_length":5334,"output_length":130,"hash_ids":[452137,452138,452139,452140,452141,452142,452143,452144,452145,452146,452147],"delay":7768.8} +{"session_id":"sess-33cb851f0dd7","input_length":9661,"output_length":44,"hash_ids":[452148,452149,452150,452151,452152,452153,452154,452155,452156,452157,452158,452159,452160,452161,452162,452163,452164,452165,452166],"delay":1953.8} +{"session_id":"sess-33cb851f0dd7","input_length":1835,"output_length":172,"hash_ids":[452167,452168,452169,452170],"delay":8391.6} +{"session_id":"sess-33cb851f0dd7","input_length":2583,"output_length":746,"hash_ids":[452171,452172,452173,452174,452175,452176],"delay":425.8} +{"session_id":"sess-33cb851f0dd7","input_length":6838,"output_length":148,"hash_ids":[452177,452178,452179,452180,452181,452182,452183,452184,452185,452186,452187,452188,452189,452190],"delay":279.2} +{"session_id":"sess-fd2fa2e54c36","input_length":55928,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,456063,456064,456065,456066,456067,456068,456069],"timestamp":0.0,"group_id":2} +{"session_id":"sess-fd2fa2e54c36","input_length":3657,"output_length":45,"hash_ids":[456070,456071,456072,456073,456074,456075,456076,456077],"delay":645.6} +{"session_id":"sess-fd2fa2e54c36","input_length":3537,"output_length":135,"hash_ids":[456078,456079,456080,456081,456082,456083,456084],"delay":333.8} +{"session_id":"sess-fd2fa2e54c36","input_length":4658,"output_length":782,"hash_ids":[456085,456086,456087,456088,456089,456090,456091,456092,456093,456094],"delay":754.4} +{"session_id":"sess-fd2fa2e54c36","input_length":4206,"output_length":239,"hash_ids":[456095,456096,456097,456098,456099,456100,456101,456102,456103],"delay":2735.4} +{"session_id":"sess-fd2fa2e54c36","input_length":1233,"output_length":92,"hash_ids":[456104,456105,456106],"delay":780.4} +{"session_id":"sess-fd2fa2e54c36","input_length":6504,"output_length":147,"hash_ids":[456107,456108,456109,456110,456111,456112,456113,456114,456115,456116,456117,456118,456119],"delay":7884.9} +{"session_id":"sess-fd2fa2e54c36","input_length":7212,"output_length":73,"hash_ids":[456120,456121,456122,456123,456124,456125,456126,456127,456128,456129,456130,456131,456132,456133,456134],"delay":44758.3} +{"session_id":"sess-fd2fa2e54c36","input_length":182,"output_length":1539,"hash_ids":[456135],"delay":19573.0} +{"session_id":"sess-fd2fa2e54c36","input_length":567,"output_length":263,"hash_ids":[456136,456137],"delay":21486.6} +{"session_id":"sess-fd2fa2e54c36","input_length":641,"output_length":192,"hash_ids":[456138,456139],"delay":47969.4} +{"session_id":"sess-fd2fa2e54c36","input_length":3811,"output_length":467,"hash_ids":[456140,456141,456142,456143,456144,456145,456146,456147],"delay":1248.0} +{"session_id":"sess-fd2fa2e54c36","input_length":4058,"output_length":91,"hash_ids":[456148,456149,456150,456151,456152,456153,456154,456155],"delay":621.9} +{"session_id":"sess-fd2fa2e54c36","input_length":1950,"output_length":225,"hash_ids":[456156,456157,456158,456159],"delay":811.5} +{"session_id":"sess-fd2fa2e54c36","input_length":212,"output_length":114,"hash_ids":[456160],"delay":809.6} +{"session_id":"sess-fd2fa2e54c36","input_length":1894,"output_length":69,"hash_ids":[456161,456162,456163,456164],"delay":36803.5} +{"session_id":"sess-fd2fa2e54c36","input_length":1061,"output_length":874,"hash_ids":[456165,456166,456167],"delay":617.8} +{"session_id":"sess-fd2fa2e54c36","input_length":1837,"output_length":393,"hash_ids":[456168,456169,456170,456171],"delay":258.9} +{"session_id":"sess-fd2fa2e54c36","input_length":546,"output_length":240,"hash_ids":[456172,456173],"delay":522.0} +{"session_id":"sess-fd2fa2e54c36","input_length":1171,"output_length":255,"hash_ids":[456174,456175,456176],"delay":454.4} +{"session_id":"sess-fd2fa2e54c36","input_length":1017,"output_length":563,"hash_ids":[456177,456178],"delay":1500.3} +{"session_id":"sess-fd2fa2e54c36","input_length":3786,"output_length":258,"hash_ids":[456179,456180,456181,456182,456183,456184,456185,456186],"delay":3386.8} +{"session_id":"sess-fd2fa2e54c36","input_length":462,"output_length":336,"hash_ids":[456187],"delay":171.7} +{"session_id":"sess-fd2fa2e54c36","input_length":642,"output_length":158,"hash_ids":[456188,456189],"delay":748.6} +{"session_id":"sess-fd2fa2e54c36","input_length":3393,"output_length":305,"hash_ids":[456190,456191,456192,456193,456194,456195,456196],"delay":846.1} +{"session_id":"sess-fd2fa2e54c36","input_length":581,"output_length":592,"hash_ids":[456197,456198],"delay":522.3} +{"session_id":"sess-fd2fa2e54c36","input_length":2741,"output_length":1000,"hash_ids":[456199,456200,456201,456202,456203,456204],"delay":1148.4} +{"session_id":"sess-fd2fa2e54c36","input_length":2715,"output_length":303,"hash_ids":[456205,456206,456207,456208,456209,456210],"delay":143.2} +{"session_id":"sess-88a47591d235","input_length":62022,"output_length":566,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,460063,460064,460065,460066,460067,460068,460069,460070,460071,460072,460073,460074,460075,460076,460077,460078,460079,460080,460081],"timestamp":0.0,"group_id":17} +{"session_id":"sess-88a47591d235","input_length":841,"output_length":304,"hash_ids":[460082,460083],"delay":283.7} +{"session_id":"sess-88a47591d235","input_length":595,"output_length":208,"hash_ids":[460084,460085],"delay":5266.6} +{"session_id":"sess-88a47591d235","input_length":799,"output_length":282,"hash_ids":[460086,460087],"delay":12933.4} +{"session_id":"sess-88a47591d235","input_length":1034,"output_length":616,"hash_ids":[460088,460089,460090],"delay":14682.2} +{"session_id":"sess-88a47591d235","input_length":4751,"output_length":709,"hash_ids":[460091,460092,460093,460094,460095,460096,460097,460098,460099,460100],"delay":1625.4} +{"session_id":"sess-88a47591d235","input_length":360,"output_length":74,"hash_ids":[460101],"delay":3461.1} +{"session_id":"sess-88a47591d235","input_length":1138,"output_length":164,"hash_ids":[460102,460103,460104],"delay":1650.1} +{"session_id":"sess-88a47591d235","input_length":4958,"output_length":2355,"hash_ids":[460105,460106,460107,460108,460109,460110,460111,460112,460113,460114],"delay":542.0} +{"session_id":"sess-88a47591d235","input_length":1085,"output_length":634,"hash_ids":[460115,460116,460117],"delay":1841.2} +{"session_id":"sess-88a47591d235","input_length":106,"output_length":230,"hash_ids":[460118],"delay":283.6} +{"session_id":"sess-88a47591d235","input_length":1140,"output_length":337,"hash_ids":[460119,460120,460121],"delay":223.8} +{"session_id":"sess-88a47591d235","input_length":760,"output_length":210,"hash_ids":[460122,460123],"delay":35488.2} +{"session_id":"sess-88a47591d235","input_length":207,"output_length":174,"hash_ids":[460124],"delay":5568.3} +{"session_id":"sess-88a47591d235","input_length":6960,"output_length":173,"hash_ids":[460125,460126,460127,460128,460129,460130,460131,460132,460133,460134,460135,460136,460137,460138],"delay":1760.0} +{"session_id":"sess-88a47591d235","input_length":1785,"output_length":637,"hash_ids":[460139,460140,460141,460142],"delay":22572.0} +{"session_id":"sess-88a47591d235","input_length":3951,"output_length":197,"hash_ids":[460143,460144,460145,460146,460147,460148,460149,460150],"delay":668.1} +{"session_id":"sess-88a47591d235","input_length":2855,"output_length":55,"hash_ids":[460151,460152,460153,460154,460155,460156],"delay":219.9} +{"session_id":"sess-88a47591d235","input_length":1575,"output_length":63,"hash_ids":[460157,460158,460159,460160],"delay":873.6} +{"session_id":"sess-88a47591d235","input_length":674,"output_length":564,"hash_ids":[460161,460162],"delay":35908.9} +{"session_id":"sess-88a47591d235","input_length":3368,"output_length":583,"hash_ids":[460163,460164,460165,460166,460167,460168,460169],"delay":2326.4} +{"session_id":"sess-88a47591d235","input_length":4779,"output_length":101,"hash_ids":[460170,460171,460172,460173,460174,460175,460176,460177,460178,460179],"delay":536.6} +{"session_id":"sess-88a47591d235","input_length":2992,"output_length":278,"hash_ids":[460180,460181,460182,460183,460184,460185],"delay":3266.9} +{"session_id":"sess-88a47591d235","input_length":2326,"output_length":72,"hash_ids":[460186,460187,460188,460189,460190],"delay":4900.2} +{"session_id":"sess-88a47591d235","input_length":3235,"output_length":420,"hash_ids":[460191,460192,460193,460194,460195,460196,460197],"delay":1835.7} +{"session_id":"sess-65a201d9116d","input_length":52687,"output_length":451,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-65a201d9116d","input_length":743,"output_length":543,"hash_ids":[460198,460199],"delay":1377.1} +{"session_id":"sess-65a201d9116d","input_length":365,"output_length":182,"hash_ids":[460200],"delay":4277.0} +{"session_id":"sess-65a201d9116d","input_length":5689,"output_length":342,"hash_ids":[460201,460202,460203,460204,460205,460206,460207,460208,460209,460210,460211,460212],"delay":1971.5} +{"session_id":"sess-65a201d9116d","input_length":2505,"output_length":57,"hash_ids":[460213,460214,460215,460216,460217],"delay":1450.0} +{"session_id":"sess-65a201d9116d","input_length":1146,"output_length":644,"hash_ids":[460218,460219,460220],"delay":20020.4} +{"session_id":"sess-65a201d9116d","input_length":70,"output_length":912,"hash_ids":[460221],"delay":713.3} +{"session_id":"sess-65a201d9116d","input_length":2537,"output_length":218,"hash_ids":[460222,460223,460224,460225,460226],"delay":1464.5} +{"session_id":"sess-65a201d9116d","input_length":9722,"output_length":114,"hash_ids":[460227,460228,460229,460230,460231,460232,460233,460234,460235,460236,460237,460238,460239,460240,460241,460242,460243,460244,460245],"delay":624.9} +{"session_id":"sess-65a201d9116d","input_length":953,"output_length":100,"hash_ids":[460246,460247],"delay":1451.7} +{"session_id":"sess-65a201d9116d","input_length":402,"output_length":2608,"hash_ids":[460248],"delay":25464.1} +{"session_id":"sess-65a201d9116d","input_length":4034,"output_length":143,"hash_ids":[460249,460250,460251,460252,460253,460254,460255,460256],"delay":50138.9} +{"session_id":"sess-65a201d9116d","input_length":1578,"output_length":854,"hash_ids":[460257,460258,460259,460260],"delay":2276.3} +{"session_id":"sess-65a201d9116d","input_length":8038,"output_length":852,"hash_ids":[460261,460262,460263,460264,460265,460266,460267,460268,460269,460270,460271,460272,460273,460274,460275,460276],"delay":1195.0} +{"session_id":"sess-65a201d9116d","input_length":443,"output_length":241,"hash_ids":[460277],"delay":11126.7} +{"session_id":"sess-65a201d9116d","input_length":1648,"output_length":1159,"hash_ids":[460278,460279,460280,460281],"delay":703.9} +{"session_id":"sess-65a201d9116d","input_length":6462,"output_length":130,"hash_ids":[460282,460283,460284,460285,460286,460287,460288,460289,460290,460291,460292,460293,460294],"delay":19185.4} +{"session_id":"sess-65a201d9116d","input_length":758,"output_length":186,"hash_ids":[460295,460296],"delay":5126.9} +{"session_id":"sess-3a3974ee49e2","input_length":52832,"output_length":1062,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,468063],"timestamp":0.0,"group_id":20} +{"session_id":"sess-3a3974ee49e2","input_length":772,"output_length":81,"hash_ids":[468064,468065],"delay":2448.9} +{"session_id":"sess-3a3974ee49e2","input_length":590,"output_length":474,"hash_ids":[468066,468067],"delay":2022.7} +{"session_id":"sess-3a3974ee49e2","input_length":3432,"output_length":81,"hash_ids":[468068,468069,468070,468071,468072,468073,468074],"delay":46205.5} +{"session_id":"sess-3a3974ee49e2","input_length":3303,"output_length":445,"hash_ids":[468075,468076,468077,468078,468079,468080,468081],"delay":1113.4} +{"session_id":"sess-3a3974ee49e2","input_length":2963,"output_length":246,"hash_ids":[468082,468083,468084,468085,468086,468087],"delay":44744.9} +{"session_id":"sess-3a3974ee49e2","input_length":1020,"output_length":93,"hash_ids":[468088,468089],"delay":1105.8} +{"session_id":"sess-3a3974ee49e2","input_length":535,"output_length":197,"hash_ids":[468090,468091],"delay":2539.7} +{"session_id":"sess-3a3974ee49e2","input_length":1759,"output_length":85,"hash_ids":[468092,468093,468094,468095],"delay":588.1} +{"session_id":"sess-3a3974ee49e2","input_length":2588,"output_length":457,"hash_ids":[468096,468097,468098,468099,468100,468101],"delay":11861.2} +{"session_id":"sess-3a3974ee49e2","input_length":576,"output_length":367,"hash_ids":[468102,468103],"delay":906.1} +{"session_id":"sess-3a3974ee49e2","input_length":1039,"output_length":158,"hash_ids":[468104,468105,468106],"delay":3955.0} +{"session_id":"sess-3a3974ee49e2","input_length":2100,"output_length":53,"hash_ids":[468107,468108,468109,468110,468111],"delay":4978.1} +{"session_id":"sess-3a3974ee49e2","input_length":1319,"output_length":323,"hash_ids":[468112,468113,468114],"delay":45687.3} +{"session_id":"sess-3a3974ee49e2","input_length":1662,"output_length":108,"hash_ids":[468115,468116,468117,468118],"delay":2618.5} +{"session_id":"sess-3a3974ee49e2","input_length":556,"output_length":510,"hash_ids":[468119,468120],"delay":4372.8} +{"session_id":"sess-3a3974ee49e2","input_length":5629,"output_length":537,"hash_ids":[468121,468122,468123,468124,468125,468126,468127,468128,468129,468130,468131],"delay":5245.4} +{"session_id":"sess-3a3974ee49e2","input_length":3335,"output_length":385,"hash_ids":[468132,468133,468134,468135,468136,468137,468138],"delay":12909.5} +{"session_id":"sess-3a3974ee49e2","input_length":1211,"output_length":454,"hash_ids":[468139,468140,468141],"delay":8307.7} +{"session_id":"sess-3a3974ee49e2","input_length":3136,"output_length":349,"hash_ids":[468142,468143,468144,468145,468146,468147,468148],"delay":4110.6} +{"session_id":"sess-3a3974ee49e2","input_length":8958,"output_length":152,"hash_ids":[468149,468150,468151,468152,468153,468154,468155,468156,468157,468158,468159,468160,468161,468162,468163,468164,468165,468166],"delay":887.7} +{"session_id":"sess-3a3974ee49e2","input_length":1568,"output_length":535,"hash_ids":[468167,468168,468169,468170],"delay":416.1} +{"session_id":"sess-3a3974ee49e2","input_length":329,"output_length":286,"hash_ids":[468171],"delay":11217.4} +{"session_id":"sess-3a3974ee49e2","input_length":9256,"output_length":212,"hash_ids":[468172,468173,468174,468175,468176,468177,468178,468179,468180,468181,468182,468183,468184,468185,468186,468187,468188,468189,468190],"delay":627.3} +{"session_id":"sess-3a3974ee49e2","input_length":4020,"output_length":219,"hash_ids":[468191,468192,468193,468194,468195,468196,468197,468198],"delay":745.2} +{"session_id":"sess-3a3974ee49e2","input_length":3165,"output_length":241,"hash_ids":[468199,468200,468201,468202,468203,468204,468205],"delay":12689.9} +{"session_id":"sess-3a3974ee49e2","input_length":5220,"output_length":648,"hash_ids":[468206,468207,468208,468209,468210,468211,468212,468213,468214,468215,468216],"delay":11802.5} +{"session_id":"sess-b5d4b4240c60","input_length":55653,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,472063,472064,472065,472066,472067,472068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b5d4b4240c60","input_length":3804,"output_length":73,"hash_ids":[472069,472070,472071,472072,472073,472074,472075,472076],"delay":2927.4} +{"session_id":"sess-b5d4b4240c60","input_length":1103,"output_length":81,"hash_ids":[472077,472078,472079],"delay":29233.2} +{"session_id":"sess-b5d4b4240c60","input_length":983,"output_length":487,"hash_ids":[472080,472081],"delay":2399.5} +{"session_id":"sess-b5d4b4240c60","input_length":4422,"output_length":45,"hash_ids":[472082,472083,472084,472085,472086,472087,472088,472089,472090],"delay":5738.1} +{"session_id":"sess-b5d4b4240c60","input_length":1538,"output_length":137,"hash_ids":[472091,472092,472093,472094],"delay":25094.2} +{"session_id":"sess-b5d4b4240c60","input_length":1796,"output_length":272,"hash_ids":[472095,472096,472097,472098],"delay":50172.0} +{"session_id":"sess-b5d4b4240c60","input_length":1909,"output_length":165,"hash_ids":[472099,472100,472101,472102],"delay":3475.4} +{"session_id":"sess-b5d4b4240c60","input_length":2756,"output_length":70,"hash_ids":[472103,472104,472105,472106,472107,472108],"delay":2945.6} +{"session_id":"sess-b5d4b4240c60","input_length":458,"output_length":30,"hash_ids":[472109],"delay":30415.3} +{"session_id":"sess-b5d4b4240c60","input_length":765,"output_length":725,"hash_ids":[472110,472111],"delay":4148.5} +{"session_id":"sess-b5d4b4240c60","input_length":1027,"output_length":403,"hash_ids":[472112,472113,472114],"delay":1160.4} +{"session_id":"sess-b5d4b4240c60","input_length":2293,"output_length":253,"hash_ids":[472115,472116,472117,472118,472119],"delay":8245.6} +{"session_id":"sess-b5d4b4240c60","input_length":2044,"output_length":41,"hash_ids":[472120,472121,472122,472123],"delay":212.5} +{"session_id":"sess-b5d4b4240c60","input_length":1549,"output_length":361,"hash_ids":[472124,472125,472126,472127],"delay":2875.6} +{"session_id":"sess-b5d4b4240c60","input_length":1307,"output_length":238,"hash_ids":[472128,472129,472130],"delay":43552.8} +{"session_id":"sess-b5d4b4240c60","input_length":912,"output_length":94,"hash_ids":[472131,472132],"delay":1253.7} +{"session_id":"sess-b5d4b4240c60","input_length":1258,"output_length":359,"hash_ids":[472133,472134,472135],"delay":566.3} +{"session_id":"sess-b5d4b4240c60","input_length":6337,"output_length":666,"hash_ids":[472136,472137,472138,472139,472140,472141,472142,472143,472144,472145,472146,472147,472148],"delay":2269.4} +{"session_id":"sess-b5d4b4240c60","input_length":4215,"output_length":773,"hash_ids":[472149,472150,472151,472152,472153,472154,472155,472156,472157],"delay":398.7} +{"session_id":"sess-b5d4b4240c60","input_length":2759,"output_length":379,"hash_ids":[472158,472159,472160,472161,472162,472163],"delay":1587.4} +{"session_id":"sess-b5d4b4240c60","input_length":2088,"output_length":1712,"hash_ids":[472164,472165,472166,472167,472168],"delay":15195.1} +{"session_id":"sess-2beecd832d35","input_length":67795,"output_length":274,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,476063,476064,476065,476066,476067,476068,476069,476070,476071,476072,476073,476074,476075,476076,476077,476078,476079,476080,476081,476082,476083,476084,476085,476086,476087,476088,476089,476090,476091,476092],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2beecd832d35","input_length":2683,"output_length":651,"hash_ids":[476093,476094,476095,476096,476097,476098],"delay":3117.2} +{"session_id":"sess-2beecd832d35","input_length":6766,"output_length":105,"hash_ids":[476099,476100,476101,476102,476103,476104,476105,476106,476107,476108,476109,476110,476111,476112],"delay":3920.8} +{"session_id":"sess-2beecd832d35","input_length":4666,"output_length":97,"hash_ids":[476113,476114,476115,476116,476117,476118,476119,476120,476121,476122],"delay":751.2} +{"session_id":"sess-2beecd832d35","input_length":420,"output_length":617,"hash_ids":[476123],"delay":576.8} +{"session_id":"sess-2beecd832d35","input_length":2016,"output_length":451,"hash_ids":[476124,476125,476126,476127],"delay":466.1} +{"session_id":"sess-2beecd832d35","input_length":2508,"output_length":368,"hash_ids":[476128,476129,476130,476131,476132],"delay":1087.4} +{"session_id":"sess-2beecd832d35","input_length":1525,"output_length":365,"hash_ids":[476133,476134,476135],"delay":11745.9} +{"session_id":"sess-2beecd832d35","input_length":1728,"output_length":152,"hash_ids":[476136,476137,476138,476139],"delay":38374.8} +{"session_id":"sess-2beecd832d35","input_length":4371,"output_length":234,"hash_ids":[476140,476141,476142,476143,476144,476145,476146,476147,476148],"delay":972.7} +{"session_id":"sess-2beecd832d35","input_length":5011,"output_length":370,"hash_ids":[476149,476150,476151,476152,476153,476154,476155,476156,476157,476158],"delay":3709.8} +{"session_id":"sess-2beecd832d35","input_length":2097,"output_length":67,"hash_ids":[476159,476160,476161,476162,476163],"delay":207.3} +{"session_id":"sess-2beecd832d35","input_length":1292,"output_length":160,"hash_ids":[476164,476165,476166],"delay":497.1} +{"session_id":"sess-2beecd832d35","input_length":1987,"output_length":451,"hash_ids":[476167,476168,476169,476170],"delay":1273.1} +{"session_id":"sess-2beecd832d35","input_length":1189,"output_length":216,"hash_ids":[476171,476172,476173],"delay":8342.7} +{"session_id":"sess-2beecd832d35","input_length":4172,"output_length":401,"hash_ids":[476174,476175,476176,476177,476178,476179,476180,476181,476182],"delay":501.2} +{"session_id":"sess-2beecd832d35","input_length":2882,"output_length":1019,"hash_ids":[476183,476184,476185,476186,476187,476188],"delay":584.4} +{"session_id":"sess-2beecd832d35","input_length":1466,"output_length":1348,"hash_ids":[476189,476190,476191],"delay":1005.9} +{"session_id":"sess-2beecd832d35","input_length":2513,"output_length":220,"hash_ids":[476192,476193,476194,476195,476196],"delay":321.2} +{"session_id":"sess-2beecd832d35","input_length":1318,"output_length":263,"hash_ids":[476197,476198,476199],"delay":1301.3} +{"session_id":"sess-2beecd832d35","input_length":1178,"output_length":88,"hash_ids":[476200,476201,476202],"delay":943.0} +{"session_id":"sess-2beecd832d35","input_length":649,"output_length":102,"hash_ids":[476203,476204],"delay":5730.3} +{"session_id":"sess-2beecd832d35","input_length":231,"output_length":48,"hash_ids":[476205],"delay":2042.4} +{"session_id":"sess-ce35b6dca018","input_length":62129,"output_length":145,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,480063,480064,480065,480066,480067,480068,480069,480070,480071,480072,480073,480074,480075,480076,480077,480078,480079,480080,480081],"timestamp":0.0,"group_id":18} +{"session_id":"sess-ce35b6dca018","input_length":765,"output_length":244,"hash_ids":[480082,480083],"delay":181.3} +{"session_id":"sess-ce35b6dca018","input_length":3691,"output_length":225,"hash_ids":[480084,480085,480086,480087,480088,480089,480090,480091],"delay":961.2} +{"session_id":"sess-ce35b6dca018","input_length":1848,"output_length":98,"hash_ids":[480092,480093,480094,480095],"delay":2078.9} +{"session_id":"sess-ce35b6dca018","input_length":661,"output_length":180,"hash_ids":[480096,480097],"delay":351.7} +{"session_id":"sess-ce35b6dca018","input_length":1355,"output_length":30,"hash_ids":[480098,480099,480100],"delay":15742.0} +{"session_id":"sess-ce35b6dca018","input_length":8959,"output_length":684,"hash_ids":[480101,480102,480103,480104,480105,480106,480107,480108,480109,480110,480111,480112,480113,480114,480115,480116,480117,480118],"delay":38633.4} +{"session_id":"sess-ce35b6dca018","input_length":505,"output_length":1235,"hash_ids":[480119],"delay":1708.9} +{"session_id":"sess-ce35b6dca018","input_length":6629,"output_length":376,"hash_ids":[480120,480121,480122,480123,480124,480125,480126,480127,480128,480129,480130,480131,480132],"delay":3042.0} +{"session_id":"sess-ce35b6dca018","input_length":844,"output_length":1726,"hash_ids":[480133,480134],"delay":1398.4} +{"session_id":"sess-ce35b6dca018","input_length":1351,"output_length":526,"hash_ids":[480135,480136,480137],"delay":18134.1} +{"session_id":"sess-ce35b6dca018","input_length":2049,"output_length":89,"hash_ids":[480138,480139,480140,480141,480142],"delay":619.9} +{"session_id":"sess-ce35b6dca018","input_length":4120,"output_length":206,"hash_ids":[480143,480144,480145,480146,480147,480148,480149,480150,480151],"delay":297.2} +{"session_id":"sess-ce35b6dca018","input_length":3976,"output_length":272,"hash_ids":[480152,480153,480154,480155,480156,480157,480158,480159],"delay":811.0} +{"session_id":"sess-ce35b6dca018","input_length":2064,"output_length":325,"hash_ids":[480160,480161,480162,480163,480164],"delay":6066.9} +{"session_id":"sess-ce35b6dca018","input_length":1575,"output_length":577,"hash_ids":[480165,480166,480167,480168],"delay":7733.7} +{"session_id":"sess-ce35b6dca018","input_length":2361,"output_length":1230,"hash_ids":[480169,480170,480171,480172,480173],"delay":201.6} +{"session_id":"sess-ce35b6dca018","input_length":1035,"output_length":545,"hash_ids":[480174,480175,480176],"delay":2228.5} +{"session_id":"sess-ce35b6dca018","input_length":1180,"output_length":573,"hash_ids":[480177,480178,480179],"delay":429.3} +{"session_id":"sess-ce35b6dca018","input_length":410,"output_length":87,"hash_ids":[480180],"delay":403.5} +{"session_id":"sess-ce35b6dca018","input_length":1142,"output_length":535,"hash_ids":[480181,480182,480183],"delay":1369.8} +{"session_id":"sess-ce35b6dca018","input_length":1024,"output_length":328,"hash_ids":[480184,480185],"delay":326.7} +{"session_id":"sess-ce35b6dca018","input_length":9992,"output_length":65,"hash_ids":[480186,480187,480188,480189,480190,480191,480192,480193,480194,480195,480196,480197,480198,480199,480200,480201,480202,480203,480204,480205],"delay":1324.4} +{"session_id":"sess-b9942078093a","input_length":53237,"output_length":588,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,484063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b9942078093a","input_length":1672,"output_length":124,"hash_ids":[484064,484065,484066,484067],"delay":2636.3} +{"session_id":"sess-b9942078093a","input_length":3748,"output_length":302,"hash_ids":[484068,484069,484070,484071,484072,484073,484074,484075],"delay":3981.6} +{"session_id":"sess-b9942078093a","input_length":168,"output_length":435,"hash_ids":[484076],"delay":399.6} +{"session_id":"sess-b9942078093a","input_length":1974,"output_length":148,"hash_ids":[484077,484078,484079,484080],"delay":193.6} +{"session_id":"sess-b9942078093a","input_length":8035,"output_length":149,"hash_ids":[484081,484082,484083,484084,484085,484086,484087,484088,484089,484090,484091,484092,484093,484094,484095,484096],"delay":756.4} +{"session_id":"sess-b9942078093a","input_length":898,"output_length":395,"hash_ids":[484097,484098],"delay":41056.1} +{"session_id":"sess-b9942078093a","input_length":1976,"output_length":791,"hash_ids":[484099,484100,484101,484102],"delay":1129.0} +{"session_id":"sess-b9942078093a","input_length":270,"output_length":93,"hash_ids":[484103],"delay":293.9} +{"session_id":"sess-b9942078093a","input_length":3282,"output_length":30,"hash_ids":[484104,484105,484106,484107,484108,484109,484110],"delay":1091.4} +{"session_id":"sess-b9942078093a","input_length":1322,"output_length":1394,"hash_ids":[484111,484112,484113],"delay":1326.6} +{"session_id":"sess-b9942078093a","input_length":9730,"output_length":967,"hash_ids":[484114,484115,484116,484117,484118,484119,484120,484121,484122,484123,484124,484125,484126,484127,484128,484129,484130,484131,484132,484133],"delay":1229.1} +{"session_id":"sess-b9942078093a","input_length":5074,"output_length":210,"hash_ids":[484134,484135,484136,484137,484138,484139,484140,484141,484142,484143],"delay":604.9} +{"session_id":"sess-b9942078093a","input_length":1461,"output_length":490,"hash_ids":[484144,484145,484146],"delay":4946.5} +{"session_id":"sess-b9942078093a","input_length":3654,"output_length":190,"hash_ids":[484147,484148,484149,484150,484151,484152,484153,484154],"delay":3305.6} +{"session_id":"sess-b9942078093a","input_length":355,"output_length":458,"hash_ids":[484155],"delay":7904.3} +{"session_id":"sess-b9942078093a","input_length":534,"output_length":608,"hash_ids":[484156,484157],"delay":614.5} +{"session_id":"sess-b9942078093a","input_length":1728,"output_length":1274,"hash_ids":[484158,484159,484160,484161],"delay":1142.5} +{"session_id":"sess-b9942078093a","input_length":1228,"output_length":510,"hash_ids":[484162,484163,484164],"delay":165.4} +{"session_id":"sess-b9942078093a","input_length":4994,"output_length":914,"hash_ids":[484165,484166,484167,484168,484169,484170,484171,484172,484173,484174],"delay":260.2} +{"session_id":"sess-b9942078093a","input_length":8214,"output_length":90,"hash_ids":[484175,484176,484177,484178,484179,484180,484181,484182,484183,484184,484185,484186,484187,484188,484189,484190,484191],"delay":75.8} +{"session_id":"sess-b9942078093a","input_length":526,"output_length":194,"hash_ids":[484192,484193],"delay":1553.8} +{"session_id":"sess-b9942078093a","input_length":1274,"output_length":2376,"hash_ids":[484194,484195,484196],"delay":1501.2} +{"session_id":"sess-b9942078093a","input_length":1085,"output_length":1294,"hash_ids":[484197,484198,484199],"delay":1300.3} +{"session_id":"sess-be32418c983e","input_length":53952,"output_length":181,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,488063,488064,488065],"timestamp":0.0,"group_id":3} +{"session_id":"sess-be32418c983e","input_length":3497,"output_length":255,"hash_ids":[488066,488067,488068,488069,488070,488071,488072],"delay":1396.6} +{"session_id":"sess-be32418c983e","input_length":1612,"output_length":85,"hash_ids":[488073,488074,488075,488076],"delay":4853.1} +{"session_id":"sess-be32418c983e","input_length":5526,"output_length":268,"hash_ids":[488077,488078,488079,488080,488081,488082,488083,488084,488085,488086,488087],"delay":54507.1} +{"session_id":"sess-be32418c983e","input_length":382,"output_length":1550,"hash_ids":[488088],"delay":3428.8} +{"session_id":"sess-be32418c983e","input_length":1112,"output_length":660,"hash_ids":[488089,488090,488091],"delay":2422.2} +{"session_id":"sess-be32418c983e","input_length":6737,"output_length":533,"hash_ids":[488092,488093,488094,488095,488096,488097,488098,488099,488100,488101,488102,488103,488104,488105],"delay":23966.1} +{"session_id":"sess-be32418c983e","input_length":3798,"output_length":740,"hash_ids":[488106,488107,488108,488109,488110,488111,488112,488113],"delay":812.1} +{"session_id":"sess-be32418c983e","input_length":1976,"output_length":222,"hash_ids":[488114,488115,488116,488117],"delay":356.6} +{"session_id":"sess-be32418c983e","input_length":629,"output_length":1532,"hash_ids":[488118,488119],"delay":1828.5} +{"session_id":"sess-be32418c983e","input_length":9386,"output_length":30,"hash_ids":[488120,488121,488122,488123,488124,488125,488126,488127,488128,488129,488130,488131,488132,488133,488134,488135,488136,488137,488138],"delay":232.8} +{"session_id":"sess-be32418c983e","input_length":725,"output_length":31,"hash_ids":[488139,488140],"delay":1888.5} +{"session_id":"sess-be32418c983e","input_length":8849,"output_length":76,"hash_ids":[488141,488142,488143,488144,488145,488146,488147,488148,488149,488150,488151,488152,488153,488154,488155,488156,488157,488158],"delay":536.3} +{"session_id":"sess-be32418c983e","input_length":182,"output_length":250,"hash_ids":[488159],"delay":988.8} +{"session_id":"sess-be32418c983e","input_length":1799,"output_length":2017,"hash_ids":[488160,488161,488162,488163],"delay":550.5} +{"session_id":"sess-be32418c983e","input_length":2997,"output_length":415,"hash_ids":[488164,488165,488166,488167,488168,488169],"delay":479.4} +{"session_id":"sess-be32418c983e","input_length":545,"output_length":318,"hash_ids":[488170,488171],"delay":2567.8} +{"session_id":"sess-be32418c983e","input_length":3370,"output_length":34,"hash_ids":[488172,488173,488174,488175,488176,488177,488178],"delay":110.4} +{"session_id":"sess-be32418c983e","input_length":930,"output_length":109,"hash_ids":[488179,488180],"delay":703.9} +{"session_id":"sess-be32418c983e","input_length":1180,"output_length":302,"hash_ids":[488181,488182,488183],"delay":510.9} +{"session_id":"sess-be32418c983e","input_length":2225,"output_length":96,"hash_ids":[488184,488185,488186,488187,488188],"delay":131.7} +{"session_id":"sess-be32418c983e","input_length":3459,"output_length":30,"hash_ids":[488189,488190,488191,488192,488193,488194,488195],"delay":185.8} +{"session_id":"sess-be32418c983e","input_length":1291,"output_length":1342,"hash_ids":[488196,488197,488198],"delay":1521.4} +{"session_id":"sess-be32418c983e","input_length":960,"output_length":454,"hash_ids":[488199,488200],"delay":6206.6} +{"session_id":"sess-be32418c983e","input_length":575,"output_length":144,"hash_ids":[488201,488202],"delay":16604.5} +{"session_id":"sess-a2fecf65d892","input_length":53556,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,492063,492064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a2fecf65d892","input_length":1096,"output_length":248,"hash_ids":[492065,492066,492067],"delay":5499.2} +{"session_id":"sess-a2fecf65d892","input_length":443,"output_length":115,"hash_ids":[492068],"delay":1682.5} +{"session_id":"sess-a2fecf65d892","input_length":847,"output_length":572,"hash_ids":[492069,492070],"delay":1716.8} +{"session_id":"sess-a2fecf65d892","input_length":6652,"output_length":758,"hash_ids":[492071,492072,492073,492074,492075,492076,492077,492078,492079,492080,492081,492082,492083],"delay":3322.4} +{"session_id":"sess-a2fecf65d892","input_length":695,"output_length":30,"hash_ids":[492084,492085],"delay":3031.2} +{"session_id":"sess-a2fecf65d892","input_length":1205,"output_length":177,"hash_ids":[492086,492087,492088],"delay":2559.7} +{"session_id":"sess-a2fecf65d892","input_length":1448,"output_length":1994,"hash_ids":[492089,492090,492091],"delay":7272.9} +{"session_id":"sess-a2fecf65d892","input_length":1003,"output_length":61,"hash_ids":[492092,492093],"delay":8358.2} +{"session_id":"sess-a2fecf65d892","input_length":252,"output_length":75,"hash_ids":[492094],"delay":1183.6} +{"session_id":"sess-a2fecf65d892","input_length":1874,"output_length":476,"hash_ids":[492095,492096,492097,492098],"delay":2431.0} +{"session_id":"sess-a2fecf65d892","input_length":3215,"output_length":75,"hash_ids":[492099,492100,492101,492102,492103,492104,492105],"delay":6195.2} +{"session_id":"sess-a2fecf65d892","input_length":5164,"output_length":220,"hash_ids":[492106,492107,492108,492109,492110,492111,492112,492113,492114,492115,492116],"delay":867.7} +{"session_id":"sess-a2fecf65d892","input_length":49,"output_length":130,"hash_ids":[492117],"delay":442.0} +{"session_id":"sess-a2fecf65d892","input_length":3405,"output_length":453,"hash_ids":[492118,492119,492120,492121,492122,492123,492124],"delay":180.9} +{"session_id":"sess-a2fecf65d892","input_length":5941,"output_length":131,"hash_ids":[492125,492126,492127,492128,492129,492130,492131,492132,492133,492134,492135,492136],"delay":832.7} +{"session_id":"sess-a2fecf65d892","input_length":1612,"output_length":270,"hash_ids":[492137,492138,492139,492140],"delay":1315.3} +{"session_id":"sess-a2fecf65d892","input_length":6019,"output_length":435,"hash_ids":[492141,492142,492143,492144,492145,492146,492147,492148,492149,492150,492151,492152],"delay":170.7} +{"session_id":"sess-a2fecf65d892","input_length":666,"output_length":385,"hash_ids":[492153,492154],"delay":1129.2} +{"session_id":"sess-a2fecf65d892","input_length":3223,"output_length":367,"hash_ids":[492155,492156,492157,492158,492159,492160,492161],"delay":3328.2} +{"session_id":"sess-a2fecf65d892","input_length":8678,"output_length":920,"hash_ids":[492162,492163,492164,492165,492166,492167,492168,492169,492170,492171,492172,492173,492174,492175,492176,492177,492178],"delay":4889.5} +{"session_id":"sess-a2fecf65d892","input_length":719,"output_length":942,"hash_ids":[492179,492180],"delay":11939.5} +{"session_id":"sess-a2fecf65d892","input_length":2503,"output_length":379,"hash_ids":[492181,492182,492183,492184,492185],"delay":6401.5} +{"session_id":"sess-a2fecf65d892","input_length":6327,"output_length":189,"hash_ids":[492186,492187,492188,492189,492190,492191,492192,492193,492194,492195,492196,492197,492198],"delay":1285.6} +{"session_id":"sess-a2fecf65d892","input_length":709,"output_length":159,"hash_ids":[492199,492200],"delay":1485.4} +{"session_id":"sess-a2fecf65d892","input_length":205,"output_length":303,"hash_ids":[492201],"delay":826.4} +{"session_id":"sess-a2fecf65d892","input_length":584,"output_length":113,"hash_ids":[492202,492203],"delay":1448.4} +{"session_id":"sess-a2fecf65d892","input_length":1423,"output_length":955,"hash_ids":[492204,492205,492206],"delay":1692.7} +{"session_id":"sess-a40cbf5d3d15","input_length":52935,"output_length":1103,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,496063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a40cbf5d3d15","input_length":1904,"output_length":118,"hash_ids":[496064,496065,496066,496067],"delay":11378.9} +{"session_id":"sess-a40cbf5d3d15","input_length":771,"output_length":196,"hash_ids":[496068,496069],"delay":634.7} +{"session_id":"sess-a40cbf5d3d15","input_length":3401,"output_length":684,"hash_ids":[496070,496071,496072,496073,496074,496075,496076],"delay":1296.5} +{"session_id":"sess-a40cbf5d3d15","input_length":839,"output_length":44,"hash_ids":[496077,496078],"delay":993.9} +{"session_id":"sess-a40cbf5d3d15","input_length":1514,"output_length":1113,"hash_ids":[496079,496080,496081],"delay":9695.3} +{"session_id":"sess-a40cbf5d3d15","input_length":4093,"output_length":117,"hash_ids":[496082,496083,496084,496085,496086,496087,496088,496089],"delay":2962.8} +{"session_id":"sess-a40cbf5d3d15","input_length":308,"output_length":535,"hash_ids":[496090],"delay":992.8} +{"session_id":"sess-a40cbf5d3d15","input_length":336,"output_length":282,"hash_ids":[496091],"delay":3677.8} +{"session_id":"sess-a40cbf5d3d15","input_length":1579,"output_length":464,"hash_ids":[496092,496093,496094,496095],"delay":13329.5} +{"session_id":"sess-a40cbf5d3d15","input_length":650,"output_length":252,"hash_ids":[496096,496097],"delay":2471.7} +{"session_id":"sess-a40cbf5d3d15","input_length":254,"output_length":352,"hash_ids":[496098],"delay":334.2} +{"session_id":"sess-a40cbf5d3d15","input_length":1973,"output_length":367,"hash_ids":[496099,496100,496101,496102],"delay":429.1} +{"session_id":"sess-a40cbf5d3d15","input_length":2962,"output_length":866,"hash_ids":[496103,496104,496105,496106,496107,496108],"delay":4533.6} +{"session_id":"sess-a40cbf5d3d15","input_length":667,"output_length":280,"hash_ids":[496109,496110],"delay":1482.5} +{"session_id":"sess-a40cbf5d3d15","input_length":1658,"output_length":80,"hash_ids":[496111,496112,496113,496114],"delay":11191.8} +{"session_id":"sess-a40cbf5d3d15","input_length":1500,"output_length":361,"hash_ids":[496115,496116,496117],"delay":465.5} +{"session_id":"sess-a40cbf5d3d15","input_length":124,"output_length":45,"hash_ids":[496118],"delay":22510.6} +{"session_id":"sess-a40cbf5d3d15","input_length":2987,"output_length":351,"hash_ids":[496119,496120,496121,496122,496123,496124],"delay":23960.3} +{"session_id":"sess-a40cbf5d3d15","input_length":1150,"output_length":42,"hash_ids":[496125,496126,496127],"delay":431.4} +{"session_id":"sess-a40cbf5d3d15","input_length":2813,"output_length":354,"hash_ids":[496128,496129,496130,496131,496132,496133],"delay":402.0} +{"session_id":"sess-a40cbf5d3d15","input_length":1656,"output_length":302,"hash_ids":[496134,496135,496136,496137],"delay":461.6} +{"session_id":"sess-a40cbf5d3d15","input_length":3196,"output_length":347,"hash_ids":[496138,496139,496140,496141,496142,496143,496144],"delay":467.0} +{"session_id":"sess-a40cbf5d3d15","input_length":470,"output_length":179,"hash_ids":[496145],"delay":510.9} +{"session_id":"sess-a40cbf5d3d15","input_length":182,"output_length":646,"hash_ids":[496146],"delay":453.4} +{"session_id":"sess-a40cbf5d3d15","input_length":4656,"output_length":230,"hash_ids":[496147,496148,496149,496150,496151,496152,496153,496154,496155,496156],"delay":34317.5} +{"session_id":"sess-a40cbf5d3d15","input_length":907,"output_length":2222,"hash_ids":[496157,496158],"delay":1337.5} +{"session_id":"sess-a40cbf5d3d15","input_length":3690,"output_length":334,"hash_ids":[496159,496160,496161,496162,496163,496164,496165,496166],"delay":244.0} +{"session_id":"sess-a40cbf5d3d15","input_length":889,"output_length":280,"hash_ids":[496167,496168],"delay":1037.3} +{"session_id":"sess-a40cbf5d3d15","input_length":732,"output_length":113,"hash_ids":[496169,496170],"delay":162.5} +{"session_id":"sess-a40cbf5d3d15","input_length":5488,"output_length":581,"hash_ids":[496171,496172,496173,496174,496175,496176,496177,496178,496179,496180,496181],"delay":547.0} +{"session_id":"sess-a40cbf5d3d15","input_length":324,"output_length":63,"hash_ids":[496182],"delay":5486.8} +{"session_id":"sess-a40cbf5d3d15","input_length":343,"output_length":109,"hash_ids":[496183],"delay":3801.9} +{"session_id":"sess-a40cbf5d3d15","input_length":3374,"output_length":215,"hash_ids":[496184,496185,496186,496187,496188,496189,496190],"delay":404.2} +{"session_id":"sess-a40cbf5d3d15","input_length":824,"output_length":92,"hash_ids":[496191,496192],"delay":1971.3} +{"session_id":"sess-a40cbf5d3d15","input_length":1227,"output_length":90,"hash_ids":[496193,496194,496195],"delay":211.3} +{"session_id":"sess-a40cbf5d3d15","input_length":706,"output_length":818,"hash_ids":[496196,496197],"delay":2695.8} +{"session_id":"sess-a40cbf5d3d15","input_length":530,"output_length":1124,"hash_ids":[496198,496199],"delay":1405.1} +{"session_id":"sess-a40cbf5d3d15","input_length":1032,"output_length":122,"hash_ids":[496200,496201,496202],"delay":2356.0} +{"session_id":"sess-98db0c1ea48d","input_length":60048,"output_length":391,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,500063,500064,500065,500066,500067,500068,500069,500070,500071,500072,500073,500074,500075,500076,500077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-98db0c1ea48d","input_length":1597,"output_length":140,"hash_ids":[500078,500079,500080,500081],"delay":4673.4} +{"session_id":"sess-98db0c1ea48d","input_length":2405,"output_length":152,"hash_ids":[500082,500083,500084,500085,500086],"delay":5676.7} +{"session_id":"sess-98db0c1ea48d","input_length":4856,"output_length":161,"hash_ids":[500087,500088,500089,500090,500091,500092,500093,500094,500095,500096],"delay":379.1} +{"session_id":"sess-98db0c1ea48d","input_length":3648,"output_length":113,"hash_ids":[500097,500098,500099,500100,500101,500102,500103,500104],"delay":1150.6} +{"session_id":"sess-98db0c1ea48d","input_length":1947,"output_length":335,"hash_ids":[500105,500106,500107,500108],"delay":385.3} +{"session_id":"sess-98db0c1ea48d","input_length":6811,"output_length":38,"hash_ids":[500109,500110,500111,500112,500113,500114,500115,500116,500117,500118,500119,500120,500121,500122],"delay":1703.3} +{"session_id":"sess-98db0c1ea48d","input_length":5809,"output_length":250,"hash_ids":[500123,500124,500125,500126,500127,500128,500129,500130,500131,500132,500133,500134],"delay":331.7} +{"session_id":"sess-98db0c1ea48d","input_length":584,"output_length":223,"hash_ids":[500135,500136],"delay":2030.9} +{"session_id":"sess-98db0c1ea48d","input_length":2224,"output_length":199,"hash_ids":[500137,500138,500139,500140,500141],"delay":82.7} +{"session_id":"sess-98db0c1ea48d","input_length":4137,"output_length":782,"hash_ids":[500142,500143,500144,500145,500146,500147,500148,500149,500150],"delay":587.1} +{"session_id":"sess-c0d7f8a16222","input_length":56068,"output_length":1526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,504063,504064,504065,504066,504067,504068,504069],"timestamp":0.0,"group_id":3} +{"session_id":"sess-c0d7f8a16222","input_length":819,"output_length":300,"hash_ids":[504070,504071],"delay":24331.0} +{"session_id":"sess-c0d7f8a16222","input_length":6465,"output_length":131,"hash_ids":[504072,504073,504074,504075,504076,504077,504078,504079,504080,504081,504082,504083,504084],"delay":736.8} +{"session_id":"sess-c0d7f8a16222","input_length":1157,"output_length":543,"hash_ids":[504085,504086,504087],"delay":1761.5} +{"session_id":"sess-c0d7f8a16222","input_length":96,"output_length":249,"hash_ids":[504088],"delay":954.3} +{"session_id":"sess-c0d7f8a16222","input_length":1470,"output_length":88,"hash_ids":[504089,504090,504091],"delay":1067.5} +{"session_id":"sess-c3f48cf17f06","input_length":55241,"output_length":1156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,508063,508064,508065,508066,508067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c3f48cf17f06","input_length":349,"output_length":332,"hash_ids":[508068],"delay":496.8} +{"session_id":"sess-c3f48cf17f06","input_length":3562,"output_length":146,"hash_ids":[508069,508070,508071,508072,508073,508074,508075],"delay":1121.2} +{"session_id":"sess-c3f48cf17f06","input_length":1799,"output_length":191,"hash_ids":[508076,508077,508078,508079],"delay":1107.2} +{"session_id":"sess-c3f48cf17f06","input_length":4223,"output_length":334,"hash_ids":[508080,508081,508082,508083,508084,508085,508086,508087,508088],"delay":278.7} +{"session_id":"sess-c3f48cf17f06","input_length":6160,"output_length":252,"hash_ids":[508089,508090,508091,508092,508093,508094,508095,508096,508097,508098,508099,508100,508101],"delay":43471.5} +{"session_id":"sess-c3f48cf17f06","input_length":8677,"output_length":561,"hash_ids":[508102,508103,508104,508105,508106,508107,508108,508109,508110,508111,508112,508113,508114,508115,508116,508117,508118],"delay":1699.8} +{"session_id":"sess-c3f48cf17f06","input_length":1047,"output_length":316,"hash_ids":[508119,508120,508121],"delay":291.1} +{"session_id":"sess-c3f48cf17f06","input_length":85,"output_length":1011,"hash_ids":[508122],"delay":810.3} +{"session_id":"sess-c3f48cf17f06","input_length":1986,"output_length":299,"hash_ids":[508123,508124,508125,508126],"delay":1579.0} +{"session_id":"sess-01cba7542521","input_length":61062,"output_length":660,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,512063,512064,512065,512066,512067,512068,512069,512070,512071,512072,512073,512074,512075,512076,512077,512078,512079],"timestamp":0.0,"group_id":0} +{"session_id":"sess-01cba7542521","input_length":5952,"output_length":521,"hash_ids":[512080,512081,512082,512083,512084,512085,512086,512087,512088,512089,512090,512091],"delay":333.9} +{"session_id":"sess-01cba7542521","input_length":4484,"output_length":30,"hash_ids":[512092,512093,512094,512095,512096,512097,512098,512099,512100],"delay":3925.4} +{"session_id":"sess-01cba7542521","input_length":8271,"output_length":342,"hash_ids":[512101,512102,512103,512104,512105,512106,512107,512108,512109,512110,512111,512112,512113,512114,512115,512116,512117],"delay":10030.2} +{"session_id":"sess-01cba7542521","input_length":2706,"output_length":786,"hash_ids":[512118,512119,512120,512121,512122,512123],"delay":7438.7} +{"session_id":"sess-01cba7542521","input_length":278,"output_length":1078,"hash_ids":[512124],"delay":4076.0} +{"session_id":"sess-01cba7542521","input_length":408,"output_length":253,"hash_ids":[512125],"delay":1220.5} +{"session_id":"sess-01cba7542521","input_length":828,"output_length":415,"hash_ids":[512126,512127],"delay":35761.2} +{"session_id":"sess-01cba7542521","input_length":3861,"output_length":561,"hash_ids":[512128,512129,512130,512131,512132,512133,512134,512135],"delay":655.7} +{"session_id":"sess-01cba7542521","input_length":1194,"output_length":281,"hash_ids":[512136,512137,512138],"delay":490.4} +{"session_id":"sess-01cba7542521","input_length":3924,"output_length":519,"hash_ids":[512139,512140,512141,512142,512143,512144,512145,512146],"delay":501.2} +{"session_id":"sess-01cba7542521","input_length":881,"output_length":54,"hash_ids":[512147,512148],"delay":966.8} +{"session_id":"sess-01cba7542521","input_length":4180,"output_length":49,"hash_ids":[512149,512150,512151,512152,512153,512154,512155,512156,512157],"delay":7975.2} +{"session_id":"sess-01cba7542521","input_length":9329,"output_length":37,"hash_ids":[512158,512159,512160,512161,512162,512163,512164,512165,512166,512167,512168,512169,512170,512171,512172,512173,512174,512175,512176],"delay":961.8} +{"session_id":"sess-01cba7542521","input_length":1649,"output_length":83,"hash_ids":[512177,512178,512179,512180],"delay":362.1} +{"session_id":"sess-7c01c213aad9","input_length":54793,"output_length":798,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,516063,516064,516065,516066,516067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7c01c213aad9","input_length":2533,"output_length":746,"hash_ids":[516068,516069,516070,516071,516072],"delay":2985.4} +{"session_id":"sess-2a806c5ee0b2","input_length":53942,"output_length":1737,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,520063,520064,520065],"timestamp":0.0,"group_id":37} +{"session_id":"sess-2a806c5ee0b2","input_length":56,"output_length":913,"hash_ids":[520066],"delay":1829.4} +{"session_id":"sess-2a806c5ee0b2","input_length":106,"output_length":44,"hash_ids":[520067],"delay":441.9} +{"session_id":"sess-2a806c5ee0b2","input_length":3611,"output_length":383,"hash_ids":[520068,520069,520070,520071,520072,520073,520074,520075],"delay":10316.0} +{"session_id":"sess-2a806c5ee0b2","input_length":239,"output_length":242,"hash_ids":[520076],"delay":3214.6} +{"session_id":"sess-2a806c5ee0b2","input_length":2590,"output_length":826,"hash_ids":[520077,520078,520079,520080,520081,520082],"delay":667.2} +{"session_id":"sess-2a806c5ee0b2","input_length":241,"output_length":277,"hash_ids":[520083],"delay":1571.6} +{"session_id":"sess-2a806c5ee0b2","input_length":3873,"output_length":296,"hash_ids":[520084,520085,520086,520087,520088,520089,520090,520091],"delay":15388.2} +{"session_id":"sess-2a806c5ee0b2","input_length":2958,"output_length":203,"hash_ids":[520092,520093,520094,520095,520096,520097],"delay":2340.3} +{"session_id":"sess-2a806c5ee0b2","input_length":911,"output_length":54,"hash_ids":[520098,520099],"delay":1208.8} +{"session_id":"sess-c3cb9d519e83","input_length":53848,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,524063,524064,524065],"timestamp":0.0,"group_id":17} +{"session_id":"sess-c3cb9d519e83","input_length":383,"output_length":211,"hash_ids":[524066],"delay":405.9} +{"session_id":"sess-c3cb9d519e83","input_length":1205,"output_length":155,"hash_ids":[524067,524068,524069],"delay":833.9} +{"session_id":"sess-c3cb9d519e83","input_length":1510,"output_length":52,"hash_ids":[524070,524071,524072],"delay":1258.1} +{"session_id":"sess-c3cb9d519e83","input_length":9036,"output_length":106,"hash_ids":[524073,524074,524075,524076,524077,524078,524079,524080,524081,524082,524083,524084,524085,524086,524087,524088,524089,524090],"delay":663.8} +{"session_id":"sess-c3cb9d519e83","input_length":1033,"output_length":496,"hash_ids":[524091,524092,524093],"delay":1415.4} +{"session_id":"sess-c3cb9d519e83","input_length":817,"output_length":349,"hash_ids":[524094,524095],"delay":275.9} +{"session_id":"sess-c3cb9d519e83","input_length":4128,"output_length":40,"hash_ids":[524096,524097,524098,524099,524100,524101,524102,524103,524104],"delay":23786.9} +{"session_id":"sess-c3cb9d519e83","input_length":798,"output_length":596,"hash_ids":[524105,524106],"delay":4285.2} +{"session_id":"sess-c3cb9d519e83","input_length":595,"output_length":121,"hash_ids":[524107,524108],"delay":1916.6} +{"session_id":"sess-c3cb9d519e83","input_length":948,"output_length":484,"hash_ids":[524109,524110],"delay":5134.4} +{"session_id":"sess-c3cb9d519e83","input_length":592,"output_length":304,"hash_ids":[524111,524112],"delay":601.5} +{"session_id":"sess-c3cb9d519e83","input_length":3991,"output_length":264,"hash_ids":[524113,524114,524115,524116,524117,524118,524119,524120],"delay":569.4} +{"session_id":"sess-c3cb9d519e83","input_length":429,"output_length":890,"hash_ids":[524121],"delay":7321.2} +{"session_id":"sess-c3cb9d519e83","input_length":1851,"output_length":86,"hash_ids":[524122,524123,524124,524125],"delay":3035.6} +{"session_id":"sess-c3cb9d519e83","input_length":2635,"output_length":464,"hash_ids":[524126,524127,524128,524129,524130,524131],"delay":628.2} +{"session_id":"sess-c3cb9d519e83","input_length":1104,"output_length":2015,"hash_ids":[524132,524133,524134],"delay":218.6} +{"session_id":"sess-c3cb9d519e83","input_length":5406,"output_length":209,"hash_ids":[524135,524136,524137,524138,524139,524140,524141,524142,524143,524144,524145],"delay":379.4} +{"session_id":"sess-c3cb9d519e83","input_length":336,"output_length":230,"hash_ids":[524146],"delay":731.6} +{"session_id":"sess-c3cb9d519e83","input_length":1878,"output_length":245,"hash_ids":[524147,524148,524149,524150],"delay":12006.5} +{"session_id":"sess-c3cb9d519e83","input_length":429,"output_length":399,"hash_ids":[524151],"delay":1113.7} +{"session_id":"sess-c3cb9d519e83","input_length":7625,"output_length":253,"hash_ids":[524152,524153,524154,524155,524156,524157,524158,524159,524160,524161,524162,524163,524164,524165,524166],"delay":123.3} +{"session_id":"sess-c3cb9d519e83","input_length":80,"output_length":570,"hash_ids":[524167],"delay":1156.0} +{"session_id":"sess-c3cb9d519e83","input_length":1996,"output_length":580,"hash_ids":[524168,524169,524170,524171],"delay":319.8} +{"session_id":"sess-c3cb9d519e83","input_length":3617,"output_length":212,"hash_ids":[524172,524173,524174,524175,524176,524177,524178,524179],"delay":535.5} +{"session_id":"sess-c3cb9d519e83","input_length":1630,"output_length":258,"hash_ids":[524180,524181,524182,524183],"delay":1467.8} +{"session_id":"sess-c3cb9d519e83","input_length":1933,"output_length":82,"hash_ids":[524184,524185,524186,524187],"delay":457.7} +{"session_id":"sess-c3cb9d519e83","input_length":5952,"output_length":669,"hash_ids":[524188,524189,524190,524191,524192,524193,524194,524195,524196,524197,524198,524199],"delay":220.7} +{"session_id":"sess-c3cb9d519e83","input_length":3232,"output_length":175,"hash_ids":[524200,524201,524202,524203,524204,524205,524206],"delay":21983.8} +{"session_id":"sess-29216cb69e12","input_length":53512,"output_length":744,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,528063,528064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-29216cb69e12","input_length":2135,"output_length":61,"hash_ids":[528065,528066,528067,528068,528069],"delay":961.8} +{"session_id":"sess-29216cb69e12","input_length":1584,"output_length":637,"hash_ids":[528070,528071,528072,528073],"delay":2202.9} +{"session_id":"sess-29216cb69e12","input_length":5616,"output_length":245,"hash_ids":[528074,528075,528076,528077,528078,528079,528080,528081,528082,528083,528084],"delay":19404.8} +{"session_id":"sess-29216cb69e12","input_length":1055,"output_length":173,"hash_ids":[528085,528086,528087],"delay":15062.7} +{"session_id":"sess-29216cb69e12","input_length":3590,"output_length":549,"hash_ids":[528088,528089,528090,528091,528092,528093,528094,528095],"delay":297.1} +{"session_id":"sess-29216cb69e12","input_length":305,"output_length":147,"hash_ids":[528096],"delay":6982.3} +{"session_id":"sess-29216cb69e12","input_length":3541,"output_length":209,"hash_ids":[528097,528098,528099,528100,528101,528102,528103],"delay":1109.8} +{"session_id":"sess-29216cb69e12","input_length":828,"output_length":270,"hash_ids":[528104,528105],"delay":2308.5} +{"session_id":"sess-29216cb69e12","input_length":6300,"output_length":129,"hash_ids":[528106,528107,528108,528109,528110,528111,528112,528113,528114,528115,528116,528117,528118],"delay":13425.1} +{"session_id":"sess-29216cb69e12","input_length":2942,"output_length":32,"hash_ids":[528119,528120,528121,528122,528123,528124],"delay":469.3} +{"session_id":"sess-29216cb69e12","input_length":4383,"output_length":110,"hash_ids":[528125,528126,528127,528128,528129,528130,528131,528132,528133],"delay":284.2} +{"session_id":"sess-29216cb69e12","input_length":2994,"output_length":96,"hash_ids":[528134,528135,528136,528137,528138,528139],"delay":1509.2} +{"session_id":"sess-29216cb69e12","input_length":3114,"output_length":62,"hash_ids":[528140,528141,528142,528143,528144,528145,528146],"delay":48135.5} +{"session_id":"sess-29216cb69e12","input_length":1032,"output_length":1210,"hash_ids":[528147,528148,528149],"delay":3219.2} +{"session_id":"sess-29216cb69e12","input_length":453,"output_length":369,"hash_ids":[528150],"delay":178.4} +{"session_id":"sess-29216cb69e12","input_length":6740,"output_length":169,"hash_ids":[528151,528152,528153,528154,528155,528156,528157,528158,528159,528160,528161,528162,528163,528164],"delay":10834.5} +{"session_id":"sess-511a1d0baa41","input_length":62188,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,532063,532064,532065,532066,532067,532068,532069,532070,532071,532072,532073,532074,532075,532076,532077,532078,532079,532080,532081],"timestamp":0.0,"group_id":3} +{"session_id":"sess-511a1d0baa41","input_length":868,"output_length":183,"hash_ids":[532082,532083],"delay":621.1} +{"session_id":"sess-511a1d0baa41","input_length":1297,"output_length":673,"hash_ids":[532084,532085,532086],"delay":1549.7} +{"session_id":"sess-511a1d0baa41","input_length":4352,"output_length":1210,"hash_ids":[532087,532088,532089,532090,532091,532092,532093,532094,532095],"delay":367.6} +{"session_id":"sess-511a1d0baa41","input_length":528,"output_length":466,"hash_ids":[532096,532097],"delay":967.4} +{"session_id":"sess-511a1d0baa41","input_length":2635,"output_length":695,"hash_ids":[532098,532099,532100,532101,532102,532103],"delay":963.2} +{"session_id":"sess-511a1d0baa41","input_length":995,"output_length":360,"hash_ids":[532104,532105],"delay":686.0} +{"session_id":"sess-511a1d0baa41","input_length":4758,"output_length":372,"hash_ids":[532106,532107,532108,532109,532110,532111,532112,532113,532114,532115],"delay":543.6} +{"session_id":"sess-511a1d0baa41","input_length":1734,"output_length":120,"hash_ids":[532116,532117,532118,532119],"delay":2541.8} +{"session_id":"sess-511a1d0baa41","input_length":5142,"output_length":181,"hash_ids":[532120,532121,532122,532123,532124,532125,532126,532127,532128,532129,532130],"delay":846.2} +{"session_id":"sess-051d6faeaa16","input_length":69863,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,536063,536064,536065,536066,536067,536068,536069,536070,536071,536072,536073,536074,536075,536076,536077,536078,536079,536080,536081,536082,536083,536084,536085,536086,536087,536088,536089,536090,536091,536092,536093,536094,536095,536096],"timestamp":0.0,"group_id":39} +{"session_id":"sess-051d6faeaa16","input_length":370,"output_length":270,"hash_ids":[536097],"delay":706.0} +{"session_id":"sess-051d6faeaa16","input_length":1128,"output_length":89,"hash_ids":[536098,536099,536100],"delay":1345.7} +{"session_id":"sess-051d6faeaa16","input_length":1230,"output_length":39,"hash_ids":[536101,536102,536103],"delay":1005.2} +{"session_id":"sess-051d6faeaa16","input_length":1005,"output_length":121,"hash_ids":[536104,536105],"delay":32249.9} +{"session_id":"sess-051d6faeaa16","input_length":122,"output_length":133,"hash_ids":[536106],"delay":2286.4} +{"session_id":"sess-051d6faeaa16","input_length":1640,"output_length":57,"hash_ids":[536107,536108,536109,536110],"delay":3720.8} +{"session_id":"sess-051d6faeaa16","input_length":1136,"output_length":46,"hash_ids":[536111,536112,536113],"delay":18015.1} +{"session_id":"sess-051d6faeaa16","input_length":667,"output_length":215,"hash_ids":[536114,536115],"delay":1084.4} +{"session_id":"sess-051d6faeaa16","input_length":300,"output_length":1214,"hash_ids":[536116],"delay":964.4} +{"session_id":"sess-051d6faeaa16","input_length":2693,"output_length":365,"hash_ids":[536117,536118,536119,536120,536121,536122],"delay":1813.3} +{"session_id":"sess-051d6faeaa16","input_length":1161,"output_length":266,"hash_ids":[536123,536124,536125],"delay":25678.1} +{"session_id":"sess-051d6faeaa16","input_length":2050,"output_length":75,"hash_ids":[536126,536127,536128,536129,536130],"delay":2263.4} +{"session_id":"sess-051d6faeaa16","input_length":6346,"output_length":440,"hash_ids":[536131,536132,536133,536134,536135,536136,536137,536138,536139,536140,536141,536142,536143],"delay":8378.9} +{"session_id":"sess-051d6faeaa16","input_length":834,"output_length":532,"hash_ids":[536144,536145],"delay":23647.7} +{"session_id":"sess-051d6faeaa16","input_length":1451,"output_length":468,"hash_ids":[536146,536147,536148],"delay":16167.6} +{"session_id":"sess-051d6faeaa16","input_length":1201,"output_length":940,"hash_ids":[536149,536150,536151],"delay":6397.9} +{"session_id":"sess-051d6faeaa16","input_length":68,"output_length":212,"hash_ids":[536152],"delay":2214.9} +{"session_id":"sess-051d6faeaa16","input_length":8838,"output_length":1097,"hash_ids":[536153,536154,536155,536156,536157,536158,536159,536160,536161,536162,536163,536164,536165,536166,536167,536168,536169,536170],"delay":445.0} +{"session_id":"sess-051d6faeaa16","input_length":3783,"output_length":821,"hash_ids":[536171,536172,536173,536174,536175,536176,536177,536178],"delay":480.7} +{"session_id":"sess-051d6faeaa16","input_length":1271,"output_length":132,"hash_ids":[536179,536180,536181],"delay":13800.5} +{"session_id":"sess-051d6faeaa16","input_length":414,"output_length":208,"hash_ids":[536182],"delay":25469.5} +{"session_id":"sess-a95b6294e05e","input_length":53531,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,540063,540064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a95b6294e05e","input_length":3146,"output_length":210,"hash_ids":[540065,540066,540067,540068,540069,540070,540071],"delay":1288.7} +{"session_id":"sess-a95b6294e05e","input_length":504,"output_length":208,"hash_ids":[540072],"delay":3016.8} +{"session_id":"sess-a95b6294e05e","input_length":3692,"output_length":699,"hash_ids":[540073,540074,540075,540076,540077,540078,540079,540080],"delay":1018.3} +{"session_id":"sess-a95b6294e05e","input_length":3177,"output_length":74,"hash_ids":[540081,540082,540083,540084,540085,540086,540087],"delay":707.2} +{"session_id":"sess-a95b6294e05e","input_length":392,"output_length":147,"hash_ids":[540088],"delay":733.5} +{"session_id":"sess-a95b6294e05e","input_length":794,"output_length":52,"hash_ids":[540089,540090],"delay":726.2} +{"session_id":"sess-a95b6294e05e","input_length":144,"output_length":847,"hash_ids":[540091],"delay":638.5} +{"session_id":"sess-a95b6294e05e","input_length":739,"output_length":87,"hash_ids":[540092,540093],"delay":229.3} +{"session_id":"sess-a95b6294e05e","input_length":1943,"output_length":140,"hash_ids":[540094,540095,540096,540097],"delay":1085.2} +{"session_id":"sess-a95b6294e05e","input_length":2717,"output_length":753,"hash_ids":[540098,540099,540100,540101,540102,540103],"delay":26306.7} +{"session_id":"sess-a95b6294e05e","input_length":1176,"output_length":57,"hash_ids":[540104,540105,540106],"delay":279.1} +{"session_id":"sess-a95b6294e05e","input_length":5659,"output_length":526,"hash_ids":[540107,540108,540109,540110,540111,540112,540113,540114,540115,540116,540117,540118],"delay":1109.2} +{"session_id":"sess-a95b6294e05e","input_length":3363,"output_length":321,"hash_ids":[540119,540120,540121,540122,540123,540124,540125],"delay":1406.2} +{"session_id":"sess-a95b6294e05e","input_length":1450,"output_length":198,"hash_ids":[540126,540127,540128],"delay":242.8} +{"session_id":"sess-a95b6294e05e","input_length":6490,"output_length":174,"hash_ids":[540129,540130,540131,540132,540133,540134,540135,540136,540137,540138,540139,540140,540141],"delay":2450.8} +{"session_id":"sess-a95b6294e05e","input_length":1699,"output_length":52,"hash_ids":[540142,540143,540144,540145],"delay":34202.8} +{"session_id":"sess-a95b6294e05e","input_length":951,"output_length":848,"hash_ids":[540146,540147],"delay":18672.9} +{"session_id":"sess-a95b6294e05e","input_length":2258,"output_length":1001,"hash_ids":[540148,540149,540150,540151,540152],"delay":325.4} +{"session_id":"sess-a95b6294e05e","input_length":913,"output_length":152,"hash_ids":[540153,540154],"delay":709.0} +{"session_id":"sess-a95b6294e05e","input_length":1163,"output_length":1698,"hash_ids":[540155,540156,540157],"delay":3767.0} +{"session_id":"sess-a95b6294e05e","input_length":4788,"output_length":144,"hash_ids":[540158,540159,540160,540161,540162,540163,540164,540165,540166,540167],"delay":237.0} +{"session_id":"sess-a95b6294e05e","input_length":772,"output_length":236,"hash_ids":[540168,540169],"delay":1306.6} +{"session_id":"sess-a95b6294e05e","input_length":2641,"output_length":1158,"hash_ids":[540170,540171,540172,540173,540174,540175],"delay":390.6} +{"session_id":"sess-a95b6294e05e","input_length":3387,"output_length":410,"hash_ids":[540176,540177,540178,540179,540180,540181,540182],"delay":371.5} +{"session_id":"sess-f8b8e90085e4","input_length":55402,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,544063,544064,544065,544066,544067,544068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f8b8e90085e4","input_length":2723,"output_length":266,"hash_ids":[544069,544070,544071,544072,544073,544074],"delay":42272.5} +{"session_id":"sess-f8b8e90085e4","input_length":7248,"output_length":198,"hash_ids":[544075,544076,544077,544078,544079,544080,544081,544082,544083,544084,544085,544086,544087,544088,544089],"delay":529.3} +{"session_id":"sess-a2134bd8e9fb","input_length":52576,"output_length":498,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a2134bd8e9fb","input_length":4274,"output_length":362,"hash_ids":[544090,544091,544092,544093,544094,544095,544096,544097,544098],"delay":727.2} +{"session_id":"sess-a2134bd8e9fb","input_length":1054,"output_length":496,"hash_ids":[544099,544100,544101],"delay":3272.1} +{"session_id":"sess-a2134bd8e9fb","input_length":2146,"output_length":90,"hash_ids":[544102,544103,544104,544105,544106],"delay":323.5} +{"session_id":"sess-a2134bd8e9fb","input_length":3035,"output_length":476,"hash_ids":[544107,544108,544109,544110,544111,544112],"delay":1273.2} +{"session_id":"sess-a2134bd8e9fb","input_length":2222,"output_length":931,"hash_ids":[544113,544114,544115,544116,544117],"delay":699.9} +{"session_id":"sess-a2134bd8e9fb","input_length":2313,"output_length":961,"hash_ids":[544118,544119,544120,544121,544122],"delay":4295.1} +{"session_id":"sess-a2134bd8e9fb","input_length":1243,"output_length":384,"hash_ids":[544123,544124,544125],"delay":12209.0} +{"session_id":"sess-a2134bd8e9fb","input_length":1545,"output_length":849,"hash_ids":[544126,544127,544128,544129],"delay":22940.7} +{"session_id":"sess-a2134bd8e9fb","input_length":660,"output_length":78,"hash_ids":[544130,544131],"delay":421.6} +{"session_id":"sess-a2134bd8e9fb","input_length":1359,"output_length":759,"hash_ids":[544132,544133,544134],"delay":1205.0} +{"session_id":"sess-a2134bd8e9fb","input_length":1026,"output_length":145,"hash_ids":[544135,544136,544137],"delay":2929.9} +{"session_id":"sess-a2134bd8e9fb","input_length":1624,"output_length":92,"hash_ids":[544138,544139,544140,544141],"delay":140.3} +{"session_id":"sess-a2134bd8e9fb","input_length":1287,"output_length":67,"hash_ids":[544142,544143,544144],"delay":2140.9} +{"session_id":"sess-a2134bd8e9fb","input_length":1652,"output_length":539,"hash_ids":[544145,544146,544147,544148],"delay":2514.5} +{"session_id":"sess-a2134bd8e9fb","input_length":9035,"output_length":127,"hash_ids":[544149,544150,544151,544152,544153,544154,544155,544156,544157,544158,544159,544160,544161,544162,544163,544164,544165,544166],"delay":557.3} +{"session_id":"sess-a2134bd8e9fb","input_length":257,"output_length":1102,"hash_ids":[544167],"delay":11339.4} +{"session_id":"sess-a2134bd8e9fb","input_length":2797,"output_length":469,"hash_ids":[544168,544169,544170,544171,544172,544173],"delay":4921.8} +{"session_id":"sess-a2134bd8e9fb","input_length":2556,"output_length":271,"hash_ids":[544174,544175,544176,544177,544178],"delay":1751.1} +{"session_id":"sess-a2134bd8e9fb","input_length":3234,"output_length":232,"hash_ids":[544179,544180,544181,544182,544183,544184,544185],"delay":1517.2} +{"session_id":"sess-a2134bd8e9fb","input_length":3548,"output_length":85,"hash_ids":[544186,544187,544188,544189,544190,544191,544192],"delay":1928.2} +{"session_id":"sess-a2134bd8e9fb","input_length":1013,"output_length":899,"hash_ids":[544193,544194],"delay":11216.6} +{"session_id":"sess-a2134bd8e9fb","input_length":1660,"output_length":870,"hash_ids":[544195,544196,544197,544198],"delay":182.0} +{"session_id":"sess-a2134bd8e9fb","input_length":2018,"output_length":108,"hash_ids":[544199,544200,544201,544202],"delay":6312.9} +{"session_id":"sess-a2134bd8e9fb","input_length":2636,"output_length":127,"hash_ids":[544203,544204,544205,544206,544207,544208],"delay":1068.6} +{"session_id":"sess-a2134bd8e9fb","input_length":2859,"output_length":320,"hash_ids":[544209,544210,544211,544212,544213,544214],"delay":26920.0} +{"session_id":"sess-fc10ecf13217","input_length":61036,"output_length":407,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,552063,552064,552065,552066,552067,552068,552069,552070,552071,552072,552073,552074,552075,552076,552077,552078,552079],"timestamp":0.0,"group_id":4} +{"session_id":"sess-fc10ecf13217","input_length":117,"output_length":307,"hash_ids":[552080],"delay":39634.0} +{"session_id":"sess-fc10ecf13217","input_length":897,"output_length":82,"hash_ids":[552081,552082],"delay":779.1} +{"session_id":"sess-fc10ecf13217","input_length":2224,"output_length":794,"hash_ids":[552083,552084,552085,552086,552087],"delay":2291.7} +{"session_id":"sess-fc10ecf13217","input_length":4539,"output_length":602,"hash_ids":[552088,552089,552090,552091,552092,552093,552094,552095,552096],"delay":802.2} +{"session_id":"sess-fc10ecf13217","input_length":985,"output_length":161,"hash_ids":[552097,552098],"delay":705.9} +{"session_id":"sess-fc10ecf13217","input_length":6228,"output_length":337,"hash_ids":[552099,552100,552101,552102,552103,552104,552105,552106,552107,552108,552109,552110,552111],"delay":3451.8} +{"session_id":"sess-fc10ecf13217","input_length":655,"output_length":819,"hash_ids":[552112,552113],"delay":7030.0} +{"session_id":"sess-fc10ecf13217","input_length":909,"output_length":280,"hash_ids":[552114,552115],"delay":600.5} +{"session_id":"sess-fc10ecf13217","input_length":2941,"output_length":352,"hash_ids":[552116,552117,552118,552119,552120,552121],"delay":594.8} +{"session_id":"sess-fc10ecf13217","input_length":3044,"output_length":964,"hash_ids":[552122,552123,552124,552125,552126,552127],"delay":4934.2} +{"session_id":"sess-fc10ecf13217","input_length":1198,"output_length":265,"hash_ids":[552128,552129,552130],"delay":382.5} +{"session_id":"sess-fc10ecf13217","input_length":54,"output_length":1844,"hash_ids":[552131],"delay":1475.4} +{"session_id":"sess-fc10ecf13217","input_length":436,"output_length":238,"hash_ids":[552132],"delay":913.6} +{"session_id":"sess-fc10ecf13217","input_length":1342,"output_length":99,"hash_ids":[552133,552134,552135],"delay":962.2} +{"session_id":"sess-fc10ecf13217","input_length":1340,"output_length":281,"hash_ids":[552136,552137,552138],"delay":19982.3} +{"session_id":"sess-fc10ecf13217","input_length":4345,"output_length":114,"hash_ids":[552139,552140,552141,552142,552143,552144,552145,552146,552147],"delay":2884.3} +{"session_id":"sess-fc10ecf13217","input_length":3002,"output_length":525,"hash_ids":[552148,552149,552150,552151,552152,552153],"delay":1096.3} +{"session_id":"sess-17142a5a52c9","input_length":58064,"output_length":769,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,556063,556064,556065,556066,556067,556068,556069,556070,556071,556072,556073],"timestamp":0.0,"group_id":1} +{"session_id":"sess-17142a5a52c9","input_length":1561,"output_length":497,"hash_ids":[556074,556075,556076,556077],"delay":393.7} +{"session_id":"sess-17142a5a52c9","input_length":106,"output_length":1927,"hash_ids":[556078],"delay":42530.4} +{"session_id":"sess-17142a5a52c9","input_length":273,"output_length":320,"hash_ids":[556079],"delay":32878.5} +{"session_id":"sess-17142a5a52c9","input_length":678,"output_length":937,"hash_ids":[556080,556081],"delay":406.1} +{"session_id":"sess-17142a5a52c9","input_length":1034,"output_length":83,"hash_ids":[556082,556083,556084],"delay":697.8} +{"session_id":"sess-17142a5a52c9","input_length":2367,"output_length":170,"hash_ids":[556085,556086,556087,556088,556089],"delay":802.0} +{"session_id":"sess-17142a5a52c9","input_length":583,"output_length":200,"hash_ids":[556090,556091],"delay":445.2} +{"session_id":"sess-17142a5a52c9","input_length":4470,"output_length":165,"hash_ids":[556092,556093,556094,556095,556096,556097,556098,556099,556100],"delay":5237.5} +{"session_id":"sess-17142a5a52c9","input_length":1005,"output_length":99,"hash_ids":[556101,556102],"delay":50231.8} +{"session_id":"sess-17142a5a52c9","input_length":1512,"output_length":582,"hash_ids":[556103,556104,556105],"delay":689.0} +{"session_id":"sess-17142a5a52c9","input_length":1166,"output_length":1347,"hash_ids":[556106,556107,556108],"delay":6686.2} +{"session_id":"sess-17142a5a52c9","input_length":358,"output_length":368,"hash_ids":[556109],"delay":522.7} +{"session_id":"sess-17142a5a52c9","input_length":1466,"output_length":606,"hash_ids":[556110,556111,556112],"delay":2135.4} +{"session_id":"sess-17142a5a52c9","input_length":2970,"output_length":345,"hash_ids":[556113,556114,556115,556116,556117,556118],"delay":1522.3} +{"session_id":"sess-17142a5a52c9","input_length":4544,"output_length":589,"hash_ids":[556119,556120,556121,556122,556123,556124,556125,556126,556127],"delay":2251.6} +{"session_id":"sess-17142a5a52c9","input_length":1544,"output_length":45,"hash_ids":[556128,556129,556130,556131],"delay":526.0} +{"session_id":"sess-17142a5a52c9","input_length":3257,"output_length":186,"hash_ids":[556132,556133,556134,556135,556136,556137,556138],"delay":50272.3} +{"session_id":"sess-17142a5a52c9","input_length":1455,"output_length":174,"hash_ids":[556139,556140,556141],"delay":1329.7} +{"session_id":"sess-17142a5a52c9","input_length":1275,"output_length":345,"hash_ids":[556142,556143,556144],"delay":419.9} +{"session_id":"sess-17142a5a52c9","input_length":993,"output_length":303,"hash_ids":[556145,556146],"delay":716.4} +{"session_id":"sess-17142a5a52c9","input_length":786,"output_length":614,"hash_ids":[556147,556148],"delay":590.6} +{"session_id":"sess-17142a5a52c9","input_length":1636,"output_length":205,"hash_ids":[556149,556150,556151,556152],"delay":10204.9} +{"session_id":"sess-17142a5a52c9","input_length":7256,"output_length":263,"hash_ids":[556153,556154,556155,556156,556157,556158,556159,556160,556161,556162,556163,556164,556165,556166,556167],"delay":2715.7} +{"session_id":"sess-17142a5a52c9","input_length":4612,"output_length":215,"hash_ids":[556168,556169,556170,556171,556172,556173,556174,556175,556176,556177],"delay":281.4} +{"session_id":"sess-17142a5a52c9","input_length":2932,"output_length":311,"hash_ids":[556178,556179,556180,556181,556182,556183],"delay":2211.1} +{"session_id":"sess-17142a5a52c9","input_length":4618,"output_length":68,"hash_ids":[556184,556185,556186,556187,556188,556189,556190,556191,556192,556193],"delay":1501.7} +{"session_id":"sess-17142a5a52c9","input_length":1100,"output_length":2225,"hash_ids":[556194,556195,556196],"delay":105.7} +{"session_id":"sess-17142a5a52c9","input_length":387,"output_length":312,"hash_ids":[556197],"delay":8227.6} +{"session_id":"sess-dd4046ba0ac9","input_length":57273,"output_length":315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,560063,560064,560065,560066,560067,560068,560069,560070,560071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dd4046ba0ac9","input_length":1598,"output_length":1552,"hash_ids":[560072,560073,560074,560075],"delay":1238.4} +{"session_id":"sess-dd4046ba0ac9","input_length":619,"output_length":2137,"hash_ids":[560076,560077],"delay":2293.6} +{"session_id":"sess-dd4046ba0ac9","input_length":6557,"output_length":316,"hash_ids":[560078,560079,560080,560081,560082,560083,560084,560085,560086,560087,560088,560089,560090],"delay":166.8} +{"session_id":"sess-dd4046ba0ac9","input_length":1694,"output_length":113,"hash_ids":[560091,560092,560093,560094],"delay":26145.4} +{"session_id":"sess-dd4046ba0ac9","input_length":2739,"output_length":574,"hash_ids":[560095,560096,560097,560098,560099,560100],"delay":4473.7} +{"session_id":"sess-dd4046ba0ac9","input_length":3686,"output_length":1578,"hash_ids":[560101,560102,560103,560104,560105,560106,560107,560108],"delay":282.9} +{"session_id":"sess-dd4046ba0ac9","input_length":2181,"output_length":394,"hash_ids":[560109,560110,560111,560112,560113],"delay":769.8} +{"session_id":"sess-dd4046ba0ac9","input_length":1160,"output_length":128,"hash_ids":[560114,560115,560116],"delay":1059.8} +{"session_id":"sess-dd4046ba0ac9","input_length":736,"output_length":1443,"hash_ids":[560117,560118],"delay":1223.5} +{"session_id":"sess-dd4046ba0ac9","input_length":7313,"output_length":924,"hash_ids":[560119,560120,560121,560122,560123,560124,560125,560126,560127,560128,560129,560130,560131,560132,560133],"delay":883.6} +{"session_id":"sess-dd4046ba0ac9","input_length":1169,"output_length":174,"hash_ids":[560134,560135,560136],"delay":377.7} +{"session_id":"sess-dd4046ba0ac9","input_length":3872,"output_length":141,"hash_ids":[560137,560138,560139,560140,560141,560142,560143,560144],"delay":2462.9} +{"session_id":"sess-dd4046ba0ac9","input_length":1724,"output_length":102,"hash_ids":[560145,560146,560147,560148],"delay":2912.4} +{"session_id":"sess-dd4046ba0ac9","input_length":1059,"output_length":298,"hash_ids":[560149,560150,560151],"delay":11866.3} +{"session_id":"sess-dd4046ba0ac9","input_length":392,"output_length":354,"hash_ids":[560152],"delay":1636.0} +{"session_id":"sess-dd4046ba0ac9","input_length":4774,"output_length":463,"hash_ids":[560153,560154,560155,560156,560157,560158,560159,560160,560161,560162],"delay":1883.6} +{"session_id":"sess-dd4046ba0ac9","input_length":731,"output_length":177,"hash_ids":[560163,560164],"delay":571.8} +{"session_id":"sess-dd4046ba0ac9","input_length":2949,"output_length":219,"hash_ids":[560165,560166,560167,560168,560169,560170],"delay":22989.8} +{"session_id":"sess-dd4046ba0ac9","input_length":2445,"output_length":899,"hash_ids":[560171,560172,560173,560174,560175],"delay":710.3} +{"session_id":"sess-dd4046ba0ac9","input_length":479,"output_length":1275,"hash_ids":[560176],"delay":961.4} +{"session_id":"sess-dd4046ba0ac9","input_length":1168,"output_length":205,"hash_ids":[560177,560178,560179],"delay":282.5} +{"session_id":"sess-dd4046ba0ac9","input_length":2582,"output_length":967,"hash_ids":[560180,560181,560182,560183,560184,560185],"delay":134.8} +{"session_id":"sess-dd4046ba0ac9","input_length":1667,"output_length":305,"hash_ids":[560186,560187,560188,560189],"delay":1540.8} +{"session_id":"sess-dd4046ba0ac9","input_length":1721,"output_length":1073,"hash_ids":[560190,560191,560192,560193],"delay":10755.3} +{"session_id":"sess-dd4046ba0ac9","input_length":736,"output_length":389,"hash_ids":[560194,560195],"delay":390.7} +{"session_id":"sess-11aadc760378","input_length":57323,"output_length":445,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,564063,564064,564065,564066,564067,564068,564069,564070,564071],"timestamp":0.0,"group_id":1} +{"session_id":"sess-11aadc760378","input_length":822,"output_length":63,"hash_ids":[564072,564073],"delay":25577.8} +{"session_id":"sess-11aadc760378","input_length":403,"output_length":2589,"hash_ids":[564074],"delay":397.2} +{"session_id":"sess-11aadc760378","input_length":3248,"output_length":175,"hash_ids":[564075,564076,564077,564078,564079,564080,564081],"delay":13732.7} +{"session_id":"sess-11aadc760378","input_length":391,"output_length":119,"hash_ids":[564082],"delay":355.5} +{"session_id":"sess-11aadc760378","input_length":311,"output_length":88,"hash_ids":[564083],"delay":22057.9} +{"session_id":"sess-11aadc760378","input_length":689,"output_length":63,"hash_ids":[564084,564085],"delay":13196.5} +{"session_id":"sess-11aadc760378","input_length":2112,"output_length":904,"hash_ids":[564086,564087,564088,564089,564090],"delay":358.1} +{"session_id":"sess-11aadc760378","input_length":357,"output_length":316,"hash_ids":[564091],"delay":32117.9} +{"session_id":"sess-11aadc760378","input_length":1374,"output_length":418,"hash_ids":[564092,564093,564094],"delay":11602.1} +{"session_id":"sess-11aadc760378","input_length":3740,"output_length":137,"hash_ids":[564095,564096,564097,564098,564099,564100,564101,564102],"delay":809.8} +{"session_id":"sess-11aadc760378","input_length":524,"output_length":192,"hash_ids":[564103,564104],"delay":7469.2} +{"session_id":"sess-11aadc760378","input_length":1244,"output_length":195,"hash_ids":[564105,564106,564107],"delay":7472.9} +{"session_id":"sess-11aadc760378","input_length":617,"output_length":318,"hash_ids":[564108,564109],"delay":8634.6} +{"session_id":"sess-11aadc760378","input_length":4778,"output_length":406,"hash_ids":[564110,564111,564112,564113,564114,564115,564116,564117,564118,564119],"delay":293.4} +{"session_id":"sess-11aadc760378","input_length":337,"output_length":1792,"hash_ids":[564120],"delay":687.3} +{"session_id":"sess-11aadc760378","input_length":8125,"output_length":41,"hash_ids":[564121,564122,564123,564124,564125,564126,564127,564128,564129,564130,564131,564132,564133,564134,564135,564136],"delay":482.2} +{"session_id":"sess-11aadc760378","input_length":1562,"output_length":64,"hash_ids":[564137,564138,564139,564140],"delay":16410.5} +{"session_id":"sess-11aadc760378","input_length":1396,"output_length":220,"hash_ids":[564141,564142,564143],"delay":809.0} +{"session_id":"sess-11aadc760378","input_length":2339,"output_length":74,"hash_ids":[564144,564145,564146,564147,564148],"delay":324.3} +{"session_id":"sess-11aadc760378","input_length":164,"output_length":86,"hash_ids":[564149],"delay":550.2} +{"session_id":"sess-11aadc760378","input_length":7477,"output_length":940,"hash_ids":[564150,564151,564152,564153,564154,564155,564156,564157,564158,564159,564160,564161,564162,564163,564164],"delay":361.6} +{"session_id":"sess-11aadc760378","input_length":1372,"output_length":1033,"hash_ids":[564165,564166,564167],"delay":845.2} +{"session_id":"sess-11aadc760378","input_length":7524,"output_length":470,"hash_ids":[564168,564169,564170,564171,564172,564173,564174,564175,564176,564177,564178,564179,564180,564181,564182],"delay":728.4} +{"session_id":"sess-11aadc760378","input_length":142,"output_length":196,"hash_ids":[564183],"delay":124.0} +{"session_id":"sess-11aadc760378","input_length":1033,"output_length":1290,"hash_ids":[564184,564185,564186],"delay":3506.8} +{"session_id":"sess-a01dc241d92b","input_length":56068,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,568063,568064,568065,568066,568067,568068,568069],"timestamp":0.0,"group_id":19} +{"session_id":"sess-a01dc241d92b","input_length":302,"output_length":61,"hash_ids":[568070],"delay":65760.6} +{"session_id":"sess-a01dc241d92b","input_length":2568,"output_length":134,"hash_ids":[568071,568072,568073,568074,568075,568076],"delay":58217.8} +{"session_id":"sess-a01dc241d92b","input_length":9419,"output_length":30,"hash_ids":[568077,568078,568079,568080,568081,568082,568083,568084,568085,568086,568087,568088,568089,568090,568091,568092,568093,568094,568095],"delay":2882.0} +{"session_id":"sess-a01dc241d92b","input_length":1039,"output_length":781,"hash_ids":[568096,568097,568098],"delay":1524.4} +{"session_id":"sess-a01dc241d92b","input_length":2426,"output_length":263,"hash_ids":[568099,568100,568101,568102,568103],"delay":1552.3} +{"session_id":"sess-a01dc241d92b","input_length":248,"output_length":373,"hash_ids":[568104],"delay":10149.5} +{"session_id":"sess-a01dc241d92b","input_length":1341,"output_length":325,"hash_ids":[568105,568106,568107],"delay":1170.1} +{"session_id":"sess-a01dc241d92b","input_length":5525,"output_length":241,"hash_ids":[568108,568109,568110,568111,568112,568113,568114,568115,568116,568117,568118],"delay":1752.6} +{"session_id":"sess-a01dc241d92b","input_length":1556,"output_length":123,"hash_ids":[568119,568120,568121,568122],"delay":40408.8} +{"session_id":"sess-a01dc241d92b","input_length":3035,"output_length":120,"hash_ids":[568123,568124,568125,568126,568127,568128],"delay":292.8} +{"session_id":"sess-a01dc241d92b","input_length":1421,"output_length":114,"hash_ids":[568129,568130,568131],"delay":1322.6} +{"session_id":"sess-a01dc241d92b","input_length":4480,"output_length":87,"hash_ids":[568132,568133,568134,568135,568136,568137,568138,568139,568140],"delay":329.0} +{"session_id":"sess-a01dc241d92b","input_length":571,"output_length":67,"hash_ids":[568141,568142],"delay":18235.6} +{"session_id":"sess-a01dc241d92b","input_length":1110,"output_length":154,"hash_ids":[568143,568144,568145],"delay":308.2} +{"session_id":"sess-a01dc241d92b","input_length":1306,"output_length":159,"hash_ids":[568146,568147,568148],"delay":30479.2} +{"session_id":"sess-a01dc241d92b","input_length":737,"output_length":855,"hash_ids":[568149,568150],"delay":405.7} +{"session_id":"sess-a01dc241d92b","input_length":7632,"output_length":804,"hash_ids":[568151,568152,568153,568154,568155,568156,568157,568158,568159,568160,568161,568162,568163,568164,568165],"delay":243.6} +{"session_id":"sess-a01dc241d92b","input_length":981,"output_length":376,"hash_ids":[568166,568167],"delay":727.8} +{"session_id":"sess-a01dc241d92b","input_length":677,"output_length":105,"hash_ids":[568168,568169],"delay":915.8} +{"session_id":"sess-f5734a611156","input_length":52690,"output_length":428,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502],"timestamp":0.0,"group_id":2} +{"session_id":"sess-f5734a611156","input_length":6272,"output_length":128,"hash_ids":[568170,568171,568172,568173,568174,568175,568176,568177,568178,568179,568180,568181,568182],"delay":601.1} +{"session_id":"sess-f5734a611156","input_length":746,"output_length":76,"hash_ids":[568183,568184],"delay":4124.6} +{"session_id":"sess-f5734a611156","input_length":4426,"output_length":605,"hash_ids":[568185,568186,568187,568188,568189,568190,568191,568192,568193],"delay":1689.8} +{"session_id":"sess-f5734a611156","input_length":7455,"output_length":1060,"hash_ids":[568194,568195,568196,568197,568198,568199,568200,568201,568202,568203,568204,568205,568206,568207,568208],"delay":10138.1} +{"session_id":"sess-f5734a611156","input_length":4947,"output_length":30,"hash_ids":[568209,568210,568211,568212,568213,568214,568215,568216,568217,568218],"delay":901.7} +{"session_id":"sess-f5734a611156","input_length":5478,"output_length":144,"hash_ids":[568219,568220,568221,568222,568223,568224,568225,568226,568227,568228,568229],"delay":2867.8} +{"session_id":"sess-f5734a611156","input_length":792,"output_length":1024,"hash_ids":[568230,568231],"delay":5252.7} +{"session_id":"sess-f5734a611156","input_length":3862,"output_length":87,"hash_ids":[568232,568233,568234,568235,568236,568237,568238,568239],"delay":519.7} +{"session_id":"sess-f5734a611156","input_length":253,"output_length":415,"hash_ids":[568240],"delay":2503.8} +{"session_id":"sess-f5734a611156","input_length":557,"output_length":187,"hash_ids":[568241,568242],"delay":1539.3} +{"session_id":"sess-f5734a611156","input_length":3562,"output_length":449,"hash_ids":[568243,568244,568245,568246,568247,568248,568249],"delay":9386.2} +{"session_id":"sess-f5734a611156","input_length":568,"output_length":134,"hash_ids":[568250,568251],"delay":832.6} +{"session_id":"sess-f5734a611156","input_length":2943,"output_length":498,"hash_ids":[568252,568253,568254,568255,568256,568257],"delay":243.6} +{"session_id":"sess-f5734a611156","input_length":1107,"output_length":845,"hash_ids":[568258,568259,568260],"delay":959.7} +{"session_id":"sess-f5734a611156","input_length":1933,"output_length":489,"hash_ids":[568261,568262,568263,568264],"delay":44913.3} +{"session_id":"sess-f5734a611156","input_length":1893,"output_length":665,"hash_ids":[568265,568266,568267,568268],"delay":339.8} +{"session_id":"sess-f5734a611156","input_length":8963,"output_length":363,"hash_ids":[568269,568270,568271,568272,568273,568274,568275,568276,568277,568278,568279,568280,568281,568282,568283,568284,568285,568286],"delay":11878.4} +{"session_id":"sess-f5734a611156","input_length":3846,"output_length":1099,"hash_ids":[568287,568288,568289,568290,568291,568292,568293,568294],"delay":554.4} +{"session_id":"sess-f5734a611156","input_length":792,"output_length":896,"hash_ids":[568295,568296],"delay":345.6} +{"session_id":"sess-f5734a611156","input_length":2245,"output_length":170,"hash_ids":[568297,568298,568299,568300,568301],"delay":626.6} +{"session_id":"sess-f5734a611156","input_length":2215,"output_length":129,"hash_ids":[568302,568303,568304,568305,568306],"delay":2498.3} +{"session_id":"sess-15c81ef0905a","input_length":63893,"output_length":141,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,576063,576064,576065,576066,576067,576068,576069,576070,576071,576072,576073,576074,576075,576076,576077,576078,576079,576080,576081,576082,576083,576084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-15c81ef0905a","input_length":1379,"output_length":155,"hash_ids":[576085,576086,576087],"delay":12485.1} +{"session_id":"sess-15c81ef0905a","input_length":2022,"output_length":1090,"hash_ids":[576088,576089,576090,576091],"delay":2741.5} +{"session_id":"sess-15c81ef0905a","input_length":1327,"output_length":363,"hash_ids":[576092,576093,576094],"delay":870.0} +{"session_id":"sess-15c81ef0905a","input_length":1886,"output_length":110,"hash_ids":[576095,576096,576097,576098],"delay":1223.9} +{"session_id":"sess-15c81ef0905a","input_length":3805,"output_length":302,"hash_ids":[576099,576100,576101,576102,576103,576104,576105,576106],"delay":799.4} +{"session_id":"sess-15c81ef0905a","input_length":295,"output_length":668,"hash_ids":[576107],"delay":459.1} +{"session_id":"sess-15c81ef0905a","input_length":9829,"output_length":637,"hash_ids":[576108,576109,576110,576111,576112,576113,576114,576115,576116,576117,576118,576119,576120,576121,576122,576123,576124,576125,576126,576127],"delay":234.1} +{"session_id":"sess-15c81ef0905a","input_length":3627,"output_length":820,"hash_ids":[576128,576129,576130,576131,576132,576133,576134,576135],"delay":31932.2} +{"session_id":"sess-375f388289d9","input_length":54408,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,580063,580064,580065,580066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-375f388289d9","input_length":4243,"output_length":222,"hash_ids":[580067,580068,580069,580070,580071,580072,580073,580074,580075],"delay":500.4} +{"session_id":"sess-375f388289d9","input_length":2236,"output_length":404,"hash_ids":[580076,580077,580078,580079,580080],"delay":24256.9} +{"session_id":"sess-375f388289d9","input_length":2138,"output_length":273,"hash_ids":[580081,580082,580083,580084,580085],"delay":1569.7} +{"session_id":"sess-375f388289d9","input_length":593,"output_length":238,"hash_ids":[580086,580087],"delay":42960.2} +{"session_id":"sess-375f388289d9","input_length":1312,"output_length":358,"hash_ids":[580088,580089,580090],"delay":7904.8} +{"session_id":"sess-375f388289d9","input_length":237,"output_length":347,"hash_ids":[580091],"delay":13184.9} +{"session_id":"sess-375f388289d9","input_length":71,"output_length":490,"hash_ids":[580092],"delay":5124.5} +{"session_id":"sess-375f388289d9","input_length":1315,"output_length":507,"hash_ids":[580093,580094,580095],"delay":3724.8} +{"session_id":"sess-375f388289d9","input_length":2681,"output_length":367,"hash_ids":[580096,580097,580098,580099,580100,580101],"delay":6941.0} +{"session_id":"sess-375f388289d9","input_length":852,"output_length":2419,"hash_ids":[580102,580103],"delay":950.1} +{"session_id":"sess-375f388289d9","input_length":1395,"output_length":219,"hash_ids":[580104,580105,580106],"delay":707.8} +{"session_id":"sess-375f388289d9","input_length":1691,"output_length":314,"hash_ids":[580107,580108,580109,580110],"delay":1842.7} +{"session_id":"sess-375f388289d9","input_length":2512,"output_length":83,"hash_ids":[580111,580112,580113,580114,580115],"delay":32065.5} +{"session_id":"sess-375f388289d9","input_length":1034,"output_length":2005,"hash_ids":[580116,580117,580118],"delay":194.0} +{"session_id":"sess-375f388289d9","input_length":7246,"output_length":143,"hash_ids":[580119,580120,580121,580122,580123,580124,580125,580126,580127,580128,580129,580130,580131,580132,580133],"delay":23049.2} +{"session_id":"sess-375f388289d9","input_length":2552,"output_length":164,"hash_ids":[580134,580135,580136,580137,580138],"delay":1351.9} +{"session_id":"sess-375f388289d9","input_length":3624,"output_length":129,"hash_ids":[580139,580140,580141,580142,580143,580144,580145,580146],"delay":310.2} +{"session_id":"sess-375f388289d9","input_length":1793,"output_length":322,"hash_ids":[580147,580148,580149,580150],"delay":6956.5} +{"session_id":"sess-375f388289d9","input_length":217,"output_length":88,"hash_ids":[580151],"delay":5118.2} +{"session_id":"sess-375f388289d9","input_length":2062,"output_length":218,"hash_ids":[580152,580153,580154,580155,580156],"delay":410.1} +{"session_id":"sess-375f388289d9","input_length":997,"output_length":164,"hash_ids":[580157,580158],"delay":40011.2} +{"session_id":"sess-375f388289d9","input_length":6943,"output_length":385,"hash_ids":[580159,580160,580161,580162,580163,580164,580165,580166,580167,580168,580169,580170,580171,580172],"delay":1879.4} +{"session_id":"sess-375f388289d9","input_length":2965,"output_length":403,"hash_ids":[580173,580174,580175,580176,580177,580178],"delay":1088.9} +{"session_id":"sess-375f388289d9","input_length":547,"output_length":345,"hash_ids":[580179,580180],"delay":143.6} +{"session_id":"sess-375f388289d9","input_length":1786,"output_length":89,"hash_ids":[580181,580182,580183,580184],"delay":252.6} +{"session_id":"sess-375f388289d9","input_length":789,"output_length":110,"hash_ids":[580185,580186],"delay":1222.2} +{"session_id":"sess-375f388289d9","input_length":4109,"output_length":273,"hash_ids":[580187,580188,580189,580190,580191,580192,580193,580194,580195],"delay":5983.2} +{"session_id":"sess-375f388289d9","input_length":1019,"output_length":95,"hash_ids":[580196,580197],"delay":1049.4} +{"session_id":"sess-f1e56e39fa0d","input_length":54903,"output_length":417,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,584063,584064,584065,584066,584067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f1e56e39fa0d","input_length":730,"output_length":53,"hash_ids":[584068,584069],"delay":27385.5} +{"session_id":"sess-f1e56e39fa0d","input_length":4849,"output_length":291,"hash_ids":[584070,584071,584072,584073,584074,584075,584076,584077,584078,584079],"delay":800.8} +{"session_id":"sess-f1e56e39fa0d","input_length":568,"output_length":222,"hash_ids":[584080,584081],"delay":1608.2} +{"session_id":"sess-f1e56e39fa0d","input_length":341,"output_length":301,"hash_ids":[584082],"delay":19090.8} +{"session_id":"sess-f1e56e39fa0d","input_length":2476,"output_length":110,"hash_ids":[584083,584084,584085,584086,584087],"delay":814.2} +{"session_id":"sess-f1e56e39fa0d","input_length":1146,"output_length":71,"hash_ids":[584088,584089,584090],"delay":22784.3} +{"session_id":"sess-f1e56e39fa0d","input_length":8395,"output_length":420,"hash_ids":[584091,584092,584093,584094,584095,584096,584097,584098,584099,584100,584101,584102,584103,584104,584105,584106,584107],"delay":854.6} +{"session_id":"sess-f1e56e39fa0d","input_length":4414,"output_length":215,"hash_ids":[584108,584109,584110,584111,584112,584113,584114,584115,584116],"delay":1435.3} +{"session_id":"sess-f1e56e39fa0d","input_length":410,"output_length":351,"hash_ids":[584117],"delay":250.6} +{"session_id":"sess-f1e56e39fa0d","input_length":5900,"output_length":97,"hash_ids":[584118,584119,584120,584121,584122,584123,584124,584125,584126,584127,584128,584129],"delay":52054.9} +{"session_id":"sess-f1e56e39fa0d","input_length":7895,"output_length":120,"hash_ids":[584130,584131,584132,584133,584134,584135,584136,584137,584138,584139,584140,584141,584142,584143,584144,584145],"delay":5767.8} +{"session_id":"sess-f1e56e39fa0d","input_length":6172,"output_length":339,"hash_ids":[584146,584147,584148,584149,584150,584151,584152,584153,584154,584155,584156,584157,584158],"delay":436.4} +{"session_id":"sess-f1e56e39fa0d","input_length":2381,"output_length":553,"hash_ids":[584159,584160,584161,584162,584163],"delay":175.4} +{"session_id":"sess-f1e56e39fa0d","input_length":2633,"output_length":478,"hash_ids":[584164,584165,584166,584167,584168,584169],"delay":6922.8} +{"session_id":"sess-f1e56e39fa0d","input_length":335,"output_length":216,"hash_ids":[584170],"delay":2383.5} +{"session_id":"sess-f1e56e39fa0d","input_length":7471,"output_length":1095,"hash_ids":[584171,584172,584173,584174,584175,584176,584177,584178,584179,584180,584181,584182,584183,584184,584185],"delay":526.3} +{"session_id":"sess-f1e56e39fa0d","input_length":2152,"output_length":210,"hash_ids":[584186,584187,584188,584189,584190],"delay":3272.7} +{"session_id":"sess-f1e56e39fa0d","input_length":744,"output_length":180,"hash_ids":[584191,584192],"delay":1221.6} +{"session_id":"sess-f1e56e39fa0d","input_length":6956,"output_length":414,"hash_ids":[584193,584194,584195,584196,584197,584198,584199,584200,584201,584202,584203,584204,584205,584206],"delay":1192.4} +{"session_id":"sess-f1e56e39fa0d","input_length":249,"output_length":231,"hash_ids":[584207],"delay":651.7} +{"session_id":"sess-f1e56e39fa0d","input_length":1325,"output_length":330,"hash_ids":[584208,584209,584210],"delay":378.6} +{"session_id":"sess-fe8bf37d9515","input_length":56111,"output_length":260,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,588063,588064,588065,588066,588067,588068,588069],"timestamp":0.0,"group_id":5} +{"session_id":"sess-fe8bf37d9515","input_length":4367,"output_length":168,"hash_ids":[588070,588071,588072,588073,588074,588075,588076,588077,588078],"delay":6412.4} +{"session_id":"sess-fe8bf37d9515","input_length":1160,"output_length":366,"hash_ids":[588079,588080,588081],"delay":509.8} +{"session_id":"sess-fe8bf37d9515","input_length":1770,"output_length":296,"hash_ids":[588082,588083,588084,588085],"delay":25809.6} +{"session_id":"sess-fe8bf37d9515","input_length":3899,"output_length":514,"hash_ids":[588086,588087,588088,588089,588090,588091,588092,588093],"delay":1096.9} +{"session_id":"sess-fe8bf37d9515","input_length":356,"output_length":187,"hash_ids":[588094],"delay":25206.2} +{"session_id":"sess-fe8bf37d9515","input_length":403,"output_length":210,"hash_ids":[588095],"delay":1178.9} +{"session_id":"sess-fe8bf37d9515","input_length":4113,"output_length":352,"hash_ids":[588096,588097,588098,588099,588100,588101,588102,588103,588104],"delay":1356.1} +{"session_id":"sess-65c7e0b0b0d6","input_length":52614,"output_length":758,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502],"timestamp":0.0,"group_id":2} +{"session_id":"sess-65c7e0b0b0d6","input_length":1248,"output_length":408,"hash_ids":[588105,588106,588107],"delay":18708.0} +{"session_id":"sess-65c7e0b0b0d6","input_length":1674,"output_length":666,"hash_ids":[588108,588109,588110,588111],"delay":12444.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":1706,"output_length":116,"hash_ids":[588112,588113,588114,588115],"delay":21502.1} +{"session_id":"sess-65c7e0b0b0d6","input_length":473,"output_length":360,"hash_ids":[588116],"delay":16947.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":955,"output_length":308,"hash_ids":[588117,588118],"delay":40528.8} +{"session_id":"sess-65c7e0b0b0d6","input_length":533,"output_length":433,"hash_ids":[588119,588120],"delay":952.0} +{"session_id":"sess-65c7e0b0b0d6","input_length":2595,"output_length":636,"hash_ids":[588121,588122,588123,588124,588125,588126],"delay":1073.2} +{"session_id":"sess-65c7e0b0b0d6","input_length":1321,"output_length":517,"hash_ids":[588127,588128,588129],"delay":34786.2} +{"session_id":"sess-65c7e0b0b0d6","input_length":4716,"output_length":593,"hash_ids":[588130,588131,588132,588133,588134,588135,588136,588137,588138,588139],"delay":695.0} +{"session_id":"sess-65c7e0b0b0d6","input_length":8330,"output_length":388,"hash_ids":[588140,588141,588142,588143,588144,588145,588146,588147,588148,588149,588150,588151,588152,588153,588154,588155,588156],"delay":11495.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":3019,"output_length":283,"hash_ids":[588157,588158,588159,588160,588161,588162],"delay":1447.8} +{"session_id":"sess-65c7e0b0b0d6","input_length":2355,"output_length":334,"hash_ids":[588163,588164,588165,588166,588167],"delay":1304.5} +{"session_id":"sess-65c7e0b0b0d6","input_length":2130,"output_length":249,"hash_ids":[588168,588169,588170,588171,588172],"delay":655.6} +{"session_id":"sess-65c7e0b0b0d6","input_length":526,"output_length":283,"hash_ids":[588173,588174],"delay":658.1} +{"session_id":"sess-65c7e0b0b0d6","input_length":1043,"output_length":2619,"hash_ids":[588175,588176,588177],"delay":2011.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":3348,"output_length":2995,"hash_ids":[588178,588179,588180,588181,588182,588183,588184],"delay":6273.3} +{"session_id":"sess-65c7e0b0b0d6","input_length":1294,"output_length":196,"hash_ids":[588185,588186,588187],"delay":4262.9} +{"session_id":"sess-65c7e0b0b0d6","input_length":4598,"output_length":83,"hash_ids":[588188,588189,588190,588191,588192,588193,588194,588195,588196],"delay":467.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":1044,"output_length":444,"hash_ids":[588197,588198,588199],"delay":9368.0} +{"session_id":"sess-65c7e0b0b0d6","input_length":5978,"output_length":295,"hash_ids":[588200,588201,588202,588203,588204,588205,588206,588207,588208,588209,588210,588211],"delay":327.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":2053,"output_length":90,"hash_ids":[588212,588213,588214,588215,588216],"delay":8924.3} +{"session_id":"sess-65c7e0b0b0d6","input_length":509,"output_length":184,"hash_ids":[588217],"delay":1593.4} +{"session_id":"sess-65c7e0b0b0d6","input_length":1330,"output_length":401,"hash_ids":[588218,588219,588220],"delay":274.5} +{"session_id":"sess-65c7e0b0b0d6","input_length":3646,"output_length":326,"hash_ids":[588221,588222,588223,588224,588225,588226,588227,588228],"delay":591.9} +{"session_id":"sess-65c7e0b0b0d6","input_length":2229,"output_length":193,"hash_ids":[588229,588230,588231,588232,588233],"delay":6545.6} +{"session_id":"sess-ace78839cb59","input_length":57760,"output_length":109,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,596063,596064,596065,596066,596067,596068,596069,596070,596071,596072],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ace78839cb59","input_length":1853,"output_length":359,"hash_ids":[596073,596074,596075,596076],"delay":375.2} +{"session_id":"sess-ace78839cb59","input_length":1709,"output_length":45,"hash_ids":[596077,596078,596079,596080],"delay":728.4} +{"session_id":"sess-ace78839cb59","input_length":538,"output_length":80,"hash_ids":[596081,596082],"delay":919.7} +{"session_id":"sess-ace78839cb59","input_length":554,"output_length":302,"hash_ids":[596083,596084],"delay":694.6} +{"session_id":"sess-ace78839cb59","input_length":1782,"output_length":55,"hash_ids":[596085,596086,596087,596088],"delay":1705.7} +{"session_id":"sess-ace78839cb59","input_length":2675,"output_length":87,"hash_ids":[596089,596090,596091,596092,596093,596094],"delay":502.0} +{"session_id":"sess-ace78839cb59","input_length":361,"output_length":224,"hash_ids":[596095],"delay":2223.8} +{"session_id":"sess-ace78839cb59","input_length":609,"output_length":82,"hash_ids":[596096,596097],"delay":1730.4} +{"session_id":"sess-ace78839cb59","input_length":5008,"output_length":240,"hash_ids":[596098,596099,596100,596101,596102,596103,596104,596105,596106,596107],"delay":6497.4} +{"session_id":"sess-bdc4da9ffa94","input_length":74784,"output_length":234,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,600063,600064,600065,600066,600067,600068,600069,600070,600071,600072,600073,600074,600075,600076,600077,600078,600079,600080,600081,600082,600083,600084,600085,600086,600087,600088,600089,600090,600091,600092,600093,600094,600095,600096,600097,600098,600099,600100,600101,600102,600103,600104,600105,600106],"timestamp":0.0,"group_id":5} +{"session_id":"sess-bdc4da9ffa94","input_length":241,"output_length":110,"hash_ids":[600107],"delay":498.0} +{"session_id":"sess-bdc4da9ffa94","input_length":1175,"output_length":175,"hash_ids":[600108,600109,600110],"delay":8490.3} +{"session_id":"sess-bdc4da9ffa94","input_length":2296,"output_length":264,"hash_ids":[600111,600112,600113,600114,600115],"delay":1028.1} +{"session_id":"sess-bdc4da9ffa94","input_length":674,"output_length":198,"hash_ids":[600116,600117],"delay":8779.5} +{"session_id":"sess-bdc4da9ffa94","input_length":1089,"output_length":679,"hash_ids":[600118,600119,600120],"delay":2233.5} +{"session_id":"sess-bdc4da9ffa94","input_length":995,"output_length":299,"hash_ids":[600121,600122],"delay":978.4} +{"session_id":"sess-bdc4da9ffa94","input_length":1212,"output_length":159,"hash_ids":[600123,600124,600125],"delay":738.1} +{"session_id":"sess-bdc4da9ffa94","input_length":5112,"output_length":124,"hash_ids":[600126,600127,600128,600129,600130,600131,600132,600133,600134,600135],"delay":1489.2} +{"session_id":"sess-bdc4da9ffa94","input_length":1291,"output_length":307,"hash_ids":[600136,600137,600138],"delay":15868.6} +{"session_id":"sess-bdc4da9ffa94","input_length":2914,"output_length":120,"hash_ids":[600139,600140,600141,600142,600143,600144],"delay":698.9} +{"session_id":"sess-bdc4da9ffa94","input_length":9285,"output_length":1086,"hash_ids":[600145,600146,600147,600148,600149,600150,600151,600152,600153,600154,600155,600156,600157,600158,600159,600160,600161,600162,600163],"delay":827.4} +{"session_id":"sess-bdc4da9ffa94","input_length":682,"output_length":1958,"hash_ids":[600164,600165],"delay":783.8} +{"session_id":"sess-bdc4da9ffa94","input_length":173,"output_length":143,"hash_ids":[600166],"delay":841.2} +{"session_id":"sess-bdc4da9ffa94","input_length":4928,"output_length":296,"hash_ids":[600167,600168,600169,600170,600171,600172,600173,600174,600175,600176],"delay":4539.9} +{"session_id":"sess-bdc4da9ffa94","input_length":5635,"output_length":434,"hash_ids":[600177,600178,600179,600180,600181,600182,600183,600184,600185,600186,600187,600188],"delay":139.8} +{"session_id":"sess-bdc4da9ffa94","input_length":2309,"output_length":86,"hash_ids":[600189,600190,600191,600192,600193],"delay":350.3} +{"session_id":"sess-bdc4da9ffa94","input_length":8107,"output_length":1029,"hash_ids":[600194,600195,600196,600197,600198,600199,600200,600201,600202,600203,600204,600205,600206,600207,600208,600209],"delay":339.0} +{"session_id":"sess-afaffe27c43b","input_length":78803,"output_length":303,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,604063,604064,604065,604066,604067,604068,604069,604070,604071,604072,604073,604074,604075,604076,604077,604078,604079,604080,604081,604082,604083,604084,604085,604086,604087,604088,604089,604090,604091,604092,604093,604094,604095,604096,604097,604098,604099,604100,604101,604102,604103,604104,604105,604106,604107,604108,604109,604110,604111,604112,604113],"timestamp":0.0,"group_id":7} +{"session_id":"sess-afaffe27c43b","input_length":3023,"output_length":386,"hash_ids":[604114,604115,604116,604117,604118,604119],"delay":5835.2} +{"session_id":"sess-afaffe27c43b","input_length":2455,"output_length":648,"hash_ids":[604120,604121,604122,604123,604124],"delay":16791.5} +{"session_id":"sess-afaffe27c43b","input_length":1260,"output_length":142,"hash_ids":[604125,604126,604127],"delay":1058.8} +{"session_id":"sess-afaffe27c43b","input_length":214,"output_length":352,"hash_ids":[604128],"delay":2962.9} +{"session_id":"sess-afaffe27c43b","input_length":504,"output_length":82,"hash_ids":[604129],"delay":3053.9} +{"session_id":"sess-afaffe27c43b","input_length":2367,"output_length":497,"hash_ids":[604130,604131,604132,604133,604134],"delay":572.1} +{"session_id":"sess-afaffe27c43b","input_length":120,"output_length":349,"hash_ids":[604135],"delay":934.8} +{"session_id":"sess-afaffe27c43b","input_length":562,"output_length":72,"hash_ids":[604136,604137],"delay":281.4} +{"session_id":"sess-afaffe27c43b","input_length":678,"output_length":781,"hash_ids":[604138,604139],"delay":1215.9} +{"session_id":"sess-afaffe27c43b","input_length":1563,"output_length":355,"hash_ids":[604140,604141,604142,604143],"delay":1552.4} +{"session_id":"sess-afaffe27c43b","input_length":7761,"output_length":1839,"hash_ids":[604144,604145,604146,604147,604148,604149,604150,604151,604152,604153,604154,604155,604156,604157,604158,604159],"delay":531.2} +{"session_id":"sess-afaffe27c43b","input_length":813,"output_length":50,"hash_ids":[604160,604161],"delay":150.0} +{"session_id":"sess-afaffe27c43b","input_length":1256,"output_length":1050,"hash_ids":[604162,604163,604164],"delay":188.3} +{"session_id":"sess-afaffe27c43b","input_length":2252,"output_length":674,"hash_ids":[604165,604166,604167,604168,604169],"delay":167.0} +{"session_id":"sess-afaffe27c43b","input_length":1604,"output_length":147,"hash_ids":[604170,604171,604172,604173],"delay":4158.5} +{"session_id":"sess-afaffe27c43b","input_length":271,"output_length":1297,"hash_ids":[604174],"delay":533.2} +{"session_id":"sess-afaffe27c43b","input_length":3281,"output_length":153,"hash_ids":[604175,604176,604177,604178,604179,604180,604181],"delay":642.6} +{"session_id":"sess-afaffe27c43b","input_length":2903,"output_length":238,"hash_ids":[604182,604183,604184,604185,604186,604187],"delay":580.5} +{"session_id":"sess-afaffe27c43b","input_length":481,"output_length":1868,"hash_ids":[604188],"delay":408.8} +{"session_id":"sess-afaffe27c43b","input_length":1032,"output_length":1398,"hash_ids":[604189,604190,604191],"delay":267.9} +{"session_id":"sess-afaffe27c43b","input_length":426,"output_length":140,"hash_ids":[604192],"delay":11672.4} +{"session_id":"sess-afaffe27c43b","input_length":723,"output_length":249,"hash_ids":[604193,604194],"delay":1668.9} +{"session_id":"sess-afaffe27c43b","input_length":535,"output_length":287,"hash_ids":[604195,604196],"delay":2169.9} +{"session_id":"sess-afaffe27c43b","input_length":2785,"output_length":523,"hash_ids":[604197,604198,604199,604200,604201,604202],"delay":293.8} +{"session_id":"sess-0fd7d5d26886","input_length":64449,"output_length":404,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,608063,608064,608065,608066,608067,608068,608069,608070,608071,608072,608073,608074,608075,608076,608077,608078,608079,608080,608081,608082,608083,608084,608085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0fd7d5d26886","input_length":1674,"output_length":179,"hash_ids":[608086,608087,608088,608089],"delay":961.2} +{"session_id":"sess-0fd7d5d26886","input_length":2840,"output_length":239,"hash_ids":[608090,608091,608092,608093,608094,608095],"delay":444.5} +{"session_id":"sess-0fd7d5d26886","input_length":1827,"output_length":152,"hash_ids":[608096,608097,608098,608099],"delay":373.4} +{"session_id":"sess-0fd7d5d26886","input_length":2384,"output_length":208,"hash_ids":[608100,608101,608102,608103,608104],"delay":7946.1} +{"session_id":"sess-0fd7d5d26886","input_length":2115,"output_length":749,"hash_ids":[608105,608106,608107,608108,608109],"delay":966.1} +{"session_id":"sess-0fd7d5d26886","input_length":1130,"output_length":229,"hash_ids":[608110,608111,608112],"delay":914.6} +{"session_id":"sess-0fd7d5d26886","input_length":730,"output_length":243,"hash_ids":[608113,608114],"delay":3772.5} +{"session_id":"sess-0fd7d5d26886","input_length":1606,"output_length":59,"hash_ids":[608115,608116,608117,608118],"delay":21814.6} +{"session_id":"sess-0fd7d5d26886","input_length":1446,"output_length":175,"hash_ids":[608119,608120,608121],"delay":27236.1} +{"session_id":"sess-0fd7d5d26886","input_length":6710,"output_length":419,"hash_ids":[608122,608123,608124,608125,608126,608127,608128,608129,608130,608131,608132,608133,608134,608135],"delay":1097.1} +{"session_id":"sess-0fd7d5d26886","input_length":3246,"output_length":360,"hash_ids":[608136,608137,608138,608139,608140,608141,608142],"delay":32220.7} +{"session_id":"sess-0fd7d5d26886","input_length":5371,"output_length":30,"hash_ids":[608143,608144,608145,608146,608147,608148,608149,608150,608151,608152,608153],"delay":755.9} +{"session_id":"sess-0fd7d5d26886","input_length":541,"output_length":169,"hash_ids":[608154,608155],"delay":560.2} +{"session_id":"sess-0fd7d5d26886","input_length":5100,"output_length":204,"hash_ids":[608156,608157,608158,608159,608160,608161,608162,608163,608164,608165],"delay":406.5} +{"session_id":"sess-0fd7d5d26886","input_length":3237,"output_length":195,"hash_ids":[608166,608167,608168,608169,608170,608171,608172],"delay":583.2} +{"session_id":"sess-0fd7d5d26886","input_length":498,"output_length":69,"hash_ids":[608173],"delay":1478.6} +{"session_id":"sess-0fd7d5d26886","input_length":2616,"output_length":388,"hash_ids":[608174,608175,608176,608177,608178,608179],"delay":6445.8} +{"session_id":"sess-0fd7d5d26886","input_length":1447,"output_length":728,"hash_ids":[608180,608181,608182],"delay":467.4} +{"session_id":"sess-0fd7d5d26886","input_length":9727,"output_length":161,"hash_ids":[608183,608184,608185,608186,608187,608188,608189,608190,608191,608192,608193,608194,608195,608196,608197,608198,608199,608200,608201],"delay":1404.6} +{"session_id":"sess-0fd7d5d26886","input_length":1368,"output_length":1269,"hash_ids":[608202,608203,608204],"delay":22356.1} +{"session_id":"sess-0fd7d5d26886","input_length":1611,"output_length":240,"hash_ids":[608205,608206,608207,608208],"delay":735.3} +{"session_id":"sess-ae35a6c83a2f","input_length":53024,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,612063],"timestamp":0.0,"group_id":11} +{"session_id":"sess-ae35a6c83a2f","input_length":792,"output_length":210,"hash_ids":[612064,612065],"delay":1319.6} +{"session_id":"sess-ae35a6c83a2f","input_length":2473,"output_length":543,"hash_ids":[612066,612067,612068,612069,612070],"delay":8542.9} +{"session_id":"sess-ae35a6c83a2f","input_length":2196,"output_length":1155,"hash_ids":[612071,612072,612073,612074,612075],"delay":5619.3} +{"session_id":"sess-ae35a6c83a2f","input_length":711,"output_length":443,"hash_ids":[612076,612077],"delay":635.3} +{"session_id":"sess-ae35a6c83a2f","input_length":207,"output_length":229,"hash_ids":[612078],"delay":546.6} +{"session_id":"sess-ae35a6c83a2f","input_length":951,"output_length":429,"hash_ids":[612079,612080],"delay":2054.1} +{"session_id":"sess-ae35a6c83a2f","input_length":1867,"output_length":224,"hash_ids":[612081,612082,612083,612084],"delay":627.4} +{"session_id":"sess-ae35a6c83a2f","input_length":4321,"output_length":114,"hash_ids":[612085,612086,612087,612088,612089,612090,612091,612092,612093],"delay":12026.7} +{"session_id":"sess-ae35a6c83a2f","input_length":1441,"output_length":224,"hash_ids":[612094,612095,612096],"delay":3475.1} +{"session_id":"sess-ae35a6c83a2f","input_length":1634,"output_length":132,"hash_ids":[612097,612098,612099,612100],"delay":670.8} +{"session_id":"sess-ae35a6c83a2f","input_length":1162,"output_length":245,"hash_ids":[612101,612102,612103],"delay":21670.7} +{"session_id":"sess-ae35a6c83a2f","input_length":529,"output_length":1175,"hash_ids":[612104,612105],"delay":2682.3} +{"session_id":"sess-ae35a6c83a2f","input_length":8828,"output_length":631,"hash_ids":[612106,612107,612108,612109,612110,612111,612112,612113,612114,612115,612116,612117,612118,612119,612120,612121,612122,612123],"delay":13868.7} +{"session_id":"sess-ae35a6c83a2f","input_length":2036,"output_length":108,"hash_ids":[612124,612125,612126,612127],"delay":1824.6} +{"session_id":"sess-ae35a6c83a2f","input_length":827,"output_length":44,"hash_ids":[612128,612129],"delay":13120.5} +{"session_id":"sess-ae35a6c83a2f","input_length":1791,"output_length":129,"hash_ids":[612130,612131,612132,612133],"delay":1885.9} +{"session_id":"sess-ae35a6c83a2f","input_length":903,"output_length":146,"hash_ids":[612134,612135],"delay":4288.5} +{"session_id":"sess-ae35a6c83a2f","input_length":702,"output_length":822,"hash_ids":[612136,612137],"delay":629.9} +{"session_id":"sess-c39a1ab83903","input_length":54519,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,616063,616064,616065,616066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c39a1ab83903","input_length":6914,"output_length":2153,"hash_ids":[616067,616068,616069,616070,616071,616072,616073,616074,616075,616076,616077,616078,616079,616080],"delay":358.8} +{"session_id":"sess-c39a1ab83903","input_length":325,"output_length":1237,"hash_ids":[616081],"delay":10944.2} +{"session_id":"sess-c39a1ab83903","input_length":1723,"output_length":210,"hash_ids":[616082,616083,616084,616085],"delay":837.2} +{"session_id":"sess-c39a1ab83903","input_length":1556,"output_length":117,"hash_ids":[616086,616087,616088,616089],"delay":663.7} +{"session_id":"sess-4c016abdc119","input_length":54708,"output_length":419,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,620063,620064,620065,620066],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4c016abdc119","input_length":7571,"output_length":2292,"hash_ids":[620067,620068,620069,620070,620071,620072,620073,620074,620075,620076,620077,620078,620079,620080,620081],"delay":1502.2} +{"session_id":"sess-4c016abdc119","input_length":998,"output_length":594,"hash_ids":[620082,620083],"delay":31075.6} +{"session_id":"sess-4c016abdc119","input_length":1299,"output_length":71,"hash_ids":[620084,620085,620086],"delay":16057.0} +{"session_id":"sess-4c016abdc119","input_length":1059,"output_length":135,"hash_ids":[620087,620088,620089],"delay":990.7} +{"session_id":"sess-4c016abdc119","input_length":2928,"output_length":68,"hash_ids":[620090,620091,620092,620093,620094,620095],"delay":22061.1} +{"session_id":"sess-4c016abdc119","input_length":909,"output_length":131,"hash_ids":[620096,620097],"delay":3341.1} +{"session_id":"sess-4c016abdc119","input_length":5220,"output_length":218,"hash_ids":[620098,620099,620100,620101,620102,620103,620104,620105,620106,620107,620108],"delay":618.9} +{"session_id":"sess-4c016abdc119","input_length":3147,"output_length":387,"hash_ids":[620109,620110,620111,620112,620113,620114,620115],"delay":14082.6} +{"session_id":"sess-4c016abdc119","input_length":327,"output_length":684,"hash_ids":[620116],"delay":4172.3} +{"session_id":"sess-4c016abdc119","input_length":238,"output_length":1584,"hash_ids":[620117],"delay":1115.2} +{"session_id":"sess-4c016abdc119","input_length":835,"output_length":149,"hash_ids":[620118,620119],"delay":23237.0} +{"session_id":"sess-dc6695283f33","input_length":68094,"output_length":251,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,624063,624064,624065,624066,624067,624068,624069,624070,624071,624072,624073,624074,624075,624076,624077,624078,624079,624080,624081,624082,624083,624084,624085,624086,624087,624088,624089,624090,624091,624092],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dc6695283f33","input_length":7590,"output_length":853,"hash_ids":[624093,624094,624095,624096,624097,624098,624099,624100,624101,624102,624103,624104,624105,624106,624107],"delay":1954.9} +{"session_id":"sess-dc6695283f33","input_length":8280,"output_length":191,"hash_ids":[624108,624109,624110,624111,624112,624113,624114,624115,624116,624117,624118,624119,624120,624121,624122,624123,624124],"delay":19837.6} +{"session_id":"sess-dc6695283f33","input_length":588,"output_length":62,"hash_ids":[624125,624126],"delay":831.2} +{"session_id":"sess-dc6695283f33","input_length":1869,"output_length":301,"hash_ids":[624127,624128,624129,624130],"delay":17592.6} +{"session_id":"sess-dc6695283f33","input_length":526,"output_length":126,"hash_ids":[624131,624132],"delay":2953.5} +{"session_id":"sess-dc6695283f33","input_length":1395,"output_length":111,"hash_ids":[624133,624134,624135],"delay":3102.2} +{"session_id":"sess-dc6695283f33","input_length":950,"output_length":1256,"hash_ids":[624136,624137],"delay":4872.8} +{"session_id":"sess-5a0742bc8bfe","input_length":55999,"output_length":248,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,628063,628064,628065,628066,628067,628068,628069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5a0742bc8bfe","input_length":256,"output_length":344,"hash_ids":[628070],"delay":828.4} +{"session_id":"sess-5a0742bc8bfe","input_length":689,"output_length":233,"hash_ids":[628071,628072],"delay":8243.8} +{"session_id":"sess-5a0742bc8bfe","input_length":129,"output_length":976,"hash_ids":[628073],"delay":727.6} +{"session_id":"sess-5a0742bc8bfe","input_length":60,"output_length":873,"hash_ids":[628074],"delay":594.4} +{"session_id":"sess-5a0742bc8bfe","input_length":301,"output_length":559,"hash_ids":[628075],"delay":790.9} +{"session_id":"sess-5a0742bc8bfe","input_length":498,"output_length":255,"hash_ids":[628076],"delay":683.6} +{"session_id":"sess-5a0742bc8bfe","input_length":330,"output_length":228,"hash_ids":[628077],"delay":1822.5} +{"session_id":"sess-5a0742bc8bfe","input_length":60,"output_length":418,"hash_ids":[628078],"delay":8211.3} +{"session_id":"sess-5a0742bc8bfe","input_length":1221,"output_length":516,"hash_ids":[628079,628080,628081],"delay":1641.2} +{"session_id":"sess-5a0742bc8bfe","input_length":1610,"output_length":604,"hash_ids":[628082,628083,628084,628085],"delay":452.3} +{"session_id":"sess-5a0742bc8bfe","input_length":334,"output_length":139,"hash_ids":[628086],"delay":737.0} +{"session_id":"sess-5a0742bc8bfe","input_length":310,"output_length":793,"hash_ids":[628087],"delay":1661.5} +{"session_id":"sess-5a0742bc8bfe","input_length":334,"output_length":435,"hash_ids":[628088],"delay":1030.6} +{"session_id":"sess-5a0742bc8bfe","input_length":2494,"output_length":1432,"hash_ids":[628089,628090,628091,628092,628093],"delay":5094.3} +{"session_id":"sess-5a0742bc8bfe","input_length":1306,"output_length":205,"hash_ids":[628094,628095,628096],"delay":1066.9} +{"session_id":"sess-5a0742bc8bfe","input_length":2340,"output_length":562,"hash_ids":[628097,628098,628099,628100,628101],"delay":1286.7} +{"session_id":"sess-5a0742bc8bfe","input_length":1567,"output_length":668,"hash_ids":[628102,628103,628104,628105],"delay":10900.8} +{"session_id":"sess-5a0742bc8bfe","input_length":5496,"output_length":595,"hash_ids":[628106,628107,628108,628109,628110,628111,628112,628113,628114,628115,628116],"delay":1904.7} +{"session_id":"sess-5a0742bc8bfe","input_length":2488,"output_length":78,"hash_ids":[628117,628118,628119,628120,628121],"delay":5067.7} +{"session_id":"sess-5a0742bc8bfe","input_length":2072,"output_length":326,"hash_ids":[628122,628123,628124,628125,628126],"delay":303.2} +{"session_id":"sess-5a0742bc8bfe","input_length":820,"output_length":268,"hash_ids":[628127,628128],"delay":417.0} +{"session_id":"sess-5a0742bc8bfe","input_length":7437,"output_length":75,"hash_ids":[628129,628130,628131,628132,628133,628134,628135,628136,628137,628138,628139,628140,628141,628142,628143],"delay":308.8} +{"session_id":"sess-5a0742bc8bfe","input_length":5824,"output_length":52,"hash_ids":[628144,628145,628146,628147,628148,628149,628150,628151,628152,628153,628154,628155],"delay":509.4} +{"session_id":"sess-5a0742bc8bfe","input_length":792,"output_length":129,"hash_ids":[628156,628157],"delay":31423.4} +{"session_id":"sess-5a0742bc8bfe","input_length":1741,"output_length":55,"hash_ids":[628158,628159,628160,628161],"delay":2143.7} +{"session_id":"sess-5a0742bc8bfe","input_length":1006,"output_length":376,"hash_ids":[628162,628163],"delay":254.3} +{"session_id":"sess-5a0742bc8bfe","input_length":727,"output_length":243,"hash_ids":[628164,628165],"delay":508.0} +{"session_id":"sess-5a0742bc8bfe","input_length":1840,"output_length":759,"hash_ids":[628166,628167,628168,628169],"delay":312.4} +{"session_id":"sess-5a0742bc8bfe","input_length":8672,"output_length":1232,"hash_ids":[628170,628171,628172,628173,628174,628175,628176,628177,628178,628179,628180,628181,628182,628183,628184,628185,628186],"delay":720.1} +{"session_id":"sess-5a0742bc8bfe","input_length":2403,"output_length":228,"hash_ids":[628187,628188,628189,628190,628191],"delay":25284.7} +{"session_id":"sess-5a0742bc8bfe","input_length":299,"output_length":682,"hash_ids":[628192],"delay":2007.5} +{"session_id":"sess-8100e14f63e7","input_length":53299,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,632063,632064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8100e14f63e7","input_length":1537,"output_length":521,"hash_ids":[632065,632066,632067,632068],"delay":2128.1} +{"session_id":"sess-8100e14f63e7","input_length":243,"output_length":124,"hash_ids":[632069],"delay":6875.5} +{"session_id":"sess-8100e14f63e7","input_length":3750,"output_length":840,"hash_ids":[632070,632071,632072,632073,632074,632075,632076,632077],"delay":3685.4} +{"session_id":"sess-8100e14f63e7","input_length":3621,"output_length":30,"hash_ids":[632078,632079,632080,632081,632082,632083,632084,632085],"delay":4595.6} +{"session_id":"sess-8100e14f63e7","input_length":2343,"output_length":102,"hash_ids":[632086,632087,632088,632089,632090],"delay":17566.4} +{"session_id":"sess-8100e14f63e7","input_length":4420,"output_length":907,"hash_ids":[632091,632092,632093,632094,632095,632096,632097,632098,632099],"delay":1115.8} +{"session_id":"sess-8100e14f63e7","input_length":2290,"output_length":83,"hash_ids":[632100,632101,632102,632103,632104],"delay":316.4} +{"session_id":"sess-8100e14f63e7","input_length":673,"output_length":98,"hash_ids":[632105,632106],"delay":1751.8} +{"session_id":"sess-8100e14f63e7","input_length":848,"output_length":676,"hash_ids":[632107,632108],"delay":11342.1} +{"session_id":"sess-8100e14f63e7","input_length":2183,"output_length":147,"hash_ids":[632109,632110,632111,632112,632113],"delay":2358.0} +{"session_id":"sess-8100e14f63e7","input_length":2182,"output_length":230,"hash_ids":[632114,632115,632116,632117,632118],"delay":782.6} +{"session_id":"sess-8100e14f63e7","input_length":6345,"output_length":138,"hash_ids":[632119,632120,632121,632122,632123,632124,632125,632126,632127,632128,632129,632130,632131],"delay":836.5} +{"session_id":"sess-8100e14f63e7","input_length":2257,"output_length":219,"hash_ids":[632132,632133,632134,632135,632136],"delay":4144.9} +{"session_id":"sess-8100e14f63e7","input_length":873,"output_length":297,"hash_ids":[632137,632138],"delay":6627.9} +{"session_id":"sess-8100e14f63e7","input_length":1330,"output_length":83,"hash_ids":[632139,632140,632141],"delay":871.0} +{"session_id":"sess-8100e14f63e7","input_length":890,"output_length":55,"hash_ids":[632142,632143],"delay":775.1} +{"session_id":"sess-8100e14f63e7","input_length":331,"output_length":203,"hash_ids":[632144],"delay":1239.9} +{"session_id":"sess-8100e14f63e7","input_length":8362,"output_length":58,"hash_ids":[632145,632146,632147,632148,632149,632150,632151,632152,632153,632154,632155,632156,632157,632158,632159,632160,632161],"delay":689.9} +{"session_id":"sess-8100e14f63e7","input_length":5342,"output_length":1480,"hash_ids":[632162,632163,632164,632165,632166,632167,632168,632169,632170,632171,632172],"delay":1183.2} +{"session_id":"sess-8100e14f63e7","input_length":1769,"output_length":65,"hash_ids":[632173,632174,632175,632176],"delay":1447.2} +{"session_id":"sess-8100e14f63e7","input_length":8913,"output_length":46,"hash_ids":[632177,632178,632179,632180,632181,632182,632183,632184,632185,632186,632187,632188,632189,632190,632191,632192,632193,632194],"delay":5732.5} +{"session_id":"sess-8100e14f63e7","input_length":2511,"output_length":707,"hash_ids":[632195,632196,632197,632198,632199],"delay":169.6} +{"session_id":"sess-8100e14f63e7","input_length":2779,"output_length":1454,"hash_ids":[632200,632201,632202,632203,632204,632205],"delay":2903.4} +{"session_id":"sess-8100e14f63e7","input_length":853,"output_length":175,"hash_ids":[632206,632207],"delay":1591.8} +{"session_id":"sess-8100e14f63e7","input_length":1697,"output_length":751,"hash_ids":[632208,632209,632210,632211],"delay":3425.4} +{"session_id":"sess-eb9c05d481d3","input_length":61326,"output_length":95,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,636063,636064,636065,636066,636067,636068,636069,636070,636071,636072,636073,636074,636075,636076,636077,636078,636079],"timestamp":0.0,"group_id":19} +{"session_id":"sess-eb9c05d481d3","input_length":1564,"output_length":73,"hash_ids":[636080,636081,636082,636083],"delay":723.2} +{"session_id":"sess-eb9c05d481d3","input_length":2705,"output_length":361,"hash_ids":[636084,636085,636086,636087,636088,636089],"delay":17047.3} +{"session_id":"sess-eb9c05d481d3","input_length":1419,"output_length":30,"hash_ids":[636090,636091,636092],"delay":871.4} +{"session_id":"sess-eb9c05d481d3","input_length":379,"output_length":470,"hash_ids":[636093],"delay":2001.6} +{"session_id":"sess-eb9c05d481d3","input_length":6037,"output_length":693,"hash_ids":[636094,636095,636096,636097,636098,636099,636100,636101,636102,636103,636104,636105],"delay":1845.3} +{"session_id":"sess-eb9c05d481d3","input_length":6876,"output_length":254,"hash_ids":[636106,636107,636108,636109,636110,636111,636112,636113,636114,636115,636116,636117,636118,636119],"delay":361.1} +{"session_id":"sess-eb9c05d481d3","input_length":1049,"output_length":142,"hash_ids":[636120,636121,636122],"delay":28837.3} +{"session_id":"sess-eb9c05d481d3","input_length":2587,"output_length":238,"hash_ids":[636123,636124,636125,636126,636127,636128],"delay":1622.3} +{"session_id":"sess-eb9c05d481d3","input_length":1942,"output_length":277,"hash_ids":[636129,636130,636131,636132],"delay":21158.5} +{"session_id":"sess-eb9c05d481d3","input_length":1770,"output_length":214,"hash_ids":[636133,636134,636135,636136],"delay":181.5} +{"session_id":"sess-eb9c05d481d3","input_length":6539,"output_length":45,"hash_ids":[636137,636138,636139,636140,636141,636142,636143,636144,636145,636146,636147,636148,636149],"delay":3862.7} +{"session_id":"sess-eb9c05d481d3","input_length":587,"output_length":880,"hash_ids":[636150,636151],"delay":430.5} +{"session_id":"sess-eb9c05d481d3","input_length":499,"output_length":568,"hash_ids":[636152],"delay":2629.5} +{"session_id":"sess-eb9c05d481d3","input_length":3078,"output_length":84,"hash_ids":[636153,636154,636155,636156,636157,636158,636159],"delay":8013.5} +{"session_id":"sess-eb9c05d481d3","input_length":794,"output_length":785,"hash_ids":[636160,636161],"delay":1774.9} +{"session_id":"sess-eb9c05d481d3","input_length":376,"output_length":235,"hash_ids":[636162],"delay":261.2} +{"session_id":"sess-eb9c05d481d3","input_length":277,"output_length":357,"hash_ids":[636163],"delay":754.8} +{"session_id":"sess-eb9c05d481d3","input_length":2213,"output_length":33,"hash_ids":[636164,636165,636166,636167,636168],"delay":695.4} +{"session_id":"sess-eb9c05d481d3","input_length":3692,"output_length":43,"hash_ids":[636169,636170,636171,636172,636173,636174,636175,636176],"delay":2034.5} +{"session_id":"sess-eb9c05d481d3","input_length":2483,"output_length":441,"hash_ids":[636177,636178,636179,636180,636181],"delay":1361.5} +{"session_id":"sess-eb9c05d481d3","input_length":993,"output_length":775,"hash_ids":[636182,636183],"delay":1405.8} +{"session_id":"sess-eb9c05d481d3","input_length":1300,"output_length":311,"hash_ids":[636184,636185,636186],"delay":12174.6} +{"session_id":"sess-eb9c05d481d3","input_length":199,"output_length":50,"hash_ids":[636187],"delay":83.2} +{"session_id":"sess-eb9c05d481d3","input_length":1469,"output_length":154,"hash_ids":[636188,636189,636190],"delay":710.1} +{"session_id":"sess-eb9c05d481d3","input_length":6025,"output_length":46,"hash_ids":[636191,636192,636193,636194,636195,636196,636197,636198,636199,636200,636201,636202],"delay":465.9} +{"session_id":"sess-eb9c05d481d3","input_length":586,"output_length":183,"hash_ids":[636203,636204],"delay":2735.1} +{"session_id":"sess-6d385ae30ac9","input_length":62532,"output_length":31,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,640063,640064,640065,640066,640067,640068,640069,640070,640071,640072,640073,640074,640075,640076,640077,640078,640079,640080,640081,640082],"timestamp":0.0,"group_id":23} +{"session_id":"sess-6d385ae30ac9","input_length":3170,"output_length":393,"hash_ids":[640083,640084,640085,640086,640087,640088,640089],"delay":36927.8} +{"session_id":"sess-6d385ae30ac9","input_length":3191,"output_length":957,"hash_ids":[640090,640091,640092,640093,640094,640095,640096],"delay":1447.1} +{"session_id":"sess-6d385ae30ac9","input_length":3260,"output_length":305,"hash_ids":[640097,640098,640099,640100,640101,640102,640103],"delay":2180.3} +{"session_id":"sess-6d385ae30ac9","input_length":1712,"output_length":248,"hash_ids":[640104,640105,640106,640107],"delay":540.6} +{"session_id":"sess-6d385ae30ac9","input_length":609,"output_length":902,"hash_ids":[640108,640109],"delay":14718.7} +{"session_id":"sess-6d385ae30ac9","input_length":4456,"output_length":342,"hash_ids":[640110,640111,640112,640113,640114,640115,640116,640117,640118],"delay":1164.0} +{"session_id":"sess-6d385ae30ac9","input_length":1190,"output_length":433,"hash_ids":[640119,640120,640121],"delay":275.9} +{"session_id":"sess-6d385ae30ac9","input_length":819,"output_length":164,"hash_ids":[640122,640123],"delay":444.7} +{"session_id":"sess-6d385ae30ac9","input_length":585,"output_length":779,"hash_ids":[640124,640125],"delay":1400.6} +{"session_id":"sess-6d385ae30ac9","input_length":1653,"output_length":292,"hash_ids":[640126,640127,640128,640129],"delay":16454.3} +{"session_id":"sess-6d385ae30ac9","input_length":191,"output_length":205,"hash_ids":[640130],"delay":8372.9} +{"session_id":"sess-6d385ae30ac9","input_length":6442,"output_length":353,"hash_ids":[640131,640132,640133,640134,640135,640136,640137,640138,640139,640140,640141,640142,640143],"delay":8237.6} +{"session_id":"sess-6d385ae30ac9","input_length":1364,"output_length":625,"hash_ids":[640144,640145,640146],"delay":2966.3} +{"session_id":"sess-6d385ae30ac9","input_length":2128,"output_length":31,"hash_ids":[640147,640148,640149,640150,640151],"delay":6217.6} +{"session_id":"sess-6d385ae30ac9","input_length":1638,"output_length":292,"hash_ids":[640152,640153,640154,640155],"delay":22531.4} +{"session_id":"sess-6d385ae30ac9","input_length":1805,"output_length":515,"hash_ids":[640156,640157,640158,640159],"delay":477.0} +{"session_id":"sess-6d385ae30ac9","input_length":1793,"output_length":177,"hash_ids":[640160,640161,640162,640163],"delay":871.2} +{"session_id":"sess-6d385ae30ac9","input_length":1213,"output_length":90,"hash_ids":[640164,640165,640166],"delay":4524.0} +{"session_id":"sess-6d385ae30ac9","input_length":300,"output_length":401,"hash_ids":[640167],"delay":12080.6} +{"session_id":"sess-6d385ae30ac9","input_length":1000,"output_length":187,"hash_ids":[640168,640169],"delay":5813.7} +{"session_id":"sess-6d385ae30ac9","input_length":1201,"output_length":743,"hash_ids":[640170,640171,640172],"delay":1271.2} +{"session_id":"sess-6d385ae30ac9","input_length":2508,"output_length":277,"hash_ids":[640173,640174,640175,640176,640177],"delay":4714.4} +{"session_id":"sess-6d385ae30ac9","input_length":2076,"output_length":1918,"hash_ids":[640178,640179,640180,640181,640182],"delay":10345.3} +{"session_id":"sess-6d385ae30ac9","input_length":378,"output_length":268,"hash_ids":[640183],"delay":349.4} +{"session_id":"sess-6d385ae30ac9","input_length":689,"output_length":1197,"hash_ids":[640184,640185],"delay":671.3} +{"session_id":"sess-6d385ae30ac9","input_length":361,"output_length":315,"hash_ids":[640186],"delay":602.5} +{"session_id":"sess-6d385ae30ac9","input_length":772,"output_length":311,"hash_ids":[640187,640188],"delay":1197.7} +{"session_id":"sess-6d385ae30ac9","input_length":2257,"output_length":468,"hash_ids":[640189,640190,640191,640192,640193],"delay":2328.3} +{"session_id":"sess-4d9e78e20509","input_length":67046,"output_length":787,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,644063,644064,644065,644066,644067,644068,644069,644070,644071,644072,644073,644074,644075,644076,644077,644078,644079,644080,644081,644082,644083,644084,644085,644086,644087,644088,644089,644090],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4d9e78e20509","input_length":116,"output_length":201,"hash_ids":[644091],"delay":1249.1} +{"session_id":"sess-4d9e78e20509","input_length":1110,"output_length":1013,"hash_ids":[644092,644093,644094],"delay":2038.1} +{"session_id":"sess-4d9e78e20509","input_length":5611,"output_length":290,"hash_ids":[644095,644096,644097,644098,644099,644100,644101,644102,644103,644104,644105],"delay":17447.2} +{"session_id":"sess-4d9e78e20509","input_length":2753,"output_length":950,"hash_ids":[644106,644107,644108,644109,644110,644111],"delay":800.8} +{"session_id":"sess-4d9e78e20509","input_length":4260,"output_length":104,"hash_ids":[644112,644113,644114,644115,644116,644117,644118,644119,644120],"delay":8309.0} +{"session_id":"sess-4d9e78e20509","input_length":1620,"output_length":207,"hash_ids":[644121,644122,644123,644124],"delay":14542.4} +{"session_id":"sess-4d9e78e20509","input_length":345,"output_length":1210,"hash_ids":[644125],"delay":35013.4} +{"session_id":"sess-4d9e78e20509","input_length":636,"output_length":104,"hash_ids":[644126,644127],"delay":554.1} +{"session_id":"sess-4d9e78e20509","input_length":1953,"output_length":1954,"hash_ids":[644128,644129,644130,644131],"delay":3388.1} +{"session_id":"sess-4d9e78e20509","input_length":1272,"output_length":1552,"hash_ids":[644132,644133,644134],"delay":1845.3} +{"session_id":"sess-4d9e78e20509","input_length":642,"output_length":2590,"hash_ids":[644135,644136],"delay":2369.0} +{"session_id":"sess-4d9e78e20509","input_length":2222,"output_length":1008,"hash_ids":[644137,644138,644139,644140,644141],"delay":5210.8} +{"session_id":"sess-4d9e78e20509","input_length":1610,"output_length":385,"hash_ids":[644142,644143,644144,644145],"delay":15066.1} +{"session_id":"sess-4d9e78e20509","input_length":1850,"output_length":54,"hash_ids":[644146,644147,644148,644149],"delay":1472.5} +{"session_id":"sess-4d9e78e20509","input_length":1925,"output_length":401,"hash_ids":[644150,644151,644152,644153],"delay":2863.8} +{"session_id":"sess-4d9e78e20509","input_length":9188,"output_length":181,"hash_ids":[644154,644155,644156,644157,644158,644159,644160,644161,644162,644163,644164,644165,644166,644167,644168,644169,644170,644171],"delay":195.4} +{"session_id":"sess-4d9e78e20509","input_length":6752,"output_length":78,"hash_ids":[644172,644173,644174,644175,644176,644177,644178,644179,644180,644181,644182,644183,644184,644185],"delay":9967.7} +{"session_id":"sess-4d9e78e20509","input_length":1120,"output_length":561,"hash_ids":[644186,644187,644188],"delay":2912.5} +{"session_id":"sess-4d9e78e20509","input_length":2538,"output_length":235,"hash_ids":[644189,644190,644191,644192,644193],"delay":3529.0} +{"session_id":"sess-8852fb919251","input_length":73833,"output_length":324,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,648063,648064,648065,648066,648067,648068,648069,648070,648071,648072,648073,648074,648075,648076,648077,648078,648079,648080,648081,648082,648083,648084,648085,648086,648087,648088,648089,648090,648091,648092,648093,648094,648095,648096,648097,648098,648099,648100,648101,648102,648103,648104],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8852fb919251","input_length":6740,"output_length":160,"hash_ids":[648105,648106,648107,648108,648109,648110,648111,648112,648113,648114,648115,648116,648117,648118],"delay":359.3} +{"session_id":"sess-8852fb919251","input_length":1174,"output_length":441,"hash_ids":[648119,648120,648121],"delay":1063.0} +{"session_id":"sess-8852fb919251","input_length":1771,"output_length":1060,"hash_ids":[648122,648123,648124,648125],"delay":2726.3} +{"session_id":"sess-8852fb919251","input_length":2528,"output_length":555,"hash_ids":[648126,648127,648128,648129,648130],"delay":37.3} +{"session_id":"sess-8852fb919251","input_length":4861,"output_length":494,"hash_ids":[648131,648132,648133,648134,648135,648136,648137,648138,648139,648140],"delay":1442.7} +{"session_id":"sess-8852fb919251","input_length":6203,"output_length":2082,"hash_ids":[648141,648142,648143,648144,648145,648146,648147,648148,648149,648150,648151,648152,648153],"delay":9628.6} +{"session_id":"sess-8852fb919251","input_length":4129,"output_length":2010,"hash_ids":[648154,648155,648156,648157,648158,648159,648160,648161,648162],"delay":1266.3} +{"session_id":"sess-8852fb919251","input_length":869,"output_length":215,"hash_ids":[648163,648164],"delay":331.9} +{"session_id":"sess-8852fb919251","input_length":627,"output_length":410,"hash_ids":[648165,648166],"delay":746.7} +{"session_id":"sess-8852fb919251","input_length":6252,"output_length":50,"hash_ids":[648167,648168,648169,648170,648171,648172,648173,648174,648175,648176,648177,648178,648179],"delay":1067.6} +{"session_id":"sess-8852fb919251","input_length":1814,"output_length":228,"hash_ids":[648180,648181,648182,648183],"delay":11718.6} +{"session_id":"sess-8852fb919251","input_length":5237,"output_length":224,"hash_ids":[648184,648185,648186,648187,648188,648189,648190,648191,648192,648193,648194],"delay":5685.1} +{"session_id":"sess-8852fb919251","input_length":685,"output_length":408,"hash_ids":[648195,648196],"delay":17919.1} +{"session_id":"sess-8852fb919251","input_length":959,"output_length":30,"hash_ids":[648197,648198],"delay":21817.7} +{"session_id":"sess-8852fb919251","input_length":653,"output_length":132,"hash_ids":[648199,648200],"delay":14740.3} +{"session_id":"sess-8852fb919251","input_length":1268,"output_length":58,"hash_ids":[648201,648202,648203],"delay":5059.2} +{"session_id":"sess-8852fb919251","input_length":2451,"output_length":79,"hash_ids":[648204,648205,648206,648207,648208],"delay":251.9} +{"session_id":"sess-72da7c33200f","input_length":53322,"output_length":476,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,652063,652064],"timestamp":0.0,"group_id":16} +{"session_id":"sess-72da7c33200f","input_length":2227,"output_length":77,"hash_ids":[652065,652066,652067,652068,652069],"delay":24797.1} +{"session_id":"sess-72da7c33200f","input_length":3960,"output_length":98,"hash_ids":[652070,652071,652072,652073,652074,652075,652076,652077],"delay":22456.4} +{"session_id":"sess-72da7c33200f","input_length":526,"output_length":57,"hash_ids":[652078,652079],"delay":16869.4} +{"session_id":"sess-72da7c33200f","input_length":2414,"output_length":503,"hash_ids":[652080,652081,652082,652083,652084],"delay":10193.3} +{"session_id":"sess-72da7c33200f","input_length":2507,"output_length":1255,"hash_ids":[652085,652086,652087,652088,652089],"delay":56226.1} +{"session_id":"sess-a2e221dcc1e3","input_length":66972,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,656063,656064,656065,656066,656067,656068,656069,656070,656071,656072,656073,656074,656075,656076,656077,656078,656079,656080,656081,656082,656083,656084,656085,656086,656087,656088,656089,656090],"timestamp":0.0,"group_id":28} +{"session_id":"sess-a2e221dcc1e3","input_length":8578,"output_length":283,"hash_ids":[656091,656092,656093,656094,656095,656096,656097,656098,656099,656100,656101,656102,656103,656104,656105,656106,656107],"delay":1770.5} +{"session_id":"sess-a2e221dcc1e3","input_length":8973,"output_length":623,"hash_ids":[656108,656109,656110,656111,656112,656113,656114,656115,656116,656117,656118,656119,656120,656121,656122,656123,656124,656125],"delay":495.6} +{"session_id":"sess-a2e221dcc1e3","input_length":1903,"output_length":2058,"hash_ids":[656126,656127,656128,656129],"delay":293.2} +{"session_id":"sess-a2e221dcc1e3","input_length":2109,"output_length":115,"hash_ids":[656130,656131,656132,656133,656134],"delay":1300.9} +{"session_id":"sess-a2e221dcc1e3","input_length":4993,"output_length":125,"hash_ids":[656135,656136,656137,656138,656139,656140,656141,656142,656143,656144],"delay":50067.7} +{"session_id":"sess-a2e221dcc1e3","input_length":1847,"output_length":406,"hash_ids":[656145,656146,656147,656148],"delay":987.0} +{"session_id":"sess-a2e221dcc1e3","input_length":3500,"output_length":816,"hash_ids":[656149,656150,656151,656152,656153,656154,656155],"delay":3148.0} +{"session_id":"sess-a2e221dcc1e3","input_length":5540,"output_length":1300,"hash_ids":[656156,656157,656158,656159,656160,656161,656162,656163,656164,656165,656166],"delay":605.3} +{"session_id":"sess-a2e221dcc1e3","input_length":4837,"output_length":96,"hash_ids":[656167,656168,656169,656170,656171,656172,656173,656174,656175,656176],"delay":801.4} +{"session_id":"sess-a2e221dcc1e3","input_length":378,"output_length":186,"hash_ids":[656177],"delay":489.6} +{"session_id":"sess-a2e221dcc1e3","input_length":3351,"output_length":576,"hash_ids":[656178,656179,656180,656181,656182,656183,656184],"delay":23124.4} +{"session_id":"sess-a2e221dcc1e3","input_length":1159,"output_length":676,"hash_ids":[656185,656186,656187],"delay":403.6} +{"session_id":"sess-a2e221dcc1e3","input_length":3229,"output_length":105,"hash_ids":[656188,656189,656190,656191,656192,656193,656194],"delay":2069.7} +{"session_id":"sess-a2e221dcc1e3","input_length":618,"output_length":435,"hash_ids":[656195,656196],"delay":496.8} +{"session_id":"sess-a2e221dcc1e3","input_length":2741,"output_length":265,"hash_ids":[656197,656198,656199,656200,656201,656202],"delay":580.7} +{"session_id":"sess-e64800105836","input_length":53474,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,660063,660064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e64800105836","input_length":1268,"output_length":486,"hash_ids":[660065,660066,660067],"delay":2030.6} +{"session_id":"sess-5e7e78e45366","input_length":56961,"output_length":388,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,664063,664064,664065,664066,664067,664068,664069,664070,664071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5e7e78e45366","input_length":1219,"output_length":305,"hash_ids":[664072,664073,664074],"delay":2182.9} +{"session_id":"sess-5e7e78e45366","input_length":5993,"output_length":268,"hash_ids":[664075,664076,664077,664078,664079,664080,664081,664082,664083,664084,664085,664086],"delay":1537.9} +{"session_id":"sess-5e7e78e45366","input_length":3459,"output_length":273,"hash_ids":[664087,664088,664089,664090,664091,664092,664093],"delay":21479.2} +{"session_id":"sess-5e7e78e45366","input_length":539,"output_length":655,"hash_ids":[664094,664095],"delay":605.8} +{"session_id":"sess-5e7e78e45366","input_length":3699,"output_length":69,"hash_ids":[664096,664097,664098,664099,664100,664101,664102,664103],"delay":5261.9} +{"session_id":"sess-5e7e78e45366","input_length":1119,"output_length":489,"hash_ids":[664104,664105,664106],"delay":826.3} +{"session_id":"sess-5e7e78e45366","input_length":1472,"output_length":40,"hash_ids":[664107,664108,664109],"delay":632.6} +{"session_id":"sess-5e7e78e45366","input_length":598,"output_length":487,"hash_ids":[664110,664111],"delay":1018.2} +{"session_id":"sess-5e7e78e45366","input_length":1749,"output_length":315,"hash_ids":[664112,664113,664114,664115],"delay":26077.0} +{"session_id":"sess-5e7e78e45366","input_length":2033,"output_length":409,"hash_ids":[664116,664117,664118,664119],"delay":2641.1} +{"session_id":"sess-5e7e78e45366","input_length":2826,"output_length":427,"hash_ids":[664120,664121,664122,664123,664124,664125],"delay":225.2} +{"session_id":"sess-5e7e78e45366","input_length":388,"output_length":59,"hash_ids":[664126],"delay":659.2} +{"session_id":"sess-5e7e78e45366","input_length":634,"output_length":788,"hash_ids":[664127,664128],"delay":690.7} +{"session_id":"sess-5e7e78e45366","input_length":1224,"output_length":1999,"hash_ids":[664129,664130,664131],"delay":13360.9} +{"session_id":"sess-5e7e78e45366","input_length":1989,"output_length":52,"hash_ids":[664132,664133,664134,664135],"delay":7486.9} +{"session_id":"sess-5e7e78e45366","input_length":356,"output_length":445,"hash_ids":[664136],"delay":2248.7} +{"session_id":"sess-5e7e78e45366","input_length":264,"output_length":448,"hash_ids":[664137],"delay":4168.3} +{"session_id":"sess-5e7e78e45366","input_length":3916,"output_length":166,"hash_ids":[664138,664139,664140,664141,664142,664143,664144,664145],"delay":502.9} +{"session_id":"sess-5e7e78e45366","input_length":1773,"output_length":449,"hash_ids":[664146,664147,664148,664149],"delay":996.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":54751,"output_length":164,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,668063,668064,668065,668066],"timestamp":0.0,"group_id":17} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2852,"output_length":116,"hash_ids":[668067,668068,668069,668070,668071,668072],"delay":73025.8} +{"session_id":"sess-a2ad5f0fcb3e","input_length":4826,"output_length":30,"hash_ids":[668073,668074,668075,668076,668077,668078,668079,668080,668081,668082],"delay":709.8} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2382,"output_length":30,"hash_ids":[668083,668084,668085,668086,668087],"delay":11102.3} +{"session_id":"sess-a2ad5f0fcb3e","input_length":748,"output_length":234,"hash_ids":[668088,668089],"delay":1363.4} +{"session_id":"sess-a2ad5f0fcb3e","input_length":5211,"output_length":241,"hash_ids":[668090,668091,668092,668093,668094,668095,668096,668097,668098,668099,668100],"delay":902.3} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1687,"output_length":758,"hash_ids":[668101,668102,668103,668104],"delay":18671.3} +{"session_id":"sess-a2ad5f0fcb3e","input_length":591,"output_length":483,"hash_ids":[668105,668106],"delay":690.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2057,"output_length":262,"hash_ids":[668107,668108,668109,668110,668111],"delay":1480.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":577,"output_length":424,"hash_ids":[668112,668113],"delay":1449.8} +{"session_id":"sess-a2ad5f0fcb3e","input_length":962,"output_length":238,"hash_ids":[668114,668115],"delay":28823.4} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2061,"output_length":689,"hash_ids":[668116,668117,668118,668119,668120],"delay":33472.6} +{"session_id":"sess-a2ad5f0fcb3e","input_length":3474,"output_length":151,"hash_ids":[668121,668122,668123,668124,668125,668126,668127],"delay":1250.9} +{"session_id":"sess-6f4b957092bb","input_length":53398,"output_length":76,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,672063,672064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-6f4b957092bb","input_length":1359,"output_length":387,"hash_ids":[672065,672066,672067],"delay":13448.9} +{"session_id":"sess-6f4b957092bb","input_length":109,"output_length":38,"hash_ids":[672068],"delay":38911.0} +{"session_id":"sess-6f4b957092bb","input_length":6912,"output_length":208,"hash_ids":[672069,672070,672071,672072,672073,672074,672075,672076,672077,672078,672079,672080,672081,672082],"delay":869.2} +{"session_id":"sess-6f4b957092bb","input_length":769,"output_length":121,"hash_ids":[672083,672084],"delay":2112.3} +{"session_id":"sess-6f4b957092bb","input_length":1123,"output_length":244,"hash_ids":[672085,672086,672087],"delay":1205.3} +{"session_id":"sess-6f4b957092bb","input_length":600,"output_length":388,"hash_ids":[672088,672089],"delay":23550.5} +{"session_id":"sess-6f4b957092bb","input_length":786,"output_length":377,"hash_ids":[672090,672091],"delay":61949.4} +{"session_id":"sess-06ef30a22244","input_length":54598,"output_length":83,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,676063,676064,676065,676066],"timestamp":0.0,"group_id":15} +{"session_id":"sess-06ef30a22244","input_length":6735,"output_length":70,"hash_ids":[676067,676068,676069,676070,676071,676072,676073,676074,676075,676076,676077,676078,676079,676080],"delay":24300.3} +{"session_id":"sess-06ef30a22244","input_length":2730,"output_length":134,"hash_ids":[676081,676082,676083,676084,676085,676086],"delay":17845.1} +{"session_id":"sess-06ef30a22244","input_length":481,"output_length":218,"hash_ids":[676087],"delay":1866.2} +{"session_id":"sess-06ef30a22244","input_length":1850,"output_length":82,"hash_ids":[676088,676089,676090,676091],"delay":4767.8} +{"session_id":"sess-06ef30a22244","input_length":789,"output_length":56,"hash_ids":[676092,676093],"delay":2837.4} +{"session_id":"sess-06ef30a22244","input_length":4937,"output_length":50,"hash_ids":[676094,676095,676096,676097,676098,676099,676100,676101,676102,676103],"delay":6145.6} +{"session_id":"sess-06ef30a22244","input_length":2003,"output_length":85,"hash_ids":[676104,676105,676106,676107],"delay":3581.4} +{"session_id":"sess-06ef30a22244","input_length":1711,"output_length":60,"hash_ids":[676108,676109,676110,676111],"delay":10819.7} +{"session_id":"sess-06ef30a22244","input_length":5376,"output_length":686,"hash_ids":[676112,676113,676114,676115,676116,676117,676118,676119,676120,676121,676122],"delay":708.1} +{"session_id":"sess-06ef30a22244","input_length":2086,"output_length":1226,"hash_ids":[676123,676124,676125,676126,676127],"delay":504.1} +{"session_id":"sess-06ef30a22244","input_length":186,"output_length":401,"hash_ids":[676128],"delay":21699.8} +{"session_id":"sess-06ef30a22244","input_length":5387,"output_length":260,"hash_ids":[676129,676130,676131,676132,676133,676134,676135,676136,676137,676138,676139],"delay":48690.1} +{"session_id":"sess-06ef30a22244","input_length":551,"output_length":630,"hash_ids":[676140,676141],"delay":48365.9} +{"session_id":"sess-7e7280730db3","input_length":64224,"output_length":2716,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,680063,680064,680065,680066,680067,680068,680069,680070,680071,680072,680073,680074,680075,680076,680077,680078,680079,680080,680081,680082,680083,680084,680085],"timestamp":0.0,"group_id":7} +{"session_id":"sess-7e7280730db3","input_length":1040,"output_length":71,"hash_ids":[680086,680087,680088],"delay":23980.8} +{"session_id":"sess-7e7280730db3","input_length":557,"output_length":2536,"hash_ids":[680089,680090],"delay":1638.2} +{"session_id":"sess-7e7280730db3","input_length":4049,"output_length":46,"hash_ids":[680091,680092,680093,680094,680095,680096,680097,680098],"delay":536.5} +{"session_id":"sess-7e7280730db3","input_length":2748,"output_length":273,"hash_ids":[680099,680100,680101,680102,680103,680104],"delay":388.6} +{"session_id":"sess-7e7280730db3","input_length":1686,"output_length":164,"hash_ids":[680105,680106,680107,680108],"delay":476.2} +{"session_id":"sess-7e7280730db3","input_length":579,"output_length":344,"hash_ids":[680109,680110],"delay":22798.0} +{"session_id":"sess-7e7280730db3","input_length":1848,"output_length":445,"hash_ids":[680111,680112,680113,680114],"delay":1055.9} +{"session_id":"sess-7e7280730db3","input_length":4393,"output_length":282,"hash_ids":[680115,680116,680117,680118,680119,680120,680121,680122,680123],"delay":787.5} +{"session_id":"sess-7e7280730db3","input_length":2303,"output_length":937,"hash_ids":[680124,680125,680126,680127,680128],"delay":2213.0} +{"session_id":"sess-7e7280730db3","input_length":649,"output_length":598,"hash_ids":[680129,680130],"delay":506.0} +{"session_id":"sess-7e7280730db3","input_length":169,"output_length":141,"hash_ids":[680131],"delay":5674.7} +{"session_id":"sess-7e7280730db3","input_length":1707,"output_length":135,"hash_ids":[680132,680133,680134,680135],"delay":988.8} +{"session_id":"sess-7e7280730db3","input_length":2237,"output_length":56,"hash_ids":[680136,680137,680138,680139,680140],"delay":30503.9} +{"session_id":"sess-7e7280730db3","input_length":9317,"output_length":140,"hash_ids":[680141,680142,680143,680144,680145,680146,680147,680148,680149,680150,680151,680152,680153,680154,680155,680156,680157,680158,680159],"delay":1788.5} +{"session_id":"sess-e9c0f158e221","input_length":56467,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,684063,684064,684065,684066,684067,684068,684069,684070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e9c0f158e221","input_length":2631,"output_length":602,"hash_ids":[684071,684072,684073,684074,684075,684076],"delay":1307.7} +{"session_id":"sess-e9c0f158e221","input_length":2412,"output_length":528,"hash_ids":[684077,684078,684079,684080,684081],"delay":1193.5} +{"session_id":"sess-e9c0f158e221","input_length":8072,"output_length":513,"hash_ids":[684082,684083,684084,684085,684086,684087,684088,684089,684090,684091,684092,684093,684094,684095,684096,684097],"delay":942.6} +{"session_id":"sess-e9c0f158e221","input_length":9348,"output_length":141,"hash_ids":[684098,684099,684100,684101,684102,684103,684104,684105,684106,684107,684108,684109,684110,684111,684112,684113,684114,684115,684116],"delay":42770.6} +{"session_id":"sess-e9c0f158e221","input_length":5083,"output_length":172,"hash_ids":[684117,684118,684119,684120,684121,684122,684123,684124,684125,684126],"delay":1790.0} +{"session_id":"sess-e9c0f158e221","input_length":181,"output_length":801,"hash_ids":[684127],"delay":261.7} +{"session_id":"sess-e9c0f158e221","input_length":682,"output_length":393,"hash_ids":[684128,684129],"delay":390.0} +{"session_id":"sess-e9c0f158e221","input_length":3381,"output_length":305,"hash_ids":[684130,684131,684132,684133,684134,684135,684136],"delay":377.3} +{"session_id":"sess-e9c0f158e221","input_length":1014,"output_length":144,"hash_ids":[684137,684138],"delay":755.7} +{"session_id":"sess-e9c0f158e221","input_length":499,"output_length":2649,"hash_ids":[684139],"delay":4387.9} +{"session_id":"sess-e9c0f158e221","input_length":1746,"output_length":964,"hash_ids":[684140,684141,684142,684143],"delay":678.4} +{"session_id":"sess-e9c0f158e221","input_length":5551,"output_length":1151,"hash_ids":[684144,684145,684146,684147,684148,684149,684150,684151,684152,684153,684154],"delay":17825.7} +{"session_id":"sess-e9c0f158e221","input_length":5260,"output_length":2089,"hash_ids":[684155,684156,684157,684158,684159,684160,684161,684162,684163,684164,684165],"delay":4740.7} +{"session_id":"sess-e9c0f158e221","input_length":3575,"output_length":487,"hash_ids":[684166,684167,684168,684169,684170,684171,684172],"delay":916.0} +{"session_id":"sess-e9c0f158e221","input_length":2359,"output_length":203,"hash_ids":[684173,684174,684175,684176,684177],"delay":990.1} +{"session_id":"sess-77efdfad223d","input_length":53152,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,688063],"timestamp":0.0,"group_id":15} +{"session_id":"sess-77efdfad223d","input_length":4091,"output_length":121,"hash_ids":[688064,688065,688066,688067,688068,688069,688070,688071],"delay":53051.8} +{"session_id":"sess-77efdfad223d","input_length":3223,"output_length":870,"hash_ids":[688072,688073,688074,688075,688076,688077,688078],"delay":23834.7} +{"session_id":"sess-77efdfad223d","input_length":1642,"output_length":208,"hash_ids":[688079,688080,688081,688082],"delay":1473.1} +{"session_id":"sess-77efdfad223d","input_length":3036,"output_length":180,"hash_ids":[688083,688084,688085,688086,688087,688088],"delay":1387.5} +{"session_id":"sess-77efdfad223d","input_length":2270,"output_length":374,"hash_ids":[688089,688090,688091,688092,688093],"delay":920.4} +{"session_id":"sess-77efdfad223d","input_length":3084,"output_length":297,"hash_ids":[688094,688095,688096,688097,688098,688099,688100],"delay":3913.4} +{"session_id":"sess-77efdfad223d","input_length":4763,"output_length":384,"hash_ids":[688101,688102,688103,688104,688105,688106,688107,688108,688109,688110],"delay":2302.6} +{"session_id":"sess-77efdfad223d","input_length":1435,"output_length":99,"hash_ids":[688111,688112,688113],"delay":7898.6} +{"session_id":"sess-77efdfad223d","input_length":370,"output_length":103,"hash_ids":[688114],"delay":8439.2} +{"session_id":"sess-77efdfad223d","input_length":1404,"output_length":617,"hash_ids":[688115,688116,688117],"delay":786.9} +{"session_id":"sess-77efdfad223d","input_length":220,"output_length":1764,"hash_ids":[688118],"delay":2016.3} +{"session_id":"sess-77efdfad223d","input_length":3826,"output_length":113,"hash_ids":[688119,688120,688121,688122,688123,688124,688125,688126],"delay":18972.7} +{"session_id":"sess-77efdfad223d","input_length":2898,"output_length":1799,"hash_ids":[688127,688128,688129,688130,688131,688132],"delay":1431.3} +{"session_id":"sess-77efdfad223d","input_length":1205,"output_length":384,"hash_ids":[688133,688134,688135],"delay":1058.3} +{"session_id":"sess-77efdfad223d","input_length":815,"output_length":266,"hash_ids":[688136,688137],"delay":398.4} +{"session_id":"sess-77efdfad223d","input_length":9894,"output_length":262,"hash_ids":[688138,688139,688140,688141,688142,688143,688144,688145,688146,688147,688148,688149,688150,688151,688152,688153,688154,688155,688156,688157],"delay":1341.6} +{"session_id":"sess-77efdfad223d","input_length":266,"output_length":1015,"hash_ids":[688158],"delay":300.3} +{"session_id":"sess-77efdfad223d","input_length":687,"output_length":279,"hash_ids":[688159,688160],"delay":3406.5} +{"session_id":"sess-77efdfad223d","input_length":1179,"output_length":102,"hash_ids":[688161,688162,688163],"delay":9911.6} +{"session_id":"sess-77efdfad223d","input_length":2625,"output_length":186,"hash_ids":[688164,688165,688166,688167,688168,688169],"delay":741.1} +{"session_id":"sess-77efdfad223d","input_length":483,"output_length":700,"hash_ids":[688170],"delay":1482.0} +{"session_id":"sess-77efdfad223d","input_length":8615,"output_length":862,"hash_ids":[688171,688172,688173,688174,688175,688176,688177,688178,688179,688180,688181,688182,688183,688184,688185,688186,688187],"delay":3654.2} +{"session_id":"sess-77efdfad223d","input_length":6314,"output_length":233,"hash_ids":[688188,688189,688190,688191,688192,688193,688194,688195,688196,688197,688198,688199,688200],"delay":167.6} +{"session_id":"sess-708d9eedca1b","input_length":57015,"output_length":51,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,692063,692064,692065,692066,692067,692068,692069,692070,692071],"timestamp":0.0,"group_id":3} +{"session_id":"sess-708d9eedca1b","input_length":116,"output_length":527,"hash_ids":[692072],"delay":5614.3} +{"session_id":"sess-708d9eedca1b","input_length":2477,"output_length":196,"hash_ids":[692073,692074,692075,692076,692077],"delay":37498.0} +{"session_id":"sess-708d9eedca1b","input_length":3044,"output_length":1594,"hash_ids":[692078,692079,692080,692081,692082,692083],"delay":3533.7} +{"session_id":"sess-708d9eedca1b","input_length":1523,"output_length":417,"hash_ids":[692084,692085,692086],"delay":577.9} +{"session_id":"sess-708d9eedca1b","input_length":3740,"output_length":106,"hash_ids":[692087,692088,692089,692090,692091,692092,692093,692094],"delay":1488.2} +{"session_id":"sess-708d9eedca1b","input_length":955,"output_length":177,"hash_ids":[692095,692096],"delay":237.4} +{"session_id":"sess-708d9eedca1b","input_length":2263,"output_length":404,"hash_ids":[692097,692098,692099,692100,692101],"delay":9149.3} +{"session_id":"sess-708d9eedca1b","input_length":4495,"output_length":125,"hash_ids":[692102,692103,692104,692105,692106,692107,692108,692109,692110],"delay":8988.9} +{"session_id":"sess-708d9eedca1b","input_length":3471,"output_length":176,"hash_ids":[692111,692112,692113,692114,692115,692116,692117],"delay":605.2} +{"session_id":"sess-708d9eedca1b","input_length":7040,"output_length":790,"hash_ids":[692118,692119,692120,692121,692122,692123,692124,692125,692126,692127,692128,692129,692130,692131],"delay":374.6} +{"session_id":"sess-708d9eedca1b","input_length":679,"output_length":140,"hash_ids":[692132,692133],"delay":494.5} +{"session_id":"sess-708d9eedca1b","input_length":1514,"output_length":1051,"hash_ids":[692134,692135,692136],"delay":5272.7} +{"session_id":"sess-708d9eedca1b","input_length":130,"output_length":146,"hash_ids":[692137],"delay":696.5} +{"session_id":"sess-708d9eedca1b","input_length":5016,"output_length":200,"hash_ids":[692138,692139,692140,692141,692142,692143,692144,692145,692146,692147],"delay":1077.0} +{"session_id":"sess-708d9eedca1b","input_length":2457,"output_length":498,"hash_ids":[692148,692149,692150,692151,692152],"delay":269.9} +{"session_id":"sess-708d9eedca1b","input_length":4381,"output_length":453,"hash_ids":[692153,692154,692155,692156,692157,692158,692159,692160,692161],"delay":198.2} +{"session_id":"sess-708d9eedca1b","input_length":355,"output_length":218,"hash_ids":[692162],"delay":5024.7} +{"session_id":"sess-708d9eedca1b","input_length":972,"output_length":296,"hash_ids":[692163,692164],"delay":341.6} +{"session_id":"sess-708d9eedca1b","input_length":511,"output_length":1224,"hash_ids":[692165],"delay":7283.4} +{"session_id":"sess-708d9eedca1b","input_length":693,"output_length":306,"hash_ids":[692166,692167],"delay":431.7} +{"session_id":"sess-708d9eedca1b","input_length":961,"output_length":208,"hash_ids":[692168,692169],"delay":464.7} +{"session_id":"sess-708d9eedca1b","input_length":2573,"output_length":297,"hash_ids":[692170,692171,692172,692173,692174,692175],"delay":553.0} +{"session_id":"sess-708d9eedca1b","input_length":2872,"output_length":248,"hash_ids":[692176,692177,692178,692179,692180,692181],"delay":435.1} +{"session_id":"sess-708d9eedca1b","input_length":1039,"output_length":692,"hash_ids":[692182,692183,692184],"delay":6499.4} +{"session_id":"sess-708d9eedca1b","input_length":219,"output_length":68,"hash_ids":[692185],"delay":294.3} +{"session_id":"sess-708d9eedca1b","input_length":825,"output_length":627,"hash_ids":[692186,692187],"delay":3574.0} +{"session_id":"sess-708d9eedca1b","input_length":5096,"output_length":46,"hash_ids":[692188,692189,692190,692191,692192,692193,692194,692195,692196,692197],"delay":440.5} +{"session_id":"sess-708d9eedca1b","input_length":670,"output_length":341,"hash_ids":[692198,692199],"delay":242.2} +{"session_id":"sess-ac694bfa47a0","input_length":53289,"output_length":924,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,696063,696064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ac694bfa47a0","input_length":399,"output_length":785,"hash_ids":[696065],"delay":10719.0} +{"session_id":"sess-ac694bfa47a0","input_length":6363,"output_length":161,"hash_ids":[696066,696067,696068,696069,696070,696071,696072,696073,696074,696075,696076,696077,696078],"delay":42471.3} +{"session_id":"sess-ac694bfa47a0","input_length":9155,"output_length":236,"hash_ids":[696079,696080,696081,696082,696083,696084,696085,696086,696087,696088,696089,696090,696091,696092,696093,696094,696095,696096],"delay":4365.7} +{"session_id":"sess-ac694bfa47a0","input_length":267,"output_length":497,"hash_ids":[696097],"delay":64045.9} +{"session_id":"sess-ac694bfa47a0","input_length":1641,"output_length":246,"hash_ids":[696098,696099,696100,696101],"delay":6382.3} +{"session_id":"sess-ac694bfa47a0","input_length":96,"output_length":106,"hash_ids":[696102],"delay":2145.9} +{"session_id":"sess-ac694bfa47a0","input_length":489,"output_length":97,"hash_ids":[696103],"delay":1148.0} +{"session_id":"sess-ac694bfa47a0","input_length":632,"output_length":172,"hash_ids":[696104,696105],"delay":603.8} +{"session_id":"sess-71bffb047384","input_length":53831,"output_length":263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,700063,700064,700065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-71bffb047384","input_length":1178,"output_length":238,"hash_ids":[700066,700067,700068],"delay":370.3} +{"session_id":"sess-71bffb047384","input_length":413,"output_length":403,"hash_ids":[700069],"delay":26946.1} +{"session_id":"sess-71bffb047384","input_length":5516,"output_length":317,"hash_ids":[700070,700071,700072,700073,700074,700075,700076,700077,700078,700079,700080],"delay":1563.7} +{"session_id":"sess-71bffb047384","input_length":9640,"output_length":148,"hash_ids":[700081,700082,700083,700084,700085,700086,700087,700088,700089,700090,700091,700092,700093,700094,700095,700096,700097,700098,700099],"delay":858.0} +{"session_id":"sess-71bffb047384","input_length":3930,"output_length":169,"hash_ids":[700100,700101,700102,700103,700104,700105,700106,700107],"delay":13019.6} +{"session_id":"sess-71bffb047384","input_length":632,"output_length":766,"hash_ids":[700108,700109],"delay":961.6} +{"session_id":"sess-71bffb047384","input_length":3187,"output_length":452,"hash_ids":[700110,700111,700112,700113,700114,700115,700116],"delay":1758.6} +{"session_id":"sess-71bffb047384","input_length":604,"output_length":1596,"hash_ids":[700117,700118],"delay":5901.3} +{"session_id":"sess-71bffb047384","input_length":6366,"output_length":1286,"hash_ids":[700119,700120,700121,700122,700123,700124,700125,700126,700127,700128,700129,700130,700131],"delay":3208.7} +{"session_id":"sess-71bffb047384","input_length":3588,"output_length":583,"hash_ids":[700132,700133,700134,700135,700136,700137,700138,700139],"delay":10218.2} +{"session_id":"sess-71bffb047384","input_length":1260,"output_length":41,"hash_ids":[700140,700141,700142],"delay":470.0} +{"session_id":"sess-71bffb047384","input_length":7876,"output_length":610,"hash_ids":[700143,700144,700145,700146,700147,700148,700149,700150,700151,700152,700153,700154,700155,700156,700157,700158],"delay":146.9} +{"session_id":"sess-71bffb047384","input_length":5328,"output_length":61,"hash_ids":[700159,700160,700161,700162,700163,700164,700165,700166,700167,700168,700169],"delay":10343.6} +{"session_id":"sess-26e959cc9586","input_length":58950,"output_length":365,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,704063,704064,704065,704066,704067,704068,704069,704070,704071,704072,704073,704074,704075],"timestamp":0.0,"group_id":8} +{"session_id":"sess-26e959cc9586","input_length":4324,"output_length":331,"hash_ids":[704076,704077,704078,704079,704080,704081,704082,704083,704084],"delay":43355.0} +{"session_id":"sess-26e959cc9586","input_length":8636,"output_length":962,"hash_ids":[704085,704086,704087,704088,704089,704090,704091,704092,704093,704094,704095,704096,704097,704098,704099,704100,704101],"delay":1190.5} +{"session_id":"sess-26e959cc9586","input_length":1636,"output_length":830,"hash_ids":[704102,704103,704104,704105],"delay":9214.4} +{"session_id":"sess-26e959cc9586","input_length":1934,"output_length":63,"hash_ids":[704106,704107,704108,704109],"delay":3300.6} +{"session_id":"sess-26e959cc9586","input_length":5419,"output_length":749,"hash_ids":[704110,704111,704112,704113,704114,704115,704116,704117,704118,704119,704120],"delay":1559.9} +{"session_id":"sess-26e959cc9586","input_length":820,"output_length":759,"hash_ids":[704121,704122],"delay":7888.0} +{"session_id":"sess-26e959cc9586","input_length":2505,"output_length":279,"hash_ids":[704123,704124,704125,704126,704127],"delay":490.2} +{"session_id":"sess-26e959cc9586","input_length":3753,"output_length":645,"hash_ids":[704128,704129,704130,704131,704132,704133,704134,704135],"delay":579.0} +{"session_id":"sess-26e959cc9586","input_length":1947,"output_length":609,"hash_ids":[704136,704137,704138,704139],"delay":404.7} +{"session_id":"sess-26e959cc9586","input_length":2915,"output_length":623,"hash_ids":[704140,704141,704142,704143,704144,704145],"delay":96.9} +{"session_id":"sess-26e959cc9586","input_length":3252,"output_length":259,"hash_ids":[704146,704147,704148,704149,704150,704151,704152],"delay":26293.5} +{"session_id":"sess-26e959cc9586","input_length":473,"output_length":122,"hash_ids":[704153],"delay":1144.1} +{"session_id":"sess-26e959cc9586","input_length":4202,"output_length":913,"hash_ids":[704154,704155,704156,704157,704158,704159,704160,704161,704162],"delay":933.2} +{"session_id":"sess-26e959cc9586","input_length":1650,"output_length":110,"hash_ids":[704163,704164,704165,704166],"delay":1908.1} +{"session_id":"sess-26e959cc9586","input_length":8934,"output_length":288,"hash_ids":[704167,704168,704169,704170,704171,704172,704173,704174,704175,704176,704177,704178,704179,704180,704181,704182,704183,704184],"delay":598.0} +{"session_id":"sess-26e959cc9586","input_length":3008,"output_length":430,"hash_ids":[704185,704186,704187,704188,704189,704190],"delay":294.6} +{"session_id":"sess-26e959cc9586","input_length":5566,"output_length":193,"hash_ids":[704191,704192,704193,704194,704195,704196,704197,704198,704199,704200,704201],"delay":2813.8} +{"session_id":"sess-26e959cc9586","input_length":592,"output_length":307,"hash_ids":[704202,704203],"delay":516.8} +{"session_id":"sess-26e959cc9586","input_length":265,"output_length":2221,"hash_ids":[704204],"delay":247.4} +{"session_id":"sess-0801f3d7c284","input_length":52302,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902],"timestamp":0.0,"group_id":4} +{"session_id":"sess-0801f3d7c284","input_length":3292,"output_length":157,"hash_ids":[704205,704206,704207,704208,704209,704210,704211],"delay":3220.0} +{"session_id":"sess-0801f3d7c284","input_length":1507,"output_length":287,"hash_ids":[704212,704213,704214],"delay":4428.3} +{"session_id":"sess-0801f3d7c284","input_length":2018,"output_length":449,"hash_ids":[704215,704216,704217,704218],"delay":4161.7} +{"session_id":"sess-0801f3d7c284","input_length":9618,"output_length":1570,"hash_ids":[704219,704220,704221,704222,704223,704224,704225,704226,704227,704228,704229,704230,704231,704232,704233,704234,704235,704236,704237],"delay":5701.5} +{"session_id":"sess-0801f3d7c284","input_length":1980,"output_length":461,"hash_ids":[704238,704239,704240,704241],"delay":643.8} +{"session_id":"sess-0801f3d7c284","input_length":1902,"output_length":235,"hash_ids":[704242,704243,704244,704245],"delay":835.1} +{"session_id":"sess-0801f3d7c284","input_length":2996,"output_length":71,"hash_ids":[704246,704247,704248,704249,704250,704251],"delay":624.7} +{"session_id":"sess-0801f3d7c284","input_length":2670,"output_length":356,"hash_ids":[704252,704253,704254,704255,704256,704257],"delay":1207.0} +{"session_id":"sess-0801f3d7c284","input_length":1319,"output_length":411,"hash_ids":[704258,704259,704260],"delay":454.8} +{"session_id":"sess-0801f3d7c284","input_length":7491,"output_length":379,"hash_ids":[704261,704262,704263,704264,704265,704266,704267,704268,704269,704270,704271,704272,704273,704274,704275],"delay":882.4} +{"session_id":"sess-0801f3d7c284","input_length":184,"output_length":739,"hash_ids":[704276],"delay":9034.4} +{"session_id":"sess-0801f3d7c284","input_length":2634,"output_length":336,"hash_ids":[704277,704278,704279,704280,704281,704282],"delay":438.0} +{"session_id":"sess-0801f3d7c284","input_length":8087,"output_length":252,"hash_ids":[704283,704284,704285,704286,704287,704288,704289,704290,704291,704292,704293,704294,704295,704296,704297,704298],"delay":21501.4} +{"session_id":"sess-0801f3d7c284","input_length":2036,"output_length":256,"hash_ids":[704299,704300,704301,704302],"delay":418.8} +{"session_id":"sess-0801f3d7c284","input_length":1220,"output_length":273,"hash_ids":[704303,704304,704305],"delay":894.6} +{"session_id":"sess-0801f3d7c284","input_length":7526,"output_length":454,"hash_ids":[704306,704307,704308,704309,704310,704311,704312,704313,704314,704315,704316,704317,704318,704319,704320],"delay":16201.6} +{"session_id":"sess-0801f3d7c284","input_length":1001,"output_length":221,"hash_ids":[704321,704322],"delay":431.1} +{"session_id":"sess-0801f3d7c284","input_length":488,"output_length":1015,"hash_ids":[704323],"delay":392.9} +{"session_id":"sess-0801f3d7c284","input_length":2520,"output_length":500,"hash_ids":[704324,704325,704326,704327,704328],"delay":6379.4} +{"session_id":"sess-0801f3d7c284","input_length":7651,"output_length":590,"hash_ids":[704329,704330,704331,704332,704333,704334,704335,704336,704337,704338,704339,704340,704341,704342,704343],"delay":767.0} +{"session_id":"sess-f403eed2a4c3","input_length":78783,"output_length":438,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,712063,712064,712065,712066,712067,712068,712069,712070,712071,712072,712073,712074,712075,712076,712077,712078,712079,712080,712081,712082,712083,712084,712085,712086,712087,712088,712089,712090,712091,712092,712093,712094,712095,712096,712097,712098,712099,712100,712101,712102,712103,712104,712105,712106,712107,712108,712109,712110,712111,712112,712113],"timestamp":0.0,"group_id":41} +{"session_id":"sess-f403eed2a4c3","input_length":1830,"output_length":321,"hash_ids":[712114,712115,712116,712117],"delay":749.9} +{"session_id":"sess-f403eed2a4c3","input_length":3779,"output_length":1046,"hash_ids":[712118,712119,712120,712121,712122,712123,712124,712125],"delay":159.1} +{"session_id":"sess-f403eed2a4c3","input_length":6655,"output_length":305,"hash_ids":[712126,712127,712128,712129,712130,712131,712132,712133,712134,712135,712136,712137,712138],"delay":2597.3} +{"session_id":"sess-f403eed2a4c3","input_length":399,"output_length":134,"hash_ids":[712139],"delay":18540.7} +{"session_id":"sess-f403eed2a4c3","input_length":566,"output_length":204,"hash_ids":[712140,712141],"delay":580.9} +{"session_id":"sess-f403eed2a4c3","input_length":5366,"output_length":394,"hash_ids":[712142,712143,712144,712145,712146,712147,712148,712149,712150,712151,712152],"delay":4446.3} +{"session_id":"sess-f403eed2a4c3","input_length":1412,"output_length":139,"hash_ids":[712153,712154,712155],"delay":8482.6} +{"session_id":"sess-f403eed2a4c3","input_length":169,"output_length":766,"hash_ids":[712156],"delay":5554.9} +{"session_id":"sess-f403eed2a4c3","input_length":808,"output_length":152,"hash_ids":[712157,712158],"delay":610.0} +{"session_id":"sess-f403eed2a4c3","input_length":5098,"output_length":349,"hash_ids":[712159,712160,712161,712162,712163,712164,712165,712166,712167,712168],"delay":482.7} +{"session_id":"sess-f403eed2a4c3","input_length":3906,"output_length":155,"hash_ids":[712169,712170,712171,712172,712173,712174,712175,712176],"delay":529.2} +{"session_id":"sess-f403eed2a4c3","input_length":2260,"output_length":283,"hash_ids":[712177,712178,712179,712180,712181],"delay":6617.5} +{"session_id":"sess-3bbcd8ccb73c","input_length":62512,"output_length":2168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,716063,716064,716065,716066,716067,716068,716069,716070,716071,716072,716073,716074,716075,716076,716077,716078,716079,716080,716081,716082],"timestamp":0.0,"group_id":18} +{"session_id":"sess-3bbcd8ccb73c","input_length":1295,"output_length":1204,"hash_ids":[716083,716084,716085],"delay":981.6} +{"session_id":"sess-3bbcd8ccb73c","input_length":4050,"output_length":95,"hash_ids":[716086,716087,716088,716089,716090,716091,716092,716093],"delay":1233.8} +{"session_id":"sess-3bbcd8ccb73c","input_length":2413,"output_length":131,"hash_ids":[716094,716095,716096,716097,716098],"delay":8098.9} +{"session_id":"sess-3bbcd8ccb73c","input_length":575,"output_length":984,"hash_ids":[716099,716100],"delay":23191.0} +{"session_id":"sess-3bbcd8ccb73c","input_length":3072,"output_length":139,"hash_ids":[716101,716102,716103,716104,716105,716106],"delay":6664.3} +{"session_id":"sess-3bbcd8ccb73c","input_length":1020,"output_length":1497,"hash_ids":[716107,716108],"delay":3291.9} +{"session_id":"sess-3bbcd8ccb73c","input_length":1621,"output_length":243,"hash_ids":[716109,716110,716111,716112],"delay":726.7} +{"session_id":"sess-3bbcd8ccb73c","input_length":389,"output_length":63,"hash_ids":[716113],"delay":287.7} +{"session_id":"sess-3bbcd8ccb73c","input_length":631,"output_length":385,"hash_ids":[716114,716115],"delay":360.1} +{"session_id":"sess-3bbcd8ccb73c","input_length":8772,"output_length":461,"hash_ids":[716116,716117,716118,716119,716120,716121,716122,716123,716124,716125,716126,716127,716128,716129,716130,716131,716132,716133],"delay":11718.8} +{"session_id":"sess-3bbcd8ccb73c","input_length":964,"output_length":1118,"hash_ids":[716134,716135],"delay":1122.1} +{"session_id":"sess-3bbcd8ccb73c","input_length":904,"output_length":84,"hash_ids":[716136,716137],"delay":159.0} +{"session_id":"sess-3bbcd8ccb73c","input_length":2548,"output_length":57,"hash_ids":[716138,716139,716140,716141,716142],"delay":3089.7} +{"session_id":"sess-3bbcd8ccb73c","input_length":3082,"output_length":348,"hash_ids":[716143,716144,716145,716146,716147,716148,716149],"delay":10584.9} +{"session_id":"sess-3bbcd8ccb73c","input_length":1618,"output_length":1176,"hash_ids":[716150,716151,716152,716153],"delay":3295.4} +{"session_id":"sess-3bbcd8ccb73c","input_length":1068,"output_length":414,"hash_ids":[716154,716155,716156],"delay":5345.4} +{"session_id":"sess-3bbcd8ccb73c","input_length":2547,"output_length":216,"hash_ids":[716157,716158,716159,716160,716161],"delay":14512.3} +{"session_id":"sess-3bbcd8ccb73c","input_length":3242,"output_length":723,"hash_ids":[716162,716163,716164,716165,716166,716167,716168],"delay":21728.1} +{"session_id":"sess-3bbcd8ccb73c","input_length":691,"output_length":214,"hash_ids":[716169,716170],"delay":1496.0} +{"session_id":"sess-3bbcd8ccb73c","input_length":398,"output_length":261,"hash_ids":[716171],"delay":23907.2} +{"session_id":"sess-8cc78009fe3c","input_length":80250,"output_length":348,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,720063,720064,720065,720066,720067,720068,720069,720070,720071,720072,720073,720074,720075,720076,720077,720078,720079,720080,720081,720082,720083,720084,720085,720086,720087,720088,720089,720090,720091,720092,720093,720094,720095,720096,720097,720098,720099,720100,720101,720102,720103,720104,720105,720106,720107,720108,720109,720110,720111,720112,720113,720114,720115,720116],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8cc78009fe3c","input_length":3105,"output_length":44,"hash_ids":[720117,720118,720119,720120,720121,720122,720123],"delay":791.6} +{"session_id":"sess-8cc78009fe3c","input_length":670,"output_length":677,"hash_ids":[720124,720125],"delay":1159.0} +{"session_id":"sess-8cc78009fe3c","input_length":3361,"output_length":119,"hash_ids":[720126,720127,720128,720129,720130,720131,720132],"delay":210.4} +{"session_id":"sess-8cc78009fe3c","input_length":326,"output_length":292,"hash_ids":[720133],"delay":2218.5} +{"session_id":"sess-8cc78009fe3c","input_length":2730,"output_length":394,"hash_ids":[720134,720135,720136,720137,720138,720139],"delay":32862.8} +{"session_id":"sess-7919ef7c7424","input_length":53419,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,724063,724064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7919ef7c7424","input_length":5069,"output_length":199,"hash_ids":[724065,724066,724067,724068,724069,724070,724071,724072,724073,724074],"delay":1983.6} +{"session_id":"sess-7919ef7c7424","input_length":8709,"output_length":650,"hash_ids":[724075,724076,724077,724078,724079,724080,724081,724082,724083,724084,724085,724086,724087,724088,724089,724090,724091,724092],"delay":1134.3} +{"session_id":"sess-7919ef7c7424","input_length":877,"output_length":168,"hash_ids":[724093,724094],"delay":3362.9} +{"session_id":"sess-7919ef7c7424","input_length":1913,"output_length":309,"hash_ids":[724095,724096,724097,724098],"delay":6830.7} +{"session_id":"sess-7919ef7c7424","input_length":6699,"output_length":501,"hash_ids":[724099,724100,724101,724102,724103,724104,724105,724106,724107,724108,724109,724110,724111,724112],"delay":391.1} +{"session_id":"sess-7919ef7c7424","input_length":1034,"output_length":1046,"hash_ids":[724113,724114,724115],"delay":717.0} +{"session_id":"sess-7919ef7c7424","input_length":364,"output_length":1117,"hash_ids":[724116],"delay":526.5} +{"session_id":"sess-7919ef7c7424","input_length":901,"output_length":2405,"hash_ids":[724117,724118],"delay":8291.7} +{"session_id":"sess-7919ef7c7424","input_length":3422,"output_length":79,"hash_ids":[724119,724120,724121,724122,724123,724124,724125],"delay":45070.0} +{"session_id":"sess-7919ef7c7424","input_length":2607,"output_length":316,"hash_ids":[724126,724127,724128,724129,724130,724131],"delay":374.3} +{"session_id":"sess-7919ef7c7424","input_length":501,"output_length":2010,"hash_ids":[724132],"delay":1610.1} +{"session_id":"sess-7919ef7c7424","input_length":1162,"output_length":305,"hash_ids":[724133,724134,724135],"delay":202.8} +{"session_id":"sess-7919ef7c7424","input_length":430,"output_length":273,"hash_ids":[724136],"delay":497.5} +{"session_id":"sess-7919ef7c7424","input_length":1497,"output_length":124,"hash_ids":[724137,724138,724139],"delay":23018.8} +{"session_id":"sess-7919ef7c7424","input_length":5939,"output_length":223,"hash_ids":[724140,724141,724142,724143,724144,724145,724146,724147,724148,724149,724150,724151],"delay":1509.7} +{"session_id":"sess-7919ef7c7424","input_length":5604,"output_length":559,"hash_ids":[724152,724153,724154,724155,724156,724157,724158,724159,724160,724161,724162],"delay":836.6} +{"session_id":"sess-7919ef7c7424","input_length":3829,"output_length":436,"hash_ids":[724163,724164,724165,724166,724167,724168,724169,724170],"delay":17580.6} +{"session_id":"sess-7919ef7c7424","input_length":491,"output_length":108,"hash_ids":[724171],"delay":527.2} +{"session_id":"sess-13f3e9d57e93","input_length":53969,"output_length":109,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,728063,728064,728065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-13f3e9d57e93","input_length":7631,"output_length":391,"hash_ids":[728066,728067,728068,728069,728070,728071,728072,728073,728074,728075,728076,728077,728078,728079,728080],"delay":3332.5} +{"session_id":"sess-13f3e9d57e93","input_length":875,"output_length":328,"hash_ids":[728081,728082],"delay":5639.1} +{"session_id":"sess-13f3e9d57e93","input_length":404,"output_length":553,"hash_ids":[728083],"delay":1581.4} +{"session_id":"sess-13f3e9d57e93","input_length":1540,"output_length":51,"hash_ids":[728084,728085,728086,728087],"delay":15756.2} +{"session_id":"sess-13f3e9d57e93","input_length":3357,"output_length":1088,"hash_ids":[728088,728089,728090,728091,728092,728093,728094],"delay":2924.8} +{"session_id":"sess-13f3e9d57e93","input_length":3615,"output_length":215,"hash_ids":[728095,728096,728097,728098,728099,728100,728101,728102],"delay":22550.3} +{"session_id":"sess-13f3e9d57e93","input_length":1214,"output_length":333,"hash_ids":[728103,728104,728105],"delay":376.9} +{"session_id":"sess-13f3e9d57e93","input_length":689,"output_length":270,"hash_ids":[728106,728107],"delay":10526.6} +{"session_id":"sess-13f3e9d57e93","input_length":1073,"output_length":224,"hash_ids":[728108,728109,728110],"delay":826.3} +{"session_id":"sess-13f3e9d57e93","input_length":8008,"output_length":527,"hash_ids":[728111,728112,728113,728114,728115,728116,728117,728118,728119,728120,728121,728122,728123,728124,728125,728126],"delay":1316.3} +{"session_id":"sess-13f3e9d57e93","input_length":929,"output_length":1403,"hash_ids":[728127,728128],"delay":26477.7} +{"session_id":"sess-13f3e9d57e93","input_length":7260,"output_length":512,"hash_ids":[728129,728130,728131,728132,728133,728134,728135,728136,728137,728138,728139,728140,728141,728142,728143],"delay":1198.7} +{"session_id":"sess-13f3e9d57e93","input_length":700,"output_length":257,"hash_ids":[728144,728145],"delay":749.1} +{"session_id":"sess-13f3e9d57e93","input_length":400,"output_length":211,"hash_ids":[728146],"delay":14781.1} +{"session_id":"sess-13f3e9d57e93","input_length":742,"output_length":158,"hash_ids":[728147,728148],"delay":360.2} +{"session_id":"sess-13f3e9d57e93","input_length":6467,"output_length":107,"hash_ids":[728149,728150,728151,728152,728153,728154,728155,728156,728157,728158,728159,728160,728161],"delay":16353.3} +{"session_id":"sess-13f3e9d57e93","input_length":795,"output_length":67,"hash_ids":[728162,728163],"delay":1435.9} +{"session_id":"sess-13f3e9d57e93","input_length":2548,"output_length":118,"hash_ids":[728164,728165,728166,728167,728168],"delay":367.5} +{"session_id":"sess-13f3e9d57e93","input_length":987,"output_length":402,"hash_ids":[728169,728170],"delay":3856.3} +{"session_id":"sess-13f3e9d57e93","input_length":1848,"output_length":121,"hash_ids":[728171,728172,728173,728174],"delay":256.2} +{"session_id":"sess-13f3e9d57e93","input_length":380,"output_length":121,"hash_ids":[728175],"delay":437.5} +{"session_id":"sess-13f3e9d57e93","input_length":244,"output_length":88,"hash_ids":[728176],"delay":604.9} +{"session_id":"sess-13f3e9d57e93","input_length":2429,"output_length":320,"hash_ids":[728177,728178,728179,728180,728181],"delay":1555.6} +{"session_id":"sess-13f3e9d57e93","input_length":2544,"output_length":142,"hash_ids":[728182,728183,728184,728185,728186],"delay":769.5} +{"session_id":"sess-13f3e9d57e93","input_length":3557,"output_length":87,"hash_ids":[728187,728188,728189,728190,728191,728192,728193],"delay":983.1} +{"session_id":"sess-13f3e9d57e93","input_length":450,"output_length":759,"hash_ids":[728194],"delay":851.7} +{"session_id":"sess-13f3e9d57e93","input_length":1786,"output_length":661,"hash_ids":[728195,728196,728197,728198],"delay":487.4} +{"session_id":"sess-b7497ec2e3da","input_length":60649,"output_length":398,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,732063,732064,732065,732066,732067,732068,732069,732070,732071,732072,732073,732074,732075,732076,732077,732078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b7497ec2e3da","input_length":1143,"output_length":338,"hash_ids":[732079,732080,732081],"delay":301.7} +{"session_id":"sess-b7497ec2e3da","input_length":1553,"output_length":158,"hash_ids":[732082,732083,732084,732085],"delay":41767.9} +{"session_id":"sess-b7497ec2e3da","input_length":2504,"output_length":193,"hash_ids":[732086,732087,732088,732089,732090],"delay":1909.9} +{"session_id":"sess-b7497ec2e3da","input_length":781,"output_length":62,"hash_ids":[732091,732092],"delay":1246.9} +{"session_id":"sess-b7497ec2e3da","input_length":658,"output_length":248,"hash_ids":[732093,732094],"delay":5778.7} +{"session_id":"sess-b7497ec2e3da","input_length":2595,"output_length":147,"hash_ids":[732095,732096,732097,732098,732099,732100],"delay":1053.6} +{"session_id":"sess-b7497ec2e3da","input_length":1721,"output_length":1036,"hash_ids":[732101,732102,732103,732104],"delay":928.9} +{"session_id":"sess-b7497ec2e3da","input_length":1839,"output_length":33,"hash_ids":[732105,732106,732107,732108],"delay":1744.7} +{"session_id":"sess-b7497ec2e3da","input_length":1730,"output_length":74,"hash_ids":[732109,732110,732111,732112],"delay":29833.1} +{"session_id":"sess-b7497ec2e3da","input_length":812,"output_length":420,"hash_ids":[732113,732114],"delay":127.0} +{"session_id":"sess-b7497ec2e3da","input_length":567,"output_length":251,"hash_ids":[732115,732116],"delay":292.9} +{"session_id":"sess-b7497ec2e3da","input_length":1202,"output_length":842,"hash_ids":[732117,732118,732119],"delay":2657.4} +{"session_id":"sess-b7497ec2e3da","input_length":1967,"output_length":246,"hash_ids":[732120,732121,732122,732123],"delay":2632.2} +{"session_id":"sess-b7497ec2e3da","input_length":1271,"output_length":186,"hash_ids":[732124,732125,732126],"delay":1816.4} +{"session_id":"sess-b7497ec2e3da","input_length":4001,"output_length":282,"hash_ids":[732127,732128,732129,732130,732131,732132,732133,732134],"delay":15824.0} +{"session_id":"sess-b7497ec2e3da","input_length":556,"output_length":231,"hash_ids":[732135,732136],"delay":12463.2} +{"session_id":"sess-b7497ec2e3da","input_length":562,"output_length":396,"hash_ids":[732137,732138],"delay":341.1} +{"session_id":"sess-b7497ec2e3da","input_length":1120,"output_length":220,"hash_ids":[732139,732140,732141],"delay":793.6} +{"session_id":"sess-b7497ec2e3da","input_length":4162,"output_length":481,"hash_ids":[732142,732143,732144,732145,732146,732147,732148,732149,732150],"delay":13513.8} +{"session_id":"sess-b7497ec2e3da","input_length":288,"output_length":32,"hash_ids":[732151],"delay":308.1} +{"session_id":"sess-b7497ec2e3da","input_length":156,"output_length":1304,"hash_ids":[732152],"delay":372.3} +{"session_id":"sess-b7497ec2e3da","input_length":430,"output_length":210,"hash_ids":[732153],"delay":1524.6} +{"session_id":"sess-b7497ec2e3da","input_length":440,"output_length":196,"hash_ids":[732154],"delay":154.7} +{"session_id":"sess-b7497ec2e3da","input_length":1209,"output_length":446,"hash_ids":[732155,732156,732157],"delay":2103.0} +{"session_id":"sess-b7497ec2e3da","input_length":2112,"output_length":788,"hash_ids":[732158,732159,732160,732161,732162],"delay":7758.3} +{"session_id":"sess-b7497ec2e3da","input_length":7080,"output_length":322,"hash_ids":[732163,732164,732165,732166,732167,732168,732169,732170,732171,732172,732173,732174,732175,732176],"delay":415.4} +{"session_id":"sess-b7497ec2e3da","input_length":1064,"output_length":308,"hash_ids":[732177,732178,732179],"delay":37483.9} +{"session_id":"sess-b7497ec2e3da","input_length":2024,"output_length":736,"hash_ids":[732180,732181,732182,732183],"delay":2833.4} +{"session_id":"sess-b7497ec2e3da","input_length":3727,"output_length":627,"hash_ids":[732184,732185,732186,732187,732188,732189,732190,732191],"delay":1473.0} +{"session_id":"sess-b7497ec2e3da","input_length":742,"output_length":103,"hash_ids":[732192,732193],"delay":308.5} +{"session_id":"sess-b7497ec2e3da","input_length":1958,"output_length":395,"hash_ids":[732194,732195,732196,732197],"delay":609.9} +{"session_id":"sess-b7497ec2e3da","input_length":870,"output_length":713,"hash_ids":[732198,732199],"delay":4231.3} +{"session_id":"sess-b7497ec2e3da","input_length":2169,"output_length":229,"hash_ids":[732200,732201,732202,732203,732204],"delay":3008.3} +{"session_id":"sess-7d2c01b96164","input_length":54947,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,736063,736064,736065,736066,736067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7d2c01b96164","input_length":9019,"output_length":686,"hash_ids":[736068,736069,736070,736071,736072,736073,736074,736075,736076,736077,736078,736079,736080,736081,736082,736083,736084,736085],"delay":14959.7} +{"session_id":"sess-7d2c01b96164","input_length":8293,"output_length":836,"hash_ids":[736086,736087,736088,736089,736090,736091,736092,736093,736094,736095,736096,736097,736098,736099,736100,736101,736102],"delay":33277.5} +{"session_id":"sess-7d2c01b96164","input_length":1971,"output_length":202,"hash_ids":[736103,736104,736105,736106],"delay":2854.0} +{"session_id":"sess-7d2c01b96164","input_length":2060,"output_length":364,"hash_ids":[736107,736108,736109,736110,736111],"delay":684.4} +{"session_id":"sess-7d2c01b96164","input_length":3514,"output_length":2933,"hash_ids":[736112,736113,736114,736115,736116,736117,736118],"delay":61817.8} +{"session_id":"sess-7d2c01b96164","input_length":4596,"output_length":33,"hash_ids":[736119,736120,736121,736122,736123,736124,736125,736126,736127],"delay":1744.4} +{"session_id":"sess-7d2c01b96164","input_length":1580,"output_length":48,"hash_ids":[736128,736129,736130,736131],"delay":717.2} +{"session_id":"sess-7d2c01b96164","input_length":1018,"output_length":226,"hash_ids":[736132,736133],"delay":1162.6} +{"session_id":"sess-7d2c01b96164","input_length":1678,"output_length":73,"hash_ids":[736134,736135,736136,736137],"delay":2935.8} +{"session_id":"sess-7d2c01b96164","input_length":2744,"output_length":504,"hash_ids":[736138,736139,736140,736141,736142,736143],"delay":398.9} +{"session_id":"sess-7d2c01b96164","input_length":1668,"output_length":2041,"hash_ids":[736144,736145,736146,736147],"delay":592.8} +{"session_id":"sess-7d2c01b96164","input_length":1458,"output_length":103,"hash_ids":[736148,736149,736150],"delay":14329.5} +{"session_id":"sess-7d2c01b96164","input_length":316,"output_length":70,"hash_ids":[736151],"delay":1388.1} +{"session_id":"sess-7d2c01b96164","input_length":2580,"output_length":96,"hash_ids":[736152,736153,736154,736155,736156,736157],"delay":938.0} +{"session_id":"sess-7d2c01b96164","input_length":3839,"output_length":377,"hash_ids":[736158,736159,736160,736161,736162,736163,736164,736165],"delay":550.2} +{"session_id":"sess-7d2c01b96164","input_length":714,"output_length":429,"hash_ids":[736166,736167],"delay":10256.3} +{"session_id":"sess-7d2c01b96164","input_length":4277,"output_length":265,"hash_ids":[736168,736169,736170,736171,736172,736173,736174,736175,736176],"delay":4467.9} +{"session_id":"sess-7d2c01b96164","input_length":3991,"output_length":210,"hash_ids":[736177,736178,736179,736180,736181,736182,736183,736184],"delay":6359.5} +{"session_id":"sess-7d2c01b96164","input_length":2291,"output_length":176,"hash_ids":[736185,736186,736187,736188,736189],"delay":7248.0} +{"session_id":"sess-7d2c01b96164","input_length":1029,"output_length":543,"hash_ids":[736190,736191,736192],"delay":491.6} +{"session_id":"sess-7d2c01b96164","input_length":1881,"output_length":301,"hash_ids":[736193,736194,736195,736196],"delay":21415.5} +{"session_id":"sess-7d2c01b96164","input_length":1283,"output_length":1546,"hash_ids":[736197,736198,736199],"delay":833.5} +{"session_id":"sess-7d2c01b96164","input_length":679,"output_length":278,"hash_ids":[736200,736201],"delay":1438.6} +{"session_id":"sess-3baf8a1351f0","input_length":80545,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,740063,740064,740065,740066,740067,740068,740069,740070,740071,740072,740073,740074,740075,740076,740077,740078,740079,740080,740081,740082,740083,740084,740085,740086,740087,740088,740089,740090,740091,740092,740093,740094,740095,740096,740097,740098,740099,740100,740101,740102,740103,740104,740105,740106,740107,740108,740109,740110,740111,740112,740113,740114,740115,740116,740117],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b7dc9ecd5b00","input_length":69093,"output_length":370,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,744063,744064,744065,744066,744067,744068,744069,744070,744071,744072,744073,744074,744075,744076,744077,744078,744079,744080,744081,744082,744083,744084,744085,744086,744087,744088,744089,744090,744091,744092,744093,744094],"timestamp":0.0,"group_id":43} +{"session_id":"sess-b7dc9ecd5b00","input_length":1096,"output_length":88,"hash_ids":[744095,744096,744097],"delay":2556.9} +{"session_id":"sess-b7dc9ecd5b00","input_length":2955,"output_length":824,"hash_ids":[744098,744099,744100,744101,744102,744103],"delay":8212.4} +{"session_id":"sess-b7dc9ecd5b00","input_length":3643,"output_length":293,"hash_ids":[744104,744105,744106,744107,744108,744109,744110,744111],"delay":3401.4} +{"session_id":"sess-b7dc9ecd5b00","input_length":8382,"output_length":390,"hash_ids":[744112,744113,744114,744115,744116,744117,744118,744119,744120,744121,744122,744123,744124,744125,744126,744127,744128],"delay":493.2} +{"session_id":"sess-b7dc9ecd5b00","input_length":2796,"output_length":337,"hash_ids":[744129,744130,744131,744132,744133,744134],"delay":212.8} +{"session_id":"sess-b7dc9ecd5b00","input_length":1288,"output_length":325,"hash_ids":[744135,744136,744137],"delay":103.1} +{"session_id":"sess-b7dc9ecd5b00","input_length":609,"output_length":149,"hash_ids":[744138,744139],"delay":7869.1} +{"session_id":"sess-b7dc9ecd5b00","input_length":596,"output_length":631,"hash_ids":[744140,744141],"delay":10181.1} +{"session_id":"sess-b7dc9ecd5b00","input_length":909,"output_length":119,"hash_ids":[744142,744143],"delay":526.9} +{"session_id":"sess-b7dc9ecd5b00","input_length":6199,"output_length":220,"hash_ids":[744144,744145,744146,744147,744148,744149,744150,744151,744152,744153,744154,744155,744156],"delay":10164.4} +{"session_id":"sess-b7dc9ecd5b00","input_length":8677,"output_length":836,"hash_ids":[744157,744158,744159,744160,744161,744162,744163,744164,744165,744166,744167,744168,744169,744170,744171,744172,744173],"delay":487.9} +{"session_id":"sess-b7dc9ecd5b00","input_length":2689,"output_length":455,"hash_ids":[744174,744175,744176,744177,744178,744179],"delay":258.9} +{"session_id":"sess-b7dc9ecd5b00","input_length":8213,"output_length":335,"hash_ids":[744180,744181,744182,744183,744184,744185,744186,744187,744188,744189,744190,744191,744192,744193,744194,744195,744196],"delay":474.5} +{"session_id":"sess-b7dc9ecd5b00","input_length":748,"output_length":306,"hash_ids":[744197,744198],"delay":683.2} +{"session_id":"sess-b7dc9ecd5b00","input_length":2993,"output_length":369,"hash_ids":[744199,744200,744201,744202,744203,744204],"delay":10256.3} +{"session_id":"sess-b7dc9ecd5b00","input_length":445,"output_length":917,"hash_ids":[744205],"delay":25604.2} +{"session_id":"sess-b7dc9ecd5b00","input_length":866,"output_length":73,"hash_ids":[744206,744207],"delay":366.3} +{"session_id":"sess-b7dc9ecd5b00","input_length":520,"output_length":927,"hash_ids":[744208,744209],"delay":2703.8} +{"session_id":"sess-ec42c4e67f8f","input_length":65811,"output_length":606,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,748063,748064,748065,748066,748067,748068,748069,748070,748071,748072,748073,748074,748075,748076,748077,748078,748079,748080,748081,748082,748083,748084,748085,748086,748087,748088],"timestamp":0.0,"group_id":10} +{"session_id":"sess-ec42c4e67f8f","input_length":3739,"output_length":1401,"hash_ids":[748089,748090,748091,748092,748093,748094,748095,748096],"delay":18810.7} +{"session_id":"sess-ec42c4e67f8f","input_length":6149,"output_length":210,"hash_ids":[748097,748098,748099,748100,748101,748102,748103,748104,748105,748106,748107,748108,748109],"delay":16767.9} +{"session_id":"sess-ec42c4e67f8f","input_length":9345,"output_length":278,"hash_ids":[748110,748111,748112,748113,748114,748115,748116,748117,748118,748119,748120,748121,748122,748123,748124,748125,748126,748127,748128],"delay":1264.9} +{"session_id":"sess-e6fb643d2e57","input_length":61908,"output_length":675,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,752063,752064,752065,752066,752067,752068,752069,752070,752071,752072,752073,752074,752075,752076,752077,752078,752079,752080],"timestamp":0.0,"group_id":3} +{"session_id":"sess-e6fb643d2e57","input_length":6977,"output_length":977,"hash_ids":[752081,752082,752083,752084,752085,752086,752087,752088,752089,752090,752091,752092,752093,752094],"delay":482.1} +{"session_id":"sess-e6fb643d2e57","input_length":726,"output_length":586,"hash_ids":[752095,752096],"delay":1987.2} +{"session_id":"sess-e6fb643d2e57","input_length":729,"output_length":149,"hash_ids":[752097,752098],"delay":1651.4} +{"session_id":"sess-e6fb643d2e57","input_length":1503,"output_length":608,"hash_ids":[752099,752100,752101],"delay":40950.5} +{"session_id":"sess-0536ed93bb89","input_length":53887,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,756063,756064,756065],"timestamp":0.0,"group_id":10} +{"session_id":"sess-0536ed93bb89","input_length":466,"output_length":278,"hash_ids":[756066],"delay":1254.5} +{"session_id":"sess-0536ed93bb89","input_length":1712,"output_length":167,"hash_ids":[756067,756068,756069,756070],"delay":651.5} +{"session_id":"sess-0536ed93bb89","input_length":1891,"output_length":137,"hash_ids":[756071,756072,756073,756074],"delay":1652.6} +{"session_id":"sess-0536ed93bb89","input_length":4964,"output_length":442,"hash_ids":[756075,756076,756077,756078,756079,756080,756081,756082,756083,756084],"delay":1676.9} +{"session_id":"sess-0536ed93bb89","input_length":1284,"output_length":169,"hash_ids":[756085,756086,756087],"delay":267.6} +{"session_id":"sess-0536ed93bb89","input_length":311,"output_length":92,"hash_ids":[756088],"delay":7528.2} +{"session_id":"sess-0536ed93bb89","input_length":3838,"output_length":702,"hash_ids":[756089,756090,756091,756092,756093,756094,756095,756096],"delay":915.3} +{"session_id":"sess-0536ed93bb89","input_length":3394,"output_length":1765,"hash_ids":[756097,756098,756099,756100,756101,756102,756103],"delay":337.0} +{"session_id":"sess-0536ed93bb89","input_length":1418,"output_length":118,"hash_ids":[756104,756105,756106],"delay":2039.8} +{"session_id":"sess-0536ed93bb89","input_length":1733,"output_length":922,"hash_ids":[756107,756108,756109,756110],"delay":7907.3} +{"session_id":"sess-0536ed93bb89","input_length":2611,"output_length":160,"hash_ids":[756111,756112,756113,756114,756115,756116],"delay":5008.9} +{"session_id":"sess-0536ed93bb89","input_length":2573,"output_length":272,"hash_ids":[756117,756118,756119,756120,756121,756122],"delay":1023.8} +{"session_id":"sess-0536ed93bb89","input_length":463,"output_length":1973,"hash_ids":[756123],"delay":2080.3} +{"session_id":"sess-0536ed93bb89","input_length":781,"output_length":366,"hash_ids":[756124,756125],"delay":675.8} +{"session_id":"sess-0536ed93bb89","input_length":1075,"output_length":1079,"hash_ids":[756126,756127,756128],"delay":321.8} +{"session_id":"sess-0536ed93bb89","input_length":1457,"output_length":452,"hash_ids":[756129,756130,756131],"delay":21076.9} +{"session_id":"sess-0536ed93bb89","input_length":1407,"output_length":127,"hash_ids":[756132,756133,756134],"delay":1505.4} +{"session_id":"sess-0536ed93bb89","input_length":445,"output_length":115,"hash_ids":[756135],"delay":45982.3} +{"session_id":"sess-0536ed93bb89","input_length":8212,"output_length":309,"hash_ids":[756136,756137,756138,756139,756140,756141,756142,756143,756144,756145,756146,756147,756148,756149,756150,756151,756152],"delay":229.5} +{"session_id":"sess-0536ed93bb89","input_length":3014,"output_length":449,"hash_ids":[756153,756154,756155,756156,756157,756158],"delay":1106.2} +{"session_id":"sess-0536ed93bb89","input_length":3695,"output_length":700,"hash_ids":[756159,756160,756161,756162,756163,756164,756165,756166],"delay":2817.8} +{"session_id":"sess-0536ed93bb89","input_length":2590,"output_length":238,"hash_ids":[756167,756168,756169,756170,756171,756172],"delay":633.4} +{"session_id":"sess-0536ed93bb89","input_length":2557,"output_length":2316,"hash_ids":[756173,756174,756175,756176,756177],"delay":585.6} +{"session_id":"sess-0536ed93bb89","input_length":5807,"output_length":458,"hash_ids":[756178,756179,756180,756181,756182,756183,756184,756185,756186,756187,756188,756189],"delay":814.1} +{"session_id":"sess-0536ed93bb89","input_length":4146,"output_length":831,"hash_ids":[756190,756191,756192,756193,756194,756195,756196,756197,756198],"delay":230.3} +{"session_id":"sess-06aa14ea2120","input_length":53300,"output_length":574,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,760063,760064],"timestamp":0.0,"group_id":10} +{"session_id":"sess-06aa14ea2120","input_length":1650,"output_length":538,"hash_ids":[760065,760066,760067,760068],"delay":1191.1} +{"session_id":"sess-06aa14ea2120","input_length":881,"output_length":744,"hash_ids":[760069,760070],"delay":1003.3} +{"session_id":"sess-06aa14ea2120","input_length":1470,"output_length":435,"hash_ids":[760071,760072,760073],"delay":2488.1} +{"session_id":"sess-06aa14ea2120","input_length":2686,"output_length":1416,"hash_ids":[760074,760075,760076,760077,760078,760079],"delay":241.9} +{"session_id":"sess-06aa14ea2120","input_length":3575,"output_length":172,"hash_ids":[760080,760081,760082,760083,760084,760085,760086],"delay":59426.3} +{"session_id":"sess-06aa14ea2120","input_length":1354,"output_length":40,"hash_ids":[760087,760088,760089],"delay":1025.1} +{"session_id":"sess-06aa14ea2120","input_length":1120,"output_length":146,"hash_ids":[760090,760091,760092],"delay":692.4} +{"session_id":"sess-06aa14ea2120","input_length":1384,"output_length":458,"hash_ids":[760093,760094,760095],"delay":668.7} +{"session_id":"sess-06aa14ea2120","input_length":8580,"output_length":114,"hash_ids":[760096,760097,760098,760099,760100,760101,760102,760103,760104,760105,760106,760107,760108,760109,760110,760111,760112],"delay":607.1} +{"session_id":"sess-06aa14ea2120","input_length":6720,"output_length":289,"hash_ids":[760113,760114,760115,760116,760117,760118,760119,760120,760121,760122,760123,760124,760125,760126],"delay":2175.4} +{"session_id":"sess-06aa14ea2120","input_length":2641,"output_length":83,"hash_ids":[760127,760128,760129,760130,760131,760132],"delay":1109.2} +{"session_id":"sess-06aa14ea2120","input_length":1332,"output_length":110,"hash_ids":[760133,760134,760135],"delay":1225.5} +{"session_id":"sess-06aa14ea2120","input_length":943,"output_length":211,"hash_ids":[760136,760137],"delay":7769.6} +{"session_id":"sess-06aa14ea2120","input_length":2813,"output_length":495,"hash_ids":[760138,760139,760140,760141,760142,760143],"delay":10864.8} +{"session_id":"sess-06aa14ea2120","input_length":4496,"output_length":2478,"hash_ids":[760144,760145,760146,760147,760148,760149,760150,760151,760152],"delay":1080.6} +{"session_id":"sess-06aa14ea2120","input_length":7995,"output_length":514,"hash_ids":[760153,760154,760155,760156,760157,760158,760159,760160,760161,760162,760163,760164,760165,760166,760167,760168],"delay":826.3} +{"session_id":"sess-969470752e0c","input_length":53497,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,764063,764064],"timestamp":0.0,"group_id":9} +{"session_id":"sess-969470752e0c","input_length":4553,"output_length":585,"hash_ids":[764065,764066,764067,764068,764069,764070,764071,764072,764073],"delay":1811.6} +{"session_id":"sess-969470752e0c","input_length":285,"output_length":594,"hash_ids":[764074],"delay":1589.4} +{"session_id":"sess-969470752e0c","input_length":3251,"output_length":202,"hash_ids":[764075,764076,764077,764078,764079,764080,764081],"delay":2071.9} +{"session_id":"sess-969470752e0c","input_length":688,"output_length":968,"hash_ids":[764082,764083],"delay":23809.0} +{"session_id":"sess-969470752e0c","input_length":3123,"output_length":562,"hash_ids":[764084,764085,764086,764087,764088,764089,764090],"delay":517.8} +{"session_id":"sess-969470752e0c","input_length":9713,"output_length":287,"hash_ids":[764091,764092,764093,764094,764095,764096,764097,764098,764099,764100,764101,764102,764103,764104,764105,764106,764107,764108,764109],"delay":48504.9} +{"session_id":"sess-969470752e0c","input_length":1049,"output_length":30,"hash_ids":[764110,764111,764112],"delay":989.6} +{"session_id":"sess-969470752e0c","input_length":6816,"output_length":584,"hash_ids":[764113,764114,764115,764116,764117,764118,764119,764120,764121,764122,764123,764124,764125,764126],"delay":20133.5} +{"session_id":"sess-969470752e0c","input_length":456,"output_length":632,"hash_ids":[764127],"delay":1508.0} +{"session_id":"sess-969470752e0c","input_length":4100,"output_length":50,"hash_ids":[764128,764129,764130,764131,764132,764133,764134,764135,764136],"delay":225.7} +{"session_id":"sess-969470752e0c","input_length":324,"output_length":370,"hash_ids":[764137],"delay":162.5} +{"session_id":"sess-969470752e0c","input_length":9125,"output_length":345,"hash_ids":[764138,764139,764140,764141,764142,764143,764144,764145,764146,764147,764148,764149,764150,764151,764152,764153,764154,764155],"delay":1747.0} +{"session_id":"sess-969470752e0c","input_length":4180,"output_length":37,"hash_ids":[764156,764157,764158,764159,764160,764161,764162,764163,764164],"delay":839.9} +{"session_id":"sess-969470752e0c","input_length":352,"output_length":392,"hash_ids":[764165],"delay":849.2} +{"session_id":"sess-969470752e0c","input_length":4204,"output_length":65,"hash_ids":[764166,764167,764168,764169,764170,764171,764172,764173,764174],"delay":208.5} +{"session_id":"sess-969470752e0c","input_length":5507,"output_length":319,"hash_ids":[764175,764176,764177,764178,764179,764180,764181,764182,764183,764184,764185],"delay":9106.5} +{"session_id":"sess-969470752e0c","input_length":1532,"output_length":852,"hash_ids":[764186,764187,764188],"delay":182.5} +{"session_id":"sess-969470752e0c","input_length":3406,"output_length":123,"hash_ids":[764189,764190,764191,764192,764193,764194,764195],"delay":73.1} +{"session_id":"sess-969470752e0c","input_length":339,"output_length":241,"hash_ids":[764196],"delay":5842.1} +{"session_id":"sess-f4894036f082","input_length":71751,"output_length":766,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,768063,768064,768065,768066,768067,768068,768069,768070,768071,768072,768073,768074,768075,768076,768077,768078,768079,768080,768081,768082,768083,768084,768085,768086,768087,768088,768089,768090,768091,768092,768093,768094,768095,768096,768097,768098,768099,768100],"timestamp":0.0,"group_id":6} +{"session_id":"sess-f4894036f082","input_length":2178,"output_length":65,"hash_ids":[768101,768102,768103,768104,768105],"delay":779.7} +{"session_id":"sess-f4894036f082","input_length":9256,"output_length":733,"hash_ids":[768106,768107,768108,768109,768110,768111,768112,768113,768114,768115,768116,768117,768118,768119,768120,768121,768122,768123,768124],"delay":2181.6} +{"session_id":"sess-f4894036f082","input_length":351,"output_length":590,"hash_ids":[768125],"delay":228.5} +{"session_id":"sess-f4894036f082","input_length":1567,"output_length":1224,"hash_ids":[768126,768127,768128,768129],"delay":1237.8} +{"session_id":"sess-a959f76a2988","input_length":54629,"output_length":794,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,772063,772064,772065,772066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a959f76a2988","input_length":2752,"output_length":173,"hash_ids":[772067,772068,772069,772070,772071,772072],"delay":2427.1} +{"session_id":"sess-a959f76a2988","input_length":6681,"output_length":474,"hash_ids":[772073,772074,772075,772076,772077,772078,772079,772080,772081,772082,772083,772084,772085,772086],"delay":14926.1} +{"session_id":"sess-a959f76a2988","input_length":2636,"output_length":922,"hash_ids":[772087,772088,772089,772090,772091,772092],"delay":740.4} +{"session_id":"sess-a959f76a2988","input_length":5875,"output_length":104,"hash_ids":[772093,772094,772095,772096,772097,772098,772099,772100,772101,772102,772103,772104],"delay":3748.1} +{"session_id":"sess-a959f76a2988","input_length":3344,"output_length":226,"hash_ids":[772105,772106,772107,772108,772109,772110,772111],"delay":34983.5} +{"session_id":"sess-a959f76a2988","input_length":1577,"output_length":52,"hash_ids":[772112,772113,772114,772115],"delay":12205.4} +{"session_id":"sess-a959f76a2988","input_length":4350,"output_length":703,"hash_ids":[772116,772117,772118,772119,772120,772121,772122,772123,772124],"delay":657.1} +{"session_id":"sess-c7961e2e5b3b","input_length":55652,"output_length":1226,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,776063,776064,776065,776066,776067,776068],"timestamp":0.0,"group_id":5} +{"session_id":"sess-c7961e2e5b3b","input_length":2030,"output_length":530,"hash_ids":[776069,776070,776071,776072],"delay":5866.7} +{"session_id":"sess-c7961e2e5b3b","input_length":2881,"output_length":450,"hash_ids":[776073,776074,776075,776076,776077,776078],"delay":1297.4} +{"session_id":"sess-c7961e2e5b3b","input_length":2097,"output_length":144,"hash_ids":[776079,776080,776081,776082,776083],"delay":3978.4} +{"session_id":"sess-c7961e2e5b3b","input_length":1459,"output_length":236,"hash_ids":[776084,776085,776086],"delay":614.4} +{"session_id":"sess-c7961e2e5b3b","input_length":3393,"output_length":907,"hash_ids":[776087,776088,776089,776090,776091,776092,776093],"delay":858.4} +{"session_id":"sess-c7961e2e5b3b","input_length":4030,"output_length":129,"hash_ids":[776094,776095,776096,776097,776098,776099,776100,776101],"delay":1881.3} +{"session_id":"sess-c7961e2e5b3b","input_length":837,"output_length":416,"hash_ids":[776102,776103],"delay":7262.2} +{"session_id":"sess-c7961e2e5b3b","input_length":8798,"output_length":2074,"hash_ids":[776104,776105,776106,776107,776108,776109,776110,776111,776112,776113,776114,776115,776116,776117,776118,776119,776120,776121],"delay":3421.2} +{"session_id":"sess-d40586df4536","input_length":55934,"output_length":1846,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,780063,780064,780065,780066,780067,780068,780069],"timestamp":0.0,"group_id":18} +{"session_id":"sess-d40586df4536","input_length":296,"output_length":157,"hash_ids":[780070],"delay":1400.5} +{"session_id":"sess-d40586df4536","input_length":6411,"output_length":459,"hash_ids":[780071,780072,780073,780074,780075,780076,780077,780078,780079,780080,780081,780082,780083],"delay":18165.6} +{"session_id":"sess-d40586df4536","input_length":3406,"output_length":335,"hash_ids":[780084,780085,780086,780087,780088,780089,780090],"delay":892.3} +{"session_id":"sess-d40586df4536","input_length":3049,"output_length":224,"hash_ids":[780091,780092,780093,780094,780095,780096],"delay":889.7} +{"session_id":"sess-d40586df4536","input_length":3640,"output_length":656,"hash_ids":[780097,780098,780099,780100,780101,780102,780103,780104],"delay":1363.0} +{"session_id":"sess-d40586df4536","input_length":8617,"output_length":293,"hash_ids":[780105,780106,780107,780108,780109,780110,780111,780112,780113,780114,780115,780116,780117,780118,780119,780120,780121],"delay":287.3} +{"session_id":"sess-d40586df4536","input_length":6006,"output_length":139,"hash_ids":[780122,780123,780124,780125,780126,780127,780128,780129,780130,780131,780132,780133],"delay":4129.4} +{"session_id":"sess-d40586df4536","input_length":7811,"output_length":256,"hash_ids":[780134,780135,780136,780137,780138,780139,780140,780141,780142,780143,780144,780145,780146,780147,780148,780149],"delay":1331.3} +{"session_id":"sess-d40586df4536","input_length":641,"output_length":80,"hash_ids":[780150,780151],"delay":8407.7} +{"session_id":"sess-d40586df4536","input_length":1974,"output_length":116,"hash_ids":[780152,780153,780154,780155],"delay":145.6} +{"session_id":"sess-d40586df4536","input_length":2414,"output_length":187,"hash_ids":[780156,780157,780158,780159,780160],"delay":435.4} +{"session_id":"sess-d40586df4536","input_length":3003,"output_length":30,"hash_ids":[780161,780162,780163,780164,780165,780166],"delay":637.1} +{"session_id":"sess-d40586df4536","input_length":130,"output_length":448,"hash_ids":[780167],"delay":994.9} +{"session_id":"sess-d40586df4536","input_length":5852,"output_length":409,"hash_ids":[780168,780169,780170,780171,780172,780173,780174,780175,780176,780177,780178,780179],"delay":607.1} +{"session_id":"sess-d40586df4536","input_length":1209,"output_length":923,"hash_ids":[780180,780181,780182],"delay":402.8} +{"session_id":"sess-d40586df4536","input_length":7011,"output_length":344,"hash_ids":[780183,780184,780185,780186,780187,780188,780189,780190,780191,780192,780193,780194,780195,780196],"delay":277.7} +{"session_id":"sess-40054e6fc575","input_length":56397,"output_length":202,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,784063,784064,784065,784066,784067,784068,784069,784070],"timestamp":0.0,"group_id":1} +{"session_id":"sess-40054e6fc575","input_length":5499,"output_length":361,"hash_ids":[784071,784072,784073,784074,784075,784076,784077,784078,784079,784080,784081],"delay":862.8} +{"session_id":"sess-40054e6fc575","input_length":6289,"output_length":117,"hash_ids":[784082,784083,784084,784085,784086,784087,784088,784089,784090,784091,784092,784093,784094],"delay":10274.8} +{"session_id":"sess-40054e6fc575","input_length":1099,"output_length":237,"hash_ids":[784095,784096,784097],"delay":1167.1} +{"session_id":"sess-40054e6fc575","input_length":1025,"output_length":257,"hash_ids":[784098,784099,784100],"delay":6840.3} +{"session_id":"sess-40054e6fc575","input_length":2633,"output_length":314,"hash_ids":[784101,784102,784103,784104,784105,784106],"delay":632.2} +{"session_id":"sess-40054e6fc575","input_length":4535,"output_length":395,"hash_ids":[784107,784108,784109,784110,784111,784112,784113,784114,784115],"delay":869.0} +{"session_id":"sess-40054e6fc575","input_length":1119,"output_length":40,"hash_ids":[784116,784117,784118],"delay":1098.8} +{"session_id":"sess-40054e6fc575","input_length":6888,"output_length":766,"hash_ids":[784119,784120,784121,784122,784123,784124,784125,784126,784127,784128,784129,784130,784131,784132],"delay":1051.4} +{"session_id":"sess-40054e6fc575","input_length":1611,"output_length":178,"hash_ids":[784133,784134,784135,784136],"delay":28132.3} +{"session_id":"sess-40054e6fc575","input_length":2578,"output_length":30,"hash_ids":[784137,784138,784139,784140,784141,784142],"delay":1352.1} +{"session_id":"sess-40054e6fc575","input_length":2970,"output_length":674,"hash_ids":[784143,784144,784145,784146,784147,784148],"delay":33813.3} +{"session_id":"sess-40054e6fc575","input_length":7588,"output_length":551,"hash_ids":[784149,784150,784151,784152,784153,784154,784155,784156,784157,784158,784159,784160,784161,784162,784163],"delay":1235.2} +{"session_id":"sess-40054e6fc575","input_length":248,"output_length":68,"hash_ids":[784164],"delay":314.8} +{"session_id":"sess-40054e6fc575","input_length":1908,"output_length":115,"hash_ids":[784165,784166,784167,784168],"delay":715.3} +{"session_id":"sess-40054e6fc575","input_length":342,"output_length":169,"hash_ids":[784169],"delay":323.1} +{"session_id":"sess-40054e6fc575","input_length":4976,"output_length":182,"hash_ids":[784170,784171,784172,784173,784174,784175,784176,784177,784178,784179],"delay":11911.6} +{"session_id":"sess-40054e6fc575","input_length":1480,"output_length":185,"hash_ids":[784180,784181,784182],"delay":10539.8} +{"session_id":"sess-40054e6fc575","input_length":3146,"output_length":177,"hash_ids":[784183,784184,784185,784186,784187,784188,784189],"delay":339.6} +{"session_id":"sess-40054e6fc575","input_length":2953,"output_length":270,"hash_ids":[784190,784191,784192,784193,784194,784195],"delay":394.8} +{"session_id":"sess-40054e6fc575","input_length":854,"output_length":408,"hash_ids":[784196,784197],"delay":810.8} +{"session_id":"sess-40054e6fc575","input_length":8379,"output_length":40,"hash_ids":[784198,784199,784200,784201,784202,784203,784204,784205,784206,784207,784208,784209,784210,784211,784212,784213,784214],"delay":361.5} +{"session_id":"sess-92d4748243da","input_length":52460,"output_length":728,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902],"timestamp":0.0,"group_id":9} +{"session_id":"sess-92d4748243da","input_length":1041,"output_length":889,"hash_ids":[784215,784216,784217],"delay":632.2} +{"session_id":"sess-92d4748243da","input_length":3724,"output_length":255,"hash_ids":[784218,784219,784220,784221,784222,784223,784224,784225],"delay":1000.1} +{"session_id":"sess-92d4748243da","input_length":1296,"output_length":100,"hash_ids":[784226,784227,784228],"delay":2287.4} +{"session_id":"sess-cbfa0cdbfc89","input_length":78449,"output_length":437,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,792063,792064,792065,792066,792067,792068,792069,792070,792071,792072,792073,792074,792075,792076,792077,792078,792079,792080,792081,792082,792083,792084,792085,792086,792087,792088,792089,792090,792091,792092,792093,792094,792095,792096,792097,792098,792099,792100,792101,792102,792103,792104,792105,792106,792107,792108,792109,792110,792111,792112,792113],"timestamp":0.0,"group_id":28} +{"session_id":"sess-cbfa0cdbfc89","input_length":7856,"output_length":223,"hash_ids":[792114,792115,792116,792117,792118,792119,792120,792121,792122,792123,792124,792125,792126,792127,792128,792129],"delay":10724.1} +{"session_id":"sess-cbfa0cdbfc89","input_length":4756,"output_length":104,"hash_ids":[792130,792131,792132,792133,792134,792135,792136,792137,792138,792139],"delay":6056.0} +{"session_id":"sess-cbfa0cdbfc89","input_length":7159,"output_length":115,"hash_ids":[792140,792141,792142,792143,792144,792145,792146,792147,792148,792149,792150,792151,792152,792153],"delay":503.7} +{"session_id":"sess-cbfa0cdbfc89","input_length":1604,"output_length":452,"hash_ids":[792154,792155,792156,792157],"delay":2799.8} +{"session_id":"sess-cbfa0cdbfc89","input_length":747,"output_length":1957,"hash_ids":[792158,792159],"delay":242.5} +{"session_id":"sess-cbfa0cdbfc89","input_length":3284,"output_length":30,"hash_ids":[792160,792161,792162,792163,792164,792165,792166],"delay":313.0} +{"session_id":"sess-cbfa0cdbfc89","input_length":1576,"output_length":813,"hash_ids":[792167,792168,792169,792170],"delay":206.6} +{"session_id":"sess-cbfa0cdbfc89","input_length":1738,"output_length":625,"hash_ids":[792171,792172,792173,792174],"delay":652.2} +{"session_id":"sess-cbfa0cdbfc89","input_length":313,"output_length":308,"hash_ids":[792175],"delay":730.7} +{"session_id":"sess-cbfa0cdbfc89","input_length":1667,"output_length":195,"hash_ids":[792176,792177,792178,792179],"delay":411.3} +{"session_id":"sess-cbfa0cdbfc89","input_length":3421,"output_length":89,"hash_ids":[792180,792181,792182,792183,792184,792185,792186],"delay":563.0} +{"session_id":"sess-cbfa0cdbfc89","input_length":4393,"output_length":689,"hash_ids":[792187,792188,792189,792190,792191,792192,792193,792194,792195],"delay":305.1} +{"session_id":"sess-cbfa0cdbfc89","input_length":2253,"output_length":151,"hash_ids":[792196,792197,792198,792199,792200],"delay":1549.5} +{"session_id":"sess-cbfa0cdbfc89","input_length":2171,"output_length":127,"hash_ids":[792201,792202,792203,792204,792205],"delay":259.3} +{"session_id":"sess-cbfa0cdbfc89","input_length":1206,"output_length":1066,"hash_ids":[792206,792207,792208],"delay":1264.5} +{"session_id":"sess-f8332da55784","input_length":64469,"output_length":240,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,796063,796064,796065,796066,796067,796068,796069,796070,796071,796072,796073,796074,796075,796076,796077,796078,796079,796080,796081,796082,796083,796084,796085],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f8332da55784","input_length":187,"output_length":533,"hash_ids":[796086],"delay":1377.9} +{"session_id":"sess-f8332da55784","input_length":2017,"output_length":656,"hash_ids":[796087,796088,796089,796090],"delay":1470.9} +{"session_id":"sess-f8332da55784","input_length":410,"output_length":1505,"hash_ids":[796091],"delay":23313.5} +{"session_id":"sess-f8332da55784","input_length":3041,"output_length":114,"hash_ids":[796092,796093,796094,796095,796096,796097],"delay":2439.3} +{"session_id":"sess-f8332da55784","input_length":1112,"output_length":274,"hash_ids":[796098,796099,796100],"delay":742.9} +{"session_id":"sess-f8332da55784","input_length":9492,"output_length":2105,"hash_ids":[796101,796102,796103,796104,796105,796106,796107,796108,796109,796110,796111,796112,796113,796114,796115,796116,796117,796118,796119],"delay":1780.8} +{"session_id":"sess-f8332da55784","input_length":2513,"output_length":135,"hash_ids":[796120,796121,796122,796123,796124],"delay":656.9} +{"session_id":"sess-f8332da55784","input_length":3279,"output_length":250,"hash_ids":[796125,796126,796127,796128,796129,796130,796131],"delay":3126.8} +{"session_id":"sess-f8332da55784","input_length":2554,"output_length":416,"hash_ids":[796132,796133,796134,796135,796136],"delay":249.9} +{"session_id":"sess-895b63c9ae77","input_length":72821,"output_length":760,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,800063,800064,800065,800066,800067,800068,800069,800070,800071,800072,800073,800074,800075,800076,800077,800078,800079,800080,800081,800082,800083,800084,800085,800086,800087,800088,800089,800090,800091,800092,800093,800094,800095,800096,800097,800098,800099,800100,800101,800102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-895b63c9ae77","input_length":4343,"output_length":1715,"hash_ids":[800103,800104,800105,800106,800107,800108,800109,800110,800111],"delay":10407.2} +{"session_id":"sess-895b63c9ae77","input_length":1177,"output_length":192,"hash_ids":[800112,800113,800114],"delay":1123.1} +{"session_id":"sess-895b63c9ae77","input_length":1761,"output_length":195,"hash_ids":[800115,800116,800117,800118],"delay":532.4} +{"session_id":"sess-895b63c9ae77","input_length":2119,"output_length":180,"hash_ids":[800119,800120,800121,800122,800123],"delay":12661.7} +{"session_id":"sess-895b63c9ae77","input_length":5616,"output_length":211,"hash_ids":[800124,800125,800126,800127,800128,800129,800130,800131,800132,800133,800134],"delay":245.0} +{"session_id":"sess-41e4edbd64e7","input_length":56830,"output_length":1749,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,804063,804064,804065,804066,804067,804068,804069,804070],"timestamp":0.0,"group_id":29} +{"session_id":"sess-41e4edbd64e7","input_length":3112,"output_length":230,"hash_ids":[804071,804072,804073,804074,804075,804076,804077],"delay":295.5} +{"session_id":"sess-41e4edbd64e7","input_length":6029,"output_length":104,"hash_ids":[804078,804079,804080,804081,804082,804083,804084,804085,804086,804087,804088,804089],"delay":231.6} +{"session_id":"sess-41e4edbd64e7","input_length":1949,"output_length":150,"hash_ids":[804090,804091,804092,804093],"delay":969.5} +{"session_id":"sess-41e4edbd64e7","input_length":597,"output_length":211,"hash_ids":[804094,804095],"delay":3213.7} +{"session_id":"sess-1211e1399ac5","input_length":61051,"output_length":42,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,808063,808064,808065,808066,808067,808068,808069,808070,808071,808072,808073,808074,808075,808076,808077,808078,808079],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1211e1399ac5","input_length":581,"output_length":811,"hash_ids":[808080,808081],"delay":15992.9} +{"session_id":"sess-1211e1399ac5","input_length":2970,"output_length":321,"hash_ids":[808082,808083,808084,808085,808086,808087],"delay":823.4} +{"session_id":"sess-1211e1399ac5","input_length":4230,"output_length":451,"hash_ids":[808088,808089,808090,808091,808092,808093,808094,808095,808096],"delay":9214.1} +{"session_id":"sess-1211e1399ac5","input_length":740,"output_length":287,"hash_ids":[808097,808098],"delay":1366.3} +{"session_id":"sess-1211e1399ac5","input_length":5643,"output_length":1250,"hash_ids":[808099,808100,808101,808102,808103,808104,808105,808106,808107,808108,808109,808110],"delay":17857.0} +{"session_id":"sess-1211e1399ac5","input_length":2172,"output_length":171,"hash_ids":[808111,808112,808113,808114,808115],"delay":9991.8} +{"session_id":"sess-1211e1399ac5","input_length":2028,"output_length":166,"hash_ids":[808116,808117,808118,808119],"delay":1353.9} +{"session_id":"sess-1211e1399ac5","input_length":1574,"output_length":66,"hash_ids":[808120,808121,808122,808123],"delay":966.2} +{"session_id":"sess-1211e1399ac5","input_length":181,"output_length":612,"hash_ids":[808124],"delay":959.8} +{"session_id":"sess-1211e1399ac5","input_length":2688,"output_length":773,"hash_ids":[808125,808126,808127,808128,808129,808130],"delay":2968.6} +{"session_id":"sess-1211e1399ac5","input_length":793,"output_length":235,"hash_ids":[808131,808132],"delay":532.2} +{"session_id":"sess-1211e1399ac5","input_length":7562,"output_length":2311,"hash_ids":[808133,808134,808135,808136,808137,808138,808139,808140,808141,808142,808143,808144,808145,808146,808147],"delay":697.2} +{"session_id":"sess-1211e1399ac5","input_length":9022,"output_length":380,"hash_ids":[808148,808149,808150,808151,808152,808153,808154,808155,808156,808157,808158,808159,808160,808161,808162,808163,808164,808165],"delay":18689.5} +{"session_id":"sess-1211e1399ac5","input_length":1968,"output_length":313,"hash_ids":[808166,808167,808168,808169],"delay":18174.4} +{"session_id":"sess-1211e1399ac5","input_length":819,"output_length":361,"hash_ids":[808170,808171],"delay":21218.3} +{"session_id":"sess-1211e1399ac5","input_length":3215,"output_length":217,"hash_ids":[808172,808173,808174,808175,808176,808177,808178],"delay":15246.6} +{"session_id":"sess-1211e1399ac5","input_length":1280,"output_length":583,"hash_ids":[808179,808180,808181],"delay":1488.4} +{"session_id":"sess-1211e1399ac5","input_length":6045,"output_length":269,"hash_ids":[808182,808183,808184,808185,808186,808187,808188,808189,808190,808191,808192,808193],"delay":1097.3} +{"session_id":"sess-7743cee6aeea","input_length":70488,"output_length":453,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,812063,812064,812065,812066,812067,812068,812069,812070,812071,812072,812073,812074,812075,812076,812077,812078,812079,812080,812081,812082,812083,812084,812085,812086,812087,812088,812089,812090,812091,812092,812093,812094,812095,812096,812097],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7743cee6aeea","input_length":5005,"output_length":87,"hash_ids":[812098,812099,812100,812101,812102,812103,812104,812105,812106,812107],"delay":1116.4} +{"session_id":"sess-7743cee6aeea","input_length":4118,"output_length":507,"hash_ids":[812108,812109,812110,812111,812112,812113,812114,812115,812116],"delay":1519.6} +{"session_id":"sess-7743cee6aeea","input_length":3068,"output_length":319,"hash_ids":[812117,812118,812119,812120,812121,812122],"delay":2567.1} +{"session_id":"sess-7743cee6aeea","input_length":3272,"output_length":71,"hash_ids":[812123,812124,812125,812126,812127,812128,812129],"delay":383.7} +{"session_id":"sess-7743cee6aeea","input_length":2185,"output_length":190,"hash_ids":[812130,812131,812132,812133,812134],"delay":575.3} +{"session_id":"sess-7743cee6aeea","input_length":7315,"output_length":1196,"hash_ids":[812135,812136,812137,812138,812139,812140,812141,812142,812143,812144,812145,812146,812147,812148,812149],"delay":1780.9} +{"session_id":"sess-7743cee6aeea","input_length":8069,"output_length":137,"hash_ids":[812150,812151,812152,812153,812154,812155,812156,812157,812158,812159,812160,812161,812162,812163,812164,812165],"delay":19083.5} +{"session_id":"sess-7743cee6aeea","input_length":815,"output_length":347,"hash_ids":[812166,812167],"delay":671.4} +{"session_id":"sess-7743cee6aeea","input_length":3734,"output_length":434,"hash_ids":[812168,812169,812170,812171,812172,812173,812174,812175],"delay":599.3} +{"session_id":"sess-7743cee6aeea","input_length":4658,"output_length":1114,"hash_ids":[812176,812177,812178,812179,812180,812181,812182,812183,812184,812185],"delay":290.4} +{"session_id":"sess-7743cee6aeea","input_length":997,"output_length":264,"hash_ids":[812186,812187],"delay":694.4} +{"session_id":"sess-7743cee6aeea","input_length":873,"output_length":158,"hash_ids":[812188,812189],"delay":691.5} +{"session_id":"sess-7743cee6aeea","input_length":452,"output_length":393,"hash_ids":[812190],"delay":2547.9} +{"session_id":"sess-7743cee6aeea","input_length":1016,"output_length":775,"hash_ids":[812191,812192],"delay":2420.8} +{"session_id":"sess-7743cee6aeea","input_length":4999,"output_length":166,"hash_ids":[812193,812194,812195,812196,812197,812198,812199,812200,812201,812202],"delay":286.8} +{"session_id":"sess-7743cee6aeea","input_length":787,"output_length":198,"hash_ids":[812203,812204],"delay":1518.6} +{"session_id":"sess-f7db68c450e4","input_length":54966,"output_length":423,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,816063,816064,816065,816066,816067],"timestamp":0.0,"group_id":18} +{"session_id":"sess-f7db68c450e4","input_length":1418,"output_length":613,"hash_ids":[816068,816069,816070],"delay":1775.0} +{"session_id":"sess-f7db68c450e4","input_length":564,"output_length":224,"hash_ids":[816071,816072],"delay":2061.4} +{"session_id":"sess-f7db68c450e4","input_length":7795,"output_length":810,"hash_ids":[816073,816074,816075,816076,816077,816078,816079,816080,816081,816082,816083,816084,816085,816086,816087,816088],"delay":804.7} +{"session_id":"sess-f7db68c450e4","input_length":1650,"output_length":99,"hash_ids":[816089,816090,816091,816092],"delay":789.4} +{"session_id":"sess-f7db68c450e4","input_length":1260,"output_length":215,"hash_ids":[816093,816094,816095],"delay":18402.1} +{"session_id":"sess-f7db68c450e4","input_length":2140,"output_length":108,"hash_ids":[816096,816097,816098,816099,816100],"delay":1085.5} +{"session_id":"sess-f7db68c450e4","input_length":221,"output_length":385,"hash_ids":[816101],"delay":17715.6} +{"session_id":"sess-f7db68c450e4","input_length":1173,"output_length":456,"hash_ids":[816102,816103,816104],"delay":912.9} +{"session_id":"sess-f7db68c450e4","input_length":2752,"output_length":98,"hash_ids":[816105,816106,816107,816108,816109,816110],"delay":1688.3} +{"session_id":"sess-f7db68c450e4","input_length":297,"output_length":153,"hash_ids":[816111],"delay":1940.5} +{"session_id":"sess-f7db68c450e4","input_length":3811,"output_length":367,"hash_ids":[816112,816113,816114,816115,816116,816117,816118,816119],"delay":6779.3} +{"session_id":"sess-f7db68c450e4","input_length":1084,"output_length":37,"hash_ids":[816120,816121,816122],"delay":530.6} +{"session_id":"sess-f7db68c450e4","input_length":3628,"output_length":1297,"hash_ids":[816123,816124,816125,816126,816127,816128,816129,816130],"delay":2172.5} +{"session_id":"sess-f7db68c450e4","input_length":2044,"output_length":524,"hash_ids":[816131,816132,816133,816134],"delay":387.5} +{"session_id":"sess-f7db68c450e4","input_length":2868,"output_length":1389,"hash_ids":[816135,816136,816137,816138,816139,816140],"delay":411.0} +{"session_id":"sess-f7db68c450e4","input_length":6170,"output_length":61,"hash_ids":[816141,816142,816143,816144,816145,816146,816147,816148,816149,816150,816151,816152,816153],"delay":602.6} +{"session_id":"sess-f7db68c450e4","input_length":1101,"output_length":61,"hash_ids":[816154,816155,816156],"delay":293.6} +{"session_id":"sess-f7db68c450e4","input_length":100,"output_length":229,"hash_ids":[816157],"delay":15593.2} +{"session_id":"sess-f7db68c450e4","input_length":1626,"output_length":568,"hash_ids":[816158,816159,816160,816161],"delay":3119.6} +{"session_id":"sess-f7db68c450e4","input_length":752,"output_length":1211,"hash_ids":[816162,816163],"delay":1813.1} +{"session_id":"sess-f7db68c450e4","input_length":1435,"output_length":379,"hash_ids":[816164,816165,816166],"delay":6275.1} +{"session_id":"sess-f7db68c450e4","input_length":4597,"output_length":507,"hash_ids":[816167,816168,816169,816170,816171,816172,816173,816174,816175],"delay":2761.2} +{"session_id":"sess-f7db68c450e4","input_length":2197,"output_length":1106,"hash_ids":[816176,816177,816178,816179,816180],"delay":8497.5} +{"session_id":"sess-f7db68c450e4","input_length":3445,"output_length":420,"hash_ids":[816181,816182,816183,816184,816185,816186,816187],"delay":113.6} +{"session_id":"sess-f7db68c450e4","input_length":204,"output_length":1038,"hash_ids":[816188],"delay":193.3} +{"session_id":"sess-f7db68c450e4","input_length":596,"output_length":89,"hash_ids":[816189,816190],"delay":803.0} +{"session_id":"sess-f7db68c450e4","input_length":2512,"output_length":1809,"hash_ids":[816191,816192,816193,816194,816195],"delay":619.4} +{"session_id":"sess-f7db68c450e4","input_length":970,"output_length":129,"hash_ids":[816196,816197],"delay":643.9} +{"session_id":"sess-f7db68c450e4","input_length":254,"output_length":65,"hash_ids":[816198],"delay":414.3} +{"session_id":"sess-f7db68c450e4","input_length":944,"output_length":286,"hash_ids":[816199,816200],"delay":153.4} +{"session_id":"sess-63902c42393f","input_length":56165,"output_length":192,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,820063,820064,820065,820066,820067,820068,820069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-63902c42393f","input_length":3022,"output_length":463,"hash_ids":[820070,820071,820072,820073,820074,820075],"delay":614.9} +{"session_id":"sess-63902c42393f","input_length":1521,"output_length":123,"hash_ids":[820076,820077,820078],"delay":486.1} +{"session_id":"sess-63902c42393f","input_length":6174,"output_length":559,"hash_ids":[820079,820080,820081,820082,820083,820084,820085,820086,820087,820088,820089,820090,820091],"delay":20691.0} +{"session_id":"sess-63902c42393f","input_length":740,"output_length":153,"hash_ids":[820092,820093],"delay":439.4} +{"session_id":"sess-46a08e448c51","input_length":52987,"output_length":433,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,824063],"timestamp":0.0,"group_id":13} +{"session_id":"sess-46a08e448c51","input_length":1289,"output_length":253,"hash_ids":[824064,824065,824066],"delay":755.4} +{"session_id":"sess-46a08e448c51","input_length":2376,"output_length":422,"hash_ids":[824067,824068,824069,824070,824071],"delay":15282.4} +{"session_id":"sess-46a08e448c51","input_length":343,"output_length":1216,"hash_ids":[824072],"delay":2612.2} +{"session_id":"sess-46a08e448c51","input_length":899,"output_length":772,"hash_ids":[824073,824074],"delay":620.0} +{"session_id":"sess-46a08e448c51","input_length":4193,"output_length":275,"hash_ids":[824075,824076,824077,824078,824079,824080,824081,824082,824083],"delay":486.1} +{"session_id":"sess-46a08e448c51","input_length":2303,"output_length":1480,"hash_ids":[824084,824085,824086,824087,824088],"delay":2866.8} +{"session_id":"sess-46a08e448c51","input_length":2770,"output_length":552,"hash_ids":[824089,824090,824091,824092,824093,824094],"delay":678.4} +{"session_id":"sess-46a08e448c51","input_length":1678,"output_length":73,"hash_ids":[824095,824096,824097,824098],"delay":1391.7} +{"session_id":"sess-46a08e448c51","input_length":6632,"output_length":266,"hash_ids":[824099,824100,824101,824102,824103,824104,824105,824106,824107,824108,824109,824110,824111],"delay":350.3} +{"session_id":"sess-46a08e448c51","input_length":4517,"output_length":277,"hash_ids":[824112,824113,824114,824115,824116,824117,824118,824119,824120],"delay":1190.5} +{"session_id":"sess-46a08e448c51","input_length":1285,"output_length":72,"hash_ids":[824121,824122,824123],"delay":438.2} +{"session_id":"sess-46a08e448c51","input_length":2822,"output_length":259,"hash_ids":[824124,824125,824126,824127,824128,824129],"delay":1560.1} +{"session_id":"sess-46a08e448c51","input_length":1567,"output_length":176,"hash_ids":[824130,824131,824132,824133],"delay":20936.0} +{"session_id":"sess-46a08e448c51","input_length":210,"output_length":378,"hash_ids":[824134],"delay":1380.9} +{"session_id":"sess-46a08e448c51","input_length":9920,"output_length":324,"hash_ids":[824135,824136,824137,824138,824139,824140,824141,824142,824143,824144,824145,824146,824147,824148,824149,824150,824151,824152,824153,824154],"delay":9196.2} +{"session_id":"sess-46a08e448c51","input_length":2320,"output_length":52,"hash_ids":[824155,824156,824157,824158,824159],"delay":8591.3} +{"session_id":"sess-46a08e448c51","input_length":7775,"output_length":282,"hash_ids":[824160,824161,824162,824163,824164,824165,824166,824167,824168,824169,824170,824171,824172,824173,824174,824175],"delay":889.2} +{"session_id":"sess-46a08e448c51","input_length":4951,"output_length":432,"hash_ids":[824176,824177,824178,824179,824180,824181,824182,824183,824184,824185],"delay":472.9} +{"session_id":"sess-46a08e448c51","input_length":4453,"output_length":503,"hash_ids":[824186,824187,824188,824189,824190,824191,824192,824193,824194],"delay":22926.7} +{"session_id":"sess-46a08e448c51","input_length":283,"output_length":1947,"hash_ids":[824195],"delay":26367.9} +{"session_id":"sess-46a08e448c51","input_length":1994,"output_length":569,"hash_ids":[824196,824197,824198,824199],"delay":706.1} +{"session_id":"sess-3a002e042f98","input_length":81222,"output_length":118,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,828063,828064,828065,828066,828067,828068,828069,828070,828071,828072,828073,828074,828075,828076,828077,828078,828079,828080,828081,828082,828083,828084,828085,828086,828087,828088,828089,828090,828091,828092,828093,828094,828095,828096,828097,828098,828099,828100,828101,828102,828103,828104,828105,828106,828107,828108,828109,828110,828111,828112,828113,828114,828115,828116,828117,828118],"timestamp":0.0,"group_id":5} +{"session_id":"sess-3a002e042f98","input_length":1765,"output_length":1591,"hash_ids":[828119,828120,828121,828122],"delay":48010.6} +{"session_id":"sess-3a002e042f98","input_length":749,"output_length":2616,"hash_ids":[828123,828124],"delay":985.3} +{"session_id":"sess-3a002e042f98","input_length":1639,"output_length":1763,"hash_ids":[828125,828126,828127,828128],"delay":1720.7} +{"session_id":"sess-3a002e042f98","input_length":1418,"output_length":1792,"hash_ids":[828129,828130,828131],"delay":53412.3} +{"session_id":"sess-3a002e042f98","input_length":3099,"output_length":319,"hash_ids":[828132,828133,828134,828135,828136,828137,828138],"delay":1608.5} +{"session_id":"sess-3a002e042f98","input_length":140,"output_length":661,"hash_ids":[828139],"delay":356.4} +{"session_id":"sess-3a002e042f98","input_length":719,"output_length":266,"hash_ids":[828140,828141],"delay":301.8} +{"session_id":"sess-3a002e042f98","input_length":2571,"output_length":113,"hash_ids":[828142,828143,828144,828145,828146,828147],"delay":655.4} +{"session_id":"sess-3a002e042f98","input_length":1334,"output_length":753,"hash_ids":[828148,828149,828150],"delay":19562.1} +{"session_id":"sess-3a002e042f98","input_length":2866,"output_length":670,"hash_ids":[828151,828152,828153,828154,828155,828156],"delay":612.9} +{"session_id":"sess-3a002e042f98","input_length":1490,"output_length":216,"hash_ids":[828157,828158,828159],"delay":2488.3} +{"session_id":"sess-3a002e042f98","input_length":444,"output_length":69,"hash_ids":[828160],"delay":343.0} +{"session_id":"sess-3a002e042f98","input_length":2573,"output_length":701,"hash_ids":[828161,828162,828163,828164,828165,828166],"delay":600.2} +{"session_id":"sess-3a002e042f98","input_length":4385,"output_length":30,"hash_ids":[828167,828168,828169,828170,828171,828172,828173,828174,828175],"delay":4754.9} +{"session_id":"sess-3a002e042f98","input_length":1747,"output_length":497,"hash_ids":[828176,828177,828178,828179],"delay":122.3} +{"session_id":"sess-3a002e042f98","input_length":1899,"output_length":185,"hash_ids":[828180,828181,828182,828183],"delay":3062.0} +{"session_id":"sess-3a002e042f98","input_length":1000,"output_length":174,"hash_ids":[828184,828185],"delay":134.8} +{"session_id":"sess-3a002e042f98","input_length":2703,"output_length":814,"hash_ids":[828186,828187,828188,828189,828190,828191],"delay":192.6} +{"session_id":"sess-3a002e042f98","input_length":2620,"output_length":1309,"hash_ids":[828192,828193,828194,828195,828196,828197],"delay":822.8} +{"session_id":"sess-9118faff1c8b","input_length":58210,"output_length":430,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,832063,832064,832065,832066,832067,832068,832069,832070,832071,832072,832073],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9118faff1c8b","input_length":2056,"output_length":181,"hash_ids":[832074,832075,832076,832077,832078],"delay":548.4} +{"session_id":"sess-9118faff1c8b","input_length":4745,"output_length":349,"hash_ids":[832079,832080,832081,832082,832083,832084,832085,832086,832087,832088],"delay":817.2} +{"session_id":"sess-9118faff1c8b","input_length":822,"output_length":561,"hash_ids":[832089,832090],"delay":206.9} +{"session_id":"sess-9118faff1c8b","input_length":980,"output_length":354,"hash_ids":[832091,832092],"delay":2967.9} +{"session_id":"sess-9118faff1c8b","input_length":1589,"output_length":1146,"hash_ids":[832093,832094,832095,832096],"delay":25516.0} +{"session_id":"sess-9118faff1c8b","input_length":5463,"output_length":733,"hash_ids":[832097,832098,832099,832100,832101,832102,832103,832104,832105,832106,832107],"delay":27503.1} +{"session_id":"sess-9118faff1c8b","input_length":477,"output_length":77,"hash_ids":[832108],"delay":6527.4} +{"session_id":"sess-9118faff1c8b","input_length":1024,"output_length":423,"hash_ids":[832109,832110],"delay":626.4} +{"session_id":"sess-9118faff1c8b","input_length":435,"output_length":716,"hash_ids":[832111],"delay":49881.5} +{"session_id":"sess-9118faff1c8b","input_length":792,"output_length":156,"hash_ids":[832112,832113],"delay":34446.3} +{"session_id":"sess-9118faff1c8b","input_length":499,"output_length":1237,"hash_ids":[832114],"delay":2677.1} +{"session_id":"sess-9118faff1c8b","input_length":1463,"output_length":387,"hash_ids":[832115,832116,832117],"delay":2602.9} +{"session_id":"sess-9118faff1c8b","input_length":2345,"output_length":581,"hash_ids":[832118,832119,832120,832121,832122],"delay":243.9} +{"session_id":"sess-9118faff1c8b","input_length":1744,"output_length":2344,"hash_ids":[832123,832124,832125,832126],"delay":545.3} +{"session_id":"sess-9118faff1c8b","input_length":646,"output_length":165,"hash_ids":[832127,832128],"delay":1514.1} +{"session_id":"sess-9118faff1c8b","input_length":5204,"output_length":112,"hash_ids":[832129,832130,832131,832132,832133,832134,832135,832136,832137,832138,832139],"delay":583.3} +{"session_id":"sess-9118faff1c8b","input_length":3775,"output_length":285,"hash_ids":[832140,832141,832142,832143,832144,832145,832146,832147],"delay":1126.5} +{"session_id":"sess-9118faff1c8b","input_length":2071,"output_length":337,"hash_ids":[832148,832149,832150,832151,832152],"delay":3982.1} +{"session_id":"sess-9118faff1c8b","input_length":457,"output_length":999,"hash_ids":[832153],"delay":3500.7} +{"session_id":"sess-9118faff1c8b","input_length":2386,"output_length":440,"hash_ids":[832154,832155,832156,832157,832158],"delay":841.6} +{"session_id":"sess-9118faff1c8b","input_length":1754,"output_length":462,"hash_ids":[832159,832160,832161,832162],"delay":326.8} +{"session_id":"sess-9118faff1c8b","input_length":160,"output_length":77,"hash_ids":[832163],"delay":767.9} +{"session_id":"sess-9118faff1c8b","input_length":3456,"output_length":618,"hash_ids":[832164,832165,832166,832167,832168,832169,832170],"delay":8655.5} +{"session_id":"sess-9118faff1c8b","input_length":1179,"output_length":158,"hash_ids":[832171,832172,832173],"delay":400.3} +{"session_id":"sess-9118faff1c8b","input_length":337,"output_length":236,"hash_ids":[832174],"delay":2702.1} +{"session_id":"sess-9118faff1c8b","input_length":3840,"output_length":80,"hash_ids":[832175,832176,832177,832178,832179,832180,832181,832182],"delay":424.1} +{"session_id":"sess-9118faff1c8b","input_length":2974,"output_length":1722,"hash_ids":[832183,832184,832185,832186,832187,832188],"delay":791.9} +{"session_id":"sess-c215ba260596","input_length":52613,"output_length":729,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502],"timestamp":0.0,"group_id":37} +{"session_id":"sess-c215ba260596","input_length":2517,"output_length":234,"hash_ids":[832189,832190,832191,832192,832193],"delay":38849.6} +{"session_id":"sess-f3d4a1c16801","input_length":64173,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,840063,840064,840065,840066,840067,840068,840069,840070,840071,840072,840073,840074,840075,840076,840077,840078,840079,840080,840081,840082,840083,840084,840085],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f3d4a1c16801","input_length":4986,"output_length":43,"hash_ids":[840086,840087,840088,840089,840090,840091,840092,840093,840094,840095],"delay":1026.7} +{"session_id":"sess-f3d4a1c16801","input_length":775,"output_length":361,"hash_ids":[840096,840097],"delay":494.3} +{"session_id":"sess-f3d4a1c16801","input_length":3123,"output_length":146,"hash_ids":[840098,840099,840100,840101,840102,840103,840104],"delay":1404.1} +{"session_id":"sess-f3d4a1c16801","input_length":9264,"output_length":86,"hash_ids":[840105,840106,840107,840108,840109,840110,840111,840112,840113,840114,840115,840116,840117,840118,840119,840120,840121,840122,840123],"delay":9711.6} +{"session_id":"sess-f3d4a1c16801","input_length":1535,"output_length":119,"hash_ids":[840124,840125,840126],"delay":1942.6} +{"session_id":"sess-f3d4a1c16801","input_length":1484,"output_length":837,"hash_ids":[840127,840128,840129],"delay":15292.4} +{"session_id":"sess-f3d4a1c16801","input_length":442,"output_length":750,"hash_ids":[840130],"delay":1169.3} +{"session_id":"sess-f3d4a1c16801","input_length":266,"output_length":114,"hash_ids":[840131],"delay":1505.5} +{"session_id":"sess-f3d4a1c16801","input_length":1877,"output_length":745,"hash_ids":[840132,840133,840134,840135],"delay":4575.1} +{"session_id":"sess-f3d4a1c16801","input_length":106,"output_length":545,"hash_ids":[840136],"delay":134.4} +{"session_id":"sess-f3d4a1c16801","input_length":4197,"output_length":756,"hash_ids":[840137,840138,840139,840140,840141,840142,840143,840144,840145],"delay":481.0} +{"session_id":"sess-f3d4a1c16801","input_length":1686,"output_length":208,"hash_ids":[840146,840147,840148,840149],"delay":455.8} +{"session_id":"sess-f3d4a1c16801","input_length":2413,"output_length":673,"hash_ids":[840150,840151,840152,840153,840154],"delay":433.9} +{"session_id":"sess-f3d4a1c16801","input_length":815,"output_length":164,"hash_ids":[840155,840156],"delay":370.5} +{"session_id":"sess-f3d4a1c16801","input_length":5639,"output_length":205,"hash_ids":[840157,840158,840159,840160,840161,840162,840163,840164,840165,840166,840167,840168],"delay":10798.4} +{"session_id":"sess-f3d4a1c16801","input_length":575,"output_length":193,"hash_ids":[840169,840170],"delay":127.3} +{"session_id":"sess-684ad0435933","input_length":53517,"output_length":272,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,844063,844064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-684ad0435933","input_length":144,"output_length":185,"hash_ids":[844065],"delay":795.6} +{"session_id":"sess-684ad0435933","input_length":2711,"output_length":356,"hash_ids":[844066,844067,844068,844069,844070,844071],"delay":4935.9} +{"session_id":"sess-684ad0435933","input_length":1077,"output_length":203,"hash_ids":[844072,844073,844074],"delay":13303.2} +{"session_id":"sess-684ad0435933","input_length":4292,"output_length":1551,"hash_ids":[844075,844076,844077,844078,844079,844080,844081,844082,844083],"delay":1325.8} +{"session_id":"sess-684ad0435933","input_length":4248,"output_length":1660,"hash_ids":[844084,844085,844086,844087,844088,844089,844090,844091,844092],"delay":579.1} +{"session_id":"sess-684ad0435933","input_length":1699,"output_length":272,"hash_ids":[844093,844094,844095,844096],"delay":7002.9} +{"session_id":"sess-684ad0435933","input_length":7619,"output_length":277,"hash_ids":[844097,844098,844099,844100,844101,844102,844103,844104,844105,844106,844107,844108,844109,844110,844111],"delay":331.8} +{"session_id":"sess-684ad0435933","input_length":2619,"output_length":935,"hash_ids":[844112,844113,844114,844115,844116,844117],"delay":4096.5} +{"session_id":"sess-684ad0435933","input_length":1115,"output_length":466,"hash_ids":[844118,844119,844120],"delay":1072.5} +{"session_id":"sess-684ad0435933","input_length":3678,"output_length":107,"hash_ids":[844121,844122,844123,844124,844125,844126,844127,844128],"delay":432.0} +{"session_id":"sess-d540499bd0da","input_length":54384,"output_length":110,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,848063,848064,848065,848066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d540499bd0da","input_length":2010,"output_length":637,"hash_ids":[848067,848068,848069,848070],"delay":51568.3} +{"session_id":"sess-d540499bd0da","input_length":797,"output_length":147,"hash_ids":[848071,848072],"delay":18014.1} +{"session_id":"sess-d540499bd0da","input_length":4767,"output_length":1144,"hash_ids":[848073,848074,848075,848076,848077,848078,848079,848080,848081,848082],"delay":15536.0} +{"session_id":"sess-d540499bd0da","input_length":5791,"output_length":1445,"hash_ids":[848083,848084,848085,848086,848087,848088,848089,848090,848091,848092,848093,848094],"delay":600.6} +{"session_id":"sess-d540499bd0da","input_length":3757,"output_length":1272,"hash_ids":[848095,848096,848097,848098,848099,848100,848101,848102],"delay":204.8} +{"session_id":"sess-d540499bd0da","input_length":3665,"output_length":1332,"hash_ids":[848103,848104,848105,848106,848107,848108,848109,848110],"delay":606.4} +{"session_id":"sess-d540499bd0da","input_length":1559,"output_length":37,"hash_ids":[848111,848112,848113,848114],"delay":1459.6} +{"session_id":"sess-d540499bd0da","input_length":802,"output_length":81,"hash_ids":[848115,848116],"delay":586.9} +{"session_id":"sess-d540499bd0da","input_length":78,"output_length":123,"hash_ids":[848117],"delay":143.6} +{"session_id":"sess-d540499bd0da","input_length":772,"output_length":688,"hash_ids":[848118,848119],"delay":654.2} +{"session_id":"sess-d540499bd0da","input_length":540,"output_length":378,"hash_ids":[848120,848121],"delay":11869.6} +{"session_id":"sess-d540499bd0da","input_length":587,"output_length":243,"hash_ids":[848122,848123],"delay":1179.9} +{"session_id":"sess-d540499bd0da","input_length":2573,"output_length":147,"hash_ids":[848124,848125,848126,848127,848128,848129],"delay":1188.5} +{"session_id":"sess-d540499bd0da","input_length":5174,"output_length":700,"hash_ids":[848130,848131,848132,848133,848134,848135,848136,848137,848138,848139,848140],"delay":6389.1} +{"session_id":"sess-d540499bd0da","input_length":7878,"output_length":275,"hash_ids":[848141,848142,848143,848144,848145,848146,848147,848148,848149,848150,848151,848152,848153,848154,848155,848156],"delay":17063.2} +{"session_id":"sess-d540499bd0da","input_length":4693,"output_length":45,"hash_ids":[848157,848158,848159,848160,848161,848162,848163,848164,848165,848166],"delay":2807.2} +{"session_id":"sess-d540499bd0da","input_length":3174,"output_length":93,"hash_ids":[848167,848168,848169,848170,848171,848172,848173],"delay":843.5} +{"session_id":"sess-d540499bd0da","input_length":3929,"output_length":167,"hash_ids":[848174,848175,848176,848177,848178,848179,848180,848181],"delay":785.0} +{"session_id":"sess-d540499bd0da","input_length":1612,"output_length":1211,"hash_ids":[848182,848183,848184,848185],"delay":4075.1} +{"session_id":"sess-d540499bd0da","input_length":6542,"output_length":30,"hash_ids":[848186,848187,848188,848189,848190,848191,848192,848193,848194,848195,848196,848197,848198],"delay":532.1} +{"session_id":"sess-d540499bd0da","input_length":1176,"output_length":561,"hash_ids":[848199,848200,848201],"delay":11383.5} +{"session_id":"sess-5c729436244c","input_length":52643,"output_length":2316,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902],"timestamp":0.0,"group_id":4} +{"session_id":"sess-5c729436244c","input_length":1895,"output_length":161,"hash_ids":[848202,848203,848204,848205],"delay":38023.4} +{"session_id":"sess-5c729436244c","input_length":2222,"output_length":1580,"hash_ids":[848206,848207,848208,848209,848210],"delay":1844.5} +{"session_id":"sess-5c729436244c","input_length":2708,"output_length":69,"hash_ids":[848211,848212,848213,848214,848215,848216],"delay":1633.6} +{"session_id":"sess-5c729436244c","input_length":7750,"output_length":820,"hash_ids":[848217,848218,848219,848220,848221,848222,848223,848224,848225,848226,848227,848228,848229,848230,848231,848232],"delay":331.9} +{"session_id":"sess-5c729436244c","input_length":575,"output_length":1425,"hash_ids":[848233,848234],"delay":595.6} +{"session_id":"sess-5c729436244c","input_length":444,"output_length":111,"hash_ids":[848235],"delay":16043.4} +{"session_id":"sess-5c729436244c","input_length":995,"output_length":977,"hash_ids":[848236,848237],"delay":1329.1} +{"session_id":"sess-5c729436244c","input_length":215,"output_length":168,"hash_ids":[848238],"delay":1039.2} +{"session_id":"sess-6f076c73d333","input_length":56201,"output_length":117,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,856063,856064,856065,856066,856067,856068,856069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6f076c73d333","input_length":905,"output_length":644,"hash_ids":[856070,856071],"delay":1742.1} +{"session_id":"sess-6f076c73d333","input_length":407,"output_length":161,"hash_ids":[856072],"delay":813.5} +{"session_id":"sess-6f076c73d333","input_length":1462,"output_length":211,"hash_ids":[856073,856074,856075],"delay":1061.9} +{"session_id":"sess-6f076c73d333","input_length":908,"output_length":1977,"hash_ids":[856076,856077],"delay":4965.7} +{"session_id":"sess-6f076c73d333","input_length":2334,"output_length":2817,"hash_ids":[856078,856079,856080,856081,856082],"delay":6008.4} +{"session_id":"sess-6f076c73d333","input_length":1548,"output_length":229,"hash_ids":[856083,856084,856085,856086],"delay":1287.7} +{"session_id":"sess-6f076c73d333","input_length":3073,"output_length":173,"hash_ids":[856087,856088,856089,856090,856091,856092,856093],"delay":1014.8} +{"session_id":"sess-6f076c73d333","input_length":5167,"output_length":950,"hash_ids":[856094,856095,856096,856097,856098,856099,856100,856101,856102,856103,856104],"delay":31418.5} +{"session_id":"sess-6f076c73d333","input_length":1891,"output_length":699,"hash_ids":[856105,856106,856107,856108],"delay":1808.4} +{"session_id":"sess-6f076c73d333","input_length":574,"output_length":78,"hash_ids":[856109,856110],"delay":573.6} +{"session_id":"sess-6f076c73d333","input_length":1817,"output_length":296,"hash_ids":[856111,856112,856113,856114],"delay":2457.7} +{"session_id":"sess-6f076c73d333","input_length":737,"output_length":148,"hash_ids":[856115,856116],"delay":2661.6} +{"session_id":"sess-6f076c73d333","input_length":370,"output_length":381,"hash_ids":[856117],"delay":1108.2} +{"session_id":"sess-6f076c73d333","input_length":1798,"output_length":614,"hash_ids":[856118,856119,856120,856121],"delay":608.1} +{"session_id":"sess-6f076c73d333","input_length":3103,"output_length":494,"hash_ids":[856122,856123,856124,856125,856126,856127,856128],"delay":1547.5} +{"session_id":"sess-6f076c73d333","input_length":2585,"output_length":553,"hash_ids":[856129,856130,856131,856132,856133,856134],"delay":4740.1} +{"session_id":"sess-6f076c73d333","input_length":496,"output_length":832,"hash_ids":[856135],"delay":2072.4} +{"session_id":"sess-6f076c73d333","input_length":212,"output_length":267,"hash_ids":[856136],"delay":9808.2} +{"session_id":"sess-6f076c73d333","input_length":2728,"output_length":544,"hash_ids":[856137,856138,856139,856140,856141,856142],"delay":457.3} +{"session_id":"sess-6f076c73d333","input_length":448,"output_length":252,"hash_ids":[856143],"delay":1928.4} +{"session_id":"sess-6f076c73d333","input_length":3592,"output_length":327,"hash_ids":[856144,856145,856146,856147,856148,856149,856150,856151],"delay":1044.1} +{"session_id":"sess-6f076c73d333","input_length":635,"output_length":577,"hash_ids":[856152,856153],"delay":1218.7} +{"session_id":"sess-6f076c73d333","input_length":5899,"output_length":454,"hash_ids":[856154,856155,856156,856157,856158,856159,856160,856161,856162,856163,856164,856165],"delay":12106.0} +{"session_id":"sess-6f076c73d333","input_length":5078,"output_length":795,"hash_ids":[856166,856167,856168,856169,856170,856171,856172,856173,856174,856175],"delay":1394.5} +{"session_id":"sess-6f076c73d333","input_length":3265,"output_length":570,"hash_ids":[856176,856177,856178,856179,856180,856181,856182],"delay":7456.5} +{"session_id":"sess-6f076c73d333","input_length":5146,"output_length":475,"hash_ids":[856183,856184,856185,856186,856187,856188,856189,856190,856191,856192,856193],"delay":268.6} +{"session_id":"sess-6f076c73d333","input_length":2136,"output_length":1123,"hash_ids":[856194,856195,856196,856197,856198],"delay":308.7} +{"session_id":"sess-e8f25057f252","input_length":54206,"output_length":235,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,860063,860064,860065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-e8f25057f252","input_length":1881,"output_length":348,"hash_ids":[860066,860067,860068,860069],"delay":638.1} +{"session_id":"sess-e8f25057f252","input_length":782,"output_length":157,"hash_ids":[860070,860071],"delay":2505.8} +{"session_id":"sess-e8f25057f252","input_length":1770,"output_length":106,"hash_ids":[860072,860073,860074,860075],"delay":724.4} +{"session_id":"sess-e8f25057f252","input_length":330,"output_length":1466,"hash_ids":[860076],"delay":3362.5} +{"session_id":"sess-e8f25057f252","input_length":1612,"output_length":145,"hash_ids":[860077,860078,860079,860080],"delay":6879.0} +{"session_id":"sess-e8f25057f252","input_length":1959,"output_length":1175,"hash_ids":[860081,860082,860083,860084],"delay":2181.2} +{"session_id":"sess-e8f25057f252","input_length":374,"output_length":1207,"hash_ids":[860085],"delay":3421.5} +{"session_id":"sess-e8f25057f252","input_length":1470,"output_length":123,"hash_ids":[860086,860087,860088],"delay":650.2} +{"session_id":"sess-e8f25057f252","input_length":1408,"output_length":710,"hash_ids":[860089,860090,860091],"delay":1325.7} +{"session_id":"sess-e8f25057f252","input_length":5053,"output_length":83,"hash_ids":[860092,860093,860094,860095,860096,860097,860098,860099,860100,860101],"delay":4503.8} +{"session_id":"sess-e8f25057f252","input_length":2741,"output_length":110,"hash_ids":[860102,860103,860104,860105,860106,860107],"delay":507.6} +{"session_id":"sess-0ae941adccb9","input_length":62456,"output_length":372,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,864063,864064,864065,864066,864067,864068,864069,864070,864071,864072,864073,864074,864075,864076,864077,864078,864079,864080,864081],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0ae941adccb9","input_length":923,"output_length":38,"hash_ids":[864082,864083],"delay":2903.4} +{"session_id":"sess-0ae941adccb9","input_length":725,"output_length":727,"hash_ids":[864084,864085],"delay":1007.8} +{"session_id":"sess-0ae941adccb9","input_length":961,"output_length":213,"hash_ids":[864086,864087],"delay":22466.6} +{"session_id":"sess-0ae941adccb9","input_length":3367,"output_length":108,"hash_ids":[864088,864089,864090,864091,864092,864093,864094],"delay":7302.4} +{"session_id":"sess-0ae941adccb9","input_length":1233,"output_length":871,"hash_ids":[864095,864096,864097],"delay":370.9} +{"session_id":"sess-0ae941adccb9","input_length":1849,"output_length":443,"hash_ids":[864098,864099,864100,864101],"delay":412.8} +{"session_id":"sess-0ae941adccb9","input_length":355,"output_length":758,"hash_ids":[864102],"delay":638.1} +{"session_id":"sess-0ae941adccb9","input_length":1104,"output_length":773,"hash_ids":[864103,864104,864105],"delay":6639.8} +{"session_id":"sess-0ae941adccb9","input_length":2052,"output_length":238,"hash_ids":[864106,864107,864108,864109,864110],"delay":25970.3} +{"session_id":"sess-0ae941adccb9","input_length":1315,"output_length":64,"hash_ids":[864111,864112,864113],"delay":656.8} +{"session_id":"sess-0ae941adccb9","input_length":849,"output_length":2673,"hash_ids":[864114,864115],"delay":370.1} +{"session_id":"sess-0ae941adccb9","input_length":252,"output_length":819,"hash_ids":[864116],"delay":630.7} +{"session_id":"sess-0ae941adccb9","input_length":456,"output_length":869,"hash_ids":[864117],"delay":56.3} +{"session_id":"sess-0ae941adccb9","input_length":1463,"output_length":392,"hash_ids":[864118,864119,864120],"delay":322.5} +{"session_id":"sess-0ae941adccb9","input_length":3993,"output_length":358,"hash_ids":[864121,864122,864123,864124,864125,864126,864127,864128],"delay":571.3} +{"session_id":"sess-0ae941adccb9","input_length":6395,"output_length":45,"hash_ids":[864129,864130,864131,864132,864133,864134,864135,864136,864137,864138,864139,864140,864141],"delay":43951.2} +{"session_id":"sess-0ae941adccb9","input_length":1732,"output_length":437,"hash_ids":[864142,864143,864144,864145],"delay":10162.1} +{"session_id":"sess-0ae941adccb9","input_length":5354,"output_length":381,"hash_ids":[864146,864147,864148,864149,864150,864151,864152,864153,864154,864155,864156],"delay":533.8} +{"session_id":"sess-0ae941adccb9","input_length":81,"output_length":279,"hash_ids":[864157],"delay":28127.1} +{"session_id":"sess-0ae941adccb9","input_length":1971,"output_length":109,"hash_ids":[864158,864159,864160,864161],"delay":30.8} +{"session_id":"sess-0ae941adccb9","input_length":9631,"output_length":283,"hash_ids":[864162,864163,864164,864165,864166,864167,864168,864169,864170,864171,864172,864173,864174,864175,864176,864177,864178,864179,864180],"delay":784.9} +{"session_id":"sess-0ae941adccb9","input_length":7150,"output_length":547,"hash_ids":[864181,864182,864183,864184,864185,864186,864187,864188,864189,864190,864191,864192,864193,864194],"delay":195.9} +{"session_id":"sess-0ae941adccb9","input_length":885,"output_length":653,"hash_ids":[864195,864196],"delay":8225.1} +{"session_id":"sess-4fe06c797f84","input_length":55303,"output_length":1097,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,868063,868064,868065,868066,868067,868068],"timestamp":0.0,"group_id":9} +{"session_id":"sess-4fe06c797f84","input_length":3936,"output_length":98,"hash_ids":[868069,868070,868071,868072,868073,868074,868075,868076],"delay":2568.7} +{"session_id":"sess-4fe06c797f84","input_length":6853,"output_length":316,"hash_ids":[868077,868078,868079,868080,868081,868082,868083,868084,868085,868086,868087,868088,868089,868090],"delay":695.1} +{"session_id":"sess-4fe06c797f84","input_length":1937,"output_length":376,"hash_ids":[868091,868092,868093,868094],"delay":935.4} +{"session_id":"sess-4fe06c797f84","input_length":526,"output_length":319,"hash_ids":[868095,868096],"delay":1131.3} +{"session_id":"sess-4fe06c797f84","input_length":412,"output_length":32,"hash_ids":[868097],"delay":1373.3} +{"session_id":"sess-4fe06c797f84","input_length":2328,"output_length":438,"hash_ids":[868098,868099,868100,868101,868102],"delay":176.2} +{"session_id":"sess-4fe06c797f84","input_length":1131,"output_length":279,"hash_ids":[868103,868104,868105],"delay":43470.8} +{"session_id":"sess-4fe06c797f84","input_length":1162,"output_length":1267,"hash_ids":[868106,868107,868108],"delay":1091.7} +{"session_id":"sess-4fe06c797f84","input_length":2156,"output_length":257,"hash_ids":[868109,868110,868111,868112,868113],"delay":1272.5} +{"session_id":"sess-4fe06c797f84","input_length":1931,"output_length":2524,"hash_ids":[868114,868115,868116,868117],"delay":22274.4} +{"session_id":"sess-4fe06c797f84","input_length":1470,"output_length":576,"hash_ids":[868118,868119,868120],"delay":256.6} +{"session_id":"sess-4fe06c797f84","input_length":2651,"output_length":366,"hash_ids":[868121,868122,868123,868124,868125,868126],"delay":18919.9} +{"session_id":"sess-4fe06c797f84","input_length":3965,"output_length":578,"hash_ids":[868127,868128,868129,868130,868131,868132,868133,868134],"delay":796.7} +{"session_id":"sess-4fe06c797f84","input_length":1375,"output_length":806,"hash_ids":[868135,868136,868137],"delay":2446.2} +{"session_id":"sess-4fe06c797f84","input_length":6026,"output_length":289,"hash_ids":[868138,868139,868140,868141,868142,868143,868144,868145,868146,868147,868148,868149],"delay":5339.1} +{"session_id":"sess-4fe06c797f84","input_length":3788,"output_length":149,"hash_ids":[868150,868151,868152,868153,868154,868155,868156,868157],"delay":970.5} +{"session_id":"sess-4fe06c797f84","input_length":2225,"output_length":1191,"hash_ids":[868158,868159,868160,868161,868162],"delay":20580.2} +{"session_id":"sess-4fe06c797f84","input_length":2496,"output_length":436,"hash_ids":[868163,868164,868165,868166,868167],"delay":830.1} +{"session_id":"sess-4fe06c797f84","input_length":9711,"output_length":101,"hash_ids":[868168,868169,868170,868171,868172,868173,868174,868175,868176,868177,868178,868179,868180,868181,868182,868183,868184,868185,868186],"delay":155.9} +{"session_id":"sess-4fe06c797f84","input_length":6404,"output_length":1814,"hash_ids":[868187,868188,868189,868190,868191,868192,868193,868194,868195,868196,868197,868198,868199],"delay":351.1} +{"session_id":"sess-009805b0c502","input_length":53660,"output_length":55,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,872063,872064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-009805b0c502","input_length":385,"output_length":129,"hash_ids":[872065],"delay":1248.8} +{"session_id":"sess-009805b0c502","input_length":651,"output_length":724,"hash_ids":[872066,872067],"delay":2572.4} +{"session_id":"sess-009805b0c502","input_length":2179,"output_length":108,"hash_ids":[872068,872069,872070,872071,872072],"delay":6353.9} +{"session_id":"sess-009805b0c502","input_length":2034,"output_length":241,"hash_ids":[872073,872074,872075,872076],"delay":62264.3} +{"session_id":"sess-009805b0c502","input_length":458,"output_length":467,"hash_ids":[872077],"delay":9705.9} +{"session_id":"sess-009805b0c502","input_length":1690,"output_length":259,"hash_ids":[872078,872079,872080,872081],"delay":4579.1} +{"session_id":"sess-009805b0c502","input_length":9230,"output_length":183,"hash_ids":[872082,872083,872084,872085,872086,872087,872088,872089,872090,872091,872092,872093,872094,872095,872096,872097,872098,872099,872100],"delay":54698.5} +{"session_id":"sess-009805b0c502","input_length":1969,"output_length":546,"hash_ids":[872101,872102,872103,872104],"delay":452.0} +{"session_id":"sess-009805b0c502","input_length":1314,"output_length":268,"hash_ids":[872105,872106,872107],"delay":170.6} +{"session_id":"sess-009805b0c502","input_length":396,"output_length":210,"hash_ids":[872108],"delay":788.6} +{"session_id":"sess-009805b0c502","input_length":750,"output_length":421,"hash_ids":[872109,872110],"delay":885.4} +{"session_id":"sess-009805b0c502","input_length":6191,"output_length":159,"hash_ids":[872111,872112,872113,872114,872115,872116,872117,872118,872119,872120,872121,872122,872123],"delay":2034.9} +{"session_id":"sess-009805b0c502","input_length":3445,"output_length":2248,"hash_ids":[872124,872125,872126,872127,872128,872129,872130],"delay":1385.8} +{"session_id":"sess-009805b0c502","input_length":4156,"output_length":978,"hash_ids":[872131,872132,872133,872134,872135,872136,872137,872138,872139],"delay":16487.3} +{"session_id":"sess-009805b0c502","input_length":2286,"output_length":1851,"hash_ids":[872140,872141,872142,872143,872144],"delay":291.1} +{"session_id":"sess-009805b0c502","input_length":726,"output_length":198,"hash_ids":[872145,872146],"delay":3190.2} +{"session_id":"sess-009805b0c502","input_length":1044,"output_length":1100,"hash_ids":[872147,872148,872149],"delay":356.5} +{"session_id":"sess-739fea66db2e","input_length":62212,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,876063,876064,876065,876066,876067,876068,876069,876070,876071,876072,876073,876074,876075,876076,876077,876078,876079,876080,876081],"timestamp":0.0,"group_id":5} +{"session_id":"sess-739fea66db2e","input_length":8421,"output_length":113,"hash_ids":[876082,876083,876084,876085,876086,876087,876088,876089,876090,876091,876092,876093,876094,876095,876096,876097,876098],"delay":2028.8} +{"session_id":"sess-739fea66db2e","input_length":4219,"output_length":664,"hash_ids":[876099,876100,876101,876102,876103,876104,876105,876106,876107],"delay":457.8} +{"session_id":"sess-739fea66db2e","input_length":755,"output_length":859,"hash_ids":[876108,876109],"delay":609.6} +{"session_id":"sess-739fea66db2e","input_length":1238,"output_length":30,"hash_ids":[876110,876111,876112],"delay":30580.3} +{"session_id":"sess-739fea66db2e","input_length":4139,"output_length":135,"hash_ids":[876113,876114,876115,876116,876117,876118,876119,876120,876121],"delay":3898.3} +{"session_id":"sess-739fea66db2e","input_length":7819,"output_length":191,"hash_ids":[876122,876123,876124,876125,876126,876127,876128,876129,876130,876131,876132,876133,876134,876135,876136,876137],"delay":4715.9} +{"session_id":"sess-739fea66db2e","input_length":815,"output_length":380,"hash_ids":[876138,876139],"delay":1149.6} +{"session_id":"sess-739fea66db2e","input_length":593,"output_length":660,"hash_ids":[876140,876141],"delay":24408.5} +{"session_id":"sess-739fea66db2e","input_length":806,"output_length":346,"hash_ids":[876142,876143],"delay":410.6} +{"session_id":"sess-739fea66db2e","input_length":570,"output_length":523,"hash_ids":[876144,876145],"delay":991.4} +{"session_id":"sess-739fea66db2e","input_length":433,"output_length":227,"hash_ids":[876146],"delay":422.1} +{"session_id":"sess-739fea66db2e","input_length":241,"output_length":478,"hash_ids":[876147],"delay":12840.4} +{"session_id":"sess-739fea66db2e","input_length":2289,"output_length":552,"hash_ids":[876148,876149,876150,876151,876152],"delay":3875.4} +{"session_id":"sess-739fea66db2e","input_length":8329,"output_length":266,"hash_ids":[876153,876154,876155,876156,876157,876158,876159,876160,876161,876162,876163,876164,876165,876166,876167,876168,876169],"delay":200.0} +{"session_id":"sess-739fea66db2e","input_length":7906,"output_length":277,"hash_ids":[876170,876171,876172,876173,876174,876175,876176,876177,876178,876179,876180,876181,876182,876183,876184,876185],"delay":223.5} +{"session_id":"sess-739fea66db2e","input_length":559,"output_length":196,"hash_ids":[876186,876187],"delay":4958.0} +{"session_id":"sess-739fea66db2e","input_length":1903,"output_length":318,"hash_ids":[876188,876189,876190,876191],"delay":382.2} +{"session_id":"sess-739fea66db2e","input_length":749,"output_length":1240,"hash_ids":[876192,876193],"delay":4690.9} +{"session_id":"sess-739fea66db2e","input_length":3936,"output_length":409,"hash_ids":[876194,876195,876196,876197,876198,876199,876200,876201],"delay":3083.5} +{"session_id":"sess-739fea66db2e","input_length":1303,"output_length":94,"hash_ids":[876202,876203,876204],"delay":431.0} +{"session_id":"sess-739fea66db2e","input_length":2972,"output_length":724,"hash_ids":[876205,876206,876207,876208,876209,876210],"delay":4249.5} +{"session_id":"sess-8583bc71c4bc","input_length":65401,"output_length":36,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,880063,880064,880065,880066,880067,880068,880069,880070,880071,880072,880073,880074,880075,880076,880077,880078,880079,880080,880081,880082,880083,880084,880085,880086,880087],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8583bc71c4bc","input_length":3008,"output_length":50,"hash_ids":[880088,880089,880090,880091,880092,880093],"delay":6141.9} +{"session_id":"sess-8583bc71c4bc","input_length":2177,"output_length":80,"hash_ids":[880094,880095,880096,880097,880098],"delay":1561.0} +{"session_id":"sess-8583bc71c4bc","input_length":2686,"output_length":1089,"hash_ids":[880099,880100,880101,880102,880103,880104],"delay":29493.9} +{"session_id":"sess-8583bc71c4bc","input_length":1819,"output_length":668,"hash_ids":[880105,880106,880107,880108],"delay":6819.2} +{"session_id":"sess-8583bc71c4bc","input_length":3929,"output_length":753,"hash_ids":[880109,880110,880111,880112,880113,880114,880115,880116],"delay":2200.1} +{"session_id":"sess-8583bc71c4bc","input_length":4021,"output_length":154,"hash_ids":[880117,880118,880119,880120,880121,880122,880123,880124],"delay":1798.4} +{"session_id":"sess-8583bc71c4bc","input_length":325,"output_length":378,"hash_ids":[880125],"delay":908.6} +{"session_id":"sess-8583bc71c4bc","input_length":3307,"output_length":880,"hash_ids":[880126,880127,880128,880129,880130,880131,880132],"delay":859.5} +{"session_id":"sess-8583bc71c4bc","input_length":8696,"output_length":415,"hash_ids":[880133,880134,880135,880136,880137,880138,880139,880140,880141,880142,880143,880144,880145,880146,880147,880148,880149],"delay":11907.9} +{"session_id":"sess-8583bc71c4bc","input_length":9379,"output_length":45,"hash_ids":[880150,880151,880152,880153,880154,880155,880156,880157,880158,880159,880160,880161,880162,880163,880164,880165,880166,880167,880168],"delay":2428.4} +{"session_id":"sess-8583bc71c4bc","input_length":7421,"output_length":244,"hash_ids":[880169,880170,880171,880172,880173,880174,880175,880176,880177,880178,880179,880180,880181,880182,880183],"delay":667.0} +{"session_id":"sess-8583bc71c4bc","input_length":892,"output_length":262,"hash_ids":[880184,880185],"delay":627.9} +{"session_id":"sess-8583bc71c4bc","input_length":202,"output_length":2337,"hash_ids":[880186],"delay":350.2} +{"session_id":"sess-8583bc71c4bc","input_length":1712,"output_length":1829,"hash_ids":[880187,880188,880189,880190],"delay":24661.0} +{"session_id":"sess-8583bc71c4bc","input_length":2230,"output_length":379,"hash_ids":[880191,880192,880193,880194,880195],"delay":727.1} +{"session_id":"sess-8583bc71c4bc","input_length":1612,"output_length":186,"hash_ids":[880196,880197,880198,880199],"delay":1017.8} +{"session_id":"sess-7b1964aceb2b","input_length":57826,"output_length":244,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,884063,884064,884065,884066,884067,884068,884069,884070,884071,884072],"timestamp":0.0,"group_id":9} +{"session_id":"sess-7b1964aceb2b","input_length":9775,"output_length":1672,"hash_ids":[884073,884074,884075,884076,884077,884078,884079,884080,884081,884082,884083,884084,884085,884086,884087,884088,884089,884090,884091,884092],"delay":1991.0} +{"session_id":"sess-7b1964aceb2b","input_length":202,"output_length":42,"hash_ids":[884093],"delay":1364.1} +{"session_id":"sess-7b1964aceb2b","input_length":698,"output_length":233,"hash_ids":[884094,884095],"delay":2530.9} +{"session_id":"sess-7b1964aceb2b","input_length":1165,"output_length":86,"hash_ids":[884096,884097,884098],"delay":4594.9} +{"session_id":"sess-7559c81e8ddc","input_length":53212,"output_length":1344,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,888063],"timestamp":0.0,"group_id":45} +{"session_id":"sess-7559c81e8ddc","input_length":1650,"output_length":275,"hash_ids":[888064,888065,888066,888067],"delay":13875.3} +{"session_id":"sess-7559c81e8ddc","input_length":914,"output_length":1611,"hash_ids":[888068,888069],"delay":10080.5} +{"session_id":"sess-7559c81e8ddc","input_length":317,"output_length":1110,"hash_ids":[888070],"delay":42071.4} +{"session_id":"sess-7559c81e8ddc","input_length":8776,"output_length":201,"hash_ids":[888071,888072,888073,888074,888075,888076,888077,888078,888079,888080,888081,888082,888083,888084,888085,888086,888087,888088],"delay":24367.5} +{"session_id":"sess-7559c81e8ddc","input_length":652,"output_length":619,"hash_ids":[888089,888090],"delay":3153.3} +{"session_id":"sess-7559c81e8ddc","input_length":7905,"output_length":273,"hash_ids":[888091,888092,888093,888094,888095,888096,888097,888098,888099,888100,888101,888102,888103,888104,888105,888106],"delay":1774.0} +{"session_id":"sess-7559c81e8ddc","input_length":5188,"output_length":85,"hash_ids":[888107,888108,888109,888110,888111,888112,888113,888114,888115,888116,888117],"delay":948.4} +{"session_id":"sess-7559c81e8ddc","input_length":3270,"output_length":95,"hash_ids":[888118,888119,888120,888121,888122,888123,888124],"delay":1558.0} +{"session_id":"sess-7559c81e8ddc","input_length":2031,"output_length":195,"hash_ids":[888125,888126,888127,888128],"delay":835.7} +{"session_id":"sess-7559c81e8ddc","input_length":839,"output_length":108,"hash_ids":[888129,888130],"delay":392.0} +{"session_id":"sess-7559c81e8ddc","input_length":2495,"output_length":2019,"hash_ids":[888131,888132,888133,888134,888135],"delay":389.8} +{"session_id":"sess-7559c81e8ddc","input_length":3391,"output_length":291,"hash_ids":[888136,888137,888138,888139,888140,888141,888142],"delay":22106.3} +{"session_id":"sess-7559c81e8ddc","input_length":5688,"output_length":391,"hash_ids":[888143,888144,888145,888146,888147,888148,888149,888150,888151,888152,888153,888154],"delay":1415.3} +{"session_id":"sess-7559c81e8ddc","input_length":422,"output_length":462,"hash_ids":[888155],"delay":755.5} +{"session_id":"sess-7559c81e8ddc","input_length":1357,"output_length":37,"hash_ids":[888156,888157,888158],"delay":492.2} +{"session_id":"sess-7559c81e8ddc","input_length":1490,"output_length":231,"hash_ids":[888159,888160,888161],"delay":260.2} +{"session_id":"sess-7559c81e8ddc","input_length":1563,"output_length":551,"hash_ids":[888162,888163,888164,888165],"delay":509.6} +{"session_id":"sess-7559c81e8ddc","input_length":3211,"output_length":227,"hash_ids":[888166,888167,888168,888169,888170,888171,888172],"delay":15201.1} +{"session_id":"sess-7559c81e8ddc","input_length":9855,"output_length":286,"hash_ids":[888173,888174,888175,888176,888177,888178,888179,888180,888181,888182,888183,888184,888185,888186,888187,888188,888189,888190,888191,888192],"delay":839.4} +{"session_id":"sess-7559c81e8ddc","input_length":1768,"output_length":237,"hash_ids":[888193,888194,888195,888196],"delay":267.4} +{"session_id":"sess-7559c81e8ddc","input_length":764,"output_length":188,"hash_ids":[888197,888198],"delay":957.5} +{"session_id":"sess-7559c81e8ddc","input_length":1427,"output_length":509,"hash_ids":[888199,888200,888201],"delay":1015.8} +{"session_id":"sess-829ec78e2f3a","input_length":52954,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,892063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-829ec78e2f3a","input_length":3670,"output_length":135,"hash_ids":[892064,892065,892066,892067,892068,892069,892070,892071],"delay":2305.2} +{"session_id":"sess-829ec78e2f3a","input_length":1739,"output_length":162,"hash_ids":[892072,892073,892074,892075],"delay":668.3} +{"session_id":"sess-829ec78e2f3a","input_length":2374,"output_length":110,"hash_ids":[892076,892077,892078,892079,892080],"delay":3532.7} +{"session_id":"sess-829ec78e2f3a","input_length":2451,"output_length":461,"hash_ids":[892081,892082,892083,892084,892085],"delay":14745.7} +{"session_id":"sess-829ec78e2f3a","input_length":3845,"output_length":436,"hash_ids":[892086,892087,892088,892089,892090,892091,892092,892093],"delay":2620.1} +{"session_id":"sess-829ec78e2f3a","input_length":219,"output_length":707,"hash_ids":[892094],"delay":479.4} +{"session_id":"sess-5add26a40b79","input_length":69990,"output_length":532,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,896063,896064,896065,896066,896067,896068,896069,896070,896071,896072,896073,896074,896075,896076,896077,896078,896079,896080,896081,896082,896083,896084,896085,896086,896087,896088,896089,896090,896091,896092,896093,896094,896095,896096],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5add26a40b79","input_length":1741,"output_length":1171,"hash_ids":[896097,896098,896099,896100],"delay":8363.3} +{"session_id":"sess-5add26a40b79","input_length":1743,"output_length":301,"hash_ids":[896101,896102,896103,896104],"delay":6933.4} +{"session_id":"sess-5add26a40b79","input_length":342,"output_length":287,"hash_ids":[896105],"delay":13006.7} +{"session_id":"sess-5add26a40b79","input_length":5430,"output_length":1230,"hash_ids":[896106,896107,896108,896109,896110,896111,896112,896113,896114,896115,896116],"delay":908.1} +{"session_id":"sess-5add26a40b79","input_length":201,"output_length":395,"hash_ids":[896117],"delay":770.4} +{"session_id":"sess-5add26a40b79","input_length":3019,"output_length":422,"hash_ids":[896118,896119,896120,896121,896122,896123],"delay":439.2} +{"session_id":"sess-5add26a40b79","input_length":2744,"output_length":74,"hash_ids":[896124,896125,896126,896127,896128,896129],"delay":2800.0} +{"session_id":"sess-5add26a40b79","input_length":4207,"output_length":78,"hash_ids":[896130,896131,896132,896133,896134,896135,896136,896137,896138],"delay":1157.2} +{"session_id":"sess-5add26a40b79","input_length":640,"output_length":538,"hash_ids":[896139,896140],"delay":586.2} +{"session_id":"sess-5add26a40b79","input_length":4953,"output_length":285,"hash_ids":[896141,896142,896143,896144,896145,896146,896147,896148,896149,896150],"delay":1198.5} +{"session_id":"sess-5add26a40b79","input_length":776,"output_length":513,"hash_ids":[896151,896152],"delay":3820.4} +{"session_id":"sess-5add26a40b79","input_length":1851,"output_length":232,"hash_ids":[896153,896154,896155,896156],"delay":179.8} +{"session_id":"sess-5add26a40b79","input_length":532,"output_length":642,"hash_ids":[896157,896158],"delay":8138.2} +{"session_id":"sess-5add26a40b79","input_length":4660,"output_length":86,"hash_ids":[896159,896160,896161,896162,896163,896164,896165,896166,896167,896168],"delay":14202.6} +{"session_id":"sess-5add26a40b79","input_length":2335,"output_length":186,"hash_ids":[896169,896170,896171,896172,896173],"delay":474.6} +{"session_id":"sess-5add26a40b79","input_length":3692,"output_length":240,"hash_ids":[896174,896175,896176,896177,896178,896179,896180,896181],"delay":299.5} +{"session_id":"sess-5add26a40b79","input_length":1298,"output_length":280,"hash_ids":[896182,896183,896184],"delay":1577.7} +{"session_id":"sess-5add26a40b79","input_length":751,"output_length":1121,"hash_ids":[896185,896186],"delay":1272.8} +{"session_id":"sess-5add26a40b79","input_length":8174,"output_length":595,"hash_ids":[896187,896188,896189,896190,896191,896192,896193,896194,896195,896196,896197,896198,896199,896200,896201,896202],"delay":970.3} +{"session_id":"sess-5add26a40b79","input_length":1462,"output_length":1328,"hash_ids":[896203,896204,896205],"delay":1704.0} +{"session_id":"sess-654f3615cd09","input_length":58492,"output_length":392,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,900063,900064,900065,900066,900067,900068,900069,900070,900071,900072,900073,900074],"timestamp":0.0,"group_id":3} +{"session_id":"sess-654f3615cd09","input_length":7275,"output_length":68,"hash_ids":[900075,900076,900077,900078,900079,900080,900081,900082,900083,900084,900085,900086,900087,900088,900089],"delay":6015.9} +{"session_id":"sess-654f3615cd09","input_length":2336,"output_length":145,"hash_ids":[900090,900091,900092,900093,900094],"delay":4826.3} +{"session_id":"sess-654f3615cd09","input_length":428,"output_length":485,"hash_ids":[900095],"delay":702.2} +{"session_id":"sess-654f3615cd09","input_length":6316,"output_length":302,"hash_ids":[900096,900097,900098,900099,900100,900101,900102,900103,900104,900105,900106,900107,900108],"delay":1681.9} +{"session_id":"sess-654f3615cd09","input_length":7354,"output_length":517,"hash_ids":[900109,900110,900111,900112,900113,900114,900115,900116,900117,900118,900119,900120,900121,900122,900123],"delay":570.6} +{"session_id":"sess-654f3615cd09","input_length":4389,"output_length":168,"hash_ids":[900124,900125,900126,900127,900128,900129,900130,900131,900132],"delay":1593.2} +{"session_id":"sess-654f3615cd09","input_length":791,"output_length":493,"hash_ids":[900133,900134],"delay":5557.9} +{"session_id":"sess-654f3615cd09","input_length":1960,"output_length":1801,"hash_ids":[900135,900136,900137,900138],"delay":692.9} +{"session_id":"sess-654f3615cd09","input_length":1113,"output_length":68,"hash_ids":[900139,900140,900141],"delay":1332.5} +{"session_id":"sess-654f3615cd09","input_length":416,"output_length":2111,"hash_ids":[900142],"delay":9210.4} +{"session_id":"sess-654f3615cd09","input_length":507,"output_length":559,"hash_ids":[900143],"delay":28168.4} +{"session_id":"sess-654f3615cd09","input_length":4457,"output_length":772,"hash_ids":[900144,900145,900146,900147,900148,900149,900150,900151,900152],"delay":1994.0} +{"session_id":"sess-654f3615cd09","input_length":1412,"output_length":139,"hash_ids":[900153,900154,900155],"delay":1018.6} +{"session_id":"sess-654f3615cd09","input_length":825,"output_length":2177,"hash_ids":[900156,900157],"delay":391.7} +{"session_id":"sess-654f3615cd09","input_length":9476,"output_length":191,"hash_ids":[900158,900159,900160,900161,900162,900163,900164,900165,900166,900167,900168,900169,900170,900171,900172,900173,900174,900175,900176],"delay":829.0} +{"session_id":"sess-654f3615cd09","input_length":765,"output_length":262,"hash_ids":[900177,900178],"delay":1024.6} +{"session_id":"sess-654f3615cd09","input_length":4290,"output_length":81,"hash_ids":[900179,900180,900181,900182,900183,900184,900185,900186,900187],"delay":377.2} +{"session_id":"sess-4a8a1aeb7dab","input_length":77096,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,904063,904064,904065,904066,904067,904068,904069,904070,904071,904072,904073,904074,904075,904076,904077,904078,904079,904080,904081,904082,904083,904084,904085,904086,904087,904088,904089,904090,904091,904092,904093,904094,904095,904096,904097,904098,904099,904100,904101,904102,904103,904104,904105,904106,904107,904108,904109,904110],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4a8a1aeb7dab","input_length":1321,"output_length":371,"hash_ids":[904111,904112,904113],"delay":18303.8} +{"session_id":"sess-4a8a1aeb7dab","input_length":1238,"output_length":834,"hash_ids":[904114,904115,904116],"delay":654.3} +{"session_id":"sess-4a8a1aeb7dab","input_length":1768,"output_length":258,"hash_ids":[904117,904118,904119,904120],"delay":3731.3} +{"session_id":"sess-4a8a1aeb7dab","input_length":8452,"output_length":236,"hash_ids":[904121,904122,904123,904124,904125,904126,904127,904128,904129,904130,904131,904132,904133,904134,904135,904136,904137],"delay":1988.2} +{"session_id":"sess-4a8a1aeb7dab","input_length":3065,"output_length":39,"hash_ids":[904138,904139,904140,904141,904142,904143],"delay":6633.8} +{"session_id":"sess-4a8a1aeb7dab","input_length":337,"output_length":193,"hash_ids":[904144],"delay":265.3} +{"session_id":"sess-4a8a1aeb7dab","input_length":3014,"output_length":667,"hash_ids":[904145,904146,904147,904148,904149,904150],"delay":3691.1} +{"session_id":"sess-4a8a1aeb7dab","input_length":2455,"output_length":126,"hash_ids":[904151,904152,904153,904154,904155],"delay":852.2} +{"session_id":"sess-4a8a1aeb7dab","input_length":3232,"output_length":837,"hash_ids":[904156,904157,904158,904159,904160,904161,904162],"delay":523.5} +{"session_id":"sess-4a8a1aeb7dab","input_length":622,"output_length":351,"hash_ids":[904163,904164],"delay":348.1} +{"session_id":"sess-4a8a1aeb7dab","input_length":6359,"output_length":1820,"hash_ids":[904165,904166,904167,904168,904169,904170,904171,904172,904173,904174,904175,904176,904177],"delay":1647.8} +{"session_id":"sess-4a8a1aeb7dab","input_length":368,"output_length":336,"hash_ids":[904178],"delay":633.3} +{"session_id":"sess-4a8a1aeb7dab","input_length":1605,"output_length":820,"hash_ids":[904179,904180,904181,904182],"delay":1808.8} +{"session_id":"sess-4a8a1aeb7dab","input_length":261,"output_length":30,"hash_ids":[904183],"delay":702.8} +{"session_id":"sess-4a8a1aeb7dab","input_length":6515,"output_length":2092,"hash_ids":[904184,904185,904186,904187,904188,904189,904190,904191,904192,904193,904194,904195,904196],"delay":4502.8} +{"session_id":"sess-331e9bed64d8","input_length":55637,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,908063,908064,908065,908066,908067,908068],"timestamp":0.0,"group_id":3} +{"session_id":"sess-331e9bed64d8","input_length":398,"output_length":90,"hash_ids":[908069],"delay":21909.3} +{"session_id":"sess-331e9bed64d8","input_length":256,"output_length":140,"hash_ids":[908070],"delay":1369.5} +{"session_id":"sess-331e9bed64d8","input_length":838,"output_length":81,"hash_ids":[908071,908072],"delay":949.4} +{"session_id":"sess-331e9bed64d8","input_length":820,"output_length":149,"hash_ids":[908073,908074],"delay":1275.2} +{"session_id":"sess-331e9bed64d8","input_length":391,"output_length":111,"hash_ids":[908075],"delay":15320.7} +{"session_id":"sess-331e9bed64d8","input_length":1315,"output_length":147,"hash_ids":[908076,908077,908078],"delay":692.5} +{"session_id":"sess-331e9bed64d8","input_length":150,"output_length":150,"hash_ids":[908079],"delay":1106.7} +{"session_id":"sess-331e9bed64d8","input_length":285,"output_length":675,"hash_ids":[908080],"delay":1285.0} +{"session_id":"sess-331e9bed64d8","input_length":9419,"output_length":632,"hash_ids":[908081,908082,908083,908084,908085,908086,908087,908088,908089,908090,908091,908092,908093,908094,908095,908096,908097,908098,908099],"delay":4931.9} +{"session_id":"sess-331e9bed64d8","input_length":459,"output_length":218,"hash_ids":[908100],"delay":15536.7} +{"session_id":"sess-331e9bed64d8","input_length":5294,"output_length":1295,"hash_ids":[908101,908102,908103,908104,908105,908106,908107,908108,908109,908110,908111],"delay":694.4} +{"session_id":"sess-331e9bed64d8","input_length":1325,"output_length":318,"hash_ids":[908112,908113,908114],"delay":603.6} +{"session_id":"sess-331e9bed64d8","input_length":620,"output_length":60,"hash_ids":[908115,908116],"delay":923.3} +{"session_id":"sess-331e9bed64d8","input_length":7317,"output_length":249,"hash_ids":[908117,908118,908119,908120,908121,908122,908123,908124,908125,908126,908127,908128,908129,908130,908131],"delay":1389.9} +{"session_id":"sess-331e9bed64d8","input_length":832,"output_length":1505,"hash_ids":[908132,908133],"delay":342.6} +{"session_id":"sess-331e9bed64d8","input_length":2990,"output_length":780,"hash_ids":[908134,908135,908136,908137,908138,908139],"delay":918.1} +{"session_id":"sess-331e9bed64d8","input_length":8892,"output_length":89,"hash_ids":[908140,908141,908142,908143,908144,908145,908146,908147,908148,908149,908150,908151,908152,908153,908154,908155,908156,908157],"delay":7985.8} +{"session_id":"sess-331e9bed64d8","input_length":4636,"output_length":1606,"hash_ids":[908158,908159,908160,908161,908162,908163,908164,908165,908166,908167],"delay":1043.8} +{"session_id":"sess-d6e70281d925","input_length":64810,"output_length":413,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,912063,912064,912065,912066,912067,912068,912069,912070,912071,912072,912073,912074,912075,912076,912077,912078,912079,912080,912081,912082,912083,912084,912085,912086],"timestamp":0.0,"group_id":10} +{"session_id":"sess-ecf9fb16fb78","input_length":54157,"output_length":113,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,916063,916064,916065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-720ad58117e3","input_length":53754,"output_length":118,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,920063,920064],"timestamp":0.0,"group_id":26} +{"session_id":"sess-720ad58117e3","input_length":2177,"output_length":422,"hash_ids":[920065,920066,920067,920068,920069],"delay":3150.7} +{"session_id":"sess-720ad58117e3","input_length":6421,"output_length":1193,"hash_ids":[920070,920071,920072,920073,920074,920075,920076,920077,920078,920079,920080,920081,920082],"delay":909.8} +{"session_id":"sess-720ad58117e3","input_length":1943,"output_length":239,"hash_ids":[920083,920084,920085,920086],"delay":362.2} +{"session_id":"sess-720ad58117e3","input_length":374,"output_length":46,"hash_ids":[920087],"delay":41265.1} +{"session_id":"sess-720ad58117e3","input_length":1379,"output_length":1178,"hash_ids":[920088,920089,920090],"delay":1380.9} +{"session_id":"sess-720ad58117e3","input_length":4079,"output_length":1842,"hash_ids":[920091,920092,920093,920094,920095,920096,920097,920098],"delay":9423.6} +{"session_id":"sess-720ad58117e3","input_length":3218,"output_length":520,"hash_ids":[920099,920100,920101,920102,920103,920104,920105],"delay":376.3} +{"session_id":"sess-720ad58117e3","input_length":3967,"output_length":2471,"hash_ids":[920106,920107,920108,920109,920110,920111,920112,920113],"delay":3231.2} +{"session_id":"sess-720ad58117e3","input_length":502,"output_length":287,"hash_ids":[920114],"delay":1210.6} +{"session_id":"sess-720ad58117e3","input_length":2027,"output_length":1397,"hash_ids":[920115,920116,920117,920118],"delay":1180.9} +{"session_id":"sess-720ad58117e3","input_length":122,"output_length":621,"hash_ids":[920119],"delay":13233.0} +{"session_id":"sess-720ad58117e3","input_length":197,"output_length":206,"hash_ids":[920120],"delay":10849.4} +{"session_id":"sess-720ad58117e3","input_length":2712,"output_length":93,"hash_ids":[920121,920122,920123,920124,920125,920126],"delay":28906.4} +{"session_id":"sess-720ad58117e3","input_length":626,"output_length":332,"hash_ids":[920127,920128],"delay":5573.7} +{"session_id":"sess-720ad58117e3","input_length":5728,"output_length":161,"hash_ids":[920129,920130,920131,920132,920133,920134,920135,920136,920137,920138,920139,920140],"delay":250.6} +{"session_id":"sess-720ad58117e3","input_length":2965,"output_length":407,"hash_ids":[920141,920142,920143,920144,920145,920146],"delay":26183.3} +{"session_id":"sess-720ad58117e3","input_length":834,"output_length":384,"hash_ids":[920147,920148],"delay":5959.8} +{"session_id":"sess-720ad58117e3","input_length":4498,"output_length":246,"hash_ids":[920149,920150,920151,920152,920153,920154,920155,920156,920157],"delay":196.2} +{"session_id":"sess-720ad58117e3","input_length":2208,"output_length":91,"hash_ids":[920158,920159,920160,920161,920162],"delay":603.1} +{"session_id":"sess-720ad58117e3","input_length":3874,"output_length":153,"hash_ids":[920163,920164,920165,920166,920167,920168,920169,920170],"delay":618.9} +{"session_id":"sess-720ad58117e3","input_length":1179,"output_length":96,"hash_ids":[920171,920172,920173],"delay":283.7} +{"session_id":"sess-720ad58117e3","input_length":469,"output_length":524,"hash_ids":[920174],"delay":28700.3} +{"session_id":"sess-720ad58117e3","input_length":2318,"output_length":72,"hash_ids":[920175,920176,920177,920178,920179],"delay":422.6} +{"session_id":"sess-720ad58117e3","input_length":2700,"output_length":190,"hash_ids":[920180,920181,920182,920183,920184,920185],"delay":2305.9} +{"session_id":"sess-720ad58117e3","input_length":1358,"output_length":1055,"hash_ids":[920186,920187,920188],"delay":9091.7} +{"session_id":"sess-720ad58117e3","input_length":1943,"output_length":378,"hash_ids":[920189,920190,920191,920192],"delay":1350.9} +{"session_id":"sess-ce1d8e1c64ab","input_length":64390,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,924063,924064,924065,924066,924067,924068,924069,924070,924071,924072,924073,924074,924075,924076,924077,924078,924079,924080,924081,924082,924083,924084,924085],"timestamp":0.0,"group_id":24} +{"session_id":"sess-87d2f364a92d","input_length":54435,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,928063,928064,928065,928066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-87d2f364a92d","input_length":4089,"output_length":242,"hash_ids":[928067,928068,928069,928070,928071,928072,928073,928074],"delay":2443.1} +{"session_id":"sess-87d2f364a92d","input_length":1186,"output_length":1138,"hash_ids":[928075,928076,928077],"delay":966.4} +{"session_id":"sess-87d2f364a92d","input_length":1236,"output_length":650,"hash_ids":[928078,928079,928080],"delay":8475.1} +{"session_id":"sess-87d2f364a92d","input_length":1434,"output_length":753,"hash_ids":[928081,928082,928083],"delay":180.4} +{"session_id":"sess-87d2f364a92d","input_length":959,"output_length":499,"hash_ids":[928084,928085],"delay":3914.9} +{"session_id":"sess-1bf42b0bd8fe","input_length":55307,"output_length":189,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,932063,932064,932065,932066,932067,932068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1bf42b0bd8fe","input_length":417,"output_length":350,"hash_ids":[932069],"delay":2227.2} +{"session_id":"sess-1bf42b0bd8fe","input_length":5159,"output_length":518,"hash_ids":[932070,932071,932072,932073,932074,932075,932076,932077,932078,932079,932080],"delay":4448.8} +{"session_id":"sess-1bf42b0bd8fe","input_length":536,"output_length":283,"hash_ids":[932081,932082],"delay":5562.8} +{"session_id":"sess-7e076c2f85a9","input_length":54041,"output_length":223,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,936063,936064,936065],"timestamp":0.0,"group_id":11} +{"session_id":"sess-7e076c2f85a9","input_length":6820,"output_length":168,"hash_ids":[936066,936067,936068,936069,936070,936071,936072,936073,936074,936075,936076,936077,936078,936079],"delay":1318.4} +{"session_id":"sess-7e076c2f85a9","input_length":240,"output_length":1991,"hash_ids":[936080],"delay":489.1} +{"session_id":"sess-4fb8c3f6df97","input_length":53343,"output_length":197,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,940063,940064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4fb8c3f6df97","input_length":5878,"output_length":339,"hash_ids":[940065,940066,940067,940068,940069,940070,940071,940072,940073,940074,940075,940076],"delay":9676.3} +{"session_id":"sess-4fb8c3f6df97","input_length":1371,"output_length":236,"hash_ids":[940077,940078,940079],"delay":204.2} +{"session_id":"sess-4fb8c3f6df97","input_length":4862,"output_length":171,"hash_ids":[940080,940081,940082,940083,940084,940085,940086,940087,940088,940089],"delay":928.7} +{"session_id":"sess-4fb8c3f6df97","input_length":1916,"output_length":92,"hash_ids":[940090,940091,940092,940093],"delay":1341.5} +{"session_id":"sess-4fb8c3f6df97","input_length":4178,"output_length":362,"hash_ids":[940094,940095,940096,940097,940098,940099,940100,940101,940102],"delay":185.8} +{"session_id":"sess-4fb8c3f6df97","input_length":4829,"output_length":545,"hash_ids":[940103,940104,940105,940106,940107,940108,940109,940110,940111,940112],"delay":4367.7} +{"session_id":"sess-4fb8c3f6df97","input_length":1564,"output_length":1061,"hash_ids":[940113,940114,940115,940116],"delay":38495.8} +{"session_id":"sess-4fb8c3f6df97","input_length":8752,"output_length":30,"hash_ids":[940117,940118,940119,940120,940121,940122,940123,940124,940125,940126,940127,940128,940129,940130,940131,940132,940133,940134],"delay":370.5} +{"session_id":"sess-4fb8c3f6df97","input_length":569,"output_length":203,"hash_ids":[940135,940136],"delay":507.1} +{"session_id":"sess-4fb8c3f6df97","input_length":4189,"output_length":498,"hash_ids":[940137,940138,940139,940140,940141,940142,940143,940144,940145],"delay":27495.8} +{"session_id":"sess-4fb8c3f6df97","input_length":769,"output_length":167,"hash_ids":[940146,940147],"delay":9624.6} +{"session_id":"sess-4fb8c3f6df97","input_length":918,"output_length":883,"hash_ids":[940148,940149],"delay":365.4} +{"session_id":"sess-4fb8c3f6df97","input_length":3715,"output_length":196,"hash_ids":[940150,940151,940152,940153,940154,940155,940156,940157],"delay":6439.3} +{"session_id":"sess-4fb8c3f6df97","input_length":4188,"output_length":785,"hash_ids":[940158,940159,940160,940161,940162,940163,940164,940165,940166],"delay":8818.5} +{"session_id":"sess-4fb8c3f6df97","input_length":1240,"output_length":396,"hash_ids":[940167,940168,940169],"delay":437.8} +{"session_id":"sess-4fb8c3f6df97","input_length":759,"output_length":194,"hash_ids":[940170,940171],"delay":271.2} +{"session_id":"sess-4fb8c3f6df97","input_length":1802,"output_length":219,"hash_ids":[940172,940173,940174,940175],"delay":15649.4} +{"session_id":"sess-4fb8c3f6df97","input_length":262,"output_length":156,"hash_ids":[940176],"delay":33361.7} +{"session_id":"sess-4fb8c3f6df97","input_length":723,"output_length":561,"hash_ids":[940177,940178],"delay":10922.5} +{"session_id":"sess-4fb8c3f6df97","input_length":2097,"output_length":1784,"hash_ids":[940179,940180,940181,940182,940183],"delay":631.6} +{"session_id":"sess-4fb8c3f6df97","input_length":1871,"output_length":136,"hash_ids":[940184,940185,940186,940187],"delay":7591.2} +{"session_id":"sess-4fb8c3f6df97","input_length":5061,"output_length":686,"hash_ids":[940188,940189,940190,940191,940192,940193,940194,940195,940196,940197],"delay":3437.8} +{"session_id":"sess-4fb8c3f6df97","input_length":3172,"output_length":62,"hash_ids":[940198,940199,940200,940201,940202,940203,940204],"delay":3824.1} +{"session_id":"sess-13a5ba68c10c","input_length":53434,"output_length":200,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,944063,944064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-13a5ba68c10c","input_length":1750,"output_length":30,"hash_ids":[944065,944066,944067,944068],"delay":13539.3} +{"session_id":"sess-13a5ba68c10c","input_length":3501,"output_length":159,"hash_ids":[944069,944070,944071,944072,944073,944074,944075],"delay":1472.1} +{"session_id":"sess-13a5ba68c10c","input_length":5635,"output_length":1098,"hash_ids":[944076,944077,944078,944079,944080,944081,944082,944083,944084,944085,944086,944087],"delay":1562.3} +{"session_id":"sess-13a5ba68c10c","input_length":3521,"output_length":286,"hash_ids":[944088,944089,944090,944091,944092,944093,944094],"delay":15935.2} +{"session_id":"sess-13a5ba68c10c","input_length":3892,"output_length":445,"hash_ids":[944095,944096,944097,944098,944099,944100,944101,944102],"delay":8929.1} +{"session_id":"sess-13a5ba68c10c","input_length":5176,"output_length":171,"hash_ids":[944103,944104,944105,944106,944107,944108,944109,944110,944111,944112,944113],"delay":1511.4} +{"session_id":"sess-13a5ba68c10c","input_length":8114,"output_length":343,"hash_ids":[944114,944115,944116,944117,944118,944119,944120,944121,944122,944123,944124,944125,944126,944127,944128,944129],"delay":22761.6} +{"session_id":"sess-13a5ba68c10c","input_length":801,"output_length":120,"hash_ids":[944130,944131],"delay":615.1} +{"session_id":"sess-13a5ba68c10c","input_length":2066,"output_length":953,"hash_ids":[944132,944133,944134,944135,944136],"delay":7562.1} +{"session_id":"sess-13a5ba68c10c","input_length":5063,"output_length":897,"hash_ids":[944137,944138,944139,944140,944141,944142,944143,944144,944145,944146],"delay":1343.7} +{"session_id":"sess-13a5ba68c10c","input_length":542,"output_length":66,"hash_ids":[944147,944148],"delay":934.1} +{"session_id":"sess-13a5ba68c10c","input_length":558,"output_length":394,"hash_ids":[944149,944150],"delay":212.3} +{"session_id":"sess-13a5ba68c10c","input_length":2019,"output_length":145,"hash_ids":[944151,944152,944153,944154],"delay":9526.4} +{"session_id":"sess-13a5ba68c10c","input_length":7714,"output_length":218,"hash_ids":[944155,944156,944157,944158,944159,944160,944161,944162,944163,944164,944165,944166,944167,944168,944169,944170],"delay":515.1} +{"session_id":"sess-13a5ba68c10c","input_length":1862,"output_length":2805,"hash_ids":[944171,944172,944173,944174],"delay":497.3} +{"session_id":"sess-13a5ba68c10c","input_length":1084,"output_length":567,"hash_ids":[944175,944176,944177],"delay":383.6} +{"session_id":"sess-13a5ba68c10c","input_length":264,"output_length":2733,"hash_ids":[944178],"delay":2527.1} +{"session_id":"sess-13a5ba68c10c","input_length":416,"output_length":311,"hash_ids":[944179],"delay":788.0} +{"session_id":"sess-13a5ba68c10c","input_length":4405,"output_length":64,"hash_ids":[944180,944181,944182,944183,944184,944185,944186,944187,944188],"delay":254.4} +{"session_id":"sess-13a5ba68c10c","input_length":2263,"output_length":146,"hash_ids":[944189,944190,944191,944192,944193],"delay":705.4} +{"session_id":"sess-b3fa03d3640e","input_length":54894,"output_length":596,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,948063,948064,948065,948066,948067],"timestamp":0.0,"group_id":28} +{"session_id":"sess-b3fa03d3640e","input_length":2491,"output_length":445,"hash_ids":[948068,948069,948070,948071,948072],"delay":275.6} +{"session_id":"sess-b3fa03d3640e","input_length":265,"output_length":319,"hash_ids":[948073],"delay":1007.0} +{"session_id":"sess-b3fa03d3640e","input_length":1389,"output_length":245,"hash_ids":[948074,948075,948076],"delay":7190.8} +{"session_id":"sess-b3fa03d3640e","input_length":3114,"output_length":252,"hash_ids":[948077,948078,948079,948080,948081,948082,948083],"delay":1676.2} +{"session_id":"sess-b3fa03d3640e","input_length":228,"output_length":158,"hash_ids":[948084],"delay":6114.8} +{"session_id":"sess-b3fa03d3640e","input_length":461,"output_length":58,"hash_ids":[948085],"delay":2242.6} +{"session_id":"sess-b3fa03d3640e","input_length":945,"output_length":294,"hash_ids":[948086,948087],"delay":235.2} +{"session_id":"sess-add1210e062d","input_length":63500,"output_length":211,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,952063,952064,952065,952066,952067,952068,952069,952070,952071,952072,952073,952074,952075,952076,952077,952078,952079,952080,952081,952082,952083,952084],"timestamp":0.0,"group_id":34} +{"session_id":"sess-add1210e062d","input_length":3144,"output_length":173,"hash_ids":[952085,952086,952087,952088,952089,952090,952091],"delay":211.1} +{"session_id":"sess-add1210e062d","input_length":5344,"output_length":978,"hash_ids":[952092,952093,952094,952095,952096,952097,952098,952099,952100,952101,952102],"delay":1401.5} +{"session_id":"sess-add1210e062d","input_length":912,"output_length":260,"hash_ids":[952103,952104],"delay":31133.2} +{"session_id":"sess-add1210e062d","input_length":1807,"output_length":331,"hash_ids":[952105,952106,952107,952108],"delay":3212.2} +{"session_id":"sess-add1210e062d","input_length":2056,"output_length":1414,"hash_ids":[952109,952110,952111,952112,952113],"delay":38014.9} +{"session_id":"sess-add1210e062d","input_length":4364,"output_length":104,"hash_ids":[952114,952115,952116,952117,952118,952119,952120,952121,952122],"delay":47812.5} +{"session_id":"sess-7d9d9c73a55a","input_length":55729,"output_length":615,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,956063,956064,956065,956066,956067,956068],"timestamp":0.0,"group_id":6} +{"session_id":"sess-7d9d9c73a55a","input_length":9114,"output_length":477,"hash_ids":[956069,956070,956071,956072,956073,956074,956075,956076,956077,956078,956079,956080,956081,956082,956083,956084,956085,956086],"delay":19101.1} +{"session_id":"sess-7d9d9c73a55a","input_length":5520,"output_length":618,"hash_ids":[956087,956088,956089,956090,956091,956092,956093,956094,956095,956096,956097],"delay":46157.3} +{"session_id":"sess-7d9d9c73a55a","input_length":316,"output_length":250,"hash_ids":[956098],"delay":564.8} +{"session_id":"sess-7d9d9c73a55a","input_length":2607,"output_length":116,"hash_ids":[956099,956100,956101,956102,956103,956104],"delay":1249.9} +{"session_id":"sess-7d9d9c73a55a","input_length":3762,"output_length":356,"hash_ids":[956105,956106,956107,956108,956109,956110,956111,956112],"delay":20839.5} +{"session_id":"sess-7d9d9c73a55a","input_length":2679,"output_length":103,"hash_ids":[956113,956114,956115,956116,956117,956118],"delay":418.3} +{"session_id":"sess-7d9d9c73a55a","input_length":2328,"output_length":233,"hash_ids":[956119,956120,956121,956122,956123],"delay":1951.6} +{"session_id":"sess-7d9d9c73a55a","input_length":5234,"output_length":47,"hash_ids":[956124,956125,956126,956127,956128,956129,956130,956131,956132,956133,956134],"delay":292.7} +{"session_id":"sess-7d9d9c73a55a","input_length":4674,"output_length":429,"hash_ids":[956135,956136,956137,956138,956139,956140,956141,956142,956143,956144],"delay":8310.9} +{"session_id":"sess-7d9d9c73a55a","input_length":496,"output_length":1096,"hash_ids":[956145],"delay":1070.6} +{"session_id":"sess-7d9d9c73a55a","input_length":3209,"output_length":926,"hash_ids":[956146,956147,956148,956149,956150,956151,956152],"delay":164.8} +{"session_id":"sess-7d9d9c73a55a","input_length":5107,"output_length":341,"hash_ids":[956153,956154,956155,956156,956157,956158,956159,956160,956161,956162],"delay":345.0} +{"session_id":"sess-7d9d9c73a55a","input_length":6746,"output_length":1532,"hash_ids":[956163,956164,956165,956166,956167,956168,956169,956170,956171,956172,956173,956174,956175,956176],"delay":1307.3} +{"session_id":"sess-7d9d9c73a55a","input_length":261,"output_length":117,"hash_ids":[956177],"delay":1643.6} +{"session_id":"sess-7d9d9c73a55a","input_length":6867,"output_length":103,"hash_ids":[956178,956179,956180,956181,956182,956183,956184,956185,956186,956187,956188,956189,956190,956191],"delay":15791.9} +{"session_id":"sess-7d9d9c73a55a","input_length":112,"output_length":158,"hash_ids":[956192],"delay":1101.2} +{"session_id":"sess-7d9d9c73a55a","input_length":3331,"output_length":617,"hash_ids":[956193,956194,956195,956196,956197,956198,956199],"delay":693.1} +{"session_id":"sess-7d9d9c73a55a","input_length":1225,"output_length":204,"hash_ids":[956200,956201,956202],"delay":141.6} +{"session_id":"sess-7d9d9c73a55a","input_length":3329,"output_length":413,"hash_ids":[956203,956204,956205,956206,956207,956208,956209],"delay":1455.0} +{"session_id":"sess-cde8fbbc985c","input_length":56028,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,960063,960064,960065,960066,960067,960068,960069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cde8fbbc985c","input_length":853,"output_length":262,"hash_ids":[960070,960071],"delay":12607.9} +{"session_id":"sess-cde8fbbc985c","input_length":2589,"output_length":382,"hash_ids":[960072,960073,960074,960075,960076,960077],"delay":4940.5} +{"session_id":"sess-cde8fbbc985c","input_length":1965,"output_length":71,"hash_ids":[960078,960079,960080,960081],"delay":8023.4} +{"session_id":"sess-cde8fbbc985c","input_length":1921,"output_length":85,"hash_ids":[960082,960083,960084,960085],"delay":28951.8} +{"session_id":"sess-cde8fbbc985c","input_length":2585,"output_length":236,"hash_ids":[960086,960087,960088,960089,960090,960091],"delay":1042.3} +{"session_id":"sess-cde8fbbc985c","input_length":606,"output_length":302,"hash_ids":[960092,960093],"delay":1656.5} +{"session_id":"sess-cde8fbbc985c","input_length":1291,"output_length":2375,"hash_ids":[960094,960095,960096],"delay":1670.8} +{"session_id":"sess-cde8fbbc985c","input_length":1317,"output_length":167,"hash_ids":[960097,960098,960099],"delay":364.6} +{"session_id":"sess-cde8fbbc985c","input_length":826,"output_length":328,"hash_ids":[960100,960101],"delay":992.5} +{"session_id":"sess-cde8fbbc985c","input_length":3903,"output_length":212,"hash_ids":[960102,960103,960104,960105,960106,960107,960108,960109],"delay":854.1} +{"session_id":"sess-cde8fbbc985c","input_length":1106,"output_length":236,"hash_ids":[960110,960111,960112],"delay":642.8} +{"session_id":"sess-cde8fbbc985c","input_length":161,"output_length":428,"hash_ids":[960113],"delay":28102.4} +{"session_id":"sess-cde8fbbc985c","input_length":1642,"output_length":30,"hash_ids":[960114,960115,960116,960117],"delay":1739.0} +{"session_id":"sess-cde8fbbc985c","input_length":561,"output_length":263,"hash_ids":[960118,960119],"delay":10339.5} +{"session_id":"sess-cde8fbbc985c","input_length":6483,"output_length":176,"hash_ids":[960120,960121,960122,960123,960124,960125,960126,960127,960128,960129,960130,960131,960132],"delay":13571.0} +{"session_id":"sess-cde8fbbc985c","input_length":561,"output_length":213,"hash_ids":[960133,960134],"delay":108.0} +{"session_id":"sess-cde8fbbc985c","input_length":1730,"output_length":632,"hash_ids":[960135,960136,960137,960138],"delay":1565.5} +{"session_id":"sess-cde8fbbc985c","input_length":2501,"output_length":741,"hash_ids":[960139,960140,960141,960142,960143],"delay":584.2} +{"session_id":"sess-cde8fbbc985c","input_length":2932,"output_length":47,"hash_ids":[960144,960145,960146,960147,960148,960149],"delay":1966.8} +{"session_id":"sess-cde8fbbc985c","input_length":224,"output_length":575,"hash_ids":[960150],"delay":10352.0} +{"session_id":"sess-cde8fbbc985c","input_length":7187,"output_length":204,"hash_ids":[960151,960152,960153,960154,960155,960156,960157,960158,960159,960160,960161,960162,960163,960164,960165],"delay":15018.2} +{"session_id":"sess-cde8fbbc985c","input_length":3679,"output_length":30,"hash_ids":[960166,960167,960168,960169,960170,960171,960172,960173],"delay":745.5} +{"session_id":"sess-cde8fbbc985c","input_length":145,"output_length":146,"hash_ids":[960174],"delay":866.4} +{"session_id":"sess-cde8fbbc985c","input_length":185,"output_length":606,"hash_ids":[960175],"delay":788.5} +{"session_id":"sess-cde8fbbc985c","input_length":6779,"output_length":57,"hash_ids":[960176,960177,960178,960179,960180,960181,960182,960183,960184,960185,960186,960187,960188,960189],"delay":5727.9} +{"session_id":"sess-cde8fbbc985c","input_length":461,"output_length":370,"hash_ids":[960190],"delay":2578.4} +{"session_id":"sess-cde8fbbc985c","input_length":1783,"output_length":1916,"hash_ids":[960191,960192,960193,960194],"delay":380.0} +{"session_id":"sess-cde8fbbc985c","input_length":1243,"output_length":128,"hash_ids":[960195,960196,960197],"delay":187.0} +{"session_id":"sess-cde8fbbc985c","input_length":1731,"output_length":1809,"hash_ids":[960198,960199,960200,960201],"delay":168.8} +{"session_id":"sess-cde8fbbc985c","input_length":2796,"output_length":255,"hash_ids":[960202,960203,960204,960205,960206,960207],"delay":81.5} +{"session_id":"sess-5580476447f3","input_length":56745,"output_length":259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,964063,964064,964065,964066,964067,964068,964069,964070],"timestamp":0.0,"group_id":38} +{"session_id":"sess-5580476447f3","input_length":1526,"output_length":125,"hash_ids":[964071,964072,964073],"delay":24202.2} +{"session_id":"sess-5580476447f3","input_length":1506,"output_length":1191,"hash_ids":[964074,964075,964076],"delay":2447.7} +{"session_id":"sess-b601ace8f037","input_length":55563,"output_length":854,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,968063,968064,968065,968066,968067,968068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b601ace8f037","input_length":334,"output_length":140,"hash_ids":[968069],"delay":8404.7} +{"session_id":"sess-b601ace8f037","input_length":779,"output_length":807,"hash_ids":[968070,968071],"delay":2569.7} +{"session_id":"sess-b601ace8f037","input_length":1051,"output_length":235,"hash_ids":[968072,968073,968074],"delay":1465.6} +{"session_id":"sess-b601ace8f037","input_length":914,"output_length":194,"hash_ids":[968075,968076],"delay":755.8} +{"session_id":"sess-b601ace8f037","input_length":914,"output_length":109,"hash_ids":[968077,968078],"delay":988.0} +{"session_id":"sess-b601ace8f037","input_length":262,"output_length":457,"hash_ids":[968079],"delay":1889.1} +{"session_id":"sess-1efb8526dce1","input_length":62905,"output_length":140,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,972063,972064,972065,972066,972067,972068,972069,972070,972071,972072,972073,972074,972075,972076,972077,972078,972079,972080,972081,972082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1efb8526dce1","input_length":1711,"output_length":110,"hash_ids":[972083,972084,972085,972086],"delay":2442.3} +{"session_id":"sess-1efb8526dce1","input_length":5433,"output_length":100,"hash_ids":[972087,972088,972089,972090,972091,972092,972093,972094,972095,972096,972097],"delay":2993.9} +{"session_id":"sess-1efb8526dce1","input_length":924,"output_length":260,"hash_ids":[972098,972099],"delay":13335.8} +{"session_id":"sess-1efb8526dce1","input_length":9902,"output_length":233,"hash_ids":[972100,972101,972102,972103,972104,972105,972106,972107,972108,972109,972110,972111,972112,972113,972114,972115,972116,972117,972118,972119],"delay":1771.6} +{"session_id":"sess-1efb8526dce1","input_length":1486,"output_length":785,"hash_ids":[972120,972121,972122],"delay":658.0} +{"session_id":"sess-1efb8526dce1","input_length":619,"output_length":716,"hash_ids":[972123,972124],"delay":14767.5} +{"session_id":"sess-1efb8526dce1","input_length":2352,"output_length":165,"hash_ids":[972125,972126,972127,972128,972129],"delay":3352.4} +{"session_id":"sess-1efb8526dce1","input_length":1755,"output_length":537,"hash_ids":[972130,972131,972132,972133],"delay":349.2} +{"session_id":"sess-1efb8526dce1","input_length":1478,"output_length":162,"hash_ids":[972134,972135,972136],"delay":810.5} +{"session_id":"sess-1efb8526dce1","input_length":5154,"output_length":136,"hash_ids":[972137,972138,972139,972140,972141,972142,972143,972144,972145,972146,972147],"delay":110.3} +{"session_id":"sess-1efb8526dce1","input_length":3502,"output_length":1076,"hash_ids":[972148,972149,972150,972151,972152,972153,972154],"delay":25260.0} +{"session_id":"sess-1efb8526dce1","input_length":1883,"output_length":808,"hash_ids":[972155,972156,972157,972158],"delay":9330.0} +{"session_id":"sess-1efb8526dce1","input_length":9553,"output_length":132,"hash_ids":[972159,972160,972161,972162,972163,972164,972165,972166,972167,972168,972169,972170,972171,972172,972173,972174,972175,972176,972177],"delay":3155.7} +{"session_id":"sess-1efb8526dce1","input_length":671,"output_length":259,"hash_ids":[972178,972179],"delay":2984.4} +{"session_id":"sess-1efb8526dce1","input_length":256,"output_length":143,"hash_ids":[972180],"delay":214.2} +{"session_id":"sess-1efb8526dce1","input_length":3537,"output_length":822,"hash_ids":[972181,972182,972183,972184,972185,972186,972187],"delay":281.0} +{"session_id":"sess-1efb8526dce1","input_length":116,"output_length":145,"hash_ids":[972188],"delay":306.1} +{"session_id":"sess-1efb8526dce1","input_length":5962,"output_length":441,"hash_ids":[972189,972190,972191,972192,972193,972194,972195,972196,972197,972198,972199,972200],"delay":4013.1} +{"session_id":"sess-b45516f6156f","input_length":72030,"output_length":525,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,976063,976064,976065,976066,976067,976068,976069,976070,976071,976072,976073,976074,976075,976076,976077,976078,976079,976080,976081,976082,976083,976084,976085,976086,976087,976088,976089,976090,976091,976092,976093,976094,976095,976096,976097,976098,976099,976100],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b45516f6156f","input_length":2418,"output_length":78,"hash_ids":[976101,976102,976103,976104,976105],"delay":49579.5} +{"session_id":"sess-b45516f6156f","input_length":4014,"output_length":497,"hash_ids":[976106,976107,976108,976109,976110,976111,976112,976113],"delay":427.0} +{"session_id":"sess-b45516f6156f","input_length":1098,"output_length":1089,"hash_ids":[976114,976115,976116],"delay":10149.6} +{"session_id":"sess-b45516f6156f","input_length":804,"output_length":1313,"hash_ids":[976117,976118],"delay":13485.0} +{"session_id":"sess-b45516f6156f","input_length":2065,"output_length":382,"hash_ids":[976119,976120,976121,976122,976123],"delay":6180.4} +{"session_id":"sess-b45516f6156f","input_length":4382,"output_length":76,"hash_ids":[976124,976125,976126,976127,976128,976129,976130,976131,976132],"delay":1863.5} +{"session_id":"sess-b45516f6156f","input_length":340,"output_length":491,"hash_ids":[976133],"delay":2711.8} +{"session_id":"sess-b45516f6156f","input_length":4372,"output_length":150,"hash_ids":[976134,976135,976136,976137,976138,976139,976140,976141,976142],"delay":310.0} +{"session_id":"sess-b45516f6156f","input_length":1081,"output_length":397,"hash_ids":[976143,976144,976145],"delay":452.5} +{"session_id":"sess-b45516f6156f","input_length":616,"output_length":229,"hash_ids":[976146,976147],"delay":521.6} +{"session_id":"sess-b45516f6156f","input_length":336,"output_length":200,"hash_ids":[976148],"delay":1167.1} +{"session_id":"sess-b45516f6156f","input_length":611,"output_length":468,"hash_ids":[976149,976150],"delay":898.2} +{"session_id":"sess-b45516f6156f","input_length":1994,"output_length":1314,"hash_ids":[976151,976152,976153,976154],"delay":798.9} +{"session_id":"sess-b45516f6156f","input_length":1602,"output_length":161,"hash_ids":[976155,976156,976157,976158],"delay":350.1} +{"session_id":"sess-b45516f6156f","input_length":5003,"output_length":171,"hash_ids":[976159,976160,976161,976162,976163,976164,976165,976166,976167,976168],"delay":337.8} +{"session_id":"sess-b45516f6156f","input_length":2975,"output_length":263,"hash_ids":[976169,976170,976171,976172,976173,976174],"delay":1880.9} +{"session_id":"sess-b45516f6156f","input_length":542,"output_length":541,"hash_ids":[976175,976176],"delay":948.9} +{"session_id":"sess-b45516f6156f","input_length":4037,"output_length":642,"hash_ids":[976177,976178,976179,976180,976181,976182,976183,976184],"delay":350.1} +{"session_id":"sess-b45516f6156f","input_length":2322,"output_length":32,"hash_ids":[976185,976186,976187,976188,976189],"delay":17309.4} +{"session_id":"sess-b45516f6156f","input_length":2259,"output_length":400,"hash_ids":[976190,976191,976192,976193,976194],"delay":220.6} +{"session_id":"sess-b45516f6156f","input_length":921,"output_length":327,"hash_ids":[976195,976196],"delay":768.1} +{"session_id":"sess-d2eee43f85bd","input_length":54985,"output_length":66,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,980063,980064,980065,980066,980067],"timestamp":0.0,"group_id":14} +{"session_id":"sess-d2eee43f85bd","input_length":1799,"output_length":265,"hash_ids":[980068,980069,980070,980071],"delay":1470.8} +{"session_id":"sess-d2eee43f85bd","input_length":487,"output_length":579,"hash_ids":[980072],"delay":22782.7} +{"session_id":"sess-d2eee43f85bd","input_length":1186,"output_length":1171,"hash_ids":[980073,980074,980075],"delay":1501.0} +{"session_id":"sess-d2eee43f85bd","input_length":1552,"output_length":229,"hash_ids":[980076,980077,980078,980079],"delay":47607.4} +{"session_id":"sess-d2eee43f85bd","input_length":2006,"output_length":423,"hash_ids":[980080,980081,980082,980083],"delay":2696.0} +{"session_id":"sess-d2eee43f85bd","input_length":604,"output_length":374,"hash_ids":[980084,980085],"delay":34926.5} +{"session_id":"sess-d2eee43f85bd","input_length":1254,"output_length":467,"hash_ids":[980086,980087,980088],"delay":4153.6} +{"session_id":"sess-d2eee43f85bd","input_length":1413,"output_length":710,"hash_ids":[980089,980090,980091],"delay":666.7} +{"session_id":"sess-d2eee43f85bd","input_length":3115,"output_length":273,"hash_ids":[980092,980093,980094,980095,980096,980097,980098],"delay":18849.0} +{"session_id":"sess-d2eee43f85bd","input_length":6528,"output_length":30,"hash_ids":[980099,980100,980101,980102,980103,980104,980105,980106,980107,980108,980109,980110,980111],"delay":34186.4} +{"session_id":"sess-d2eee43f85bd","input_length":1220,"output_length":1205,"hash_ids":[980112,980113,980114],"delay":11662.3} +{"session_id":"sess-d2eee43f85bd","input_length":858,"output_length":106,"hash_ids":[980115,980116],"delay":4442.7} +{"session_id":"sess-d2eee43f85bd","input_length":1244,"output_length":82,"hash_ids":[980117,980118,980119],"delay":1034.9} +{"session_id":"sess-d2eee43f85bd","input_length":2918,"output_length":72,"hash_ids":[980120,980121,980122,980123,980124,980125],"delay":251.4} +{"session_id":"sess-d2eee43f85bd","input_length":6652,"output_length":118,"hash_ids":[980126,980127,980128,980129,980130,980131,980132,980133,980134,980135,980136,980137,980138],"delay":137.7} +{"session_id":"sess-d2eee43f85bd","input_length":2394,"output_length":159,"hash_ids":[980139,980140,980141,980142,980143],"delay":1149.9} +{"session_id":"sess-d2eee43f85bd","input_length":4242,"output_length":278,"hash_ids":[980144,980145,980146,980147,980148,980149,980150,980151,980152],"delay":2515.1} +{"session_id":"sess-d2eee43f85bd","input_length":3841,"output_length":631,"hash_ids":[980153,980154,980155,980156,980157,980158,980159,980160],"delay":351.9} +{"session_id":"sess-d2eee43f85bd","input_length":1869,"output_length":583,"hash_ids":[980161,980162,980163,980164],"delay":686.5} +{"session_id":"sess-d2eee43f85bd","input_length":842,"output_length":76,"hash_ids":[980165,980166],"delay":572.4} +{"session_id":"sess-d2eee43f85bd","input_length":405,"output_length":640,"hash_ids":[980167],"delay":561.4} +{"session_id":"sess-d2eee43f85bd","input_length":5673,"output_length":382,"hash_ids":[980168,980169,980170,980171,980172,980173,980174,980175,980176,980177,980178,980179],"delay":556.6} +{"session_id":"sess-d2eee43f85bd","input_length":926,"output_length":256,"hash_ids":[980180,980181],"delay":2811.4} +{"session_id":"sess-d2eee43f85bd","input_length":2245,"output_length":320,"hash_ids":[980182,980183,980184,980185,980186],"delay":619.3} +{"session_id":"sess-d2eee43f85bd","input_length":261,"output_length":98,"hash_ids":[980187],"delay":7513.3} +{"session_id":"sess-d2eee43f85bd","input_length":496,"output_length":560,"hash_ids":[980188],"delay":1364.7} +{"session_id":"sess-d2eee43f85bd","input_length":1248,"output_length":174,"hash_ids":[980189,980190,980191],"delay":979.2} +{"session_id":"sess-d2eee43f85bd","input_length":6865,"output_length":157,"hash_ids":[980192,980193,980194,980195,980196,980197,980198,980199,980200,980201,980202,980203,980204,980205],"delay":5653.9} +{"session_id":"sess-f98aeba341f6","input_length":62607,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,984063,984064,984065,984066,984067,984068,984069,984070,984071,984072,984073,984074,984075,984076,984077,984078,984079,984080,984081,984082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f98aeba341f6","input_length":1099,"output_length":172,"hash_ids":[984083,984084,984085],"delay":6966.2} +{"session_id":"sess-3c7b8df7efba","input_length":56957,"output_length":262,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,988063,988064,988065,988066,988067,988068,988069,988070,988071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3c7b8df7efba","input_length":2586,"output_length":398,"hash_ids":[988072,988073,988074,988075,988076,988077],"delay":20427.2} +{"session_id":"sess-3c7b8df7efba","input_length":1792,"output_length":797,"hash_ids":[988078,988079,988080,988081],"delay":26809.3} +{"session_id":"sess-3c7b8df7efba","input_length":4070,"output_length":348,"hash_ids":[988082,988083,988084,988085,988086,988087,988088,988089],"delay":1603.9} +{"session_id":"sess-3c7b8df7efba","input_length":1855,"output_length":218,"hash_ids":[988090,988091,988092,988093],"delay":888.1} +{"session_id":"sess-3c7b8df7efba","input_length":3696,"output_length":966,"hash_ids":[988094,988095,988096,988097,988098,988099,988100,988101],"delay":2125.1} +{"session_id":"sess-3c7b8df7efba","input_length":1075,"output_length":750,"hash_ids":[988102,988103,988104],"delay":1239.6} +{"session_id":"sess-3c7b8df7efba","input_length":3883,"output_length":741,"hash_ids":[988105,988106,988107,988108,988109,988110,988111,988112],"delay":271.3} +{"session_id":"sess-3c7b8df7efba","input_length":3445,"output_length":41,"hash_ids":[988113,988114,988115,988116,988117,988118,988119],"delay":12426.5} +{"session_id":"sess-3c7b8df7efba","input_length":1309,"output_length":490,"hash_ids":[988120,988121,988122],"delay":32420.5} +{"session_id":"sess-3c7b8df7efba","input_length":1831,"output_length":506,"hash_ids":[988123,988124,988125,988126],"delay":826.2} +{"session_id":"sess-3c7b8df7efba","input_length":1756,"output_length":2060,"hash_ids":[988127,988128,988129,988130],"delay":27023.7} +{"session_id":"sess-3c7b8df7efba","input_length":1527,"output_length":289,"hash_ids":[988131,988132,988133],"delay":2211.0} +{"session_id":"sess-3c7b8df7efba","input_length":1314,"output_length":219,"hash_ids":[988134,988135,988136],"delay":478.2} +{"session_id":"sess-3c7b8df7efba","input_length":229,"output_length":204,"hash_ids":[988137],"delay":6302.3} +{"session_id":"sess-3c7b8df7efba","input_length":9755,"output_length":285,"hash_ids":[988138,988139,988140,988141,988142,988143,988144,988145,988146,988147,988148,988149,988150,988151,988152,988153,988154,988155,988156,988157],"delay":19950.3} +{"session_id":"sess-3c7b8df7efba","input_length":1237,"output_length":288,"hash_ids":[988158,988159,988160],"delay":773.4} +{"session_id":"sess-3c7b8df7efba","input_length":2253,"output_length":486,"hash_ids":[988161,988162,988163,988164,988165],"delay":2759.4} +{"session_id":"sess-3c7b8df7efba","input_length":4050,"output_length":120,"hash_ids":[988166,988167,988168,988169,988170,988171,988172,988173],"delay":217.4} +{"session_id":"sess-3c7b8df7efba","input_length":2200,"output_length":372,"hash_ids":[988174,988175,988176,988177,988178],"delay":2663.8} +{"session_id":"sess-3c7b8df7efba","input_length":2047,"output_length":150,"hash_ids":[988179,988180,988181,988182],"delay":642.0} +{"session_id":"sess-3c7b8df7efba","input_length":2384,"output_length":135,"hash_ids":[988183,988184,988185,988186,988187],"delay":22560.7} +{"session_id":"sess-3c7b8df7efba","input_length":5591,"output_length":203,"hash_ids":[988188,988189,988190,988191,988192,988193,988194,988195,988196,988197,988198],"delay":171.6} +{"session_id":"sess-3c7b8df7efba","input_length":2396,"output_length":146,"hash_ids":[988199,988200,988201,988202,988203],"delay":353.2} +{"session_id":"sess-a5f9e49233ed","input_length":54833,"output_length":341,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,992063,992064,992065,992066,992067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a5f9e49233ed","input_length":640,"output_length":386,"hash_ids":[992068,992069],"delay":1005.9} +{"session_id":"sess-a5f9e49233ed","input_length":1573,"output_length":705,"hash_ids":[992070,992071,992072,992073],"delay":42762.0} +{"session_id":"sess-cc40102a4ce6","input_length":55240,"output_length":1082,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,996063,996064,996065,996066,996067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cc40102a4ce6","input_length":269,"output_length":115,"hash_ids":[996068],"delay":1667.2} +{"session_id":"sess-cc40102a4ce6","input_length":1563,"output_length":92,"hash_ids":[996069,996070,996071,996072],"delay":502.1} +{"session_id":"sess-cc40102a4ce6","input_length":1709,"output_length":176,"hash_ids":[996073,996074,996075,996076],"delay":348.9} +{"session_id":"sess-cc40102a4ce6","input_length":3261,"output_length":296,"hash_ids":[996077,996078,996079,996080,996081,996082,996083],"delay":26007.0} +{"session_id":"sess-cc40102a4ce6","input_length":7460,"output_length":477,"hash_ids":[996084,996085,996086,996087,996088,996089,996090,996091,996092,996093,996094,996095,996096,996097,996098],"delay":541.7} +{"session_id":"sess-cc40102a4ce6","input_length":123,"output_length":463,"hash_ids":[996099],"delay":21783.3} +{"session_id":"sess-cc40102a4ce6","input_length":4087,"output_length":520,"hash_ids":[996100,996101,996102,996103,996104,996105,996106,996107],"delay":661.7} +{"session_id":"sess-cc40102a4ce6","input_length":997,"output_length":1140,"hash_ids":[996108,996109],"delay":668.3} +{"session_id":"sess-cc40102a4ce6","input_length":2614,"output_length":95,"hash_ids":[996110,996111,996112,996113,996114,996115],"delay":815.3} +{"session_id":"sess-cc40102a4ce6","input_length":7540,"output_length":149,"hash_ids":[996116,996117,996118,996119,996120,996121,996122,996123,996124,996125,996126,996127,996128,996129,996130],"delay":30575.7} +{"session_id":"sess-cc40102a4ce6","input_length":4996,"output_length":165,"hash_ids":[996131,996132,996133,996134,996135,996136,996137,996138,996139,996140],"delay":93.5} +{"session_id":"sess-cc40102a4ce6","input_length":1025,"output_length":193,"hash_ids":[996141,996142,996143],"delay":2041.3} +{"session_id":"sess-cc40102a4ce6","input_length":2268,"output_length":87,"hash_ids":[996144,996145,996146,996147,996148],"delay":866.6} +{"session_id":"sess-cc40102a4ce6","input_length":343,"output_length":907,"hash_ids":[996149],"delay":303.5} +{"session_id":"sess-cc40102a4ce6","input_length":3512,"output_length":113,"hash_ids":[996150,996151,996152,996153,996154,996155,996156],"delay":263.8} +{"session_id":"sess-cc40102a4ce6","input_length":327,"output_length":341,"hash_ids":[996157],"delay":665.3} +{"session_id":"sess-96bd88b9a9f4","input_length":58141,"output_length":407,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,1000063,1000064,1000065,1000066,1000067,1000068,1000069,1000070,1000071,1000072,1000073],"timestamp":0.0,"group_id":29} +{"session_id":"sess-96bd88b9a9f4","input_length":245,"output_length":115,"hash_ids":[1000074],"delay":3086.4} +{"session_id":"sess-96bd88b9a9f4","input_length":368,"output_length":578,"hash_ids":[1000075],"delay":702.7} +{"session_id":"sess-96bd88b9a9f4","input_length":5608,"output_length":35,"hash_ids":[1000076,1000077,1000078,1000079,1000080,1000081,1000082,1000083,1000084,1000085,1000086],"delay":9863.2} +{"session_id":"sess-96bd88b9a9f4","input_length":7893,"output_length":590,"hash_ids":[1000087,1000088,1000089,1000090,1000091,1000092,1000093,1000094,1000095,1000096,1000097,1000098,1000099,1000100,1000101,1000102],"delay":2013.2} +{"session_id":"sess-96bd88b9a9f4","input_length":1752,"output_length":450,"hash_ids":[1000103,1000104,1000105,1000106],"delay":1023.7} +{"session_id":"sess-d1612b8cf67d","input_length":57333,"output_length":42,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1004063,1004064,1004065,1004066,1004067,1004068,1004069,1004070,1004071],"timestamp":0.0,"group_id":5} +{"session_id":"sess-d1612b8cf67d","input_length":5991,"output_length":240,"hash_ids":[1004072,1004073,1004074,1004075,1004076,1004077,1004078,1004079,1004080,1004081,1004082,1004083],"delay":1447.3} +{"session_id":"sess-d1612b8cf67d","input_length":1429,"output_length":546,"hash_ids":[1004084,1004085,1004086],"delay":39200.3} +{"session_id":"sess-d1612b8cf67d","input_length":293,"output_length":258,"hash_ids":[1004087],"delay":780.7} +{"session_id":"sess-d1612b8cf67d","input_length":1076,"output_length":397,"hash_ids":[1004088,1004089,1004090],"delay":626.7} +{"session_id":"sess-d1612b8cf67d","input_length":492,"output_length":1685,"hash_ids":[1004091],"delay":7885.5} +{"session_id":"sess-d1612b8cf67d","input_length":1422,"output_length":30,"hash_ids":[1004092,1004093,1004094],"delay":1376.4} +{"session_id":"sess-d1612b8cf67d","input_length":3226,"output_length":68,"hash_ids":[1004095,1004096,1004097,1004098,1004099,1004100,1004101],"delay":1845.3} +{"session_id":"sess-5bff457da70c","input_length":68843,"output_length":598,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1008063,1008064,1008065,1008066,1008067,1008068,1008069,1008070,1008071,1008072,1008073,1008074,1008075,1008076,1008077,1008078,1008079,1008080,1008081,1008082,1008083,1008084,1008085,1008086,1008087,1008088,1008089,1008090,1008091,1008092,1008093,1008094],"timestamp":0.0,"group_id":6} +{"session_id":"sess-5bff457da70c","input_length":1051,"output_length":59,"hash_ids":[1008095,1008096,1008097],"delay":4185.5} +{"session_id":"sess-5bff457da70c","input_length":573,"output_length":197,"hash_ids":[1008098,1008099],"delay":1696.7} +{"session_id":"sess-5bff457da70c","input_length":6071,"output_length":72,"hash_ids":[1008100,1008101,1008102,1008103,1008104,1008105,1008106,1008107,1008108,1008109,1008110,1008111],"delay":6523.3} +{"session_id":"sess-5bff457da70c","input_length":2285,"output_length":326,"hash_ids":[1008112,1008113,1008114,1008115,1008116],"delay":532.0} +{"session_id":"sess-5bff457da70c","input_length":4222,"output_length":816,"hash_ids":[1008117,1008118,1008119,1008120,1008121,1008122,1008123,1008124,1008125],"delay":7669.1} +{"session_id":"sess-5bff457da70c","input_length":585,"output_length":862,"hash_ids":[1008126,1008127],"delay":716.0} +{"session_id":"sess-5bff457da70c","input_length":2930,"output_length":133,"hash_ids":[1008128,1008129,1008130,1008131,1008132,1008133],"delay":265.3} +{"session_id":"sess-5bff457da70c","input_length":2052,"output_length":917,"hash_ids":[1008134,1008135,1008136,1008137,1008138],"delay":7158.4} +{"session_id":"sess-5bff457da70c","input_length":7594,"output_length":269,"hash_ids":[1008139,1008140,1008141,1008142,1008143,1008144,1008145,1008146,1008147,1008148,1008149,1008150,1008151,1008152,1008153],"delay":2043.8} +{"session_id":"sess-5bff457da70c","input_length":590,"output_length":1167,"hash_ids":[1008154,1008155],"delay":1230.6} +{"session_id":"sess-5bff457da70c","input_length":1430,"output_length":389,"hash_ids":[1008156,1008157,1008158],"delay":1419.6} +{"session_id":"sess-5bff457da70c","input_length":3288,"output_length":988,"hash_ids":[1008159,1008160,1008161,1008162,1008163,1008164,1008165],"delay":23161.2} +{"session_id":"sess-5bff457da70c","input_length":4281,"output_length":247,"hash_ids":[1008166,1008167,1008168,1008169,1008170,1008171,1008172,1008173,1008174],"delay":768.7} +{"session_id":"sess-5bff457da70c","input_length":1797,"output_length":1043,"hash_ids":[1008175,1008176,1008177,1008178],"delay":310.6} +{"session_id":"sess-5bff457da70c","input_length":945,"output_length":615,"hash_ids":[1008179,1008180],"delay":9713.4} +{"session_id":"sess-2343566dab58","input_length":55214,"output_length":1906,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1012063,1012064,1012065,1012066,1012067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2343566dab58","input_length":166,"output_length":332,"hash_ids":[1012068],"delay":380.9} +{"session_id":"sess-2343566dab58","input_length":3079,"output_length":498,"hash_ids":[1012069,1012070,1012071,1012072,1012073,1012074,1012075],"delay":542.7} +{"session_id":"sess-2343566dab58","input_length":4063,"output_length":158,"hash_ids":[1012076,1012077,1012078,1012079,1012080,1012081,1012082,1012083],"delay":770.8} +{"session_id":"sess-935e2fd641c9","input_length":56408,"output_length":166,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,1016063,1016064,1016065,1016066,1016067,1016068,1016069,1016070],"timestamp":0.0,"group_id":28} +{"session_id":"sess-935e2fd641c9","input_length":1424,"output_length":374,"hash_ids":[1016071,1016072,1016073],"delay":561.2} +{"session_id":"sess-935e2fd641c9","input_length":891,"output_length":228,"hash_ids":[1016074,1016075],"delay":1584.3} +{"session_id":"sess-6dbf9b2219ea","input_length":53067,"output_length":2343,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,1020063],"timestamp":0.0,"group_id":18} +{"session_id":"sess-6dbf9b2219ea","input_length":270,"output_length":176,"hash_ids":[1020064],"delay":19132.9} +{"session_id":"sess-6dbf9b2219ea","input_length":2394,"output_length":469,"hash_ids":[1020065,1020066,1020067,1020068,1020069],"delay":7198.9} +{"session_id":"sess-6dbf9b2219ea","input_length":1329,"output_length":194,"hash_ids":[1020070,1020071,1020072],"delay":27172.1} +{"session_id":"sess-6dbf9b2219ea","input_length":5753,"output_length":41,"hash_ids":[1020073,1020074,1020075,1020076,1020077,1020078,1020079,1020080,1020081,1020082,1020083,1020084],"delay":943.9} +{"session_id":"sess-6dbf9b2219ea","input_length":2467,"output_length":55,"hash_ids":[1020085,1020086,1020087,1020088,1020089],"delay":689.4} +{"session_id":"sess-6dbf9b2219ea","input_length":4674,"output_length":1070,"hash_ids":[1020090,1020091,1020092,1020093,1020094,1020095,1020096,1020097,1020098,1020099],"delay":20576.5} +{"session_id":"sess-6dbf9b2219ea","input_length":698,"output_length":114,"hash_ids":[1020100,1020101],"delay":3392.1} +{"session_id":"sess-6dbf9b2219ea","input_length":1889,"output_length":30,"hash_ids":[1020102,1020103,1020104,1020105],"delay":27114.4} +{"session_id":"sess-6dbf9b2219ea","input_length":2806,"output_length":145,"hash_ids":[1020106,1020107,1020108,1020109,1020110,1020111],"delay":763.5} +{"session_id":"sess-6dbf9b2219ea","input_length":2221,"output_length":941,"hash_ids":[1020112,1020113,1020114,1020115,1020116],"delay":908.1} +{"session_id":"sess-6dbf9b2219ea","input_length":3633,"output_length":569,"hash_ids":[1020117,1020118,1020119,1020120,1020121,1020122,1020123,1020124],"delay":9998.9} +{"session_id":"sess-6dbf9b2219ea","input_length":3606,"output_length":66,"hash_ids":[1020125,1020126,1020127,1020128,1020129,1020130,1020131,1020132],"delay":9003.7} +{"session_id":"sess-6dbf9b2219ea","input_length":6281,"output_length":67,"hash_ids":[1020133,1020134,1020135,1020136,1020137,1020138,1020139,1020140,1020141,1020142,1020143,1020144,1020145],"delay":3561.1} +{"session_id":"sess-6dbf9b2219ea","input_length":1361,"output_length":267,"hash_ids":[1020146,1020147,1020148],"delay":586.7} +{"session_id":"sess-6dbf9b2219ea","input_length":570,"output_length":337,"hash_ids":[1020149,1020150],"delay":498.2} +{"session_id":"sess-6dbf9b2219ea","input_length":1145,"output_length":404,"hash_ids":[1020151,1020152,1020153],"delay":12388.6} +{"session_id":"sess-6dbf9b2219ea","input_length":3604,"output_length":252,"hash_ids":[1020154,1020155,1020156,1020157,1020158,1020159,1020160,1020161],"delay":644.3} +{"session_id":"sess-6dbf9b2219ea","input_length":1214,"output_length":968,"hash_ids":[1020162,1020163,1020164],"delay":393.0} +{"session_id":"sess-6dbf9b2219ea","input_length":1987,"output_length":934,"hash_ids":[1020165,1020166,1020167,1020168],"delay":648.0} +{"session_id":"sess-6dbf9b2219ea","input_length":170,"output_length":78,"hash_ids":[1020169],"delay":1750.3} +{"session_id":"sess-6dbf9b2219ea","input_length":2172,"output_length":1151,"hash_ids":[1020170,1020171,1020172,1020173,1020174],"delay":1102.8} +{"session_id":"sess-6dbf9b2219ea","input_length":2549,"output_length":535,"hash_ids":[1020175,1020176,1020177,1020178,1020179],"delay":25706.7} +{"session_id":"sess-6dbf9b2219ea","input_length":4541,"output_length":675,"hash_ids":[1020180,1020181,1020182,1020183,1020184,1020185,1020186,1020187,1020188],"delay":404.3} +{"session_id":"sess-6dbf9b2219ea","input_length":1686,"output_length":749,"hash_ids":[1020189,1020190,1020191,1020192],"delay":437.4} +{"session_id":"sess-6dbf9b2219ea","input_length":3525,"output_length":365,"hash_ids":[1020193,1020194,1020195,1020196,1020197,1020198,1020199],"delay":5868.7} +{"session_id":"sess-6dbf9b2219ea","input_length":1681,"output_length":532,"hash_ids":[1020200,1020201,1020202,1020203],"delay":439.8} +{"session_id":"sess-2e1886b5d937","input_length":53479,"output_length":367,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1024063,1024064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2e1886b5d937","input_length":1316,"output_length":196,"hash_ids":[1024065,1024066,1024067],"delay":1005.9} +{"session_id":"sess-2e1886b5d937","input_length":7758,"output_length":178,"hash_ids":[1024068,1024069,1024070,1024071,1024072,1024073,1024074,1024075,1024076,1024077,1024078,1024079,1024080,1024081,1024082,1024083],"delay":36850.1} +{"session_id":"sess-2e1886b5d937","input_length":1421,"output_length":152,"hash_ids":[1024084,1024085,1024086],"delay":1124.2} +{"session_id":"sess-2e1886b5d937","input_length":596,"output_length":552,"hash_ids":[1024087,1024088],"delay":2980.0} +{"session_id":"sess-2e1886b5d937","input_length":1697,"output_length":892,"hash_ids":[1024089,1024090,1024091,1024092],"delay":346.2} +{"session_id":"sess-2e1886b5d937","input_length":3565,"output_length":181,"hash_ids":[1024093,1024094,1024095,1024096,1024097,1024098,1024099],"delay":730.2} +{"session_id":"sess-2e1886b5d937","input_length":4653,"output_length":514,"hash_ids":[1024100,1024101,1024102,1024103,1024104,1024105,1024106,1024107,1024108,1024109],"delay":781.5} +{"session_id":"sess-2e1886b5d937","input_length":64,"output_length":188,"hash_ids":[1024110],"delay":11681.6} +{"session_id":"sess-2e1886b5d937","input_length":2158,"output_length":433,"hash_ids":[1024111,1024112,1024113,1024114,1024115],"delay":3307.0} +{"session_id":"sess-2e1886b5d937","input_length":962,"output_length":404,"hash_ids":[1024116,1024117],"delay":2060.0} +{"session_id":"sess-2e1886b5d937","input_length":2160,"output_length":629,"hash_ids":[1024118,1024119,1024120,1024121,1024122],"delay":2454.1} +{"session_id":"sess-2e1886b5d937","input_length":2273,"output_length":199,"hash_ids":[1024123,1024124,1024125,1024126,1024127],"delay":202.6} +{"session_id":"sess-2e1886b5d937","input_length":3595,"output_length":407,"hash_ids":[1024128,1024129,1024130,1024131,1024132,1024133,1024134,1024135],"delay":4706.1} +{"session_id":"sess-2e1886b5d937","input_length":436,"output_length":1998,"hash_ids":[1024136],"delay":426.3} +{"session_id":"sess-2e1886b5d937","input_length":2986,"output_length":155,"hash_ids":[1024137,1024138,1024139,1024140,1024141,1024142],"delay":1083.2} +{"session_id":"sess-2e1886b5d937","input_length":8282,"output_length":330,"hash_ids":[1024143,1024144,1024145,1024146,1024147,1024148,1024149,1024150,1024151,1024152,1024153,1024154,1024155,1024156,1024157,1024158,1024159],"delay":588.5} +{"session_id":"sess-2e1886b5d937","input_length":3084,"output_length":843,"hash_ids":[1024160,1024161,1024162,1024163,1024164,1024165,1024166],"delay":11019.1} +{"session_id":"sess-2e1886b5d937","input_length":3930,"output_length":282,"hash_ids":[1024167,1024168,1024169,1024170,1024171,1024172,1024173,1024174],"delay":4299.5} +{"session_id":"sess-2e1886b5d937","input_length":1423,"output_length":105,"hash_ids":[1024175,1024176,1024177],"delay":249.7} +{"session_id":"sess-2e1886b5d937","input_length":871,"output_length":265,"hash_ids":[1024178,1024179],"delay":352.6} +{"session_id":"sess-2e1886b5d937","input_length":407,"output_length":791,"hash_ids":[1024180],"delay":536.0} +{"session_id":"sess-2e1886b5d937","input_length":2752,"output_length":796,"hash_ids":[1024181,1024182,1024183,1024184,1024185,1024186],"delay":1360.1} +{"session_id":"sess-2e1886b5d937","input_length":6632,"output_length":642,"hash_ids":[1024187,1024188,1024189,1024190,1024191,1024192,1024193,1024194,1024195,1024196,1024197,1024198,1024199],"delay":12943.6} +{"session_id":"sess-490f59239b84","input_length":62398,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1028063,1028064,1028065,1028066,1028067,1028068,1028069,1028070,1028071,1028072,1028073,1028074,1028075,1028076,1028077,1028078,1028079,1028080,1028081],"timestamp":0.0,"group_id":0} +{"session_id":"sess-490f59239b84","input_length":403,"output_length":302,"hash_ids":[1028082],"delay":1232.6} +{"session_id":"sess-490f59239b84","input_length":1255,"output_length":1055,"hash_ids":[1028083,1028084,1028085],"delay":706.7} +{"session_id":"sess-490f59239b84","input_length":3630,"output_length":139,"hash_ids":[1028086,1028087,1028088,1028089,1028090,1028091,1028092,1028093],"delay":13621.0} +{"session_id":"sess-490f59239b84","input_length":1496,"output_length":110,"hash_ids":[1028094,1028095,1028096],"delay":16359.7} +{"session_id":"sess-490f59239b84","input_length":2464,"output_length":222,"hash_ids":[1028097,1028098,1028099,1028100,1028101],"delay":3700.2} +{"session_id":"sess-490f59239b84","input_length":629,"output_length":300,"hash_ids":[1028102,1028103],"delay":12340.8} +{"session_id":"sess-490f59239b84","input_length":3375,"output_length":566,"hash_ids":[1028104,1028105,1028106,1028107,1028108,1028109,1028110],"delay":588.3} +{"session_id":"sess-490f59239b84","input_length":4333,"output_length":1048,"hash_ids":[1028111,1028112,1028113,1028114,1028115,1028116,1028117,1028118,1028119],"delay":21711.8} +{"session_id":"sess-490f59239b84","input_length":1583,"output_length":63,"hash_ids":[1028120,1028121,1028122,1028123],"delay":1705.0} +{"session_id":"sess-490f59239b84","input_length":4512,"output_length":326,"hash_ids":[1028124,1028125,1028126,1028127,1028128,1028129,1028130,1028131,1028132],"delay":263.0} +{"session_id":"sess-490f59239b84","input_length":383,"output_length":83,"hash_ids":[1028133],"delay":18455.1} +{"session_id":"sess-490f59239b84","input_length":1707,"output_length":424,"hash_ids":[1028134,1028135,1028136,1028137],"delay":918.4} +{"session_id":"sess-490f59239b84","input_length":1590,"output_length":203,"hash_ids":[1028138,1028139,1028140,1028141],"delay":468.6} +{"session_id":"sess-490f59239b84","input_length":776,"output_length":258,"hash_ids":[1028142,1028143],"delay":1112.1} +{"session_id":"sess-490f59239b84","input_length":1577,"output_length":325,"hash_ids":[1028144,1028145,1028146,1028147],"delay":1008.3} +{"session_id":"sess-490f59239b84","input_length":1552,"output_length":1721,"hash_ids":[1028148,1028149,1028150,1028151],"delay":7270.2} +{"session_id":"sess-490f59239b84","input_length":1949,"output_length":109,"hash_ids":[1028152,1028153,1028154,1028155],"delay":815.4} +{"session_id":"sess-490f59239b84","input_length":181,"output_length":124,"hash_ids":[1028156],"delay":832.0} +{"session_id":"sess-490f59239b84","input_length":2102,"output_length":130,"hash_ids":[1028157,1028158,1028159,1028160,1028161],"delay":7274.0} +{"session_id":"sess-490f59239b84","input_length":1389,"output_length":170,"hash_ids":[1028162,1028163,1028164],"delay":254.2} +{"session_id":"sess-490f59239b84","input_length":3838,"output_length":959,"hash_ids":[1028165,1028166,1028167,1028168,1028169,1028170,1028171,1028172],"delay":436.1} +{"session_id":"sess-490f59239b84","input_length":3843,"output_length":175,"hash_ids":[1028173,1028174,1028175,1028176,1028177,1028178,1028179,1028180],"delay":434.7} +{"session_id":"sess-490f59239b84","input_length":1380,"output_length":809,"hash_ids":[1028181,1028182,1028183],"delay":324.9} +{"session_id":"sess-490f59239b84","input_length":325,"output_length":1533,"hash_ids":[1028184],"delay":158.3} +{"session_id":"sess-490f59239b84","input_length":1173,"output_length":1198,"hash_ids":[1028185,1028186,1028187],"delay":3645.4} +{"session_id":"sess-490f59239b84","input_length":523,"output_length":318,"hash_ids":[1028188,1028189],"delay":1032.7} +{"session_id":"sess-490f59239b84","input_length":3713,"output_length":45,"hash_ids":[1028190,1028191,1028192,1028193,1028194,1028195,1028196,1028197],"delay":13677.0} +{"session_id":"sess-490f59239b84","input_length":4040,"output_length":82,"hash_ids":[1028198,1028199,1028200,1028201,1028202,1028203,1028204,1028205],"delay":114.2} +{"session_id":"sess-fb99c0bcbe50","input_length":57497,"output_length":274,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1032063,1032064,1032065,1032066,1032067,1032068,1032069,1032070,1032071,1032072],"timestamp":0.0,"group_id":3} +{"session_id":"sess-fb99c0bcbe50","input_length":2997,"output_length":633,"hash_ids":[1032073,1032074,1032075,1032076,1032077,1032078],"delay":9077.5} +{"session_id":"sess-fb99c0bcbe50","input_length":4337,"output_length":300,"hash_ids":[1032079,1032080,1032081,1032082,1032083,1032084,1032085,1032086,1032087],"delay":8651.2} +{"session_id":"sess-fb99c0bcbe50","input_length":3529,"output_length":229,"hash_ids":[1032088,1032089,1032090,1032091,1032092,1032093,1032094],"delay":1217.5} +{"session_id":"sess-fb99c0bcbe50","input_length":391,"output_length":400,"hash_ids":[1032095],"delay":3865.3} +{"session_id":"sess-3ded13e436a5","input_length":61394,"output_length":370,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,1036063,1036064,1036065,1036066,1036067,1036068,1036069,1036070,1036071,1036072,1036073,1036074,1036075,1036076,1036077,1036078,1036079],"timestamp":0.0,"group_id":37} +{"session_id":"sess-3ded13e436a5","input_length":1646,"output_length":76,"hash_ids":[1036080,1036081,1036082,1036083],"delay":35985.4} +{"session_id":"sess-3ded13e436a5","input_length":3395,"output_length":77,"hash_ids":[1036084,1036085,1036086,1036087,1036088,1036089,1036090],"delay":2291.0} +{"session_id":"sess-3ded13e436a5","input_length":559,"output_length":371,"hash_ids":[1036091,1036092],"delay":7475.4} +{"session_id":"sess-f898686cb66d","input_length":59863,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1040063,1040064,1040065,1040066,1040067,1040068,1040069,1040070,1040071,1040072,1040073,1040074,1040075,1040076],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f898686cb66d","input_length":4926,"output_length":747,"hash_ids":[1040077,1040078,1040079,1040080,1040081,1040082,1040083,1040084,1040085,1040086],"delay":791.6} +{"session_id":"sess-f898686cb66d","input_length":9792,"output_length":291,"hash_ids":[1040087,1040088,1040089,1040090,1040091,1040092,1040093,1040094,1040095,1040096,1040097,1040098,1040099,1040100,1040101,1040102,1040103,1040104,1040105,1040106],"delay":1203.1} +{"session_id":"sess-f898686cb66d","input_length":329,"output_length":1028,"hash_ids":[1040107],"delay":2048.4} +{"session_id":"sess-f898686cb66d","input_length":4552,"output_length":230,"hash_ids":[1040108,1040109,1040110,1040111,1040112,1040113,1040114,1040115,1040116],"delay":1335.1} +{"session_id":"sess-f898686cb66d","input_length":533,"output_length":658,"hash_ids":[1040117,1040118],"delay":276.5} +{"session_id":"sess-f898686cb66d","input_length":779,"output_length":236,"hash_ids":[1040119,1040120],"delay":779.8} +{"session_id":"sess-f898686cb66d","input_length":870,"output_length":55,"hash_ids":[1040121,1040122],"delay":11060.8} +{"session_id":"sess-f898686cb66d","input_length":9893,"output_length":355,"hash_ids":[1040123,1040124,1040125,1040126,1040127,1040128,1040129,1040130,1040131,1040132,1040133,1040134,1040135,1040136,1040137,1040138,1040139,1040140,1040141,1040142],"delay":834.1} +{"session_id":"sess-e71644c6830f","input_length":53357,"output_length":1490,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1044063,1044064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e71644c6830f","input_length":3001,"output_length":741,"hash_ids":[1044065,1044066,1044067,1044068,1044069,1044070],"delay":1355.5} +{"session_id":"sess-e71644c6830f","input_length":1847,"output_length":394,"hash_ids":[1044071,1044072,1044073,1044074],"delay":45098.7} +{"session_id":"sess-061df0a8b24c","input_length":53796,"output_length":533,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1048063,1048064,1048065],"timestamp":0.0,"group_id":6} +{"session_id":"sess-061df0a8b24c","input_length":5425,"output_length":435,"hash_ids":[1048066,1048067,1048068,1048069,1048070,1048071,1048072,1048073,1048074,1048075,1048076],"delay":273.1} +{"session_id":"sess-061df0a8b24c","input_length":576,"output_length":1106,"hash_ids":[1048077,1048078],"delay":1731.9} +{"session_id":"sess-061df0a8b24c","input_length":1226,"output_length":815,"hash_ids":[1048079,1048080,1048081],"delay":422.4} +{"session_id":"sess-54e7f6c670b6","input_length":52732,"output_length":640,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-54e7f6c670b6","input_length":539,"output_length":249,"hash_ids":[1048082,1048083],"delay":27815.9} +{"session_id":"sess-54e7f6c670b6","input_length":2937,"output_length":159,"hash_ids":[1048084,1048085,1048086,1048087,1048088,1048089],"delay":2996.1} +{"session_id":"sess-54e7f6c670b6","input_length":1147,"output_length":176,"hash_ids":[1048090,1048091,1048092],"delay":1778.1} +{"session_id":"sess-54e7f6c670b6","input_length":3788,"output_length":169,"hash_ids":[1048093,1048094,1048095,1048096,1048097,1048098,1048099,1048100],"delay":21565.5} +{"session_id":"sess-54e7f6c670b6","input_length":2358,"output_length":626,"hash_ids":[1048101,1048102,1048103,1048104,1048105],"delay":1970.0} +{"session_id":"sess-54e7f6c670b6","input_length":1230,"output_length":483,"hash_ids":[1048106,1048107,1048108],"delay":803.1} +{"session_id":"sess-54e7f6c670b6","input_length":938,"output_length":189,"hash_ids":[1048109,1048110],"delay":812.2} +{"session_id":"sess-54e7f6c670b6","input_length":1407,"output_length":118,"hash_ids":[1048111,1048112,1048113],"delay":19444.3} +{"session_id":"sess-54e7f6c670b6","input_length":212,"output_length":395,"hash_ids":[1048114],"delay":361.7} +{"session_id":"sess-54e7f6c670b6","input_length":3178,"output_length":142,"hash_ids":[1048115,1048116,1048117,1048118,1048119,1048120,1048121],"delay":637.0} +{"session_id":"sess-54e7f6c670b6","input_length":6681,"output_length":186,"hash_ids":[1048122,1048123,1048124,1048125,1048126,1048127,1048128,1048129,1048130,1048131,1048132,1048133,1048134,1048135],"delay":1409.3} +{"session_id":"sess-54e7f6c670b6","input_length":3126,"output_length":643,"hash_ids":[1048136,1048137,1048138,1048139,1048140,1048141,1048142],"delay":699.4} +{"session_id":"sess-54e7f6c670b6","input_length":1381,"output_length":214,"hash_ids":[1048143,1048144,1048145],"delay":4857.8} +{"session_id":"sess-54e7f6c670b6","input_length":162,"output_length":880,"hash_ids":[1048146],"delay":5536.4} +{"session_id":"sess-54e7f6c670b6","input_length":623,"output_length":737,"hash_ids":[1048147,1048148],"delay":789.0} +{"session_id":"sess-54e7f6c670b6","input_length":4251,"output_length":211,"hash_ids":[1048149,1048150,1048151,1048152,1048153,1048154,1048155,1048156,1048157],"delay":1848.2} +{"session_id":"sess-5f423890ec8f","input_length":72342,"output_length":589,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1056063,1056064,1056065,1056066,1056067,1056068,1056069,1056070,1056071,1056072,1056073,1056074,1056075,1056076,1056077,1056078,1056079,1056080,1056081,1056082,1056083,1056084,1056085,1056086,1056087,1056088,1056089,1056090,1056091,1056092,1056093,1056094,1056095,1056096,1056097,1056098,1056099,1056100,1056101],"timestamp":0.0,"group_id":6} +{"session_id":"sess-5f423890ec8f","input_length":2710,"output_length":230,"hash_ids":[1056102,1056103,1056104,1056105,1056106,1056107],"delay":1437.0} +{"session_id":"sess-5f423890ec8f","input_length":2099,"output_length":68,"hash_ids":[1056108,1056109,1056110,1056111,1056112],"delay":1507.5} +{"session_id":"sess-5f423890ec8f","input_length":7004,"output_length":172,"hash_ids":[1056113,1056114,1056115,1056116,1056117,1056118,1056119,1056120,1056121,1056122,1056123,1056124,1056125,1056126],"delay":1681.5} +{"session_id":"sess-5f423890ec8f","input_length":4762,"output_length":984,"hash_ids":[1056127,1056128,1056129,1056130,1056131,1056132,1056133,1056134,1056135,1056136],"delay":19846.0} +{"session_id":"sess-5f423890ec8f","input_length":3203,"output_length":595,"hash_ids":[1056137,1056138,1056139,1056140,1056141,1056142,1056143],"delay":735.6} +{"session_id":"sess-5f423890ec8f","input_length":3369,"output_length":582,"hash_ids":[1056144,1056145,1056146,1056147,1056148,1056149,1056150],"delay":1056.8} +{"session_id":"sess-5f423890ec8f","input_length":1453,"output_length":293,"hash_ids":[1056151,1056152,1056153],"delay":198.4} +{"session_id":"sess-5f423890ec8f","input_length":1620,"output_length":377,"hash_ids":[1056154,1056155,1056156,1056157],"delay":11664.5} +{"session_id":"sess-5f423890ec8f","input_length":1966,"output_length":504,"hash_ids":[1056158,1056159,1056160,1056161],"delay":1500.9} +{"session_id":"sess-5f423890ec8f","input_length":9210,"output_length":118,"hash_ids":[1056162,1056163,1056164,1056165,1056166,1056167,1056168,1056169,1056170,1056171,1056172,1056173,1056174,1056175,1056176,1056177,1056178,1056179],"delay":608.8} +{"session_id":"sess-5f423890ec8f","input_length":495,"output_length":548,"hash_ids":[1056180],"delay":9594.5} +{"session_id":"sess-5f423890ec8f","input_length":1550,"output_length":215,"hash_ids":[1056181,1056182,1056183,1056184],"delay":4011.7} +{"session_id":"sess-5f423890ec8f","input_length":4327,"output_length":456,"hash_ids":[1056185,1056186,1056187,1056188,1056189,1056190,1056191,1056192,1056193],"delay":3807.5} +{"session_id":"sess-5f423890ec8f","input_length":2214,"output_length":1214,"hash_ids":[1056194,1056195,1056196,1056197,1056198],"delay":603.3} +{"session_id":"sess-08f5eb00134c","input_length":60447,"output_length":905,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1060063,1060064,1060065,1060066,1060067,1060068,1060069,1060070,1060071,1060072,1060073,1060074,1060075,1060076,1060077,1060078],"timestamp":0.0,"group_id":2} +{"session_id":"sess-08f5eb00134c","input_length":801,"output_length":616,"hash_ids":[1060079,1060080],"delay":1920.5} +{"session_id":"sess-08f5eb00134c","input_length":1095,"output_length":322,"hash_ids":[1060081,1060082,1060083],"delay":324.7} +{"session_id":"sess-08f5eb00134c","input_length":3451,"output_length":2809,"hash_ids":[1060084,1060085,1060086,1060087,1060088,1060089,1060090],"delay":5425.7} +{"session_id":"sess-08f5eb00134c","input_length":2661,"output_length":399,"hash_ids":[1060091,1060092,1060093,1060094,1060095,1060096],"delay":467.9} +{"session_id":"sess-08f5eb00134c","input_length":2011,"output_length":52,"hash_ids":[1060097,1060098,1060099,1060100],"delay":2627.8} +{"session_id":"sess-08f5eb00134c","input_length":237,"output_length":900,"hash_ids":[1060101],"delay":1099.9} +{"session_id":"sess-08f5eb00134c","input_length":3285,"output_length":120,"hash_ids":[1060102,1060103,1060104,1060105,1060106,1060107,1060108],"delay":1015.2} +{"session_id":"sess-08f5eb00134c","input_length":4115,"output_length":241,"hash_ids":[1060109,1060110,1060111,1060112,1060113,1060114,1060115,1060116,1060117],"delay":458.5} +{"session_id":"sess-08f5eb00134c","input_length":9759,"output_length":360,"hash_ids":[1060118,1060119,1060120,1060121,1060122,1060123,1060124,1060125,1060126,1060127,1060128,1060129,1060130,1060131,1060132,1060133,1060134,1060135,1060136,1060137],"delay":518.0} +{"session_id":"sess-08f5eb00134c","input_length":7430,"output_length":496,"hash_ids":[1060138,1060139,1060140,1060141,1060142,1060143,1060144,1060145,1060146,1060147,1060148,1060149,1060150,1060151,1060152],"delay":500.9} +{"session_id":"sess-08f5eb00134c","input_length":1564,"output_length":47,"hash_ids":[1060153,1060154,1060155,1060156],"delay":319.9} +{"session_id":"sess-08f5eb00134c","input_length":8407,"output_length":118,"hash_ids":[1060157,1060158,1060159,1060160,1060161,1060162,1060163,1060164,1060165,1060166,1060167,1060168,1060169,1060170,1060171,1060172,1060173],"delay":1898.4} +{"session_id":"sess-08f5eb00134c","input_length":268,"output_length":769,"hash_ids":[1060174],"delay":2573.7} +{"session_id":"sess-08f5eb00134c","input_length":1907,"output_length":133,"hash_ids":[1060175,1060176,1060177,1060178],"delay":8314.4} +{"session_id":"sess-08f5eb00134c","input_length":605,"output_length":105,"hash_ids":[1060179,1060180],"delay":201.5} +{"session_id":"sess-08f5eb00134c","input_length":767,"output_length":65,"hash_ids":[1060181,1060182],"delay":7148.6} +{"session_id":"sess-08f5eb00134c","input_length":2917,"output_length":119,"hash_ids":[1060183,1060184,1060185,1060186,1060187,1060188],"delay":896.7} +{"session_id":"sess-08f5eb00134c","input_length":3140,"output_length":519,"hash_ids":[1060189,1060190,1060191,1060192,1060193,1060194,1060195],"delay":3297.3} +{"session_id":"sess-08f5eb00134c","input_length":1324,"output_length":97,"hash_ids":[1060196,1060197,1060198],"delay":1074.5} +{"session_id":"sess-cea0d9f7b6ab","input_length":53838,"output_length":2156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1064063,1064064,1064065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cea0d9f7b6ab","input_length":4974,"output_length":558,"hash_ids":[1064066,1064067,1064068,1064069,1064070,1064071,1064072,1064073,1064074,1064075],"delay":410.5} +{"session_id":"sess-cea0d9f7b6ab","input_length":1903,"output_length":338,"hash_ids":[1064076,1064077,1064078,1064079],"delay":1181.1} +{"session_id":"sess-cea0d9f7b6ab","input_length":5091,"output_length":2265,"hash_ids":[1064080,1064081,1064082,1064083,1064084,1064085,1064086,1064087,1064088,1064089],"delay":1660.3} +{"session_id":"sess-cea0d9f7b6ab","input_length":662,"output_length":137,"hash_ids":[1064090,1064091],"delay":882.1} +{"session_id":"sess-cea0d9f7b6ab","input_length":440,"output_length":81,"hash_ids":[1064092],"delay":1016.8} +{"session_id":"sess-cea0d9f7b6ab","input_length":6296,"output_length":273,"hash_ids":[1064093,1064094,1064095,1064096,1064097,1064098,1064099,1064100,1064101,1064102,1064103,1064104,1064105],"delay":7309.4} +{"session_id":"sess-cea0d9f7b6ab","input_length":466,"output_length":977,"hash_ids":[1064106],"delay":21447.2} +{"session_id":"sess-cea0d9f7b6ab","input_length":369,"output_length":129,"hash_ids":[1064107],"delay":825.8} +{"session_id":"sess-cea0d9f7b6ab","input_length":145,"output_length":30,"hash_ids":[1064108],"delay":427.0} +{"session_id":"sess-cea0d9f7b6ab","input_length":566,"output_length":129,"hash_ids":[1064109,1064110],"delay":6269.0} +{"session_id":"sess-cea0d9f7b6ab","input_length":1327,"output_length":1566,"hash_ids":[1064111,1064112,1064113],"delay":11326.8} +{"session_id":"sess-cea0d9f7b6ab","input_length":2561,"output_length":309,"hash_ids":[1064114,1064115,1064116,1064117,1064118,1064119],"delay":1334.3} +{"session_id":"sess-cea0d9f7b6ab","input_length":1129,"output_length":357,"hash_ids":[1064120,1064121,1064122],"delay":7942.1} +{"session_id":"sess-cea0d9f7b6ab","input_length":2779,"output_length":229,"hash_ids":[1064123,1064124,1064125,1064126,1064127,1064128],"delay":2779.4} +{"session_id":"sess-cea0d9f7b6ab","input_length":2859,"output_length":653,"hash_ids":[1064129,1064130,1064131,1064132,1064133,1064134],"delay":21365.0} +{"session_id":"sess-cea0d9f7b6ab","input_length":7944,"output_length":248,"hash_ids":[1064135,1064136,1064137,1064138,1064139,1064140,1064141,1064142,1064143,1064144,1064145,1064146,1064147,1064148,1064149,1064150],"delay":343.0} +{"session_id":"sess-cea0d9f7b6ab","input_length":2551,"output_length":642,"hash_ids":[1064151,1064152,1064153,1064154,1064155],"delay":23970.4} +{"session_id":"sess-cea0d9f7b6ab","input_length":857,"output_length":409,"hash_ids":[1064156,1064157],"delay":8644.8} +{"session_id":"sess-cea0d9f7b6ab","input_length":2102,"output_length":1738,"hash_ids":[1064158,1064159,1064160,1064161,1064162],"delay":398.4} +{"session_id":"sess-cea0d9f7b6ab","input_length":4888,"output_length":170,"hash_ids":[1064163,1064164,1064165,1064166,1064167,1064168,1064169,1064170,1064171,1064172],"delay":5333.2} +{"session_id":"sess-cea0d9f7b6ab","input_length":875,"output_length":114,"hash_ids":[1064173,1064174],"delay":276.3} +{"session_id":"sess-cea0d9f7b6ab","input_length":7864,"output_length":263,"hash_ids":[1064175,1064176,1064177,1064178,1064179,1064180,1064181,1064182,1064183,1064184,1064185,1064186,1064187,1064188,1064189,1064190],"delay":518.0} +{"session_id":"sess-b09758ce004d","input_length":65208,"output_length":415,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1068063,1068064,1068065,1068066,1068067,1068068,1068069,1068070,1068071,1068072,1068073,1068074,1068075,1068076,1068077,1068078,1068079,1068080,1068081,1068082,1068083,1068084,1068085,1068086,1068087],"timestamp":0.0,"group_id":8} +{"session_id":"sess-b09758ce004d","input_length":1496,"output_length":192,"hash_ids":[1068088,1068089,1068090],"delay":1052.2} +{"session_id":"sess-b09758ce004d","input_length":5466,"output_length":362,"hash_ids":[1068091,1068092,1068093,1068094,1068095,1068096,1068097,1068098,1068099,1068100,1068101],"delay":190.3} +{"session_id":"sess-b09758ce004d","input_length":389,"output_length":133,"hash_ids":[1068102],"delay":1584.9} +{"session_id":"sess-b09758ce004d","input_length":562,"output_length":373,"hash_ids":[1068103,1068104],"delay":781.4} +{"session_id":"sess-b09758ce004d","input_length":2179,"output_length":718,"hash_ids":[1068105,1068106,1068107,1068108,1068109],"delay":1109.0} +{"session_id":"sess-b09758ce004d","input_length":9418,"output_length":396,"hash_ids":[1068110,1068111,1068112,1068113,1068114,1068115,1068116,1068117,1068118,1068119,1068120,1068121,1068122,1068123,1068124,1068125,1068126,1068127,1068128],"delay":1162.7} +{"session_id":"sess-b09758ce004d","input_length":1955,"output_length":30,"hash_ids":[1068129,1068130,1068131,1068132],"delay":507.9} +{"session_id":"sess-9f9cfa8b56c7","input_length":53384,"output_length":180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,1072063,1072064],"timestamp":0.0,"group_id":13} +{"session_id":"sess-9f9cfa8b56c7","input_length":466,"output_length":345,"hash_ids":[1072065],"delay":529.2} +{"session_id":"sess-9f9cfa8b56c7","input_length":472,"output_length":62,"hash_ids":[1072066],"delay":1188.3} +{"session_id":"sess-9f9cfa8b56c7","input_length":3294,"output_length":332,"hash_ids":[1072067,1072068,1072069,1072070,1072071,1072072,1072073],"delay":15991.4} +{"session_id":"sess-9f9cfa8b56c7","input_length":1154,"output_length":70,"hash_ids":[1072074,1072075,1072076],"delay":506.1} +{"session_id":"sess-9f9cfa8b56c7","input_length":1049,"output_length":850,"hash_ids":[1072077,1072078,1072079],"delay":1804.2} +{"session_id":"sess-9f9cfa8b56c7","input_length":2676,"output_length":80,"hash_ids":[1072080,1072081,1072082,1072083,1072084,1072085],"delay":224.2} +{"session_id":"sess-9f9cfa8b56c7","input_length":5577,"output_length":82,"hash_ids":[1072086,1072087,1072088,1072089,1072090,1072091,1072092,1072093,1072094,1072095,1072096],"delay":824.2} +{"session_id":"sess-9f9cfa8b56c7","input_length":7370,"output_length":914,"hash_ids":[1072097,1072098,1072099,1072100,1072101,1072102,1072103,1072104,1072105,1072106,1072107,1072108,1072109,1072110,1072111],"delay":12126.1} +{"session_id":"sess-9f9cfa8b56c7","input_length":7562,"output_length":388,"hash_ids":[1072112,1072113,1072114,1072115,1072116,1072117,1072118,1072119,1072120,1072121,1072122,1072123,1072124,1072125,1072126],"delay":1596.1} +{"session_id":"sess-9f9cfa8b56c7","input_length":1394,"output_length":211,"hash_ids":[1072127,1072128,1072129],"delay":27756.1} +{"session_id":"sess-9f9cfa8b56c7","input_length":840,"output_length":121,"hash_ids":[1072130,1072131],"delay":5049.5} +{"session_id":"sess-9f9cfa8b56c7","input_length":4295,"output_length":124,"hash_ids":[1072132,1072133,1072134,1072135,1072136,1072137,1072138,1072139,1072140],"delay":1319.9} +{"session_id":"sess-9f9cfa8b56c7","input_length":883,"output_length":117,"hash_ids":[1072141,1072142],"delay":499.3} +{"session_id":"sess-9f9cfa8b56c7","input_length":752,"output_length":619,"hash_ids":[1072143,1072144],"delay":4768.3} +{"session_id":"sess-9f9cfa8b56c7","input_length":3409,"output_length":99,"hash_ids":[1072145,1072146,1072147,1072148,1072149,1072150,1072151],"delay":532.6} +{"session_id":"sess-9f9cfa8b56c7","input_length":708,"output_length":186,"hash_ids":[1072152,1072153],"delay":688.9} +{"session_id":"sess-9f9cfa8b56c7","input_length":1028,"output_length":377,"hash_ids":[1072154,1072155,1072156],"delay":35497.4} +{"session_id":"sess-9f9cfa8b56c7","input_length":4539,"output_length":50,"hash_ids":[1072157,1072158,1072159,1072160,1072161,1072162,1072163,1072164,1072165],"delay":999.0} +{"session_id":"sess-9f9cfa8b56c7","input_length":3402,"output_length":388,"hash_ids":[1072166,1072167,1072168,1072169,1072170,1072171,1072172],"delay":1288.6} +{"session_id":"sess-9f9cfa8b56c7","input_length":5686,"output_length":384,"hash_ids":[1072173,1072174,1072175,1072176,1072177,1072178,1072179,1072180,1072181,1072182,1072183,1072184],"delay":506.6} +{"session_id":"sess-9f9cfa8b56c7","input_length":2712,"output_length":102,"hash_ids":[1072185,1072186,1072187,1072188,1072189,1072190],"delay":779.2} +{"session_id":"sess-9f9cfa8b56c7","input_length":2848,"output_length":273,"hash_ids":[1072191,1072192,1072193,1072194,1072195,1072196],"delay":8984.0} +{"session_id":"sess-9f9cfa8b56c7","input_length":645,"output_length":335,"hash_ids":[1072197,1072198],"delay":1427.4} +{"session_id":"sess-2dcd68e16742","input_length":60022,"output_length":349,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1076063,1076064,1076065,1076066,1076067,1076068,1076069,1076070,1076071,1076072,1076073,1076074,1076075,1076076,1076077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2dcd68e16742","input_length":5634,"output_length":99,"hash_ids":[1076078,1076079,1076080,1076081,1076082,1076083,1076084,1076085,1076086,1076087,1076088,1076089],"delay":795.8} +{"session_id":"sess-2dcd68e16742","input_length":2631,"output_length":221,"hash_ids":[1076090,1076091,1076092,1076093,1076094,1076095],"delay":747.0} +{"session_id":"sess-71268d0d1de0","input_length":55586,"output_length":52,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1080063,1080064,1080065,1080066,1080067,1080068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-71268d0d1de0","input_length":6495,"output_length":307,"hash_ids":[1080069,1080070,1080071,1080072,1080073,1080074,1080075,1080076,1080077,1080078,1080079,1080080,1080081],"delay":2814.9} +{"session_id":"sess-71268d0d1de0","input_length":1811,"output_length":268,"hash_ids":[1080082,1080083,1080084,1080085],"delay":1199.8} +{"session_id":"sess-71268d0d1de0","input_length":2611,"output_length":223,"hash_ids":[1080086,1080087,1080088,1080089,1080090,1080091],"delay":8208.9} +{"session_id":"sess-71268d0d1de0","input_length":9626,"output_length":169,"hash_ids":[1080092,1080093,1080094,1080095,1080096,1080097,1080098,1080099,1080100,1080101,1080102,1080103,1080104,1080105,1080106,1080107,1080108,1080109,1080110],"delay":1652.9} +{"session_id":"sess-71268d0d1de0","input_length":1709,"output_length":941,"hash_ids":[1080111,1080112,1080113,1080114],"delay":18121.3} +{"session_id":"sess-71268d0d1de0","input_length":864,"output_length":1175,"hash_ids":[1080115,1080116],"delay":5263.8} +{"session_id":"sess-71268d0d1de0","input_length":595,"output_length":437,"hash_ids":[1080117,1080118],"delay":494.5} +{"session_id":"sess-71268d0d1de0","input_length":1553,"output_length":597,"hash_ids":[1080119,1080120,1080121,1080122],"delay":2993.4} +{"session_id":"sess-71268d0d1de0","input_length":435,"output_length":351,"hash_ids":[1080123],"delay":14908.2} +{"session_id":"sess-71268d0d1de0","input_length":326,"output_length":133,"hash_ids":[1080124],"delay":366.3} +{"session_id":"sess-71268d0d1de0","input_length":2647,"output_length":1217,"hash_ids":[1080125,1080126,1080127,1080128,1080129,1080130],"delay":30251.0} +{"session_id":"sess-71268d0d1de0","input_length":633,"output_length":553,"hash_ids":[1080131,1080132],"delay":1065.7} +{"session_id":"sess-71268d0d1de0","input_length":785,"output_length":1468,"hash_ids":[1080133,1080134],"delay":497.4} +{"session_id":"sess-71268d0d1de0","input_length":850,"output_length":55,"hash_ids":[1080135,1080136],"delay":27260.0} +{"session_id":"sess-71268d0d1de0","input_length":222,"output_length":265,"hash_ids":[1080137],"delay":1376.1} +{"session_id":"sess-71268d0d1de0","input_length":482,"output_length":312,"hash_ids":[1080138],"delay":1557.7} +{"session_id":"sess-71268d0d1de0","input_length":835,"output_length":1222,"hash_ids":[1080139,1080140],"delay":7217.4} +{"session_id":"sess-71268d0d1de0","input_length":4470,"output_length":806,"hash_ids":[1080141,1080142,1080143,1080144,1080145,1080146,1080147,1080148,1080149],"delay":9880.3} +{"session_id":"sess-71268d0d1de0","input_length":4547,"output_length":410,"hash_ids":[1080150,1080151,1080152,1080153,1080154,1080155,1080156,1080157,1080158],"delay":593.1} +{"session_id":"sess-71268d0d1de0","input_length":1343,"output_length":794,"hash_ids":[1080159,1080160,1080161],"delay":10453.0} +{"session_id":"sess-71268d0d1de0","input_length":570,"output_length":299,"hash_ids":[1080162,1080163],"delay":108.3} +{"session_id":"sess-71268d0d1de0","input_length":1337,"output_length":922,"hash_ids":[1080164,1080165,1080166],"delay":270.4} +{"session_id":"sess-71268d0d1de0","input_length":1574,"output_length":413,"hash_ids":[1080167,1080168,1080169,1080170],"delay":1375.8} +{"session_id":"sess-71268d0d1de0","input_length":666,"output_length":30,"hash_ids":[1080171,1080172],"delay":15178.2} +{"session_id":"sess-71268d0d1de0","input_length":739,"output_length":201,"hash_ids":[1080173,1080174],"delay":4872.3} +{"session_id":"sess-71268d0d1de0","input_length":4641,"output_length":799,"hash_ids":[1080175,1080176,1080177,1080178,1080179,1080180,1080181,1080182,1080183,1080184],"delay":137.1} +{"session_id":"sess-cf99cd5b0881","input_length":54606,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1084063,1084064,1084065,1084066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cf99cd5b0881","input_length":626,"output_length":315,"hash_ids":[1084067,1084068],"delay":15841.2} +{"session_id":"sess-cf99cd5b0881","input_length":666,"output_length":864,"hash_ids":[1084069,1084070],"delay":15011.7} +{"session_id":"sess-cf99cd5b0881","input_length":773,"output_length":56,"hash_ids":[1084071,1084072],"delay":891.8} +{"session_id":"sess-cf99cd5b0881","input_length":253,"output_length":43,"hash_ids":[1084073],"delay":889.5} +{"session_id":"sess-cf99cd5b0881","input_length":2130,"output_length":213,"hash_ids":[1084074,1084075,1084076,1084077,1084078],"delay":1018.3} +{"session_id":"sess-cf99cd5b0881","input_length":3259,"output_length":1641,"hash_ids":[1084079,1084080,1084081,1084082,1084083,1084084,1084085],"delay":1054.2} +{"session_id":"sess-cf99cd5b0881","input_length":8665,"output_length":479,"hash_ids":[1084086,1084087,1084088,1084089,1084090,1084091,1084092,1084093,1084094,1084095,1084096,1084097,1084098,1084099,1084100,1084101,1084102],"delay":977.3} +{"session_id":"sess-cf99cd5b0881","input_length":626,"output_length":103,"hash_ids":[1084103,1084104],"delay":288.6} +{"session_id":"sess-cf99cd5b0881","input_length":1225,"output_length":479,"hash_ids":[1084105,1084106,1084107],"delay":299.5} +{"session_id":"sess-cf99cd5b0881","input_length":723,"output_length":452,"hash_ids":[1084108,1084109],"delay":937.7} +{"session_id":"sess-cf99cd5b0881","input_length":8403,"output_length":159,"hash_ids":[1084110,1084111,1084112,1084113,1084114,1084115,1084116,1084117,1084118,1084119,1084120,1084121,1084122,1084123,1084124,1084125,1084126],"delay":11185.9} +{"session_id":"sess-cf99cd5b0881","input_length":5167,"output_length":105,"hash_ids":[1084127,1084128,1084129,1084130,1084131,1084132,1084133,1084134,1084135,1084136,1084137],"delay":4930.4} +{"session_id":"sess-cf99cd5b0881","input_length":1880,"output_length":495,"hash_ids":[1084138,1084139,1084140,1084141],"delay":237.8} +{"session_id":"sess-cf99cd5b0881","input_length":5914,"output_length":57,"hash_ids":[1084142,1084143,1084144,1084145,1084146,1084147,1084148,1084149,1084150,1084151,1084152,1084153],"delay":219.7} +{"session_id":"sess-cf99cd5b0881","input_length":1938,"output_length":1189,"hash_ids":[1084154,1084155,1084156,1084157],"delay":436.1} +{"session_id":"sess-cf99cd5b0881","input_length":2387,"output_length":194,"hash_ids":[1084158,1084159,1084160,1084161,1084162],"delay":5039.1} +{"session_id":"sess-cf99cd5b0881","input_length":1136,"output_length":847,"hash_ids":[1084163,1084164,1084165],"delay":3298.4} +{"session_id":"sess-cf99cd5b0881","input_length":3830,"output_length":61,"hash_ids":[1084166,1084167,1084168,1084169,1084170,1084171,1084172,1084173],"delay":555.9} +{"session_id":"sess-cf99cd5b0881","input_length":2481,"output_length":352,"hash_ids":[1084174,1084175,1084176,1084177,1084178],"delay":614.4} +{"session_id":"sess-cf99cd5b0881","input_length":2300,"output_length":65,"hash_ids":[1084179,1084180,1084181,1084182,1084183],"delay":9177.9} +{"session_id":"sess-cf99cd5b0881","input_length":2745,"output_length":388,"hash_ids":[1084184,1084185,1084186,1084187,1084188,1084189],"delay":9237.2} +{"session_id":"sess-cf99cd5b0881","input_length":3317,"output_length":504,"hash_ids":[1084190,1084191,1084192,1084193,1084194,1084195,1084196],"delay":292.1} +{"session_id":"sess-cf99cd5b0881","input_length":1431,"output_length":1392,"hash_ids":[1084197,1084198,1084199],"delay":628.3} +{"session_id":"sess-cf99cd5b0881","input_length":883,"output_length":132,"hash_ids":[1084200,1084201],"delay":1165.1} +{"session_id":"sess-cf99cd5b0881","input_length":456,"output_length":556,"hash_ids":[1084202],"delay":609.1} +{"session_id":"sess-cf99cd5b0881","input_length":1726,"output_length":512,"hash_ids":[1084203,1084204,1084205,1084206],"delay":124.9} +{"session_id":"sess-5ed7e4fef51b","input_length":59507,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1088063,1088064,1088065,1088066,1088067,1088068,1088069,1088070,1088071,1088072,1088073,1088074,1088075,1088076],"timestamp":0.0,"group_id":2} +{"session_id":"sess-5ed7e4fef51b","input_length":218,"output_length":619,"hash_ids":[1088077],"delay":34189.3} +{"session_id":"sess-5cec40d8dd56","input_length":52485,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5cec40d8dd56","input_length":1067,"output_length":633,"hash_ids":[1088078,1088079,1088080],"delay":456.5} +{"session_id":"sess-5cec40d8dd56","input_length":1171,"output_length":541,"hash_ids":[1088081,1088082,1088083],"delay":809.2} +{"session_id":"sess-5cec40d8dd56","input_length":84,"output_length":858,"hash_ids":[1088084],"delay":3879.1} +{"session_id":"sess-5cec40d8dd56","input_length":2432,"output_length":71,"hash_ids":[1088085,1088086,1088087,1088088,1088089],"delay":846.6} +{"session_id":"sess-5cec40d8dd56","input_length":1122,"output_length":229,"hash_ids":[1088090,1088091,1088092],"delay":16439.1} +{"session_id":"sess-5cec40d8dd56","input_length":3476,"output_length":30,"hash_ids":[1088093,1088094,1088095,1088096,1088097,1088098,1088099],"delay":3093.6} +{"session_id":"sess-5cec40d8dd56","input_length":226,"output_length":393,"hash_ids":[1088100],"delay":428.9} +{"session_id":"sess-5cec40d8dd56","input_length":899,"output_length":1781,"hash_ids":[1088101,1088102],"delay":69319.1} +{"session_id":"sess-5cec40d8dd56","input_length":941,"output_length":1138,"hash_ids":[1088103,1088104],"delay":1115.9} +{"session_id":"sess-5cec40d8dd56","input_length":825,"output_length":755,"hash_ids":[1088105,1088106],"delay":667.3} +{"session_id":"sess-5cec40d8dd56","input_length":2334,"output_length":703,"hash_ids":[1088107,1088108,1088109,1088110,1088111],"delay":2127.0} +{"session_id":"sess-5cec40d8dd56","input_length":2985,"output_length":320,"hash_ids":[1088112,1088113,1088114,1088115,1088116,1088117],"delay":411.3} +{"session_id":"sess-5cec40d8dd56","input_length":1391,"output_length":968,"hash_ids":[1088118,1088119,1088120],"delay":535.6} +{"session_id":"sess-5cec40d8dd56","input_length":1381,"output_length":2765,"hash_ids":[1088121,1088122,1088123],"delay":618.9} +{"session_id":"sess-5cec40d8dd56","input_length":1873,"output_length":993,"hash_ids":[1088124,1088125,1088126,1088127],"delay":2334.3} +{"session_id":"sess-5cec40d8dd56","input_length":7843,"output_length":1901,"hash_ids":[1088128,1088129,1088130,1088131,1088132,1088133,1088134,1088135,1088136,1088137,1088138,1088139,1088140,1088141,1088142,1088143],"delay":577.0} +{"session_id":"sess-5cec40d8dd56","input_length":537,"output_length":1434,"hash_ids":[1088144,1088145],"delay":379.8} +{"session_id":"sess-5cec40d8dd56","input_length":1921,"output_length":230,"hash_ids":[1088146,1088147,1088148,1088149],"delay":1011.6} +{"session_id":"sess-5cec40d8dd56","input_length":1095,"output_length":1480,"hash_ids":[1088150,1088151,1088152],"delay":7364.2} +{"session_id":"sess-5cec40d8dd56","input_length":1006,"output_length":195,"hash_ids":[1088153,1088154],"delay":2017.2} +{"session_id":"sess-5cec40d8dd56","input_length":3461,"output_length":356,"hash_ids":[1088155,1088156,1088157,1088158,1088159,1088160,1088161],"delay":869.3} +{"session_id":"sess-5cec40d8dd56","input_length":1125,"output_length":216,"hash_ids":[1088162,1088163,1088164],"delay":1055.6} +{"session_id":"sess-5cec40d8dd56","input_length":6592,"output_length":187,"hash_ids":[1088165,1088166,1088167,1088168,1088169,1088170,1088171,1088172,1088173,1088174,1088175,1088176,1088177],"delay":506.6} +{"session_id":"sess-5cec40d8dd56","input_length":1708,"output_length":91,"hash_ids":[1088178,1088179,1088180,1088181],"delay":247.5} +{"session_id":"sess-5cec40d8dd56","input_length":7022,"output_length":250,"hash_ids":[1088182,1088183,1088184,1088185,1088186,1088187,1088188,1088189,1088190,1088191,1088192,1088193,1088194,1088195],"delay":477.8} +{"session_id":"sess-13fb0e04d978","input_length":64375,"output_length":594,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,1096063,1096064,1096065,1096066,1096067,1096068,1096069,1096070,1096071,1096072,1096073,1096074,1096075,1096076,1096077,1096078,1096079,1096080,1096081,1096082,1096083,1096084,1096085],"timestamp":0.0,"group_id":18} +{"session_id":"sess-13fb0e04d978","input_length":753,"output_length":360,"hash_ids":[1096086,1096087],"delay":1900.1} +{"session_id":"sess-13fb0e04d978","input_length":623,"output_length":69,"hash_ids":[1096088,1096089],"delay":439.8} +{"session_id":"sess-13fb0e04d978","input_length":1058,"output_length":399,"hash_ids":[1096090,1096091,1096092],"delay":1497.6} +{"session_id":"sess-641ad790884f","input_length":66656,"output_length":667,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1100063,1100064,1100065,1100066,1100067,1100068,1100069,1100070,1100071,1100072,1100073,1100074,1100075,1100076,1100077,1100078,1100079,1100080,1100081,1100082,1100083,1100084,1100085,1100086,1100087,1100088,1100089,1100090],"timestamp":0.0,"group_id":2} +{"session_id":"sess-641ad790884f","input_length":3087,"output_length":134,"hash_ids":[1100091,1100092,1100093,1100094,1100095,1100096,1100097],"delay":1480.3} +{"session_id":"sess-641ad790884f","input_length":780,"output_length":270,"hash_ids":[1100098,1100099],"delay":20166.8} +{"session_id":"sess-641ad790884f","input_length":1711,"output_length":274,"hash_ids":[1100100,1100101,1100102,1100103],"delay":590.1} +{"session_id":"sess-641ad790884f","input_length":5069,"output_length":517,"hash_ids":[1100104,1100105,1100106,1100107,1100108,1100109,1100110,1100111,1100112,1100113],"delay":12710.3} +{"session_id":"sess-641ad790884f","input_length":1515,"output_length":339,"hash_ids":[1100114,1100115,1100116],"delay":14632.3} +{"session_id":"sess-641ad790884f","input_length":2541,"output_length":162,"hash_ids":[1100117,1100118,1100119,1100120,1100121],"delay":513.9} +{"session_id":"sess-641ad790884f","input_length":698,"output_length":262,"hash_ids":[1100122,1100123],"delay":865.1} +{"session_id":"sess-641ad790884f","input_length":4475,"output_length":298,"hash_ids":[1100124,1100125,1100126,1100127,1100128,1100129,1100130,1100131,1100132],"delay":1380.2} +{"session_id":"sess-641ad790884f","input_length":2842,"output_length":633,"hash_ids":[1100133,1100134,1100135,1100136,1100137,1100138],"delay":3795.0} +{"session_id":"sess-641ad790884f","input_length":889,"output_length":525,"hash_ids":[1100139,1100140],"delay":21900.9} +{"session_id":"sess-641ad790884f","input_length":3922,"output_length":796,"hash_ids":[1100141,1100142,1100143,1100144,1100145,1100146,1100147,1100148],"delay":908.7} +{"session_id":"sess-641ad790884f","input_length":2070,"output_length":216,"hash_ids":[1100149,1100150,1100151,1100152,1100153],"delay":362.4} +{"session_id":"sess-641ad790884f","input_length":7698,"output_length":737,"hash_ids":[1100154,1100155,1100156,1100157,1100158,1100159,1100160,1100161,1100162,1100163,1100164,1100165,1100166,1100167,1100168,1100169],"delay":117.1} +{"session_id":"sess-641ad790884f","input_length":265,"output_length":325,"hash_ids":[1100170],"delay":13482.5} +{"session_id":"sess-641ad790884f","input_length":6721,"output_length":237,"hash_ids":[1100171,1100172,1100173,1100174,1100175,1100176,1100177,1100178,1100179,1100180,1100181,1100182,1100183,1100184],"delay":195.1} +{"session_id":"sess-641ad790884f","input_length":2621,"output_length":443,"hash_ids":[1100185,1100186,1100187,1100188,1100189,1100190],"delay":15098.7} +{"session_id":"sess-641ad790884f","input_length":726,"output_length":789,"hash_ids":[1100191,1100192],"delay":726.5} +{"session_id":"sess-641ad790884f","input_length":201,"output_length":30,"hash_ids":[1100193],"delay":396.9} +{"session_id":"sess-641ad790884f","input_length":1745,"output_length":263,"hash_ids":[1100194,1100195,1100196,1100197],"delay":16249.1} +{"session_id":"sess-641ad790884f","input_length":304,"output_length":366,"hash_ids":[1100198],"delay":543.5} +{"session_id":"sess-641ad790884f","input_length":1824,"output_length":511,"hash_ids":[1100199,1100200,1100201,1100202],"delay":313.4} +{"session_id":"sess-e1f9bd8a90f3","input_length":59001,"output_length":591,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1104063,1104064,1104065,1104066,1104067,1104068,1104069,1104070,1104071,1104072,1104073,1104074,1104075],"timestamp":0.0,"group_id":7} +{"session_id":"sess-e1f9bd8a90f3","input_length":9039,"output_length":79,"hash_ids":[1104076,1104077,1104078,1104079,1104080,1104081,1104082,1104083,1104084,1104085,1104086,1104087,1104088,1104089,1104090,1104091,1104092,1104093],"delay":346.9} +{"session_id":"sess-e1f9bd8a90f3","input_length":3003,"output_length":501,"hash_ids":[1104094,1104095,1104096,1104097,1104098,1104099],"delay":1642.6} +{"session_id":"sess-e1f9bd8a90f3","input_length":7371,"output_length":77,"hash_ids":[1104100,1104101,1104102,1104103,1104104,1104105,1104106,1104107,1104108,1104109,1104110,1104111,1104112,1104113,1104114],"delay":25932.9} +{"session_id":"sess-e1f9bd8a90f3","input_length":5148,"output_length":149,"hash_ids":[1104115,1104116,1104117,1104118,1104119,1104120,1104121,1104122,1104123,1104124,1104125],"delay":1260.7} +{"session_id":"sess-e1f9bd8a90f3","input_length":2207,"output_length":144,"hash_ids":[1104126,1104127,1104128,1104129,1104130],"delay":4545.9} +{"session_id":"sess-e1f9bd8a90f3","input_length":3043,"output_length":253,"hash_ids":[1104131,1104132,1104133,1104134,1104135,1104136],"delay":8407.7} +{"session_id":"sess-e1f9bd8a90f3","input_length":2358,"output_length":360,"hash_ids":[1104137,1104138,1104139,1104140,1104141],"delay":939.9} +{"session_id":"sess-e1f9bd8a90f3","input_length":2543,"output_length":85,"hash_ids":[1104142,1104143,1104144,1104145,1104146],"delay":1323.8} +{"session_id":"sess-e1f9bd8a90f3","input_length":2299,"output_length":98,"hash_ids":[1104147,1104148,1104149,1104150,1104151],"delay":2277.2} +{"session_id":"sess-e1f9bd8a90f3","input_length":901,"output_length":54,"hash_ids":[1104152,1104153],"delay":12255.8} +{"session_id":"sess-e1f9bd8a90f3","input_length":5229,"output_length":149,"hash_ids":[1104154,1104155,1104156,1104157,1104158,1104159,1104160,1104161,1104162,1104163,1104164],"delay":2334.9} +{"session_id":"sess-e1f9bd8a90f3","input_length":4905,"output_length":548,"hash_ids":[1104165,1104166,1104167,1104168,1104169,1104170,1104171,1104172,1104173,1104174],"delay":2344.4} +{"session_id":"sess-e1f9bd8a90f3","input_length":3973,"output_length":923,"hash_ids":[1104175,1104176,1104177,1104178,1104179,1104180,1104181,1104182],"delay":203.4} +{"session_id":"sess-e1f9bd8a90f3","input_length":2774,"output_length":514,"hash_ids":[1104183,1104184,1104185,1104186,1104187,1104188],"delay":572.0} +{"session_id":"sess-e1f9bd8a90f3","input_length":3087,"output_length":497,"hash_ids":[1104189,1104190,1104191,1104192,1104193,1104194,1104195],"delay":1381.2} +{"session_id":"sess-e1f9bd8a90f3","input_length":2180,"output_length":493,"hash_ids":[1104196,1104197,1104198,1104199,1104200],"delay":8014.3} +{"session_id":"sess-e1f9bd8a90f3","input_length":1175,"output_length":1916,"hash_ids":[1104201,1104202,1104203],"delay":1262.3} +{"session_id":"sess-e1f9bd8a90f3","input_length":692,"output_length":509,"hash_ids":[1104204,1104205],"delay":268.4} +{"session_id":"sess-e1f9bd8a90f3","input_length":1397,"output_length":1914,"hash_ids":[1104206,1104207,1104208],"delay":240.5} +{"session_id":"sess-ae51a23deed8","input_length":69467,"output_length":302,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,1108063,1108064,1108065,1108066,1108067,1108068,1108069,1108070,1108071,1108072,1108073,1108074,1108075,1108076,1108077,1108078,1108079,1108080,1108081,1108082,1108083,1108084,1108085,1108086,1108087,1108088,1108089,1108090,1108091,1108092,1108093,1108094,1108095],"timestamp":0.0,"group_id":36} +{"session_id":"sess-ae51a23deed8","input_length":6188,"output_length":217,"hash_ids":[1108096,1108097,1108098,1108099,1108100,1108101,1108102,1108103,1108104,1108105,1108106,1108107,1108108],"delay":1514.5} +{"session_id":"sess-ae51a23deed8","input_length":3069,"output_length":75,"hash_ids":[1108109,1108110,1108111,1108112,1108113,1108114],"delay":1472.5} +{"session_id":"sess-ae51a23deed8","input_length":2345,"output_length":545,"hash_ids":[1108115,1108116,1108117,1108118,1108119],"delay":1085.3} +{"session_id":"sess-ae51a23deed8","input_length":5830,"output_length":243,"hash_ids":[1108120,1108121,1108122,1108123,1108124,1108125,1108126,1108127,1108128,1108129,1108130,1108131],"delay":377.9} +{"session_id":"sess-ae51a23deed8","input_length":3892,"output_length":348,"hash_ids":[1108132,1108133,1108134,1108135,1108136,1108137,1108138,1108139],"delay":1737.7} +{"session_id":"sess-ae51a23deed8","input_length":748,"output_length":215,"hash_ids":[1108140,1108141],"delay":13252.0} +{"session_id":"sess-ae51a23deed8","input_length":6808,"output_length":839,"hash_ids":[1108142,1108143,1108144,1108145,1108146,1108147,1108148,1108149,1108150,1108151,1108152,1108153,1108154,1108155],"delay":16342.9} +{"session_id":"sess-ae51a23deed8","input_length":2346,"output_length":175,"hash_ids":[1108156,1108157,1108158,1108159,1108160],"delay":896.3} +{"session_id":"sess-ae51a23deed8","input_length":1421,"output_length":609,"hash_ids":[1108161,1108162,1108163],"delay":196.5} +{"session_id":"sess-ae51a23deed8","input_length":666,"output_length":407,"hash_ids":[1108164,1108165],"delay":1909.1} +{"session_id":"sess-ae51a23deed8","input_length":362,"output_length":100,"hash_ids":[1108166],"delay":778.5} +{"session_id":"sess-ae51a23deed8","input_length":2225,"output_length":213,"hash_ids":[1108167,1108168,1108169,1108170,1108171],"delay":1711.7} +{"session_id":"sess-ae51a23deed8","input_length":1159,"output_length":1096,"hash_ids":[1108172,1108173,1108174],"delay":732.3} +{"session_id":"sess-ae51a23deed8","input_length":1229,"output_length":267,"hash_ids":[1108175,1108176,1108177],"delay":3184.2} +{"session_id":"sess-ae51a23deed8","input_length":511,"output_length":46,"hash_ids":[1108178],"delay":11732.2} +{"session_id":"sess-ae51a23deed8","input_length":1311,"output_length":192,"hash_ids":[1108179,1108180,1108181],"delay":13726.9} +{"session_id":"sess-ae51a23deed8","input_length":758,"output_length":188,"hash_ids":[1108182,1108183],"delay":770.1} +{"session_id":"sess-ae51a23deed8","input_length":281,"output_length":185,"hash_ids":[1108184],"delay":16701.3} +{"session_id":"sess-ae51a23deed8","input_length":250,"output_length":1044,"hash_ids":[1108185],"delay":262.1} +{"session_id":"sess-ae51a23deed8","input_length":768,"output_length":329,"hash_ids":[1108186,1108187],"delay":15639.8} +{"session_id":"sess-e98a32255b94","input_length":53484,"output_length":500,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1112063,1112064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e98a32255b94","input_length":2176,"output_length":1550,"hash_ids":[1112065,1112066,1112067,1112068,1112069],"delay":3294.7} +{"session_id":"sess-e98a32255b94","input_length":307,"output_length":2813,"hash_ids":[1112070],"delay":188.2} +{"session_id":"sess-e98a32255b94","input_length":798,"output_length":232,"hash_ids":[1112071,1112072],"delay":17603.0} +{"session_id":"sess-e98a32255b94","input_length":2182,"output_length":783,"hash_ids":[1112073,1112074,1112075,1112076,1112077],"delay":1262.5} +{"session_id":"sess-e98a32255b94","input_length":5071,"output_length":362,"hash_ids":[1112078,1112079,1112080,1112081,1112082,1112083,1112084,1112085,1112086,1112087],"delay":13164.4} +{"session_id":"sess-e98a32255b94","input_length":2025,"output_length":73,"hash_ids":[1112088,1112089,1112090,1112091],"delay":26970.3} +{"session_id":"sess-e98a32255b94","input_length":3796,"output_length":637,"hash_ids":[1112092,1112093,1112094,1112095,1112096,1112097,1112098,1112099],"delay":22989.4} +{"session_id":"sess-e98a32255b94","input_length":1557,"output_length":356,"hash_ids":[1112100,1112101,1112102,1112103],"delay":18065.5} +{"session_id":"sess-e98a32255b94","input_length":1173,"output_length":444,"hash_ids":[1112104,1112105,1112106],"delay":1972.4} +{"session_id":"sess-e98a32255b94","input_length":3202,"output_length":51,"hash_ids":[1112107,1112108,1112109,1112110,1112111,1112112,1112113],"delay":1188.2} +{"session_id":"sess-e98a32255b94","input_length":70,"output_length":285,"hash_ids":[1112114],"delay":1719.2} +{"session_id":"sess-e98a32255b94","input_length":4426,"output_length":146,"hash_ids":[1112115,1112116,1112117,1112118,1112119,1112120,1112121,1112122,1112123],"delay":11250.4} +{"session_id":"sess-e98a32255b94","input_length":4291,"output_length":413,"hash_ids":[1112124,1112125,1112126,1112127,1112128,1112129,1112130,1112131,1112132],"delay":543.3} +{"session_id":"sess-e98a32255b94","input_length":6069,"output_length":383,"hash_ids":[1112133,1112134,1112135,1112136,1112137,1112138,1112139,1112140,1112141,1112142,1112143,1112144],"delay":171.4} +{"session_id":"sess-e98a32255b94","input_length":4868,"output_length":209,"hash_ids":[1112145,1112146,1112147,1112148,1112149,1112150,1112151,1112152,1112153,1112154],"delay":911.3} +{"session_id":"sess-e98a32255b94","input_length":1698,"output_length":245,"hash_ids":[1112155,1112156,1112157,1112158],"delay":10777.3} +{"session_id":"sess-e98a32255b94","input_length":1526,"output_length":349,"hash_ids":[1112159,1112160,1112161],"delay":459.3} +{"session_id":"sess-e98a32255b94","input_length":540,"output_length":269,"hash_ids":[1112162,1112163],"delay":405.5} +{"session_id":"sess-e98a32255b94","input_length":2769,"output_length":249,"hash_ids":[1112164,1112165,1112166,1112167,1112168,1112169],"delay":1443.3} +{"session_id":"sess-e98a32255b94","input_length":1236,"output_length":580,"hash_ids":[1112170,1112171,1112172],"delay":802.7} +{"session_id":"sess-e98a32255b94","input_length":1987,"output_length":1274,"hash_ids":[1112173,1112174,1112175,1112176],"delay":5241.8} +{"session_id":"sess-e98a32255b94","input_length":1669,"output_length":79,"hash_ids":[1112177,1112178,1112179,1112180],"delay":403.4} +{"session_id":"sess-e98a32255b94","input_length":4090,"output_length":841,"hash_ids":[1112181,1112182,1112183,1112184,1112185,1112186,1112187,1112188],"delay":778.6} +{"session_id":"sess-e98a32255b94","input_length":2202,"output_length":156,"hash_ids":[1112189,1112190,1112191,1112192,1112193],"delay":821.5} +{"session_id":"sess-e98a32255b94","input_length":648,"output_length":140,"hash_ids":[1112194,1112195],"delay":202.2} +{"session_id":"sess-e98a32255b94","input_length":1137,"output_length":254,"hash_ids":[1112196,1112197,1112198],"delay":163.9} +{"session_id":"sess-e98a32255b94","input_length":219,"output_length":525,"hash_ids":[1112199],"delay":560.8} +{"session_id":"sess-e98a32255b94","input_length":1144,"output_length":355,"hash_ids":[1112200,1112201,1112202],"delay":847.6} +{"session_id":"sess-e6f35741fc8c","input_length":61960,"output_length":198,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1116063,1116064,1116065,1116066,1116067,1116068,1116069,1116070,1116071,1116072,1116073,1116074,1116075,1116076,1116077,1116078,1116079,1116080,1116081],"timestamp":0.0,"group_id":3} +{"session_id":"sess-e6f35741fc8c","input_length":367,"output_length":97,"hash_ids":[1116082],"delay":310.1} +{"session_id":"sess-e6f35741fc8c","input_length":955,"output_length":989,"hash_ids":[1116083,1116084],"delay":1441.8} +{"session_id":"sess-e6f35741fc8c","input_length":6423,"output_length":138,"hash_ids":[1116085,1116086,1116087,1116088,1116089,1116090,1116091,1116092,1116093,1116094,1116095,1116096,1116097],"delay":8916.9} +{"session_id":"sess-e6f35741fc8c","input_length":1880,"output_length":496,"hash_ids":[1116098,1116099,1116100,1116101],"delay":54660.7} +{"session_id":"sess-50d06215d3bf","input_length":67334,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,1120063,1120064,1120065,1120066,1120067,1120068,1120069,1120070,1120071,1120072,1120073,1120074,1120075,1120076,1120077,1120078,1120079,1120080,1120081,1120082,1120083,1120084,1120085,1120086,1120087,1120088,1120089,1120090,1120091],"timestamp":0.0,"group_id":19} +{"session_id":"sess-50d06215d3bf","input_length":4011,"output_length":732,"hash_ids":[1120092,1120093,1120094,1120095,1120096,1120097,1120098,1120099],"delay":945.0} +{"session_id":"sess-50d06215d3bf","input_length":1604,"output_length":54,"hash_ids":[1120100,1120101,1120102,1120103],"delay":9168.0} +{"session_id":"sess-50d06215d3bf","input_length":7664,"output_length":415,"hash_ids":[1120104,1120105,1120106,1120107,1120108,1120109,1120110,1120111,1120112,1120113,1120114,1120115,1120116,1120117,1120118],"delay":479.3} +{"session_id":"sess-50d06215d3bf","input_length":8095,"output_length":880,"hash_ids":[1120119,1120120,1120121,1120122,1120123,1120124,1120125,1120126,1120127,1120128,1120129,1120130,1120131,1120132,1120133,1120134],"delay":465.9} +{"session_id":"sess-50d06215d3bf","input_length":1863,"output_length":46,"hash_ids":[1120135,1120136,1120137,1120138],"delay":2434.8} +{"session_id":"sess-50d06215d3bf","input_length":2574,"output_length":359,"hash_ids":[1120139,1120140,1120141,1120142,1120143,1120144],"delay":403.3} +{"session_id":"sess-50d06215d3bf","input_length":1665,"output_length":602,"hash_ids":[1120145,1120146,1120147,1120148],"delay":532.4} +{"session_id":"sess-50d06215d3bf","input_length":1295,"output_length":90,"hash_ids":[1120149,1120150,1120151],"delay":14702.5} +{"session_id":"sess-50d06215d3bf","input_length":410,"output_length":98,"hash_ids":[1120152],"delay":910.0} +{"session_id":"sess-50d06215d3bf","input_length":3734,"output_length":286,"hash_ids":[1120153,1120154,1120155,1120156,1120157,1120158,1120159,1120160],"delay":815.6} +{"session_id":"sess-50d06215d3bf","input_length":497,"output_length":288,"hash_ids":[1120161],"delay":833.3} +{"session_id":"sess-50d06215d3bf","input_length":4776,"output_length":144,"hash_ids":[1120162,1120163,1120164,1120165,1120166,1120167,1120168,1120169,1120170,1120171],"delay":845.1} +{"session_id":"sess-50d06215d3bf","input_length":2516,"output_length":1262,"hash_ids":[1120172,1120173,1120174,1120175,1120176],"delay":353.2} +{"session_id":"sess-50d06215d3bf","input_length":124,"output_length":191,"hash_ids":[1120177],"delay":1075.0} +{"session_id":"sess-50d06215d3bf","input_length":1749,"output_length":171,"hash_ids":[1120178,1120179,1120180,1120181],"delay":272.9} +{"session_id":"sess-50d06215d3bf","input_length":5283,"output_length":81,"hash_ids":[1120182,1120183,1120184,1120185,1120186,1120187,1120188,1120189,1120190,1120191,1120192],"delay":461.9} +{"session_id":"sess-50d06215d3bf","input_length":268,"output_length":49,"hash_ids":[1120193],"delay":1529.9} +{"session_id":"sess-50d06215d3bf","input_length":1135,"output_length":760,"hash_ids":[1120194,1120195,1120196],"delay":14333.3} +{"session_id":"sess-50d06215d3bf","input_length":760,"output_length":846,"hash_ids":[1120197,1120198],"delay":5110.4} +{"session_id":"sess-50d06215d3bf","input_length":2356,"output_length":78,"hash_ids":[1120199,1120200,1120201,1120202,1120203],"delay":317.6} +{"session_id":"sess-50d06215d3bf","input_length":3257,"output_length":196,"hash_ids":[1120204,1120205,1120206,1120207,1120208,1120209,1120210],"delay":352.3} +{"session_id":"sess-a57e1cebacb7","input_length":55640,"output_length":2138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1124063,1124064,1124065,1124066,1124067,1124068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a57e1cebacb7","input_length":991,"output_length":795,"hash_ids":[1124069,1124070],"delay":3105.7} +{"session_id":"sess-a57e1cebacb7","input_length":1341,"output_length":65,"hash_ids":[1124071,1124072,1124073],"delay":268.2} +{"session_id":"sess-a57e1cebacb7","input_length":1222,"output_length":88,"hash_ids":[1124074,1124075,1124076],"delay":14992.6} +{"session_id":"sess-a57e1cebacb7","input_length":564,"output_length":553,"hash_ids":[1124077,1124078],"delay":1982.8} +{"session_id":"sess-a57e1cebacb7","input_length":1479,"output_length":705,"hash_ids":[1124079,1124080,1124081],"delay":7877.4} +{"session_id":"sess-a57e1cebacb7","input_length":285,"output_length":94,"hash_ids":[1124082],"delay":512.5} +{"session_id":"sess-a57e1cebacb7","input_length":769,"output_length":186,"hash_ids":[1124083,1124084],"delay":3592.4} +{"session_id":"sess-11c89ea218b7","input_length":59644,"output_length":432,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1128063,1128064,1128065,1128066,1128067,1128068,1128069,1128070,1128071,1128072,1128073,1128074,1128075,1128076],"timestamp":0.0,"group_id":5} +{"session_id":"sess-11c89ea218b7","input_length":2772,"output_length":130,"hash_ids":[1128077,1128078,1128079,1128080,1128081,1128082],"delay":32662.7} +{"session_id":"sess-11c89ea218b7","input_length":116,"output_length":321,"hash_ids":[1128083],"delay":49516.2} +{"session_id":"sess-11c89ea218b7","input_length":1305,"output_length":526,"hash_ids":[1128084,1128085,1128086],"delay":17775.4} +{"session_id":"sess-11c89ea218b7","input_length":2997,"output_length":179,"hash_ids":[1128087,1128088,1128089,1128090,1128091,1128092],"delay":1268.9} +{"session_id":"sess-11c89ea218b7","input_length":866,"output_length":163,"hash_ids":[1128093,1128094],"delay":1216.8} +{"session_id":"sess-11c89ea218b7","input_length":2301,"output_length":105,"hash_ids":[1128095,1128096,1128097,1128098,1128099],"delay":1076.4} +{"session_id":"sess-11c89ea218b7","input_length":9426,"output_length":323,"hash_ids":[1128100,1128101,1128102,1128103,1128104,1128105,1128106,1128107,1128108,1128109,1128110,1128111,1128112,1128113,1128114,1128115,1128116,1128117,1128118],"delay":18876.4} +{"session_id":"sess-11c89ea218b7","input_length":921,"output_length":58,"hash_ids":[1128119,1128120],"delay":544.5} +{"session_id":"sess-11c89ea218b7","input_length":909,"output_length":98,"hash_ids":[1128121,1128122],"delay":2121.4} +{"session_id":"sess-11c89ea218b7","input_length":992,"output_length":118,"hash_ids":[1128123,1128124],"delay":19876.3} +{"session_id":"sess-11c89ea218b7","input_length":1146,"output_length":425,"hash_ids":[1128125,1128126,1128127],"delay":1083.5} +{"session_id":"sess-11c89ea218b7","input_length":996,"output_length":128,"hash_ids":[1128128,1128129],"delay":336.9} +{"session_id":"sess-11c89ea218b7","input_length":462,"output_length":254,"hash_ids":[1128130],"delay":747.3} +{"session_id":"sess-11c89ea218b7","input_length":780,"output_length":32,"hash_ids":[1128131,1128132],"delay":7473.7} +{"session_id":"sess-11c89ea218b7","input_length":1250,"output_length":646,"hash_ids":[1128133,1128134,1128135],"delay":44786.2} +{"session_id":"sess-11c89ea218b7","input_length":529,"output_length":189,"hash_ids":[1128136,1128137],"delay":249.1} +{"session_id":"sess-11c89ea218b7","input_length":192,"output_length":888,"hash_ids":[1128138],"delay":364.4} +{"session_id":"sess-11c89ea218b7","input_length":1129,"output_length":2066,"hash_ids":[1128139,1128140,1128141],"delay":18861.0} +{"session_id":"sess-11c89ea218b7","input_length":1830,"output_length":204,"hash_ids":[1128142,1128143,1128144,1128145],"delay":233.5} +{"session_id":"sess-11c89ea218b7","input_length":2581,"output_length":354,"hash_ids":[1128146,1128147,1128148,1128149,1128150,1128151],"delay":12256.4} +{"session_id":"sess-11c89ea218b7","input_length":5006,"output_length":151,"hash_ids":[1128152,1128153,1128154,1128155,1128156,1128157,1128158,1128159,1128160,1128161],"delay":1368.2} +{"session_id":"sess-11c89ea218b7","input_length":3690,"output_length":322,"hash_ids":[1128162,1128163,1128164,1128165,1128166,1128167,1128168,1128169],"delay":4470.1} +{"session_id":"sess-11c89ea218b7","input_length":739,"output_length":483,"hash_ids":[1128170,1128171],"delay":730.9} +{"session_id":"sess-11c89ea218b7","input_length":7110,"output_length":308,"hash_ids":[1128172,1128173,1128174,1128175,1128176,1128177,1128178,1128179,1128180,1128181,1128182,1128183,1128184,1128185],"delay":690.3} +{"session_id":"sess-11c89ea218b7","input_length":2317,"output_length":193,"hash_ids":[1128186,1128187,1128188,1128189,1128190],"delay":1010.0} +{"session_id":"sess-11c89ea218b7","input_length":1910,"output_length":645,"hash_ids":[1128191,1128192,1128193,1128194],"delay":1387.0} +{"session_id":"sess-11c89ea218b7","input_length":765,"output_length":478,"hash_ids":[1128195,1128196],"delay":823.9} +{"session_id":"sess-11c89ea218b7","input_length":1663,"output_length":73,"hash_ids":[1128197,1128198,1128199,1128200],"delay":765.0} +{"session_id":"sess-11c89ea218b7","input_length":1638,"output_length":110,"hash_ids":[1128201,1128202,1128203,1128204],"delay":6265.9} +{"session_id":"sess-11c89ea218b7","input_length":511,"output_length":142,"hash_ids":[1128205],"delay":148.9} +{"session_id":"sess-6fdc8a983125","input_length":54398,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1132063,1132064,1132065,1132066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6fdc8a983125","input_length":3793,"output_length":376,"hash_ids":[1132067,1132068,1132069,1132070,1132071,1132072,1132073,1132074],"delay":1500.2} +{"session_id":"sess-6fdc8a983125","input_length":208,"output_length":185,"hash_ids":[1132075],"delay":827.0} +{"session_id":"sess-6fdc8a983125","input_length":2225,"output_length":678,"hash_ids":[1132076,1132077,1132078,1132079,1132080],"delay":15440.4} +{"session_id":"sess-6fdc8a983125","input_length":2548,"output_length":42,"hash_ids":[1132081,1132082,1132083,1132084,1132085],"delay":1527.4} +{"session_id":"sess-6fdc8a983125","input_length":453,"output_length":161,"hash_ids":[1132086],"delay":11535.9} +{"session_id":"sess-6fdc8a983125","input_length":3934,"output_length":674,"hash_ids":[1132087,1132088,1132089,1132090,1132091,1132092,1132093,1132094],"delay":853.1} +{"session_id":"sess-6fdc8a983125","input_length":1341,"output_length":605,"hash_ids":[1132095,1132096,1132097],"delay":1200.2} +{"session_id":"sess-6fdc8a983125","input_length":924,"output_length":762,"hash_ids":[1132098,1132099],"delay":18678.4} +{"session_id":"sess-6fdc8a983125","input_length":9874,"output_length":67,"hash_ids":[1132100,1132101,1132102,1132103,1132104,1132105,1132106,1132107,1132108,1132109,1132110,1132111,1132112,1132113,1132114,1132115,1132116,1132117,1132118,1132119],"delay":18246.1} +{"session_id":"sess-6fdc8a983125","input_length":173,"output_length":123,"hash_ids":[1132120],"delay":510.9} +{"session_id":"sess-6fdc8a983125","input_length":1783,"output_length":221,"hash_ids":[1132121,1132122,1132123,1132124],"delay":182.5} +{"session_id":"sess-6fdc8a983125","input_length":446,"output_length":396,"hash_ids":[1132125],"delay":582.5} +{"session_id":"sess-6fdc8a983125","input_length":4048,"output_length":1214,"hash_ids":[1132126,1132127,1132128,1132129,1132130,1132131,1132132,1132133],"delay":2796.0} +{"session_id":"sess-6fdc8a983125","input_length":1244,"output_length":133,"hash_ids":[1132134,1132135,1132136],"delay":16158.2} +{"session_id":"sess-6fdc8a983125","input_length":860,"output_length":384,"hash_ids":[1132137,1132138],"delay":2750.2} +{"session_id":"sess-6fdc8a983125","input_length":3196,"output_length":1096,"hash_ids":[1132139,1132140,1132141,1132142,1132143,1132144,1132145],"delay":2159.1} +{"session_id":"sess-6fdc8a983125","input_length":1902,"output_length":326,"hash_ids":[1132146,1132147,1132148,1132149],"delay":508.0} +{"session_id":"sess-6fdc8a983125","input_length":9837,"output_length":255,"hash_ids":[1132150,1132151,1132152,1132153,1132154,1132155,1132156,1132157,1132158,1132159,1132160,1132161,1132162,1132163,1132164,1132165,1132166,1132167,1132168,1132169],"delay":2387.4} +{"session_id":"sess-6fdc8a983125","input_length":1951,"output_length":457,"hash_ids":[1132170,1132171,1132172,1132173],"delay":2342.0} +{"session_id":"sess-6fdc8a983125","input_length":7221,"output_length":293,"hash_ids":[1132174,1132175,1132176,1132177,1132178,1132179,1132180,1132181,1132182,1132183,1132184,1132185,1132186,1132187,1132188],"delay":2474.7} +{"session_id":"sess-6fdc8a983125","input_length":3103,"output_length":2173,"hash_ids":[1132189,1132190,1132191,1132192,1132193,1132194,1132195],"delay":1079.8} +{"session_id":"sess-6fdc8a983125","input_length":4324,"output_length":187,"hash_ids":[1132196,1132197,1132198,1132199,1132200,1132201,1132202,1132203,1132204],"delay":1711.8} +{"session_id":"sess-56a8f275bdd7","input_length":53043,"output_length":324,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1136063],"timestamp":0.0,"group_id":9} +{"session_id":"sess-56a8f275bdd7","input_length":1177,"output_length":294,"hash_ids":[1136064,1136065,1136066],"delay":2828.9} +{"session_id":"sess-56a8f275bdd7","input_length":1253,"output_length":1439,"hash_ids":[1136067,1136068,1136069],"delay":2946.1} +{"session_id":"sess-56a8f275bdd7","input_length":1200,"output_length":277,"hash_ids":[1136070,1136071,1136072],"delay":5540.5} +{"session_id":"sess-56a8f275bdd7","input_length":1245,"output_length":324,"hash_ids":[1136073,1136074,1136075],"delay":1258.9} +{"session_id":"sess-56a8f275bdd7","input_length":869,"output_length":200,"hash_ids":[1136076,1136077],"delay":1683.4} +{"session_id":"sess-56a8f275bdd7","input_length":3476,"output_length":241,"hash_ids":[1136078,1136079,1136080,1136081,1136082,1136083,1136084],"delay":4680.8} +{"session_id":"sess-56a8f275bdd7","input_length":2310,"output_length":85,"hash_ids":[1136085,1136086,1136087,1136088,1136089],"delay":3983.7} +{"session_id":"sess-56a8f275bdd7","input_length":7821,"output_length":309,"hash_ids":[1136090,1136091,1136092,1136093,1136094,1136095,1136096,1136097,1136098,1136099,1136100,1136101,1136102,1136103,1136104,1136105],"delay":734.6} +{"session_id":"sess-56a8f275bdd7","input_length":1680,"output_length":366,"hash_ids":[1136106,1136107,1136108,1136109],"delay":3072.9} +{"session_id":"sess-56a8f275bdd7","input_length":2832,"output_length":258,"hash_ids":[1136110,1136111,1136112,1136113,1136114,1136115],"delay":1545.8} +{"session_id":"sess-56a8f275bdd7","input_length":717,"output_length":1238,"hash_ids":[1136116,1136117],"delay":6336.0} +{"session_id":"sess-56a8f275bdd7","input_length":1189,"output_length":257,"hash_ids":[1136118,1136119,1136120],"delay":23495.1} +{"session_id":"sess-56a8f275bdd7","input_length":2823,"output_length":96,"hash_ids":[1136121,1136122,1136123,1136124,1136125,1136126],"delay":826.0} +{"session_id":"sess-56a8f275bdd7","input_length":936,"output_length":150,"hash_ids":[1136127,1136128],"delay":2067.2} +{"session_id":"sess-56a8f275bdd7","input_length":4127,"output_length":878,"hash_ids":[1136129,1136130,1136131,1136132,1136133,1136134,1136135,1136136,1136137],"delay":425.3} +{"session_id":"sess-56a8f275bdd7","input_length":2262,"output_length":1188,"hash_ids":[1136138,1136139,1136140,1136141,1136142],"delay":238.1} +{"session_id":"sess-56a8f275bdd7","input_length":1241,"output_length":96,"hash_ids":[1136143,1136144,1136145],"delay":487.4} +{"session_id":"sess-56a8f275bdd7","input_length":611,"output_length":407,"hash_ids":[1136146,1136147],"delay":398.1} +{"session_id":"sess-56a8f275bdd7","input_length":2150,"output_length":280,"hash_ids":[1136148,1136149,1136150,1136151,1136152],"delay":704.8} +{"session_id":"sess-56a8f275bdd7","input_length":675,"output_length":239,"hash_ids":[1136153,1136154],"delay":440.2} +{"session_id":"sess-56a8f275bdd7","input_length":2595,"output_length":609,"hash_ids":[1136155,1136156,1136157,1136158,1136159,1136160],"delay":6996.6} +{"session_id":"sess-56a8f275bdd7","input_length":1318,"output_length":235,"hash_ids":[1136161,1136162,1136163],"delay":2150.3} +{"session_id":"sess-56a8f275bdd7","input_length":364,"output_length":242,"hash_ids":[1136164],"delay":1210.9} +{"session_id":"sess-bcce606ce471","input_length":69207,"output_length":1144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1140063,1140064,1140065,1140066,1140067,1140068,1140069,1140070,1140071,1140072,1140073,1140074,1140075,1140076,1140077,1140078,1140079,1140080,1140081,1140082,1140083,1140084,1140085,1140086,1140087,1140088,1140089,1140090,1140091,1140092,1140093,1140094,1140095],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bcce606ce471","input_length":2703,"output_length":320,"hash_ids":[1140096,1140097,1140098,1140099,1140100,1140101],"delay":23062.2} +{"session_id":"sess-bcce606ce471","input_length":2513,"output_length":200,"hash_ids":[1140102,1140103,1140104,1140105,1140106],"delay":33052.0} +{"session_id":"sess-bcce606ce471","input_length":8899,"output_length":492,"hash_ids":[1140107,1140108,1140109,1140110,1140111,1140112,1140113,1140114,1140115,1140116,1140117,1140118,1140119,1140120,1140121,1140122,1140123,1140124],"delay":779.3} +{"session_id":"sess-bcce606ce471","input_length":1432,"output_length":884,"hash_ids":[1140125,1140126,1140127],"delay":2081.4} +{"session_id":"sess-bcce606ce471","input_length":235,"output_length":157,"hash_ids":[1140128],"delay":773.5} +{"session_id":"sess-bcce606ce471","input_length":946,"output_length":562,"hash_ids":[1140129,1140130],"delay":18581.5} +{"session_id":"sess-bcce606ce471","input_length":4071,"output_length":216,"hash_ids":[1140131,1140132,1140133,1140134,1140135,1140136,1140137,1140138],"delay":357.0} +{"session_id":"sess-bcce606ce471","input_length":2824,"output_length":461,"hash_ids":[1140139,1140140,1140141,1140142,1140143,1140144],"delay":3938.9} +{"session_id":"sess-bcce606ce471","input_length":845,"output_length":283,"hash_ids":[1140145,1140146],"delay":1436.6} +{"session_id":"sess-bcce606ce471","input_length":508,"output_length":939,"hash_ids":[1140147],"delay":18693.6} +{"session_id":"sess-bcce606ce471","input_length":318,"output_length":337,"hash_ids":[1140148],"delay":1671.3} +{"session_id":"sess-bcce606ce471","input_length":5354,"output_length":128,"hash_ids":[1140149,1140150,1140151,1140152,1140153,1140154,1140155,1140156,1140157,1140158,1140159],"delay":1994.7} +{"session_id":"sess-bcce606ce471","input_length":8805,"output_length":444,"hash_ids":[1140160,1140161,1140162,1140163,1140164,1140165,1140166,1140167,1140168,1140169,1140170,1140171,1140172,1140173,1140174,1140175,1140176,1140177],"delay":2016.2} +{"session_id":"sess-bcce606ce471","input_length":739,"output_length":318,"hash_ids":[1140178,1140179],"delay":456.7} +{"session_id":"sess-bcce606ce471","input_length":770,"output_length":1669,"hash_ids":[1140180,1140181],"delay":1909.0} +{"session_id":"sess-bcce606ce471","input_length":2121,"output_length":1121,"hash_ids":[1140182,1140183,1140184,1140185,1140186],"delay":990.0} +{"session_id":"sess-bcce606ce471","input_length":1706,"output_length":892,"hash_ids":[1140187,1140188,1140189,1140190],"delay":2244.7} +{"session_id":"sess-bcce606ce471","input_length":2228,"output_length":310,"hash_ids":[1140191,1140192,1140193,1140194,1140195],"delay":49.7} +{"session_id":"sess-bcce606ce471","input_length":1666,"output_length":1939,"hash_ids":[1140196,1140197,1140198,1140199],"delay":264.1} +{"session_id":"sess-9388794e59d7","input_length":55887,"output_length":154,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,1144063,1144064,1144065,1144066,1144067,1144068,1144069],"timestamp":0.0,"group_id":32} +{"session_id":"sess-9388794e59d7","input_length":989,"output_length":47,"hash_ids":[1144070,1144071],"delay":869.8} +{"session_id":"sess-9388794e59d7","input_length":2225,"output_length":250,"hash_ids":[1144072,1144073,1144074,1144075,1144076],"delay":963.7} +{"session_id":"sess-9388794e59d7","input_length":1381,"output_length":678,"hash_ids":[1144077,1144078,1144079],"delay":1128.0} +{"session_id":"sess-9388794e59d7","input_length":2897,"output_length":1121,"hash_ids":[1144080,1144081,1144082,1144083,1144084,1144085],"delay":1567.3} +{"session_id":"sess-9388794e59d7","input_length":147,"output_length":214,"hash_ids":[1144086],"delay":2120.4} +{"session_id":"sess-9388794e59d7","input_length":870,"output_length":177,"hash_ids":[1144087,1144088],"delay":399.1} +{"session_id":"sess-9388794e59d7","input_length":5390,"output_length":599,"hash_ids":[1144089,1144090,1144091,1144092,1144093,1144094,1144095,1144096,1144097,1144098,1144099],"delay":582.7} +{"session_id":"sess-9388794e59d7","input_length":4157,"output_length":498,"hash_ids":[1144100,1144101,1144102,1144103,1144104,1144105,1144106,1144107,1144108],"delay":13292.2} +{"session_id":"sess-9388794e59d7","input_length":1796,"output_length":58,"hash_ids":[1144109,1144110,1144111,1144112],"delay":13688.7} +{"session_id":"sess-9388794e59d7","input_length":2053,"output_length":405,"hash_ids":[1144113,1144114,1144115,1144116,1144117],"delay":6891.1} +{"session_id":"sess-9388794e59d7","input_length":1136,"output_length":174,"hash_ids":[1144118,1144119,1144120],"delay":4631.0} +{"session_id":"sess-9388794e59d7","input_length":1009,"output_length":596,"hash_ids":[1144121,1144122],"delay":784.8} +{"session_id":"sess-9388794e59d7","input_length":1192,"output_length":139,"hash_ids":[1144123,1144124,1144125],"delay":436.5} +{"session_id":"sess-9388794e59d7","input_length":4627,"output_length":364,"hash_ids":[1144126,1144127,1144128,1144129,1144130,1144131,1144132,1144133,1144134,1144135],"delay":20031.3} +{"session_id":"sess-9388794e59d7","input_length":1247,"output_length":87,"hash_ids":[1144136,1144137,1144138],"delay":670.4} +{"session_id":"sess-9388794e59d7","input_length":1346,"output_length":218,"hash_ids":[1144139,1144140,1144141],"delay":1554.4} +{"session_id":"sess-9388794e59d7","input_length":770,"output_length":1115,"hash_ids":[1144142,1144143],"delay":2651.2} +{"session_id":"sess-9388794e59d7","input_length":2435,"output_length":440,"hash_ids":[1144144,1144145,1144146,1144147,1144148],"delay":6210.0} +{"session_id":"sess-9388794e59d7","input_length":998,"output_length":233,"hash_ids":[1144149,1144150],"delay":1094.7} +{"session_id":"sess-9388794e59d7","input_length":1005,"output_length":995,"hash_ids":[1144151,1144152],"delay":7609.5} +{"session_id":"sess-9388794e59d7","input_length":2071,"output_length":905,"hash_ids":[1144153,1144154,1144155,1144156,1144157],"delay":13456.8} +{"session_id":"sess-9388794e59d7","input_length":3512,"output_length":1693,"hash_ids":[1144158,1144159,1144160,1144161,1144162,1144163,1144164],"delay":20861.8} +{"session_id":"sess-9388794e59d7","input_length":500,"output_length":1185,"hash_ids":[1144165],"delay":1263.2} +{"session_id":"sess-9388794e59d7","input_length":245,"output_length":752,"hash_ids":[1144166],"delay":6321.3} +{"session_id":"sess-9388794e59d7","input_length":7540,"output_length":456,"hash_ids":[1144167,1144168,1144169,1144170,1144171,1144172,1144173,1144174,1144175,1144176,1144177,1144178,1144179,1144180,1144181],"delay":240.6} +{"session_id":"sess-9388794e59d7","input_length":774,"output_length":75,"hash_ids":[1144182,1144183],"delay":966.0} +{"session_id":"sess-9388794e59d7","input_length":1314,"output_length":778,"hash_ids":[1144184,1144185,1144186],"delay":9550.6} +{"session_id":"sess-9388794e59d7","input_length":1743,"output_length":212,"hash_ids":[1144187,1144188,1144189,1144190],"delay":389.7} +{"session_id":"sess-ee805754726e","input_length":59725,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1148063,1148064,1148065,1148066,1148067,1148068,1148069,1148070,1148071,1148072,1148073,1148074,1148075,1148076],"timestamp":0.0,"group_id":12} +{"session_id":"sess-ee805754726e","input_length":1493,"output_length":142,"hash_ids":[1148077,1148078,1148079],"delay":27153.8} +{"session_id":"sess-ee805754726e","input_length":2688,"output_length":190,"hash_ids":[1148080,1148081,1148082,1148083,1148084,1148085],"delay":2050.5} +{"session_id":"sess-ee805754726e","input_length":7261,"output_length":96,"hash_ids":[1148086,1148087,1148088,1148089,1148090,1148091,1148092,1148093,1148094,1148095,1148096,1148097,1148098,1148099,1148100],"delay":602.4} +{"session_id":"sess-ee805754726e","input_length":3944,"output_length":49,"hash_ids":[1148101,1148102,1148103,1148104,1148105,1148106,1148107,1148108],"delay":171.1} +{"session_id":"sess-ee805754726e","input_length":2414,"output_length":82,"hash_ids":[1148109,1148110,1148111,1148112,1148113],"delay":1087.9} +{"session_id":"sess-ee805754726e","input_length":2512,"output_length":85,"hash_ids":[1148114,1148115,1148116,1148117,1148118],"delay":49585.1} +{"session_id":"sess-ee805754726e","input_length":1192,"output_length":1445,"hash_ids":[1148119,1148120,1148121],"delay":2742.9} +{"session_id":"sess-ee805754726e","input_length":1823,"output_length":382,"hash_ids":[1148122,1148123,1148124,1148125],"delay":8655.5} +{"session_id":"sess-ee805754726e","input_length":636,"output_length":209,"hash_ids":[1148126,1148127],"delay":2033.8} +{"session_id":"sess-ee805754726e","input_length":5763,"output_length":246,"hash_ids":[1148128,1148129,1148130,1148131,1148132,1148133,1148134,1148135,1148136,1148137,1148138,1148139],"delay":6150.7} +{"session_id":"sess-ee805754726e","input_length":983,"output_length":226,"hash_ids":[1148140,1148141],"delay":960.9} +{"session_id":"sess-ee805754726e","input_length":1444,"output_length":636,"hash_ids":[1148142,1148143,1148144],"delay":1236.6} +{"session_id":"sess-ee805754726e","input_length":3816,"output_length":122,"hash_ids":[1148145,1148146,1148147,1148148,1148149,1148150,1148151,1148152],"delay":9913.1} +{"session_id":"sess-ee805754726e","input_length":922,"output_length":534,"hash_ids":[1148153,1148154],"delay":11813.1} +{"session_id":"sess-ee805754726e","input_length":4739,"output_length":311,"hash_ids":[1148155,1148156,1148157,1148158,1148159,1148160,1148161,1148162,1148163,1148164],"delay":272.6} +{"session_id":"sess-ee805754726e","input_length":504,"output_length":175,"hash_ids":[1148165],"delay":548.3} +{"session_id":"sess-ee805754726e","input_length":2466,"output_length":616,"hash_ids":[1148166,1148167,1148168,1148169,1148170],"delay":5049.9} +{"session_id":"sess-ee805754726e","input_length":5310,"output_length":53,"hash_ids":[1148171,1148172,1148173,1148174,1148175,1148176,1148177,1148178,1148179,1148180,1148181],"delay":6812.3} +{"session_id":"sess-ee805754726e","input_length":740,"output_length":590,"hash_ids":[1148182,1148183],"delay":18829.5} +{"session_id":"sess-4ff7864a6b34","input_length":52462,"output_length":698,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4ff7864a6b34","input_length":6183,"output_length":35,"hash_ids":[1148184,1148185,1148186,1148187,1148188,1148189,1148190,1148191,1148192,1148193,1148194,1148195,1148196],"delay":37573.4} +{"session_id":"sess-4ff7864a6b34","input_length":554,"output_length":468,"hash_ids":[1148197,1148198],"delay":5326.6} +{"session_id":"sess-4ff7864a6b34","input_length":3701,"output_length":117,"hash_ids":[1148199,1148200,1148201,1148202,1148203,1148204,1148205,1148206],"delay":656.0} +{"session_id":"sess-4ff7864a6b34","input_length":2112,"output_length":601,"hash_ids":[1148207,1148208,1148209,1148210,1148211],"delay":667.7} +{"session_id":"sess-4ff7864a6b34","input_length":4090,"output_length":614,"hash_ids":[1148212,1148213,1148214,1148215,1148216,1148217,1148218,1148219],"delay":729.0} +{"session_id":"sess-4ff7864a6b34","input_length":2936,"output_length":30,"hash_ids":[1148220,1148221,1148222,1148223,1148224,1148225],"delay":16972.6} +{"session_id":"sess-4ff7864a6b34","input_length":1479,"output_length":310,"hash_ids":[1148226,1148227,1148228],"delay":468.3} +{"session_id":"sess-4ff7864a6b34","input_length":697,"output_length":467,"hash_ids":[1148229,1148230],"delay":1048.5} +{"session_id":"sess-4ff7864a6b34","input_length":704,"output_length":500,"hash_ids":[1148231,1148232],"delay":1317.1} +{"session_id":"sess-4ff7864a6b34","input_length":498,"output_length":137,"hash_ids":[1148233],"delay":6879.2} +{"session_id":"sess-4ff7864a6b34","input_length":2159,"output_length":58,"hash_ids":[1148234,1148235,1148236,1148237,1148238],"delay":537.4} +{"session_id":"sess-4ff7864a6b34","input_length":156,"output_length":465,"hash_ids":[1148239],"delay":1368.9} +{"session_id":"sess-4ff7864a6b34","input_length":2366,"output_length":127,"hash_ids":[1148240,1148241,1148242,1148243,1148244],"delay":1053.5} +{"session_id":"sess-00b6e12baef5","input_length":53690,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1156063,1156064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-00b6e12baef5","input_length":6145,"output_length":802,"hash_ids":[1156065,1156066,1156067,1156068,1156069,1156070,1156071,1156072,1156073,1156074,1156075,1156076,1156077],"delay":459.4} +{"session_id":"sess-00b6e12baef5","input_length":2051,"output_length":198,"hash_ids":[1156078,1156079,1156080,1156081,1156082],"delay":29114.5} +{"session_id":"sess-00b6e12baef5","input_length":7798,"output_length":1240,"hash_ids":[1156083,1156084,1156085,1156086,1156087,1156088,1156089,1156090,1156091,1156092,1156093,1156094,1156095,1156096,1156097,1156098],"delay":573.8} +{"session_id":"sess-00b6e12baef5","input_length":1157,"output_length":219,"hash_ids":[1156099,1156100,1156101],"delay":1260.0} +{"session_id":"sess-00b6e12baef5","input_length":1365,"output_length":147,"hash_ids":[1156102,1156103,1156104],"delay":456.6} +{"session_id":"sess-00b6e12baef5","input_length":324,"output_length":713,"hash_ids":[1156105],"delay":2872.0} +{"session_id":"sess-00b6e12baef5","input_length":4302,"output_length":279,"hash_ids":[1156106,1156107,1156108,1156109,1156110,1156111,1156112,1156113,1156114],"delay":524.8} +{"session_id":"sess-00b6e12baef5","input_length":915,"output_length":692,"hash_ids":[1156115,1156116],"delay":1864.5} +{"session_id":"sess-00b6e12baef5","input_length":1983,"output_length":849,"hash_ids":[1156117,1156118,1156119,1156120],"delay":1166.2} +{"session_id":"sess-00b6e12baef5","input_length":2571,"output_length":884,"hash_ids":[1156121,1156122,1156123,1156124,1156125,1156126],"delay":776.7} +{"session_id":"sess-00b6e12baef5","input_length":1186,"output_length":1712,"hash_ids":[1156127,1156128,1156129],"delay":555.6} +{"session_id":"sess-00b6e12baef5","input_length":950,"output_length":283,"hash_ids":[1156130,1156131],"delay":490.5} +{"session_id":"sess-00b6e12baef5","input_length":446,"output_length":50,"hash_ids":[1156132],"delay":9884.3} +{"session_id":"sess-00b6e12baef5","input_length":1208,"output_length":508,"hash_ids":[1156133,1156134,1156135],"delay":1157.3} +{"session_id":"sess-00b6e12baef5","input_length":1683,"output_length":760,"hash_ids":[1156136,1156137,1156138,1156139],"delay":3892.9} +{"session_id":"sess-00b6e12baef5","input_length":5782,"output_length":1150,"hash_ids":[1156140,1156141,1156142,1156143,1156144,1156145,1156146,1156147,1156148,1156149,1156150,1156151],"delay":514.7} +{"session_id":"sess-00b6e12baef5","input_length":5057,"output_length":1475,"hash_ids":[1156152,1156153,1156154,1156155,1156156,1156157,1156158,1156159,1156160,1156161],"delay":366.5} +{"session_id":"sess-00b6e12baef5","input_length":7169,"output_length":1181,"hash_ids":[1156162,1156163,1156164,1156165,1156166,1156167,1156168,1156169,1156170,1156171,1156172,1156173,1156174,1156175,1156176],"delay":785.6} +{"session_id":"sess-00b6e12baef5","input_length":934,"output_length":479,"hash_ids":[1156177,1156178],"delay":1102.5} +{"session_id":"sess-00b6e12baef5","input_length":286,"output_length":280,"hash_ids":[1156179],"delay":3183.6} +{"session_id":"sess-00b6e12baef5","input_length":3560,"output_length":122,"hash_ids":[1156180,1156181,1156182,1156183,1156184,1156185,1156186],"delay":14000.3} +{"session_id":"sess-00b6e12baef5","input_length":2659,"output_length":213,"hash_ids":[1156187,1156188,1156189,1156190,1156191,1156192],"delay":385.1} +{"session_id":"sess-ce90403bec21","input_length":54886,"output_length":450,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1160063,1160064,1160065,1160066,1160067],"timestamp":0.0,"group_id":6} +{"session_id":"sess-ce90403bec21","input_length":493,"output_length":67,"hash_ids":[1160068],"delay":1200.4} +{"session_id":"sess-ce90403bec21","input_length":7493,"output_length":1910,"hash_ids":[1160069,1160070,1160071,1160072,1160073,1160074,1160075,1160076,1160077,1160078,1160079,1160080,1160081,1160082,1160083],"delay":165.3} +{"session_id":"sess-ce90403bec21","input_length":1323,"output_length":260,"hash_ids":[1160084,1160085,1160086],"delay":1628.2} +{"session_id":"sess-ce90403bec21","input_length":7006,"output_length":306,"hash_ids":[1160087,1160088,1160089,1160090,1160091,1160092,1160093,1160094,1160095,1160096,1160097,1160098,1160099,1160100],"delay":1769.0} +{"session_id":"sess-ce90403bec21","input_length":3280,"output_length":32,"hash_ids":[1160101,1160102,1160103,1160104,1160105,1160106,1160107],"delay":793.6} +{"session_id":"sess-ce90403bec21","input_length":6199,"output_length":418,"hash_ids":[1160108,1160109,1160110,1160111,1160112,1160113,1160114,1160115,1160116,1160117,1160118,1160119,1160120],"delay":604.5} +{"session_id":"sess-ce90403bec21","input_length":197,"output_length":942,"hash_ids":[1160121],"delay":1561.3} +{"session_id":"sess-ce90403bec21","input_length":6972,"output_length":55,"hash_ids":[1160122,1160123,1160124,1160125,1160126,1160127,1160128,1160129,1160130,1160131,1160132,1160133,1160134,1160135],"delay":1635.4} +{"session_id":"sess-ce90403bec21","input_length":3387,"output_length":384,"hash_ids":[1160136,1160137,1160138,1160139,1160140,1160141,1160142],"delay":5755.8} +{"session_id":"sess-ce90403bec21","input_length":7346,"output_length":1787,"hash_ids":[1160143,1160144,1160145,1160146,1160147,1160148,1160149,1160150,1160151,1160152,1160153,1160154,1160155,1160156,1160157],"delay":6911.5} +{"session_id":"sess-ce90403bec21","input_length":769,"output_length":75,"hash_ids":[1160158,1160159],"delay":8547.3} +{"session_id":"sess-ce90403bec21","input_length":970,"output_length":289,"hash_ids":[1160160,1160161],"delay":323.4} +{"session_id":"sess-ce90403bec21","input_length":758,"output_length":158,"hash_ids":[1160162,1160163],"delay":2960.7} +{"session_id":"sess-7e25c7771ac7","input_length":58071,"output_length":786,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1164063,1164064,1164065,1164066,1164067,1164068,1164069,1164070,1164071,1164072,1164073],"timestamp":0.0,"group_id":10} +{"session_id":"sess-7e25c7771ac7","input_length":495,"output_length":1337,"hash_ids":[1164074],"delay":9092.7} +{"session_id":"sess-7e25c7771ac7","input_length":2767,"output_length":1196,"hash_ids":[1164075,1164076,1164077,1164078,1164079,1164080],"delay":2305.8} +{"session_id":"sess-7e25c7771ac7","input_length":3568,"output_length":77,"hash_ids":[1164081,1164082,1164083,1164084,1164085,1164086,1164087],"delay":35138.3} +{"session_id":"sess-7e25c7771ac7","input_length":1293,"output_length":219,"hash_ids":[1164088,1164089,1164090],"delay":462.4} +{"session_id":"sess-7e25c7771ac7","input_length":855,"output_length":123,"hash_ids":[1164091,1164092],"delay":2121.6} +{"session_id":"sess-7e25c7771ac7","input_length":1041,"output_length":162,"hash_ids":[1164093,1164094,1164095],"delay":3130.0} +{"session_id":"sess-7e25c7771ac7","input_length":3735,"output_length":87,"hash_ids":[1164096,1164097,1164098,1164099,1164100,1164101,1164102,1164103],"delay":1882.5} +{"session_id":"sess-7e25c7771ac7","input_length":561,"output_length":144,"hash_ids":[1164104,1164105],"delay":1609.4} +{"session_id":"sess-7e25c7771ac7","input_length":1935,"output_length":106,"hash_ids":[1164106,1164107,1164108,1164109],"delay":35584.1} +{"session_id":"sess-7e25c7771ac7","input_length":9561,"output_length":337,"hash_ids":[1164110,1164111,1164112,1164113,1164114,1164115,1164116,1164117,1164118,1164119,1164120,1164121,1164122,1164123,1164124,1164125,1164126,1164127,1164128],"delay":1820.1} +{"session_id":"sess-7e25c7771ac7","input_length":2192,"output_length":284,"hash_ids":[1164129,1164130,1164131,1164132,1164133],"delay":3642.4} +{"session_id":"sess-7e25c7771ac7","input_length":1163,"output_length":187,"hash_ids":[1164134,1164135,1164136],"delay":576.5} +{"session_id":"sess-7e25c7771ac7","input_length":1137,"output_length":1392,"hash_ids":[1164137,1164138,1164139],"delay":575.4} +{"session_id":"sess-7e25c7771ac7","input_length":291,"output_length":162,"hash_ids":[1164140],"delay":1929.6} +{"session_id":"sess-7e25c7771ac7","input_length":231,"output_length":2732,"hash_ids":[1164141],"delay":127.4} +{"session_id":"sess-7e25c7771ac7","input_length":5139,"output_length":262,"hash_ids":[1164142,1164143,1164144,1164145,1164146,1164147,1164148,1164149,1164150,1164151,1164152],"delay":1028.0} +{"session_id":"sess-7e25c7771ac7","input_length":8289,"output_length":324,"hash_ids":[1164153,1164154,1164155,1164156,1164157,1164158,1164159,1164160,1164161,1164162,1164163,1164164,1164165,1164166,1164167,1164168,1164169],"delay":638.6} +{"session_id":"sess-7e25c7771ac7","input_length":1567,"output_length":370,"hash_ids":[1164170,1164171,1164172,1164173],"delay":628.6} +{"session_id":"sess-7e25c7771ac7","input_length":2531,"output_length":44,"hash_ids":[1164174,1164175,1164176,1164177,1164178],"delay":669.8} +{"session_id":"sess-7e25c7771ac7","input_length":823,"output_length":104,"hash_ids":[1164179,1164180],"delay":8248.2} +{"session_id":"sess-7e25c7771ac7","input_length":1066,"output_length":670,"hash_ids":[1164181,1164182,1164183],"delay":7239.1} +{"session_id":"sess-7e25c7771ac7","input_length":1346,"output_length":74,"hash_ids":[1164184,1164185,1164186],"delay":7078.8} +{"session_id":"sess-7e25c7771ac7","input_length":2344,"output_length":129,"hash_ids":[1164187,1164188,1164189,1164190,1164191],"delay":10780.2} +{"session_id":"sess-7e25c7771ac7","input_length":7264,"output_length":129,"hash_ids":[1164192,1164193,1164194,1164195,1164196,1164197,1164198,1164199,1164200,1164201,1164202,1164203,1164204,1164205,1164206],"delay":749.4} +{"session_id":"sess-e1b34c86f5eb","input_length":59204,"output_length":731,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1168063,1168064,1168065,1168066,1168067,1168068,1168069,1168070,1168071,1168072,1168073,1168074,1168075],"timestamp":0.0,"group_id":4} +{"session_id":"sess-e1b34c86f5eb","input_length":1262,"output_length":1407,"hash_ids":[1168076,1168077,1168078],"delay":3067.9} +{"session_id":"sess-e1b34c86f5eb","input_length":1484,"output_length":718,"hash_ids":[1168079,1168080,1168081],"delay":262.5} +{"session_id":"sess-e1b34c86f5eb","input_length":4727,"output_length":114,"hash_ids":[1168082,1168083,1168084,1168085,1168086,1168087,1168088,1168089,1168090,1168091],"delay":2180.5} +{"session_id":"sess-e1b34c86f5eb","input_length":582,"output_length":121,"hash_ids":[1168092,1168093],"delay":1478.1} +{"session_id":"sess-e1b34c86f5eb","input_length":408,"output_length":295,"hash_ids":[1168094],"delay":3405.6} +{"session_id":"sess-e1b34c86f5eb","input_length":4378,"output_length":49,"hash_ids":[1168095,1168096,1168097,1168098,1168099,1168100,1168101,1168102,1168103],"delay":14925.9} +{"session_id":"sess-e1b34c86f5eb","input_length":2844,"output_length":819,"hash_ids":[1168104,1168105,1168106,1168107,1168108,1168109],"delay":1153.7} +{"session_id":"sess-e1b34c86f5eb","input_length":3370,"output_length":1024,"hash_ids":[1168110,1168111,1168112,1168113,1168114,1168115,1168116],"delay":790.0} +{"session_id":"sess-e1b34c86f5eb","input_length":1122,"output_length":618,"hash_ids":[1168117,1168118,1168119],"delay":1494.9} +{"session_id":"sess-e1b34c86f5eb","input_length":1516,"output_length":350,"hash_ids":[1168120,1168121,1168122],"delay":1621.9} +{"session_id":"sess-e1b34c86f5eb","input_length":3707,"output_length":542,"hash_ids":[1168123,1168124,1168125,1168126,1168127,1168128,1168129,1168130],"delay":9037.0} +{"session_id":"sess-e1b34c86f5eb","input_length":1120,"output_length":321,"hash_ids":[1168131,1168132,1168133],"delay":422.8} +{"session_id":"sess-e1b34c86f5eb","input_length":6823,"output_length":282,"hash_ids":[1168134,1168135,1168136,1168137,1168138,1168139,1168140,1168141,1168142,1168143,1168144,1168145,1168146,1168147],"delay":487.5} +{"session_id":"sess-e1b34c86f5eb","input_length":3605,"output_length":247,"hash_ids":[1168148,1168149,1168150,1168151,1168152,1168153,1168154,1168155],"delay":656.8} +{"session_id":"sess-e1b34c86f5eb","input_length":7089,"output_length":353,"hash_ids":[1168156,1168157,1168158,1168159,1168160,1168161,1168162,1168163,1168164,1168165,1168166,1168167,1168168,1168169],"delay":41403.0} +{"session_id":"sess-e1b34c86f5eb","input_length":231,"output_length":135,"hash_ids":[1168170],"delay":284.8} +{"session_id":"sess-e1b34c86f5eb","input_length":1353,"output_length":148,"hash_ids":[1168171,1168172,1168173],"delay":16103.1} +{"session_id":"sess-e1b34c86f5eb","input_length":468,"output_length":472,"hash_ids":[1168174],"delay":427.9} +{"session_id":"sess-e1b34c86f5eb","input_length":385,"output_length":151,"hash_ids":[1168175],"delay":484.2} +{"session_id":"sess-e1b34c86f5eb","input_length":3403,"output_length":135,"hash_ids":[1168176,1168177,1168178,1168179,1168180,1168181,1168182],"delay":35034.8} +{"session_id":"sess-e1b34c86f5eb","input_length":2875,"output_length":93,"hash_ids":[1168183,1168184,1168185,1168186,1168187,1168188],"delay":4826.6} +{"session_id":"sess-e1b34c86f5eb","input_length":359,"output_length":1436,"hash_ids":[1168189],"delay":361.8} +{"session_id":"sess-e1b34c86f5eb","input_length":784,"output_length":1046,"hash_ids":[1168190,1168191],"delay":964.1} +{"session_id":"sess-afad565f98ec","input_length":64323,"output_length":2503,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1172063,1172064,1172065,1172066,1172067,1172068,1172069,1172070,1172071,1172072,1172073,1172074,1172075,1172076,1172077,1172078,1172079,1172080,1172081,1172082,1172083,1172084,1172085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-afad565f98ec","input_length":480,"output_length":824,"hash_ids":[1172086],"delay":22503.9} +{"session_id":"sess-afad565f98ec","input_length":378,"output_length":225,"hash_ids":[1172087],"delay":2019.1} +{"session_id":"sess-afad565f98ec","input_length":1378,"output_length":893,"hash_ids":[1172088,1172089,1172090],"delay":1754.9} +{"session_id":"sess-afad565f98ec","input_length":6493,"output_length":75,"hash_ids":[1172091,1172092,1172093,1172094,1172095,1172096,1172097,1172098,1172099,1172100,1172101,1172102,1172103],"delay":716.4} +{"session_id":"sess-afad565f98ec","input_length":555,"output_length":643,"hash_ids":[1172104,1172105],"delay":104.2} +{"session_id":"sess-afad565f98ec","input_length":1276,"output_length":97,"hash_ids":[1172106,1172107,1172108],"delay":1937.6} +{"session_id":"sess-afad565f98ec","input_length":265,"output_length":30,"hash_ids":[1172109],"delay":727.3} +{"session_id":"sess-afad565f98ec","input_length":2601,"output_length":91,"hash_ids":[1172110,1172111,1172112,1172113,1172114,1172115],"delay":1227.7} +{"session_id":"sess-afad565f98ec","input_length":2168,"output_length":130,"hash_ids":[1172116,1172117,1172118,1172119,1172120],"delay":2080.5} +{"session_id":"sess-afad565f98ec","input_length":6365,"output_length":202,"hash_ids":[1172121,1172122,1172123,1172124,1172125,1172126,1172127,1172128,1172129,1172130,1172131,1172132,1172133],"delay":1197.1} +{"session_id":"sess-afad565f98ec","input_length":8188,"output_length":671,"hash_ids":[1172134,1172135,1172136,1172137,1172138,1172139,1172140,1172141,1172142,1172143,1172144,1172145,1172146,1172147,1172148,1172149],"delay":11723.8} +{"session_id":"sess-afad565f98ec","input_length":3268,"output_length":184,"hash_ids":[1172150,1172151,1172152,1172153,1172154,1172155,1172156],"delay":713.9} +{"session_id":"sess-afad565f98ec","input_length":1647,"output_length":2556,"hash_ids":[1172157,1172158,1172159,1172160],"delay":11688.0} +{"session_id":"sess-afad565f98ec","input_length":1868,"output_length":768,"hash_ids":[1172161,1172162,1172163,1172164],"delay":100.9} +{"session_id":"sess-afad565f98ec","input_length":5290,"output_length":234,"hash_ids":[1172165,1172166,1172167,1172168,1172169,1172170,1172171,1172172,1172173,1172174,1172175],"delay":329.3} +{"session_id":"sess-afad565f98ec","input_length":475,"output_length":145,"hash_ids":[1172176],"delay":522.8} +{"session_id":"sess-afad565f98ec","input_length":1199,"output_length":1772,"hash_ids":[1172177,1172178,1172179],"delay":623.3} +{"session_id":"sess-afad565f98ec","input_length":779,"output_length":341,"hash_ids":[1172180,1172181],"delay":432.3} +{"session_id":"sess-afad565f98ec","input_length":552,"output_length":747,"hash_ids":[1172182,1172183],"delay":827.1} +{"session_id":"sess-afad565f98ec","input_length":2631,"output_length":510,"hash_ids":[1172184,1172185,1172186,1172187,1172188,1172189],"delay":1598.0} +{"session_id":"sess-afad565f98ec","input_length":2689,"output_length":466,"hash_ids":[1172190,1172191,1172192,1172193,1172194,1172195],"delay":358.4} +{"session_id":"sess-afad565f98ec","input_length":1030,"output_length":55,"hash_ids":[1172196,1172197,1172198],"delay":458.4} +{"session_id":"sess-afad565f98ec","input_length":868,"output_length":2923,"hash_ids":[1172199,1172200],"delay":167.2} +{"session_id":"sess-97c375a68cbb","input_length":65261,"output_length":473,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1176063,1176064,1176065,1176066,1176067,1176068,1176069,1176070,1176071,1176072,1176073,1176074,1176075,1176076,1176077,1176078,1176079,1176080,1176081,1176082,1176083,1176084,1176085,1176086,1176087],"timestamp":0.0,"group_id":5} +{"session_id":"sess-97c375a68cbb","input_length":4278,"output_length":507,"hash_ids":[1176088,1176089,1176090,1176091,1176092,1176093,1176094,1176095,1176096],"delay":1647.7} +{"session_id":"sess-97c375a68cbb","input_length":559,"output_length":123,"hash_ids":[1176097,1176098],"delay":735.3} +{"session_id":"sess-97c375a68cbb","input_length":2601,"output_length":819,"hash_ids":[1176099,1176100,1176101,1176102,1176103,1176104],"delay":999.8} +{"session_id":"sess-97c375a68cbb","input_length":1323,"output_length":395,"hash_ids":[1176105,1176106,1176107],"delay":3564.0} +{"session_id":"sess-d58dcaec47b7","input_length":69950,"output_length":670,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1180063,1180064,1180065,1180066,1180067,1180068,1180069,1180070,1180071,1180072,1180073,1180074,1180075,1180076,1180077,1180078,1180079,1180080,1180081,1180082,1180083,1180084,1180085,1180086,1180087,1180088,1180089,1180090,1180091,1180092,1180093,1180094,1180095,1180096],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d58dcaec47b7","input_length":643,"output_length":62,"hash_ids":[1180097,1180098],"delay":594.3} +{"session_id":"sess-d58dcaec47b7","input_length":1851,"output_length":254,"hash_ids":[1180099,1180100,1180101,1180102],"delay":29341.5} +{"session_id":"sess-d58dcaec47b7","input_length":7988,"output_length":199,"hash_ids":[1180103,1180104,1180105,1180106,1180107,1180108,1180109,1180110,1180111,1180112,1180113,1180114,1180115,1180116,1180117,1180118],"delay":1951.7} +{"session_id":"sess-d58dcaec47b7","input_length":2493,"output_length":249,"hash_ids":[1180119,1180120,1180121,1180122,1180123],"delay":176.1} +{"session_id":"sess-d58dcaec47b7","input_length":5271,"output_length":365,"hash_ids":[1180124,1180125,1180126,1180127,1180128,1180129,1180130,1180131,1180132,1180133,1180134],"delay":563.8} +{"session_id":"sess-d58dcaec47b7","input_length":2618,"output_length":889,"hash_ids":[1180135,1180136,1180137,1180138,1180139,1180140],"delay":873.2} +{"session_id":"sess-d58dcaec47b7","input_length":6036,"output_length":133,"hash_ids":[1180141,1180142,1180143,1180144,1180145,1180146,1180147,1180148,1180149,1180150,1180151,1180152],"delay":1435.0} +{"session_id":"sess-d58dcaec47b7","input_length":766,"output_length":524,"hash_ids":[1180153,1180154],"delay":1708.8} +{"session_id":"sess-d58dcaec47b7","input_length":5117,"output_length":587,"hash_ids":[1180155,1180156,1180157,1180158,1180159,1180160,1180161,1180162,1180163,1180164],"delay":307.8} +{"session_id":"sess-d58dcaec47b7","input_length":196,"output_length":182,"hash_ids":[1180165],"delay":3315.5} +{"session_id":"sess-d58dcaec47b7","input_length":4873,"output_length":638,"hash_ids":[1180166,1180167,1180168,1180169,1180170,1180171,1180172,1180173,1180174,1180175],"delay":91.0} +{"session_id":"sess-d58dcaec47b7","input_length":732,"output_length":215,"hash_ids":[1180176,1180177],"delay":287.2} +{"session_id":"sess-d58dcaec47b7","input_length":2228,"output_length":199,"hash_ids":[1180178,1180179,1180180,1180181,1180182],"delay":19795.8} +{"session_id":"sess-d58dcaec47b7","input_length":4762,"output_length":457,"hash_ids":[1180183,1180184,1180185,1180186,1180187,1180188,1180189,1180190,1180191,1180192],"delay":1504.5} +{"session_id":"sess-d58dcaec47b7","input_length":808,"output_length":227,"hash_ids":[1180193,1180194],"delay":4375.2} +{"session_id":"sess-d58dcaec47b7","input_length":409,"output_length":482,"hash_ids":[1180195],"delay":4647.0} +{"session_id":"sess-d58dcaec47b7","input_length":1229,"output_length":190,"hash_ids":[1180196,1180197,1180198],"delay":493.4} +{"session_id":"sess-d58dcaec47b7","input_length":3928,"output_length":525,"hash_ids":[1180199,1180200,1180201,1180202,1180203,1180204,1180205,1180206],"delay":439.1} +{"session_id":"sess-10de633cfbd3","input_length":53951,"output_length":456,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1184063,1184064,1184065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-10de633cfbd3","input_length":3234,"output_length":352,"hash_ids":[1184066,1184067,1184068,1184069,1184070,1184071,1184072],"delay":415.7} +{"session_id":"sess-10de633cfbd3","input_length":1732,"output_length":662,"hash_ids":[1184073,1184074,1184075,1184076],"delay":936.0} +{"session_id":"sess-10de633cfbd3","input_length":5584,"output_length":153,"hash_ids":[1184077,1184078,1184079,1184080,1184081,1184082,1184083,1184084,1184085,1184086,1184087],"delay":70086.9} +{"session_id":"sess-10de633cfbd3","input_length":1266,"output_length":848,"hash_ids":[1184088,1184089,1184090],"delay":17681.9} +{"session_id":"sess-10de633cfbd3","input_length":646,"output_length":622,"hash_ids":[1184091,1184092],"delay":4923.5} +{"session_id":"sess-10de633cfbd3","input_length":371,"output_length":168,"hash_ids":[1184093],"delay":5164.6} +{"session_id":"sess-10de633cfbd3","input_length":1408,"output_length":401,"hash_ids":[1184094,1184095,1184096],"delay":22751.6} +{"session_id":"sess-10de633cfbd3","input_length":277,"output_length":819,"hash_ids":[1184097],"delay":1533.7} +{"session_id":"sess-10de633cfbd3","input_length":2107,"output_length":173,"hash_ids":[1184098,1184099,1184100,1184101,1184102],"delay":1915.5} +{"session_id":"sess-10de633cfbd3","input_length":475,"output_length":998,"hash_ids":[1184103],"delay":323.5} +{"session_id":"sess-10de633cfbd3","input_length":1222,"output_length":766,"hash_ids":[1184104,1184105,1184106],"delay":1913.9} +{"session_id":"sess-10de633cfbd3","input_length":575,"output_length":302,"hash_ids":[1184107,1184108],"delay":164.9} +{"session_id":"sess-10de633cfbd3","input_length":4572,"output_length":1350,"hash_ids":[1184109,1184110,1184111,1184112,1184113,1184114,1184115,1184116,1184117],"delay":756.7} +{"session_id":"sess-10de633cfbd3","input_length":5231,"output_length":252,"hash_ids":[1184118,1184119,1184120,1184121,1184122,1184123,1184124,1184125,1184126,1184127,1184128],"delay":3157.0} +{"session_id":"sess-10de633cfbd3","input_length":3148,"output_length":73,"hash_ids":[1184129,1184130,1184131,1184132,1184133,1184134,1184135],"delay":19652.1} +{"session_id":"sess-10de633cfbd3","input_length":175,"output_length":145,"hash_ids":[1184136],"delay":942.4} +{"session_id":"sess-10de633cfbd3","input_length":2021,"output_length":62,"hash_ids":[1184137,1184138,1184139,1184140],"delay":1639.4} +{"session_id":"sess-10de633cfbd3","input_length":7376,"output_length":729,"hash_ids":[1184141,1184142,1184143,1184144,1184145,1184146,1184147,1184148,1184149,1184150,1184151,1184152,1184153,1184154,1184155],"delay":1834.9} +{"session_id":"sess-10de633cfbd3","input_length":4143,"output_length":1054,"hash_ids":[1184156,1184157,1184158,1184159,1184160,1184161,1184162,1184163,1184164],"delay":461.9} +{"session_id":"sess-10de633cfbd3","input_length":1891,"output_length":349,"hash_ids":[1184165,1184166,1184167,1184168],"delay":563.4} +{"session_id":"sess-10de633cfbd3","input_length":5563,"output_length":405,"hash_ids":[1184169,1184170,1184171,1184172,1184173,1184174,1184175,1184176,1184177,1184178,1184179],"delay":2250.2} +{"session_id":"sess-10de633cfbd3","input_length":1689,"output_length":254,"hash_ids":[1184180,1184181,1184182,1184183],"delay":905.4} +{"session_id":"sess-10de633cfbd3","input_length":1025,"output_length":114,"hash_ids":[1184184,1184185,1184186],"delay":10228.3} +{"session_id":"sess-10de633cfbd3","input_length":4158,"output_length":243,"hash_ids":[1184187,1184188,1184189,1184190,1184191,1184192,1184193,1184194,1184195],"delay":285.4} +{"session_id":"sess-10de633cfbd3","input_length":1204,"output_length":216,"hash_ids":[1184196,1184197,1184198],"delay":333.2} +{"session_id":"sess-10de633cfbd3","input_length":855,"output_length":715,"hash_ids":[1184199,1184200],"delay":9395.6} +{"session_id":"sess-10de633cfbd3","input_length":2113,"output_length":297,"hash_ids":[1184201,1184202,1184203,1184204,1184205],"delay":198.9} +{"session_id":"sess-b348f22a2a71","input_length":80472,"output_length":182,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1188063,1188064,1188065,1188066,1188067,1188068,1188069,1188070,1188071,1188072,1188073,1188074,1188075,1188076,1188077,1188078,1188079,1188080,1188081,1188082,1188083,1188084,1188085,1188086,1188087,1188088,1188089,1188090,1188091,1188092,1188093,1188094,1188095,1188096,1188097,1188098,1188099,1188100,1188101,1188102,1188103,1188104,1188105,1188106,1188107,1188108,1188109,1188110,1188111,1188112,1188113,1188114,1188115,1188116,1188117],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b348f22a2a71","input_length":1186,"output_length":234,"hash_ids":[1188118,1188119,1188120],"delay":2747.2} +{"session_id":"sess-b348f22a2a71","input_length":1339,"output_length":75,"hash_ids":[1188121,1188122,1188123],"delay":1386.9} +{"session_id":"sess-b348f22a2a71","input_length":1493,"output_length":120,"hash_ids":[1188124,1188125,1188126],"delay":734.3} +{"session_id":"sess-b348f22a2a71","input_length":2139,"output_length":475,"hash_ids":[1188127,1188128,1188129,1188130,1188131],"delay":898.3} +{"session_id":"sess-b348f22a2a71","input_length":611,"output_length":741,"hash_ids":[1188132,1188133],"delay":353.1} +{"session_id":"sess-b348f22a2a71","input_length":2872,"output_length":255,"hash_ids":[1188134,1188135,1188136,1188137,1188138,1188139],"delay":28154.5} +{"session_id":"sess-b348f22a2a71","input_length":6018,"output_length":380,"hash_ids":[1188140,1188141,1188142,1188143,1188144,1188145,1188146,1188147,1188148,1188149,1188150,1188151],"delay":457.9} +{"session_id":"sess-b348f22a2a71","input_length":2645,"output_length":279,"hash_ids":[1188152,1188153,1188154,1188155,1188156,1188157],"delay":2256.0} +{"session_id":"sess-b348f22a2a71","input_length":5577,"output_length":2376,"hash_ids":[1188158,1188159,1188160,1188161,1188162,1188163,1188164,1188165,1188166,1188167,1188168],"delay":35082.2} +{"session_id":"sess-b348f22a2a71","input_length":4404,"output_length":707,"hash_ids":[1188169,1188170,1188171,1188172,1188173,1188174,1188175,1188176,1188177],"delay":422.4} +{"session_id":"sess-b348f22a2a71","input_length":798,"output_length":1345,"hash_ids":[1188178,1188179],"delay":4364.2} +{"session_id":"sess-af2f672f5479","input_length":57297,"output_length":315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1192063,1192064,1192065,1192066,1192067,1192068,1192069,1192070,1192071],"timestamp":0.0,"group_id":3} +{"session_id":"sess-af2f672f5479","input_length":1617,"output_length":60,"hash_ids":[1192072,1192073,1192074,1192075],"delay":31607.9} +{"session_id":"sess-af2f672f5479","input_length":2404,"output_length":143,"hash_ids":[1192076,1192077,1192078,1192079,1192080],"delay":560.1} +{"session_id":"sess-af2f672f5479","input_length":1678,"output_length":122,"hash_ids":[1192081,1192082,1192083,1192084],"delay":410.2} +{"session_id":"sess-af2f672f5479","input_length":2655,"output_length":525,"hash_ids":[1192085,1192086,1192087,1192088,1192089,1192090],"delay":1325.0} +{"session_id":"sess-af2f672f5479","input_length":808,"output_length":761,"hash_ids":[1192091,1192092],"delay":1940.9} +{"session_id":"sess-af2f672f5479","input_length":247,"output_length":668,"hash_ids":[1192093],"delay":795.6} +{"session_id":"sess-af2f672f5479","input_length":1570,"output_length":809,"hash_ids":[1192094,1192095,1192096,1192097],"delay":11908.1} +{"session_id":"sess-af2f672f5479","input_length":1036,"output_length":267,"hash_ids":[1192098,1192099,1192100],"delay":8344.2} +{"session_id":"sess-af2f672f5479","input_length":2416,"output_length":220,"hash_ids":[1192101,1192102,1192103,1192104,1192105],"delay":992.4} +{"session_id":"sess-af2f672f5479","input_length":3517,"output_length":111,"hash_ids":[1192106,1192107,1192108,1192109,1192110,1192111,1192112],"delay":1777.4} +{"session_id":"sess-af2f672f5479","input_length":4367,"output_length":257,"hash_ids":[1192113,1192114,1192115,1192116,1192117,1192118,1192119,1192120,1192121],"delay":624.4} +{"session_id":"sess-af2f672f5479","input_length":1601,"output_length":72,"hash_ids":[1192122,1192123,1192124,1192125],"delay":490.9} +{"session_id":"sess-af2f672f5479","input_length":2033,"output_length":167,"hash_ids":[1192126,1192127,1192128,1192129],"delay":2396.0} +{"session_id":"sess-af2f672f5479","input_length":1299,"output_length":724,"hash_ids":[1192130,1192131,1192132],"delay":258.6} +{"session_id":"sess-af2f672f5479","input_length":619,"output_length":525,"hash_ids":[1192133,1192134],"delay":8557.2} +{"session_id":"sess-af2f672f5479","input_length":3232,"output_length":146,"hash_ids":[1192135,1192136,1192137,1192138,1192139,1192140,1192141],"delay":1105.2} +{"session_id":"sess-af2f672f5479","input_length":5419,"output_length":57,"hash_ids":[1192142,1192143,1192144,1192145,1192146,1192147,1192148,1192149,1192150,1192151,1192152],"delay":559.7} +{"session_id":"sess-af2f672f5479","input_length":1058,"output_length":607,"hash_ids":[1192153,1192154,1192155],"delay":420.6} +{"session_id":"sess-af2f672f5479","input_length":1906,"output_length":153,"hash_ids":[1192156,1192157,1192158,1192159],"delay":1118.5} +{"session_id":"sess-af2f672f5479","input_length":412,"output_length":326,"hash_ids":[1192160],"delay":283.6} +{"session_id":"sess-af2f672f5479","input_length":533,"output_length":127,"hash_ids":[1192161,1192162],"delay":529.1} +{"session_id":"sess-af2f672f5479","input_length":5885,"output_length":200,"hash_ids":[1192163,1192164,1192165,1192166,1192167,1192168,1192169,1192170,1192171,1192172,1192173,1192174],"delay":985.2} +{"session_id":"sess-af2f672f5479","input_length":3251,"output_length":55,"hash_ids":[1192175,1192176,1192177,1192178,1192179,1192180,1192181],"delay":61.0} +{"session_id":"sess-af2f672f5479","input_length":1563,"output_length":1015,"hash_ids":[1192182,1192183,1192184,1192185],"delay":181.4} +{"session_id":"sess-af2f672f5479","input_length":3762,"output_length":246,"hash_ids":[1192186,1192187,1192188,1192189,1192190,1192191,1192192,1192193],"delay":6046.6} +{"session_id":"sess-af2f672f5479","input_length":6521,"output_length":90,"hash_ids":[1192194,1192195,1192196,1192197,1192198,1192199,1192200,1192201,1192202,1192203,1192204,1192205,1192206],"delay":177.6} +{"session_id":"sess-af2f672f5479","input_length":2263,"output_length":80,"hash_ids":[1192207,1192208,1192209,1192210,1192211],"delay":511.7} +{"session_id":"sess-05afede820bd","input_length":59386,"output_length":388,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1196063,1196064,1196065,1196066,1196067,1196068,1196069,1196070,1196071,1196072,1196073,1196074,1196075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-05afede820bd","input_length":205,"output_length":332,"hash_ids":[1196076],"delay":1275.6} +{"session_id":"sess-05afede820bd","input_length":2698,"output_length":262,"hash_ids":[1196077,1196078,1196079,1196080,1196081,1196082],"delay":1025.5} +{"session_id":"sess-05afede820bd","input_length":1542,"output_length":151,"hash_ids":[1196083,1196084,1196085,1196086],"delay":8774.8} +{"session_id":"sess-05afede820bd","input_length":2638,"output_length":128,"hash_ids":[1196087,1196088,1196089,1196090,1196091,1196092],"delay":11636.9} +{"session_id":"sess-05afede820bd","input_length":552,"output_length":952,"hash_ids":[1196093,1196094],"delay":24715.5} +{"session_id":"sess-05afede820bd","input_length":1291,"output_length":406,"hash_ids":[1196095,1196096,1196097],"delay":1809.2} +{"session_id":"sess-05afede820bd","input_length":7336,"output_length":410,"hash_ids":[1196098,1196099,1196100,1196101,1196102,1196103,1196104,1196105,1196106,1196107,1196108,1196109,1196110,1196111,1196112],"delay":5487.4} +{"session_id":"sess-8c682f779141","input_length":60553,"output_length":399,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,1200063,1200064,1200065,1200066,1200067,1200068,1200069,1200070,1200071,1200072,1200073,1200074,1200075,1200076,1200077,1200078],"timestamp":0.0,"group_id":20} +{"session_id":"sess-8c682f779141","input_length":3134,"output_length":129,"hash_ids":[1200079,1200080,1200081,1200082,1200083,1200084,1200085],"delay":661.1} +{"session_id":"sess-8c682f779141","input_length":2514,"output_length":288,"hash_ids":[1200086,1200087,1200088,1200089,1200090],"delay":4078.5} +{"session_id":"sess-8c682f779141","input_length":508,"output_length":1121,"hash_ids":[1200091],"delay":1118.1} +{"session_id":"sess-8c682f779141","input_length":1192,"output_length":401,"hash_ids":[1200092,1200093,1200094],"delay":799.8} +{"session_id":"sess-8c682f779141","input_length":3700,"output_length":106,"hash_ids":[1200095,1200096,1200097,1200098,1200099,1200100,1200101,1200102],"delay":26967.9} +{"session_id":"sess-8c682f779141","input_length":1651,"output_length":305,"hash_ids":[1200103,1200104,1200105,1200106],"delay":1228.4} +{"session_id":"sess-8c682f779141","input_length":2724,"output_length":140,"hash_ids":[1200107,1200108,1200109,1200110,1200111,1200112],"delay":552.4} +{"session_id":"sess-8c682f779141","input_length":5789,"output_length":228,"hash_ids":[1200113,1200114,1200115,1200116,1200117,1200118,1200119,1200120,1200121,1200122,1200123,1200124],"delay":1293.5} +{"session_id":"sess-8c682f779141","input_length":262,"output_length":617,"hash_ids":[1200125],"delay":10494.2} +{"session_id":"sess-8c682f779141","input_length":1005,"output_length":33,"hash_ids":[1200126,1200127],"delay":182.9} +{"session_id":"sess-8c682f779141","input_length":1507,"output_length":1395,"hash_ids":[1200128,1200129,1200130],"delay":9760.4} +{"session_id":"sess-8c682f779141","input_length":1098,"output_length":791,"hash_ids":[1200131,1200132,1200133],"delay":396.5} +{"session_id":"sess-8c682f779141","input_length":730,"output_length":1152,"hash_ids":[1200134,1200135],"delay":1718.4} +{"session_id":"sess-8c682f779141","input_length":5567,"output_length":1230,"hash_ids":[1200136,1200137,1200138,1200139,1200140,1200141,1200142,1200143,1200144,1200145,1200146],"delay":1199.1} +{"session_id":"sess-8c682f779141","input_length":6423,"output_length":54,"hash_ids":[1200147,1200148,1200149,1200150,1200151,1200152,1200153,1200154,1200155,1200156,1200157,1200158,1200159],"delay":1084.6} +{"session_id":"sess-8c682f779141","input_length":8515,"output_length":212,"hash_ids":[1200160,1200161,1200162,1200163,1200164,1200165,1200166,1200167,1200168,1200169,1200170,1200171,1200172,1200173,1200174,1200175,1200176],"delay":274.6} +{"session_id":"sess-8c682f779141","input_length":3593,"output_length":249,"hash_ids":[1200177,1200178,1200179,1200180,1200181,1200182,1200183,1200184],"delay":822.3} +{"session_id":"sess-8c682f779141","input_length":2868,"output_length":666,"hash_ids":[1200185,1200186,1200187,1200188,1200189,1200190],"delay":200.7} +{"session_id":"sess-8c682f779141","input_length":610,"output_length":79,"hash_ids":[1200191,1200192],"delay":119.2} +{"session_id":"sess-8c682f779141","input_length":3624,"output_length":2492,"hash_ids":[1200193,1200194,1200195,1200196,1200197,1200198,1200199,1200200],"delay":227.8} +{"session_id":"sess-500dd8297b82","input_length":61930,"output_length":550,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1204063,1204064,1204065,1204066,1204067,1204068,1204069,1204070,1204071,1204072,1204073,1204074,1204075,1204076,1204077,1204078,1204079,1204080],"timestamp":0.0,"group_id":10} +{"session_id":"sess-500dd8297b82","input_length":501,"output_length":160,"hash_ids":[1204081],"delay":716.7} +{"session_id":"sess-500dd8297b82","input_length":1967,"output_length":393,"hash_ids":[1204082,1204083,1204084,1204085],"delay":1343.6} +{"session_id":"sess-500dd8297b82","input_length":3546,"output_length":258,"hash_ids":[1204086,1204087,1204088,1204089,1204090,1204091,1204092],"delay":46297.6} +{"session_id":"sess-9c21bbf47ba5","input_length":75681,"output_length":68,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1208063,1208064,1208065,1208066,1208067,1208068,1208069,1208070,1208071,1208072,1208073,1208074,1208075,1208076,1208077,1208078,1208079,1208080,1208081,1208082,1208083,1208084,1208085,1208086,1208087,1208088,1208089,1208090,1208091,1208092,1208093,1208094,1208095,1208096,1208097,1208098,1208099,1208100,1208101,1208102,1208103,1208104,1208105,1208106,1208107],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9c21bbf47ba5","input_length":845,"output_length":79,"hash_ids":[1208108,1208109],"delay":766.6} +{"session_id":"sess-9c21bbf47ba5","input_length":1483,"output_length":300,"hash_ids":[1208110,1208111,1208112],"delay":1465.9} +{"session_id":"sess-9c21bbf47ba5","input_length":3447,"output_length":406,"hash_ids":[1208113,1208114,1208115,1208116,1208117,1208118,1208119],"delay":935.2} +{"session_id":"sess-9c21bbf47ba5","input_length":1729,"output_length":462,"hash_ids":[1208120,1208121,1208122,1208123],"delay":46611.2} +{"session_id":"sess-9c21bbf47ba5","input_length":570,"output_length":43,"hash_ids":[1208124,1208125],"delay":18369.2} +{"session_id":"sess-9c21bbf47ba5","input_length":7526,"output_length":215,"hash_ids":[1208126,1208127,1208128,1208129,1208130,1208131,1208132,1208133,1208134,1208135,1208136,1208137,1208138,1208139,1208140],"delay":949.0} +{"session_id":"sess-9c21bbf47ba5","input_length":582,"output_length":463,"hash_ids":[1208141,1208142],"delay":3139.9} +{"session_id":"sess-9c21bbf47ba5","input_length":1184,"output_length":128,"hash_ids":[1208143,1208144,1208145],"delay":1115.9} +{"session_id":"sess-9c21bbf47ba5","input_length":2356,"output_length":220,"hash_ids":[1208146,1208147,1208148,1208149,1208150],"delay":419.0} +{"session_id":"sess-9c21bbf47ba5","input_length":3210,"output_length":401,"hash_ids":[1208151,1208152,1208153,1208154,1208155,1208156,1208157],"delay":7946.1} +{"session_id":"sess-9c21bbf47ba5","input_length":1309,"output_length":476,"hash_ids":[1208158,1208159,1208160],"delay":2109.9} +{"session_id":"sess-9c21bbf47ba5","input_length":1120,"output_length":37,"hash_ids":[1208161,1208162,1208163],"delay":935.5} +{"session_id":"sess-9c21bbf47ba5","input_length":992,"output_length":412,"hash_ids":[1208164,1208165],"delay":814.5} +{"session_id":"sess-9c21bbf47ba5","input_length":2891,"output_length":76,"hash_ids":[1208166,1208167,1208168,1208169,1208170,1208171],"delay":2649.5} +{"session_id":"sess-9c21bbf47ba5","input_length":327,"output_length":696,"hash_ids":[1208172],"delay":491.3} +{"session_id":"sess-9c21bbf47ba5","input_length":3358,"output_length":811,"hash_ids":[1208173,1208174,1208175,1208176,1208177,1208178,1208179],"delay":5226.0} +{"session_id":"sess-9c21bbf47ba5","input_length":6211,"output_length":280,"hash_ids":[1208180,1208181,1208182,1208183,1208184,1208185,1208186,1208187,1208188,1208189,1208190,1208191,1208192],"delay":273.4} +{"session_id":"sess-9c21bbf47ba5","input_length":3700,"output_length":1249,"hash_ids":[1208193,1208194,1208195,1208196,1208197,1208198,1208199,1208200],"delay":134.1} +{"session_id":"sess-9c21bbf47ba5","input_length":561,"output_length":432,"hash_ids":[1208201,1208202],"delay":578.0} +{"session_id":"sess-9c21bbf47ba5","input_length":3332,"output_length":57,"hash_ids":[1208203,1208204,1208205,1208206,1208207,1208208,1208209],"delay":2421.5} +{"session_id":"sess-9c21bbf47ba5","input_length":998,"output_length":656,"hash_ids":[1208210,1208211],"delay":109.4} +{"session_id":"sess-903c8f97e33c","input_length":73600,"output_length":360,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1212063,1212064,1212065,1212066,1212067,1212068,1212069,1212070,1212071,1212072,1212073,1212074,1212075,1212076,1212077,1212078,1212079,1212080,1212081,1212082,1212083,1212084,1212085,1212086,1212087,1212088,1212089,1212090,1212091,1212092,1212093,1212094,1212095,1212096,1212097,1212098,1212099,1212100,1212101,1212102,1212103],"timestamp":0.0,"group_id":1} +{"session_id":"sess-903c8f97e33c","input_length":1271,"output_length":132,"hash_ids":[1212104,1212105,1212106],"delay":24013.0} +{"session_id":"sess-903c8f97e33c","input_length":8792,"output_length":322,"hash_ids":[1212107,1212108,1212109,1212110,1212111,1212112,1212113,1212114,1212115,1212116,1212117,1212118,1212119,1212120,1212121,1212122,1212123,1212124],"delay":905.9} +{"session_id":"sess-903c8f97e33c","input_length":815,"output_length":1539,"hash_ids":[1212125,1212126],"delay":3928.2} +{"session_id":"sess-903c8f97e33c","input_length":3095,"output_length":423,"hash_ids":[1212127,1212128,1212129,1212130,1212131,1212132,1212133],"delay":47173.1} +{"session_id":"sess-903c8f97e33c","input_length":4611,"output_length":980,"hash_ids":[1212134,1212135,1212136,1212137,1212138,1212139,1212140,1212141,1212142,1212143],"delay":880.5} +{"session_id":"sess-903c8f97e33c","input_length":666,"output_length":366,"hash_ids":[1212144,1212145],"delay":15371.2} +{"session_id":"sess-903c8f97e33c","input_length":3152,"output_length":344,"hash_ids":[1212146,1212147,1212148,1212149,1212150,1212151,1212152],"delay":665.4} +{"session_id":"sess-903c8f97e33c","input_length":507,"output_length":1004,"hash_ids":[1212153],"delay":320.4} +{"session_id":"sess-903c8f97e33c","input_length":846,"output_length":252,"hash_ids":[1212154,1212155],"delay":567.8} +{"session_id":"sess-903c8f97e33c","input_length":4507,"output_length":119,"hash_ids":[1212156,1212157,1212158,1212159,1212160,1212161,1212162,1212163,1212164],"delay":297.6} +{"session_id":"sess-903c8f97e33c","input_length":2977,"output_length":153,"hash_ids":[1212165,1212166,1212167,1212168,1212169,1212170],"delay":601.3} +{"session_id":"sess-903c8f97e33c","input_length":1082,"output_length":183,"hash_ids":[1212171,1212172,1212173],"delay":769.1} +{"session_id":"sess-903c8f97e33c","input_length":1646,"output_length":886,"hash_ids":[1212174,1212175,1212176,1212177],"delay":386.1} +{"session_id":"sess-903c8f97e33c","input_length":1714,"output_length":65,"hash_ids":[1212178,1212179,1212180,1212181],"delay":534.0} +{"session_id":"sess-903c8f97e33c","input_length":418,"output_length":167,"hash_ids":[1212182],"delay":190.2} +{"session_id":"sess-903c8f97e33c","input_length":552,"output_length":1571,"hash_ids":[1212183,1212184],"delay":628.1} +{"session_id":"sess-903c8f97e33c","input_length":2243,"output_length":184,"hash_ids":[1212185,1212186,1212187,1212188,1212189],"delay":175.6} +{"session_id":"sess-3b530d3e3953","input_length":56221,"output_length":248,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1216063,1216064,1216065,1216066,1216067,1216068,1216069],"timestamp":0.0,"group_id":4} +{"session_id":"sess-3b530d3e3953","input_length":241,"output_length":174,"hash_ids":[1216070],"delay":1066.5} +{"session_id":"sess-3b530d3e3953","input_length":9604,"output_length":170,"hash_ids":[1216071,1216072,1216073,1216074,1216075,1216076,1216077,1216078,1216079,1216080,1216081,1216082,1216083,1216084,1216085,1216086,1216087,1216088,1216089],"delay":3704.1} +{"session_id":"sess-3b530d3e3953","input_length":644,"output_length":168,"hash_ids":[1216090,1216091],"delay":186.4} +{"session_id":"sess-3b530d3e3953","input_length":1035,"output_length":295,"hash_ids":[1216092,1216093,1216094],"delay":672.8} +{"session_id":"sess-3b530d3e3953","input_length":1647,"output_length":382,"hash_ids":[1216095,1216096,1216097,1216098],"delay":439.6} +{"session_id":"sess-3b530d3e3953","input_length":2058,"output_length":1518,"hash_ids":[1216099,1216100,1216101,1216102,1216103],"delay":25865.6} +{"session_id":"sess-3b530d3e3953","input_length":3358,"output_length":197,"hash_ids":[1216104,1216105,1216106,1216107,1216108,1216109,1216110],"delay":1642.9} +{"session_id":"sess-3b530d3e3953","input_length":1755,"output_length":465,"hash_ids":[1216111,1216112,1216113,1216114],"delay":579.7} +{"session_id":"sess-3b530d3e3953","input_length":2143,"output_length":659,"hash_ids":[1216115,1216116,1216117,1216118,1216119],"delay":1060.0} +{"session_id":"sess-3b530d3e3953","input_length":4500,"output_length":119,"hash_ids":[1216120,1216121,1216122,1216123,1216124,1216125,1216126,1216127,1216128],"delay":3505.1} +{"session_id":"sess-3b530d3e3953","input_length":942,"output_length":434,"hash_ids":[1216129,1216130],"delay":312.6} +{"session_id":"sess-3b530d3e3953","input_length":1443,"output_length":560,"hash_ids":[1216131,1216132,1216133],"delay":1601.3} +{"session_id":"sess-3b530d3e3953","input_length":732,"output_length":175,"hash_ids":[1216134,1216135],"delay":330.9} +{"session_id":"sess-3b530d3e3953","input_length":4992,"output_length":165,"hash_ids":[1216136,1216137,1216138,1216139,1216140,1216141,1216142,1216143,1216144,1216145],"delay":806.4} +{"session_id":"sess-3b530d3e3953","input_length":1442,"output_length":94,"hash_ids":[1216146,1216147,1216148],"delay":278.8} +{"session_id":"sess-3b530d3e3953","input_length":1548,"output_length":385,"hash_ids":[1216149,1216150,1216151,1216152],"delay":708.7} +{"session_id":"sess-3b530d3e3953","input_length":1126,"output_length":285,"hash_ids":[1216153,1216154,1216155],"delay":568.4} +{"session_id":"sess-3b530d3e3953","input_length":1653,"output_length":2538,"hash_ids":[1216156,1216157,1216158,1216159],"delay":591.7} +{"session_id":"sess-3b530d3e3953","input_length":718,"output_length":1668,"hash_ids":[1216160,1216161],"delay":109.2} +{"session_id":"sess-3b530d3e3953","input_length":2381,"output_length":261,"hash_ids":[1216162,1216163,1216164,1216165,1216166],"delay":3639.7} +{"session_id":"sess-3b530d3e3953","input_length":5138,"output_length":271,"hash_ids":[1216167,1216168,1216169,1216170,1216171,1216172,1216173,1216174,1216175,1216176,1216177],"delay":420.6} +{"session_id":"sess-3b530d3e3953","input_length":433,"output_length":267,"hash_ids":[1216178],"delay":870.1} +{"session_id":"sess-3b530d3e3953","input_length":1149,"output_length":95,"hash_ids":[1216179,1216180,1216181],"delay":434.9} +{"session_id":"sess-3b530d3e3953","input_length":2098,"output_length":363,"hash_ids":[1216182,1216183,1216184,1216185,1216186],"delay":2225.7} +{"session_id":"sess-3b530d3e3953","input_length":8794,"output_length":91,"hash_ids":[1216187,1216188,1216189,1216190,1216191,1216192,1216193,1216194,1216195,1216196,1216197,1216198,1216199,1216200,1216201,1216202,1216203,1216204],"delay":2062.0} +{"session_id":"sess-801148e608bc","input_length":54493,"output_length":455,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1220063,1220064,1220065,1220066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-801148e608bc","input_length":1111,"output_length":332,"hash_ids":[1220067,1220068,1220069],"delay":727.0} +{"session_id":"sess-801148e608bc","input_length":316,"output_length":61,"hash_ids":[1220070],"delay":29038.5} +{"session_id":"sess-801148e608bc","input_length":749,"output_length":664,"hash_ids":[1220071,1220072],"delay":1156.4} +{"session_id":"sess-801148e608bc","input_length":1597,"output_length":142,"hash_ids":[1220073,1220074,1220075,1220076],"delay":2319.7} +{"session_id":"sess-801148e608bc","input_length":501,"output_length":256,"hash_ids":[1220077],"delay":402.9} +{"session_id":"sess-801148e608bc","input_length":2063,"output_length":315,"hash_ids":[1220078,1220079,1220080,1220081,1220082],"delay":876.7} +{"session_id":"sess-801148e608bc","input_length":964,"output_length":198,"hash_ids":[1220083,1220084],"delay":1633.6} +{"session_id":"sess-801148e608bc","input_length":3517,"output_length":975,"hash_ids":[1220085,1220086,1220087,1220088,1220089,1220090,1220091],"delay":5928.8} +{"session_id":"sess-801148e608bc","input_length":5081,"output_length":134,"hash_ids":[1220092,1220093,1220094,1220095,1220096,1220097,1220098,1220099,1220100,1220101],"delay":627.4} +{"session_id":"sess-801148e608bc","input_length":2628,"output_length":135,"hash_ids":[1220102,1220103,1220104,1220105,1220106,1220107],"delay":1076.9} +{"session_id":"sess-801148e608bc","input_length":311,"output_length":472,"hash_ids":[1220108],"delay":667.8} +{"session_id":"sess-801148e608bc","input_length":2663,"output_length":334,"hash_ids":[1220109,1220110,1220111,1220112,1220113,1220114],"delay":4517.3} +{"session_id":"sess-801148e608bc","input_length":3865,"output_length":944,"hash_ids":[1220115,1220116,1220117,1220118,1220119,1220120,1220121,1220122],"delay":25370.6} +{"session_id":"sess-801148e608bc","input_length":2964,"output_length":255,"hash_ids":[1220123,1220124,1220125,1220126,1220127,1220128],"delay":801.6} +{"session_id":"sess-801148e608bc","input_length":547,"output_length":143,"hash_ids":[1220129,1220130],"delay":290.7} +{"session_id":"sess-801148e608bc","input_length":2153,"output_length":693,"hash_ids":[1220131,1220132,1220133,1220134,1220135],"delay":280.8} +{"session_id":"sess-801148e608bc","input_length":259,"output_length":130,"hash_ids":[1220136],"delay":483.8} +{"session_id":"sess-801148e608bc","input_length":4701,"output_length":293,"hash_ids":[1220137,1220138,1220139,1220140,1220141,1220142,1220143,1220144,1220145,1220146],"delay":18117.9} +{"session_id":"sess-801148e608bc","input_length":3134,"output_length":758,"hash_ids":[1220147,1220148,1220149,1220150,1220151,1220152,1220153],"delay":718.4} +{"session_id":"sess-801148e608bc","input_length":978,"output_length":269,"hash_ids":[1220154,1220155],"delay":2364.9} +{"session_id":"sess-801148e608bc","input_length":2943,"output_length":50,"hash_ids":[1220156,1220157,1220158,1220159,1220160,1220161],"delay":411.3} +{"session_id":"sess-801148e608bc","input_length":3343,"output_length":401,"hash_ids":[1220162,1220163,1220164,1220165,1220166,1220167,1220168],"delay":16394.4} +{"session_id":"sess-801148e608bc","input_length":1149,"output_length":78,"hash_ids":[1220169,1220170,1220171],"delay":316.5} +{"session_id":"sess-801148e608bc","input_length":310,"output_length":2456,"hash_ids":[1220172],"delay":295.0} +{"session_id":"sess-801148e608bc","input_length":2689,"output_length":119,"hash_ids":[1220173,1220174,1220175,1220176,1220177,1220178],"delay":1456.2} +{"session_id":"sess-801148e608bc","input_length":3631,"output_length":158,"hash_ids":[1220179,1220180,1220181,1220182,1220183,1220184,1220185,1220186],"delay":876.8} +{"session_id":"sess-801148e608bc","input_length":1325,"output_length":46,"hash_ids":[1220187,1220188,1220189],"delay":687.1} +{"session_id":"sess-801148e608bc","input_length":6948,"output_length":178,"hash_ids":[1220190,1220191,1220192,1220193,1220194,1220195,1220196,1220197,1220198,1220199,1220200,1220201,1220202,1220203],"delay":168.0} +{"session_id":"sess-801148e608bc","input_length":2492,"output_length":90,"hash_ids":[1220204,1220205,1220206,1220207,1220208],"delay":212.5} +{"session_id":"sess-00fb4566c665","input_length":54333,"output_length":219,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,1224063,1224064,1224065,1224066],"timestamp":0.0,"group_id":24} +{"session_id":"sess-00fb4566c665","input_length":3707,"output_length":621,"hash_ids":[1224067,1224068,1224069,1224070,1224071,1224072,1224073,1224074],"delay":20133.5} +{"session_id":"sess-00fb4566c665","input_length":730,"output_length":264,"hash_ids":[1224075,1224076],"delay":38268.0} +{"session_id":"sess-00fb4566c665","input_length":698,"output_length":452,"hash_ids":[1224077,1224078],"delay":742.4} +{"session_id":"sess-00fb4566c665","input_length":2637,"output_length":450,"hash_ids":[1224079,1224080,1224081,1224082,1224083,1224084],"delay":27118.8} +{"session_id":"sess-00fb4566c665","input_length":6525,"output_length":86,"hash_ids":[1224085,1224086,1224087,1224088,1224089,1224090,1224091,1224092,1224093,1224094,1224095,1224096,1224097],"delay":157.9} +{"session_id":"sess-00fb4566c665","input_length":2346,"output_length":46,"hash_ids":[1224098,1224099,1224100,1224101,1224102],"delay":1172.9} +{"session_id":"sess-00fb4566c665","input_length":216,"output_length":719,"hash_ids":[1224103],"delay":830.4} +{"session_id":"sess-00fb4566c665","input_length":1128,"output_length":506,"hash_ids":[1224104,1224105,1224106],"delay":855.2} +{"session_id":"sess-00fb4566c665","input_length":926,"output_length":40,"hash_ids":[1224107,1224108],"delay":2288.8} +{"session_id":"sess-00fb4566c665","input_length":2913,"output_length":2218,"hash_ids":[1224109,1224110,1224111,1224112,1224113,1224114],"delay":3721.4} +{"session_id":"sess-00fb4566c665","input_length":1376,"output_length":458,"hash_ids":[1224115,1224116,1224117],"delay":716.1} +{"session_id":"sess-00fb4566c665","input_length":4340,"output_length":162,"hash_ids":[1224118,1224119,1224120,1224121,1224122,1224123,1224124,1224125,1224126],"delay":994.3} +{"session_id":"sess-00fb4566c665","input_length":3092,"output_length":61,"hash_ids":[1224127,1224128,1224129,1224130,1224131,1224132,1224133],"delay":136.9} +{"session_id":"sess-00fb4566c665","input_length":4568,"output_length":331,"hash_ids":[1224134,1224135,1224136,1224137,1224138,1224139,1224140,1224141,1224142],"delay":651.2} +{"session_id":"sess-00fb4566c665","input_length":1387,"output_length":138,"hash_ids":[1224143,1224144,1224145],"delay":1771.0} +{"session_id":"sess-00fb4566c665","input_length":4413,"output_length":262,"hash_ids":[1224146,1224147,1224148,1224149,1224150,1224151,1224152,1224153,1224154],"delay":21400.8} +{"session_id":"sess-00fb4566c665","input_length":2915,"output_length":52,"hash_ids":[1224155,1224156,1224157,1224158,1224159,1224160],"delay":350.5} +{"session_id":"sess-00fb4566c665","input_length":2586,"output_length":437,"hash_ids":[1224161,1224162,1224163,1224164,1224165,1224166],"delay":26055.0} +{"session_id":"sess-00fb4566c665","input_length":1303,"output_length":385,"hash_ids":[1224167,1224168,1224169],"delay":5929.3} +{"session_id":"sess-00fb4566c665","input_length":1727,"output_length":83,"hash_ids":[1224170,1224171,1224172,1224173],"delay":832.4} +{"session_id":"sess-00fb4566c665","input_length":149,"output_length":87,"hash_ids":[1224174],"delay":1094.3} +{"session_id":"sess-00fb4566c665","input_length":486,"output_length":302,"hash_ids":[1224175],"delay":414.9} +{"session_id":"sess-00fb4566c665","input_length":2746,"output_length":241,"hash_ids":[1224176,1224177,1224178,1224179,1224180,1224181],"delay":1463.2} +{"session_id":"sess-00fb4566c665","input_length":2571,"output_length":904,"hash_ids":[1224182,1224183,1224184,1224185,1224186,1224187],"delay":56.1} +{"session_id":"sess-00fb4566c665","input_length":337,"output_length":231,"hash_ids":[1224188],"delay":5991.1} +{"session_id":"sess-00fb4566c665","input_length":2425,"output_length":151,"hash_ids":[1224189,1224190,1224191,1224192,1224193],"delay":16053.9} +{"session_id":"sess-00fb4566c665","input_length":1831,"output_length":782,"hash_ids":[1224194,1224195,1224196,1224197],"delay":319.3} +{"session_id":"sess-00fb4566c665","input_length":1215,"output_length":388,"hash_ids":[1224198,1224199,1224200],"delay":3010.3} +{"session_id":"sess-00fb4566c665","input_length":2122,"output_length":58,"hash_ids":[1224201,1224202,1224203,1224204,1224205],"delay":588.8} +{"session_id":"sess-28aa818bb7b6","input_length":54695,"output_length":120,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,1228063,1228064,1228065,1228066],"timestamp":0.0,"group_id":29} +{"session_id":"sess-28aa818bb7b6","input_length":1168,"output_length":400,"hash_ids":[1228067,1228068,1228069],"delay":56914.9} +{"session_id":"sess-28aa818bb7b6","input_length":6837,"output_length":251,"hash_ids":[1228070,1228071,1228072,1228073,1228074,1228075,1228076,1228077,1228078,1228079,1228080,1228081,1228082,1228083],"delay":3557.6} +{"session_id":"sess-28aa818bb7b6","input_length":5087,"output_length":178,"hash_ids":[1228084,1228085,1228086,1228087,1228088,1228089,1228090,1228091,1228092,1228093],"delay":431.5} +{"session_id":"sess-28aa818bb7b6","input_length":421,"output_length":166,"hash_ids":[1228094],"delay":24824.3} +{"session_id":"sess-28aa818bb7b6","input_length":3289,"output_length":129,"hash_ids":[1228095,1228096,1228097,1228098,1228099,1228100,1228101],"delay":752.7} +{"session_id":"sess-28aa818bb7b6","input_length":7093,"output_length":917,"hash_ids":[1228102,1228103,1228104,1228105,1228106,1228107,1228108,1228109,1228110,1228111,1228112,1228113,1228114,1228115],"delay":14003.5} +{"session_id":"sess-28aa818bb7b6","input_length":2300,"output_length":635,"hash_ids":[1228116,1228117,1228118,1228119,1228120],"delay":26851.9} +{"session_id":"sess-28aa818bb7b6","input_length":6113,"output_length":898,"hash_ids":[1228121,1228122,1228123,1228124,1228125,1228126,1228127,1228128,1228129,1228130,1228131,1228132],"delay":1489.8} +{"session_id":"sess-28aa818bb7b6","input_length":4487,"output_length":553,"hash_ids":[1228133,1228134,1228135,1228136,1228137,1228138,1228139,1228140,1228141],"delay":10143.8} +{"session_id":"sess-6887541fc123","input_length":53017,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1232063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6887541fc123","input_length":3631,"output_length":130,"hash_ids":[1232064,1232065,1232066,1232067,1232068,1232069,1232070,1232071],"delay":1430.1} +{"session_id":"sess-6887541fc123","input_length":7111,"output_length":2244,"hash_ids":[1232072,1232073,1232074,1232075,1232076,1232077,1232078,1232079,1232080,1232081,1232082,1232083,1232084,1232085],"delay":919.8} +{"session_id":"sess-6887541fc123","input_length":2227,"output_length":37,"hash_ids":[1232086,1232087,1232088,1232089,1232090],"delay":298.2} +{"session_id":"sess-6887541fc123","input_length":577,"output_length":504,"hash_ids":[1232091,1232092],"delay":27358.1} +{"session_id":"sess-6887541fc123","input_length":1116,"output_length":217,"hash_ids":[1232093,1232094,1232095],"delay":1725.0} +{"session_id":"sess-6887541fc123","input_length":1493,"output_length":74,"hash_ids":[1232096,1232097,1232098],"delay":58785.9} +{"session_id":"sess-6887541fc123","input_length":583,"output_length":811,"hash_ids":[1232099,1232100],"delay":7065.6} +{"session_id":"sess-6887541fc123","input_length":3561,"output_length":396,"hash_ids":[1232101,1232102,1232103,1232104,1232105,1232106,1232107],"delay":2770.8} +{"session_id":"sess-6887541fc123","input_length":837,"output_length":161,"hash_ids":[1232108,1232109],"delay":230.6} +{"session_id":"sess-6887541fc123","input_length":1737,"output_length":515,"hash_ids":[1232110,1232111,1232112,1232113],"delay":266.7} +{"session_id":"sess-6887541fc123","input_length":4004,"output_length":218,"hash_ids":[1232114,1232115,1232116,1232117,1232118,1232119,1232120,1232121],"delay":1837.0} +{"session_id":"sess-6887541fc123","input_length":1476,"output_length":260,"hash_ids":[1232122,1232123,1232124],"delay":555.9} +{"session_id":"sess-025dcec2946c","input_length":67412,"output_length":103,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1236063,1236064,1236065,1236066,1236067,1236068,1236069,1236070,1236071,1236072,1236073,1236074,1236075,1236076,1236077,1236078,1236079,1236080,1236081,1236082,1236083,1236084,1236085,1236086,1236087,1236088,1236089,1236090,1236091],"timestamp":0.0,"group_id":0} +{"session_id":"sess-025dcec2946c","input_length":726,"output_length":80,"hash_ids":[1236092,1236093],"delay":5867.8} +{"session_id":"sess-025dcec2946c","input_length":890,"output_length":140,"hash_ids":[1236094,1236095],"delay":30110.2} +{"session_id":"sess-025dcec2946c","input_length":373,"output_length":650,"hash_ids":[1236096],"delay":518.0} +{"session_id":"sess-025dcec2946c","input_length":1397,"output_length":293,"hash_ids":[1236097,1236098,1236099],"delay":372.1} +{"session_id":"sess-025dcec2946c","input_length":1008,"output_length":143,"hash_ids":[1236100,1236101],"delay":1533.3} +{"session_id":"sess-025dcec2946c","input_length":1322,"output_length":276,"hash_ids":[1236102,1236103,1236104],"delay":4317.4} +{"session_id":"sess-025dcec2946c","input_length":3945,"output_length":152,"hash_ids":[1236105,1236106,1236107,1236108,1236109,1236110,1236111,1236112],"delay":672.9} +{"session_id":"sess-025dcec2946c","input_length":6427,"output_length":721,"hash_ids":[1236113,1236114,1236115,1236116,1236117,1236118,1236119,1236120,1236121,1236122,1236123,1236124,1236125],"delay":3891.1} +{"session_id":"sess-025dcec2946c","input_length":1991,"output_length":120,"hash_ids":[1236126,1236127,1236128,1236129],"delay":639.7} +{"session_id":"sess-025dcec2946c","input_length":8913,"output_length":676,"hash_ids":[1236130,1236131,1236132,1236133,1236134,1236135,1236136,1236137,1236138,1236139,1236140,1236141,1236142,1236143,1236144,1236145,1236146,1236147],"delay":835.2} +{"session_id":"sess-025dcec2946c","input_length":457,"output_length":291,"hash_ids":[1236148],"delay":500.6} +{"session_id":"sess-025dcec2946c","input_length":535,"output_length":78,"hash_ids":[1236149,1236150],"delay":698.4} +{"session_id":"sess-025dcec2946c","input_length":497,"output_length":1869,"hash_ids":[1236151],"delay":8613.9} +{"session_id":"sess-025dcec2946c","input_length":1313,"output_length":119,"hash_ids":[1236152,1236153,1236154],"delay":15723.3} +{"session_id":"sess-025dcec2946c","input_length":1524,"output_length":353,"hash_ids":[1236155,1236156,1236157],"delay":20199.5} +{"session_id":"sess-025dcec2946c","input_length":1810,"output_length":108,"hash_ids":[1236158,1236159,1236160,1236161],"delay":1038.8} +{"session_id":"sess-025dcec2946c","input_length":551,"output_length":172,"hash_ids":[1236162,1236163],"delay":3003.2} +{"session_id":"sess-025dcec2946c","input_length":744,"output_length":1133,"hash_ids":[1236164,1236165],"delay":11581.4} +{"session_id":"sess-025dcec2946c","input_length":1937,"output_length":75,"hash_ids":[1236166,1236167,1236168,1236169],"delay":390.6} +{"session_id":"sess-025dcec2946c","input_length":2680,"output_length":191,"hash_ids":[1236170,1236171,1236172,1236173,1236174,1236175],"delay":144.0} +{"session_id":"sess-025dcec2946c","input_length":643,"output_length":163,"hash_ids":[1236176,1236177],"delay":608.9} +{"session_id":"sess-025dcec2946c","input_length":2219,"output_length":327,"hash_ids":[1236178,1236179,1236180,1236181,1236182],"delay":5646.6} +{"session_id":"sess-025dcec2946c","input_length":1274,"output_length":59,"hash_ids":[1236183,1236184,1236185],"delay":694.4} +{"session_id":"sess-025dcec2946c","input_length":1007,"output_length":370,"hash_ids":[1236186,1236187],"delay":5357.7} +{"session_id":"sess-025dcec2946c","input_length":690,"output_length":72,"hash_ids":[1236188,1236189],"delay":1212.3} +{"session_id":"sess-025dcec2946c","input_length":5635,"output_length":397,"hash_ids":[1236190,1236191,1236192,1236193,1236194,1236195,1236196,1236197,1236198,1236199,1236200,1236201],"delay":75.0} +{"session_id":"sess-025dcec2946c","input_length":3317,"output_length":125,"hash_ids":[1236202,1236203,1236204,1236205,1236206,1236207,1236208],"delay":1733.9} +{"session_id":"sess-025dcec2946c","input_length":221,"output_length":514,"hash_ids":[1236209],"delay":221.4} +{"session_id":"sess-6274eb42addd","input_length":56188,"output_length":945,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1240063,1240064,1240065,1240066,1240067,1240068,1240069],"timestamp":0.0,"group_id":12} +{"session_id":"sess-6274eb42addd","input_length":1698,"output_length":211,"hash_ids":[1240070,1240071,1240072,1240073],"delay":1832.3} +{"session_id":"sess-6274eb42addd","input_length":1067,"output_length":166,"hash_ids":[1240074,1240075,1240076],"delay":910.0} +{"session_id":"sess-6274eb42addd","input_length":2163,"output_length":177,"hash_ids":[1240077,1240078,1240079,1240080,1240081],"delay":18589.5} +{"session_id":"sess-6274eb42addd","input_length":1172,"output_length":55,"hash_ids":[1240082,1240083,1240084],"delay":48721.7} +{"session_id":"sess-6274eb42addd","input_length":6520,"output_length":694,"hash_ids":[1240085,1240086,1240087,1240088,1240089,1240090,1240091,1240092,1240093,1240094,1240095,1240096,1240097],"delay":1721.2} +{"session_id":"sess-6274eb42addd","input_length":556,"output_length":1083,"hash_ids":[1240098,1240099],"delay":1907.8} +{"session_id":"sess-6274eb42addd","input_length":471,"output_length":34,"hash_ids":[1240100],"delay":611.6} +{"session_id":"sess-6274eb42addd","input_length":8857,"output_length":942,"hash_ids":[1240101,1240102,1240103,1240104,1240105,1240106,1240107,1240108,1240109,1240110,1240111,1240112,1240113,1240114,1240115,1240116,1240117,1240118],"delay":1170.4} +{"session_id":"sess-6274eb42addd","input_length":5781,"output_length":2467,"hash_ids":[1240119,1240120,1240121,1240122,1240123,1240124,1240125,1240126,1240127,1240128,1240129,1240130],"delay":889.8} +{"session_id":"sess-6274eb42addd","input_length":3221,"output_length":1141,"hash_ids":[1240131,1240132,1240133,1240134,1240135,1240136,1240137],"delay":597.5} +{"session_id":"sess-6274eb42addd","input_length":532,"output_length":1372,"hash_ids":[1240138,1240139],"delay":284.5} +{"session_id":"sess-6274eb42addd","input_length":875,"output_length":108,"hash_ids":[1240140,1240141],"delay":1619.7} +{"session_id":"sess-6274eb42addd","input_length":2399,"output_length":149,"hash_ids":[1240142,1240143,1240144,1240145,1240146],"delay":6115.1} +{"session_id":"sess-6274eb42addd","input_length":550,"output_length":306,"hash_ids":[1240147,1240148],"delay":401.6} +{"session_id":"sess-6274eb42addd","input_length":3831,"output_length":976,"hash_ids":[1240149,1240150,1240151,1240152,1240153,1240154,1240155,1240156],"delay":255.2} +{"session_id":"sess-6274eb42addd","input_length":355,"output_length":1043,"hash_ids":[1240157],"delay":22379.0} +{"session_id":"sess-6274eb42addd","input_length":3820,"output_length":564,"hash_ids":[1240158,1240159,1240160,1240161,1240162,1240163,1240164,1240165],"delay":466.0} +{"session_id":"sess-6274eb42addd","input_length":3954,"output_length":1286,"hash_ids":[1240166,1240167,1240168,1240169,1240170,1240171,1240172,1240173],"delay":565.1} +{"session_id":"sess-6274eb42addd","input_length":2861,"output_length":707,"hash_ids":[1240174,1240175,1240176,1240177,1240178,1240179],"delay":273.3} +{"session_id":"sess-6274eb42addd","input_length":984,"output_length":138,"hash_ids":[1240180,1240181],"delay":6761.0} +{"session_id":"sess-6274eb42addd","input_length":628,"output_length":1228,"hash_ids":[1240182,1240183],"delay":533.4} +{"session_id":"sess-6274eb42addd","input_length":6494,"output_length":155,"hash_ids":[1240184,1240185,1240186,1240187,1240188,1240189,1240190,1240191,1240192,1240193,1240194,1240195,1240196],"delay":863.9} +{"session_id":"sess-26ec764000fc","input_length":53317,"output_length":1085,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1244063,1244064],"timestamp":0.0,"group_id":5} +{"session_id":"sess-26ec764000fc","input_length":2230,"output_length":76,"hash_ids":[1244065,1244066,1244067,1244068,1244069],"delay":13067.0} +{"session_id":"sess-26ec764000fc","input_length":711,"output_length":116,"hash_ids":[1244070,1244071],"delay":903.9} +{"session_id":"sess-26ec764000fc","input_length":2028,"output_length":310,"hash_ids":[1244072,1244073,1244074,1244075],"delay":1742.2} +{"session_id":"sess-26ec764000fc","input_length":820,"output_length":175,"hash_ids":[1244076,1244077],"delay":8087.1} +{"session_id":"sess-26ec764000fc","input_length":1598,"output_length":389,"hash_ids":[1244078,1244079,1244080,1244081],"delay":19423.3} +{"session_id":"sess-26ec764000fc","input_length":313,"output_length":86,"hash_ids":[1244082],"delay":26583.8} +{"session_id":"sess-26ec764000fc","input_length":4854,"output_length":177,"hash_ids":[1244083,1244084,1244085,1244086,1244087,1244088,1244089,1244090,1244091,1244092],"delay":1302.7} +{"session_id":"sess-26ec764000fc","input_length":2142,"output_length":211,"hash_ids":[1244093,1244094,1244095,1244096,1244097],"delay":813.6} +{"session_id":"sess-26ec764000fc","input_length":138,"output_length":284,"hash_ids":[1244098],"delay":2011.3} +{"session_id":"sess-26ec764000fc","input_length":676,"output_length":1673,"hash_ids":[1244099,1244100],"delay":445.3} +{"session_id":"sess-26ec764000fc","input_length":3861,"output_length":253,"hash_ids":[1244101,1244102,1244103,1244104,1244105,1244106,1244107,1244108],"delay":5270.5} +{"session_id":"sess-26ec764000fc","input_length":2969,"output_length":220,"hash_ids":[1244109,1244110,1244111,1244112,1244113,1244114],"delay":1572.2} +{"session_id":"sess-26ec764000fc","input_length":1396,"output_length":256,"hash_ids":[1244115,1244116,1244117],"delay":532.4} +{"session_id":"sess-26ec764000fc","input_length":465,"output_length":258,"hash_ids":[1244118],"delay":179.2} +{"session_id":"sess-26ec764000fc","input_length":1516,"output_length":554,"hash_ids":[1244119,1244120,1244121],"delay":1170.2} +{"session_id":"sess-26ec764000fc","input_length":6368,"output_length":1111,"hash_ids":[1244122,1244123,1244124,1244125,1244126,1244127,1244128,1244129,1244130,1244131,1244132,1244133,1244134],"delay":2262.2} +{"session_id":"sess-26ec764000fc","input_length":1904,"output_length":1240,"hash_ids":[1244135,1244136,1244137,1244138],"delay":462.9} +{"session_id":"sess-26ec764000fc","input_length":7772,"output_length":874,"hash_ids":[1244139,1244140,1244141,1244142,1244143,1244144,1244145,1244146,1244147,1244148,1244149,1244150,1244151,1244152,1244153,1244154],"delay":18574.9} +{"session_id":"sess-26ec764000fc","input_length":7094,"output_length":88,"hash_ids":[1244155,1244156,1244157,1244158,1244159,1244160,1244161,1244162,1244163,1244164,1244165,1244166,1244167,1244168],"delay":627.8} +{"session_id":"sess-26ec764000fc","input_length":1839,"output_length":435,"hash_ids":[1244169,1244170,1244171,1244172],"delay":1933.8} +{"session_id":"sess-26ec764000fc","input_length":4013,"output_length":1273,"hash_ids":[1244173,1244174,1244175,1244176,1244177,1244178,1244179,1244180],"delay":12994.4} +{"session_id":"sess-26ec764000fc","input_length":1701,"output_length":119,"hash_ids":[1244181,1244182,1244183,1244184],"delay":24040.1} +{"session_id":"sess-26ec764000fc","input_length":6487,"output_length":1073,"hash_ids":[1244185,1244186,1244187,1244188,1244189,1244190,1244191,1244192,1244193,1244194,1244195,1244196,1244197],"delay":3180.4} +{"session_id":"sess-2bd5cf5e6986","input_length":65948,"output_length":77,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,1248063,1248064,1248065,1248066,1248067,1248068,1248069,1248070,1248071,1248072,1248073,1248074,1248075,1248076,1248077,1248078,1248079,1248080,1248081,1248082,1248083,1248084,1248085,1248086,1248087,1248088],"timestamp":0.0,"group_id":41} +{"session_id":"sess-2bd5cf5e6986","input_length":299,"output_length":619,"hash_ids":[1248089],"delay":2686.0} +{"session_id":"sess-2bd5cf5e6986","input_length":7883,"output_length":353,"hash_ids":[1248090,1248091,1248092,1248093,1248094,1248095,1248096,1248097,1248098,1248099,1248100,1248101,1248102,1248103,1248104,1248105],"delay":1339.9} +{"session_id":"sess-2bd5cf5e6986","input_length":2643,"output_length":441,"hash_ids":[1248106,1248107,1248108,1248109,1248110,1248111],"delay":1470.3} +{"session_id":"sess-2bd5cf5e6986","input_length":3618,"output_length":233,"hash_ids":[1248112,1248113,1248114,1248115,1248116,1248117,1248118,1248119],"delay":2369.0} +{"session_id":"sess-2bd5cf5e6986","input_length":2342,"output_length":720,"hash_ids":[1248120,1248121,1248122,1248123,1248124],"delay":11879.5} +{"session_id":"sess-2bd5cf5e6986","input_length":1349,"output_length":78,"hash_ids":[1248125,1248126,1248127],"delay":6271.4} +{"session_id":"sess-2bd5cf5e6986","input_length":2977,"output_length":184,"hash_ids":[1248128,1248129,1248130,1248131,1248132,1248133],"delay":14978.3} +{"session_id":"sess-2bd5cf5e6986","input_length":679,"output_length":874,"hash_ids":[1248134,1248135],"delay":848.6} +{"session_id":"sess-2bd5cf5e6986","input_length":1982,"output_length":250,"hash_ids":[1248136,1248137,1248138,1248139],"delay":1845.6} +{"session_id":"sess-2bd5cf5e6986","input_length":5193,"output_length":137,"hash_ids":[1248140,1248141,1248142,1248143,1248144,1248145,1248146,1248147,1248148,1248149,1248150],"delay":231.7} +{"session_id":"sess-2bd5cf5e6986","input_length":418,"output_length":113,"hash_ids":[1248151],"delay":10623.5} +{"session_id":"sess-2bd5cf5e6986","input_length":775,"output_length":337,"hash_ids":[1248152,1248153],"delay":19262.3} +{"session_id":"sess-2bd5cf5e6986","input_length":3712,"output_length":197,"hash_ids":[1248154,1248155,1248156,1248157,1248158,1248159,1248160,1248161],"delay":18580.3} +{"session_id":"sess-2bd5cf5e6986","input_length":1805,"output_length":362,"hash_ids":[1248162,1248163,1248164,1248165],"delay":520.8} +{"session_id":"sess-2bd5cf5e6986","input_length":1653,"output_length":59,"hash_ids":[1248166,1248167,1248168,1248169],"delay":922.9} +{"session_id":"sess-2bd5cf5e6986","input_length":2173,"output_length":231,"hash_ids":[1248170,1248171,1248172,1248173,1248174],"delay":31377.7} +{"session_id":"sess-2bd5cf5e6986","input_length":579,"output_length":47,"hash_ids":[1248175,1248176],"delay":757.7} +{"session_id":"sess-2bd5cf5e6986","input_length":96,"output_length":179,"hash_ids":[1248177],"delay":677.2} +{"session_id":"sess-2bd5cf5e6986","input_length":613,"output_length":114,"hash_ids":[1248178,1248179],"delay":268.1} +{"session_id":"sess-2bd5cf5e6986","input_length":3590,"output_length":490,"hash_ids":[1248180,1248181,1248182,1248183,1248184,1248185,1248186,1248187],"delay":1286.7} +{"session_id":"sess-2bd5cf5e6986","input_length":1140,"output_length":258,"hash_ids":[1248188,1248189,1248190],"delay":2452.2} +{"session_id":"sess-2bd5cf5e6986","input_length":979,"output_length":1113,"hash_ids":[1248191,1248192],"delay":6909.0} +{"session_id":"sess-2bd5cf5e6986","input_length":1696,"output_length":258,"hash_ids":[1248193,1248194,1248195,1248196],"delay":519.4} +{"session_id":"sess-2bd5cf5e6986","input_length":997,"output_length":666,"hash_ids":[1248197,1248198],"delay":371.5} +{"session_id":"sess-2bd5cf5e6986","input_length":1317,"output_length":135,"hash_ids":[1248199,1248200,1248201],"delay":491.5} +{"session_id":"sess-7c2b2c9b213e","input_length":64335,"output_length":67,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1252063,1252064,1252065,1252066,1252067,1252068,1252069,1252070,1252071,1252072,1252073,1252074,1252075,1252076,1252077,1252078,1252079,1252080,1252081,1252082,1252083,1252084,1252085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7c2b2c9b213e","input_length":1097,"output_length":364,"hash_ids":[1252086,1252087,1252088],"delay":1155.2} +{"session_id":"sess-7c2b2c9b213e","input_length":760,"output_length":75,"hash_ids":[1252089,1252090],"delay":2189.8} +{"session_id":"sess-7c2b2c9b213e","input_length":1730,"output_length":54,"hash_ids":[1252091,1252092,1252093,1252094],"delay":873.7} +{"session_id":"sess-7c2b2c9b213e","input_length":1046,"output_length":848,"hash_ids":[1252095,1252096,1252097],"delay":582.0} +{"session_id":"sess-7c2b2c9b213e","input_length":9865,"output_length":785,"hash_ids":[1252098,1252099,1252100,1252101,1252102,1252103,1252104,1252105,1252106,1252107,1252108,1252109,1252110,1252111,1252112,1252113,1252114,1252115,1252116,1252117],"delay":30070.6} +{"session_id":"sess-7c2b2c9b213e","input_length":1197,"output_length":127,"hash_ids":[1252118,1252119,1252120],"delay":4451.4} +{"session_id":"sess-7c2b2c9b213e","input_length":3695,"output_length":135,"hash_ids":[1252121,1252122,1252123,1252124,1252125,1252126,1252127,1252128],"delay":16656.0} +{"session_id":"sess-7c2b2c9b213e","input_length":296,"output_length":1953,"hash_ids":[1252129],"delay":40113.9} +{"session_id":"sess-7c2b2c9b213e","input_length":1357,"output_length":469,"hash_ids":[1252130,1252131,1252132],"delay":2044.2} +{"session_id":"sess-7c2b2c9b213e","input_length":937,"output_length":1180,"hash_ids":[1252133,1252134],"delay":1994.1} +{"session_id":"sess-7c2b2c9b213e","input_length":978,"output_length":75,"hash_ids":[1252135,1252136],"delay":2854.5} +{"session_id":"sess-7c2b2c9b213e","input_length":1649,"output_length":48,"hash_ids":[1252137,1252138,1252139,1252140],"delay":503.2} +{"session_id":"sess-7c2b2c9b213e","input_length":925,"output_length":1019,"hash_ids":[1252141,1252142],"delay":10001.9} +{"session_id":"sess-7c2b2c9b213e","input_length":132,"output_length":484,"hash_ids":[1252143],"delay":223.1} +{"session_id":"sess-7c2b2c9b213e","input_length":2791,"output_length":348,"hash_ids":[1252144,1252145,1252146,1252147,1252148,1252149],"delay":662.8} +{"session_id":"sess-7c2b2c9b213e","input_length":1881,"output_length":196,"hash_ids":[1252150,1252151,1252152,1252153],"delay":1152.7} +{"session_id":"sess-7c2b2c9b213e","input_length":4929,"output_length":722,"hash_ids":[1252154,1252155,1252156,1252157,1252158,1252159,1252160,1252161,1252162,1252163],"delay":665.5} +{"session_id":"sess-7c2b2c9b213e","input_length":173,"output_length":377,"hash_ids":[1252164],"delay":813.7} +{"session_id":"sess-7c2b2c9b213e","input_length":5751,"output_length":654,"hash_ids":[1252165,1252166,1252167,1252168,1252169,1252170,1252171,1252172,1252173,1252174,1252175,1252176],"delay":160.4} +{"session_id":"sess-7c2b2c9b213e","input_length":3890,"output_length":318,"hash_ids":[1252177,1252178,1252179,1252180,1252181,1252182,1252183,1252184],"delay":15871.0} +{"session_id":"sess-7c2b2c9b213e","input_length":3799,"output_length":1410,"hash_ids":[1252185,1252186,1252187,1252188,1252189,1252190,1252191,1252192],"delay":266.0} +{"session_id":"sess-7c2b2c9b213e","input_length":2992,"output_length":111,"hash_ids":[1252193,1252194,1252195,1252196,1252197,1252198],"delay":305.1} +{"session_id":"sess-7c2b2c9b213e","input_length":1986,"output_length":134,"hash_ids":[1252199,1252200,1252201,1252202],"delay":230.7} +{"session_id":"sess-7c2b2c9b213e","input_length":542,"output_length":1061,"hash_ids":[1252203,1252204],"delay":186.0} +{"session_id":"sess-0062da596ef3","input_length":55531,"output_length":247,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,1256063,1256064,1256065,1256066,1256067,1256068],"timestamp":0.0,"group_id":34} +{"session_id":"sess-0062da596ef3","input_length":3024,"output_length":1074,"hash_ids":[1256069,1256070,1256071,1256072,1256073,1256074],"delay":41455.3} +{"session_id":"sess-0062da596ef3","input_length":3709,"output_length":147,"hash_ids":[1256075,1256076,1256077,1256078,1256079,1256080,1256081,1256082],"delay":2068.7} +{"session_id":"sess-0062da596ef3","input_length":7678,"output_length":83,"hash_ids":[1256083,1256084,1256085,1256086,1256087,1256088,1256089,1256090,1256091,1256092,1256093,1256094,1256095,1256096,1256097],"delay":5565.4} +{"session_id":"sess-0062da596ef3","input_length":6629,"output_length":359,"hash_ids":[1256098,1256099,1256100,1256101,1256102,1256103,1256104,1256105,1256106,1256107,1256108,1256109,1256110],"delay":50236.8} +{"session_id":"sess-0062da596ef3","input_length":345,"output_length":434,"hash_ids":[1256111],"delay":1176.5} +{"session_id":"sess-0062da596ef3","input_length":2881,"output_length":1358,"hash_ids":[1256112,1256113,1256114,1256115,1256116,1256117],"delay":17385.5} +{"session_id":"sess-0062da596ef3","input_length":1348,"output_length":330,"hash_ids":[1256118,1256119,1256120],"delay":27812.2} +{"session_id":"sess-0062da596ef3","input_length":371,"output_length":130,"hash_ids":[1256121],"delay":2206.3} +{"session_id":"sess-0062da596ef3","input_length":6425,"output_length":328,"hash_ids":[1256122,1256123,1256124,1256125,1256126,1256127,1256128,1256129,1256130,1256131,1256132,1256133,1256134],"delay":788.9} +{"session_id":"sess-0062da596ef3","input_length":231,"output_length":971,"hash_ids":[1256135],"delay":494.7} +{"session_id":"sess-0062da596ef3","input_length":3876,"output_length":406,"hash_ids":[1256136,1256137,1256138,1256139,1256140,1256141,1256142,1256143],"delay":2406.4} +{"session_id":"sess-0062da596ef3","input_length":6264,"output_length":1858,"hash_ids":[1256144,1256145,1256146,1256147,1256148,1256149,1256150,1256151,1256152,1256153,1256154,1256155,1256156],"delay":27166.6} +{"session_id":"sess-0062da596ef3","input_length":426,"output_length":118,"hash_ids":[1256157],"delay":953.2} +{"session_id":"sess-0062da596ef3","input_length":387,"output_length":124,"hash_ids":[1256158],"delay":247.3} +{"session_id":"sess-0062da596ef3","input_length":3182,"output_length":368,"hash_ids":[1256159,1256160,1256161,1256162,1256163,1256164,1256165],"delay":406.2} +{"session_id":"sess-0062da596ef3","input_length":771,"output_length":1250,"hash_ids":[1256166,1256167],"delay":1482.7} +{"session_id":"sess-0062da596ef3","input_length":615,"output_length":100,"hash_ids":[1256168,1256169],"delay":5884.5} +{"session_id":"sess-0062da596ef3","input_length":121,"output_length":1108,"hash_ids":[1256170],"delay":660.0} +{"session_id":"sess-0062da596ef3","input_length":2618,"output_length":481,"hash_ids":[1256171,1256172,1256173,1256174,1256175,1256176],"delay":168.5} +{"session_id":"sess-0062da596ef3","input_length":1947,"output_length":675,"hash_ids":[1256177,1256178,1256179,1256180],"delay":26290.5} +{"session_id":"sess-eff970d2387a","input_length":57808,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1260063,1260064,1260065,1260066,1260067,1260068,1260069,1260070,1260071,1260072],"timestamp":0.0,"group_id":3} +{"session_id":"sess-eff970d2387a","input_length":3208,"output_length":517,"hash_ids":[1260073,1260074,1260075,1260076,1260077,1260078,1260079],"delay":498.7} +{"session_id":"sess-eff970d2387a","input_length":4137,"output_length":241,"hash_ids":[1260080,1260081,1260082,1260083,1260084,1260085,1260086,1260087,1260088],"delay":2811.8} +{"session_id":"sess-eff970d2387a","input_length":1787,"output_length":165,"hash_ids":[1260089,1260090,1260091,1260092],"delay":847.6} +{"session_id":"sess-eff970d2387a","input_length":2684,"output_length":30,"hash_ids":[1260093,1260094,1260095,1260096,1260097,1260098],"delay":1104.9} +{"session_id":"sess-eff970d2387a","input_length":1188,"output_length":686,"hash_ids":[1260099,1260100,1260101],"delay":1629.3} +{"session_id":"sess-eff970d2387a","input_length":2403,"output_length":826,"hash_ids":[1260102,1260103,1260104,1260105,1260106],"delay":2028.3} +{"session_id":"sess-eff970d2387a","input_length":1029,"output_length":48,"hash_ids":[1260107,1260108,1260109],"delay":506.5} +{"session_id":"sess-eff970d2387a","input_length":2159,"output_length":271,"hash_ids":[1260110,1260111,1260112,1260113,1260114],"delay":1568.7} +{"session_id":"sess-eff970d2387a","input_length":1386,"output_length":104,"hash_ids":[1260115,1260116,1260117],"delay":816.1} +{"session_id":"sess-eff970d2387a","input_length":7051,"output_length":386,"hash_ids":[1260118,1260119,1260120,1260121,1260122,1260123,1260124,1260125,1260126,1260127,1260128,1260129,1260130,1260131],"delay":14790.5} +{"session_id":"sess-eff970d2387a","input_length":3842,"output_length":665,"hash_ids":[1260132,1260133,1260134,1260135,1260136,1260137,1260138,1260139],"delay":402.2} +{"session_id":"sess-eff970d2387a","input_length":221,"output_length":197,"hash_ids":[1260140],"delay":693.6} +{"session_id":"sess-eff970d2387a","input_length":1506,"output_length":30,"hash_ids":[1260141,1260142,1260143],"delay":7076.9} +{"session_id":"sess-eff970d2387a","input_length":3334,"output_length":148,"hash_ids":[1260144,1260145,1260146,1260147,1260148,1260149,1260150],"delay":1183.1} +{"session_id":"sess-eff970d2387a","input_length":3662,"output_length":2007,"hash_ids":[1260151,1260152,1260153,1260154,1260155,1260156,1260157,1260158],"delay":1635.7} +{"session_id":"sess-eff970d2387a","input_length":1315,"output_length":235,"hash_ids":[1260159,1260160,1260161],"delay":488.4} +{"session_id":"sess-eff970d2387a","input_length":1238,"output_length":52,"hash_ids":[1260162,1260163,1260164],"delay":1612.5} +{"session_id":"sess-eff970d2387a","input_length":238,"output_length":419,"hash_ids":[1260165],"delay":3958.0} +{"session_id":"sess-eff970d2387a","input_length":1611,"output_length":111,"hash_ids":[1260166,1260167,1260168,1260169],"delay":280.4} +{"session_id":"sess-eff970d2387a","input_length":3153,"output_length":106,"hash_ids":[1260170,1260171,1260172,1260173,1260174,1260175,1260176],"delay":2051.3} +{"session_id":"sess-eff970d2387a","input_length":1584,"output_length":1027,"hash_ids":[1260177,1260178,1260179,1260180],"delay":2471.1} +{"session_id":"sess-eff970d2387a","input_length":685,"output_length":76,"hash_ids":[1260181,1260182],"delay":773.2} +{"session_id":"sess-eff970d2387a","input_length":1691,"output_length":969,"hash_ids":[1260183,1260184,1260185,1260186],"delay":838.0} +{"session_id":"sess-eff970d2387a","input_length":3729,"output_length":87,"hash_ids":[1260187,1260188,1260189,1260190,1260191,1260192,1260193,1260194],"delay":14054.6} +{"session_id":"sess-eff970d2387a","input_length":1701,"output_length":35,"hash_ids":[1260195,1260196,1260197,1260198],"delay":8337.9} +{"session_id":"sess-eff970d2387a","input_length":1040,"output_length":116,"hash_ids":[1260199,1260200,1260201],"delay":256.7} +{"session_id":"sess-eff970d2387a","input_length":4806,"output_length":674,"hash_ids":[1260202,1260203,1260204,1260205,1260206,1260207,1260208,1260209,1260210,1260211],"delay":10987.3} +{"session_id":"sess-79ae296f0426","input_length":54400,"output_length":183,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,1264063,1264064,1264065,1264066],"timestamp":0.0,"group_id":33} +{"session_id":"sess-79ae296f0426","input_length":5333,"output_length":55,"hash_ids":[1264067,1264068,1264069,1264070,1264071,1264072,1264073,1264074,1264075,1264076,1264077],"delay":1167.5} +{"session_id":"sess-79ae296f0426","input_length":2959,"output_length":305,"hash_ids":[1264078,1264079,1264080,1264081,1264082,1264083],"delay":496.9} +{"session_id":"sess-79ae296f0426","input_length":1788,"output_length":207,"hash_ids":[1264084,1264085,1264086,1264087],"delay":1254.0} +{"session_id":"sess-79ae296f0426","input_length":2887,"output_length":235,"hash_ids":[1264088,1264089,1264090,1264091,1264092,1264093],"delay":218.7} +{"session_id":"sess-79ae296f0426","input_length":2327,"output_length":166,"hash_ids":[1264094,1264095,1264096,1264097,1264098],"delay":326.4} +{"session_id":"sess-79ae296f0426","input_length":1330,"output_length":261,"hash_ids":[1264099,1264100,1264101],"delay":1692.1} +{"session_id":"sess-79ae296f0426","input_length":683,"output_length":309,"hash_ids":[1264102,1264103],"delay":872.8} +{"session_id":"sess-79ae296f0426","input_length":579,"output_length":312,"hash_ids":[1264104,1264105],"delay":14092.7} +{"session_id":"sess-79ae296f0426","input_length":694,"output_length":188,"hash_ids":[1264106,1264107],"delay":50985.2} +{"session_id":"sess-79ae296f0426","input_length":4223,"output_length":777,"hash_ids":[1264108,1264109,1264110,1264111,1264112,1264113,1264114,1264115,1264116],"delay":1269.7} +{"session_id":"sess-79ae296f0426","input_length":923,"output_length":155,"hash_ids":[1264117,1264118],"delay":4049.0} +{"session_id":"sess-79ae296f0426","input_length":770,"output_length":99,"hash_ids":[1264119,1264120],"delay":753.3} +{"session_id":"sess-79ae296f0426","input_length":935,"output_length":122,"hash_ids":[1264121,1264122],"delay":12410.5} +{"session_id":"sess-79ae296f0426","input_length":91,"output_length":52,"hash_ids":[1264123],"delay":784.5} +{"session_id":"sess-79ae296f0426","input_length":579,"output_length":285,"hash_ids":[1264124,1264125],"delay":5113.3} +{"session_id":"sess-79ae296f0426","input_length":1397,"output_length":482,"hash_ids":[1264126,1264127,1264128],"delay":907.2} +{"session_id":"sess-79ae296f0426","input_length":1567,"output_length":641,"hash_ids":[1264129,1264130,1264131,1264132],"delay":1419.7} +{"session_id":"sess-79ae296f0426","input_length":2636,"output_length":30,"hash_ids":[1264133,1264134,1264135,1264136,1264137,1264138],"delay":629.7} +{"session_id":"sess-79ae296f0426","input_length":4952,"output_length":30,"hash_ids":[1264139,1264140,1264141,1264142,1264143,1264144,1264145,1264146,1264147,1264148],"delay":688.3} +{"session_id":"sess-79ae296f0426","input_length":549,"output_length":359,"hash_ids":[1264149,1264150],"delay":16043.3} +{"session_id":"sess-79ae296f0426","input_length":2761,"output_length":130,"hash_ids":[1264151,1264152,1264153,1264154,1264155,1264156],"delay":15785.2} +{"session_id":"sess-79ae296f0426","input_length":521,"output_length":167,"hash_ids":[1264157,1264158],"delay":7833.7} +{"session_id":"sess-79ae296f0426","input_length":262,"output_length":247,"hash_ids":[1264159],"delay":754.6} +{"session_id":"sess-79ae296f0426","input_length":1283,"output_length":68,"hash_ids":[1264160,1264161,1264162],"delay":235.4} +{"session_id":"sess-79ae296f0426","input_length":4921,"output_length":218,"hash_ids":[1264163,1264164,1264165,1264166,1264167,1264168,1264169,1264170,1264171,1264172],"delay":3347.5} +{"session_id":"sess-79ae296f0426","input_length":796,"output_length":890,"hash_ids":[1264173,1264174],"delay":12405.6} +{"session_id":"sess-5d0524832df3","input_length":56175,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1268063,1268064,1268065,1268066,1268067,1268068,1268069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5d0524832df3","input_length":2475,"output_length":68,"hash_ids":[1268070,1268071,1268072,1268073,1268074],"delay":36049.8} +{"session_id":"sess-5d0524832df3","input_length":101,"output_length":249,"hash_ids":[1268075],"delay":1304.1} +{"session_id":"sess-5d0524832df3","input_length":569,"output_length":633,"hash_ids":[1268076,1268077],"delay":1628.1} +{"session_id":"sess-5d0524832df3","input_length":584,"output_length":536,"hash_ids":[1268078,1268079],"delay":690.0} +{"session_id":"sess-5d0524832df3","input_length":2053,"output_length":1103,"hash_ids":[1268080,1268081,1268082,1268083,1268084],"delay":3442.6} +{"session_id":"sess-5d0524832df3","input_length":267,"output_length":143,"hash_ids":[1268085],"delay":599.0} +{"session_id":"sess-5d0524832df3","input_length":1888,"output_length":597,"hash_ids":[1268086,1268087,1268088,1268089],"delay":4729.8} +{"session_id":"sess-5d0524832df3","input_length":6136,"output_length":120,"hash_ids":[1268090,1268091,1268092,1268093,1268094,1268095,1268096,1268097,1268098,1268099,1268100,1268101],"delay":983.0} +{"session_id":"sess-5d0524832df3","input_length":2557,"output_length":1982,"hash_ids":[1268102,1268103,1268104,1268105,1268106],"delay":1133.6} +{"session_id":"sess-5d0524832df3","input_length":1874,"output_length":145,"hash_ids":[1268107,1268108,1268109,1268110],"delay":509.1} +{"session_id":"sess-5d0524832df3","input_length":845,"output_length":54,"hash_ids":[1268111,1268112],"delay":650.9} +{"session_id":"sess-5d0524832df3","input_length":5149,"output_length":379,"hash_ids":[1268113,1268114,1268115,1268116,1268117,1268118,1268119,1268120,1268121,1268122,1268123],"delay":3791.1} +{"session_id":"sess-5d0524832df3","input_length":5285,"output_length":377,"hash_ids":[1268124,1268125,1268126,1268127,1268128,1268129,1268130,1268131,1268132,1268133,1268134],"delay":307.0} +{"session_id":"sess-5d0524832df3","input_length":1531,"output_length":161,"hash_ids":[1268135,1268136,1268137],"delay":605.5} +{"session_id":"sess-5d0524832df3","input_length":4919,"output_length":105,"hash_ids":[1268138,1268139,1268140,1268141,1268142,1268143,1268144,1268145,1268146,1268147],"delay":47754.6} +{"session_id":"sess-5d0524832df3","input_length":1391,"output_length":642,"hash_ids":[1268148,1268149,1268150],"delay":1680.2} +{"session_id":"sess-5d0524832df3","input_length":3637,"output_length":311,"hash_ids":[1268151,1268152,1268153,1268154,1268155,1268156,1268157,1268158],"delay":153.8} +{"session_id":"sess-5d0524832df3","input_length":816,"output_length":307,"hash_ids":[1268159,1268160],"delay":2012.7} +{"session_id":"sess-5d0524832df3","input_length":5299,"output_length":713,"hash_ids":[1268161,1268162,1268163,1268164,1268165,1268166,1268167,1268168,1268169,1268170,1268171],"delay":1145.5} +{"session_id":"sess-5d0524832df3","input_length":5370,"output_length":508,"hash_ids":[1268172,1268173,1268174,1268175,1268176,1268177,1268178,1268179,1268180,1268181,1268182],"delay":815.8} +{"session_id":"sess-5d0524832df3","input_length":786,"output_length":716,"hash_ids":[1268183,1268184],"delay":14669.2} +{"session_id":"sess-5d0524832df3","input_length":2239,"output_length":1757,"hash_ids":[1268185,1268186,1268187,1268188,1268189],"delay":443.9} +{"session_id":"sess-e5093c959a1d","input_length":54312,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,1272063,1272064,1272065,1272066],"timestamp":0.0,"group_id":28} +{"session_id":"sess-e5093c959a1d","input_length":636,"output_length":220,"hash_ids":[1272067,1272068],"delay":4070.3} +{"session_id":"sess-d9686a1118bb","input_length":58243,"output_length":450,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,1276063,1276064,1276065,1276066,1276067,1276068,1276069,1276070,1276071,1276072,1276073],"timestamp":0.0,"group_id":16} +{"session_id":"sess-d9686a1118bb","input_length":2038,"output_length":464,"hash_ids":[1276074,1276075,1276076,1276077],"delay":626.3} +{"session_id":"sess-d9686a1118bb","input_length":1321,"output_length":649,"hash_ids":[1276078,1276079,1276080],"delay":1215.9} +{"session_id":"sess-d9686a1118bb","input_length":3400,"output_length":1280,"hash_ids":[1276081,1276082,1276083,1276084,1276085,1276086,1276087],"delay":841.0} +{"session_id":"sess-d9686a1118bb","input_length":496,"output_length":221,"hash_ids":[1276088],"delay":1350.0} +{"session_id":"sess-d9686a1118bb","input_length":270,"output_length":294,"hash_ids":[1276089],"delay":14380.5} +{"session_id":"sess-d9686a1118bb","input_length":375,"output_length":1743,"hash_ids":[1276090],"delay":203.3} +{"session_id":"sess-d9686a1118bb","input_length":176,"output_length":359,"hash_ids":[1276091],"delay":14754.4} +{"session_id":"sess-d9686a1118bb","input_length":5118,"output_length":197,"hash_ids":[1276092,1276093,1276094,1276095,1276096,1276097,1276098,1276099,1276100,1276101],"delay":14542.4} +{"session_id":"sess-d9686a1118bb","input_length":5535,"output_length":220,"hash_ids":[1276102,1276103,1276104,1276105,1276106,1276107,1276108,1276109,1276110,1276111,1276112],"delay":30317.6} +{"session_id":"sess-d9686a1118bb","input_length":820,"output_length":63,"hash_ids":[1276113,1276114],"delay":826.4} +{"session_id":"sess-d9686a1118bb","input_length":4226,"output_length":324,"hash_ids":[1276115,1276116,1276117,1276118,1276119,1276120,1276121,1276122,1276123],"delay":855.3} +{"session_id":"sess-d9686a1118bb","input_length":3606,"output_length":251,"hash_ids":[1276124,1276125,1276126,1276127,1276128,1276129,1276130,1276131],"delay":741.2} +{"session_id":"sess-d9686a1118bb","input_length":1338,"output_length":282,"hash_ids":[1276132,1276133,1276134],"delay":3955.6} +{"session_id":"sess-d9686a1118bb","input_length":932,"output_length":1680,"hash_ids":[1276135,1276136],"delay":295.5} +{"session_id":"sess-d9686a1118bb","input_length":1383,"output_length":382,"hash_ids":[1276137,1276138,1276139],"delay":267.9} +{"session_id":"sess-d9686a1118bb","input_length":198,"output_length":112,"hash_ids":[1276140],"delay":1630.3} +{"session_id":"sess-d9686a1118bb","input_length":1605,"output_length":495,"hash_ids":[1276141,1276142,1276143,1276144],"delay":391.5} +{"session_id":"sess-d9686a1118bb","input_length":2542,"output_length":194,"hash_ids":[1276145,1276146,1276147,1276148,1276149],"delay":13365.6} +{"session_id":"sess-d9686a1118bb","input_length":898,"output_length":1820,"hash_ids":[1276150,1276151],"delay":466.2} +{"session_id":"sess-d9686a1118bb","input_length":1936,"output_length":288,"hash_ids":[1276152,1276153,1276154,1276155],"delay":6004.4} +{"session_id":"sess-d9686a1118bb","input_length":968,"output_length":705,"hash_ids":[1276156,1276157],"delay":2994.6} +{"session_id":"sess-d9686a1118bb","input_length":1420,"output_length":116,"hash_ids":[1276158,1276159,1276160],"delay":11665.3} +{"session_id":"sess-d9686a1118bb","input_length":2136,"output_length":233,"hash_ids":[1276161,1276162,1276163,1276164,1276165],"delay":221.6} +{"session_id":"sess-d9686a1118bb","input_length":4603,"output_length":319,"hash_ids":[1276166,1276167,1276168,1276169,1276170,1276171,1276172,1276173,1276174],"delay":23374.4} +{"session_id":"sess-d9686a1118bb","input_length":1627,"output_length":132,"hash_ids":[1276175,1276176,1276177,1276178],"delay":28214.4} +{"session_id":"sess-d9686a1118bb","input_length":881,"output_length":168,"hash_ids":[1276179,1276180],"delay":381.1} +{"session_id":"sess-d9686a1118bb","input_length":2459,"output_length":1516,"hash_ids":[1276181,1276182,1276183,1276184,1276185],"delay":573.2} +{"session_id":"sess-04b1c39b6833","input_length":58721,"output_length":261,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1280063,1280064,1280065,1280066,1280067,1280068,1280069,1280070,1280071,1280072,1280073,1280074],"timestamp":0.0,"group_id":0} +{"session_id":"sess-04b1c39b6833","input_length":1321,"output_length":274,"hash_ids":[1280075,1280076,1280077],"delay":798.3} +{"session_id":"sess-04b1c39b6833","input_length":8643,"output_length":264,"hash_ids":[1280078,1280079,1280080,1280081,1280082,1280083,1280084,1280085,1280086,1280087,1280088,1280089,1280090,1280091,1280092,1280093,1280094],"delay":1035.2} +{"session_id":"sess-04b1c39b6833","input_length":8364,"output_length":902,"hash_ids":[1280095,1280096,1280097,1280098,1280099,1280100,1280101,1280102,1280103,1280104,1280105,1280106,1280107,1280108,1280109,1280110,1280111],"delay":3412.9} +{"session_id":"sess-04b1c39b6833","input_length":668,"output_length":789,"hash_ids":[1280112,1280113],"delay":1932.0} +{"session_id":"sess-04b1c39b6833","input_length":927,"output_length":226,"hash_ids":[1280114,1280115],"delay":2561.8} +{"session_id":"sess-04b1c39b6833","input_length":272,"output_length":69,"hash_ids":[1280116],"delay":376.7} +{"session_id":"sess-04b1c39b6833","input_length":625,"output_length":139,"hash_ids":[1280117,1280118],"delay":692.3} +{"session_id":"sess-04b1c39b6833","input_length":5815,"output_length":103,"hash_ids":[1280119,1280120,1280121,1280122,1280123,1280124,1280125,1280126,1280127,1280128,1280129,1280130],"delay":22528.0} +{"session_id":"sess-04b1c39b6833","input_length":1420,"output_length":81,"hash_ids":[1280131,1280132,1280133],"delay":1413.0} +{"session_id":"sess-04b1c39b6833","input_length":1630,"output_length":300,"hash_ids":[1280134,1280135,1280136,1280137],"delay":1899.0} +{"session_id":"sess-04b1c39b6833","input_length":9695,"output_length":334,"hash_ids":[1280138,1280139,1280140,1280141,1280142,1280143,1280144,1280145,1280146,1280147,1280148,1280149,1280150,1280151,1280152,1280153,1280154,1280155,1280156],"delay":7115.1} +{"session_id":"sess-04b1c39b6833","input_length":866,"output_length":184,"hash_ids":[1280157,1280158],"delay":14363.2} +{"session_id":"sess-04b1c39b6833","input_length":1835,"output_length":646,"hash_ids":[1280159,1280160,1280161,1280162],"delay":175.9} +{"session_id":"sess-04b1c39b6833","input_length":1226,"output_length":85,"hash_ids":[1280163,1280164,1280165],"delay":523.1} +{"session_id":"sess-04b1c39b6833","input_length":1511,"output_length":514,"hash_ids":[1280166,1280167,1280168],"delay":391.7} +{"session_id":"sess-04b1c39b6833","input_length":1720,"output_length":182,"hash_ids":[1280169,1280170,1280171,1280172],"delay":1499.5} +{"session_id":"sess-04b1c39b6833","input_length":6068,"output_length":422,"hash_ids":[1280173,1280174,1280175,1280176,1280177,1280178,1280179,1280180,1280181,1280182,1280183,1280184],"delay":5017.9} +{"session_id":"sess-04b1c39b6833","input_length":5522,"output_length":60,"hash_ids":[1280185,1280186,1280187,1280188,1280189,1280190,1280191,1280192,1280193,1280194,1280195],"delay":545.7} +{"session_id":"sess-04b1c39b6833","input_length":1091,"output_length":90,"hash_ids":[1280196,1280197,1280198],"delay":991.4} +{"session_id":"sess-04b1c39b6833","input_length":950,"output_length":355,"hash_ids":[1280199,1280200],"delay":402.6} +{"session_id":"sess-04b1c39b6833","input_length":2307,"output_length":507,"hash_ids":[1280201,1280202,1280203,1280204,1280205],"delay":1330.9} +{"session_id":"sess-9b0c77c777a9","input_length":54466,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1284063,1284064,1284065,1284066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9b0c77c777a9","input_length":2810,"output_length":1922,"hash_ids":[1284067,1284068,1284069,1284070,1284071,1284072],"delay":29188.3} +{"session_id":"sess-9b0c77c777a9","input_length":2659,"output_length":223,"hash_ids":[1284073,1284074,1284075,1284076,1284077,1284078],"delay":24507.0} +{"session_id":"sess-7598999b3c60","input_length":74634,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1288063,1288064,1288065,1288066,1288067,1288068,1288069,1288070,1288071,1288072,1288073,1288074,1288075,1288076,1288077,1288078,1288079,1288080,1288081,1288082,1288083,1288084,1288085,1288086,1288087,1288088,1288089,1288090,1288091,1288092,1288093,1288094,1288095,1288096,1288097,1288098,1288099,1288100,1288101,1288102,1288103,1288104,1288105],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7598999b3c60","input_length":3208,"output_length":447,"hash_ids":[1288106,1288107,1288108,1288109,1288110,1288111,1288112],"delay":3702.9} +{"session_id":"sess-7598999b3c60","input_length":874,"output_length":310,"hash_ids":[1288113,1288114],"delay":760.8} +{"session_id":"sess-7598999b3c60","input_length":3008,"output_length":134,"hash_ids":[1288115,1288116,1288117,1288118,1288119,1288120],"delay":1482.5} +{"session_id":"sess-7598999b3c60","input_length":2949,"output_length":333,"hash_ids":[1288121,1288122,1288123,1288124,1288125,1288126],"delay":640.9} +{"session_id":"sess-7598999b3c60","input_length":2369,"output_length":516,"hash_ids":[1288127,1288128,1288129,1288130,1288131],"delay":1025.5} +{"session_id":"sess-7598999b3c60","input_length":749,"output_length":358,"hash_ids":[1288132,1288133],"delay":3137.8} +{"session_id":"sess-7598999b3c60","input_length":7642,"output_length":331,"hash_ids":[1288134,1288135,1288136,1288137,1288138,1288139,1288140,1288141,1288142,1288143,1288144,1288145,1288146,1288147,1288148],"delay":17747.5} +{"session_id":"sess-7598999b3c60","input_length":1908,"output_length":1054,"hash_ids":[1288149,1288150,1288151,1288152],"delay":749.3} +{"session_id":"sess-7598999b3c60","input_length":648,"output_length":617,"hash_ids":[1288153,1288154],"delay":6549.9} +{"session_id":"sess-7598999b3c60","input_length":925,"output_length":129,"hash_ids":[1288155,1288156],"delay":4984.9} +{"session_id":"sess-7598999b3c60","input_length":505,"output_length":457,"hash_ids":[1288157],"delay":925.3} +{"session_id":"sess-7598999b3c60","input_length":4440,"output_length":1545,"hash_ids":[1288158,1288159,1288160,1288161,1288162,1288163,1288164,1288165,1288166],"delay":2325.4} +{"session_id":"sess-7598999b3c60","input_length":2230,"output_length":374,"hash_ids":[1288167,1288168,1288169,1288170,1288171],"delay":2162.5} +{"session_id":"sess-7598999b3c60","input_length":3349,"output_length":133,"hash_ids":[1288172,1288173,1288174,1288175,1288176,1288177,1288178],"delay":860.0} +{"session_id":"sess-7598999b3c60","input_length":7947,"output_length":108,"hash_ids":[1288179,1288180,1288181,1288182,1288183,1288184,1288185,1288186,1288187,1288188,1288189,1288190,1288191,1288192,1288193,1288194],"delay":530.4} +{"session_id":"sess-7598999b3c60","input_length":2544,"output_length":497,"hash_ids":[1288195,1288196,1288197,1288198,1288199],"delay":40.0} +{"session_id":"sess-7598999b3c60","input_length":368,"output_length":106,"hash_ids":[1288200],"delay":608.1} +{"session_id":"sess-a8385bcfca7a","input_length":53696,"output_length":592,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1292063,1292064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a8385bcfca7a","input_length":488,"output_length":387,"hash_ids":[1292065],"delay":2097.0} +{"session_id":"sess-a8385bcfca7a","input_length":2383,"output_length":346,"hash_ids":[1292066,1292067,1292068,1292069,1292070],"delay":1112.8} +{"session_id":"sess-a8385bcfca7a","input_length":3204,"output_length":1129,"hash_ids":[1292071,1292072,1292073,1292074,1292075,1292076,1292077],"delay":497.5} +{"session_id":"sess-a8385bcfca7a","input_length":1553,"output_length":684,"hash_ids":[1292078,1292079,1292080,1292081],"delay":486.5} +{"session_id":"sess-a8385bcfca7a","input_length":1411,"output_length":314,"hash_ids":[1292082,1292083,1292084],"delay":373.2} +{"session_id":"sess-80c6021fce3d","input_length":55874,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1296063,1296064,1296065,1296066,1296067,1296068,1296069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-80c6021fce3d","input_length":3632,"output_length":315,"hash_ids":[1296070,1296071,1296072,1296073,1296074,1296075,1296076,1296077],"delay":659.7} +{"session_id":"sess-80c6021fce3d","input_length":7633,"output_length":33,"hash_ids":[1296078,1296079,1296080,1296081,1296082,1296083,1296084,1296085,1296086,1296087,1296088,1296089,1296090,1296091,1296092],"delay":1035.2} +{"session_id":"sess-80c6021fce3d","input_length":82,"output_length":740,"hash_ids":[1296093],"delay":2291.8} +{"session_id":"sess-80c6021fce3d","input_length":2325,"output_length":353,"hash_ids":[1296094,1296095,1296096,1296097,1296098],"delay":34964.3} +{"session_id":"sess-80c6021fce3d","input_length":558,"output_length":572,"hash_ids":[1296099,1296100],"delay":2108.5} +{"session_id":"sess-80c6021fce3d","input_length":1829,"output_length":164,"hash_ids":[1296101,1296102,1296103,1296104],"delay":34688.7} +{"session_id":"sess-80c6021fce3d","input_length":349,"output_length":439,"hash_ids":[1296105],"delay":260.8} +{"session_id":"sess-80c6021fce3d","input_length":1068,"output_length":785,"hash_ids":[1296106,1296107,1296108],"delay":448.0} +{"session_id":"sess-80c6021fce3d","input_length":1014,"output_length":648,"hash_ids":[1296109,1296110],"delay":440.5} +{"session_id":"sess-80c6021fce3d","input_length":2260,"output_length":76,"hash_ids":[1296111,1296112,1296113,1296114,1296115],"delay":721.3} +{"session_id":"sess-80c6021fce3d","input_length":579,"output_length":291,"hash_ids":[1296116,1296117],"delay":24538.2} +{"session_id":"sess-418a908a1091","input_length":52825,"output_length":415,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,1300063],"timestamp":0.0,"group_id":20} +{"session_id":"sess-418a908a1091","input_length":709,"output_length":251,"hash_ids":[1300064,1300065],"delay":2270.3} +{"session_id":"sess-418a908a1091","input_length":6510,"output_length":175,"hash_ids":[1300066,1300067,1300068,1300069,1300070,1300071,1300072,1300073,1300074,1300075,1300076,1300077,1300078],"delay":2436.1} +{"session_id":"sess-418a908a1091","input_length":672,"output_length":104,"hash_ids":[1300079,1300080],"delay":1162.6} +{"session_id":"sess-418a908a1091","input_length":3904,"output_length":240,"hash_ids":[1300081,1300082,1300083,1300084,1300085,1300086,1300087,1300088],"delay":22365.1} +{"session_id":"sess-418a908a1091","input_length":3214,"output_length":77,"hash_ids":[1300089,1300090,1300091,1300092,1300093,1300094,1300095],"delay":644.1} +{"session_id":"sess-418a908a1091","input_length":891,"output_length":30,"hash_ids":[1300096,1300097],"delay":1630.9} +{"session_id":"sess-418a908a1091","input_length":5114,"output_length":70,"hash_ids":[1300098,1300099,1300100,1300101,1300102,1300103,1300104,1300105,1300106,1300107],"delay":3878.4} +{"session_id":"sess-8f098f6a6540","input_length":57146,"output_length":864,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1304063,1304064,1304065,1304066,1304067,1304068,1304069,1304070,1304071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8f098f6a6540","input_length":786,"output_length":1012,"hash_ids":[1304072,1304073],"delay":15771.3} +{"session_id":"sess-8f098f6a6540","input_length":5331,"output_length":186,"hash_ids":[1304074,1304075,1304076,1304077,1304078,1304079,1304080,1304081,1304082,1304083,1304084],"delay":28184.2} +{"session_id":"sess-8f098f6a6540","input_length":367,"output_length":519,"hash_ids":[1304085],"delay":5062.3} +{"session_id":"sess-8f098f6a6540","input_length":851,"output_length":288,"hash_ids":[1304086,1304087],"delay":30203.7} +{"session_id":"sess-8f098f6a6540","input_length":2321,"output_length":93,"hash_ids":[1304088,1304089,1304090,1304091,1304092],"delay":1528.0} +{"session_id":"sess-8f098f6a6540","input_length":4438,"output_length":1047,"hash_ids":[1304093,1304094,1304095,1304096,1304097,1304098,1304099,1304100,1304101],"delay":12111.4} +{"session_id":"sess-8f098f6a6540","input_length":4838,"output_length":1060,"hash_ids":[1304102,1304103,1304104,1304105,1304106,1304107,1304108,1304109,1304110,1304111],"delay":917.0} +{"session_id":"sess-8f098f6a6540","input_length":2862,"output_length":510,"hash_ids":[1304112,1304113,1304114,1304115,1304116,1304117],"delay":4857.1} +{"session_id":"sess-8f098f6a6540","input_length":3058,"output_length":754,"hash_ids":[1304118,1304119,1304120,1304121,1304122,1304123],"delay":43935.3} +{"session_id":"sess-8f098f6a6540","input_length":4284,"output_length":145,"hash_ids":[1304124,1304125,1304126,1304127,1304128,1304129,1304130,1304131,1304132],"delay":19284.9} +{"session_id":"sess-8f098f6a6540","input_length":1002,"output_length":208,"hash_ids":[1304133,1304134],"delay":43917.4} +{"session_id":"sess-8f098f6a6540","input_length":4661,"output_length":686,"hash_ids":[1304135,1304136,1304137,1304138,1304139,1304140,1304141,1304142,1304143,1304144],"delay":3918.8} +{"session_id":"sess-8f098f6a6540","input_length":5910,"output_length":46,"hash_ids":[1304145,1304146,1304147,1304148,1304149,1304150,1304151,1304152,1304153,1304154,1304155,1304156],"delay":7844.4} +{"session_id":"sess-8f098f6a6540","input_length":924,"output_length":631,"hash_ids":[1304157,1304158],"delay":567.3} +{"session_id":"sess-8f098f6a6540","input_length":2654,"output_length":1208,"hash_ids":[1304159,1304160,1304161,1304162,1304163,1304164],"delay":490.9} +{"session_id":"sess-8f098f6a6540","input_length":613,"output_length":101,"hash_ids":[1304165,1304166],"delay":2999.6} +{"session_id":"sess-8f098f6a6540","input_length":745,"output_length":122,"hash_ids":[1304167,1304168],"delay":4343.8} +{"session_id":"sess-8f098f6a6540","input_length":1122,"output_length":644,"hash_ids":[1304169,1304170,1304171],"delay":2449.5} +{"session_id":"sess-8f098f6a6540","input_length":539,"output_length":411,"hash_ids":[1304172,1304173],"delay":773.9} +{"session_id":"sess-8f098f6a6540","input_length":3181,"output_length":485,"hash_ids":[1304174,1304175,1304176,1304177,1304178,1304179,1304180],"delay":33160.5} +{"session_id":"sess-8f098f6a6540","input_length":1133,"output_length":839,"hash_ids":[1304181,1304182,1304183],"delay":8585.2} +{"session_id":"sess-8f098f6a6540","input_length":317,"output_length":723,"hash_ids":[1304184],"delay":4094.5} +{"session_id":"sess-8f098f6a6540","input_length":828,"output_length":835,"hash_ids":[1304185,1304186],"delay":447.3} +{"session_id":"sess-8f098f6a6540","input_length":2082,"output_length":298,"hash_ids":[1304187,1304188,1304189,1304190,1304191],"delay":270.0} +{"session_id":"sess-8f098f6a6540","input_length":1904,"output_length":705,"hash_ids":[1304192,1304193,1304194,1304195],"delay":121.8} +{"session_id":"sess-ee76b8afc1d4","input_length":58908,"output_length":494,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1308063,1308064,1308065,1308066,1308067,1308068,1308069,1308070,1308071,1308072,1308073,1308074,1308075],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ee76b8afc1d4","input_length":1809,"output_length":1729,"hash_ids":[1308076,1308077,1308078,1308079],"delay":15506.0} +{"session_id":"sess-ee76b8afc1d4","input_length":2681,"output_length":257,"hash_ids":[1308080,1308081,1308082,1308083,1308084,1308085],"delay":307.2} +{"session_id":"sess-ee76b8afc1d4","input_length":815,"output_length":1368,"hash_ids":[1308086,1308087],"delay":2420.2} +{"session_id":"sess-ee76b8afc1d4","input_length":6012,"output_length":487,"hash_ids":[1308088,1308089,1308090,1308091,1308092,1308093,1308094,1308095,1308096,1308097,1308098,1308099],"delay":2707.6} +{"session_id":"sess-ee76b8afc1d4","input_length":4547,"output_length":436,"hash_ids":[1308100,1308101,1308102,1308103,1308104,1308105,1308106,1308107,1308108],"delay":1770.8} +{"session_id":"sess-ee76b8afc1d4","input_length":4725,"output_length":93,"hash_ids":[1308109,1308110,1308111,1308112,1308113,1308114,1308115,1308116,1308117,1308118],"delay":618.9} +{"session_id":"sess-ee76b8afc1d4","input_length":9287,"output_length":1690,"hash_ids":[1308119,1308120,1308121,1308122,1308123,1308124,1308125,1308126,1308127,1308128,1308129,1308130,1308131,1308132,1308133,1308134,1308135,1308136,1308137],"delay":396.5} +{"session_id":"sess-ee76b8afc1d4","input_length":292,"output_length":305,"hash_ids":[1308138],"delay":205.8} +{"session_id":"sess-ee76b8afc1d4","input_length":2672,"output_length":38,"hash_ids":[1308139,1308140,1308141,1308142,1308143,1308144],"delay":145.0} +{"session_id":"sess-ee76b8afc1d4","input_length":1946,"output_length":695,"hash_ids":[1308145,1308146,1308147,1308148],"delay":1641.5} +{"session_id":"sess-d4e9cbbe8985","input_length":56535,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1312063,1312064,1312065,1312066,1312067,1312068,1312069,1312070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d4e9cbbe8985","input_length":1080,"output_length":269,"hash_ids":[1312071,1312072,1312073],"delay":495.0} +{"session_id":"sess-d4e9cbbe8985","input_length":1127,"output_length":910,"hash_ids":[1312074,1312075,1312076],"delay":6240.7} +{"session_id":"sess-d4e9cbbe8985","input_length":3312,"output_length":30,"hash_ids":[1312077,1312078,1312079,1312080,1312081,1312082,1312083],"delay":746.5} +{"session_id":"sess-d4e9cbbe8985","input_length":291,"output_length":561,"hash_ids":[1312084],"delay":1786.8} +{"session_id":"sess-d4e9cbbe8985","input_length":3477,"output_length":213,"hash_ids":[1312085,1312086,1312087,1312088,1312089,1312090,1312091],"delay":56642.5} +{"session_id":"sess-d4e9cbbe8985","input_length":3690,"output_length":185,"hash_ids":[1312092,1312093,1312094,1312095,1312096,1312097,1312098,1312099],"delay":358.4} +{"session_id":"sess-d4e9cbbe8985","input_length":785,"output_length":272,"hash_ids":[1312100,1312101],"delay":862.8} +{"session_id":"sess-d4e9cbbe8985","input_length":611,"output_length":448,"hash_ids":[1312102,1312103],"delay":884.7} +{"session_id":"sess-d374b7d13322","input_length":53709,"output_length":245,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1316063,1316064],"timestamp":0.0,"group_id":7} +{"session_id":"sess-d374b7d13322","input_length":1175,"output_length":167,"hash_ids":[1316065,1316066,1316067],"delay":12630.5} +{"session_id":"sess-4691095612a4","input_length":54148,"output_length":470,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1320063,1320064,1320065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4691095612a4","input_length":2184,"output_length":828,"hash_ids":[1320066,1320067,1320068,1320069,1320070],"delay":629.9} +{"session_id":"sess-4691095612a4","input_length":1975,"output_length":150,"hash_ids":[1320071,1320072,1320073,1320074],"delay":12654.0} +{"session_id":"sess-4691095612a4","input_length":405,"output_length":657,"hash_ids":[1320075],"delay":922.6} +{"session_id":"sess-4691095612a4","input_length":676,"output_length":84,"hash_ids":[1320076,1320077],"delay":658.4} +{"session_id":"sess-4691095612a4","input_length":1115,"output_length":1030,"hash_ids":[1320078,1320079,1320080],"delay":18170.2} +{"session_id":"sess-4691095612a4","input_length":1785,"output_length":250,"hash_ids":[1320081,1320082,1320083,1320084],"delay":632.2} +{"session_id":"sess-4691095612a4","input_length":378,"output_length":884,"hash_ids":[1320085],"delay":1503.0} +{"session_id":"sess-4691095612a4","input_length":607,"output_length":180,"hash_ids":[1320086,1320087],"delay":321.9} +{"session_id":"sess-4691095612a4","input_length":5168,"output_length":604,"hash_ids":[1320088,1320089,1320090,1320091,1320092,1320093,1320094,1320095,1320096,1320097,1320098],"delay":617.1} +{"session_id":"sess-4691095612a4","input_length":3686,"output_length":338,"hash_ids":[1320099,1320100,1320101,1320102,1320103,1320104,1320105,1320106],"delay":7986.6} +{"session_id":"sess-4691095612a4","input_length":1247,"output_length":134,"hash_ids":[1320107,1320108,1320109],"delay":4755.9} +{"session_id":"sess-4691095612a4","input_length":5002,"output_length":144,"hash_ids":[1320110,1320111,1320112,1320113,1320114,1320115,1320116,1320117,1320118,1320119],"delay":130.9} +{"session_id":"sess-4691095612a4","input_length":802,"output_length":380,"hash_ids":[1320120,1320121],"delay":522.6} +{"session_id":"sess-4691095612a4","input_length":998,"output_length":298,"hash_ids":[1320122,1320123],"delay":1265.2} +{"session_id":"sess-4691095612a4","input_length":5015,"output_length":416,"hash_ids":[1320124,1320125,1320126,1320127,1320128,1320129,1320130,1320131,1320132,1320133],"delay":552.0} +{"session_id":"sess-4691095612a4","input_length":3245,"output_length":319,"hash_ids":[1320134,1320135,1320136,1320137,1320138,1320139,1320140],"delay":160.3} +{"session_id":"sess-4691095612a4","input_length":633,"output_length":597,"hash_ids":[1320141,1320142],"delay":373.3} +{"session_id":"sess-4691095612a4","input_length":2268,"output_length":167,"hash_ids":[1320143,1320144,1320145,1320146,1320147],"delay":1363.0} +{"session_id":"sess-65c48201f97d","input_length":52689,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502],"timestamp":0.0,"group_id":7} +{"session_id":"sess-65c48201f97d","input_length":2940,"output_length":104,"hash_ids":[1320148,1320149,1320150,1320151,1320152,1320153],"delay":343.6} +{"session_id":"sess-65c48201f97d","input_length":4579,"output_length":341,"hash_ids":[1320154,1320155,1320156,1320157,1320158,1320159,1320160,1320161,1320162],"delay":963.4} +{"session_id":"sess-65c48201f97d","input_length":711,"output_length":1047,"hash_ids":[1320163,1320164],"delay":750.5} +{"session_id":"sess-65c48201f97d","input_length":9856,"output_length":332,"hash_ids":[1320165,1320166,1320167,1320168,1320169,1320170,1320171,1320172,1320173,1320174,1320175,1320176,1320177,1320178,1320179,1320180,1320181,1320182,1320183,1320184],"delay":379.4} +{"session_id":"sess-65c48201f97d","input_length":5994,"output_length":833,"hash_ids":[1320185,1320186,1320187,1320188,1320189,1320190,1320191,1320192,1320193,1320194,1320195,1320196],"delay":877.4} +{"session_id":"sess-65c48201f97d","input_length":3058,"output_length":93,"hash_ids":[1320197,1320198,1320199,1320200,1320201,1320202],"delay":958.6} +{"session_id":"sess-65c48201f97d","input_length":892,"output_length":1067,"hash_ids":[1320203,1320204],"delay":8250.4} +{"session_id":"sess-65c48201f97d","input_length":536,"output_length":90,"hash_ids":[1320205,1320206],"delay":2229.1} +{"session_id":"sess-65c48201f97d","input_length":267,"output_length":88,"hash_ids":[1320207],"delay":730.5} +{"session_id":"sess-65c48201f97d","input_length":857,"output_length":93,"hash_ids":[1320208,1320209],"delay":3339.6} +{"session_id":"sess-65c48201f97d","input_length":1131,"output_length":1143,"hash_ids":[1320210,1320211,1320212],"delay":882.3} +{"session_id":"sess-65c48201f97d","input_length":4810,"output_length":98,"hash_ids":[1320213,1320214,1320215,1320216,1320217,1320218,1320219,1320220,1320221,1320222],"delay":530.1} +{"session_id":"sess-65c48201f97d","input_length":242,"output_length":1303,"hash_ids":[1320223],"delay":598.6} +{"session_id":"sess-65c48201f97d","input_length":4767,"output_length":62,"hash_ids":[1320224,1320225,1320226,1320227,1320228,1320229,1320230,1320231,1320232,1320233],"delay":646.3} +{"session_id":"sess-65c48201f97d","input_length":567,"output_length":155,"hash_ids":[1320234,1320235],"delay":227.3} +{"session_id":"sess-65c48201f97d","input_length":1084,"output_length":467,"hash_ids":[1320236,1320237,1320238],"delay":26701.1} +{"session_id":"sess-65c48201f97d","input_length":1310,"output_length":68,"hash_ids":[1320239,1320240,1320241],"delay":14155.1} +{"session_id":"sess-65c48201f97d","input_length":3666,"output_length":150,"hash_ids":[1320242,1320243,1320244,1320245,1320246,1320247,1320248,1320249],"delay":29947.5} +{"session_id":"sess-65c48201f97d","input_length":1351,"output_length":1367,"hash_ids":[1320250,1320251,1320252],"delay":174.5} +{"session_id":"sess-65c48201f97d","input_length":949,"output_length":305,"hash_ids":[1320253,1320254],"delay":748.7} +{"session_id":"sess-65c48201f97d","input_length":1796,"output_length":484,"hash_ids":[1320255,1320256,1320257,1320258],"delay":970.9} +{"session_id":"sess-65c48201f97d","input_length":4556,"output_length":430,"hash_ids":[1320259,1320260,1320261,1320262,1320263,1320264,1320265,1320266,1320267],"delay":128.2} +{"session_id":"sess-65c48201f97d","input_length":382,"output_length":278,"hash_ids":[1320268],"delay":692.0} +{"session_id":"sess-65c48201f97d","input_length":1942,"output_length":196,"hash_ids":[1320269,1320270,1320271,1320272],"delay":88.7} +{"session_id":"sess-65c48201f97d","input_length":5468,"output_length":97,"hash_ids":[1320273,1320274,1320275,1320276,1320277,1320278,1320279,1320280,1320281,1320282,1320283],"delay":715.5} +{"session_id":"sess-65c48201f97d","input_length":3125,"output_length":560,"hash_ids":[1320284,1320285,1320286,1320287,1320288,1320289,1320290],"delay":2221.4} +{"session_id":"sess-b4ca2e375350","input_length":62897,"output_length":255,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1328063,1328064,1328065,1328066,1328067,1328068,1328069,1328070,1328071,1328072,1328073,1328074,1328075,1328076,1328077,1328078,1328079,1328080,1328081,1328082],"timestamp":0.0,"group_id":3} +{"session_id":"sess-b4ca2e375350","input_length":690,"output_length":1853,"hash_ids":[1328083,1328084],"delay":855.5} +{"session_id":"sess-b4ca2e375350","input_length":432,"output_length":148,"hash_ids":[1328085],"delay":40181.1} +{"session_id":"sess-b4ca2e375350","input_length":4144,"output_length":1029,"hash_ids":[1328086,1328087,1328088,1328089,1328090,1328091,1328092,1328093,1328094],"delay":619.5} +{"session_id":"sess-b4ca2e375350","input_length":346,"output_length":574,"hash_ids":[1328095],"delay":593.2} +{"session_id":"sess-b4ca2e375350","input_length":421,"output_length":493,"hash_ids":[1328096],"delay":1072.1} +{"session_id":"sess-b4ca2e375350","input_length":548,"output_length":174,"hash_ids":[1328097,1328098],"delay":8812.2} +{"session_id":"sess-b4ca2e375350","input_length":116,"output_length":109,"hash_ids":[1328099],"delay":13108.9} +{"session_id":"sess-b4ca2e375350","input_length":1407,"output_length":348,"hash_ids":[1328100,1328101,1328102],"delay":310.7} +{"session_id":"sess-b4ca2e375350","input_length":1934,"output_length":373,"hash_ids":[1328103,1328104,1328105,1328106],"delay":868.8} +{"session_id":"sess-b4ca2e375350","input_length":1888,"output_length":83,"hash_ids":[1328107,1328108,1328109,1328110],"delay":16515.5} +{"session_id":"sess-b4ca2e375350","input_length":4185,"output_length":676,"hash_ids":[1328111,1328112,1328113,1328114,1328115,1328116,1328117,1328118,1328119],"delay":843.2} +{"session_id":"sess-b4ca2e375350","input_length":2286,"output_length":114,"hash_ids":[1328120,1328121,1328122,1328123,1328124],"delay":1296.4} +{"session_id":"sess-b4ca2e375350","input_length":1705,"output_length":144,"hash_ids":[1328125,1328126,1328127,1328128],"delay":1088.9} +{"session_id":"sess-b4ca2e375350","input_length":5375,"output_length":63,"hash_ids":[1328129,1328130,1328131,1328132,1328133,1328134,1328135,1328136,1328137,1328138,1328139],"delay":7987.0} +{"session_id":"sess-b4ca2e375350","input_length":52,"output_length":616,"hash_ids":[1328140],"delay":12069.9} +{"session_id":"sess-b4ca2e375350","input_length":1073,"output_length":40,"hash_ids":[1328141,1328142,1328143],"delay":294.8} +{"session_id":"sess-b4ca2e375350","input_length":6464,"output_length":102,"hash_ids":[1328144,1328145,1328146,1328147,1328148,1328149,1328150,1328151,1328152,1328153,1328154,1328155,1328156],"delay":243.7} +{"session_id":"sess-b4ca2e375350","input_length":676,"output_length":244,"hash_ids":[1328157,1328158],"delay":669.0} +{"session_id":"sess-b4ca2e375350","input_length":6406,"output_length":1786,"hash_ids":[1328159,1328160,1328161,1328162,1328163,1328164,1328165,1328166,1328167,1328168,1328169,1328170,1328171],"delay":33569.7} +{"session_id":"sess-b4ca2e375350","input_length":2791,"output_length":106,"hash_ids":[1328172,1328173,1328174,1328175,1328176,1328177],"delay":248.4} +{"session_id":"sess-b4ca2e375350","input_length":2084,"output_length":442,"hash_ids":[1328178,1328179,1328180,1328181,1328182],"delay":496.4} +{"session_id":"sess-b4ca2e375350","input_length":1105,"output_length":141,"hash_ids":[1328183,1328184,1328185],"delay":524.0} +{"session_id":"sess-b4ca2e375350","input_length":765,"output_length":482,"hash_ids":[1328186,1328187],"delay":407.8} +{"session_id":"sess-b4ca2e375350","input_length":1567,"output_length":210,"hash_ids":[1328188,1328189,1328190,1328191],"delay":531.2} +{"session_id":"sess-b4ca2e375350","input_length":3727,"output_length":30,"hash_ids":[1328192,1328193,1328194,1328195,1328196,1328197,1328198,1328199],"delay":13189.7} +{"session_id":"sess-b4ca2e375350","input_length":1883,"output_length":193,"hash_ids":[1328200,1328201,1328202,1328203],"delay":6317.9} +{"session_id":"sess-b4ca2e375350","input_length":742,"output_length":140,"hash_ids":[1328204,1328205],"delay":895.1} +{"session_id":"sess-9fc251d83672","input_length":73255,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1332063,1332064,1332065,1332066,1332067,1332068,1332069,1332070,1332071,1332072,1332073,1332074,1332075,1332076,1332077,1332078,1332079,1332080,1332081,1332082,1332083,1332084,1332085,1332086,1332087,1332088,1332089,1332090,1332091,1332092,1332093,1332094,1332095,1332096,1332097,1332098,1332099,1332100,1332101,1332102,1332103],"timestamp":0.0,"group_id":12} +{"session_id":"sess-9fc251d83672","input_length":625,"output_length":275,"hash_ids":[1332104,1332105],"delay":1160.3} +{"session_id":"sess-9fc251d83672","input_length":1491,"output_length":106,"hash_ids":[1332106,1332107,1332108],"delay":424.1} +{"session_id":"sess-9fc251d83672","input_length":2671,"output_length":454,"hash_ids":[1332109,1332110,1332111,1332112,1332113,1332114],"delay":8180.0} +{"session_id":"sess-9fc251d83672","input_length":1285,"output_length":358,"hash_ids":[1332115,1332116,1332117],"delay":540.8} +{"session_id":"sess-9fc251d83672","input_length":2103,"output_length":1341,"hash_ids":[1332118,1332119,1332120,1332121,1332122],"delay":4382.8} +{"session_id":"sess-9fc251d83672","input_length":2229,"output_length":996,"hash_ids":[1332123,1332124,1332125,1332126,1332127],"delay":699.2} +{"session_id":"sess-9fc251d83672","input_length":849,"output_length":466,"hash_ids":[1332128,1332129],"delay":1609.2} +{"session_id":"sess-9fc251d83672","input_length":4276,"output_length":153,"hash_ids":[1332130,1332131,1332132,1332133,1332134,1332135,1332136,1332137,1332138],"delay":1249.4} +{"session_id":"sess-9fc251d83672","input_length":9570,"output_length":473,"hash_ids":[1332139,1332140,1332141,1332142,1332143,1332144,1332145,1332146,1332147,1332148,1332149,1332150,1332151,1332152,1332153,1332154,1332155,1332156,1332157],"delay":301.7} +{"session_id":"sess-9fc251d83672","input_length":5412,"output_length":664,"hash_ids":[1332158,1332159,1332160,1332161,1332162,1332163,1332164,1332165,1332166,1332167,1332168],"delay":593.6} +{"session_id":"sess-9fc251d83672","input_length":1361,"output_length":89,"hash_ids":[1332169,1332170,1332171],"delay":835.7} +{"session_id":"sess-9fc251d83672","input_length":2142,"output_length":172,"hash_ids":[1332172,1332173,1332174,1332175,1332176],"delay":915.1} +{"session_id":"sess-9fc251d83672","input_length":1533,"output_length":82,"hash_ids":[1332177,1332178,1332179],"delay":430.2} +{"session_id":"sess-9fc251d83672","input_length":3936,"output_length":500,"hash_ids":[1332180,1332181,1332182,1332183,1332184,1332185,1332186,1332187],"delay":11173.3} +{"session_id":"sess-9fc251d83672","input_length":3950,"output_length":116,"hash_ids":[1332188,1332189,1332190,1332191,1332192,1332193,1332194,1332195],"delay":694.1} +{"session_id":"sess-9fc251d83672","input_length":1435,"output_length":198,"hash_ids":[1332196,1332197,1332198],"delay":101.1} +{"session_id":"sess-9fc251d83672","input_length":784,"output_length":820,"hash_ids":[1332199,1332200],"delay":211.1} +{"session_id":"sess-0140521f2f9e","input_length":57330,"output_length":129,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,1336063,1336064,1336065,1336066,1336067,1336068,1336069,1336070,1336071],"timestamp":0.0,"group_id":34} +{"session_id":"sess-0140521f2f9e","input_length":1416,"output_length":122,"hash_ids":[1336072,1336073,1336074],"delay":1601.9} +{"session_id":"sess-0140521f2f9e","input_length":2297,"output_length":132,"hash_ids":[1336075,1336076,1336077,1336078,1336079],"delay":7212.5} +{"session_id":"sess-0140521f2f9e","input_length":2421,"output_length":44,"hash_ids":[1336080,1336081,1336082,1336083,1336084],"delay":1226.9} +{"session_id":"sess-0140521f2f9e","input_length":2322,"output_length":225,"hash_ids":[1336085,1336086,1336087,1336088,1336089],"delay":669.7} +{"session_id":"sess-0140521f2f9e","input_length":2101,"output_length":217,"hash_ids":[1336090,1336091,1336092,1336093,1336094],"delay":1267.1} +{"session_id":"sess-0140521f2f9e","input_length":403,"output_length":802,"hash_ids":[1336095],"delay":1650.6} +{"session_id":"sess-0140521f2f9e","input_length":5745,"output_length":809,"hash_ids":[1336096,1336097,1336098,1336099,1336100,1336101,1336102,1336103,1336104,1336105,1336106,1336107],"delay":39106.4} +{"session_id":"sess-0140521f2f9e","input_length":14,"output_length":516,"hash_ids":[1336108],"delay":1326.8} +{"session_id":"sess-0140521f2f9e","input_length":1352,"output_length":32,"hash_ids":[1336109,1336110,1336111],"delay":38935.9} +{"session_id":"sess-0140521f2f9e","input_length":1368,"output_length":155,"hash_ids":[1336112,1336113,1336114],"delay":316.8} +{"session_id":"sess-0140521f2f9e","input_length":6211,"output_length":514,"hash_ids":[1336115,1336116,1336117,1336118,1336119,1336120,1336121,1336122,1336123,1336124,1336125,1336126,1336127],"delay":14038.7} +{"session_id":"sess-0140521f2f9e","input_length":1263,"output_length":107,"hash_ids":[1336128,1336129,1336130],"delay":679.3} +{"session_id":"sess-0140521f2f9e","input_length":3088,"output_length":131,"hash_ids":[1336131,1336132,1336133,1336134,1336135,1336136,1336137],"delay":10955.4} +{"session_id":"sess-0140521f2f9e","input_length":651,"output_length":104,"hash_ids":[1336138,1336139],"delay":473.9} +{"session_id":"sess-0140521f2f9e","input_length":5229,"output_length":60,"hash_ids":[1336140,1336141,1336142,1336143,1336144,1336145,1336146,1336147,1336148,1336149,1336150],"delay":18744.2} +{"session_id":"sess-0140521f2f9e","input_length":8089,"output_length":339,"hash_ids":[1336151,1336152,1336153,1336154,1336155,1336156,1336157,1336158,1336159,1336160,1336161,1336162,1336163,1336164,1336165,1336166],"delay":7908.7} +{"session_id":"sess-0140521f2f9e","input_length":717,"output_length":91,"hash_ids":[1336167,1336168],"delay":1278.5} +{"session_id":"sess-0140521f2f9e","input_length":1305,"output_length":776,"hash_ids":[1336169,1336170,1336171],"delay":682.0} +{"session_id":"sess-0140521f2f9e","input_length":1009,"output_length":377,"hash_ids":[1336172,1336173],"delay":663.3} +{"session_id":"sess-0140521f2f9e","input_length":850,"output_length":166,"hash_ids":[1336174,1336175],"delay":18454.4} +{"session_id":"sess-0140521f2f9e","input_length":2338,"output_length":52,"hash_ids":[1336176,1336177,1336178,1336179,1336180],"delay":1239.8} +{"session_id":"sess-0140521f2f9e","input_length":3892,"output_length":163,"hash_ids":[1336181,1336182,1336183,1336184,1336185,1336186,1336187,1336188],"delay":405.4} +{"session_id":"sess-0140521f2f9e","input_length":355,"output_length":89,"hash_ids":[1336189],"delay":1227.7} +{"session_id":"sess-0140521f2f9e","input_length":3134,"output_length":185,"hash_ids":[1336190,1336191,1336192,1336193,1336194,1336195,1336196],"delay":124.2} +{"session_id":"sess-0140521f2f9e","input_length":489,"output_length":1009,"hash_ids":[1336197],"delay":515.4} +{"session_id":"sess-0140521f2f9e","input_length":382,"output_length":110,"hash_ids":[1336198],"delay":5593.4} +{"session_id":"sess-0140521f2f9e","input_length":1127,"output_length":92,"hash_ids":[1336199,1336200,1336201],"delay":1377.5} +{"session_id":"sess-0140521f2f9e","input_length":1212,"output_length":88,"hash_ids":[1336202,1336203,1336204],"delay":4267.9} +{"session_id":"sess-0140521f2f9e","input_length":261,"output_length":258,"hash_ids":[1336205],"delay":2626.1} +{"session_id":"sess-239836c26316","input_length":52309,"output_length":632,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-239836c26316","input_length":784,"output_length":205,"hash_ids":[1336206,1336207],"delay":1300.5} +{"session_id":"sess-239836c26316","input_length":2376,"output_length":131,"hash_ids":[1336208,1336209,1336210,1336211,1336212],"delay":516.4} +{"session_id":"sess-239836c26316","input_length":1526,"output_length":418,"hash_ids":[1336213,1336214,1336215],"delay":12938.5} +{"session_id":"sess-239836c26316","input_length":1905,"output_length":79,"hash_ids":[1336216,1336217,1336218,1336219],"delay":1053.5} +{"session_id":"sess-239836c26316","input_length":61,"output_length":528,"hash_ids":[1336220],"delay":702.8} +{"session_id":"sess-239836c26316","input_length":1216,"output_length":363,"hash_ids":[1336221,1336222,1336223],"delay":901.4} +{"session_id":"sess-239836c26316","input_length":2401,"output_length":421,"hash_ids":[1336224,1336225,1336226,1336227,1336228],"delay":1152.8} +{"session_id":"sess-239836c26316","input_length":578,"output_length":87,"hash_ids":[1336229,1336230],"delay":966.3} +{"session_id":"sess-9f5655d4ce2c","input_length":57583,"output_length":241,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1344063,1344064,1344065,1344066,1344067,1344068,1344069,1344070,1344071,1344072],"timestamp":0.0,"group_id":6} +{"session_id":"sess-9f5655d4ce2c","input_length":3563,"output_length":222,"hash_ids":[1344073,1344074,1344075,1344076,1344077,1344078,1344079],"delay":20811.2} +{"session_id":"sess-9f5655d4ce2c","input_length":178,"output_length":586,"hash_ids":[1344080],"delay":1847.6} +{"session_id":"sess-9f5655d4ce2c","input_length":800,"output_length":748,"hash_ids":[1344081,1344082],"delay":9899.8} +{"session_id":"sess-9f5655d4ce2c","input_length":2161,"output_length":805,"hash_ids":[1344083,1344084,1344085,1344086,1344087],"delay":2600.1} +{"session_id":"sess-9f5655d4ce2c","input_length":1210,"output_length":1128,"hash_ids":[1344088,1344089,1344090],"delay":665.7} +{"session_id":"sess-9f5655d4ce2c","input_length":1749,"output_length":36,"hash_ids":[1344091,1344092,1344093,1344094],"delay":233.7} +{"session_id":"sess-9f5655d4ce2c","input_length":2050,"output_length":492,"hash_ids":[1344095,1344096,1344097,1344098,1344099],"delay":663.6} +{"session_id":"sess-9f5655d4ce2c","input_length":2094,"output_length":395,"hash_ids":[1344100,1344101,1344102,1344103,1344104],"delay":1296.1} +{"session_id":"sess-9f5655d4ce2c","input_length":1284,"output_length":256,"hash_ids":[1344105,1344106,1344107],"delay":1218.5} +{"session_id":"sess-9f5655d4ce2c","input_length":6174,"output_length":63,"hash_ids":[1344108,1344109,1344110,1344111,1344112,1344113,1344114,1344115,1344116,1344117,1344118,1344119,1344120],"delay":1060.8} +{"session_id":"sess-9f5655d4ce2c","input_length":2990,"output_length":415,"hash_ids":[1344121,1344122,1344123,1344124,1344125,1344126],"delay":392.8} +{"session_id":"sess-9f5655d4ce2c","input_length":6252,"output_length":97,"hash_ids":[1344127,1344128,1344129,1344130,1344131,1344132,1344133,1344134,1344135,1344136,1344137,1344138,1344139],"delay":15791.3} +{"session_id":"sess-9f5655d4ce2c","input_length":3603,"output_length":484,"hash_ids":[1344140,1344141,1344142,1344143,1344144,1344145,1344146,1344147],"delay":826.9} +{"session_id":"sess-9f5655d4ce2c","input_length":1238,"output_length":843,"hash_ids":[1344148,1344149,1344150],"delay":224.3} +{"session_id":"sess-9f5655d4ce2c","input_length":5538,"output_length":114,"hash_ids":[1344151,1344152,1344153,1344154,1344155,1344156,1344157,1344158,1344159,1344160,1344161],"delay":792.2} +{"session_id":"sess-9f5655d4ce2c","input_length":1358,"output_length":283,"hash_ids":[1344162,1344163,1344164],"delay":218.4} +{"session_id":"sess-9f5655d4ce2c","input_length":1348,"output_length":291,"hash_ids":[1344165,1344166,1344167],"delay":8131.5} +{"session_id":"sess-9f5655d4ce2c","input_length":574,"output_length":378,"hash_ids":[1344168,1344169],"delay":187.0} +{"session_id":"sess-9f5655d4ce2c","input_length":5841,"output_length":34,"hash_ids":[1344170,1344171,1344172,1344173,1344174,1344175,1344176,1344177,1344178,1344179,1344180,1344181],"delay":11921.1} +{"session_id":"sess-9f5655d4ce2c","input_length":1820,"output_length":88,"hash_ids":[1344182,1344183,1344184,1344185],"delay":9400.7} +{"session_id":"sess-9f5655d4ce2c","input_length":379,"output_length":1858,"hash_ids":[1344186],"delay":179.6} +{"session_id":"sess-9f5655d4ce2c","input_length":1083,"output_length":279,"hash_ids":[1344187,1344188,1344189],"delay":136.2} +{"session_id":"sess-9f5655d4ce2c","input_length":231,"output_length":389,"hash_ids":[1344190],"delay":603.9} +{"session_id":"sess-9f5655d4ce2c","input_length":4861,"output_length":281,"hash_ids":[1344191,1344192,1344193,1344194,1344195,1344196,1344197,1344198,1344199,1344200],"delay":4742.6} +{"session_id":"sess-164be4693416","input_length":62445,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1348063,1348064,1348065,1348066,1348067,1348068,1348069,1348070,1348071,1348072,1348073,1348074,1348075,1348076,1348077,1348078,1348079,1348080,1348081],"timestamp":0.0,"group_id":2} +{"session_id":"sess-164be4693416","input_length":765,"output_length":229,"hash_ids":[1348082,1348083],"delay":27986.8} +{"session_id":"sess-164be4693416","input_length":2245,"output_length":645,"hash_ids":[1348084,1348085,1348086,1348087,1348088],"delay":5216.1} +{"session_id":"sess-164be4693416","input_length":2151,"output_length":36,"hash_ids":[1348089,1348090,1348091,1348092,1348093],"delay":30780.5} +{"session_id":"sess-164be4693416","input_length":1460,"output_length":164,"hash_ids":[1348094,1348095,1348096],"delay":686.2} +{"session_id":"sess-164be4693416","input_length":1348,"output_length":593,"hash_ids":[1348097,1348098,1348099],"delay":1645.5} +{"session_id":"sess-164be4693416","input_length":2011,"output_length":431,"hash_ids":[1348100,1348101,1348102,1348103],"delay":990.7} +{"session_id":"sess-164be4693416","input_length":1935,"output_length":415,"hash_ids":[1348104,1348105,1348106,1348107],"delay":1177.6} +{"session_id":"sess-164be4693416","input_length":6491,"output_length":351,"hash_ids":[1348108,1348109,1348110,1348111,1348112,1348113,1348114,1348115,1348116,1348117,1348118,1348119,1348120],"delay":794.3} +{"session_id":"sess-164be4693416","input_length":243,"output_length":30,"hash_ids":[1348121],"delay":1254.5} +{"session_id":"sess-164be4693416","input_length":309,"output_length":897,"hash_ids":[1348122],"delay":1536.0} +{"session_id":"sess-164be4693416","input_length":3042,"output_length":40,"hash_ids":[1348123,1348124,1348125,1348126,1348127,1348128],"delay":2466.5} +{"session_id":"sess-164be4693416","input_length":364,"output_length":136,"hash_ids":[1348129],"delay":164.9} +{"session_id":"sess-164be4693416","input_length":1202,"output_length":958,"hash_ids":[1348130,1348131,1348132],"delay":1665.6} +{"session_id":"sess-164be4693416","input_length":880,"output_length":449,"hash_ids":[1348133,1348134],"delay":493.4} +{"session_id":"sess-164be4693416","input_length":1858,"output_length":785,"hash_ids":[1348135,1348136,1348137,1348138],"delay":45175.7} +{"session_id":"sess-164be4693416","input_length":1091,"output_length":356,"hash_ids":[1348139,1348140,1348141],"delay":153.9} +{"session_id":"sess-164be4693416","input_length":8322,"output_length":241,"hash_ids":[1348142,1348143,1348144,1348145,1348146,1348147,1348148,1348149,1348150,1348151,1348152,1348153,1348154,1348155,1348156,1348157,1348158],"delay":6587.0} +{"session_id":"sess-164be4693416","input_length":1059,"output_length":64,"hash_ids":[1348159,1348160,1348161],"delay":441.9} +{"session_id":"sess-164be4693416","input_length":2260,"output_length":285,"hash_ids":[1348162,1348163,1348164,1348165,1348166],"delay":15268.3} +{"session_id":"sess-164be4693416","input_length":686,"output_length":195,"hash_ids":[1348167,1348168],"delay":21936.5} +{"session_id":"sess-164be4693416","input_length":267,"output_length":33,"hash_ids":[1348169],"delay":803.7} +{"session_id":"sess-164be4693416","input_length":798,"output_length":1120,"hash_ids":[1348170,1348171],"delay":355.7} +{"session_id":"sess-164be4693416","input_length":3096,"output_length":134,"hash_ids":[1348172,1348173,1348174,1348175,1348176,1348177,1348178],"delay":277.2} +{"session_id":"sess-164be4693416","input_length":2310,"output_length":1501,"hash_ids":[1348179,1348180,1348181,1348182,1348183],"delay":700.0} +{"session_id":"sess-164be4693416","input_length":621,"output_length":593,"hash_ids":[1348184,1348185],"delay":225.9} +{"session_id":"sess-164be4693416","input_length":2766,"output_length":1104,"hash_ids":[1348186,1348187,1348188,1348189,1348190,1348191],"delay":1160.7} +{"session_id":"sess-164be4693416","input_length":1123,"output_length":252,"hash_ids":[1348192,1348193,1348194],"delay":18785.6} +{"session_id":"sess-164be4693416","input_length":747,"output_length":560,"hash_ids":[1348195,1348196],"delay":484.7} +{"session_id":"sess-164be4693416","input_length":1180,"output_length":262,"hash_ids":[1348197,1348198,1348199],"delay":17980.5} +{"session_id":"sess-164be4693416","input_length":1323,"output_length":328,"hash_ids":[1348200,1348201,1348202],"delay":6980.0} +{"session_id":"sess-13149701afd4","input_length":55846,"output_length":161,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1352063,1352064,1352065,1352066,1352067,1352068,1352069],"timestamp":0.0,"group_id":9} +{"session_id":"sess-13149701afd4","input_length":4162,"output_length":84,"hash_ids":[1352070,1352071,1352072,1352073,1352074,1352075,1352076,1352077,1352078],"delay":3888.5} +{"session_id":"sess-13149701afd4","input_length":1895,"output_length":470,"hash_ids":[1352079,1352080,1352081,1352082],"delay":2784.8} +{"session_id":"sess-13149701afd4","input_length":1617,"output_length":52,"hash_ids":[1352083,1352084,1352085,1352086],"delay":11267.7} +{"session_id":"sess-13149701afd4","input_length":1841,"output_length":387,"hash_ids":[1352087,1352088,1352089,1352090],"delay":15234.7} +{"session_id":"sess-13149701afd4","input_length":3118,"output_length":534,"hash_ids":[1352091,1352092,1352093,1352094,1352095,1352096,1352097],"delay":1577.5} +{"session_id":"sess-13149701afd4","input_length":1404,"output_length":82,"hash_ids":[1352098,1352099,1352100],"delay":39920.4} +{"session_id":"sess-13149701afd4","input_length":3232,"output_length":2349,"hash_ids":[1352101,1352102,1352103,1352104,1352105,1352106,1352107],"delay":136.4} +{"session_id":"sess-13149701afd4","input_length":3667,"output_length":198,"hash_ids":[1352108,1352109,1352110,1352111,1352112,1352113,1352114,1352115],"delay":144.5} +{"session_id":"sess-13149701afd4","input_length":3517,"output_length":424,"hash_ids":[1352116,1352117,1352118,1352119,1352120,1352121,1352122],"delay":52074.2} +{"session_id":"sess-13149701afd4","input_length":980,"output_length":429,"hash_ids":[1352123,1352124],"delay":669.0} +{"session_id":"sess-13149701afd4","input_length":3475,"output_length":199,"hash_ids":[1352125,1352126,1352127,1352128,1352129,1352130,1352131],"delay":149.9} +{"session_id":"sess-13149701afd4","input_length":1799,"output_length":1096,"hash_ids":[1352132,1352133,1352134,1352135],"delay":7907.9} +{"session_id":"sess-13149701afd4","input_length":541,"output_length":130,"hash_ids":[1352136,1352137],"delay":338.4} +{"session_id":"sess-13149701afd4","input_length":1715,"output_length":155,"hash_ids":[1352138,1352139,1352140,1352141],"delay":5394.1} +{"session_id":"sess-a55dcc1d36c9","input_length":54234,"output_length":665,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1356063,1356064,1356065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a55dcc1d36c9","input_length":6046,"output_length":296,"hash_ids":[1356066,1356067,1356068,1356069,1356070,1356071,1356072,1356073,1356074,1356075,1356076,1356077],"delay":4658.4} +{"session_id":"sess-a55dcc1d36c9","input_length":1024,"output_length":69,"hash_ids":[1356078,1356079],"delay":9366.6} +{"session_id":"sess-a55dcc1d36c9","input_length":816,"output_length":344,"hash_ids":[1356080,1356081],"delay":491.3} +{"session_id":"sess-a55dcc1d36c9","input_length":761,"output_length":148,"hash_ids":[1356082,1356083],"delay":1110.5} +{"session_id":"sess-a55dcc1d36c9","input_length":2622,"output_length":522,"hash_ids":[1356084,1356085,1356086,1356087,1356088,1356089],"delay":7649.1} +{"session_id":"sess-a55dcc1d36c9","input_length":153,"output_length":130,"hash_ids":[1356090],"delay":885.2} +{"session_id":"sess-a55dcc1d36c9","input_length":6093,"output_length":241,"hash_ids":[1356091,1356092,1356093,1356094,1356095,1356096,1356097,1356098,1356099,1356100,1356101,1356102],"delay":716.1} +{"session_id":"sess-a55dcc1d36c9","input_length":7993,"output_length":1542,"hash_ids":[1356103,1356104,1356105,1356106,1356107,1356108,1356109,1356110,1356111,1356112,1356113,1356114,1356115,1356116,1356117,1356118],"delay":421.1} +{"session_id":"sess-a55dcc1d36c9","input_length":3785,"output_length":211,"hash_ids":[1356119,1356120,1356121,1356122,1356123,1356124,1356125,1356126],"delay":19711.9} +{"session_id":"sess-a55dcc1d36c9","input_length":423,"output_length":845,"hash_ids":[1356127],"delay":506.2} +{"session_id":"sess-a55dcc1d36c9","input_length":2867,"output_length":2982,"hash_ids":[1356128,1356129,1356130,1356131,1356132,1356133],"delay":1717.1} +{"session_id":"sess-a55dcc1d36c9","input_length":2107,"output_length":126,"hash_ids":[1356134,1356135,1356136,1356137,1356138],"delay":776.9} +{"session_id":"sess-a55dcc1d36c9","input_length":2508,"output_length":313,"hash_ids":[1356139,1356140,1356141,1356142,1356143],"delay":2826.7} +{"session_id":"sess-a55dcc1d36c9","input_length":376,"output_length":69,"hash_ids":[1356144],"delay":176.3} +{"session_id":"sess-a55dcc1d36c9","input_length":8165,"output_length":1805,"hash_ids":[1356145,1356146,1356147,1356148,1356149,1356150,1356151,1356152,1356153,1356154,1356155,1356156,1356157,1356158,1356159,1356160],"delay":494.6} +{"session_id":"sess-a55dcc1d36c9","input_length":1897,"output_length":405,"hash_ids":[1356161,1356162,1356163,1356164],"delay":3455.3} +{"session_id":"sess-a55dcc1d36c9","input_length":2730,"output_length":196,"hash_ids":[1356165,1356166,1356167,1356168,1356169,1356170],"delay":2710.7} +{"session_id":"sess-a55dcc1d36c9","input_length":3179,"output_length":134,"hash_ids":[1356171,1356172,1356173,1356174,1356175,1356176,1356177],"delay":136.2} +{"session_id":"sess-a55dcc1d36c9","input_length":990,"output_length":523,"hash_ids":[1356178,1356179],"delay":429.7} +{"session_id":"sess-a55dcc1d36c9","input_length":1795,"output_length":1163,"hash_ids":[1356180,1356181,1356182,1356183],"delay":16967.3} +{"session_id":"sess-a55dcc1d36c9","input_length":2950,"output_length":180,"hash_ids":[1356184,1356185,1356186,1356187,1356188,1356189],"delay":296.5} +{"session_id":"sess-a55dcc1d36c9","input_length":726,"output_length":204,"hash_ids":[1356190,1356191],"delay":331.6} +{"session_id":"sess-6aea5ecf3c18","input_length":55562,"output_length":1157,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1360063,1360064,1360065,1360066,1360067,1360068],"timestamp":0.0,"group_id":3} +{"session_id":"sess-6aea5ecf3c18","input_length":1415,"output_length":97,"hash_ids":[1360069,1360070,1360071],"delay":2531.0} +{"session_id":"sess-6aea5ecf3c18","input_length":593,"output_length":444,"hash_ids":[1360072,1360073],"delay":5537.6} +{"session_id":"sess-6aea5ecf3c18","input_length":197,"output_length":30,"hash_ids":[1360074],"delay":1717.1} +{"session_id":"sess-6aea5ecf3c18","input_length":2376,"output_length":304,"hash_ids":[1360075,1360076,1360077,1360078,1360079],"delay":1243.1} +{"session_id":"sess-6aea5ecf3c18","input_length":433,"output_length":549,"hash_ids":[1360080],"delay":27844.8} +{"session_id":"sess-6aea5ecf3c18","input_length":3215,"output_length":926,"hash_ids":[1360081,1360082,1360083,1360084,1360085,1360086,1360087],"delay":619.4} +{"session_id":"sess-6aea5ecf3c18","input_length":9754,"output_length":122,"hash_ids":[1360088,1360089,1360090,1360091,1360092,1360093,1360094,1360095,1360096,1360097,1360098,1360099,1360100,1360101,1360102,1360103,1360104,1360105,1360106,1360107],"delay":585.0} +{"session_id":"sess-6aea5ecf3c18","input_length":3778,"output_length":30,"hash_ids":[1360108,1360109,1360110,1360111,1360112,1360113,1360114,1360115],"delay":2988.9} +{"session_id":"sess-6aea5ecf3c18","input_length":3495,"output_length":313,"hash_ids":[1360116,1360117,1360118,1360119,1360120,1360121,1360122],"delay":8916.2} +{"session_id":"sess-6aea5ecf3c18","input_length":2241,"output_length":231,"hash_ids":[1360123,1360124,1360125,1360126,1360127],"delay":1926.3} +{"session_id":"sess-6aea5ecf3c18","input_length":3276,"output_length":327,"hash_ids":[1360128,1360129,1360130,1360131,1360132,1360133,1360134],"delay":808.3} +{"session_id":"sess-6aea5ecf3c18","input_length":4534,"output_length":177,"hash_ids":[1360135,1360136,1360137,1360138,1360139,1360140,1360141,1360142,1360143],"delay":884.2} +{"session_id":"sess-6aea5ecf3c18","input_length":460,"output_length":301,"hash_ids":[1360144],"delay":12292.9} +{"session_id":"sess-6aea5ecf3c18","input_length":1404,"output_length":100,"hash_ids":[1360145,1360146,1360147],"delay":5522.3} +{"session_id":"sess-6aea5ecf3c18","input_length":3387,"output_length":121,"hash_ids":[1360148,1360149,1360150,1360151,1360152,1360153,1360154],"delay":457.0} +{"session_id":"sess-6aea5ecf3c18","input_length":55,"output_length":558,"hash_ids":[1360155],"delay":163.0} +{"session_id":"sess-6aea5ecf3c18","input_length":499,"output_length":1951,"hash_ids":[1360156],"delay":5185.3} +{"session_id":"sess-6aea5ecf3c18","input_length":3739,"output_length":144,"hash_ids":[1360157,1360158,1360159,1360160,1360161,1360162,1360163,1360164],"delay":147.4} +{"session_id":"sess-6aea5ecf3c18","input_length":5606,"output_length":31,"hash_ids":[1360165,1360166,1360167,1360168,1360169,1360170,1360171,1360172,1360173,1360174,1360175],"delay":7343.8} +{"session_id":"sess-6aea5ecf3c18","input_length":2016,"output_length":752,"hash_ids":[1360176,1360177,1360178,1360179],"delay":516.9} +{"session_id":"sess-6aea5ecf3c18","input_length":1897,"output_length":61,"hash_ids":[1360180,1360181,1360182,1360183],"delay":9548.7} +{"session_id":"sess-6aea5ecf3c18","input_length":1060,"output_length":275,"hash_ids":[1360184,1360185,1360186],"delay":364.2} +{"session_id":"sess-6aea5ecf3c18","input_length":1294,"output_length":1202,"hash_ids":[1360187,1360188,1360189],"delay":273.7} +{"session_id":"sess-6aea5ecf3c18","input_length":664,"output_length":853,"hash_ids":[1360190,1360191],"delay":941.2} +{"session_id":"sess-6aea5ecf3c18","input_length":961,"output_length":194,"hash_ids":[1360192,1360193],"delay":470.5} +{"session_id":"sess-6aea5ecf3c18","input_length":960,"output_length":353,"hash_ids":[1360194,1360195],"delay":198.5} +{"session_id":"sess-6aea5ecf3c18","input_length":4071,"output_length":69,"hash_ids":[1360196,1360197,1360198,1360199,1360200,1360201,1360202,1360203],"delay":212.2} +{"session_id":"sess-6aea5ecf3c18","input_length":97,"output_length":391,"hash_ids":[1360204],"delay":12268.0} +{"session_id":"sess-926374d6ac42","input_length":59855,"output_length":256,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1364063,1364064,1364065,1364066,1364067,1364068,1364069,1364070,1364071,1364072,1364073,1364074,1364075,1364076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-926374d6ac42","input_length":1033,"output_length":592,"hash_ids":[1364077,1364078,1364079],"delay":8028.6} +{"session_id":"sess-8131ca36147d","input_length":57299,"output_length":477,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,1368063,1368064,1368065,1368066,1368067,1368068,1368069,1368070,1368071],"timestamp":0.0,"group_id":11} +{"session_id":"sess-8131ca36147d","input_length":948,"output_length":207,"hash_ids":[1368072,1368073],"delay":8491.8} +{"session_id":"sess-8131ca36147d","input_length":2689,"output_length":1126,"hash_ids":[1368074,1368075,1368076,1368077,1368078,1368079],"delay":794.0} +{"session_id":"sess-8131ca36147d","input_length":2206,"output_length":130,"hash_ids":[1368080,1368081,1368082,1368083,1368084],"delay":1124.6} +{"session_id":"sess-8131ca36147d","input_length":1259,"output_length":592,"hash_ids":[1368085,1368086,1368087],"delay":301.1} +{"session_id":"sess-8131ca36147d","input_length":260,"output_length":499,"hash_ids":[1368088],"delay":557.7} +{"session_id":"sess-8131ca36147d","input_length":988,"output_length":145,"hash_ids":[1368089,1368090],"delay":23397.3} +{"session_id":"sess-8131ca36147d","input_length":1069,"output_length":1503,"hash_ids":[1368091,1368092,1368093],"delay":23798.7} +{"session_id":"sess-8131ca36147d","input_length":2853,"output_length":244,"hash_ids":[1368094,1368095,1368096,1368097,1368098,1368099],"delay":8547.8} +{"session_id":"sess-8131ca36147d","input_length":1023,"output_length":162,"hash_ids":[1368100,1368101],"delay":1310.0} +{"session_id":"sess-8131ca36147d","input_length":850,"output_length":201,"hash_ids":[1368102,1368103],"delay":966.4} +{"session_id":"sess-8131ca36147d","input_length":7542,"output_length":2204,"hash_ids":[1368104,1368105,1368106,1368107,1368108,1368109,1368110,1368111,1368112,1368113,1368114,1368115,1368116,1368117,1368118],"delay":6012.0} +{"session_id":"sess-8131ca36147d","input_length":2690,"output_length":117,"hash_ids":[1368119,1368120,1368121,1368122,1368123,1368124],"delay":1357.0} +{"session_id":"sess-8131ca36147d","input_length":3960,"output_length":189,"hash_ids":[1368125,1368126,1368127,1368128,1368129,1368130,1368131,1368132],"delay":1882.7} +{"session_id":"sess-8131ca36147d","input_length":1482,"output_length":427,"hash_ids":[1368133,1368134,1368135],"delay":1659.9} +{"session_id":"sess-8131ca36147d","input_length":1481,"output_length":1579,"hash_ids":[1368136,1368137,1368138],"delay":827.4} +{"session_id":"sess-8131ca36147d","input_length":694,"output_length":78,"hash_ids":[1368139,1368140],"delay":14049.4} +{"session_id":"sess-8131ca36147d","input_length":1750,"output_length":172,"hash_ids":[1368141,1368142,1368143,1368144],"delay":5636.2} +{"session_id":"sess-8131ca36147d","input_length":1826,"output_length":1441,"hash_ids":[1368145,1368146,1368147,1368148],"delay":468.1} +{"session_id":"sess-8131ca36147d","input_length":3696,"output_length":435,"hash_ids":[1368149,1368150,1368151,1368152,1368153,1368154,1368155,1368156],"delay":570.7} +{"session_id":"sess-8131ca36147d","input_length":2495,"output_length":2044,"hash_ids":[1368157,1368158,1368159,1368160,1368161],"delay":5821.3} +{"session_id":"sess-8131ca36147d","input_length":1204,"output_length":137,"hash_ids":[1368162,1368163,1368164],"delay":1620.3} +{"session_id":"sess-8131ca36147d","input_length":2572,"output_length":272,"hash_ids":[1368165,1368166,1368167,1368168,1368169,1368170],"delay":2303.5} +{"session_id":"sess-8131ca36147d","input_length":684,"output_length":86,"hash_ids":[1368171,1368172],"delay":184.9} +{"session_id":"sess-8131ca36147d","input_length":7240,"output_length":409,"hash_ids":[1368173,1368174,1368175,1368176,1368177,1368178,1368179,1368180,1368181,1368182,1368183,1368184,1368185,1368186,1368187],"delay":17167.5} +{"session_id":"sess-8131ca36147d","input_length":1832,"output_length":699,"hash_ids":[1368188,1368189,1368190,1368191],"delay":14847.8} +{"session_id":"sess-8131ca36147d","input_length":368,"output_length":820,"hash_ids":[1368192],"delay":326.4} +{"session_id":"sess-8131ca36147d","input_length":322,"output_length":390,"hash_ids":[1368193],"delay":5755.3} +{"session_id":"sess-8131ca36147d","input_length":554,"output_length":276,"hash_ids":[1368194,1368195],"delay":79.4} +{"session_id":"sess-c20de862bdb2","input_length":56541,"output_length":186,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1372063,1372064,1372065,1372066,1372067,1372068,1372069,1372070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c20de862bdb2","input_length":3362,"output_length":250,"hash_ids":[1372071,1372072,1372073,1372074,1372075,1372076,1372077],"delay":4832.0} +{"session_id":"sess-c20de862bdb2","input_length":3179,"output_length":267,"hash_ids":[1372078,1372079,1372080,1372081,1372082,1372083,1372084],"delay":9287.0} +{"session_id":"sess-c20de862bdb2","input_length":6024,"output_length":698,"hash_ids":[1372085,1372086,1372087,1372088,1372089,1372090,1372091,1372092,1372093,1372094,1372095,1372096],"delay":388.3} +{"session_id":"sess-c20de862bdb2","input_length":1469,"output_length":673,"hash_ids":[1372097,1372098,1372099],"delay":2746.6} +{"session_id":"sess-c20de862bdb2","input_length":1057,"output_length":176,"hash_ids":[1372100,1372101,1372102],"delay":460.5} +{"session_id":"sess-c20de862bdb2","input_length":894,"output_length":56,"hash_ids":[1372103,1372104],"delay":914.7} +{"session_id":"sess-c20de862bdb2","input_length":1043,"output_length":299,"hash_ids":[1372105,1372106,1372107],"delay":1171.0} +{"session_id":"sess-c20de862bdb2","input_length":3280,"output_length":213,"hash_ids":[1372108,1372109,1372110,1372111,1372112,1372113,1372114],"delay":1585.9} +{"session_id":"sess-c20de862bdb2","input_length":608,"output_length":177,"hash_ids":[1372115,1372116],"delay":2081.0} +{"session_id":"sess-c20de862bdb2","input_length":2291,"output_length":724,"hash_ids":[1372117,1372118,1372119,1372120,1372121],"delay":2064.1} +{"session_id":"sess-c20de862bdb2","input_length":5251,"output_length":1396,"hash_ids":[1372122,1372123,1372124,1372125,1372126,1372127,1372128,1372129,1372130,1372131,1372132],"delay":3031.8} +{"session_id":"sess-c20de862bdb2","input_length":2665,"output_length":250,"hash_ids":[1372133,1372134,1372135,1372136,1372137,1372138],"delay":2962.6} +{"session_id":"sess-c20de862bdb2","input_length":306,"output_length":721,"hash_ids":[1372139],"delay":1264.8} +{"session_id":"sess-c20de862bdb2","input_length":586,"output_length":1233,"hash_ids":[1372140,1372141],"delay":2471.0} +{"session_id":"sess-c20de862bdb2","input_length":3659,"output_length":246,"hash_ids":[1372142,1372143,1372144,1372145,1372146,1372147,1372148,1372149],"delay":1793.1} +{"session_id":"sess-c20de862bdb2","input_length":332,"output_length":275,"hash_ids":[1372150],"delay":2275.7} +{"session_id":"sess-c20de862bdb2","input_length":7596,"output_length":846,"hash_ids":[1372151,1372152,1372153,1372154,1372155,1372156,1372157,1372158,1372159,1372160,1372161,1372162,1372163,1372164,1372165],"delay":1184.5} +{"session_id":"sess-c20de862bdb2","input_length":538,"output_length":455,"hash_ids":[1372166,1372167],"delay":181.4} +{"session_id":"sess-c20de862bdb2","input_length":283,"output_length":88,"hash_ids":[1372168],"delay":671.3} +{"session_id":"sess-c20de862bdb2","input_length":282,"output_length":95,"hash_ids":[1372169],"delay":15466.7} +{"session_id":"sess-c20de862bdb2","input_length":1755,"output_length":440,"hash_ids":[1372170,1372171,1372172,1372173],"delay":17891.2} +{"session_id":"sess-c20de862bdb2","input_length":8154,"output_length":788,"hash_ids":[1372174,1372175,1372176,1372177,1372178,1372179,1372180,1372181,1372182,1372183,1372184,1372185,1372186,1372187,1372188,1372189],"delay":329.5} +{"session_id":"sess-c20de862bdb2","input_length":1158,"output_length":53,"hash_ids":[1372190,1372191,1372192],"delay":6872.6} +{"session_id":"sess-d52b8aedd68e","input_length":63139,"output_length":474,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1376063,1376064,1376065,1376066,1376067,1376068,1376069,1376070,1376071,1376072,1376073,1376074,1376075,1376076,1376077,1376078,1376079,1376080,1376081,1376082,1376083],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d52b8aedd68e","input_length":750,"output_length":332,"hash_ids":[1376084,1376085],"delay":1404.9} +{"session_id":"sess-d52b8aedd68e","input_length":431,"output_length":579,"hash_ids":[1376086],"delay":16177.0} +{"session_id":"sess-d52b8aedd68e","input_length":5390,"output_length":450,"hash_ids":[1376087,1376088,1376089,1376090,1376091,1376092,1376093,1376094,1376095,1376096,1376097],"delay":4826.2} +{"session_id":"sess-d52b8aedd68e","input_length":1480,"output_length":1127,"hash_ids":[1376098,1376099,1376100],"delay":153.3} +{"session_id":"sess-d52b8aedd68e","input_length":6494,"output_length":332,"hash_ids":[1376101,1376102,1376103,1376104,1376105,1376106,1376107,1376108,1376109,1376110,1376111,1376112,1376113],"delay":777.0} +{"session_id":"sess-d52b8aedd68e","input_length":2005,"output_length":826,"hash_ids":[1376114,1376115,1376116,1376117],"delay":3584.5} +{"session_id":"sess-d52b8aedd68e","input_length":2596,"output_length":140,"hash_ids":[1376118,1376119,1376120,1376121,1376122,1376123],"delay":524.1} +{"session_id":"sess-d52b8aedd68e","input_length":3916,"output_length":218,"hash_ids":[1376124,1376125,1376126,1376127,1376128,1376129,1376130,1376131],"delay":5063.9} +{"session_id":"sess-d52b8aedd68e","input_length":902,"output_length":44,"hash_ids":[1376132,1376133],"delay":2570.8} +{"session_id":"sess-d52b8aedd68e","input_length":1723,"output_length":847,"hash_ids":[1376134,1376135,1376136,1376137],"delay":1658.8} +{"session_id":"sess-d52b8aedd68e","input_length":3236,"output_length":198,"hash_ids":[1376138,1376139,1376140,1376141,1376142,1376143,1376144],"delay":4174.3} +{"session_id":"sess-d52b8aedd68e","input_length":405,"output_length":100,"hash_ids":[1376145],"delay":21822.9} +{"session_id":"sess-d52b8aedd68e","input_length":5648,"output_length":455,"hash_ids":[1376146,1376147,1376148,1376149,1376150,1376151,1376152,1376153,1376154,1376155,1376156,1376157],"delay":933.5} +{"session_id":"sess-78068b858768","input_length":54260,"output_length":1638,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1380063,1380064,1380065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-78068b858768","input_length":2405,"output_length":2254,"hash_ids":[1380066,1380067,1380068,1380069,1380070],"delay":2749.9} +{"session_id":"sess-78068b858768","input_length":387,"output_length":109,"hash_ids":[1380071],"delay":1366.4} +{"session_id":"sess-78068b858768","input_length":486,"output_length":169,"hash_ids":[1380072],"delay":4544.3} +{"session_id":"sess-78068b858768","input_length":5814,"output_length":84,"hash_ids":[1380073,1380074,1380075,1380076,1380077,1380078,1380079,1380080,1380081,1380082,1380083,1380084],"delay":54771.4} +{"session_id":"sess-78068b858768","input_length":1330,"output_length":1405,"hash_ids":[1380085,1380086,1380087],"delay":1369.2} +{"session_id":"sess-78068b858768","input_length":9318,"output_length":365,"hash_ids":[1380088,1380089,1380090,1380091,1380092,1380093,1380094,1380095,1380096,1380097,1380098,1380099,1380100,1380101,1380102,1380103,1380104,1380105,1380106],"delay":11086.7} +{"session_id":"sess-78068b858768","input_length":1514,"output_length":323,"hash_ids":[1380107,1380108,1380109],"delay":2224.5} +{"session_id":"sess-78068b858768","input_length":539,"output_length":434,"hash_ids":[1380110,1380111],"delay":1050.6} +{"session_id":"sess-78068b858768","input_length":646,"output_length":111,"hash_ids":[1380112,1380113],"delay":475.7} +{"session_id":"sess-22633809c973","input_length":74323,"output_length":253,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1384063,1384064,1384065,1384066,1384067,1384068,1384069,1384070,1384071,1384072,1384073,1384074,1384075,1384076,1384077,1384078,1384079,1384080,1384081,1384082,1384083,1384084,1384085,1384086,1384087,1384088,1384089,1384090,1384091,1384092,1384093,1384094,1384095,1384096,1384097,1384098,1384099,1384100,1384101,1384102,1384103,1384104,1384105],"timestamp":0.0,"group_id":3} +{"session_id":"sess-22633809c973","input_length":812,"output_length":306,"hash_ids":[1384106,1384107],"delay":1093.6} +{"session_id":"sess-22633809c973","input_length":621,"output_length":1492,"hash_ids":[1384108,1384109],"delay":19966.9} +{"session_id":"sess-22633809c973","input_length":1115,"output_length":217,"hash_ids":[1384110,1384111,1384112],"delay":714.2} +{"session_id":"sess-22633809c973","input_length":2711,"output_length":122,"hash_ids":[1384113,1384114,1384115,1384116,1384117,1384118],"delay":4912.5} +{"session_id":"sess-22633809c973","input_length":3595,"output_length":153,"hash_ids":[1384119,1384120,1384121,1384122,1384123,1384124,1384125,1384126],"delay":5836.5} +{"session_id":"sess-22633809c973","input_length":6179,"output_length":229,"hash_ids":[1384127,1384128,1384129,1384130,1384131,1384132,1384133,1384134,1384135,1384136,1384137,1384138,1384139],"delay":15535.5} +{"session_id":"sess-22633809c973","input_length":1770,"output_length":216,"hash_ids":[1384140,1384141,1384142,1384143],"delay":201.0} +{"session_id":"sess-22633809c973","input_length":1141,"output_length":100,"hash_ids":[1384144,1384145,1384146],"delay":161.5} +{"session_id":"sess-9c24b4b7aba1","input_length":55217,"output_length":546,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1388063,1388064,1388065,1388066,1388067],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9c24b4b7aba1","input_length":351,"output_length":247,"hash_ids":[1388068],"delay":1586.5} +{"session_id":"sess-9c24b4b7aba1","input_length":886,"output_length":94,"hash_ids":[1388069,1388070],"delay":75496.7} +{"session_id":"sess-9c24b4b7aba1","input_length":517,"output_length":707,"hash_ids":[1388071,1388072],"delay":2815.0} +{"session_id":"sess-9c24b4b7aba1","input_length":4225,"output_length":140,"hash_ids":[1388073,1388074,1388075,1388076,1388077,1388078,1388079,1388080,1388081],"delay":276.9} +{"session_id":"sess-9c24b4b7aba1","input_length":307,"output_length":2168,"hash_ids":[1388082],"delay":13891.6} +{"session_id":"sess-9c24b4b7aba1","input_length":2271,"output_length":562,"hash_ids":[1388083,1388084,1388085,1388086,1388087],"delay":508.9} +{"session_id":"sess-ea94becdb0f4","input_length":56820,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1392063,1392064,1392065,1392066,1392067,1392068,1392069,1392070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ea94becdb0f4","input_length":1026,"output_length":410,"hash_ids":[1392071,1392072,1392073],"delay":2763.6} +{"session_id":"sess-ea94becdb0f4","input_length":560,"output_length":346,"hash_ids":[1392074,1392075],"delay":3496.5} +{"session_id":"sess-ea94becdb0f4","input_length":4741,"output_length":96,"hash_ids":[1392076,1392077,1392078,1392079,1392080,1392081,1392082,1392083,1392084,1392085],"delay":356.7} +{"session_id":"sess-ea94becdb0f4","input_length":9593,"output_length":83,"hash_ids":[1392086,1392087,1392088,1392089,1392090,1392091,1392092,1392093,1392094,1392095,1392096,1392097,1392098,1392099,1392100,1392101,1392102,1392103,1392104],"delay":916.1} +{"session_id":"sess-3858330263d0","input_length":69436,"output_length":585,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,1396063,1396064,1396065,1396066,1396067,1396068,1396069,1396070,1396071,1396072,1396073,1396074,1396075,1396076,1396077,1396078,1396079,1396080,1396081,1396082,1396083,1396084,1396085,1396086,1396087,1396088,1396089,1396090,1396091,1396092,1396093,1396094,1396095],"timestamp":0.0,"group_id":24} +{"session_id":"sess-3858330263d0","input_length":4720,"output_length":341,"hash_ids":[1396096,1396097,1396098,1396099,1396100,1396101,1396102,1396103,1396104,1396105],"delay":922.3} +{"session_id":"sess-3858330263d0","input_length":1089,"output_length":524,"hash_ids":[1396106,1396107,1396108],"delay":7575.9} +{"session_id":"sess-3858330263d0","input_length":2295,"output_length":222,"hash_ids":[1396109,1396110,1396111,1396112,1396113],"delay":331.7} +{"session_id":"sess-3858330263d0","input_length":4924,"output_length":83,"hash_ids":[1396114,1396115,1396116,1396117,1396118,1396119,1396120,1396121,1396122,1396123],"delay":4504.0} +{"session_id":"sess-3858330263d0","input_length":1377,"output_length":312,"hash_ids":[1396124,1396125,1396126],"delay":1429.9} +{"session_id":"sess-3858330263d0","input_length":9955,"output_length":173,"hash_ids":[1396127,1396128,1396129,1396130,1396131,1396132,1396133,1396134,1396135,1396136,1396137,1396138,1396139,1396140,1396141,1396142,1396143,1396144,1396145,1396146],"delay":4408.7} +{"session_id":"sess-3858330263d0","input_length":1979,"output_length":433,"hash_ids":[1396147,1396148,1396149,1396150],"delay":533.7} +{"session_id":"sess-3858330263d0","input_length":1091,"output_length":30,"hash_ids":[1396151,1396152,1396153],"delay":241.1} +{"session_id":"sess-3858330263d0","input_length":358,"output_length":473,"hash_ids":[1396154],"delay":2255.5} +{"session_id":"sess-3858330263d0","input_length":1502,"output_length":992,"hash_ids":[1396155,1396156,1396157],"delay":340.8} +{"session_id":"sess-3858330263d0","input_length":327,"output_length":867,"hash_ids":[1396158],"delay":591.8} +{"session_id":"sess-3858330263d0","input_length":5358,"output_length":290,"hash_ids":[1396159,1396160,1396161,1396162,1396163,1396164,1396165,1396166,1396167,1396168,1396169],"delay":968.7} +{"session_id":"sess-3858330263d0","input_length":1744,"output_length":133,"hash_ids":[1396170,1396171,1396172,1396173],"delay":579.1} +{"session_id":"sess-3858330263d0","input_length":6210,"output_length":117,"hash_ids":[1396174,1396175,1396176,1396177,1396178,1396179,1396180,1396181,1396182,1396183,1396184,1396185,1396186],"delay":1581.4} +{"session_id":"sess-3858330263d0","input_length":1863,"output_length":178,"hash_ids":[1396187,1396188,1396189,1396190],"delay":176.7} +{"session_id":"sess-3858330263d0","input_length":1902,"output_length":107,"hash_ids":[1396191,1396192,1396193,1396194],"delay":3941.1} +{"session_id":"sess-3858330263d0","input_length":1553,"output_length":74,"hash_ids":[1396195,1396196,1396197,1396198],"delay":368.8} +{"session_id":"sess-3858330263d0","input_length":1461,"output_length":100,"hash_ids":[1396199,1396200,1396201],"delay":867.0} +{"session_id":"sess-3858330263d0","input_length":4927,"output_length":268,"hash_ids":[1396202,1396203,1396204,1396205,1396206,1396207,1396208,1396209,1396210,1396211],"delay":2116.0} +{"session_id":"sess-df32ecf24e38","input_length":57116,"output_length":124,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1400063,1400064,1400065,1400066,1400067,1400068,1400069,1400070,1400071],"timestamp":0.0,"group_id":3} +{"session_id":"sess-df32ecf24e38","input_length":783,"output_length":138,"hash_ids":[1400072,1400073],"delay":814.5} +{"session_id":"sess-df32ecf24e38","input_length":6475,"output_length":602,"hash_ids":[1400074,1400075,1400076,1400077,1400078,1400079,1400080,1400081,1400082,1400083,1400084,1400085,1400086],"delay":4658.8} +{"session_id":"sess-df32ecf24e38","input_length":960,"output_length":437,"hash_ids":[1400087,1400088],"delay":831.9} +{"session_id":"sess-df32ecf24e38","input_length":2238,"output_length":1185,"hash_ids":[1400089,1400090,1400091,1400092,1400093],"delay":1204.5} +{"session_id":"sess-df32ecf24e38","input_length":316,"output_length":168,"hash_ids":[1400094],"delay":1557.5} +{"session_id":"sess-df32ecf24e38","input_length":1034,"output_length":533,"hash_ids":[1400095,1400096,1400097],"delay":21889.4} +{"session_id":"sess-df32ecf24e38","input_length":461,"output_length":268,"hash_ids":[1400098],"delay":25848.2} +{"session_id":"sess-df32ecf24e38","input_length":1575,"output_length":235,"hash_ids":[1400099,1400100,1400101,1400102],"delay":871.3} +{"session_id":"sess-df32ecf24e38","input_length":1586,"output_length":124,"hash_ids":[1400103,1400104,1400105,1400106],"delay":18578.5} +{"session_id":"sess-df32ecf24e38","input_length":535,"output_length":2160,"hash_ids":[1400107,1400108],"delay":349.7} +{"session_id":"sess-df32ecf24e38","input_length":3445,"output_length":1330,"hash_ids":[1400109,1400110,1400111,1400112,1400113,1400114,1400115],"delay":161.5} +{"session_id":"sess-df32ecf24e38","input_length":545,"output_length":485,"hash_ids":[1400116,1400117],"delay":803.7} +{"session_id":"sess-df32ecf24e38","input_length":939,"output_length":131,"hash_ids":[1400118,1400119],"delay":411.9} +{"session_id":"sess-df32ecf24e38","input_length":5962,"output_length":233,"hash_ids":[1400120,1400121,1400122,1400123,1400124,1400125,1400126,1400127,1400128,1400129,1400130,1400131],"delay":1883.6} +{"session_id":"sess-df32ecf24e38","input_length":3699,"output_length":285,"hash_ids":[1400132,1400133,1400134,1400135,1400136,1400137,1400138,1400139],"delay":1229.0} +{"session_id":"sess-df32ecf24e38","input_length":622,"output_length":253,"hash_ids":[1400140,1400141],"delay":2614.7} +{"session_id":"sess-f06b9b6d6e14","input_length":54438,"output_length":282,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,1404063,1404064,1404065,1404066],"timestamp":0.0,"group_id":34} +{"session_id":"sess-f06b9b6d6e14","input_length":2282,"output_length":39,"hash_ids":[1404067,1404068,1404069,1404070,1404071],"delay":211.8} +{"session_id":"sess-f06b9b6d6e14","input_length":2698,"output_length":30,"hash_ids":[1404072,1404073,1404074,1404075,1404076,1404077],"delay":4106.9} +{"session_id":"sess-f06b9b6d6e14","input_length":534,"output_length":496,"hash_ids":[1404078,1404079],"delay":3124.4} +{"session_id":"sess-f06b9b6d6e14","input_length":587,"output_length":211,"hash_ids":[1404080,1404081],"delay":673.2} +{"session_id":"sess-f06b9b6d6e14","input_length":1976,"output_length":185,"hash_ids":[1404082,1404083,1404084,1404085],"delay":1940.5} +{"session_id":"sess-f06b9b6d6e14","input_length":3844,"output_length":174,"hash_ids":[1404086,1404087,1404088,1404089,1404090,1404091,1404092,1404093],"delay":6023.8} +{"session_id":"sess-f06b9b6d6e14","input_length":1912,"output_length":134,"hash_ids":[1404094,1404095,1404096,1404097],"delay":1571.8} +{"session_id":"sess-f06b9b6d6e14","input_length":3974,"output_length":88,"hash_ids":[1404098,1404099,1404100,1404101,1404102,1404103,1404104,1404105],"delay":63331.9} +{"session_id":"sess-f06b9b6d6e14","input_length":6523,"output_length":97,"hash_ids":[1404106,1404107,1404108,1404109,1404110,1404111,1404112,1404113,1404114,1404115,1404116,1404117,1404118],"delay":1461.4} +{"session_id":"sess-f06b9b6d6e14","input_length":559,"output_length":108,"hash_ids":[1404119,1404120],"delay":1033.6} +{"session_id":"sess-f06b9b6d6e14","input_length":7745,"output_length":862,"hash_ids":[1404121,1404122,1404123,1404124,1404125,1404126,1404127,1404128,1404129,1404130,1404131,1404132,1404133,1404134,1404135,1404136],"delay":242.4} +{"session_id":"sess-f06b9b6d6e14","input_length":1193,"output_length":734,"hash_ids":[1404137,1404138,1404139],"delay":2026.5} +{"session_id":"sess-f06b9b6d6e14","input_length":483,"output_length":196,"hash_ids":[1404140],"delay":9673.7} +{"session_id":"sess-f06b9b6d6e14","input_length":2437,"output_length":173,"hash_ids":[1404141,1404142,1404143,1404144,1404145],"delay":1732.4} +{"session_id":"sess-f06b9b6d6e14","input_length":7764,"output_length":605,"hash_ids":[1404146,1404147,1404148,1404149,1404150,1404151,1404152,1404153,1404154,1404155,1404156,1404157,1404158,1404159,1404160,1404161],"delay":3022.7} +{"session_id":"sess-f06b9b6d6e14","input_length":7578,"output_length":48,"hash_ids":[1404162,1404163,1404164,1404165,1404166,1404167,1404168,1404169,1404170,1404171,1404172,1404173,1404174,1404175,1404176],"delay":1843.4} +{"session_id":"sess-f06b9b6d6e14","input_length":1253,"output_length":531,"hash_ids":[1404177,1404178,1404179],"delay":1329.4} +{"session_id":"sess-f06b9b6d6e14","input_length":5473,"output_length":847,"hash_ids":[1404180,1404181,1404182,1404183,1404184,1404185,1404186,1404187,1404188,1404189,1404190],"delay":6335.3} +{"session_id":"sess-f06b9b6d6e14","input_length":6299,"output_length":183,"hash_ids":[1404191,1404192,1404193,1404194,1404195,1404196,1404197,1404198,1404199,1404200,1404201,1404202,1404203],"delay":241.7} +{"session_id":"sess-f06b9b6d6e14","input_length":1757,"output_length":121,"hash_ids":[1404204,1404205,1404206,1404207],"delay":1076.9} +{"session_id":"sess-ab69ce347b84","input_length":64593,"output_length":462,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1408063,1408064,1408065,1408066,1408067,1408068,1408069,1408070,1408071,1408072,1408073,1408074,1408075,1408076,1408077,1408078,1408079,1408080,1408081,1408082,1408083,1408084,1408085,1408086],"timestamp":0.0,"group_id":6} +{"session_id":"sess-ab69ce347b84","input_length":840,"output_length":347,"hash_ids":[1408087,1408088],"delay":5081.7} +{"session_id":"sess-ab69ce347b84","input_length":6700,"output_length":215,"hash_ids":[1408089,1408090,1408091,1408092,1408093,1408094,1408095,1408096,1408097,1408098,1408099,1408100,1408101,1408102],"delay":484.5} +{"session_id":"sess-ab69ce347b84","input_length":1190,"output_length":252,"hash_ids":[1408103,1408104,1408105],"delay":3667.4} +{"session_id":"sess-ab69ce347b84","input_length":273,"output_length":1755,"hash_ids":[1408106],"delay":3498.7} +{"session_id":"sess-ab69ce347b84","input_length":3883,"output_length":64,"hash_ids":[1408107,1408108,1408109,1408110,1408111,1408112,1408113,1408114],"delay":685.3} +{"session_id":"sess-ab69ce347b84","input_length":1011,"output_length":313,"hash_ids":[1408115,1408116],"delay":868.7} +{"session_id":"sess-ab69ce347b84","input_length":503,"output_length":99,"hash_ids":[1408117],"delay":838.9} +{"session_id":"sess-ab69ce347b84","input_length":273,"output_length":292,"hash_ids":[1408118],"delay":46696.4} +{"session_id":"sess-ab69ce347b84","input_length":3688,"output_length":270,"hash_ids":[1408119,1408120,1408121,1408122,1408123,1408124,1408125,1408126],"delay":4319.3} +{"session_id":"sess-ab69ce347b84","input_length":3329,"output_length":476,"hash_ids":[1408127,1408128,1408129,1408130,1408131,1408132,1408133],"delay":234.3} +{"session_id":"sess-ab69ce347b84","input_length":1538,"output_length":71,"hash_ids":[1408134,1408135,1408136,1408137],"delay":41198.6} +{"session_id":"sess-ab69ce347b84","input_length":1159,"output_length":340,"hash_ids":[1408138,1408139,1408140],"delay":1666.0} +{"session_id":"sess-ab69ce347b84","input_length":247,"output_length":379,"hash_ids":[1408141],"delay":462.5} +{"session_id":"sess-ab69ce347b84","input_length":2659,"output_length":164,"hash_ids":[1408142,1408143,1408144,1408145,1408146,1408147],"delay":502.6} +{"session_id":"sess-ab69ce347b84","input_length":1010,"output_length":783,"hash_ids":[1408148,1408149],"delay":16240.5} +{"session_id":"sess-ab69ce347b84","input_length":971,"output_length":221,"hash_ids":[1408150,1408151],"delay":7947.3} +{"session_id":"sess-ab69ce347b84","input_length":1587,"output_length":622,"hash_ids":[1408152,1408153,1408154,1408155],"delay":340.4} +{"session_id":"sess-dcf36f4d6e3c","input_length":55733,"output_length":167,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1412063,1412064,1412065,1412066,1412067,1412068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-dcf36f4d6e3c","input_length":3921,"output_length":1608,"hash_ids":[1412069,1412070,1412071,1412072,1412073,1412074,1412075,1412076],"delay":32631.5} +{"session_id":"sess-005e5137b0af","input_length":71753,"output_length":384,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1416063,1416064,1416065,1416066,1416067,1416068,1416069,1416070,1416071,1416072,1416073,1416074,1416075,1416076,1416077,1416078,1416079,1416080,1416081,1416082,1416083,1416084,1416085,1416086,1416087,1416088,1416089,1416090,1416091,1416092,1416093,1416094,1416095,1416096,1416097,1416098,1416099,1416100],"timestamp":0.0,"group_id":10} +{"session_id":"sess-005e5137b0af","input_length":4737,"output_length":107,"hash_ids":[1416101,1416102,1416103,1416104,1416105,1416106,1416107,1416108,1416109,1416110],"delay":1486.7} +{"session_id":"sess-005e5137b0af","input_length":2830,"output_length":284,"hash_ids":[1416111,1416112,1416113,1416114,1416115,1416116],"delay":1573.3} +{"session_id":"sess-005e5137b0af","input_length":1575,"output_length":216,"hash_ids":[1416117,1416118,1416119,1416120],"delay":519.5} +{"session_id":"sess-005e5137b0af","input_length":1090,"output_length":269,"hash_ids":[1416121,1416122,1416123],"delay":13818.3} +{"session_id":"sess-005e5137b0af","input_length":596,"output_length":61,"hash_ids":[1416124,1416125],"delay":767.7} +{"session_id":"sess-005e5137b0af","input_length":454,"output_length":55,"hash_ids":[1416126],"delay":2865.2} +{"session_id":"sess-005e5137b0af","input_length":910,"output_length":183,"hash_ids":[1416127,1416128],"delay":617.0} +{"session_id":"sess-005e5137b0af","input_length":1497,"output_length":456,"hash_ids":[1416129,1416130,1416131],"delay":680.5} +{"session_id":"sess-005e5137b0af","input_length":774,"output_length":309,"hash_ids":[1416132,1416133],"delay":389.7} +{"session_id":"sess-005e5137b0af","input_length":4073,"output_length":1544,"hash_ids":[1416134,1416135,1416136,1416137,1416138,1416139,1416140,1416141],"delay":1176.5} +{"session_id":"sess-005e5137b0af","input_length":5873,"output_length":193,"hash_ids":[1416142,1416143,1416144,1416145,1416146,1416147,1416148,1416149,1416150,1416151,1416152,1416153],"delay":6927.9} +{"session_id":"sess-3a69475a8ce0","input_length":53238,"output_length":1494,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,1420063],"timestamp":0.0,"group_id":17} +{"session_id":"sess-3a69475a8ce0","input_length":9998,"output_length":155,"hash_ids":[1420064,1420065,1420066,1420067,1420068,1420069,1420070,1420071,1420072,1420073,1420074,1420075,1420076,1420077,1420078,1420079,1420080,1420081,1420082,1420083],"delay":20195.3} +{"session_id":"sess-3a69475a8ce0","input_length":181,"output_length":331,"hash_ids":[1420084],"delay":15126.1} +{"session_id":"sess-3a69475a8ce0","input_length":128,"output_length":334,"hash_ids":[1420085],"delay":726.2} +{"session_id":"sess-3a69475a8ce0","input_length":2287,"output_length":1782,"hash_ids":[1420086,1420087,1420088,1420089,1420090],"delay":1067.6} +{"session_id":"sess-3a69475a8ce0","input_length":2662,"output_length":279,"hash_ids":[1420091,1420092,1420093,1420094,1420095,1420096],"delay":612.2} +{"session_id":"sess-bcdfb1557f56","input_length":61538,"output_length":1254,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1424063,1424064,1424065,1424066,1424067,1424068,1424069,1424070,1424071,1424072,1424073,1424074,1424075,1424076,1424077,1424078,1424079,1424080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bcdfb1557f56","input_length":1253,"output_length":102,"hash_ids":[1424081,1424082,1424083],"delay":1061.6} +{"session_id":"sess-bcdfb1557f56","input_length":1855,"output_length":447,"hash_ids":[1424084,1424085,1424086,1424087],"delay":731.2} +{"session_id":"sess-bcdfb1557f56","input_length":401,"output_length":66,"hash_ids":[1424088],"delay":22294.7} +{"session_id":"sess-bcdfb1557f56","input_length":1936,"output_length":141,"hash_ids":[1424089,1424090,1424091,1424092],"delay":2648.4} +{"session_id":"sess-bcdfb1557f56","input_length":1350,"output_length":752,"hash_ids":[1424093,1424094,1424095],"delay":1973.3} +{"session_id":"sess-bcdfb1557f56","input_length":5755,"output_length":126,"hash_ids":[1424096,1424097,1424098,1424099,1424100,1424101,1424102,1424103,1424104,1424105,1424106,1424107],"delay":968.5} +{"session_id":"sess-0a6e152803d8","input_length":53387,"output_length":286,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1428063,1428064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-0a6e152803d8","input_length":1725,"output_length":562,"hash_ids":[1428065,1428066,1428067,1428068],"delay":1080.3} +{"session_id":"sess-0a6e152803d8","input_length":1008,"output_length":696,"hash_ids":[1428069,1428070],"delay":2411.2} +{"session_id":"sess-0a6e152803d8","input_length":1592,"output_length":176,"hash_ids":[1428071,1428072,1428073,1428074],"delay":22017.3} +{"session_id":"sess-0a6e152803d8","input_length":4847,"output_length":279,"hash_ids":[1428075,1428076,1428077,1428078,1428079,1428080,1428081,1428082,1428083,1428084],"delay":1990.7} +{"session_id":"sess-0a6e152803d8","input_length":6112,"output_length":179,"hash_ids":[1428085,1428086,1428087,1428088,1428089,1428090,1428091,1428092,1428093,1428094,1428095,1428096],"delay":805.2} +{"session_id":"sess-0a6e152803d8","input_length":1702,"output_length":160,"hash_ids":[1428097,1428098,1428099,1428100],"delay":7589.8} +{"session_id":"sess-0a6e152803d8","input_length":271,"output_length":190,"hash_ids":[1428101],"delay":2935.8} +{"session_id":"sess-0a6e152803d8","input_length":164,"output_length":431,"hash_ids":[1428102],"delay":451.8} +{"session_id":"sess-0a6e152803d8","input_length":1586,"output_length":163,"hash_ids":[1428103,1428104,1428105,1428106],"delay":7280.2} +{"session_id":"sess-0a6e152803d8","input_length":1707,"output_length":65,"hash_ids":[1428107,1428108,1428109,1428110],"delay":2508.9} +{"session_id":"sess-a2e631174649","input_length":55260,"output_length":378,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,1432063,1432064,1432065,1432066,1432067],"timestamp":0.0,"group_id":31} +{"session_id":"sess-a2e631174649","input_length":2235,"output_length":121,"hash_ids":[1432068,1432069,1432070,1432071,1432072],"delay":1713.5} +{"session_id":"sess-a2e631174649","input_length":1316,"output_length":207,"hash_ids":[1432073,1432074,1432075],"delay":23768.4} +{"session_id":"sess-a2e631174649","input_length":503,"output_length":2121,"hash_ids":[1432076],"delay":992.0} +{"session_id":"sess-a2e631174649","input_length":656,"output_length":1389,"hash_ids":[1432077,1432078],"delay":2157.2} +{"session_id":"sess-a2e631174649","input_length":1293,"output_length":175,"hash_ids":[1432079,1432080,1432081],"delay":728.6} +{"session_id":"sess-a2e631174649","input_length":7007,"output_length":257,"hash_ids":[1432082,1432083,1432084,1432085,1432086,1432087,1432088,1432089,1432090,1432091,1432092,1432093,1432094,1432095],"delay":3080.2} +{"session_id":"sess-a2e631174649","input_length":4657,"output_length":615,"hash_ids":[1432096,1432097,1432098,1432099,1432100,1432101,1432102,1432103,1432104,1432105],"delay":14362.5} +{"session_id":"sess-a2e631174649","input_length":2005,"output_length":676,"hash_ids":[1432106,1432107,1432108,1432109],"delay":934.4} +{"session_id":"sess-a2e631174649","input_length":3062,"output_length":411,"hash_ids":[1432110,1432111,1432112,1432113,1432114,1432115],"delay":263.6} +{"session_id":"sess-a2e631174649","input_length":3395,"output_length":537,"hash_ids":[1432116,1432117,1432118,1432119,1432120,1432121,1432122],"delay":2519.4} +{"session_id":"sess-a2e631174649","input_length":1027,"output_length":429,"hash_ids":[1432123,1432124,1432125],"delay":501.3} +{"session_id":"sess-a2e631174649","input_length":1395,"output_length":96,"hash_ids":[1432126,1432127,1432128],"delay":172.7} +{"session_id":"sess-a2e631174649","input_length":263,"output_length":105,"hash_ids":[1432129],"delay":38139.0} +{"session_id":"sess-a2e631174649","input_length":560,"output_length":132,"hash_ids":[1432130,1432131],"delay":17981.7} +{"session_id":"sess-a2e631174649","input_length":3886,"output_length":250,"hash_ids":[1432132,1432133,1432134,1432135,1432136,1432137,1432138,1432139],"delay":547.1} +{"session_id":"sess-a2e631174649","input_length":234,"output_length":219,"hash_ids":[1432140],"delay":219.3} +{"session_id":"sess-a2e631174649","input_length":5414,"output_length":108,"hash_ids":[1432141,1432142,1432143,1432144,1432145,1432146,1432147,1432148,1432149,1432150,1432151],"delay":26712.7} +{"session_id":"sess-a2e631174649","input_length":352,"output_length":66,"hash_ids":[1432152],"delay":2161.5} +{"session_id":"sess-a2e631174649","input_length":5196,"output_length":369,"hash_ids":[1432153,1432154,1432155,1432156,1432157,1432158,1432159,1432160,1432161,1432162,1432163],"delay":511.0} +{"session_id":"sess-a2e631174649","input_length":1485,"output_length":1392,"hash_ids":[1432164,1432165,1432166],"delay":264.7} +{"session_id":"sess-a2e631174649","input_length":1207,"output_length":503,"hash_ids":[1432167,1432168,1432169],"delay":323.2} +{"session_id":"sess-a2e631174649","input_length":961,"output_length":165,"hash_ids":[1432170,1432171],"delay":36985.4} +{"session_id":"sess-a2e631174649","input_length":5088,"output_length":326,"hash_ids":[1432172,1432173,1432174,1432175,1432176,1432177,1432178,1432179,1432180,1432181],"delay":274.1} +{"session_id":"sess-a2e631174649","input_length":808,"output_length":58,"hash_ids":[1432182,1432183],"delay":245.2} +{"session_id":"sess-a2e631174649","input_length":603,"output_length":74,"hash_ids":[1432184,1432185],"delay":316.2} +{"session_id":"sess-a2e631174649","input_length":4231,"output_length":1429,"hash_ids":[1432186,1432187,1432188,1432189,1432190,1432191,1432192,1432193,1432194],"delay":6405.6} +{"session_id":"sess-a2e631174649","input_length":811,"output_length":640,"hash_ids":[1432195,1432196],"delay":187.1} +{"session_id":"sess-a2e631174649","input_length":511,"output_length":1515,"hash_ids":[1432197],"delay":358.3} +{"session_id":"sess-83f423b032b7","input_length":52358,"output_length":215,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-83f423b032b7","input_length":433,"output_length":1581,"hash_ids":[1432198],"delay":728.8} +{"session_id":"sess-83f423b032b7","input_length":2200,"output_length":123,"hash_ids":[1432199,1432200,1432201,1432202,1432203],"delay":1517.4} +{"session_id":"sess-83f423b032b7","input_length":7039,"output_length":72,"hash_ids":[1432204,1432205,1432206,1432207,1432208,1432209,1432210,1432211,1432212,1432213,1432214,1432215,1432216,1432217],"delay":4058.3} +{"session_id":"sess-83f423b032b7","input_length":472,"output_length":1211,"hash_ids":[1432218],"delay":532.3} +{"session_id":"sess-83f423b032b7","input_length":2555,"output_length":86,"hash_ids":[1432219,1432220,1432221,1432222,1432223],"delay":338.5} +{"session_id":"sess-83f423b032b7","input_length":5075,"output_length":78,"hash_ids":[1432224,1432225,1432226,1432227,1432228,1432229,1432230,1432231,1432232,1432233],"delay":1153.1} +{"session_id":"sess-83f423b032b7","input_length":2127,"output_length":423,"hash_ids":[1432234,1432235,1432236,1432237,1432238],"delay":1387.1} +{"session_id":"sess-83f423b032b7","input_length":2293,"output_length":844,"hash_ids":[1432239,1432240,1432241,1432242,1432243],"delay":3731.9} +{"session_id":"sess-83f423b032b7","input_length":5641,"output_length":54,"hash_ids":[1432244,1432245,1432246,1432247,1432248,1432249,1432250,1432251,1432252,1432253,1432254,1432255],"delay":2215.4} +{"session_id":"sess-83f423b032b7","input_length":3738,"output_length":30,"hash_ids":[1432256,1432257,1432258,1432259,1432260,1432261,1432262,1432263],"delay":30325.4} +{"session_id":"sess-83f423b032b7","input_length":967,"output_length":284,"hash_ids":[1432264,1432265],"delay":990.0} +{"session_id":"sess-83f423b032b7","input_length":270,"output_length":455,"hash_ids":[1432266],"delay":1571.4} +{"session_id":"sess-83f423b032b7","input_length":400,"output_length":642,"hash_ids":[1432267],"delay":4703.4} +{"session_id":"sess-83f423b032b7","input_length":1691,"output_length":376,"hash_ids":[1432268,1432269,1432270,1432271],"delay":3698.4} +{"session_id":"sess-83f423b032b7","input_length":568,"output_length":456,"hash_ids":[1432272,1432273],"delay":705.1} +{"session_id":"sess-83f423b032b7","input_length":4940,"output_length":642,"hash_ids":[1432274,1432275,1432276,1432277,1432278,1432279,1432280,1432281,1432282,1432283],"delay":23057.5} +{"session_id":"sess-83f423b032b7","input_length":1438,"output_length":125,"hash_ids":[1432284,1432285,1432286],"delay":895.9} +{"session_id":"sess-83f423b032b7","input_length":2020,"output_length":298,"hash_ids":[1432287,1432288,1432289,1432290],"delay":1231.7} +{"session_id":"sess-83f423b032b7","input_length":4398,"output_length":72,"hash_ids":[1432291,1432292,1432293,1432294,1432295,1432296,1432297,1432298,1432299],"delay":464.5} +{"session_id":"sess-83f423b032b7","input_length":821,"output_length":2306,"hash_ids":[1432300,1432301],"delay":3258.4} +{"session_id":"sess-83f423b032b7","input_length":214,"output_length":171,"hash_ids":[1432302],"delay":937.8} +{"session_id":"sess-83f423b032b7","input_length":1330,"output_length":146,"hash_ids":[1432303,1432304,1432305],"delay":2330.5} +{"session_id":"sess-83f423b032b7","input_length":2745,"output_length":72,"hash_ids":[1432306,1432307,1432308,1432309,1432310,1432311],"delay":1688.2} +{"session_id":"sess-83f423b032b7","input_length":1046,"output_length":628,"hash_ids":[1432312,1432313,1432314],"delay":191.2} +{"session_id":"sess-83f423b032b7","input_length":2516,"output_length":377,"hash_ids":[1432315,1432316,1432317,1432318,1432319],"delay":184.4} +{"session_id":"sess-83f423b032b7","input_length":2716,"output_length":344,"hash_ids":[1432320,1432321,1432322,1432323,1432324,1432325],"delay":3598.2} +{"session_id":"sess-83f423b032b7","input_length":202,"output_length":102,"hash_ids":[1432326],"delay":189.5} +{"session_id":"sess-949231c6a17b","input_length":54748,"output_length":498,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,1440063,1440064,1440065,1440066],"timestamp":0.0,"group_id":31} +{"session_id":"sess-949231c6a17b","input_length":407,"output_length":281,"hash_ids":[1440067],"delay":2171.5} +{"session_id":"sess-949231c6a17b","input_length":1223,"output_length":286,"hash_ids":[1440068,1440069,1440070],"delay":32602.1} +{"session_id":"sess-949231c6a17b","input_length":975,"output_length":735,"hash_ids":[1440071,1440072],"delay":717.1} +{"session_id":"sess-949231c6a17b","input_length":9382,"output_length":1401,"hash_ids":[1440073,1440074,1440075,1440076,1440077,1440078,1440079,1440080,1440081,1440082,1440083,1440084,1440085,1440086,1440087,1440088,1440089,1440090,1440091],"delay":5748.5} +{"session_id":"sess-949231c6a17b","input_length":1740,"output_length":200,"hash_ids":[1440092,1440093,1440094,1440095],"delay":18805.6} +{"session_id":"sess-949231c6a17b","input_length":5813,"output_length":215,"hash_ids":[1440096,1440097,1440098,1440099,1440100,1440101,1440102,1440103,1440104,1440105,1440106,1440107],"delay":415.3} +{"session_id":"sess-949231c6a17b","input_length":2941,"output_length":89,"hash_ids":[1440108,1440109,1440110,1440111,1440112,1440113],"delay":422.7} +{"session_id":"sess-949231c6a17b","input_length":8535,"output_length":615,"hash_ids":[1440114,1440115,1440116,1440117,1440118,1440119,1440120,1440121,1440122,1440123,1440124,1440125,1440126,1440127,1440128,1440129,1440130],"delay":2369.4} +{"session_id":"sess-949231c6a17b","input_length":1721,"output_length":395,"hash_ids":[1440131,1440132,1440133,1440134],"delay":54005.2} +{"session_id":"sess-949231c6a17b","input_length":388,"output_length":583,"hash_ids":[1440135],"delay":8983.3} +{"session_id":"sess-949231c6a17b","input_length":987,"output_length":700,"hash_ids":[1440136,1440137],"delay":27414.6} +{"session_id":"sess-949231c6a17b","input_length":1073,"output_length":41,"hash_ids":[1440138,1440139,1440140],"delay":754.6} +{"session_id":"sess-949231c6a17b","input_length":3398,"output_length":107,"hash_ids":[1440141,1440142,1440143,1440144,1440145,1440146,1440147],"delay":6177.6} +{"session_id":"sess-949231c6a17b","input_length":1922,"output_length":417,"hash_ids":[1440148,1440149,1440150,1440151],"delay":566.1} +{"session_id":"sess-949231c6a17b","input_length":1606,"output_length":62,"hash_ids":[1440152,1440153,1440154,1440155],"delay":18255.7} +{"session_id":"sess-949231c6a17b","input_length":1224,"output_length":138,"hash_ids":[1440156,1440157,1440158],"delay":675.8} +{"session_id":"sess-949231c6a17b","input_length":730,"output_length":82,"hash_ids":[1440159,1440160],"delay":1324.4} +{"session_id":"sess-949231c6a17b","input_length":1875,"output_length":326,"hash_ids":[1440161,1440162,1440163,1440164],"delay":430.8} +{"session_id":"sess-949231c6a17b","input_length":918,"output_length":611,"hash_ids":[1440165,1440166],"delay":1630.5} +{"session_id":"sess-949231c6a17b","input_length":239,"output_length":896,"hash_ids":[1440167],"delay":9099.5} +{"session_id":"sess-949231c6a17b","input_length":2550,"output_length":78,"hash_ids":[1440168,1440169,1440170,1440171,1440172],"delay":188.5} +{"session_id":"sess-949231c6a17b","input_length":538,"output_length":60,"hash_ids":[1440173,1440174],"delay":780.2} +{"session_id":"sess-949231c6a17b","input_length":174,"output_length":252,"hash_ids":[1440175],"delay":12291.9} +{"session_id":"sess-949231c6a17b","input_length":803,"output_length":110,"hash_ids":[1440176,1440177],"delay":966.2} +{"session_id":"sess-949231c6a17b","input_length":1274,"output_length":323,"hash_ids":[1440178,1440179,1440180],"delay":22242.0} +{"session_id":"sess-949231c6a17b","input_length":3466,"output_length":213,"hash_ids":[1440181,1440182,1440183,1440184,1440185,1440186,1440187],"delay":326.5} +{"session_id":"sess-949231c6a17b","input_length":557,"output_length":61,"hash_ids":[1440188,1440189],"delay":5061.1} +{"session_id":"sess-949231c6a17b","input_length":1220,"output_length":456,"hash_ids":[1440190,1440191,1440192],"delay":226.0} +{"session_id":"sess-949231c6a17b","input_length":4112,"output_length":277,"hash_ids":[1440193,1440194,1440195,1440196,1440197,1440198,1440199,1440200,1440201],"delay":3769.7} +{"session_id":"sess-949231c6a17b","input_length":1357,"output_length":38,"hash_ids":[1440202,1440203,1440204],"delay":4728.3} +{"session_id":"sess-949231c6a17b","input_length":2077,"output_length":512,"hash_ids":[1440205,1440206,1440207,1440208,1440209],"delay":223.5} +{"session_id":"sess-0a9746d60232","input_length":62082,"output_length":512,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1444063,1444064,1444065,1444066,1444067,1444068,1444069,1444070,1444071,1444072,1444073,1444074,1444075,1444076,1444077,1444078,1444079,1444080,1444081],"timestamp":0.0,"group_id":6} +{"session_id":"sess-0a9746d60232","input_length":2801,"output_length":726,"hash_ids":[1444082,1444083,1444084,1444085,1444086,1444087],"delay":1449.0} +{"session_id":"sess-0a9746d60232","input_length":484,"output_length":283,"hash_ids":[1444088],"delay":3796.7} +{"session_id":"sess-0a9746d60232","input_length":2879,"output_length":450,"hash_ids":[1444089,1444090,1444091,1444092,1444093,1444094],"delay":761.1} +{"session_id":"sess-0a9746d60232","input_length":646,"output_length":70,"hash_ids":[1444095,1444096],"delay":2508.8} +{"session_id":"sess-0a9746d60232","input_length":2694,"output_length":888,"hash_ids":[1444097,1444098,1444099,1444100,1444101,1444102],"delay":1336.2} +{"session_id":"sess-08c73879c76c","input_length":61076,"output_length":464,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1448063,1448064,1448065,1448066,1448067,1448068,1448069,1448070,1448071,1448072,1448073,1448074,1448075,1448076,1448077,1448078,1448079],"timestamp":0.0,"group_id":1} +{"session_id":"sess-08c73879c76c","input_length":2595,"output_length":863,"hash_ids":[1448080,1448081,1448082,1448083,1448084,1448085],"delay":51686.2} +{"session_id":"sess-08c73879c76c","input_length":778,"output_length":433,"hash_ids":[1448086,1448087],"delay":38892.0} +{"session_id":"sess-08c73879c76c","input_length":330,"output_length":2049,"hash_ids":[1448088],"delay":1805.9} +{"session_id":"sess-08c73879c76c","input_length":2226,"output_length":538,"hash_ids":[1448089,1448090,1448091,1448092,1448093],"delay":598.9} +{"session_id":"sess-08c73879c76c","input_length":2102,"output_length":324,"hash_ids":[1448094,1448095,1448096,1448097,1448098],"delay":17595.8} +{"session_id":"sess-08c73879c76c","input_length":2327,"output_length":174,"hash_ids":[1448099,1448100,1448101,1448102,1448103],"delay":217.8} +{"session_id":"sess-08c73879c76c","input_length":3085,"output_length":269,"hash_ids":[1448104,1448105,1448106,1448107,1448108,1448109,1448110],"delay":29470.0} +{"session_id":"sess-08c73879c76c","input_length":132,"output_length":151,"hash_ids":[1448111],"delay":477.9} +{"session_id":"sess-08c73879c76c","input_length":7863,"output_length":252,"hash_ids":[1448112,1448113,1448114,1448115,1448116,1448117,1448118,1448119,1448120,1448121,1448122,1448123,1448124,1448125,1448126,1448127],"delay":357.8} +{"session_id":"sess-08c73879c76c","input_length":2016,"output_length":1931,"hash_ids":[1448128,1448129,1448130,1448131],"delay":466.5} +{"session_id":"sess-08c73879c76c","input_length":3292,"output_length":60,"hash_ids":[1448132,1448133,1448134,1448135,1448136,1448137,1448138],"delay":1180.2} +{"session_id":"sess-08c73879c76c","input_length":636,"output_length":437,"hash_ids":[1448139,1448140],"delay":1811.0} +{"session_id":"sess-08c73879c76c","input_length":1993,"output_length":285,"hash_ids":[1448141,1448142,1448143,1448144],"delay":387.0} +{"session_id":"sess-08c73879c76c","input_length":7752,"output_length":318,"hash_ids":[1448145,1448146,1448147,1448148,1448149,1448150,1448151,1448152,1448153,1448154,1448155,1448156,1448157,1448158,1448159,1448160],"delay":6416.9} +{"session_id":"sess-9c445a9c4791","input_length":64469,"output_length":222,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1452063,1452064,1452065,1452066,1452067,1452068,1452069,1452070,1452071,1452072,1452073,1452074,1452075,1452076,1452077,1452078,1452079,1452080,1452081,1452082,1452083,1452084,1452085],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9c445a9c4791","input_length":3176,"output_length":227,"hash_ids":[1452086,1452087,1452088,1452089,1452090,1452091,1452092],"delay":31549.8} +{"session_id":"sess-9c445a9c4791","input_length":3401,"output_length":293,"hash_ids":[1452093,1452094,1452095,1452096,1452097,1452098,1452099],"delay":1412.7} +{"session_id":"sess-9c445a9c4791","input_length":9651,"output_length":245,"hash_ids":[1452100,1452101,1452102,1452103,1452104,1452105,1452106,1452107,1452108,1452109,1452110,1452111,1452112,1452113,1452114,1452115,1452116,1452117,1452118],"delay":17275.3} +{"session_id":"sess-9c445a9c4791","input_length":493,"output_length":221,"hash_ids":[1452119],"delay":702.6} +{"session_id":"sess-9c445a9c4791","input_length":1403,"output_length":213,"hash_ids":[1452120,1452121,1452122],"delay":1392.2} +{"session_id":"sess-9c445a9c4791","input_length":2615,"output_length":383,"hash_ids":[1452123,1452124,1452125,1452126,1452127,1452128],"delay":3384.3} +{"session_id":"sess-9c445a9c4791","input_length":5856,"output_length":318,"hash_ids":[1452129,1452130,1452131,1452132,1452133,1452134,1452135,1452136,1452137,1452138,1452139,1452140],"delay":13342.6} +{"session_id":"sess-9c445a9c4791","input_length":3352,"output_length":898,"hash_ids":[1452141,1452142,1452143,1452144,1452145,1452146,1452147],"delay":932.5} +{"session_id":"sess-9c445a9c4791","input_length":4635,"output_length":213,"hash_ids":[1452148,1452149,1452150,1452151,1452152,1452153,1452154,1452155,1452156,1452157],"delay":10262.4} +{"session_id":"sess-9c445a9c4791","input_length":2420,"output_length":178,"hash_ids":[1452158,1452159,1452160,1452161,1452162],"delay":9453.6} +{"session_id":"sess-9c445a9c4791","input_length":3484,"output_length":191,"hash_ids":[1452163,1452164,1452165,1452166,1452167,1452168,1452169],"delay":3977.1} +{"session_id":"sess-9c445a9c4791","input_length":6630,"output_length":119,"hash_ids":[1452170,1452171,1452172,1452173,1452174,1452175,1452176,1452177,1452178,1452179,1452180,1452181,1452182],"delay":261.4} +{"session_id":"sess-9c445a9c4791","input_length":2653,"output_length":120,"hash_ids":[1452183,1452184,1452185,1452186,1452187,1452188],"delay":536.8} +{"session_id":"sess-9c445a9c4791","input_length":8123,"output_length":75,"hash_ids":[1452189,1452190,1452191,1452192,1452193,1452194,1452195,1452196,1452197,1452198,1452199,1452200,1452201,1452202,1452203,1452204],"delay":12482.3} +{"session_id":"sess-9c445a9c4791","input_length":2447,"output_length":160,"hash_ids":[1452205,1452206,1452207,1452208,1452209],"delay":9533.6} +{"session_id":"sess-9c445a9c4791","input_length":1728,"output_length":169,"hash_ids":[1452210,1452211,1452212,1452213],"delay":121.5} +{"session_id":"sess-fe7932761291","input_length":68084,"output_length":1723,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1456063,1456064,1456065,1456066,1456067,1456068,1456069,1456070,1456071,1456072,1456073,1456074,1456075,1456076,1456077,1456078,1456079,1456080,1456081,1456082,1456083,1456084,1456085,1456086,1456087,1456088,1456089,1456090,1456091,1456092],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fe7932761291","input_length":3234,"output_length":44,"hash_ids":[1456093,1456094,1456095,1456096,1456097,1456098,1456099],"delay":735.0} +{"session_id":"sess-fe7932761291","input_length":898,"output_length":1094,"hash_ids":[1456100,1456101],"delay":6068.5} +{"session_id":"sess-fe7932761291","input_length":3359,"output_length":172,"hash_ids":[1456102,1456103,1456104,1456105,1456106,1456107,1456108],"delay":637.8} +{"session_id":"sess-fe7932761291","input_length":1492,"output_length":523,"hash_ids":[1456109,1456110,1456111],"delay":357.4} +{"session_id":"sess-fe7932761291","input_length":1733,"output_length":475,"hash_ids":[1456112,1456113,1456114,1456115],"delay":2156.5} +{"session_id":"sess-fe7932761291","input_length":2323,"output_length":122,"hash_ids":[1456116,1456117,1456118,1456119,1456120],"delay":20379.9} +{"session_id":"sess-fe7932761291","input_length":552,"output_length":183,"hash_ids":[1456121,1456122],"delay":455.3} +{"session_id":"sess-fe7932761291","input_length":1595,"output_length":143,"hash_ids":[1456123,1456124,1456125,1456126],"delay":1754.3} +{"session_id":"sess-fe7932761291","input_length":1866,"output_length":152,"hash_ids":[1456127,1456128,1456129,1456130],"delay":393.3} +{"session_id":"sess-fe7932761291","input_length":2759,"output_length":178,"hash_ids":[1456131,1456132,1456133,1456134,1456135,1456136],"delay":266.0} +{"session_id":"sess-fe7932761291","input_length":1669,"output_length":133,"hash_ids":[1456137,1456138,1456139,1456140],"delay":5878.6} +{"session_id":"sess-fe7932761291","input_length":789,"output_length":408,"hash_ids":[1456141,1456142],"delay":1315.9} +{"session_id":"sess-fe7932761291","input_length":3270,"output_length":322,"hash_ids":[1456143,1456144,1456145,1456146,1456147,1456148,1456149],"delay":769.3} +{"session_id":"sess-fe7932761291","input_length":2437,"output_length":2387,"hash_ids":[1456150,1456151,1456152,1456153,1456154],"delay":181.3} +{"session_id":"sess-fe7932761291","input_length":1049,"output_length":206,"hash_ids":[1456155,1456156,1456157],"delay":905.3} +{"session_id":"sess-fe7932761291","input_length":1092,"output_length":690,"hash_ids":[1456158,1456159,1456160],"delay":1077.3} +{"session_id":"sess-fe7932761291","input_length":108,"output_length":47,"hash_ids":[1456161],"delay":806.7} +{"session_id":"sess-fe7932761291","input_length":4859,"output_length":1036,"hash_ids":[1456162,1456163,1456164,1456165,1456166,1456167,1456168,1456169,1456170,1456171],"delay":230.5} +{"session_id":"sess-fe7932761291","input_length":3877,"output_length":196,"hash_ids":[1456172,1456173,1456174,1456175,1456176,1456177,1456178,1456179],"delay":602.5} +{"session_id":"sess-fe7932761291","input_length":5682,"output_length":59,"hash_ids":[1456180,1456181,1456182,1456183,1456184,1456185,1456186,1456187,1456188,1456189,1456190,1456191],"delay":1574.9} +{"session_id":"sess-fe7932761291","input_length":3014,"output_length":243,"hash_ids":[1456192,1456193,1456194,1456195,1456196,1456197],"delay":1733.2} +{"session_id":"sess-63c40041a490","input_length":76057,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1460063,1460064,1460065,1460066,1460067,1460068,1460069,1460070,1460071,1460072,1460073,1460074,1460075,1460076,1460077,1460078,1460079,1460080,1460081,1460082,1460083,1460084,1460085,1460086,1460087,1460088,1460089,1460090,1460091,1460092,1460093,1460094,1460095,1460096,1460097,1460098,1460099,1460100,1460101,1460102,1460103,1460104,1460105,1460106,1460107,1460108],"timestamp":0.0,"group_id":1} +{"session_id":"sess-63c40041a490","input_length":1036,"output_length":53,"hash_ids":[1460109,1460110,1460111],"delay":3857.5} +{"session_id":"sess-63c40041a490","input_length":2349,"output_length":105,"hash_ids":[1460112,1460113,1460114,1460115,1460116],"delay":1038.3} +{"session_id":"sess-63c40041a490","input_length":928,"output_length":2448,"hash_ids":[1460117,1460118],"delay":788.3} +{"session_id":"sess-63c40041a490","input_length":1348,"output_length":104,"hash_ids":[1460119,1460120,1460121],"delay":5488.6} +{"session_id":"sess-63c40041a490","input_length":1771,"output_length":577,"hash_ids":[1460122,1460123,1460124,1460125],"delay":3090.9} +{"session_id":"sess-63c40041a490","input_length":631,"output_length":127,"hash_ids":[1460126,1460127],"delay":11795.0} +{"session_id":"sess-e2be64b0ac60","input_length":61612,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1464063,1464064,1464065,1464066,1464067,1464068,1464069,1464070,1464071,1464072,1464073,1464074,1464075,1464076,1464077,1464078,1464079,1464080],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e2be64b0ac60","input_length":539,"output_length":801,"hash_ids":[1464081,1464082],"delay":659.3} +{"session_id":"sess-e2be64b0ac60","input_length":2828,"output_length":86,"hash_ids":[1464083,1464084,1464085,1464086,1464087,1464088],"delay":572.4} +{"session_id":"sess-e2be64b0ac60","input_length":6263,"output_length":761,"hash_ids":[1464089,1464090,1464091,1464092,1464093,1464094,1464095,1464096,1464097,1464098,1464099,1464100,1464101],"delay":15146.3} +{"session_id":"sess-e2be64b0ac60","input_length":2306,"output_length":256,"hash_ids":[1464102,1464103,1464104,1464105,1464106],"delay":6936.5} +{"session_id":"sess-e2be64b0ac60","input_length":907,"output_length":48,"hash_ids":[1464107,1464108],"delay":61304.2} +{"session_id":"sess-e2be64b0ac60","input_length":2709,"output_length":669,"hash_ids":[1464109,1464110,1464111,1464112,1464113,1464114],"delay":6241.7} +{"session_id":"sess-e2be64b0ac60","input_length":1246,"output_length":974,"hash_ids":[1464115,1464116,1464117],"delay":386.5} +{"session_id":"sess-e2be64b0ac60","input_length":1027,"output_length":294,"hash_ids":[1464118,1464119,1464120],"delay":1033.1} +{"session_id":"sess-e2be64b0ac60","input_length":4686,"output_length":151,"hash_ids":[1464121,1464122,1464123,1464124,1464125,1464126,1464127,1464128,1464129,1464130],"delay":10125.9} +{"session_id":"sess-e2be64b0ac60","input_length":1777,"output_length":575,"hash_ids":[1464131,1464132,1464133,1464134],"delay":1040.7} +{"session_id":"sess-e2be64b0ac60","input_length":610,"output_length":260,"hash_ids":[1464135,1464136],"delay":30082.9} +{"session_id":"sess-e2be64b0ac60","input_length":215,"output_length":30,"hash_ids":[1464137],"delay":548.6} +{"session_id":"sess-e2be64b0ac60","input_length":1143,"output_length":78,"hash_ids":[1464138,1464139,1464140],"delay":704.3} +{"session_id":"sess-e2be64b0ac60","input_length":6556,"output_length":82,"hash_ids":[1464141,1464142,1464143,1464144,1464145,1464146,1464147,1464148,1464149,1464150,1464151,1464152,1464153],"delay":37068.2} +{"session_id":"sess-e2be64b0ac60","input_length":8290,"output_length":207,"hash_ids":[1464154,1464155,1464156,1464157,1464158,1464159,1464160,1464161,1464162,1464163,1464164,1464165,1464166,1464167,1464168,1464169,1464170],"delay":3053.8} +{"session_id":"sess-e2be64b0ac60","input_length":8455,"output_length":659,"hash_ids":[1464171,1464172,1464173,1464174,1464175,1464176,1464177,1464178,1464179,1464180,1464181,1464182,1464183,1464184,1464185,1464186,1464187],"delay":2468.7} +{"session_id":"sess-e2be64b0ac60","input_length":1861,"output_length":132,"hash_ids":[1464188,1464189,1464190,1464191],"delay":11951.8} +{"session_id":"sess-e2be64b0ac60","input_length":1341,"output_length":164,"hash_ids":[1464192,1464193,1464194],"delay":7748.7} +{"session_id":"sess-e2be64b0ac60","input_length":1808,"output_length":1343,"hash_ids":[1464195,1464196,1464197,1464198],"delay":189.7} +{"session_id":"sess-e2be64b0ac60","input_length":3733,"output_length":279,"hash_ids":[1464199,1464200,1464201,1464202,1464203,1464204,1464205,1464206],"delay":408.2} +{"session_id":"sess-e2be64b0ac60","input_length":2069,"output_length":94,"hash_ids":[1464207,1464208,1464209,1464210,1464211],"delay":3150.6} +{"session_id":"sess-ae176dd816a0","input_length":54238,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,1468063,1468064,1468065],"timestamp":0.0,"group_id":11} +{"session_id":"sess-ae176dd816a0","input_length":2364,"output_length":434,"hash_ids":[1468066,1468067,1468068,1468069,1468070],"delay":2670.7} +{"session_id":"sess-ae176dd816a0","input_length":5093,"output_length":240,"hash_ids":[1468071,1468072,1468073,1468074,1468075,1468076,1468077,1468078,1468079,1468080],"delay":760.5} +{"session_id":"sess-ae176dd816a0","input_length":4086,"output_length":101,"hash_ids":[1468081,1468082,1468083,1468084,1468085,1468086,1468087,1468088],"delay":38093.5} +{"session_id":"sess-ae176dd816a0","input_length":4939,"output_length":144,"hash_ids":[1468089,1468090,1468091,1468092,1468093,1468094,1468095,1468096,1468097,1468098],"delay":11013.3} +{"session_id":"sess-ae176dd816a0","input_length":1169,"output_length":73,"hash_ids":[1468099,1468100,1468101],"delay":3410.3} +{"session_id":"sess-ae176dd816a0","input_length":2709,"output_length":51,"hash_ids":[1468102,1468103,1468104,1468105,1468106,1468107],"delay":385.1} +{"session_id":"sess-ae176dd816a0","input_length":787,"output_length":171,"hash_ids":[1468108,1468109],"delay":1401.3} +{"session_id":"sess-ae176dd816a0","input_length":4362,"output_length":248,"hash_ids":[1468110,1468111,1468112,1468113,1468114,1468115,1468116,1468117,1468118],"delay":11088.3} +{"session_id":"sess-ae176dd816a0","input_length":1590,"output_length":150,"hash_ids":[1468119,1468120,1468121,1468122],"delay":302.9} +{"session_id":"sess-ae176dd816a0","input_length":431,"output_length":2393,"hash_ids":[1468123],"delay":1641.0} +{"session_id":"sess-ae176dd816a0","input_length":396,"output_length":276,"hash_ids":[1468124],"delay":609.7} +{"session_id":"sess-ae176dd816a0","input_length":2467,"output_length":537,"hash_ids":[1468125,1468126,1468127,1468128,1468129],"delay":1707.2} +{"session_id":"sess-ae176dd816a0","input_length":3904,"output_length":350,"hash_ids":[1468130,1468131,1468132,1468133,1468134,1468135,1468136,1468137],"delay":426.7} +{"session_id":"sess-ae176dd816a0","input_length":1926,"output_length":151,"hash_ids":[1468138,1468139,1468140,1468141],"delay":3727.2} +{"session_id":"sess-ae176dd816a0","input_length":2202,"output_length":1181,"hash_ids":[1468142,1468143,1468144,1468145,1468146],"delay":1851.8} +{"session_id":"sess-ae176dd816a0","input_length":474,"output_length":1678,"hash_ids":[1468147],"delay":1189.6} +{"session_id":"sess-ae176dd816a0","input_length":3347,"output_length":371,"hash_ids":[1468148,1468149,1468150,1468151,1468152,1468153,1468154],"delay":215.3} +{"session_id":"sess-ae176dd816a0","input_length":6348,"output_length":571,"hash_ids":[1468155,1468156,1468157,1468158,1468159,1468160,1468161,1468162,1468163,1468164,1468165,1468166,1468167],"delay":4017.9} +{"session_id":"sess-ae176dd816a0","input_length":3344,"output_length":355,"hash_ids":[1468168,1468169,1468170,1468171,1468172,1468173,1468174],"delay":1020.5} +{"session_id":"sess-ae176dd816a0","input_length":4325,"output_length":188,"hash_ids":[1468175,1468176,1468177,1468178,1468179,1468180,1468181,1468182,1468183],"delay":443.3} +{"session_id":"sess-ae176dd816a0","input_length":3124,"output_length":238,"hash_ids":[1468184,1468185,1468186,1468187,1468188,1468189,1468190],"delay":433.1} +{"session_id":"sess-ae176dd816a0","input_length":2107,"output_length":776,"hash_ids":[1468191,1468192,1468193,1468194,1468195],"delay":159.9} +{"session_id":"sess-ae176dd816a0","input_length":2623,"output_length":879,"hash_ids":[1468196,1468197,1468198,1468199,1468200,1468201],"delay":315.7} +{"session_id":"sess-cd474cab17e4","input_length":58985,"output_length":473,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1472063,1472064,1472065,1472066,1472067,1472068,1472069,1472070,1472071,1472072,1472073,1472074,1472075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cd474cab17e4","input_length":8130,"output_length":290,"hash_ids":[1472076,1472077,1472078,1472079,1472080,1472081,1472082,1472083,1472084,1472085,1472086,1472087,1472088,1472089,1472090,1472091],"delay":2132.1} +{"session_id":"sess-cd474cab17e4","input_length":567,"output_length":57,"hash_ids":[1472092,1472093],"delay":223.9} +{"session_id":"sess-cd474cab17e4","input_length":2808,"output_length":151,"hash_ids":[1472094,1472095,1472096,1472097,1472098,1472099],"delay":30713.8} +{"session_id":"sess-cd474cab17e4","input_length":2713,"output_length":54,"hash_ids":[1472100,1472101,1472102,1472103,1472104,1472105],"delay":341.4} +{"session_id":"sess-cd474cab17e4","input_length":1651,"output_length":237,"hash_ids":[1472106,1472107,1472108,1472109],"delay":531.3} +{"session_id":"sess-cd474cab17e4","input_length":4451,"output_length":122,"hash_ids":[1472110,1472111,1472112,1472113,1472114,1472115,1472116,1472117,1472118],"delay":20419.2} +{"session_id":"sess-cd474cab17e4","input_length":2154,"output_length":324,"hash_ids":[1472119,1472120,1472121,1472122,1472123],"delay":1600.2} +{"session_id":"sess-cd474cab17e4","input_length":2036,"output_length":170,"hash_ids":[1472124,1472125,1472126,1472127],"delay":23633.1} +{"session_id":"sess-cd474cab17e4","input_length":2623,"output_length":110,"hash_ids":[1472128,1472129,1472130,1472131,1472132,1472133],"delay":523.0} +{"session_id":"sess-cd474cab17e4","input_length":2313,"output_length":216,"hash_ids":[1472134,1472135,1472136,1472137,1472138],"delay":10472.2} +{"session_id":"sess-cd474cab17e4","input_length":4661,"output_length":619,"hash_ids":[1472139,1472140,1472141,1472142,1472143,1472144,1472145,1472146,1472147,1472148],"delay":1170.9} +{"session_id":"sess-cd474cab17e4","input_length":4377,"output_length":629,"hash_ids":[1472149,1472150,1472151,1472152,1472153,1472154,1472155,1472156,1472157],"delay":271.6} +{"session_id":"sess-cd474cab17e4","input_length":526,"output_length":1107,"hash_ids":[1472158,1472159],"delay":2717.6} +{"session_id":"sess-cd474cab17e4","input_length":4819,"output_length":805,"hash_ids":[1472160,1472161,1472162,1472163,1472164,1472165,1472166,1472167,1472168,1472169],"delay":172.1} +{"session_id":"sess-cd474cab17e4","input_length":361,"output_length":1025,"hash_ids":[1472170],"delay":1116.4} +{"session_id":"sess-cd474cab17e4","input_length":1397,"output_length":399,"hash_ids":[1472171,1472172,1472173],"delay":265.2} +{"session_id":"sess-cd474cab17e4","input_length":1124,"output_length":553,"hash_ids":[1472174,1472175,1472176],"delay":920.3} +{"session_id":"sess-cd474cab17e4","input_length":2179,"output_length":282,"hash_ids":[1472177,1472178,1472179,1472180,1472181],"delay":1059.6} +{"session_id":"sess-cd474cab17e4","input_length":2057,"output_length":69,"hash_ids":[1472182,1472183,1472184,1472185,1472186],"delay":137.0} +{"session_id":"sess-cd474cab17e4","input_length":8264,"output_length":508,"hash_ids":[1472187,1472188,1472189,1472190,1472191,1472192,1472193,1472194,1472195,1472196,1472197,1472198,1472199,1472200,1472201,1472202,1472203],"delay":174.2} +{"session_id":"sess-cd474cab17e4","input_length":2095,"output_length":2609,"hash_ids":[1472204,1472205,1472206,1472207,1472208],"delay":593.7} +{"session_id":"sess-05d932b465cf","input_length":56863,"output_length":401,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1476063,1476064,1476065,1476066,1476067,1476068,1476069,1476070,1476071],"timestamp":0.0,"group_id":2} +{"session_id":"sess-05d932b465cf","input_length":303,"output_length":2255,"hash_ids":[1476072],"delay":1381.7} +{"session_id":"sess-05d932b465cf","input_length":996,"output_length":141,"hash_ids":[1476073,1476074],"delay":3212.2} +{"session_id":"sess-05d932b465cf","input_length":3267,"output_length":403,"hash_ids":[1476075,1476076,1476077,1476078,1476079,1476080,1476081],"delay":2437.9} +{"session_id":"sess-05d932b465cf","input_length":1212,"output_length":376,"hash_ids":[1476082,1476083,1476084],"delay":196.8} +{"session_id":"sess-05d932b465cf","input_length":372,"output_length":107,"hash_ids":[1476085],"delay":450.2} +{"session_id":"sess-05d932b465cf","input_length":230,"output_length":97,"hash_ids":[1476086],"delay":6197.9} +{"session_id":"sess-05d932b465cf","input_length":3814,"output_length":235,"hash_ids":[1476087,1476088,1476089,1476090,1476091,1476092,1476093,1476094],"delay":1185.8} +{"session_id":"sess-05d932b465cf","input_length":1234,"output_length":303,"hash_ids":[1476095,1476096,1476097],"delay":463.4} +{"session_id":"sess-05d932b465cf","input_length":221,"output_length":336,"hash_ids":[1476098],"delay":576.7} +{"session_id":"sess-05d932b465cf","input_length":920,"output_length":924,"hash_ids":[1476099,1476100],"delay":57033.3} +{"session_id":"sess-05d932b465cf","input_length":2716,"output_length":294,"hash_ids":[1476101,1476102,1476103,1476104,1476105,1476106],"delay":883.2} +{"session_id":"sess-05d932b465cf","input_length":7323,"output_length":497,"hash_ids":[1476107,1476108,1476109,1476110,1476111,1476112,1476113,1476114,1476115,1476116,1476117,1476118,1476119,1476120,1476121],"delay":2303.9} +{"session_id":"sess-05d932b465cf","input_length":1858,"output_length":2769,"hash_ids":[1476122,1476123,1476124,1476125],"delay":7701.4} +{"session_id":"sess-05d932b465cf","input_length":2059,"output_length":98,"hash_ids":[1476126,1476127,1476128,1476129,1476130],"delay":3175.1} +{"session_id":"sess-05d932b465cf","input_length":1134,"output_length":1236,"hash_ids":[1476131,1476132,1476133],"delay":1634.0} +{"session_id":"sess-05d932b465cf","input_length":1149,"output_length":89,"hash_ids":[1476134,1476135,1476136],"delay":445.5} +{"session_id":"sess-05d932b465cf","input_length":671,"output_length":685,"hash_ids":[1476137,1476138],"delay":5167.8} +{"session_id":"sess-05d932b465cf","input_length":1168,"output_length":178,"hash_ids":[1476139,1476140,1476141],"delay":870.5} +{"session_id":"sess-05d932b465cf","input_length":1745,"output_length":55,"hash_ids":[1476142,1476143,1476144,1476145],"delay":2181.7} +{"session_id":"sess-05d932b465cf","input_length":1983,"output_length":81,"hash_ids":[1476146,1476147,1476148,1476149],"delay":21392.5} +{"session_id":"sess-05d932b465cf","input_length":619,"output_length":144,"hash_ids":[1476150,1476151],"delay":398.6} +{"session_id":"sess-05d932b465cf","input_length":2613,"output_length":353,"hash_ids":[1476152,1476153,1476154,1476155,1476156,1476157],"delay":158.2} +{"session_id":"sess-05d932b465cf","input_length":439,"output_length":230,"hash_ids":[1476158],"delay":195.8} +{"session_id":"sess-05d932b465cf","input_length":5267,"output_length":899,"hash_ids":[1476159,1476160,1476161,1476162,1476163,1476164,1476165,1476166,1476167,1476168,1476169],"delay":192.6} +{"session_id":"sess-05d932b465cf","input_length":1290,"output_length":262,"hash_ids":[1476170,1476171,1476172],"delay":998.1} +{"session_id":"sess-05d932b465cf","input_length":1240,"output_length":1162,"hash_ids":[1476173,1476174,1476175],"delay":1042.1} +{"session_id":"sess-05d932b465cf","input_length":1618,"output_length":490,"hash_ids":[1476176,1476177,1476178,1476179],"delay":25740.4} +{"session_id":"sess-05d932b465cf","input_length":2125,"output_length":45,"hash_ids":[1476180,1476181,1476182,1476183,1476184],"delay":1955.5} +{"session_id":"sess-05d932b465cf","input_length":492,"output_length":307,"hash_ids":[1476185],"delay":272.0} +{"session_id":"sess-05d932b465cf","input_length":1712,"output_length":281,"hash_ids":[1476186,1476187,1476188,1476189],"delay":948.1} +{"session_id":"sess-05d932b465cf","input_length":2543,"output_length":450,"hash_ids":[1476190,1476191,1476192,1476193,1476194],"delay":1353.0} +{"session_id":"sess-05d932b465cf","input_length":2014,"output_length":198,"hash_ids":[1476195,1476196,1476197,1476198],"delay":711.0} +{"session_id":"sess-05d932b465cf","input_length":937,"output_length":687,"hash_ids":[1476199,1476200],"delay":1187.4} +{"session_id":"sess-96b019bac330","input_length":59978,"output_length":308,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1480063,1480064,1480065,1480066,1480067,1480068,1480069,1480070,1480071,1480072,1480073,1480074,1480075,1480076,1480077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-96b019bac330","input_length":6629,"output_length":199,"hash_ids":[1480078,1480079,1480080,1480081,1480082,1480083,1480084,1480085,1480086,1480087,1480088,1480089,1480090],"delay":506.7} +{"session_id":"sess-96b019bac330","input_length":1358,"output_length":1808,"hash_ids":[1480091,1480092,1480093],"delay":423.5} +{"session_id":"sess-96b019bac330","input_length":350,"output_length":1148,"hash_ids":[1480094],"delay":1602.6} +{"session_id":"sess-96b019bac330","input_length":797,"output_length":165,"hash_ids":[1480095,1480096],"delay":1426.9} +{"session_id":"sess-96b019bac330","input_length":422,"output_length":150,"hash_ids":[1480097],"delay":293.5} +{"session_id":"sess-96b019bac330","input_length":1019,"output_length":202,"hash_ids":[1480098,1480099],"delay":1760.1} +{"session_id":"sess-96b019bac330","input_length":1735,"output_length":534,"hash_ids":[1480100,1480101,1480102,1480103],"delay":1515.8} +{"session_id":"sess-96b019bac330","input_length":877,"output_length":824,"hash_ids":[1480104,1480105],"delay":2236.9} +{"session_id":"sess-96b019bac330","input_length":4415,"output_length":676,"hash_ids":[1480106,1480107,1480108,1480109,1480110,1480111,1480112,1480113,1480114],"delay":280.0} +{"session_id":"sess-96b019bac330","input_length":2426,"output_length":331,"hash_ids":[1480115,1480116,1480117,1480118,1480119],"delay":1203.2} +{"session_id":"sess-96b019bac330","input_length":5629,"output_length":30,"hash_ids":[1480120,1480121,1480122,1480123,1480124,1480125,1480126,1480127,1480128,1480129,1480130],"delay":447.2} +{"session_id":"sess-96b019bac330","input_length":2183,"output_length":338,"hash_ids":[1480131,1480132,1480133,1480134,1480135],"delay":1018.5} +{"session_id":"sess-96b019bac330","input_length":853,"output_length":30,"hash_ids":[1480136,1480137],"delay":15457.5} +{"session_id":"sess-96b019bac330","input_length":506,"output_length":553,"hash_ids":[1480138],"delay":974.4} +{"session_id":"sess-96b019bac330","input_length":1167,"output_length":1035,"hash_ids":[1480139,1480140,1480141],"delay":892.0} +{"session_id":"sess-96b019bac330","input_length":976,"output_length":2053,"hash_ids":[1480142,1480143],"delay":1901.6} +{"session_id":"sess-96b019bac330","input_length":4262,"output_length":346,"hash_ids":[1480144,1480145,1480146,1480147,1480148,1480149,1480150,1480151,1480152],"delay":305.0} +{"session_id":"sess-96b019bac330","input_length":241,"output_length":216,"hash_ids":[1480153],"delay":1669.8} +{"session_id":"sess-96b019bac330","input_length":1805,"output_length":912,"hash_ids":[1480154,1480155,1480156,1480157],"delay":274.2} +{"session_id":"sess-96b019bac330","input_length":902,"output_length":1233,"hash_ids":[1480158,1480159],"delay":2768.8} +{"session_id":"sess-96b019bac330","input_length":9352,"output_length":1902,"hash_ids":[1480160,1480161,1480162,1480163,1480164,1480165,1480166,1480167,1480168,1480169,1480170,1480171,1480172,1480173,1480174,1480175,1480176,1480177,1480178],"delay":768.3} +{"session_id":"sess-96b019bac330","input_length":522,"output_length":381,"hash_ids":[1480179,1480180],"delay":581.7} +{"session_id":"sess-d9539347954b","input_length":64398,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1484063,1484064,1484065,1484066,1484067,1484068,1484069,1484070,1484071,1484072,1484073,1484074,1484075,1484076,1484077,1484078,1484079,1484080,1484081,1484082,1484083,1484084,1484085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d9539347954b","input_length":4360,"output_length":269,"hash_ids":[1484086,1484087,1484088,1484089,1484090,1484091,1484092,1484093,1484094],"delay":5852.5} +{"session_id":"sess-d9539347954b","input_length":3185,"output_length":1025,"hash_ids":[1484095,1484096,1484097,1484098,1484099,1484100,1484101],"delay":785.3} +{"session_id":"sess-d9539347954b","input_length":1742,"output_length":118,"hash_ids":[1484102,1484103,1484104,1484105],"delay":1346.2} +{"session_id":"sess-d9539347954b","input_length":8127,"output_length":708,"hash_ids":[1484106,1484107,1484108,1484109,1484110,1484111,1484112,1484113,1484114,1484115,1484116,1484117,1484118,1484119,1484120,1484121],"delay":859.6} +{"session_id":"sess-d9539347954b","input_length":644,"output_length":60,"hash_ids":[1484122,1484123],"delay":2711.0} +{"session_id":"sess-d9539347954b","input_length":404,"output_length":1210,"hash_ids":[1484124],"delay":1595.0} +{"session_id":"sess-d9539347954b","input_length":164,"output_length":408,"hash_ids":[1484125],"delay":1631.2} +{"session_id":"sess-d9539347954b","input_length":801,"output_length":1228,"hash_ids":[1484126,1484127],"delay":10159.1} +{"session_id":"sess-d9539347954b","input_length":1934,"output_length":545,"hash_ids":[1484128,1484129,1484130,1484131],"delay":3328.2} +{"session_id":"sess-d9539347954b","input_length":2217,"output_length":455,"hash_ids":[1484132,1484133,1484134,1484135,1484136],"delay":667.6} +{"session_id":"sess-d9539347954b","input_length":449,"output_length":270,"hash_ids":[1484137],"delay":1340.4} +{"session_id":"sess-d9539347954b","input_length":1000,"output_length":70,"hash_ids":[1484138,1484139],"delay":1407.1} +{"session_id":"sess-d9539347954b","input_length":2122,"output_length":30,"hash_ids":[1484140,1484141,1484142,1484143,1484144],"delay":363.1} +{"session_id":"sess-d9539347954b","input_length":1501,"output_length":53,"hash_ids":[1484145,1484146,1484147],"delay":8593.0} +{"session_id":"sess-d9539347954b","input_length":3940,"output_length":661,"hash_ids":[1484148,1484149,1484150,1484151,1484152,1484153,1484154,1484155],"delay":1355.1} +{"session_id":"sess-d9539347954b","input_length":1407,"output_length":949,"hash_ids":[1484156,1484157,1484158],"delay":11417.5} +{"session_id":"sess-d9539347954b","input_length":1388,"output_length":69,"hash_ids":[1484159,1484160,1484161],"delay":6939.8} +{"session_id":"sess-d9539347954b","input_length":6010,"output_length":264,"hash_ids":[1484162,1484163,1484164,1484165,1484166,1484167,1484168,1484169,1484170,1484171,1484172,1484173],"delay":295.8} +{"session_id":"sess-d9539347954b","input_length":3556,"output_length":169,"hash_ids":[1484174,1484175,1484176,1484177,1484178,1484179,1484180],"delay":8385.3} +{"session_id":"sess-d9539347954b","input_length":2515,"output_length":1220,"hash_ids":[1484181,1484182,1484183,1484184,1484185],"delay":442.3} +{"session_id":"sess-d9539347954b","input_length":1285,"output_length":471,"hash_ids":[1484186,1484187,1484188],"delay":563.2} +{"session_id":"sess-d9539347954b","input_length":1156,"output_length":264,"hash_ids":[1484189,1484190,1484191],"delay":682.4} +{"session_id":"sess-fbd189cda50c","input_length":52871,"output_length":728,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1488063],"timestamp":0.0,"group_id":12} +{"session_id":"sess-fbd189cda50c","input_length":343,"output_length":62,"hash_ids":[1488064],"delay":3085.0} +{"session_id":"sess-fbd189cda50c","input_length":4432,"output_length":827,"hash_ids":[1488065,1488066,1488067,1488068,1488069,1488070,1488071,1488072,1488073],"delay":10780.6} +{"session_id":"sess-fbd189cda50c","input_length":2592,"output_length":2440,"hash_ids":[1488074,1488075,1488076,1488077,1488078,1488079],"delay":27409.6} +{"session_id":"sess-fbd189cda50c","input_length":1219,"output_length":412,"hash_ids":[1488080,1488081,1488082],"delay":40110.5} +{"session_id":"sess-fbd189cda50c","input_length":3896,"output_length":249,"hash_ids":[1488083,1488084,1488085,1488086,1488087,1488088,1488089,1488090],"delay":401.3} +{"session_id":"sess-fbd189cda50c","input_length":2704,"output_length":48,"hash_ids":[1488091,1488092,1488093,1488094,1488095,1488096],"delay":818.5} +{"session_id":"sess-fbd189cda50c","input_length":5871,"output_length":54,"hash_ids":[1488097,1488098,1488099,1488100,1488101,1488102,1488103,1488104,1488105,1488106,1488107,1488108],"delay":626.8} +{"session_id":"sess-fbd189cda50c","input_length":1144,"output_length":292,"hash_ids":[1488109,1488110,1488111],"delay":259.5} +{"session_id":"sess-fbd189cda50c","input_length":2563,"output_length":116,"hash_ids":[1488112,1488113,1488114,1488115,1488116,1488117],"delay":13867.8} +{"session_id":"sess-fbd189cda50c","input_length":7459,"output_length":127,"hash_ids":[1488118,1488119,1488120,1488121,1488122,1488123,1488124,1488125,1488126,1488127,1488128,1488129,1488130,1488131,1488132],"delay":4586.7} +{"session_id":"sess-fbd189cda50c","input_length":4367,"output_length":513,"hash_ids":[1488133,1488134,1488135,1488136,1488137,1488138,1488139,1488140,1488141],"delay":7437.6} +{"session_id":"sess-fbd189cda50c","input_length":2319,"output_length":101,"hash_ids":[1488142,1488143,1488144,1488145,1488146],"delay":900.3} +{"session_id":"sess-fbd189cda50c","input_length":1168,"output_length":216,"hash_ids":[1488147,1488148,1488149],"delay":539.4} +{"session_id":"sess-fbd189cda50c","input_length":3216,"output_length":289,"hash_ids":[1488150,1488151,1488152,1488153,1488154,1488155,1488156],"delay":9637.5} +{"session_id":"sess-fbd189cda50c","input_length":5624,"output_length":384,"hash_ids":[1488157,1488158,1488159,1488160,1488161,1488162,1488163,1488164,1488165,1488166,1488167],"delay":5024.2} +{"session_id":"sess-fbd189cda50c","input_length":1067,"output_length":212,"hash_ids":[1488168,1488169,1488170],"delay":683.4} +{"session_id":"sess-0c8b092f51e3","input_length":55308,"output_length":230,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,1492063,1492064,1492065,1492066,1492067,1492068],"timestamp":0.0,"group_id":23} +{"session_id":"sess-0c8b092f51e3","input_length":8170,"output_length":361,"hash_ids":[1492069,1492070,1492071,1492072,1492073,1492074,1492075,1492076,1492077,1492078,1492079,1492080,1492081,1492082,1492083,1492084],"delay":960.5} +{"session_id":"sess-0c8b092f51e3","input_length":1997,"output_length":113,"hash_ids":[1492085,1492086,1492087,1492088],"delay":730.5} +{"session_id":"sess-0c8b092f51e3","input_length":579,"output_length":113,"hash_ids":[1492089,1492090],"delay":953.7} +{"session_id":"sess-0c8b092f51e3","input_length":182,"output_length":103,"hash_ids":[1492091],"delay":1333.7} +{"session_id":"sess-0c8b092f51e3","input_length":1278,"output_length":547,"hash_ids":[1492092,1492093,1492094],"delay":588.5} +{"session_id":"sess-0c8b092f51e3","input_length":652,"output_length":428,"hash_ids":[1492095,1492096],"delay":28427.2} +{"session_id":"sess-0c8b092f51e3","input_length":1195,"output_length":315,"hash_ids":[1492097,1492098,1492099],"delay":3110.6} +{"session_id":"sess-0c8b092f51e3","input_length":542,"output_length":114,"hash_ids":[1492100,1492101],"delay":4105.6} +{"session_id":"sess-0c8b092f51e3","input_length":1436,"output_length":35,"hash_ids":[1492102,1492103,1492104],"delay":63359.5} +{"session_id":"sess-0c8b092f51e3","input_length":1177,"output_length":259,"hash_ids":[1492105,1492106,1492107],"delay":560.8} +{"session_id":"sess-0c8b092f51e3","input_length":4837,"output_length":222,"hash_ids":[1492108,1492109,1492110,1492111,1492112,1492113,1492114,1492115,1492116,1492117],"delay":2151.2} +{"session_id":"sess-0c8b092f51e3","input_length":1760,"output_length":437,"hash_ids":[1492118,1492119,1492120,1492121],"delay":1826.0} +{"session_id":"sess-0c8b092f51e3","input_length":1166,"output_length":1039,"hash_ids":[1492122,1492123,1492124],"delay":2186.2} +{"session_id":"sess-0c8b092f51e3","input_length":1032,"output_length":342,"hash_ids":[1492125,1492126,1492127],"delay":3754.1} +{"session_id":"sess-0c8b092f51e3","input_length":2468,"output_length":177,"hash_ids":[1492128,1492129,1492130,1492131,1492132],"delay":2624.4} +{"session_id":"sess-0c8b092f51e3","input_length":3581,"output_length":176,"hash_ids":[1492133,1492134,1492135,1492136,1492137,1492138,1492139],"delay":1210.8} +{"session_id":"sess-0c8b092f51e3","input_length":1801,"output_length":160,"hash_ids":[1492140,1492141,1492142,1492143],"delay":504.3} +{"session_id":"sess-0c8b092f51e3","input_length":497,"output_length":642,"hash_ids":[1492144],"delay":1171.4} +{"session_id":"sess-0c8b092f51e3","input_length":1412,"output_length":118,"hash_ids":[1492145,1492146,1492147],"delay":2254.4} +{"session_id":"sess-0c8b092f51e3","input_length":6201,"output_length":101,"hash_ids":[1492148,1492149,1492150,1492151,1492152,1492153,1492154,1492155,1492156,1492157,1492158,1492159,1492160],"delay":1063.4} +{"session_id":"sess-0c8b092f51e3","input_length":1457,"output_length":254,"hash_ids":[1492161,1492162,1492163],"delay":881.7} +{"session_id":"sess-0c8b092f51e3","input_length":389,"output_length":475,"hash_ids":[1492164],"delay":962.9} +{"session_id":"sess-0c8b092f51e3","input_length":2922,"output_length":577,"hash_ids":[1492165,1492166,1492167,1492168,1492169,1492170],"delay":28008.1} +{"session_id":"sess-0c8b092f51e3","input_length":3458,"output_length":231,"hash_ids":[1492171,1492172,1492173,1492174,1492175,1492176,1492177],"delay":343.8} +{"session_id":"sess-0c8b092f51e3","input_length":9183,"output_length":378,"hash_ids":[1492178,1492179,1492180,1492181,1492182,1492183,1492184,1492185,1492186,1492187,1492188,1492189,1492190,1492191,1492192,1492193,1492194,1492195],"delay":9442.9} +{"session_id":"sess-896810426e23","input_length":54278,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,1496063,1496064,1496065,1496066],"timestamp":0.0,"group_id":22} +{"session_id":"sess-896810426e23","input_length":793,"output_length":2131,"hash_ids":[1496067,1496068],"delay":565.2} +{"session_id":"sess-896810426e23","input_length":1815,"output_length":230,"hash_ids":[1496069,1496070,1496071,1496072],"delay":2378.1} +{"session_id":"sess-896810426e23","input_length":2690,"output_length":277,"hash_ids":[1496073,1496074,1496075,1496076,1496077,1496078],"delay":3216.9} +{"session_id":"sess-896810426e23","input_length":4240,"output_length":208,"hash_ids":[1496079,1496080,1496081,1496082,1496083,1496084,1496085,1496086,1496087],"delay":4412.1} +{"session_id":"sess-896810426e23","input_length":1665,"output_length":1662,"hash_ids":[1496088,1496089,1496090,1496091],"delay":16965.4} +{"session_id":"sess-896810426e23","input_length":2367,"output_length":697,"hash_ids":[1496092,1496093,1496094,1496095,1496096],"delay":2858.0} +{"session_id":"sess-896810426e23","input_length":1669,"output_length":159,"hash_ids":[1496097,1496098,1496099,1496100],"delay":1515.8} +{"session_id":"sess-896810426e23","input_length":5638,"output_length":1919,"hash_ids":[1496101,1496102,1496103,1496104,1496105,1496106,1496107,1496108,1496109,1496110,1496111,1496112],"delay":63550.5} +{"session_id":"sess-896810426e23","input_length":1175,"output_length":123,"hash_ids":[1496113,1496114,1496115],"delay":1575.2} +{"session_id":"sess-896810426e23","input_length":254,"output_length":477,"hash_ids":[1496116],"delay":1288.2} +{"session_id":"sess-896810426e23","input_length":1282,"output_length":554,"hash_ids":[1496117,1496118,1496119],"delay":50543.0} +{"session_id":"sess-896810426e23","input_length":2745,"output_length":144,"hash_ids":[1496120,1496121,1496122,1496123,1496124,1496125],"delay":20489.8} +{"session_id":"sess-896810426e23","input_length":1359,"output_length":699,"hash_ids":[1496126,1496127,1496128],"delay":2694.5} +{"session_id":"sess-da83a62f56d0","input_length":59705,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1500063,1500064,1500065,1500066,1500067,1500068,1500069,1500070,1500071,1500072,1500073,1500074,1500075,1500076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-da83a62f56d0","input_length":2092,"output_length":256,"hash_ids":[1500077,1500078,1500079,1500080,1500081],"delay":554.6} +{"session_id":"sess-da83a62f56d0","input_length":3689,"output_length":431,"hash_ids":[1500082,1500083,1500084,1500085,1500086,1500087,1500088,1500089],"delay":300.2} +{"session_id":"sess-da83a62f56d0","input_length":3115,"output_length":76,"hash_ids":[1500090,1500091,1500092,1500093,1500094,1500095,1500096],"delay":2518.1} +{"session_id":"sess-da83a62f56d0","input_length":3190,"output_length":428,"hash_ids":[1500097,1500098,1500099,1500100,1500101,1500102,1500103],"delay":24519.3} +{"session_id":"sess-da83a62f56d0","input_length":1236,"output_length":418,"hash_ids":[1500104,1500105,1500106],"delay":2257.1} +{"session_id":"sess-da83a62f56d0","input_length":915,"output_length":70,"hash_ids":[1500107,1500108],"delay":883.1} +{"session_id":"sess-da83a62f56d0","input_length":8144,"output_length":173,"hash_ids":[1500109,1500110,1500111,1500112,1500113,1500114,1500115,1500116,1500117,1500118,1500119,1500120,1500121,1500122,1500123,1500124],"delay":501.7} +{"session_id":"sess-da83a62f56d0","input_length":953,"output_length":2440,"hash_ids":[1500125,1500126],"delay":5560.6} +{"session_id":"sess-da83a62f56d0","input_length":287,"output_length":257,"hash_ids":[1500127],"delay":16929.4} +{"session_id":"sess-da83a62f56d0","input_length":8031,"output_length":930,"hash_ids":[1500128,1500129,1500130,1500131,1500132,1500133,1500134,1500135,1500136,1500137,1500138,1500139,1500140,1500141,1500142,1500143],"delay":2831.0} +{"session_id":"sess-da83a62f56d0","input_length":4523,"output_length":196,"hash_ids":[1500144,1500145,1500146,1500147,1500148,1500149,1500150,1500151,1500152],"delay":1813.0} +{"session_id":"sess-da83a62f56d0","input_length":1381,"output_length":226,"hash_ids":[1500153,1500154,1500155],"delay":1412.8} +{"session_id":"sess-da83a62f56d0","input_length":3556,"output_length":86,"hash_ids":[1500156,1500157,1500158,1500159,1500160,1500161,1500162],"delay":5846.5} +{"session_id":"sess-da83a62f56d0","input_length":1304,"output_length":1032,"hash_ids":[1500163,1500164,1500165],"delay":1309.1} +{"session_id":"sess-da83a62f56d0","input_length":2086,"output_length":125,"hash_ids":[1500166,1500167,1500168,1500169,1500170],"delay":1035.1} +{"session_id":"sess-fa2f2e999de6","input_length":61763,"output_length":122,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1504063,1504064,1504065,1504066,1504067,1504068,1504069,1504070,1504071,1504072,1504073,1504074,1504075,1504076,1504077,1504078,1504079,1504080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fa2f2e999de6","input_length":445,"output_length":433,"hash_ids":[1504081],"delay":10794.3} +{"session_id":"sess-fa2f2e999de6","input_length":8519,"output_length":221,"hash_ids":[1504082,1504083,1504084,1504085,1504086,1504087,1504088,1504089,1504090,1504091,1504092,1504093,1504094,1504095,1504096,1504097,1504098],"delay":689.9} +{"session_id":"sess-fa2f2e999de6","input_length":1141,"output_length":440,"hash_ids":[1504099,1504100,1504101],"delay":1287.2} +{"session_id":"sess-fa2f2e999de6","input_length":1170,"output_length":121,"hash_ids":[1504102,1504103,1504104],"delay":598.1} +{"session_id":"sess-fa2f2e999de6","input_length":4890,"output_length":701,"hash_ids":[1504105,1504106,1504107,1504108,1504109,1504110,1504111,1504112,1504113,1504114],"delay":843.4} +{"session_id":"sess-fa2f2e999de6","input_length":743,"output_length":448,"hash_ids":[1504115,1504116],"delay":30785.9} +{"session_id":"sess-fa2f2e999de6","input_length":446,"output_length":168,"hash_ids":[1504117],"delay":999.1} +{"session_id":"sess-fa2f2e999de6","input_length":631,"output_length":53,"hash_ids":[1504118,1504119],"delay":6123.3} +{"session_id":"sess-fa2f2e999de6","input_length":2400,"output_length":681,"hash_ids":[1504120,1504121,1504122,1504123,1504124],"delay":853.3} +{"session_id":"sess-fa2f2e999de6","input_length":1535,"output_length":2092,"hash_ids":[1504125,1504126,1504127],"delay":1166.2} +{"session_id":"sess-fa2f2e999de6","input_length":5432,"output_length":44,"hash_ids":[1504128,1504129,1504130,1504131,1504132,1504133,1504134,1504135,1504136,1504137,1504138],"delay":286.5} +{"session_id":"sess-fa2f2e999de6","input_length":7792,"output_length":335,"hash_ids":[1504139,1504140,1504141,1504142,1504143,1504144,1504145,1504146,1504147,1504148,1504149,1504150,1504151,1504152,1504153,1504154],"delay":7821.1} +{"session_id":"sess-fa2f2e999de6","input_length":730,"output_length":30,"hash_ids":[1504155,1504156],"delay":11858.3} +{"session_id":"sess-fa2f2e999de6","input_length":1500,"output_length":2781,"hash_ids":[1504157,1504158,1504159],"delay":238.1} +{"session_id":"sess-fa2f2e999de6","input_length":951,"output_length":693,"hash_ids":[1504160,1504161],"delay":5149.4} +{"session_id":"sess-fa2f2e999de6","input_length":9033,"output_length":43,"hash_ids":[1504162,1504163,1504164,1504165,1504166,1504167,1504168,1504169,1504170,1504171,1504172,1504173,1504174,1504175,1504176,1504177,1504178,1504179],"delay":452.5} +{"session_id":"sess-fa2f2e999de6","input_length":502,"output_length":1124,"hash_ids":[1504180],"delay":312.4} +{"session_id":"sess-fa2f2e999de6","input_length":953,"output_length":168,"hash_ids":[1504181,1504182],"delay":2169.4} +{"session_id":"sess-fa2f2e999de6","input_length":1924,"output_length":118,"hash_ids":[1504183,1504184,1504185,1504186],"delay":546.9} +{"session_id":"sess-fa2f2e999de6","input_length":3525,"output_length":658,"hash_ids":[1504187,1504188,1504189,1504190,1504191,1504192,1504193],"delay":177.2} +{"session_id":"sess-fa2f2e999de6","input_length":1622,"output_length":253,"hash_ids":[1504194,1504195,1504196,1504197],"delay":8461.5} +{"session_id":"sess-fa2f2e999de6","input_length":389,"output_length":695,"hash_ids":[1504198],"delay":324.9} +{"session_id":"sess-e7116a2c4bb4","input_length":67717,"output_length":953,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1508063,1508064,1508065,1508066,1508067,1508068,1508069,1508070,1508071,1508072,1508073,1508074,1508075,1508076,1508077,1508078,1508079,1508080,1508081,1508082,1508083,1508084,1508085,1508086,1508087,1508088,1508089,1508090,1508091,1508092],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e7116a2c4bb4","input_length":548,"output_length":197,"hash_ids":[1508093,1508094],"delay":1247.2} +{"session_id":"sess-e7116a2c4bb4","input_length":2369,"output_length":360,"hash_ids":[1508095,1508096,1508097,1508098,1508099],"delay":4278.5} +{"session_id":"sess-e7116a2c4bb4","input_length":1119,"output_length":141,"hash_ids":[1508100,1508101,1508102],"delay":8494.9} +{"session_id":"sess-e7116a2c4bb4","input_length":2944,"output_length":373,"hash_ids":[1508103,1508104,1508105,1508106,1508107,1508108],"delay":302.7} +{"session_id":"sess-e7116a2c4bb4","input_length":5463,"output_length":183,"hash_ids":[1508109,1508110,1508111,1508112,1508113,1508114,1508115,1508116,1508117,1508118,1508119],"delay":4256.1} +{"session_id":"sess-e7116a2c4bb4","input_length":455,"output_length":213,"hash_ids":[1508120],"delay":962.3} +{"session_id":"sess-e7116a2c4bb4","input_length":725,"output_length":385,"hash_ids":[1508121,1508122],"delay":1101.4} +{"session_id":"sess-e7116a2c4bb4","input_length":1569,"output_length":566,"hash_ids":[1508123,1508124,1508125,1508126],"delay":268.9} +{"session_id":"sess-e7116a2c4bb4","input_length":4982,"output_length":331,"hash_ids":[1508127,1508128,1508129,1508130,1508131,1508132,1508133,1508134,1508135,1508136],"delay":6297.1} +{"session_id":"sess-e7116a2c4bb4","input_length":1886,"output_length":785,"hash_ids":[1508137,1508138,1508139,1508140],"delay":708.9} +{"session_id":"sess-e7116a2c4bb4","input_length":2243,"output_length":820,"hash_ids":[1508141,1508142,1508143,1508144,1508145],"delay":1090.5} +{"session_id":"sess-e7116a2c4bb4","input_length":2183,"output_length":67,"hash_ids":[1508146,1508147,1508148,1508149,1508150],"delay":968.8} +{"session_id":"sess-e7116a2c4bb4","input_length":5191,"output_length":178,"hash_ids":[1508151,1508152,1508153,1508154,1508155,1508156,1508157,1508158,1508159,1508160,1508161],"delay":323.1} +{"session_id":"sess-e7116a2c4bb4","input_length":1011,"output_length":610,"hash_ids":[1508162,1508163],"delay":6387.2} +{"session_id":"sess-e7116a2c4bb4","input_length":1658,"output_length":927,"hash_ids":[1508164,1508165,1508166,1508167],"delay":399.9} +{"session_id":"sess-e7116a2c4bb4","input_length":734,"output_length":75,"hash_ids":[1508168,1508169],"delay":666.0} +{"session_id":"sess-e7116a2c4bb4","input_length":358,"output_length":120,"hash_ids":[1508170],"delay":3425.0} +{"session_id":"sess-e7116a2c4bb4","input_length":4606,"output_length":470,"hash_ids":[1508171,1508172,1508173,1508174,1508175,1508176,1508177,1508178,1508179],"delay":188.0} +{"session_id":"sess-e7116a2c4bb4","input_length":2737,"output_length":1188,"hash_ids":[1508180,1508181,1508182,1508183,1508184,1508185],"delay":880.6} +{"session_id":"sess-e7116a2c4bb4","input_length":1080,"output_length":130,"hash_ids":[1508186,1508187,1508188],"delay":1672.8} +{"session_id":"sess-e7116a2c4bb4","input_length":8481,"output_length":86,"hash_ids":[1508189,1508190,1508191,1508192,1508193,1508194,1508195,1508196,1508197,1508198,1508199,1508200,1508201,1508202,1508203,1508204,1508205],"delay":578.5} +{"session_id":"sess-e7116a2c4bb4","input_length":1657,"output_length":892,"hash_ids":[1508206,1508207,1508208,1508209],"delay":612.4} +{"session_id":"sess-473a4422cb2e","input_length":53152,"output_length":1852,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1512063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-473a4422cb2e","input_length":2824,"output_length":57,"hash_ids":[1512064,1512065,1512066,1512067,1512068,1512069],"delay":670.7} +{"session_id":"sess-473a4422cb2e","input_length":938,"output_length":705,"hash_ids":[1512070,1512071],"delay":267.3} +{"session_id":"sess-473a4422cb2e","input_length":2478,"output_length":191,"hash_ids":[1512072,1512073,1512074,1512075,1512076],"delay":3565.0} +{"session_id":"sess-473a4422cb2e","input_length":9368,"output_length":521,"hash_ids":[1512077,1512078,1512079,1512080,1512081,1512082,1512083,1512084,1512085,1512086,1512087,1512088,1512089,1512090,1512091,1512092,1512093,1512094,1512095],"delay":5252.3} +{"session_id":"sess-473a4422cb2e","input_length":1539,"output_length":133,"hash_ids":[1512096,1512097,1512098,1512099],"delay":367.5} +{"session_id":"sess-473a4422cb2e","input_length":1182,"output_length":50,"hash_ids":[1512100,1512101,1512102],"delay":6937.2} +{"session_id":"sess-473a4422cb2e","input_length":1110,"output_length":1393,"hash_ids":[1512103,1512104,1512105],"delay":1339.2} +{"session_id":"sess-473a4422cb2e","input_length":844,"output_length":229,"hash_ids":[1512106,1512107],"delay":389.8} +{"session_id":"sess-473a4422cb2e","input_length":7155,"output_length":217,"hash_ids":[1512108,1512109,1512110,1512111,1512112,1512113,1512114,1512115,1512116,1512117,1512118,1512119,1512120,1512121],"delay":1351.5} +{"session_id":"sess-473a4422cb2e","input_length":336,"output_length":143,"hash_ids":[1512122],"delay":1031.3} +{"session_id":"sess-473a4422cb2e","input_length":1453,"output_length":605,"hash_ids":[1512123,1512124,1512125],"delay":605.8} +{"session_id":"sess-473a4422cb2e","input_length":911,"output_length":532,"hash_ids":[1512126,1512127],"delay":13295.8} +{"session_id":"sess-473a4422cb2e","input_length":8671,"output_length":117,"hash_ids":[1512128,1512129,1512130,1512131,1512132,1512133,1512134,1512135,1512136,1512137,1512138,1512139,1512140,1512141,1512142,1512143,1512144],"delay":4238.2} +{"session_id":"sess-473a4422cb2e","input_length":489,"output_length":86,"hash_ids":[1512145],"delay":15511.4} +{"session_id":"sess-473a4422cb2e","input_length":1208,"output_length":1539,"hash_ids":[1512146,1512147,1512148],"delay":3310.2} +{"session_id":"sess-473a4422cb2e","input_length":2166,"output_length":610,"hash_ids":[1512149,1512150,1512151,1512152,1512153],"delay":162.5} +{"session_id":"sess-473a4422cb2e","input_length":426,"output_length":1284,"hash_ids":[1512154],"delay":6382.1} +{"session_id":"sess-473a4422cb2e","input_length":2219,"output_length":50,"hash_ids":[1512155,1512156,1512157,1512158,1512159],"delay":8845.9} +{"session_id":"sess-473a4422cb2e","input_length":1108,"output_length":78,"hash_ids":[1512160,1512161,1512162],"delay":611.3} +{"session_id":"sess-473a4422cb2e","input_length":1170,"output_length":455,"hash_ids":[1512163,1512164,1512165],"delay":2220.5} +{"session_id":"sess-473a4422cb2e","input_length":1763,"output_length":763,"hash_ids":[1512166,1512167,1512168,1512169],"delay":280.2} +{"session_id":"sess-473a4422cb2e","input_length":5128,"output_length":1954,"hash_ids":[1512170,1512171,1512172,1512173,1512174,1512175,1512176,1512177,1512178,1512179,1512180],"delay":1281.4} +{"session_id":"sess-473a4422cb2e","input_length":598,"output_length":98,"hash_ids":[1512181,1512182],"delay":353.3} +{"session_id":"sess-eb457a58a112","input_length":55731,"output_length":1165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,1516063,1516064,1516065,1516066,1516067,1516068],"timestamp":0.0,"group_id":16} +{"session_id":"sess-eb457a58a112","input_length":3157,"output_length":183,"hash_ids":[1516069,1516070,1516071,1516072,1516073,1516074,1516075],"delay":893.9} +{"session_id":"sess-eb457a58a112","input_length":1634,"output_length":463,"hash_ids":[1516076,1516077,1516078,1516079],"delay":790.6} +{"session_id":"sess-eb457a58a112","input_length":692,"output_length":773,"hash_ids":[1516080,1516081],"delay":12300.6} +{"session_id":"sess-eb457a58a112","input_length":157,"output_length":66,"hash_ids":[1516082],"delay":963.5} +{"session_id":"sess-eb457a58a112","input_length":877,"output_length":326,"hash_ids":[1516083,1516084],"delay":462.5} +{"session_id":"sess-eb457a58a112","input_length":880,"output_length":102,"hash_ids":[1516085,1516086],"delay":18761.4} +{"session_id":"sess-eb457a58a112","input_length":992,"output_length":223,"hash_ids":[1516087,1516088],"delay":2276.3} +{"session_id":"sess-eb457a58a112","input_length":862,"output_length":372,"hash_ids":[1516089,1516090],"delay":1098.1} +{"session_id":"sess-eb457a58a112","input_length":2366,"output_length":229,"hash_ids":[1516091,1516092,1516093,1516094,1516095],"delay":554.5} +{"session_id":"sess-eb457a58a112","input_length":3052,"output_length":258,"hash_ids":[1516096,1516097,1516098,1516099,1516100,1516101],"delay":1466.8} +{"session_id":"sess-eb457a58a112","input_length":1236,"output_length":422,"hash_ids":[1516102,1516103,1516104],"delay":36859.5} +{"session_id":"sess-eb457a58a112","input_length":188,"output_length":56,"hash_ids":[1516105],"delay":269.1} +{"session_id":"sess-eb457a58a112","input_length":1061,"output_length":58,"hash_ids":[1516106,1516107,1516108],"delay":41002.5} +{"session_id":"sess-eb457a58a112","input_length":4215,"output_length":547,"hash_ids":[1516109,1516110,1516111,1516112,1516113,1516114,1516115,1516116,1516117],"delay":1413.1} +{"session_id":"sess-eb457a58a112","input_length":1162,"output_length":419,"hash_ids":[1516118,1516119,1516120],"delay":1881.1} +{"session_id":"sess-eb457a58a112","input_length":3546,"output_length":379,"hash_ids":[1516121,1516122,1516123,1516124,1516125,1516126,1516127],"delay":1825.1} +{"session_id":"sess-eb457a58a112","input_length":1297,"output_length":205,"hash_ids":[1516128,1516129,1516130],"delay":2436.3} +{"session_id":"sess-eb457a58a112","input_length":2260,"output_length":323,"hash_ids":[1516131,1516132,1516133,1516134,1516135],"delay":904.2} +{"session_id":"sess-eb457a58a112","input_length":6598,"output_length":418,"hash_ids":[1516136,1516137,1516138,1516139,1516140,1516141,1516142,1516143,1516144,1516145,1516146,1516147,1516148],"delay":225.9} +{"session_id":"sess-eb457a58a112","input_length":222,"output_length":1121,"hash_ids":[1516149],"delay":99.4} +{"session_id":"sess-eb457a58a112","input_length":2083,"output_length":107,"hash_ids":[1516150,1516151,1516152,1516153,1516154],"delay":451.7} +{"session_id":"sess-eb457a58a112","input_length":1719,"output_length":174,"hash_ids":[1516155,1516156,1516157,1516158],"delay":1771.5} +{"session_id":"sess-eb457a58a112","input_length":3020,"output_length":210,"hash_ids":[1516159,1516160,1516161,1516162,1516163,1516164],"delay":2928.2} +{"session_id":"sess-eb457a58a112","input_length":3247,"output_length":444,"hash_ids":[1516165,1516166,1516167,1516168,1516169,1516170,1516171],"delay":1090.1} +{"session_id":"sess-eb457a58a112","input_length":3935,"output_length":475,"hash_ids":[1516172,1516173,1516174,1516175,1516176,1516177,1516178,1516179],"delay":235.3} +{"session_id":"sess-eb457a58a112","input_length":8654,"output_length":142,"hash_ids":[1516180,1516181,1516182,1516183,1516184,1516185,1516186,1516187,1516188,1516189,1516190,1516191,1516192,1516193,1516194,1516195,1516196],"delay":580.3} +{"session_id":"sess-eb457a58a112","input_length":1284,"output_length":153,"hash_ids":[1516197,1516198,1516199],"delay":236.8} +{"session_id":"sess-eb457a58a112","input_length":2425,"output_length":181,"hash_ids":[1516200,1516201,1516202,1516203,1516204],"delay":268.4} +{"session_id":"sess-eb457a58a112","input_length":435,"output_length":195,"hash_ids":[1516205],"delay":196.8} +{"session_id":"sess-17c869f8bc38","input_length":57353,"output_length":356,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1520063,1520064,1520065,1520066,1520067,1520068,1520069,1520070,1520071,1520072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-17c869f8bc38","input_length":475,"output_length":187,"hash_ids":[1520073],"delay":10529.0} +{"session_id":"sess-17c869f8bc38","input_length":206,"output_length":191,"hash_ids":[1520074],"delay":2180.2} +{"session_id":"sess-17c869f8bc38","input_length":1672,"output_length":219,"hash_ids":[1520075,1520076,1520077,1520078],"delay":7298.4} +{"session_id":"sess-17c869f8bc38","input_length":2376,"output_length":570,"hash_ids":[1520079,1520080,1520081,1520082,1520083],"delay":1115.3} +{"session_id":"sess-17c869f8bc38","input_length":3208,"output_length":38,"hash_ids":[1520084,1520085,1520086,1520087,1520088,1520089,1520090],"delay":1455.0} +{"session_id":"sess-17c869f8bc38","input_length":2209,"output_length":556,"hash_ids":[1520091,1520092,1520093,1520094,1520095],"delay":923.1} +{"session_id":"sess-17c869f8bc38","input_length":1637,"output_length":757,"hash_ids":[1520096,1520097,1520098,1520099],"delay":243.9} +{"session_id":"sess-17c869f8bc38","input_length":718,"output_length":1099,"hash_ids":[1520100,1520101],"delay":5255.7} +{"session_id":"sess-17c869f8bc38","input_length":4983,"output_length":441,"hash_ids":[1520102,1520103,1520104,1520105,1520106,1520107,1520108,1520109,1520110,1520111],"delay":1997.5} +{"session_id":"sess-17c869f8bc38","input_length":1692,"output_length":319,"hash_ids":[1520112,1520113,1520114,1520115],"delay":569.3} +{"session_id":"sess-17c869f8bc38","input_length":1923,"output_length":280,"hash_ids":[1520116,1520117,1520118,1520119],"delay":2218.6} +{"session_id":"sess-17c869f8bc38","input_length":582,"output_length":1344,"hash_ids":[1520120,1520121],"delay":5502.2} +{"session_id":"sess-17c869f8bc38","input_length":1681,"output_length":71,"hash_ids":[1520122,1520123,1520124,1520125],"delay":722.5} +{"session_id":"sess-17c869f8bc38","input_length":611,"output_length":165,"hash_ids":[1520126,1520127],"delay":764.2} +{"session_id":"sess-17c869f8bc38","input_length":2358,"output_length":380,"hash_ids":[1520128,1520129,1520130,1520131,1520132],"delay":12131.9} +{"session_id":"sess-17c869f8bc38","input_length":9418,"output_length":70,"hash_ids":[1520133,1520134,1520135,1520136,1520137,1520138,1520139,1520140,1520141,1520142,1520143,1520144,1520145,1520146,1520147,1520148,1520149,1520150,1520151],"delay":647.9} +{"session_id":"sess-17c869f8bc38","input_length":525,"output_length":443,"hash_ids":[1520152,1520153],"delay":896.3} +{"session_id":"sess-17c869f8bc38","input_length":2827,"output_length":493,"hash_ids":[1520154,1520155,1520156,1520157,1520158,1520159],"delay":2788.5} +{"session_id":"sess-17c869f8bc38","input_length":2610,"output_length":221,"hash_ids":[1520160,1520161,1520162,1520163,1520164,1520165],"delay":279.7} +{"session_id":"sess-17c869f8bc38","input_length":946,"output_length":528,"hash_ids":[1520166,1520167],"delay":585.6} +{"session_id":"sess-17c869f8bc38","input_length":1645,"output_length":644,"hash_ids":[1520168,1520169,1520170,1520171],"delay":681.3} +{"session_id":"sess-17c869f8bc38","input_length":1978,"output_length":211,"hash_ids":[1520172,1520173,1520174,1520175],"delay":13732.0} +{"session_id":"sess-17c869f8bc38","input_length":8582,"output_length":30,"hash_ids":[1520176,1520177,1520178,1520179,1520180,1520181,1520182,1520183,1520184,1520185,1520186,1520187,1520188,1520189,1520190,1520191,1520192],"delay":982.4} +{"session_id":"sess-17c869f8bc38","input_length":2160,"output_length":308,"hash_ids":[1520193,1520194,1520195,1520196,1520197],"delay":361.2} +{"session_id":"sess-17c869f8bc38","input_length":3110,"output_length":201,"hash_ids":[1520198,1520199,1520200,1520201,1520202,1520203,1520204],"delay":14094.4} +{"session_id":"sess-17c869f8bc38","input_length":1384,"output_length":264,"hash_ids":[1520205,1520206,1520207],"delay":671.8} +{"session_id":"sess-17c869f8bc38","input_length":1294,"output_length":490,"hash_ids":[1520208,1520209,1520210],"delay":122.8} +{"session_id":"sess-7996e5180218","input_length":80135,"output_length":191,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1524063,1524064,1524065,1524066,1524067,1524068,1524069,1524070,1524071,1524072,1524073,1524074,1524075,1524076,1524077,1524078,1524079,1524080,1524081,1524082,1524083,1524084,1524085,1524086,1524087,1524088,1524089,1524090,1524091,1524092,1524093,1524094,1524095,1524096,1524097,1524098,1524099,1524100,1524101,1524102,1524103,1524104,1524105,1524106,1524107,1524108,1524109,1524110,1524111,1524112,1524113,1524114,1524115,1524116],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7996e5180218","input_length":9223,"output_length":143,"hash_ids":[1524117,1524118,1524119,1524120,1524121,1524122,1524123,1524124,1524125,1524126,1524127,1524128,1524129,1524130,1524131,1524132,1524133,1524134,1524135],"delay":657.8} +{"session_id":"sess-7996e5180218","input_length":353,"output_length":233,"hash_ids":[1524136],"delay":313.1} +{"session_id":"sess-7996e5180218","input_length":1237,"output_length":319,"hash_ids":[1524137,1524138,1524139],"delay":183.4} +{"session_id":"sess-7996e5180218","input_length":1618,"output_length":566,"hash_ids":[1524140,1524141,1524142,1524143],"delay":729.2} +{"session_id":"sess-7996e5180218","input_length":2920,"output_length":242,"hash_ids":[1524144,1524145,1524146,1524147,1524148,1524149],"delay":21319.9} +{"session_id":"sess-7996e5180218","input_length":3329,"output_length":345,"hash_ids":[1524150,1524151,1524152,1524153,1524154,1524155,1524156],"delay":535.0} +{"session_id":"sess-7996e5180218","input_length":2087,"output_length":849,"hash_ids":[1524157,1524158,1524159,1524160,1524161],"delay":9100.8} +{"session_id":"sess-7996e5180218","input_length":7832,"output_length":176,"hash_ids":[1524162,1524163,1524164,1524165,1524166,1524167,1524168,1524169,1524170,1524171,1524172,1524173,1524174,1524175,1524176,1524177],"delay":2636.2} +{"session_id":"sess-7996e5180218","input_length":626,"output_length":218,"hash_ids":[1524178,1524179],"delay":525.1} +{"session_id":"sess-7996e5180218","input_length":2249,"output_length":325,"hash_ids":[1524180,1524181,1524182,1524183,1524184],"delay":8884.2} +{"session_id":"sess-7996e5180218","input_length":7020,"output_length":415,"hash_ids":[1524185,1524186,1524187,1524188,1524189,1524190,1524191,1524192,1524193,1524194,1524195,1524196,1524197,1524198],"delay":1551.4} +{"session_id":"sess-7996e5180218","input_length":1658,"output_length":88,"hash_ids":[1524199,1524200,1524201,1524202],"delay":408.7} +{"session_id":"sess-7996e5180218","input_length":1539,"output_length":1604,"hash_ids":[1524203,1524204,1524205,1524206],"delay":4684.3} +{"session_id":"sess-7996e5180218","input_length":528,"output_length":92,"hash_ids":[1524207,1524208],"delay":3792.4} +{"session_id":"sess-7996e5180218","input_length":522,"output_length":116,"hash_ids":[1524209,1524210],"delay":1103.7} +{"session_id":"sess-7996e5180218","input_length":1479,"output_length":127,"hash_ids":[1524211,1524212,1524213],"delay":337.2} +{"session_id":"sess-480afd906711","input_length":53139,"output_length":551,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1528063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4539099d5b87","input_length":55933,"output_length":367,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1532063,1532064,1532065,1532066,1532067,1532068,1532069],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4539099d5b87","input_length":594,"output_length":699,"hash_ids":[1532070,1532071],"delay":19259.3} +{"session_id":"sess-bc8376ba2188","input_length":55729,"output_length":994,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1536063,1536064,1536065,1536066,1536067,1536068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bc8376ba2188","input_length":524,"output_length":283,"hash_ids":[1536069,1536070],"delay":1225.8} +{"session_id":"sess-bc8376ba2188","input_length":762,"output_length":547,"hash_ids":[1536071,1536072],"delay":3039.8} +{"session_id":"sess-bc8376ba2188","input_length":2881,"output_length":294,"hash_ids":[1536073,1536074,1536075,1536076,1536077,1536078],"delay":3167.9} +{"session_id":"sess-bc8376ba2188","input_length":948,"output_length":220,"hash_ids":[1536079,1536080],"delay":609.9} +{"session_id":"sess-bc8376ba2188","input_length":2020,"output_length":486,"hash_ids":[1536081,1536082,1536083,1536084],"delay":28561.9} +{"session_id":"sess-bc8376ba2188","input_length":1906,"output_length":278,"hash_ids":[1536085,1536086,1536087,1536088],"delay":20501.9} +{"session_id":"sess-bc8376ba2188","input_length":2273,"output_length":265,"hash_ids":[1536089,1536090,1536091,1536092,1536093],"delay":313.2} +{"session_id":"sess-bc8376ba2188","input_length":2735,"output_length":107,"hash_ids":[1536094,1536095,1536096,1536097,1536098,1536099],"delay":26049.2} +{"session_id":"sess-bc8376ba2188","input_length":2330,"output_length":1304,"hash_ids":[1536100,1536101,1536102,1536103,1536104],"delay":503.0} +{"session_id":"sess-bc8376ba2188","input_length":1913,"output_length":281,"hash_ids":[1536105,1536106,1536107,1536108],"delay":805.0} +{"session_id":"sess-bc8376ba2188","input_length":1321,"output_length":329,"hash_ids":[1536109,1536110,1536111],"delay":13422.7} +{"session_id":"sess-bc8376ba2188","input_length":2999,"output_length":99,"hash_ids":[1536112,1536113,1536114,1536115,1536116,1536117],"delay":972.0} +{"session_id":"sess-bc8376ba2188","input_length":281,"output_length":1087,"hash_ids":[1536118],"delay":508.6} +{"session_id":"sess-bc8376ba2188","input_length":2470,"output_length":274,"hash_ids":[1536119,1536120,1536121,1536122,1536123],"delay":592.1} +{"session_id":"sess-bc8376ba2188","input_length":465,"output_length":263,"hash_ids":[1536124],"delay":131.8} +{"session_id":"sess-bc8376ba2188","input_length":3075,"output_length":74,"hash_ids":[1536125,1536126,1536127,1536128,1536129,1536130,1536131],"delay":5611.7} +{"session_id":"sess-bc8376ba2188","input_length":2768,"output_length":437,"hash_ids":[1536132,1536133,1536134,1536135,1536136,1536137],"delay":337.1} +{"session_id":"sess-bc8376ba2188","input_length":2750,"output_length":261,"hash_ids":[1536138,1536139,1536140,1536141,1536142,1536143],"delay":239.1} +{"session_id":"sess-bc8376ba2188","input_length":2265,"output_length":248,"hash_ids":[1536144,1536145,1536146,1536147,1536148],"delay":560.2} +{"session_id":"sess-bc8376ba2188","input_length":417,"output_length":770,"hash_ids":[1536149],"delay":18883.5} +{"session_id":"sess-bc8376ba2188","input_length":8859,"output_length":307,"hash_ids":[1536150,1536151,1536152,1536153,1536154,1536155,1536156,1536157,1536158,1536159,1536160,1536161,1536162,1536163,1536164,1536165,1536166,1536167],"delay":621.7} +{"session_id":"sess-c1c363766bd5","input_length":53155,"output_length":274,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1540063],"timestamp":0.0,"group_id":5} +{"session_id":"sess-c1c363766bd5","input_length":259,"output_length":183,"hash_ids":[1540064],"delay":1156.0} +{"session_id":"sess-c1c363766bd5","input_length":118,"output_length":472,"hash_ids":[1540065],"delay":1214.9} +{"session_id":"sess-c1c363766bd5","input_length":2780,"output_length":315,"hash_ids":[1540066,1540067,1540068,1540069,1540070,1540071],"delay":73210.4} +{"session_id":"sess-c1c363766bd5","input_length":457,"output_length":156,"hash_ids":[1540072],"delay":405.9} +{"session_id":"sess-c1c363766bd5","input_length":505,"output_length":312,"hash_ids":[1540073],"delay":943.8} +{"session_id":"sess-c1c363766bd5","input_length":1933,"output_length":452,"hash_ids":[1540074,1540075,1540076,1540077],"delay":1159.7} +{"session_id":"sess-c1c363766bd5","input_length":785,"output_length":205,"hash_ids":[1540078,1540079],"delay":2655.0} +{"session_id":"sess-c1c363766bd5","input_length":3115,"output_length":2484,"hash_ids":[1540080,1540081,1540082,1540083,1540084,1540085,1540086],"delay":47044.9} +{"session_id":"sess-c1c363766bd5","input_length":5916,"output_length":673,"hash_ids":[1540087,1540088,1540089,1540090,1540091,1540092,1540093,1540094,1540095,1540096,1540097,1540098],"delay":691.7} +{"session_id":"sess-c1c363766bd5","input_length":1151,"output_length":378,"hash_ids":[1540099,1540100,1540101],"delay":583.7} +{"session_id":"sess-c1c363766bd5","input_length":5216,"output_length":700,"hash_ids":[1540102,1540103,1540104,1540105,1540106,1540107,1540108,1540109,1540110,1540111,1540112],"delay":5995.3} +{"session_id":"sess-c1c363766bd5","input_length":3951,"output_length":83,"hash_ids":[1540113,1540114,1540115,1540116,1540117,1540118,1540119,1540120],"delay":3231.7} +{"session_id":"sess-c1c363766bd5","input_length":914,"output_length":91,"hash_ids":[1540121,1540122],"delay":547.6} +{"session_id":"sess-c1c363766bd5","input_length":957,"output_length":203,"hash_ids":[1540123,1540124],"delay":509.6} +{"session_id":"sess-c1c363766bd5","input_length":1251,"output_length":32,"hash_ids":[1540125,1540126,1540127],"delay":681.2} +{"session_id":"sess-c1c363766bd5","input_length":2751,"output_length":374,"hash_ids":[1540128,1540129,1540130,1540131,1540132,1540133],"delay":810.4} +{"session_id":"sess-c1c363766bd5","input_length":262,"output_length":1199,"hash_ids":[1540134],"delay":748.2} +{"session_id":"sess-c1c363766bd5","input_length":189,"output_length":570,"hash_ids":[1540135],"delay":3034.1} +{"session_id":"sess-c1c363766bd5","input_length":2017,"output_length":1529,"hash_ids":[1540136,1540137,1540138,1540139],"delay":220.5} +{"session_id":"sess-c1c363766bd5","input_length":1046,"output_length":190,"hash_ids":[1540140,1540141,1540142],"delay":2543.6} +{"session_id":"sess-c1c363766bd5","input_length":1291,"output_length":220,"hash_ids":[1540143,1540144,1540145],"delay":350.7} +{"session_id":"sess-c1c363766bd5","input_length":633,"output_length":126,"hash_ids":[1540146,1540147],"delay":3200.9} +{"session_id":"sess-c1c363766bd5","input_length":2432,"output_length":166,"hash_ids":[1540148,1540149,1540150,1540151,1540152],"delay":1616.4} +{"session_id":"sess-c1c363766bd5","input_length":2309,"output_length":126,"hash_ids":[1540153,1540154,1540155,1540156,1540157],"delay":643.3} +{"session_id":"sess-c1c363766bd5","input_length":671,"output_length":154,"hash_ids":[1540158,1540159],"delay":837.3} +{"session_id":"sess-e77fa3a31e9d","input_length":58990,"output_length":971,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1544063,1544064,1544065,1544066,1544067,1544068,1544069,1544070,1544071,1544072,1544073,1544074,1544075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e77fa3a31e9d","input_length":1196,"output_length":311,"hash_ids":[1544076,1544077,1544078],"delay":1083.4} +{"session_id":"sess-e77fa3a31e9d","input_length":1017,"output_length":519,"hash_ids":[1544079,1544080],"delay":24464.4} +{"session_id":"sess-e77fa3a31e9d","input_length":397,"output_length":121,"hash_ids":[1544081],"delay":3597.1} +{"session_id":"sess-e77fa3a31e9d","input_length":3598,"output_length":507,"hash_ids":[1544082,1544083,1544084,1544085,1544086,1544087,1544088,1544089],"delay":2297.6} +{"session_id":"sess-e77fa3a31e9d","input_length":3164,"output_length":324,"hash_ids":[1544090,1544091,1544092,1544093,1544094,1544095,1544096],"delay":11074.5} +{"session_id":"sess-e77fa3a31e9d","input_length":882,"output_length":128,"hash_ids":[1544097,1544098],"delay":237.0} +{"session_id":"sess-e77fa3a31e9d","input_length":3700,"output_length":1488,"hash_ids":[1544099,1544100,1544101,1544102,1544103,1544104,1544105,1544106],"delay":19435.9} +{"session_id":"sess-e77fa3a31e9d","input_length":2090,"output_length":1016,"hash_ids":[1544107,1544108,1544109,1544110,1544111],"delay":199.6} +{"session_id":"sess-e77fa3a31e9d","input_length":4766,"output_length":155,"hash_ids":[1544112,1544113,1544114,1544115,1544116,1544117,1544118,1544119,1544120,1544121],"delay":5079.0} +{"session_id":"sess-e77fa3a31e9d","input_length":3799,"output_length":265,"hash_ids":[1544122,1544123,1544124,1544125,1544126,1544127,1544128,1544129],"delay":16279.2} +{"session_id":"sess-e77fa3a31e9d","input_length":8892,"output_length":835,"hash_ids":[1544130,1544131,1544132,1544133,1544134,1544135,1544136,1544137,1544138,1544139,1544140,1544141,1544142,1544143,1544144,1544145,1544146,1544147],"delay":1796.9} +{"session_id":"sess-e77fa3a31e9d","input_length":643,"output_length":1291,"hash_ids":[1544148,1544149],"delay":2495.8} +{"session_id":"sess-e77fa3a31e9d","input_length":2987,"output_length":250,"hash_ids":[1544150,1544151,1544152,1544153,1544154,1544155],"delay":3899.4} +{"session_id":"sess-e77fa3a31e9d","input_length":4917,"output_length":93,"hash_ids":[1544156,1544157,1544158,1544159,1544160,1544161,1544162,1544163,1544164,1544165],"delay":199.7} +{"session_id":"sess-e77fa3a31e9d","input_length":5769,"output_length":317,"hash_ids":[1544166,1544167,1544168,1544169,1544170,1544171,1544172,1544173,1544174,1544175,1544176,1544177],"delay":751.7} +{"session_id":"sess-e77fa3a31e9d","input_length":686,"output_length":110,"hash_ids":[1544178,1544179],"delay":313.0} +{"session_id":"sess-e77fa3a31e9d","input_length":1098,"output_length":301,"hash_ids":[1544180,1544181,1544182],"delay":277.7} +{"session_id":"sess-e77fa3a31e9d","input_length":9185,"output_length":740,"hash_ids":[1544183,1544184,1544185,1544186,1544187,1544188,1544189,1544190,1544191,1544192,1544193,1544194,1544195,1544196,1544197,1544198,1544199,1544200],"delay":23031.0} +{"session_id":"sess-e77fa3a31e9d","input_length":1345,"output_length":696,"hash_ids":[1544201,1544202,1544203],"delay":308.3} +{"session_id":"sess-e7a12eb4e87e","input_length":62498,"output_length":387,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1548063,1548064,1548065,1548066,1548067,1548068,1548069,1548070,1548071,1548072,1548073,1548074,1548075,1548076,1548077,1548078,1548079,1548080,1548081,1548082],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e7a12eb4e87e","input_length":467,"output_length":73,"hash_ids":[1548083],"delay":738.4} +{"session_id":"sess-e7a12eb4e87e","input_length":2936,"output_length":45,"hash_ids":[1548084,1548085,1548086,1548087,1548088,1548089],"delay":1275.6} +{"session_id":"sess-e7a12eb4e87e","input_length":568,"output_length":113,"hash_ids":[1548090,1548091],"delay":229.7} +{"session_id":"sess-e7a12eb4e87e","input_length":2447,"output_length":840,"hash_ids":[1548092,1548093,1548094,1548095,1548096],"delay":585.8} +{"session_id":"sess-e7a12eb4e87e","input_length":4184,"output_length":812,"hash_ids":[1548097,1548098,1548099,1548100,1548101,1548102,1548103,1548104,1548105],"delay":7918.4} +{"session_id":"sess-e7a12eb4e87e","input_length":4048,"output_length":647,"hash_ids":[1548106,1548107,1548108,1548109,1548110,1548111,1548112,1548113],"delay":464.0} +{"session_id":"sess-e7a12eb4e87e","input_length":9338,"output_length":681,"hash_ids":[1548114,1548115,1548116,1548117,1548118,1548119,1548120,1548121,1548122,1548123,1548124,1548125,1548126,1548127,1548128,1548129,1548130,1548131,1548132],"delay":259.4} +{"session_id":"sess-e7a12eb4e87e","input_length":267,"output_length":351,"hash_ids":[1548133],"delay":12297.5} +{"session_id":"sess-e7a12eb4e87e","input_length":450,"output_length":295,"hash_ids":[1548134],"delay":7562.4} +{"session_id":"sess-e7a12eb4e87e","input_length":5096,"output_length":42,"hash_ids":[1548135,1548136,1548137,1548138,1548139,1548140,1548141,1548142,1548143,1548144],"delay":531.8} +{"session_id":"sess-e7a12eb4e87e","input_length":1787,"output_length":568,"hash_ids":[1548145,1548146,1548147,1548148],"delay":1573.5} +{"session_id":"sess-e7a12eb4e87e","input_length":3031,"output_length":755,"hash_ids":[1548149,1548150,1548151,1548152,1548153,1548154],"delay":2320.2} +{"session_id":"sess-e7a12eb4e87e","input_length":402,"output_length":208,"hash_ids":[1548155],"delay":12918.7} +{"session_id":"sess-e7a12eb4e87e","input_length":3343,"output_length":474,"hash_ids":[1548156,1548157,1548158,1548159,1548160,1548161,1548162],"delay":385.6} +{"session_id":"sess-e7a12eb4e87e","input_length":1772,"output_length":67,"hash_ids":[1548163,1548164,1548165,1548166],"delay":1621.3} +{"session_id":"sess-e7a12eb4e87e","input_length":7258,"output_length":210,"hash_ids":[1548167,1548168,1548169,1548170,1548171,1548172,1548173,1548174,1548175,1548176,1548177,1548178,1548179,1548180,1548181],"delay":1573.7} +{"session_id":"sess-e7a12eb4e87e","input_length":2500,"output_length":569,"hash_ids":[1548182,1548183,1548184,1548185,1548186],"delay":194.7} +{"session_id":"sess-e7a12eb4e87e","input_length":1125,"output_length":2105,"hash_ids":[1548187,1548188,1548189],"delay":868.2} +{"session_id":"sess-e7a12eb4e87e","input_length":463,"output_length":392,"hash_ids":[1548190],"delay":17765.0} +{"session_id":"sess-e7a12eb4e87e","input_length":2251,"output_length":50,"hash_ids":[1548191,1548192,1548193,1548194,1548195],"delay":4330.6} +{"session_id":"sess-e7a12eb4e87e","input_length":1681,"output_length":180,"hash_ids":[1548196,1548197,1548198,1548199],"delay":485.2} +{"session_id":"sess-e7a12eb4e87e","input_length":1658,"output_length":267,"hash_ids":[1548200,1548201,1548202,1548203],"delay":1533.7} +{"session_id":"sess-aa5d19c245a5","input_length":52611,"output_length":776,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702],"timestamp":0.0,"group_id":33} +{"session_id":"sess-aa5d19c245a5","input_length":2318,"output_length":185,"hash_ids":[1548204,1548205,1548206,1548207,1548208],"delay":125.2} +{"session_id":"sess-aa5d19c245a5","input_length":700,"output_length":151,"hash_ids":[1548209,1548210],"delay":972.3} +{"session_id":"sess-aa5d19c245a5","input_length":4998,"output_length":209,"hash_ids":[1548211,1548212,1548213,1548214,1548215,1548216,1548217,1548218,1548219,1548220],"delay":13803.9} +{"session_id":"sess-aa5d19c245a5","input_length":521,"output_length":535,"hash_ids":[1548221,1548222],"delay":2574.5} +{"session_id":"sess-aa5d19c245a5","input_length":793,"output_length":254,"hash_ids":[1548223,1548224],"delay":475.9} +{"session_id":"sess-aa5d19c245a5","input_length":1206,"output_length":247,"hash_ids":[1548225,1548226,1548227],"delay":5707.7} +{"session_id":"sess-aa5d19c245a5","input_length":1551,"output_length":92,"hash_ids":[1548228,1548229,1548230,1548231],"delay":1212.9} +{"session_id":"sess-aa5d19c245a5","input_length":1070,"output_length":65,"hash_ids":[1548232,1548233,1548234],"delay":2635.7} +{"session_id":"sess-aa5d19c245a5","input_length":7835,"output_length":119,"hash_ids":[1548235,1548236,1548237,1548238,1548239,1548240,1548241,1548242,1548243,1548244,1548245,1548246,1548247,1548248,1548249,1548250],"delay":64123.8} +{"session_id":"sess-aa5d19c245a5","input_length":1719,"output_length":161,"hash_ids":[1548251,1548252,1548253,1548254],"delay":20676.5} +{"session_id":"sess-21966919814e","input_length":54704,"output_length":368,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1556063,1556064,1556065,1556066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-21966919814e","input_length":4614,"output_length":169,"hash_ids":[1556067,1556068,1556069,1556070,1556071,1556072,1556073,1556074,1556075,1556076],"delay":1570.8} +{"session_id":"sess-21966919814e","input_length":5252,"output_length":184,"hash_ids":[1556077,1556078,1556079,1556080,1556081,1556082,1556083,1556084,1556085,1556086,1556087],"delay":898.6} +{"session_id":"sess-21966919814e","input_length":984,"output_length":679,"hash_ids":[1556088,1556089],"delay":422.3} +{"session_id":"sess-21966919814e","input_length":1797,"output_length":97,"hash_ids":[1556090,1556091,1556092,1556093],"delay":26738.8} +{"session_id":"sess-21966919814e","input_length":4246,"output_length":241,"hash_ids":[1556094,1556095,1556096,1556097,1556098,1556099,1556100,1556101,1556102],"delay":567.4} +{"session_id":"sess-21966919814e","input_length":480,"output_length":126,"hash_ids":[1556103],"delay":44560.5} +{"session_id":"sess-21966919814e","input_length":799,"output_length":134,"hash_ids":[1556104,1556105],"delay":2256.3} +{"session_id":"sess-21966919814e","input_length":1783,"output_length":379,"hash_ids":[1556106,1556107,1556108,1556109],"delay":555.6} +{"session_id":"sess-21966919814e","input_length":914,"output_length":778,"hash_ids":[1556110,1556111],"delay":1152.4} +{"session_id":"sess-21966919814e","input_length":4883,"output_length":291,"hash_ids":[1556112,1556113,1556114,1556115,1556116,1556117,1556118,1556119,1556120,1556121],"delay":825.1} +{"session_id":"sess-21966919814e","input_length":1188,"output_length":120,"hash_ids":[1556122,1556123,1556124],"delay":498.6} +{"session_id":"sess-21966919814e","input_length":2192,"output_length":104,"hash_ids":[1556125,1556126,1556127,1556128,1556129],"delay":11619.2} +{"session_id":"sess-21966919814e","input_length":4583,"output_length":1041,"hash_ids":[1556130,1556131,1556132,1556133,1556134,1556135,1556136,1556137,1556138],"delay":285.1} +{"session_id":"sess-21966919814e","input_length":3556,"output_length":580,"hash_ids":[1556139,1556140,1556141,1556142,1556143,1556144,1556145],"delay":7000.6} +{"session_id":"sess-21966919814e","input_length":2725,"output_length":839,"hash_ids":[1556146,1556147,1556148,1556149,1556150,1556151],"delay":1727.2} +{"session_id":"sess-21966919814e","input_length":3616,"output_length":114,"hash_ids":[1556152,1556153,1556154,1556155,1556156,1556157,1556158,1556159],"delay":3627.9} +{"session_id":"sess-21966919814e","input_length":1558,"output_length":444,"hash_ids":[1556160,1556161,1556162,1556163],"delay":823.0} +{"session_id":"sess-21966919814e","input_length":843,"output_length":194,"hash_ids":[1556164,1556165],"delay":237.1} +{"session_id":"sess-21966919814e","input_length":759,"output_length":1197,"hash_ids":[1556166,1556167],"delay":450.7} +{"session_id":"sess-21966919814e","input_length":3592,"output_length":802,"hash_ids":[1556168,1556169,1556170,1556171,1556172,1556173,1556174,1556175],"delay":10974.8} +{"session_id":"sess-21966919814e","input_length":1888,"output_length":294,"hash_ids":[1556176,1556177,1556178,1556179],"delay":953.3} +{"session_id":"sess-21966919814e","input_length":592,"output_length":173,"hash_ids":[1556180,1556181],"delay":645.3} +{"session_id":"sess-21966919814e","input_length":3258,"output_length":154,"hash_ids":[1556182,1556183,1556184,1556185,1556186,1556187,1556188],"delay":10409.4} +{"session_id":"sess-21966919814e","input_length":2101,"output_length":125,"hash_ids":[1556189,1556190,1556191,1556192,1556193],"delay":1627.6} +{"session_id":"sess-21966919814e","input_length":5622,"output_length":592,"hash_ids":[1556194,1556195,1556196,1556197,1556198,1556199,1556200,1556201,1556202,1556203,1556204],"delay":431.3} +{"session_id":"sess-da60c4ddaf96","input_length":57862,"output_length":383,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1560063,1560064,1560065,1560066,1560067,1560068,1560069,1560070,1560071,1560072,1560073],"timestamp":0.0,"group_id":7} +{"session_id":"sess-da60c4ddaf96","input_length":893,"output_length":79,"hash_ids":[1560074,1560075],"delay":1603.4} +{"session_id":"sess-da60c4ddaf96","input_length":4804,"output_length":802,"hash_ids":[1560076,1560077,1560078,1560079,1560080,1560081,1560082,1560083,1560084,1560085],"delay":41348.4} +{"session_id":"sess-da60c4ddaf96","input_length":403,"output_length":69,"hash_ids":[1560086],"delay":1444.1} +{"session_id":"sess-da60c4ddaf96","input_length":1195,"output_length":354,"hash_ids":[1560087,1560088,1560089],"delay":9040.7} +{"session_id":"sess-da60c4ddaf96","input_length":6778,"output_length":55,"hash_ids":[1560090,1560091,1560092,1560093,1560094,1560095,1560096,1560097,1560098,1560099,1560100,1560101,1560102,1560103],"delay":8395.2} +{"session_id":"sess-da60c4ddaf96","input_length":1657,"output_length":664,"hash_ids":[1560104,1560105,1560106,1560107],"delay":602.6} +{"session_id":"sess-da60c4ddaf96","input_length":6470,"output_length":358,"hash_ids":[1560108,1560109,1560110,1560111,1560112,1560113,1560114,1560115,1560116,1560117,1560118,1560119,1560120],"delay":9474.2} +{"session_id":"sess-da60c4ddaf96","input_length":2679,"output_length":224,"hash_ids":[1560121,1560122,1560123,1560124,1560125,1560126],"delay":9733.0} +{"session_id":"sess-da60c4ddaf96","input_length":918,"output_length":761,"hash_ids":[1560127,1560128],"delay":1180.4} +{"session_id":"sess-da60c4ddaf96","input_length":3988,"output_length":499,"hash_ids":[1560129,1560130,1560131,1560132,1560133,1560134,1560135,1560136],"delay":2008.2} +{"session_id":"sess-da60c4ddaf96","input_length":2979,"output_length":1281,"hash_ids":[1560137,1560138,1560139,1560140,1560141,1560142],"delay":246.3} +{"session_id":"sess-da60c4ddaf96","input_length":4780,"output_length":209,"hash_ids":[1560143,1560144,1560145,1560146,1560147,1560148,1560149,1560150,1560151,1560152],"delay":1053.0} +{"session_id":"sess-da60c4ddaf96","input_length":521,"output_length":1042,"hash_ids":[1560153,1560154],"delay":8948.9} +{"session_id":"sess-da60c4ddaf96","input_length":6842,"output_length":184,"hash_ids":[1560155,1560156,1560157,1560158,1560159,1560160,1560161,1560162,1560163,1560164,1560165,1560166,1560167,1560168],"delay":603.0} +{"session_id":"sess-da60c4ddaf96","input_length":2094,"output_length":207,"hash_ids":[1560169,1560170,1560171,1560172,1560173],"delay":8654.4} +{"session_id":"sess-da60c4ddaf96","input_length":5456,"output_length":451,"hash_ids":[1560174,1560175,1560176,1560177,1560178,1560179,1560180,1560181,1560182,1560183,1560184],"delay":12751.7} +{"session_id":"sess-da60c4ddaf96","input_length":2526,"output_length":112,"hash_ids":[1560185,1560186,1560187,1560188,1560189],"delay":1044.4} +{"session_id":"sess-da60c4ddaf96","input_length":288,"output_length":168,"hash_ids":[1560190],"delay":379.6} +{"session_id":"sess-da60c4ddaf96","input_length":1226,"output_length":104,"hash_ids":[1560191,1560192,1560193],"delay":380.0} +{"session_id":"sess-da60c4ddaf96","input_length":1103,"output_length":111,"hash_ids":[1560194,1560195,1560196],"delay":8443.9} +{"session_id":"sess-da60c4ddaf96","input_length":7462,"output_length":444,"hash_ids":[1560197,1560198,1560199,1560200,1560201,1560202,1560203,1560204,1560205,1560206,1560207,1560208,1560209,1560210,1560211],"delay":629.4} +{"session_id":"sess-d3a5db507485","input_length":66922,"output_length":985,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1564063,1564064,1564065,1564066,1564067,1564068,1564069,1564070,1564071,1564072,1564073,1564074,1564075,1564076,1564077,1564078,1564079,1564080,1564081,1564082,1564083,1564084,1564085,1564086,1564087,1564088,1564089,1564090],"timestamp":0.0,"group_id":4} +{"session_id":"sess-d3a5db507485","input_length":896,"output_length":519,"hash_ids":[1564091,1564092],"delay":217.7} +{"session_id":"sess-d3a5db507485","input_length":8913,"output_length":46,"hash_ids":[1564093,1564094,1564095,1564096,1564097,1564098,1564099,1564100,1564101,1564102,1564103,1564104,1564105,1564106,1564107,1564108,1564109,1564110],"delay":26837.8} +{"session_id":"sess-d3a5db507485","input_length":3972,"output_length":183,"hash_ids":[1564111,1564112,1564113,1564114,1564115,1564116,1564117,1564118],"delay":48701.6} +{"session_id":"sess-d3a5db507485","input_length":746,"output_length":479,"hash_ids":[1564119,1564120],"delay":1662.8} +{"session_id":"sess-223193669aad","input_length":56522,"output_length":80,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,1568063,1568064,1568065,1568066,1568067,1568068,1568069,1568070],"timestamp":0.0,"group_id":46} +{"session_id":"sess-223193669aad","input_length":5897,"output_length":106,"hash_ids":[1568071,1568072,1568073,1568074,1568075,1568076,1568077,1568078,1568079,1568080,1568081,1568082],"delay":17196.7} +{"session_id":"sess-223193669aad","input_length":816,"output_length":373,"hash_ids":[1568083,1568084],"delay":15618.7} +{"session_id":"sess-223193669aad","input_length":275,"output_length":129,"hash_ids":[1568085],"delay":1135.9} +{"session_id":"sess-223193669aad","input_length":980,"output_length":50,"hash_ids":[1568086,1568087],"delay":2966.0} +{"session_id":"sess-223193669aad","input_length":2989,"output_length":146,"hash_ids":[1568088,1568089,1568090,1568091,1568092,1568093],"delay":2013.0} +{"session_id":"sess-223193669aad","input_length":2383,"output_length":299,"hash_ids":[1568094,1568095,1568096,1568097,1568098],"delay":247.4} +{"session_id":"sess-223193669aad","input_length":1677,"output_length":214,"hash_ids":[1568099,1568100,1568101,1568102],"delay":1585.6} +{"session_id":"sess-223193669aad","input_length":289,"output_length":162,"hash_ids":[1568103],"delay":1192.1} +{"session_id":"sess-223193669aad","input_length":122,"output_length":1019,"hash_ids":[1568104],"delay":1578.9} +{"session_id":"sess-223193669aad","input_length":458,"output_length":211,"hash_ids":[1568105],"delay":400.1} +{"session_id":"sess-223193669aad","input_length":2185,"output_length":48,"hash_ids":[1568106,1568107,1568108,1568109,1568110],"delay":1467.9} +{"session_id":"sess-223193669aad","input_length":2002,"output_length":43,"hash_ids":[1568111,1568112,1568113,1568114],"delay":16648.9} +{"session_id":"sess-223193669aad","input_length":3189,"output_length":54,"hash_ids":[1568115,1568116,1568117,1568118,1568119,1568120,1568121],"delay":12956.8} +{"session_id":"sess-223193669aad","input_length":3453,"output_length":1357,"hash_ids":[1568122,1568123,1568124,1568125,1568126,1568127,1568128],"delay":1089.1} +{"session_id":"sess-223193669aad","input_length":6647,"output_length":275,"hash_ids":[1568129,1568130,1568131,1568132,1568133,1568134,1568135,1568136,1568137,1568138,1568139,1568140,1568141],"delay":1323.7} +{"session_id":"sess-223193669aad","input_length":976,"output_length":412,"hash_ids":[1568142,1568143],"delay":189.4} +{"session_id":"sess-223193669aad","input_length":2874,"output_length":918,"hash_ids":[1568144,1568145,1568146,1568147,1568148,1568149],"delay":10198.7} +{"session_id":"sess-223193669aad","input_length":1539,"output_length":226,"hash_ids":[1568150,1568151,1568152,1568153],"delay":1022.0} +{"session_id":"sess-223193669aad","input_length":9962,"output_length":80,"hash_ids":[1568154,1568155,1568156,1568157,1568158,1568159,1568160,1568161,1568162,1568163,1568164,1568165,1568166,1568167,1568168,1568169,1568170,1568171,1568172,1568173],"delay":11980.7} +{"session_id":"sess-223193669aad","input_length":291,"output_length":228,"hash_ids":[1568174],"delay":825.4} +{"session_id":"sess-223193669aad","input_length":880,"output_length":54,"hash_ids":[1568175,1568176],"delay":293.7} +{"session_id":"sess-223193669aad","input_length":1143,"output_length":801,"hash_ids":[1568177,1568178,1568179],"delay":630.2} +{"session_id":"sess-223193669aad","input_length":2702,"output_length":205,"hash_ids":[1568180,1568181,1568182,1568183,1568184,1568185],"delay":775.3} +{"session_id":"sess-223193669aad","input_length":5927,"output_length":50,"hash_ids":[1568186,1568187,1568188,1568189,1568190,1568191,1568192,1568193,1568194,1568195,1568196,1568197],"delay":1977.0} +{"session_id":"sess-223193669aad","input_length":4773,"output_length":219,"hash_ids":[1568198,1568199,1568200,1568201,1568202,1568203,1568204,1568205,1568206,1568207],"delay":2241.2} +{"session_id":"sess-223193669aad","input_length":683,"output_length":276,"hash_ids":[1568208,1568209],"delay":5884.9} +{"session_id":"sess-c653a0d5ca79","input_length":59416,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1572063,1572064,1572065,1572066,1572067,1572068,1572069,1572070,1572071,1572072,1572073,1572074,1572075,1572076],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c653a0d5ca79","input_length":370,"output_length":288,"hash_ids":[1572077],"delay":26320.8} +{"session_id":"sess-c653a0d5ca79","input_length":383,"output_length":60,"hash_ids":[1572078],"delay":3733.7} +{"session_id":"sess-c653a0d5ca79","input_length":1213,"output_length":171,"hash_ids":[1572079,1572080,1572081],"delay":3656.3} +{"session_id":"sess-c653a0d5ca79","input_length":778,"output_length":274,"hash_ids":[1572082,1572083],"delay":1039.8} +{"session_id":"sess-c653a0d5ca79","input_length":2064,"output_length":30,"hash_ids":[1572084,1572085,1572086,1572087,1572088],"delay":1102.3} +{"session_id":"sess-c653a0d5ca79","input_length":1229,"output_length":137,"hash_ids":[1572089,1572090,1572091],"delay":4008.2} +{"session_id":"sess-c653a0d5ca79","input_length":5473,"output_length":153,"hash_ids":[1572092,1572093,1572094,1572095,1572096,1572097,1572098,1572099,1572100,1572101,1572102],"delay":15895.0} +{"session_id":"sess-c653a0d5ca79","input_length":1404,"output_length":1292,"hash_ids":[1572103,1572104,1572105],"delay":1632.8} +{"session_id":"sess-c653a0d5ca79","input_length":1619,"output_length":30,"hash_ids":[1572106,1572107,1572108,1572109],"delay":1814.2} +{"session_id":"sess-c653a0d5ca79","input_length":1472,"output_length":223,"hash_ids":[1572110,1572111,1572112],"delay":2482.4} +{"session_id":"sess-c653a0d5ca79","input_length":209,"output_length":487,"hash_ids":[1572113],"delay":3536.1} +{"session_id":"sess-c653a0d5ca79","input_length":2905,"output_length":506,"hash_ids":[1572114,1572115,1572116,1572117,1572118,1572119],"delay":21743.1} +{"session_id":"sess-c653a0d5ca79","input_length":873,"output_length":419,"hash_ids":[1572120,1572121],"delay":815.7} +{"session_id":"sess-c653a0d5ca79","input_length":5025,"output_length":125,"hash_ids":[1572122,1572123,1572124,1572125,1572126,1572127,1572128,1572129,1572130,1572131],"delay":710.7} +{"session_id":"sess-c653a0d5ca79","input_length":1908,"output_length":360,"hash_ids":[1572132,1572133,1572134,1572135],"delay":1785.1} +{"session_id":"sess-c653a0d5ca79","input_length":1503,"output_length":163,"hash_ids":[1572136,1572137,1572138],"delay":2581.1} +{"session_id":"sess-c653a0d5ca79","input_length":2059,"output_length":431,"hash_ids":[1572139,1572140,1572141,1572142,1572143],"delay":521.5} +{"session_id":"sess-c653a0d5ca79","input_length":3013,"output_length":143,"hash_ids":[1572144,1572145,1572146,1572147,1572148,1572149],"delay":14445.2} +{"session_id":"sess-c653a0d5ca79","input_length":1309,"output_length":99,"hash_ids":[1572150,1572151,1572152],"delay":360.0} +{"session_id":"sess-ecee65af2c3f","input_length":57766,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,1576063,1576064,1576065,1576066,1576067,1576068,1576069,1576070,1576071,1576072],"timestamp":0.0,"group_id":19} +{"session_id":"sess-ecee65af2c3f","input_length":1384,"output_length":360,"hash_ids":[1576073,1576074,1576075],"delay":1185.5} +{"session_id":"sess-ecee65af2c3f","input_length":2301,"output_length":181,"hash_ids":[1576076,1576077,1576078,1576079,1576080],"delay":2515.2} +{"session_id":"sess-ecee65af2c3f","input_length":189,"output_length":86,"hash_ids":[1576081],"delay":860.2} +{"session_id":"sess-ecee65af2c3f","input_length":6025,"output_length":896,"hash_ids":[1576082,1576083,1576084,1576085,1576086,1576087,1576088,1576089,1576090,1576091,1576092,1576093],"delay":3288.4} +{"session_id":"sess-ecee65af2c3f","input_length":1831,"output_length":1052,"hash_ids":[1576094,1576095,1576096,1576097],"delay":3582.8} +{"session_id":"sess-ecee65af2c3f","input_length":988,"output_length":432,"hash_ids":[1576098,1576099],"delay":2665.8} +{"session_id":"sess-ecee65af2c3f","input_length":169,"output_length":326,"hash_ids":[1576100],"delay":14270.1} +{"session_id":"sess-ecee65af2c3f","input_length":612,"output_length":154,"hash_ids":[1576101,1576102],"delay":164.2} +{"session_id":"sess-ecee65af2c3f","input_length":2262,"output_length":116,"hash_ids":[1576103,1576104,1576105,1576106,1576107],"delay":552.4} +{"session_id":"sess-ecee65af2c3f","input_length":1487,"output_length":285,"hash_ids":[1576108,1576109,1576110],"delay":718.8} +{"session_id":"sess-ecee65af2c3f","input_length":966,"output_length":576,"hash_ids":[1576111,1576112],"delay":12801.5} +{"session_id":"sess-ecee65af2c3f","input_length":4208,"output_length":79,"hash_ids":[1576113,1576114,1576115,1576116,1576117,1576118,1576119,1576120,1576121],"delay":775.4} +{"session_id":"sess-ecee65af2c3f","input_length":2827,"output_length":280,"hash_ids":[1576122,1576123,1576124,1576125,1576126,1576127],"delay":2947.1} +{"session_id":"sess-ecee65af2c3f","input_length":966,"output_length":870,"hash_ids":[1576128,1576129],"delay":2049.1} +{"session_id":"sess-ecee65af2c3f","input_length":4132,"output_length":385,"hash_ids":[1576130,1576131,1576132,1576133,1576134,1576135,1576136,1576137,1576138],"delay":1327.0} +{"session_id":"sess-ecee65af2c3f","input_length":610,"output_length":306,"hash_ids":[1576139,1576140],"delay":846.1} +{"session_id":"sess-ecee65af2c3f","input_length":1314,"output_length":901,"hash_ids":[1576141,1576142,1576143],"delay":9836.1} +{"session_id":"sess-ecee65af2c3f","input_length":4708,"output_length":373,"hash_ids":[1576144,1576145,1576146,1576147,1576148,1576149,1576150,1576151,1576152,1576153],"delay":1436.2} +{"session_id":"sess-ecee65af2c3f","input_length":525,"output_length":66,"hash_ids":[1576154,1576155],"delay":842.0} +{"session_id":"sess-ecee65af2c3f","input_length":1128,"output_length":1620,"hash_ids":[1576156,1576157,1576158],"delay":6991.7} +{"session_id":"sess-ecee65af2c3f","input_length":3098,"output_length":90,"hash_ids":[1576159,1576160,1576161,1576162,1576163,1576164,1576165],"delay":9855.9} +{"session_id":"sess-ecee65af2c3f","input_length":142,"output_length":829,"hash_ids":[1576166],"delay":1055.5} +{"session_id":"sess-09f7f76c7388","input_length":55328,"output_length":1662,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1580063,1580064,1580065,1580066,1580067,1580068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-09f7f76c7388","input_length":4468,"output_length":244,"hash_ids":[1580069,1580070,1580071,1580072,1580073,1580074,1580075,1580076,1580077],"delay":1258.0} +{"session_id":"sess-09f7f76c7388","input_length":4903,"output_length":1812,"hash_ids":[1580078,1580079,1580080,1580081,1580082,1580083,1580084,1580085,1580086,1580087],"delay":500.8} +{"session_id":"sess-09f7f76c7388","input_length":3518,"output_length":236,"hash_ids":[1580088,1580089,1580090,1580091,1580092,1580093,1580094],"delay":2667.2} +{"session_id":"sess-09f7f76c7388","input_length":4705,"output_length":216,"hash_ids":[1580095,1580096,1580097,1580098,1580099,1580100,1580101,1580102,1580103,1580104],"delay":1275.4} +{"session_id":"sess-09f7f76c7388","input_length":1647,"output_length":37,"hash_ids":[1580105,1580106,1580107,1580108],"delay":37773.2} +{"session_id":"sess-09f7f76c7388","input_length":1750,"output_length":350,"hash_ids":[1580109,1580110,1580111,1580112],"delay":17558.5} +{"session_id":"sess-09f7f76c7388","input_length":6352,"output_length":428,"hash_ids":[1580113,1580114,1580115,1580116,1580117,1580118,1580119,1580120,1580121,1580122,1580123,1580124,1580125],"delay":116.8} +{"session_id":"sess-09f7f76c7388","input_length":5858,"output_length":936,"hash_ids":[1580126,1580127,1580128,1580129,1580130,1580131,1580132,1580133,1580134,1580135,1580136,1580137],"delay":229.3} +{"session_id":"sess-09f7f76c7388","input_length":961,"output_length":407,"hash_ids":[1580138,1580139],"delay":633.2} +{"session_id":"sess-09f7f76c7388","input_length":2423,"output_length":610,"hash_ids":[1580140,1580141,1580142,1580143,1580144],"delay":419.4} +{"session_id":"sess-09f7f76c7388","input_length":170,"output_length":116,"hash_ids":[1580145],"delay":647.3} +{"session_id":"sess-09f7f76c7388","input_length":1622,"output_length":1461,"hash_ids":[1580146,1580147,1580148,1580149],"delay":385.2} +{"session_id":"sess-09f7f76c7388","input_length":3154,"output_length":272,"hash_ids":[1580150,1580151,1580152,1580153,1580154,1580155,1580156],"delay":721.7} +{"session_id":"sess-09f7f76c7388","input_length":3111,"output_length":943,"hash_ids":[1580157,1580158,1580159,1580160,1580161,1580162,1580163],"delay":22768.4} +{"session_id":"sess-09f7f76c7388","input_length":393,"output_length":144,"hash_ids":[1580164],"delay":1483.8} +{"session_id":"sess-09f7f76c7388","input_length":6377,"output_length":403,"hash_ids":[1580165,1580166,1580167,1580168,1580169,1580170,1580171,1580172,1580173,1580174,1580175,1580176,1580177],"delay":9283.6} +{"session_id":"sess-09f7f76c7388","input_length":508,"output_length":670,"hash_ids":[1580178],"delay":449.4} +{"session_id":"sess-09f7f76c7388","input_length":300,"output_length":290,"hash_ids":[1580179],"delay":2986.9} +{"session_id":"sess-09f7f76c7388","input_length":891,"output_length":74,"hash_ids":[1580180,1580181],"delay":494.9} +{"session_id":"sess-09f7f76c7388","input_length":1616,"output_length":1503,"hash_ids":[1580182,1580183,1580184,1580185],"delay":275.1} +{"session_id":"sess-09f7f76c7388","input_length":5654,"output_length":101,"hash_ids":[1580186,1580187,1580188,1580189,1580190,1580191,1580192,1580193,1580194,1580195,1580196,1580197],"delay":14945.6} +{"session_id":"sess-09f7f76c7388","input_length":2134,"output_length":45,"hash_ids":[1580198,1580199,1580200,1580201,1580202],"delay":917.9} +{"session_id":"sess-e8a19741198c","input_length":52458,"output_length":248,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e8a19741198c","input_length":1540,"output_length":380,"hash_ids":[1580203,1580204,1580205,1580206],"delay":1364.1} +{"session_id":"sess-e8a19741198c","input_length":1057,"output_length":269,"hash_ids":[1580207,1580208,1580209],"delay":207.0} +{"session_id":"sess-e8a19741198c","input_length":163,"output_length":939,"hash_ids":[1580210],"delay":1935.3} +{"session_id":"sess-e8a19741198c","input_length":6518,"output_length":438,"hash_ids":[1580211,1580212,1580213,1580214,1580215,1580216,1580217,1580218,1580219,1580220,1580221,1580222,1580223],"delay":1232.2} +{"session_id":"sess-e8a19741198c","input_length":3291,"output_length":60,"hash_ids":[1580224,1580225,1580226,1580227,1580228,1580229,1580230],"delay":3450.9} +{"session_id":"sess-e8a19741198c","input_length":983,"output_length":364,"hash_ids":[1580231,1580232],"delay":1800.1} +{"session_id":"sess-e8a19741198c","input_length":2633,"output_length":74,"hash_ids":[1580233,1580234,1580235,1580236,1580237,1580238],"delay":1530.2} +{"session_id":"sess-e8a19741198c","input_length":5026,"output_length":295,"hash_ids":[1580239,1580240,1580241,1580242,1580243,1580244,1580245,1580246,1580247,1580248],"delay":7569.5} +{"session_id":"sess-e8a19741198c","input_length":2604,"output_length":78,"hash_ids":[1580249,1580250,1580251,1580252,1580253,1580254],"delay":760.6} +{"session_id":"sess-e8a19741198c","input_length":1191,"output_length":30,"hash_ids":[1580255,1580256,1580257],"delay":3005.5} +{"session_id":"sess-e8a19741198c","input_length":2668,"output_length":153,"hash_ids":[1580258,1580259,1580260,1580261,1580262,1580263],"delay":6660.4} +{"session_id":"sess-e8a19741198c","input_length":3205,"output_length":30,"hash_ids":[1580264,1580265,1580266,1580267,1580268,1580269,1580270],"delay":5627.4} +{"session_id":"sess-e8a19741198c","input_length":7717,"output_length":84,"hash_ids":[1580271,1580272,1580273,1580274,1580275,1580276,1580277,1580278,1580279,1580280,1580281,1580282,1580283,1580284,1580285,1580286],"delay":940.0} +{"session_id":"sess-e8a19741198c","input_length":5253,"output_length":324,"hash_ids":[1580287,1580288,1580289,1580290,1580291,1580292,1580293,1580294,1580295,1580296,1580297],"delay":116.2} +{"session_id":"sess-e8a19741198c","input_length":1208,"output_length":378,"hash_ids":[1580298,1580299,1580300],"delay":1092.4} +{"session_id":"sess-e8a19741198c","input_length":3766,"output_length":93,"hash_ids":[1580301,1580302,1580303,1580304,1580305,1580306,1580307,1580308],"delay":4668.9} +{"session_id":"sess-e8a19741198c","input_length":1818,"output_length":36,"hash_ids":[1580309,1580310,1580311,1580312],"delay":1944.0} +{"session_id":"sess-e8a19741198c","input_length":594,"output_length":265,"hash_ids":[1580313,1580314],"delay":315.8} +{"session_id":"sess-e8a19741198c","input_length":4948,"output_length":158,"hash_ids":[1580315,1580316,1580317,1580318,1580319,1580320,1580321,1580322,1580323,1580324],"delay":1514.3} +{"session_id":"sess-e8a19741198c","input_length":1110,"output_length":222,"hash_ids":[1580325,1580326,1580327],"delay":4125.4} +{"session_id":"sess-e8a19741198c","input_length":463,"output_length":241,"hash_ids":[1580328],"delay":699.5} +{"session_id":"sess-e8a19741198c","input_length":839,"output_length":466,"hash_ids":[1580329,1580330],"delay":455.4} +{"session_id":"sess-e8a19741198c","input_length":651,"output_length":81,"hash_ids":[1580331,1580332],"delay":751.2} +{"session_id":"sess-e8a19741198c","input_length":728,"output_length":197,"hash_ids":[1580333,1580334],"delay":485.6} +{"session_id":"sess-e8a19741198c","input_length":1556,"output_length":206,"hash_ids":[1580335,1580336,1580337,1580338],"delay":52.0} +{"session_id":"sess-e8a19741198c","input_length":4597,"output_length":201,"hash_ids":[1580339,1580340,1580341,1580342,1580343,1580344,1580345,1580346,1580347],"delay":178.9} +{"session_id":"sess-e8a19741198c","input_length":4301,"output_length":498,"hash_ids":[1580348,1580349,1580350,1580351,1580352,1580353,1580354,1580355,1580356],"delay":1317.0} +{"session_id":"sess-4d25c9122ee4","input_length":54999,"output_length":1696,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1588063,1588064,1588065,1588066,1588067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4d25c9122ee4","input_length":4475,"output_length":267,"hash_ids":[1588068,1588069,1588070,1588071,1588072,1588073,1588074,1588075,1588076],"delay":3081.2} +{"session_id":"sess-4d25c9122ee4","input_length":257,"output_length":154,"hash_ids":[1588077],"delay":2154.1} +{"session_id":"sess-4d25c9122ee4","input_length":558,"output_length":463,"hash_ids":[1588078,1588079],"delay":1626.0} +{"session_id":"sess-4d25c9122ee4","input_length":8640,"output_length":156,"hash_ids":[1588080,1588081,1588082,1588083,1588084,1588085,1588086,1588087,1588088,1588089,1588090,1588091,1588092,1588093,1588094,1588095,1588096],"delay":3419.3} +{"session_id":"sess-4d25c9122ee4","input_length":1140,"output_length":340,"hash_ids":[1588097,1588098,1588099],"delay":3666.7} +{"session_id":"sess-4d25c9122ee4","input_length":158,"output_length":320,"hash_ids":[1588100],"delay":2186.1} +{"session_id":"sess-4d25c9122ee4","input_length":1303,"output_length":795,"hash_ids":[1588101,1588102,1588103],"delay":482.5} +{"session_id":"sess-4d25c9122ee4","input_length":1749,"output_length":283,"hash_ids":[1588104,1588105,1588106,1588107],"delay":22521.1} +{"session_id":"sess-4d25c9122ee4","input_length":5550,"output_length":390,"hash_ids":[1588108,1588109,1588110,1588111,1588112,1588113,1588114,1588115,1588116,1588117,1588118],"delay":1599.3} +{"session_id":"sess-4d25c9122ee4","input_length":2438,"output_length":192,"hash_ids":[1588119,1588120,1588121,1588122,1588123],"delay":642.6} +{"session_id":"sess-4d25c9122ee4","input_length":1753,"output_length":947,"hash_ids":[1588124,1588125,1588126,1588127],"delay":3351.6} +{"session_id":"sess-4d25c9122ee4","input_length":2686,"output_length":445,"hash_ids":[1588128,1588129,1588130,1588131,1588132,1588133],"delay":13949.5} +{"session_id":"sess-4d25c9122ee4","input_length":3915,"output_length":94,"hash_ids":[1588134,1588135,1588136,1588137,1588138,1588139,1588140,1588141],"delay":1091.0} +{"session_id":"sess-4d25c9122ee4","input_length":617,"output_length":684,"hash_ids":[1588142,1588143],"delay":118.0} +{"session_id":"sess-4d25c9122ee4","input_length":1994,"output_length":208,"hash_ids":[1588144,1588145,1588146,1588147],"delay":12970.7} +{"session_id":"sess-4d25c9122ee4","input_length":6491,"output_length":193,"hash_ids":[1588148,1588149,1588150,1588151,1588152,1588153,1588154,1588155,1588156,1588157,1588158,1588159,1588160],"delay":713.3} +{"session_id":"sess-4d25c9122ee4","input_length":1274,"output_length":144,"hash_ids":[1588161,1588162,1588163],"delay":4908.6} +{"session_id":"sess-4d25c9122ee4","input_length":1935,"output_length":215,"hash_ids":[1588164,1588165,1588166,1588167],"delay":3030.3} +{"session_id":"sess-4d25c9122ee4","input_length":5054,"output_length":294,"hash_ids":[1588168,1588169,1588170,1588171,1588172,1588173,1588174,1588175,1588176,1588177],"delay":200.8} +{"session_id":"sess-4d25c9122ee4","input_length":7801,"output_length":90,"hash_ids":[1588178,1588179,1588180,1588181,1588182,1588183,1588184,1588185,1588186,1588187,1588188,1588189,1588190,1588191,1588192,1588193],"delay":635.8} +{"session_id":"sess-4d25c9122ee4","input_length":1873,"output_length":138,"hash_ids":[1588194,1588195,1588196,1588197],"delay":315.6} +{"session_id":"sess-6f1dc7ee79bb","input_length":64302,"output_length":440,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1592063,1592064,1592065,1592066,1592067,1592068,1592069,1592070,1592071,1592072,1592073,1592074,1592075,1592076,1592077,1592078,1592079,1592080,1592081,1592082,1592083,1592084,1592085],"timestamp":0.0,"group_id":3} +{"session_id":"sess-6f1dc7ee79bb","input_length":808,"output_length":1495,"hash_ids":[1592086,1592087],"delay":8327.3} +{"session_id":"sess-6f1dc7ee79bb","input_length":5165,"output_length":525,"hash_ids":[1592088,1592089,1592090,1592091,1592092,1592093,1592094,1592095,1592096,1592097,1592098],"delay":473.2} +{"session_id":"sess-6f1dc7ee79bb","input_length":333,"output_length":289,"hash_ids":[1592099],"delay":1661.6} +{"session_id":"sess-6f1dc7ee79bb","input_length":3253,"output_length":256,"hash_ids":[1592100,1592101,1592102,1592103,1592104,1592105,1592106],"delay":3414.9} +{"session_id":"sess-6f1dc7ee79bb","input_length":1762,"output_length":130,"hash_ids":[1592107,1592108,1592109,1592110],"delay":1612.8} +{"session_id":"sess-6f1dc7ee79bb","input_length":3444,"output_length":144,"hash_ids":[1592111,1592112,1592113,1592114,1592115,1592116,1592117],"delay":503.9} +{"session_id":"sess-6f1dc7ee79bb","input_length":855,"output_length":97,"hash_ids":[1592118,1592119],"delay":4831.8} +{"session_id":"sess-6f1dc7ee79bb","input_length":9425,"output_length":344,"hash_ids":[1592120,1592121,1592122,1592123,1592124,1592125,1592126,1592127,1592128,1592129,1592130,1592131,1592132,1592133,1592134,1592135,1592136,1592137,1592138],"delay":4359.0} +{"session_id":"sess-6f1dc7ee79bb","input_length":4672,"output_length":2887,"hash_ids":[1592139,1592140,1592141,1592142,1592143,1592144,1592145,1592146,1592147,1592148],"delay":11953.3} +{"session_id":"sess-6f1dc7ee79bb","input_length":1315,"output_length":955,"hash_ids":[1592149,1592150,1592151],"delay":543.6} +{"session_id":"sess-6f1dc7ee79bb","input_length":879,"output_length":321,"hash_ids":[1592152,1592153],"delay":10248.0} +{"session_id":"sess-6f1dc7ee79bb","input_length":8428,"output_length":208,"hash_ids":[1592154,1592155,1592156,1592157,1592158,1592159,1592160,1592161,1592162,1592163,1592164,1592165,1592166,1592167,1592168,1592169,1592170],"delay":2919.9} +{"session_id":"sess-6f1dc7ee79bb","input_length":398,"output_length":161,"hash_ids":[1592171],"delay":685.8} +{"session_id":"sess-6f1dc7ee79bb","input_length":3906,"output_length":270,"hash_ids":[1592172,1592173,1592174,1592175,1592176,1592177,1592178,1592179],"delay":435.6} +{"session_id":"sess-6f1dc7ee79bb","input_length":1136,"output_length":388,"hash_ids":[1592180,1592181,1592182],"delay":233.9} +{"session_id":"sess-6f1dc7ee79bb","input_length":178,"output_length":311,"hash_ids":[1592183],"delay":1024.3} +{"session_id":"sess-6f1dc7ee79bb","input_length":4203,"output_length":417,"hash_ids":[1592184,1592185,1592186,1592187,1592188,1592189,1592190,1592191,1592192],"delay":487.5} +{"session_id":"sess-6f1dc7ee79bb","input_length":1636,"output_length":289,"hash_ids":[1592193,1592194,1592195,1592196],"delay":4158.1} +{"session_id":"sess-6f1dc7ee79bb","input_length":4350,"output_length":71,"hash_ids":[1592197,1592198,1592199,1592200,1592201,1592202,1592203,1592204,1592205],"delay":976.4} +{"session_id":"sess-cc4a6d29e85e","input_length":64657,"output_length":314,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1596063,1596064,1596065,1596066,1596067,1596068,1596069,1596070,1596071,1596072,1596073,1596074,1596075,1596076,1596077,1596078,1596079,1596080,1596081,1596082,1596083,1596084,1596085,1596086],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cc4a6d29e85e","input_length":4756,"output_length":1214,"hash_ids":[1596087,1596088,1596089,1596090,1596091,1596092,1596093,1596094,1596095,1596096],"delay":1336.5} +{"session_id":"sess-cc4a6d29e85e","input_length":2018,"output_length":1209,"hash_ids":[1596097,1596098,1596099,1596100],"delay":14134.1} +{"session_id":"sess-cc4a6d29e85e","input_length":3239,"output_length":389,"hash_ids":[1596101,1596102,1596103,1596104,1596105,1596106,1596107],"delay":10895.9} +{"session_id":"sess-cc4a6d29e85e","input_length":4252,"output_length":1862,"hash_ids":[1596108,1596109,1596110,1596111,1596112,1596113,1596114,1596115,1596116],"delay":14190.3} +{"session_id":"sess-cc4a6d29e85e","input_length":186,"output_length":980,"hash_ids":[1596117],"delay":4920.1} +{"session_id":"sess-cc4a6d29e85e","input_length":2261,"output_length":415,"hash_ids":[1596118,1596119,1596120,1596121,1596122],"delay":733.1} +{"session_id":"sess-cc4a6d29e85e","input_length":489,"output_length":909,"hash_ids":[1596123],"delay":32217.5} +{"session_id":"sess-cc4a6d29e85e","input_length":2331,"output_length":38,"hash_ids":[1596124,1596125,1596126,1596127,1596128],"delay":92.8} +{"session_id":"sess-cc4a6d29e85e","input_length":275,"output_length":183,"hash_ids":[1596129],"delay":2218.0} +{"session_id":"sess-cc4a6d29e85e","input_length":3847,"output_length":456,"hash_ids":[1596130,1596131,1596132,1596133,1596134,1596135,1596136,1596137],"delay":3824.6} +{"session_id":"sess-cc4a6d29e85e","input_length":767,"output_length":31,"hash_ids":[1596138,1596139],"delay":8604.2} +{"session_id":"sess-cc4a6d29e85e","input_length":3411,"output_length":284,"hash_ids":[1596140,1596141,1596142,1596143,1596144,1596145,1596146],"delay":33410.4} +{"session_id":"sess-d9d9c5b51aea","input_length":54769,"output_length":534,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,1600063,1600064,1600065,1600066],"timestamp":0.0,"group_id":26} +{"session_id":"sess-d9d9c5b51aea","input_length":4794,"output_length":129,"hash_ids":[1600067,1600068,1600069,1600070,1600071,1600072,1600073,1600074,1600075,1600076],"delay":713.0} +{"session_id":"sess-d9d9c5b51aea","input_length":1612,"output_length":295,"hash_ids":[1600077,1600078,1600079,1600080],"delay":2319.2} +{"session_id":"sess-d9d9c5b51aea","input_length":1394,"output_length":76,"hash_ids":[1600081,1600082,1600083],"delay":16297.1} +{"session_id":"sess-d9d9c5b51aea","input_length":659,"output_length":60,"hash_ids":[1600084,1600085],"delay":3390.7} +{"session_id":"sess-d9d9c5b51aea","input_length":690,"output_length":368,"hash_ids":[1600086,1600087],"delay":1721.5} +{"session_id":"sess-d9d9c5b51aea","input_length":5075,"output_length":430,"hash_ids":[1600088,1600089,1600090,1600091,1600092,1600093,1600094,1600095,1600096,1600097],"delay":3068.5} +{"session_id":"sess-d9d9c5b51aea","input_length":321,"output_length":172,"hash_ids":[1600098],"delay":210.7} +{"session_id":"sess-d9d9c5b51aea","input_length":676,"output_length":114,"hash_ids":[1600099,1600100],"delay":27595.4} +{"session_id":"sess-d9d9c5b51aea","input_length":1614,"output_length":63,"hash_ids":[1600101,1600102,1600103,1600104],"delay":28235.3} +{"session_id":"sess-b20b62ecb4be","input_length":57679,"output_length":336,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,1604063,1604064,1604065,1604066,1604067,1604068,1604069,1604070,1604071,1604072],"timestamp":0.0,"group_id":15} +{"session_id":"sess-b20b62ecb4be","input_length":1331,"output_length":291,"hash_ids":[1604073,1604074,1604075],"delay":1137.2} +{"session_id":"sess-b20b62ecb4be","input_length":675,"output_length":781,"hash_ids":[1604076,1604077],"delay":11192.0} +{"session_id":"sess-b20b62ecb4be","input_length":607,"output_length":175,"hash_ids":[1604078,1604079],"delay":592.4} +{"session_id":"sess-b20b62ecb4be","input_length":1338,"output_length":319,"hash_ids":[1604080,1604081,1604082],"delay":1894.6} +{"session_id":"sess-b20b62ecb4be","input_length":6691,"output_length":82,"hash_ids":[1604083,1604084,1604085,1604086,1604087,1604088,1604089,1604090,1604091,1604092,1604093,1604094,1604095,1604096],"delay":1343.6} +{"session_id":"sess-b20b62ecb4be","input_length":853,"output_length":218,"hash_ids":[1604097,1604098],"delay":814.7} +{"session_id":"sess-b20b62ecb4be","input_length":2750,"output_length":217,"hash_ids":[1604099,1604100,1604101,1604102,1604103,1604104],"delay":479.5} +{"session_id":"sess-b20b62ecb4be","input_length":1005,"output_length":200,"hash_ids":[1604105,1604106],"delay":1017.7} +{"session_id":"sess-b20b62ecb4be","input_length":8577,"output_length":119,"hash_ids":[1604107,1604108,1604109,1604110,1604111,1604112,1604113,1604114,1604115,1604116,1604117,1604118,1604119,1604120,1604121,1604122,1604123],"delay":333.6} +{"session_id":"sess-40d8dd4a2b96","input_length":67391,"output_length":462,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1608063,1608064,1608065,1608066,1608067,1608068,1608069,1608070,1608071,1608072,1608073,1608074,1608075,1608076,1608077,1608078,1608079,1608080,1608081,1608082,1608083,1608084,1608085,1608086,1608087,1608088,1608089,1608090,1608091],"timestamp":0.0,"group_id":8} +{"session_id":"sess-40d8dd4a2b96","input_length":5652,"output_length":99,"hash_ids":[1608092,1608093,1608094,1608095,1608096,1608097,1608098,1608099,1608100,1608101,1608102,1608103],"delay":1854.4} +{"session_id":"sess-40d8dd4a2b96","input_length":974,"output_length":782,"hash_ids":[1608104,1608105],"delay":4961.9} +{"session_id":"sess-40d8dd4a2b96","input_length":1041,"output_length":396,"hash_ids":[1608106,1608107,1608108],"delay":16980.3} +{"session_id":"sess-40d8dd4a2b96","input_length":2199,"output_length":540,"hash_ids":[1608109,1608110,1608111,1608112,1608113],"delay":656.8} +{"session_id":"sess-40d8dd4a2b96","input_length":1350,"output_length":2240,"hash_ids":[1608114,1608115,1608116],"delay":13709.9} +{"session_id":"sess-40d8dd4a2b96","input_length":2944,"output_length":235,"hash_ids":[1608117,1608118,1608119,1608120,1608121,1608122],"delay":14239.1} +{"session_id":"sess-40d8dd4a2b96","input_length":1688,"output_length":298,"hash_ids":[1608123,1608124,1608125,1608126],"delay":1027.2} +{"session_id":"sess-40d8dd4a2b96","input_length":800,"output_length":69,"hash_ids":[1608127,1608128],"delay":661.2} +{"session_id":"sess-40d8dd4a2b96","input_length":5681,"output_length":63,"hash_ids":[1608129,1608130,1608131,1608132,1608133,1608134,1608135,1608136,1608137,1608138,1608139,1608140],"delay":993.2} +{"session_id":"sess-40d8dd4a2b96","input_length":1041,"output_length":1296,"hash_ids":[1608141,1608142,1608143],"delay":26778.0} +{"session_id":"sess-40d8dd4a2b96","input_length":1868,"output_length":609,"hash_ids":[1608144,1608145,1608146,1608147],"delay":12914.6} +{"session_id":"sess-40d8dd4a2b96","input_length":1899,"output_length":787,"hash_ids":[1608148,1608149,1608150,1608151],"delay":335.7} +{"session_id":"sess-193f757c20fb","input_length":71170,"output_length":2251,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1612063,1612064,1612065,1612066,1612067,1612068,1612069,1612070,1612071,1612072,1612073,1612074,1612075,1612076,1612077,1612078,1612079,1612080,1612081,1612082,1612083,1612084,1612085,1612086,1612087,1612088,1612089,1612090,1612091,1612092,1612093,1612094,1612095,1612096,1612097,1612098,1612099],"timestamp":0.0,"group_id":3} +{"session_id":"sess-193f757c20fb","input_length":1003,"output_length":84,"hash_ids":[1612100,1612101],"delay":660.2} +{"session_id":"sess-193f757c20fb","input_length":315,"output_length":70,"hash_ids":[1612102],"delay":11478.0} +{"session_id":"sess-193f757c20fb","input_length":2407,"output_length":189,"hash_ids":[1612103,1612104,1612105,1612106,1612107],"delay":489.6} +{"session_id":"sess-193f757c20fb","input_length":240,"output_length":55,"hash_ids":[1612108],"delay":952.7} +{"session_id":"sess-193f757c20fb","input_length":427,"output_length":739,"hash_ids":[1612109],"delay":23893.2} +{"session_id":"sess-193f757c20fb","input_length":467,"output_length":227,"hash_ids":[1612110],"delay":1315.8} +{"session_id":"sess-193f757c20fb","input_length":1216,"output_length":93,"hash_ids":[1612111,1612112,1612113],"delay":7691.2} +{"session_id":"sess-193f757c20fb","input_length":1685,"output_length":271,"hash_ids":[1612114,1612115,1612116,1612117],"delay":907.1} +{"session_id":"sess-193f757c20fb","input_length":522,"output_length":108,"hash_ids":[1612118,1612119],"delay":785.8} +{"session_id":"sess-193f757c20fb","input_length":1760,"output_length":790,"hash_ids":[1612120,1612121,1612122,1612123],"delay":252.9} +{"session_id":"sess-193f757c20fb","input_length":1402,"output_length":418,"hash_ids":[1612124,1612125,1612126],"delay":845.5} +{"session_id":"sess-193f757c20fb","input_length":749,"output_length":240,"hash_ids":[1612127,1612128],"delay":2330.6} +{"session_id":"sess-193f757c20fb","input_length":1017,"output_length":106,"hash_ids":[1612129,1612130],"delay":137.3} +{"session_id":"sess-193f757c20fb","input_length":403,"output_length":65,"hash_ids":[1612131],"delay":546.4} +{"session_id":"sess-193f757c20fb","input_length":542,"output_length":545,"hash_ids":[1612132,1612133],"delay":3313.8} +{"session_id":"sess-193f757c20fb","input_length":1531,"output_length":658,"hash_ids":[1612134,1612135,1612136],"delay":34164.6} +{"session_id":"sess-193f757c20fb","input_length":659,"output_length":124,"hash_ids":[1612137,1612138],"delay":6269.5} +{"session_id":"sess-193f757c20fb","input_length":1589,"output_length":63,"hash_ids":[1612139,1612140,1612141,1612142],"delay":410.4} +{"session_id":"sess-193f757c20fb","input_length":604,"output_length":30,"hash_ids":[1612143,1612144],"delay":184.5} +{"session_id":"sess-193f757c20fb","input_length":955,"output_length":361,"hash_ids":[1612145,1612146],"delay":623.6} +{"session_id":"sess-193f757c20fb","input_length":1499,"output_length":99,"hash_ids":[1612147,1612148,1612149],"delay":383.5} +{"session_id":"sess-193f757c20fb","input_length":1703,"output_length":591,"hash_ids":[1612150,1612151,1612152,1612153],"delay":135.1} +{"session_id":"sess-193f757c20fb","input_length":4358,"output_length":166,"hash_ids":[1612154,1612155,1612156,1612157,1612158,1612159,1612160,1612161,1612162],"delay":230.7} +{"session_id":"sess-193f757c20fb","input_length":3238,"output_length":118,"hash_ids":[1612163,1612164,1612165,1612166,1612167,1612168,1612169],"delay":33175.3} +{"session_id":"sess-193f757c20fb","input_length":4028,"output_length":107,"hash_ids":[1612170,1612171,1612172,1612173,1612174,1612175,1612176,1612177],"delay":344.5} +{"session_id":"sess-193f757c20fb","input_length":4224,"output_length":586,"hash_ids":[1612178,1612179,1612180,1612181,1612182,1612183,1612184,1612185,1612186],"delay":491.4} +{"session_id":"sess-ec677bdf3515","input_length":57813,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1616063,1616064,1616065,1616066,1616067,1616068,1616069,1616070,1616071,1616072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ec677bdf3515","input_length":5298,"output_length":167,"hash_ids":[1616073,1616074,1616075,1616076,1616077,1616078,1616079,1616080,1616081,1616082,1616083],"delay":8183.1} +{"session_id":"sess-ec677bdf3515","input_length":3978,"output_length":193,"hash_ids":[1616084,1616085,1616086,1616087,1616088,1616089,1616090,1616091],"delay":872.6} +{"session_id":"sess-ec677bdf3515","input_length":2268,"output_length":1448,"hash_ids":[1616092,1616093,1616094,1616095,1616096],"delay":300.3} +{"session_id":"sess-ec677bdf3515","input_length":1409,"output_length":456,"hash_ids":[1616097,1616098,1616099],"delay":532.2} +{"session_id":"sess-ec677bdf3515","input_length":874,"output_length":136,"hash_ids":[1616100,1616101],"delay":1931.3} +{"session_id":"sess-ec677bdf3515","input_length":1286,"output_length":105,"hash_ids":[1616102,1616103,1616104],"delay":410.0} +{"session_id":"sess-ec677bdf3515","input_length":1141,"output_length":176,"hash_ids":[1616105,1616106,1616107],"delay":779.9} +{"session_id":"sess-ec677bdf3515","input_length":2731,"output_length":265,"hash_ids":[1616108,1616109,1616110,1616111,1616112,1616113],"delay":767.6} +{"session_id":"sess-ec677bdf3515","input_length":711,"output_length":590,"hash_ids":[1616114,1616115],"delay":11931.0} +{"session_id":"sess-ec677bdf3515","input_length":1586,"output_length":535,"hash_ids":[1616116,1616117,1616118,1616119],"delay":313.2} +{"session_id":"sess-ec677bdf3515","input_length":1399,"output_length":800,"hash_ids":[1616120,1616121,1616122],"delay":132.4} +{"session_id":"sess-ec677bdf3515","input_length":3181,"output_length":246,"hash_ids":[1616123,1616124,1616125,1616126,1616127,1616128,1616129],"delay":1505.6} +{"session_id":"sess-ec677bdf3515","input_length":2324,"output_length":703,"hash_ids":[1616130,1616131,1616132,1616133,1616134],"delay":25096.6} +{"session_id":"sess-ec677bdf3515","input_length":1509,"output_length":301,"hash_ids":[1616135,1616136,1616137],"delay":855.6} +{"session_id":"sess-ec677bdf3515","input_length":629,"output_length":1007,"hash_ids":[1616138,1616139],"delay":600.7} +{"session_id":"sess-ec677bdf3515","input_length":2024,"output_length":210,"hash_ids":[1616140,1616141,1616142,1616143],"delay":35550.8} +{"session_id":"sess-ec677bdf3515","input_length":5824,"output_length":258,"hash_ids":[1616144,1616145,1616146,1616147,1616148,1616149,1616150,1616151,1616152,1616153,1616154,1616155],"delay":481.3} +{"session_id":"sess-ec677bdf3515","input_length":5802,"output_length":107,"hash_ids":[1616156,1616157,1616158,1616159,1616160,1616161,1616162,1616163,1616164,1616165,1616166,1616167],"delay":615.4} +{"session_id":"sess-ec677bdf3515","input_length":1269,"output_length":84,"hash_ids":[1616168,1616169,1616170],"delay":2055.1} +{"session_id":"sess-792bcc9bb81d","input_length":54481,"output_length":506,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1620063,1620064,1620065,1620066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-792bcc9bb81d","input_length":765,"output_length":37,"hash_ids":[1620067,1620068],"delay":5492.1} +{"session_id":"sess-792bcc9bb81d","input_length":7547,"output_length":35,"hash_ids":[1620069,1620070,1620071,1620072,1620073,1620074,1620075,1620076,1620077,1620078,1620079,1620080,1620081,1620082,1620083],"delay":14755.7} +{"session_id":"sess-792bcc9bb81d","input_length":141,"output_length":610,"hash_ids":[1620084],"delay":460.6} +{"session_id":"sess-792bcc9bb81d","input_length":1115,"output_length":565,"hash_ids":[1620085,1620086,1620087],"delay":899.5} +{"session_id":"sess-792bcc9bb81d","input_length":4174,"output_length":83,"hash_ids":[1620088,1620089,1620090,1620091,1620092,1620093,1620094,1620095,1620096],"delay":638.6} +{"session_id":"sess-792bcc9bb81d","input_length":5205,"output_length":58,"hash_ids":[1620097,1620098,1620099,1620100,1620101,1620102,1620103,1620104,1620105,1620106,1620107],"delay":950.1} +{"session_id":"sess-792bcc9bb81d","input_length":181,"output_length":268,"hash_ids":[1620108],"delay":471.3} +{"session_id":"sess-792bcc9bb81d","input_length":152,"output_length":58,"hash_ids":[1620109],"delay":3418.5} +{"session_id":"sess-792bcc9bb81d","input_length":1083,"output_length":140,"hash_ids":[1620110,1620111,1620112],"delay":1416.2} +{"session_id":"sess-792bcc9bb81d","input_length":579,"output_length":569,"hash_ids":[1620113,1620114],"delay":6543.2} +{"session_id":"sess-792bcc9bb81d","input_length":6199,"output_length":110,"hash_ids":[1620115,1620116,1620117,1620118,1620119,1620120,1620121,1620122,1620123,1620124,1620125,1620126,1620127],"delay":2197.9} +{"session_id":"sess-792bcc9bb81d","input_length":127,"output_length":706,"hash_ids":[1620128],"delay":512.0} +{"session_id":"sess-792bcc9bb81d","input_length":1734,"output_length":54,"hash_ids":[1620129,1620130,1620131,1620132],"delay":380.3} +{"session_id":"sess-792bcc9bb81d","input_length":2267,"output_length":355,"hash_ids":[1620133,1620134,1620135,1620136,1620137],"delay":14332.3} +{"session_id":"sess-792bcc9bb81d","input_length":513,"output_length":57,"hash_ids":[1620138,1620139],"delay":27138.7} +{"session_id":"sess-db4fe9ee3891","input_length":52386,"output_length":733,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-db4fe9ee3891","input_length":2080,"output_length":92,"hash_ids":[1620140,1620141,1620142,1620143,1620144],"delay":2047.6} +{"session_id":"sess-db4fe9ee3891","input_length":3230,"output_length":1102,"hash_ids":[1620145,1620146,1620147,1620148,1620149,1620150,1620151],"delay":1402.3} +{"session_id":"sess-db4fe9ee3891","input_length":767,"output_length":403,"hash_ids":[1620152,1620153],"delay":643.9} +{"session_id":"sess-db4fe9ee3891","input_length":343,"output_length":93,"hash_ids":[1620154],"delay":682.5} +{"session_id":"sess-db4fe9ee3891","input_length":229,"output_length":734,"hash_ids":[1620155],"delay":1258.7} +{"session_id":"sess-db4fe9ee3891","input_length":3630,"output_length":93,"hash_ids":[1620156,1620157,1620158,1620159,1620160,1620161,1620162,1620163],"delay":2313.9} +{"session_id":"sess-db4fe9ee3891","input_length":758,"output_length":1001,"hash_ids":[1620164,1620165],"delay":1151.2} +{"session_id":"sess-db4fe9ee3891","input_length":4078,"output_length":88,"hash_ids":[1620166,1620167,1620168,1620169,1620170,1620171,1620172,1620173],"delay":2037.1} +{"session_id":"sess-db4fe9ee3891","input_length":3432,"output_length":390,"hash_ids":[1620174,1620175,1620176,1620177,1620178,1620179,1620180],"delay":2936.9} +{"session_id":"sess-db4fe9ee3891","input_length":7742,"output_length":382,"hash_ids":[1620181,1620182,1620183,1620184,1620185,1620186,1620187,1620188,1620189,1620190,1620191,1620192,1620193,1620194,1620195,1620196],"delay":1712.5} +{"session_id":"sess-db4fe9ee3891","input_length":2036,"output_length":323,"hash_ids":[1620197,1620198,1620199,1620200],"delay":6473.5} +{"session_id":"sess-db4fe9ee3891","input_length":1792,"output_length":611,"hash_ids":[1620201,1620202,1620203,1620204],"delay":1633.9} +{"session_id":"sess-db4fe9ee3891","input_length":3690,"output_length":406,"hash_ids":[1620205,1620206,1620207,1620208,1620209,1620210,1620211,1620212],"delay":1397.1} +{"session_id":"sess-db4fe9ee3891","input_length":116,"output_length":811,"hash_ids":[1620213],"delay":185.5} +{"session_id":"sess-db4fe9ee3891","input_length":2519,"output_length":637,"hash_ids":[1620214,1620215,1620216,1620217,1620218],"delay":642.1} +{"session_id":"sess-db4fe9ee3891","input_length":4647,"output_length":975,"hash_ids":[1620219,1620220,1620221,1620222,1620223,1620224,1620225,1620226,1620227,1620228],"delay":1301.5} +{"session_id":"sess-db4fe9ee3891","input_length":4169,"output_length":505,"hash_ids":[1620229,1620230,1620231,1620232,1620233,1620234,1620235,1620236,1620237],"delay":188.9} +{"session_id":"sess-db4fe9ee3891","input_length":3440,"output_length":1425,"hash_ids":[1620238,1620239,1620240,1620241,1620242,1620243,1620244],"delay":143.1} +{"session_id":"sess-db4fe9ee3891","input_length":5067,"output_length":119,"hash_ids":[1620245,1620246,1620247,1620248,1620249,1620250,1620251,1620252,1620253,1620254],"delay":463.5} +{"session_id":"sess-db4fe9ee3891","input_length":960,"output_length":199,"hash_ids":[1620255,1620256],"delay":9959.0} +{"session_id":"sess-db4fe9ee3891","input_length":2121,"output_length":396,"hash_ids":[1620257,1620258,1620259,1620260,1620261],"delay":2012.8} +{"session_id":"sess-db4fe9ee3891","input_length":2494,"output_length":669,"hash_ids":[1620262,1620263,1620264,1620265,1620266],"delay":3688.1} +{"session_id":"sess-db4fe9ee3891","input_length":1136,"output_length":101,"hash_ids":[1620267,1620268,1620269],"delay":925.3} +{"session_id":"sess-db4fe9ee3891","input_length":1249,"output_length":820,"hash_ids":[1620270,1620271,1620272],"delay":3418.4} +{"session_id":"sess-207c8264a95a","input_length":63356,"output_length":657,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1628063,1628064,1628065,1628066,1628067,1628068,1628069,1628070,1628071,1628072,1628073,1628074,1628075,1628076,1628077,1628078,1628079,1628080,1628081,1628082,1628083],"timestamp":0.0,"group_id":5} +{"session_id":"sess-207c8264a95a","input_length":3775,"output_length":75,"hash_ids":[1628084,1628085,1628086,1628087,1628088,1628089,1628090,1628091],"delay":4859.1} +{"session_id":"sess-207c8264a95a","input_length":1892,"output_length":130,"hash_ids":[1628092,1628093,1628094,1628095],"delay":1244.4} +{"session_id":"sess-207c8264a95a","input_length":5226,"output_length":754,"hash_ids":[1628096,1628097,1628098,1628099,1628100,1628101,1628102,1628103,1628104,1628105,1628106],"delay":642.6} +{"session_id":"sess-f542056c6945","input_length":53891,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1632063,1632064,1632065],"timestamp":0.0,"group_id":7} +{"session_id":"sess-f542056c6945","input_length":5031,"output_length":1745,"hash_ids":[1632066,1632067,1632068,1632069,1632070,1632071,1632072,1632073,1632074,1632075],"delay":1250.1} +{"session_id":"sess-f542056c6945","input_length":524,"output_length":2032,"hash_ids":[1632076,1632077],"delay":935.6} +{"session_id":"sess-f542056c6945","input_length":1190,"output_length":200,"hash_ids":[1632078,1632079,1632080],"delay":1489.2} +{"session_id":"sess-f542056c6945","input_length":3785,"output_length":348,"hash_ids":[1632081,1632082,1632083,1632084,1632085,1632086,1632087,1632088],"delay":1020.6} +{"session_id":"sess-f542056c6945","input_length":1300,"output_length":194,"hash_ids":[1632089,1632090,1632091],"delay":581.0} +{"session_id":"sess-f542056c6945","input_length":300,"output_length":137,"hash_ids":[1632092],"delay":1111.8} +{"session_id":"sess-f542056c6945","input_length":710,"output_length":946,"hash_ids":[1632093,1632094],"delay":647.9} +{"session_id":"sess-f542056c6945","input_length":8837,"output_length":130,"hash_ids":[1632095,1632096,1632097,1632098,1632099,1632100,1632101,1632102,1632103,1632104,1632105,1632106,1632107,1632108,1632109,1632110,1632111,1632112],"delay":3196.5} +{"session_id":"sess-f542056c6945","input_length":3009,"output_length":210,"hash_ids":[1632113,1632114,1632115,1632116,1632117,1632118],"delay":13874.8} +{"session_id":"sess-f542056c6945","input_length":1541,"output_length":75,"hash_ids":[1632119,1632120,1632121,1632122],"delay":10237.5} +{"session_id":"sess-f542056c6945","input_length":2939,"output_length":434,"hash_ids":[1632123,1632124,1632125,1632126,1632127,1632128],"delay":223.3} +{"session_id":"sess-f542056c6945","input_length":6569,"output_length":307,"hash_ids":[1632129,1632130,1632131,1632132,1632133,1632134,1632135,1632136,1632137,1632138,1632139,1632140,1632141],"delay":993.0} +{"session_id":"sess-f542056c6945","input_length":2537,"output_length":259,"hash_ids":[1632142,1632143,1632144,1632145,1632146],"delay":12011.8} +{"session_id":"sess-f542056c6945","input_length":7506,"output_length":160,"hash_ids":[1632147,1632148,1632149,1632150,1632151,1632152,1632153,1632154,1632155,1632156,1632157,1632158,1632159,1632160,1632161],"delay":237.5} +{"session_id":"sess-afad144dee31","input_length":53226,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1636063],"timestamp":0.0,"group_id":10} +{"session_id":"sess-afad144dee31","input_length":1730,"output_length":65,"hash_ids":[1636064,1636065,1636066,1636067],"delay":20720.9} +{"session_id":"sess-afad144dee31","input_length":801,"output_length":214,"hash_ids":[1636068,1636069],"delay":4613.5} +{"session_id":"sess-afad144dee31","input_length":536,"output_length":156,"hash_ids":[1636070,1636071],"delay":1534.3} +{"session_id":"sess-afad144dee31","input_length":324,"output_length":373,"hash_ids":[1636072],"delay":25508.0} +{"session_id":"sess-afad144dee31","input_length":4563,"output_length":983,"hash_ids":[1636073,1636074,1636075,1636076,1636077,1636078,1636079,1636080,1636081],"delay":431.4} +{"session_id":"sess-afad144dee31","input_length":2579,"output_length":291,"hash_ids":[1636082,1636083,1636084,1636085,1636086,1636087],"delay":2126.5} +{"session_id":"sess-afad144dee31","input_length":2072,"output_length":145,"hash_ids":[1636088,1636089,1636090,1636091,1636092],"delay":951.4} +{"session_id":"sess-afad144dee31","input_length":599,"output_length":402,"hash_ids":[1636093,1636094],"delay":386.8} +{"session_id":"sess-afad144dee31","input_length":332,"output_length":166,"hash_ids":[1636095],"delay":1121.9} +{"session_id":"sess-afad144dee31","input_length":3913,"output_length":150,"hash_ids":[1636096,1636097,1636098,1636099,1636100,1636101,1636102,1636103],"delay":3693.6} +{"session_id":"sess-afad144dee31","input_length":2137,"output_length":207,"hash_ids":[1636104,1636105,1636106,1636107,1636108],"delay":735.2} +{"session_id":"sess-afad144dee31","input_length":3629,"output_length":30,"hash_ids":[1636109,1636110,1636111,1636112,1636113,1636114,1636115,1636116],"delay":3007.5} +{"session_id":"sess-afad144dee31","input_length":5653,"output_length":506,"hash_ids":[1636117,1636118,1636119,1636120,1636121,1636122,1636123,1636124,1636125,1636126,1636127,1636128],"delay":16233.3} +{"session_id":"sess-afad144dee31","input_length":9383,"output_length":620,"hash_ids":[1636129,1636130,1636131,1636132,1636133,1636134,1636135,1636136,1636137,1636138,1636139,1636140,1636141,1636142,1636143,1636144,1636145,1636146,1636147],"delay":1477.7} +{"session_id":"sess-afad144dee31","input_length":1057,"output_length":69,"hash_ids":[1636148,1636149,1636150],"delay":7927.1} +{"session_id":"sess-afad144dee31","input_length":391,"output_length":659,"hash_ids":[1636151],"delay":397.0} +{"session_id":"sess-afad144dee31","input_length":801,"output_length":163,"hash_ids":[1636152,1636153],"delay":1234.3} +{"session_id":"sess-afad144dee31","input_length":2103,"output_length":502,"hash_ids":[1636154,1636155,1636156,1636157,1636158],"delay":3056.0} +{"session_id":"sess-afad144dee31","input_length":994,"output_length":60,"hash_ids":[1636159,1636160],"delay":1450.1} +{"session_id":"sess-afad144dee31","input_length":8219,"output_length":797,"hash_ids":[1636161,1636162,1636163,1636164,1636165,1636166,1636167,1636168,1636169,1636170,1636171,1636172,1636173,1636174,1636175,1636176,1636177],"delay":514.1} +{"session_id":"sess-afad144dee31","input_length":3642,"output_length":1131,"hash_ids":[1636178,1636179,1636180,1636181,1636182,1636183,1636184,1636185],"delay":12433.4} +{"session_id":"sess-afad144dee31","input_length":467,"output_length":32,"hash_ids":[1636186],"delay":841.3} +{"session_id":"sess-afad144dee31","input_length":1900,"output_length":165,"hash_ids":[1636187,1636188,1636189,1636190],"delay":579.7} +{"session_id":"sess-afad144dee31","input_length":763,"output_length":2533,"hash_ids":[1636191,1636192],"delay":791.3} +{"session_id":"sess-afad144dee31","input_length":733,"output_length":782,"hash_ids":[1636193,1636194],"delay":1224.2} +{"session_id":"sess-afad144dee31","input_length":1860,"output_length":2326,"hash_ids":[1636195,1636196,1636197,1636198],"delay":1294.0} +{"session_id":"sess-f670e61a96b4","input_length":60625,"output_length":293,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,1640063,1640064,1640065,1640066,1640067,1640068,1640069,1640070,1640071,1640072,1640073,1640074,1640075,1640076,1640077,1640078],"timestamp":0.0,"group_id":16} +{"session_id":"sess-f670e61a96b4","input_length":766,"output_length":687,"hash_ids":[1640079,1640080],"delay":1214.6} +{"session_id":"sess-f670e61a96b4","input_length":1645,"output_length":66,"hash_ids":[1640081,1640082,1640083,1640084],"delay":220.7} +{"session_id":"sess-f670e61a96b4","input_length":2095,"output_length":138,"hash_ids":[1640085,1640086,1640087,1640088,1640089],"delay":427.0} +{"session_id":"sess-f670e61a96b4","input_length":1496,"output_length":488,"hash_ids":[1640090,1640091,1640092],"delay":7548.0} +{"session_id":"sess-f670e61a96b4","input_length":2583,"output_length":2287,"hash_ids":[1640093,1640094,1640095,1640096,1640097,1640098],"delay":2838.6} +{"session_id":"sess-f670e61a96b4","input_length":2693,"output_length":144,"hash_ids":[1640099,1640100,1640101,1640102,1640103,1640104],"delay":197.1} +{"session_id":"sess-f670e61a96b4","input_length":2939,"output_length":867,"hash_ids":[1640105,1640106,1640107,1640108,1640109,1640110],"delay":776.3} +{"session_id":"sess-f670e61a96b4","input_length":9887,"output_length":747,"hash_ids":[1640111,1640112,1640113,1640114,1640115,1640116,1640117,1640118,1640119,1640120,1640121,1640122,1640123,1640124,1640125,1640126,1640127,1640128,1640129,1640130],"delay":1521.7} +{"session_id":"sess-f670e61a96b4","input_length":167,"output_length":637,"hash_ids":[1640131],"delay":909.7} +{"session_id":"sess-f670e61a96b4","input_length":1373,"output_length":920,"hash_ids":[1640132,1640133,1640134],"delay":788.8} +{"session_id":"sess-f670e61a96b4","input_length":3813,"output_length":621,"hash_ids":[1640135,1640136,1640137,1640138,1640139,1640140,1640141,1640142],"delay":27656.6} +{"session_id":"sess-f670e61a96b4","input_length":1384,"output_length":49,"hash_ids":[1640143,1640144,1640145],"delay":6070.2} +{"session_id":"sess-f670e61a96b4","input_length":2027,"output_length":57,"hash_ids":[1640146,1640147,1640148,1640149],"delay":817.2} +{"session_id":"sess-f670e61a96b4","input_length":304,"output_length":81,"hash_ids":[1640150],"delay":2565.5} +{"session_id":"sess-f670e61a96b4","input_length":1408,"output_length":359,"hash_ids":[1640151,1640152,1640153],"delay":21584.9} +{"session_id":"sess-f670e61a96b4","input_length":2727,"output_length":486,"hash_ids":[1640154,1640155,1640156,1640157,1640158,1640159],"delay":929.8} +{"session_id":"sess-f670e61a96b4","input_length":1096,"output_length":697,"hash_ids":[1640160,1640161,1640162],"delay":2934.2} +{"session_id":"sess-f670e61a96b4","input_length":3699,"output_length":216,"hash_ids":[1640163,1640164,1640165,1640166,1640167,1640168,1640169,1640170],"delay":608.5} +{"session_id":"sess-f670e61a96b4","input_length":7325,"output_length":347,"hash_ids":[1640171,1640172,1640173,1640174,1640175,1640176,1640177,1640178,1640179,1640180,1640181,1640182,1640183,1640184,1640185],"delay":499.9} +{"session_id":"sess-f670e61a96b4","input_length":1764,"output_length":195,"hash_ids":[1640186,1640187,1640188,1640189],"delay":18255.2} +{"session_id":"sess-f670e61a96b4","input_length":1970,"output_length":1002,"hash_ids":[1640190,1640191,1640192,1640193],"delay":371.0} +{"session_id":"sess-9315d1689cb0","input_length":59949,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1644063,1644064,1644065,1644066,1644067,1644068,1644069,1644070,1644071,1644072,1644073,1644074,1644075,1644076,1644077],"timestamp":0.0,"group_id":3} +{"session_id":"sess-9315d1689cb0","input_length":885,"output_length":181,"hash_ids":[1644078,1644079],"delay":628.0} +{"session_id":"sess-9315d1689cb0","input_length":7092,"output_length":48,"hash_ids":[1644080,1644081,1644082,1644083,1644084,1644085,1644086,1644087,1644088,1644089,1644090,1644091,1644092,1644093],"delay":2480.6} +{"session_id":"sess-9315d1689cb0","input_length":1369,"output_length":1305,"hash_ids":[1644094,1644095,1644096],"delay":4317.0} +{"session_id":"sess-9315d1689cb0","input_length":5997,"output_length":138,"hash_ids":[1644097,1644098,1644099,1644100,1644101,1644102,1644103,1644104,1644105,1644106,1644107,1644108],"delay":1709.7} +{"session_id":"sess-9315d1689cb0","input_length":2137,"output_length":167,"hash_ids":[1644109,1644110,1644111,1644112,1644113],"delay":1279.5} +{"session_id":"sess-9315d1689cb0","input_length":414,"output_length":122,"hash_ids":[1644114],"delay":1924.9} +{"session_id":"sess-9315d1689cb0","input_length":5385,"output_length":155,"hash_ids":[1644115,1644116,1644117,1644118,1644119,1644120,1644121,1644122,1644123,1644124,1644125],"delay":227.8} +{"session_id":"sess-9315d1689cb0","input_length":710,"output_length":138,"hash_ids":[1644126,1644127],"delay":31130.8} +{"session_id":"sess-9315d1689cb0","input_length":7531,"output_length":115,"hash_ids":[1644128,1644129,1644130,1644131,1644132,1644133,1644134,1644135,1644136,1644137,1644138,1644139,1644140,1644141,1644142],"delay":708.2} +{"session_id":"sess-9315d1689cb0","input_length":6372,"output_length":147,"hash_ids":[1644143,1644144,1644145,1644146,1644147,1644148,1644149,1644150,1644151,1644152,1644153,1644154,1644155],"delay":444.0} +{"session_id":"sess-9315d1689cb0","input_length":3261,"output_length":604,"hash_ids":[1644156,1644157,1644158,1644159,1644160,1644161,1644162],"delay":38059.4} +{"session_id":"sess-9315d1689cb0","input_length":514,"output_length":196,"hash_ids":[1644163,1644164],"delay":767.3} +{"session_id":"sess-9315d1689cb0","input_length":1913,"output_length":1673,"hash_ids":[1644165,1644166,1644167,1644168],"delay":1656.7} +{"session_id":"sess-9315d1689cb0","input_length":432,"output_length":128,"hash_ids":[1644169],"delay":22229.5} +{"session_id":"sess-9315d1689cb0","input_length":8040,"output_length":334,"hash_ids":[1644170,1644171,1644172,1644173,1644174,1644175,1644176,1644177,1644178,1644179,1644180,1644181,1644182,1644183,1644184,1644185],"delay":10812.4} +{"session_id":"sess-9315d1689cb0","input_length":2978,"output_length":481,"hash_ids":[1644186,1644187,1644188,1644189,1644190,1644191],"delay":566.5} +{"session_id":"sess-9315d1689cb0","input_length":280,"output_length":553,"hash_ids":[1644192],"delay":280.4} +{"session_id":"sess-9315d1689cb0","input_length":3034,"output_length":244,"hash_ids":[1644193,1644194,1644195,1644196,1644197,1644198],"delay":7898.8} +{"session_id":"sess-9315d1689cb0","input_length":1710,"output_length":113,"hash_ids":[1644199,1644200,1644201,1644202],"delay":586.6} +{"session_id":"sess-9315d1689cb0","input_length":437,"output_length":614,"hash_ids":[1644203],"delay":302.9} +{"session_id":"sess-9315d1689cb0","input_length":463,"output_length":297,"hash_ids":[1644204],"delay":1256.8} +{"session_id":"sess-10c780439dad","input_length":62601,"output_length":182,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,1648063,1648064,1648065,1648066,1648067,1648068,1648069,1648070,1648071,1648072,1648073,1648074,1648075,1648076,1648077,1648078,1648079,1648080,1648081,1648082],"timestamp":0.0,"group_id":41} +{"session_id":"sess-10c780439dad","input_length":5373,"output_length":973,"hash_ids":[1648083,1648084,1648085,1648086,1648087,1648088,1648089,1648090,1648091,1648092,1648093],"delay":9018.1} +{"session_id":"sess-10c780439dad","input_length":2034,"output_length":162,"hash_ids":[1648094,1648095,1648096,1648097],"delay":9976.6} +{"session_id":"sess-10c780439dad","input_length":585,"output_length":196,"hash_ids":[1648098,1648099],"delay":16169.4} +{"session_id":"sess-10c780439dad","input_length":3843,"output_length":274,"hash_ids":[1648100,1648101,1648102,1648103,1648104,1648105,1648106,1648107],"delay":16561.0} +{"session_id":"sess-10c780439dad","input_length":1335,"output_length":118,"hash_ids":[1648108,1648109,1648110],"delay":814.5} +{"session_id":"sess-10c780439dad","input_length":1696,"output_length":558,"hash_ids":[1648111,1648112,1648113,1648114],"delay":34449.4} +{"session_id":"sess-10c780439dad","input_length":5357,"output_length":2770,"hash_ids":[1648115,1648116,1648117,1648118,1648119,1648120,1648121,1648122,1648123,1648124,1648125],"delay":1769.9} +{"session_id":"sess-10c780439dad","input_length":820,"output_length":449,"hash_ids":[1648126,1648127],"delay":965.6} +{"session_id":"sess-10c780439dad","input_length":3515,"output_length":479,"hash_ids":[1648128,1648129,1648130,1648131,1648132,1648133,1648134],"delay":283.2} +{"session_id":"sess-10c780439dad","input_length":1348,"output_length":473,"hash_ids":[1648135,1648136,1648137],"delay":2217.6} +{"session_id":"sess-10c780439dad","input_length":1909,"output_length":190,"hash_ids":[1648138,1648139,1648140,1648141],"delay":228.0} +{"session_id":"sess-10c780439dad","input_length":983,"output_length":233,"hash_ids":[1648142,1648143],"delay":198.9} +{"session_id":"sess-10c780439dad","input_length":913,"output_length":319,"hash_ids":[1648144,1648145],"delay":313.2} +{"session_id":"sess-10c780439dad","input_length":3100,"output_length":795,"hash_ids":[1648146,1648147,1648148,1648149,1648150,1648151,1648152],"delay":1662.8} +{"session_id":"sess-10c780439dad","input_length":1352,"output_length":428,"hash_ids":[1648153,1648154,1648155],"delay":1225.1} +{"session_id":"sess-10c780439dad","input_length":3147,"output_length":1902,"hash_ids":[1648156,1648157,1648158,1648159,1648160,1648161,1648162],"delay":7353.4} +{"session_id":"sess-10c780439dad","input_length":499,"output_length":261,"hash_ids":[1648163],"delay":2835.0} +{"session_id":"sess-10c780439dad","input_length":1173,"output_length":587,"hash_ids":[1648164,1648165,1648166],"delay":8747.4} +{"session_id":"sess-10c780439dad","input_length":4188,"output_length":650,"hash_ids":[1648167,1648168,1648169,1648170,1648171,1648172,1648173,1648174,1648175],"delay":10037.5} +{"session_id":"sess-10c780439dad","input_length":1440,"output_length":69,"hash_ids":[1648176,1648177,1648178],"delay":5836.8} +{"session_id":"sess-10c780439dad","input_length":491,"output_length":470,"hash_ids":[1648179],"delay":295.9} +{"session_id":"sess-936ac07d0684","input_length":62635,"output_length":222,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1652063,1652064,1652065,1652066,1652067,1652068,1652069,1652070,1652071,1652072,1652073,1652074,1652075,1652076,1652077,1652078,1652079,1652080,1652081,1652082],"timestamp":0.0,"group_id":1} +{"session_id":"sess-936ac07d0684","input_length":526,"output_length":397,"hash_ids":[1652083,1652084],"delay":2729.0} +{"session_id":"sess-dd87982fc85d","input_length":53579,"output_length":216,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,1656063,1656064],"timestamp":0.0,"group_id":37} +{"session_id":"sess-dd87982fc85d","input_length":221,"output_length":316,"hash_ids":[1656065],"delay":501.2} +{"session_id":"sess-dd87982fc85d","input_length":1892,"output_length":571,"hash_ids":[1656066,1656067,1656068,1656069],"delay":596.6} +{"session_id":"sess-dd87982fc85d","input_length":2437,"output_length":251,"hash_ids":[1656070,1656071,1656072,1656073,1656074],"delay":9033.8} +{"session_id":"sess-dd87982fc85d","input_length":1670,"output_length":364,"hash_ids":[1656075,1656076,1656077,1656078],"delay":758.3} +{"session_id":"sess-dd87982fc85d","input_length":2034,"output_length":742,"hash_ids":[1656079,1656080,1656081,1656082],"delay":20085.9} +{"session_id":"sess-dd87982fc85d","input_length":1400,"output_length":481,"hash_ids":[1656083,1656084,1656085],"delay":655.7} +{"session_id":"sess-dd87982fc85d","input_length":1505,"output_length":80,"hash_ids":[1656086,1656087,1656088],"delay":8587.7} +{"session_id":"sess-dd87982fc85d","input_length":957,"output_length":1500,"hash_ids":[1656089,1656090],"delay":906.8} +{"session_id":"sess-dd87982fc85d","input_length":430,"output_length":124,"hash_ids":[1656091],"delay":6083.4} +{"session_id":"sess-dd87982fc85d","input_length":1376,"output_length":733,"hash_ids":[1656092,1656093,1656094],"delay":381.0} +{"session_id":"sess-dd87982fc85d","input_length":632,"output_length":97,"hash_ids":[1656095,1656096],"delay":3225.5} +{"session_id":"sess-01e9b2826b5e","input_length":57242,"output_length":39,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1660063,1660064,1660065,1660066,1660067,1660068,1660069,1660070,1660071],"timestamp":0.0,"group_id":5} +{"session_id":"sess-01e9b2826b5e","input_length":1214,"output_length":100,"hash_ids":[1660072,1660073,1660074],"delay":3468.9} +{"session_id":"sess-01e9b2826b5e","input_length":5274,"output_length":116,"hash_ids":[1660075,1660076,1660077,1660078,1660079,1660080,1660081,1660082,1660083,1660084,1660085],"delay":1085.7} +{"session_id":"sess-01e9b2826b5e","input_length":598,"output_length":192,"hash_ids":[1660086,1660087],"delay":456.7} +{"session_id":"sess-01e9b2826b5e","input_length":1717,"output_length":417,"hash_ids":[1660088,1660089,1660090,1660091],"delay":6933.3} +{"session_id":"sess-01e9b2826b5e","input_length":1729,"output_length":167,"hash_ids":[1660092,1660093,1660094,1660095],"delay":30192.4} +{"session_id":"sess-01e9b2826b5e","input_length":51,"output_length":297,"hash_ids":[1660096],"delay":4338.8} +{"session_id":"sess-01e9b2826b5e","input_length":7918,"output_length":64,"hash_ids":[1660097,1660098,1660099,1660100,1660101,1660102,1660103,1660104,1660105,1660106,1660107,1660108,1660109,1660110,1660111,1660112],"delay":48779.4} +{"session_id":"sess-01e9b2826b5e","input_length":486,"output_length":51,"hash_ids":[1660113],"delay":1006.8} +{"session_id":"sess-01e9b2826b5e","input_length":314,"output_length":647,"hash_ids":[1660114],"delay":466.0} +{"session_id":"sess-01e9b2826b5e","input_length":5696,"output_length":469,"hash_ids":[1660115,1660116,1660117,1660118,1660119,1660120,1660121,1660122,1660123,1660124,1660125,1660126],"delay":2855.0} +{"session_id":"sess-01e9b2826b5e","input_length":1197,"output_length":98,"hash_ids":[1660127,1660128,1660129],"delay":980.3} +{"session_id":"sess-01e9b2826b5e","input_length":117,"output_length":593,"hash_ids":[1660130],"delay":225.6} +{"session_id":"sess-01e9b2826b5e","input_length":2339,"output_length":197,"hash_ids":[1660131,1660132,1660133,1660134,1660135],"delay":662.3} +{"session_id":"sess-01e9b2826b5e","input_length":1792,"output_length":30,"hash_ids":[1660136,1660137,1660138,1660139],"delay":723.0} +{"session_id":"sess-01e9b2826b5e","input_length":5852,"output_length":134,"hash_ids":[1660140,1660141,1660142,1660143,1660144,1660145,1660146,1660147,1660148,1660149,1660150,1660151],"delay":43552.3} +{"session_id":"sess-01e9b2826b5e","input_length":2284,"output_length":968,"hash_ids":[1660152,1660153,1660154,1660155,1660156],"delay":10594.0} +{"session_id":"sess-01e9b2826b5e","input_length":105,"output_length":138,"hash_ids":[1660157],"delay":42683.5} +{"session_id":"sess-94e09c33593e","input_length":57489,"output_length":115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1664063,1664064,1664065,1664066,1664067,1664068,1664069,1664070,1664071,1664072],"timestamp":0.0,"group_id":10} +{"session_id":"sess-94e09c33593e","input_length":3125,"output_length":1053,"hash_ids":[1664073,1664074,1664075,1664076,1664077,1664078,1664079],"delay":10975.2} +{"session_id":"sess-94e09c33593e","input_length":2597,"output_length":737,"hash_ids":[1664080,1664081,1664082,1664083,1664084,1664085],"delay":39099.4} +{"session_id":"sess-94e09c33593e","input_length":3302,"output_length":1222,"hash_ids":[1664086,1664087,1664088,1664089,1664090,1664091,1664092],"delay":63.2} +{"session_id":"sess-94e09c33593e","input_length":869,"output_length":387,"hash_ids":[1664093,1664094],"delay":771.5} +{"session_id":"sess-94e09c33593e","input_length":544,"output_length":1886,"hash_ids":[1664095,1664096],"delay":8851.6} +{"session_id":"sess-94e09c33593e","input_length":733,"output_length":282,"hash_ids":[1664097,1664098],"delay":1183.4} +{"session_id":"sess-94e09c33593e","input_length":7347,"output_length":266,"hash_ids":[1664099,1664100,1664101,1664102,1664103,1664104,1664105,1664106,1664107,1664108,1664109,1664110,1664111,1664112,1664113],"delay":1325.9} +{"session_id":"sess-94e09c33593e","input_length":490,"output_length":866,"hash_ids":[1664114],"delay":467.2} +{"session_id":"sess-94e09c33593e","input_length":1639,"output_length":350,"hash_ids":[1664115,1664116,1664117,1664118],"delay":988.3} +{"session_id":"sess-94e09c33593e","input_length":2037,"output_length":901,"hash_ids":[1664119,1664120,1664121,1664122],"delay":1669.8} +{"session_id":"sess-94e09c33593e","input_length":4502,"output_length":82,"hash_ids":[1664123,1664124,1664125,1664126,1664127,1664128,1664129,1664130,1664131],"delay":426.3} +{"session_id":"sess-94e09c33593e","input_length":1473,"output_length":2385,"hash_ids":[1664132,1664133,1664134],"delay":3568.9} +{"session_id":"sess-94e09c33593e","input_length":6333,"output_length":152,"hash_ids":[1664135,1664136,1664137,1664138,1664139,1664140,1664141,1664142,1664143,1664144,1664145,1664146,1664147],"delay":11815.9} +{"session_id":"sess-94e09c33593e","input_length":3922,"output_length":756,"hash_ids":[1664148,1664149,1664150,1664151,1664152,1664153,1664154,1664155],"delay":668.5} +{"session_id":"sess-94e09c33593e","input_length":1869,"output_length":343,"hash_ids":[1664156,1664157,1664158,1664159],"delay":10735.5} +{"session_id":"sess-94e09c33593e","input_length":1074,"output_length":242,"hash_ids":[1664160,1664161,1664162],"delay":1789.3} +{"session_id":"sess-94e09c33593e","input_length":6896,"output_length":120,"hash_ids":[1664163,1664164,1664165,1664166,1664167,1664168,1664169,1664170,1664171,1664172,1664173,1664174,1664175,1664176],"delay":179.0} +{"session_id":"sess-94e09c33593e","input_length":4623,"output_length":236,"hash_ids":[1664177,1664178,1664179,1664180,1664181,1664182,1664183,1664184,1664185,1664186],"delay":678.0} +{"session_id":"sess-94e09c33593e","input_length":1141,"output_length":285,"hash_ids":[1664187,1664188,1664189],"delay":454.8} +{"session_id":"sess-94e09c33593e","input_length":4345,"output_length":398,"hash_ids":[1664190,1664191,1664192,1664193,1664194,1664195,1664196,1664197,1664198],"delay":297.8} +{"session_id":"sess-94e09c33593e","input_length":496,"output_length":116,"hash_ids":[1664199],"delay":6851.7} +{"session_id":"sess-8651a8fd9433","input_length":56579,"output_length":308,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,1668063,1668064,1668065,1668066,1668067,1668068,1668069,1668070],"timestamp":0.0,"group_id":18} +{"session_id":"sess-8651a8fd9433","input_length":3517,"output_length":235,"hash_ids":[1668071,1668072,1668073,1668074,1668075,1668076,1668077],"delay":1447.8} +{"session_id":"sess-8651a8fd9433","input_length":2293,"output_length":319,"hash_ids":[1668078,1668079,1668080,1668081,1668082],"delay":11066.7} +{"session_id":"sess-7f92e0b0269d","input_length":62419,"output_length":569,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1672063,1672064,1672065,1672066,1672067,1672068,1672069,1672070,1672071,1672072,1672073,1672074,1672075,1672076,1672077,1672078,1672079,1672080,1672081],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7f92e0b0269d","input_length":983,"output_length":298,"hash_ids":[1672082,1672083],"delay":921.0} +{"session_id":"sess-7f92e0b0269d","input_length":1505,"output_length":565,"hash_ids":[1672084,1672085,1672086],"delay":771.8} +{"session_id":"sess-7f92e0b0269d","input_length":1960,"output_length":311,"hash_ids":[1672087,1672088,1672089,1672090],"delay":13015.5} +{"session_id":"sess-7f92e0b0269d","input_length":483,"output_length":583,"hash_ids":[1672091],"delay":10460.2} +{"session_id":"sess-7f92e0b0269d","input_length":3354,"output_length":115,"hash_ids":[1672092,1672093,1672094,1672095,1672096,1672097,1672098],"delay":390.4} +{"session_id":"sess-7f92e0b0269d","input_length":3966,"output_length":819,"hash_ids":[1672099,1672100,1672101,1672102,1672103,1672104,1672105,1672106],"delay":117.7} +{"session_id":"sess-7f92e0b0269d","input_length":3289,"output_length":370,"hash_ids":[1672107,1672108,1672109,1672110,1672111,1672112,1672113],"delay":525.2} +{"session_id":"sess-7f92e0b0269d","input_length":386,"output_length":102,"hash_ids":[1672114],"delay":482.7} +{"session_id":"sess-7f92e0b0269d","input_length":241,"output_length":31,"hash_ids":[1672115],"delay":739.8} +{"session_id":"sess-7f92e0b0269d","input_length":357,"output_length":55,"hash_ids":[1672116],"delay":986.0} +{"session_id":"sess-7f92e0b0269d","input_length":4195,"output_length":529,"hash_ids":[1672117,1672118,1672119,1672120,1672121,1672122,1672123,1672124,1672125],"delay":465.8} +{"session_id":"sess-7f92e0b0269d","input_length":1123,"output_length":195,"hash_ids":[1672126,1672127,1672128],"delay":1510.3} +{"session_id":"sess-7f92e0b0269d","input_length":1405,"output_length":82,"hash_ids":[1672129,1672130,1672131],"delay":1964.8} +{"session_id":"sess-7f92e0b0269d","input_length":4619,"output_length":458,"hash_ids":[1672132,1672133,1672134,1672135,1672136,1672137,1672138,1672139,1672140,1672141],"delay":439.8} +{"session_id":"sess-7f92e0b0269d","input_length":332,"output_length":454,"hash_ids":[1672142],"delay":33706.5} +{"session_id":"sess-7f92e0b0269d","input_length":447,"output_length":613,"hash_ids":[1672143],"delay":565.6} +{"session_id":"sess-7f92e0b0269d","input_length":2145,"output_length":1045,"hash_ids":[1672144,1672145,1672146,1672147,1672148],"delay":582.4} +{"session_id":"sess-4f24496481c6","input_length":53365,"output_length":46,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1676063,1676064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4f24496481c6","input_length":428,"output_length":712,"hash_ids":[1676065],"delay":279.1} +{"session_id":"sess-4f24496481c6","input_length":3931,"output_length":339,"hash_ids":[1676066,1676067,1676068,1676069,1676070,1676071,1676072,1676073],"delay":9983.5} +{"session_id":"sess-4f24496481c6","input_length":2352,"output_length":157,"hash_ids":[1676074,1676075,1676076,1676077,1676078],"delay":5870.4} +{"session_id":"sess-4f24496481c6","input_length":2093,"output_length":98,"hash_ids":[1676079,1676080,1676081,1676082,1676083],"delay":7388.1} +{"session_id":"sess-4f24496481c6","input_length":1583,"output_length":261,"hash_ids":[1676084,1676085,1676086,1676087],"delay":16932.6} +{"session_id":"sess-4f24496481c6","input_length":1666,"output_length":1323,"hash_ids":[1676088,1676089,1676090,1676091],"delay":466.2} +{"session_id":"sess-4f24496481c6","input_length":802,"output_length":950,"hash_ids":[1676092,1676093],"delay":3396.6} +{"session_id":"sess-4f24496481c6","input_length":1939,"output_length":146,"hash_ids":[1676094,1676095,1676096,1676097],"delay":1255.1} +{"session_id":"sess-1fee7c220280","input_length":54126,"output_length":368,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1680063,1680064,1680065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1fee7c220280","input_length":512,"output_length":338,"hash_ids":[1680066],"delay":2032.2} +{"session_id":"sess-35de51e4c47a","input_length":54768,"output_length":672,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1684063,1684064,1684065,1684066],"timestamp":0.0,"group_id":9} +{"session_id":"sess-35de51e4c47a","input_length":1363,"output_length":1087,"hash_ids":[1684067,1684068,1684069],"delay":58669.5} +{"session_id":"sess-35de51e4c47a","input_length":835,"output_length":135,"hash_ids":[1684070,1684071],"delay":557.5} +{"session_id":"sess-35de51e4c47a","input_length":793,"output_length":65,"hash_ids":[1684072,1684073],"delay":270.9} +{"session_id":"sess-35de51e4c47a","input_length":106,"output_length":1088,"hash_ids":[1684074],"delay":2150.7} +{"session_id":"sess-35de51e4c47a","input_length":655,"output_length":483,"hash_ids":[1684075,1684076],"delay":1589.8} +{"session_id":"sess-35de51e4c47a","input_length":1873,"output_length":558,"hash_ids":[1684077,1684078,1684079,1684080],"delay":825.9} +{"session_id":"sess-35de51e4c47a","input_length":2767,"output_length":53,"hash_ids":[1684081,1684082,1684083,1684084,1684085,1684086],"delay":566.4} +{"session_id":"sess-35de51e4c47a","input_length":1091,"output_length":74,"hash_ids":[1684087,1684088,1684089],"delay":636.7} +{"session_id":"sess-35de51e4c47a","input_length":825,"output_length":920,"hash_ids":[1684090,1684091],"delay":4712.1} +{"session_id":"sess-35de51e4c47a","input_length":3687,"output_length":760,"hash_ids":[1684092,1684093,1684094,1684095,1684096,1684097,1684098,1684099],"delay":7898.1} +{"session_id":"sess-35de51e4c47a","input_length":1219,"output_length":284,"hash_ids":[1684100,1684101,1684102],"delay":1377.8} +{"session_id":"sess-35de51e4c47a","input_length":751,"output_length":181,"hash_ids":[1684103,1684104],"delay":316.4} +{"session_id":"sess-35de51e4c47a","input_length":1342,"output_length":727,"hash_ids":[1684105,1684106,1684107],"delay":1025.3} +{"session_id":"sess-35de51e4c47a","input_length":470,"output_length":145,"hash_ids":[1684108],"delay":178.1} +{"session_id":"sess-35de51e4c47a","input_length":258,"output_length":424,"hash_ids":[1684109],"delay":551.6} +{"session_id":"sess-35de51e4c47a","input_length":1192,"output_length":319,"hash_ids":[1684110,1684111,1684112],"delay":640.3} +{"session_id":"sess-35de51e4c47a","input_length":1678,"output_length":64,"hash_ids":[1684113,1684114,1684115,1684116],"delay":20378.1} +{"session_id":"sess-35de51e4c47a","input_length":6393,"output_length":523,"hash_ids":[1684117,1684118,1684119,1684120,1684121,1684122,1684123,1684124,1684125,1684126,1684127,1684128,1684129],"delay":3574.2} +{"session_id":"sess-35de51e4c47a","input_length":3276,"output_length":218,"hash_ids":[1684130,1684131,1684132,1684133,1684134,1684135,1684136],"delay":4638.7} +{"session_id":"sess-ce350e7fc975","input_length":55729,"output_length":278,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1688063,1688064,1688065,1688066,1688067,1688068],"timestamp":0.0,"group_id":8} +{"session_id":"sess-ce350e7fc975","input_length":1214,"output_length":1014,"hash_ids":[1688069,1688070,1688071],"delay":1821.1} +{"session_id":"sess-64dda106adb1","input_length":52522,"output_length":592,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-64dda106adb1","input_length":4049,"output_length":400,"hash_ids":[1688072,1688073,1688074,1688075,1688076,1688077,1688078,1688079],"delay":20229.5} +{"session_id":"sess-64dda106adb1","input_length":6586,"output_length":161,"hash_ids":[1688080,1688081,1688082,1688083,1688084,1688085,1688086,1688087,1688088,1688089,1688090,1688091,1688092],"delay":1818.8} +{"session_id":"sess-64dda106adb1","input_length":6726,"output_length":73,"hash_ids":[1688093,1688094,1688095,1688096,1688097,1688098,1688099,1688100,1688101,1688102,1688103,1688104,1688105,1688106],"delay":7545.3} +{"session_id":"sess-64dda106adb1","input_length":1999,"output_length":938,"hash_ids":[1688107,1688108,1688109,1688110],"delay":1059.0} +{"session_id":"sess-64dda106adb1","input_length":984,"output_length":121,"hash_ids":[1688111,1688112],"delay":23684.7} +{"session_id":"sess-64dda106adb1","input_length":6541,"output_length":197,"hash_ids":[1688113,1688114,1688115,1688116,1688117,1688118,1688119,1688120,1688121,1688122,1688123,1688124,1688125],"delay":3904.8} +{"session_id":"sess-64dda106adb1","input_length":3001,"output_length":534,"hash_ids":[1688126,1688127,1688128,1688129,1688130,1688131],"delay":2948.6} +{"session_id":"sess-64dda106adb1","input_length":1267,"output_length":239,"hash_ids":[1688132,1688133,1688134],"delay":1584.8} +{"session_id":"sess-64dda106adb1","input_length":1305,"output_length":697,"hash_ids":[1688135,1688136,1688137],"delay":14538.3} +{"session_id":"sess-64dda106adb1","input_length":7625,"output_length":66,"hash_ids":[1688138,1688139,1688140,1688141,1688142,1688143,1688144,1688145,1688146,1688147,1688148,1688149,1688150,1688151,1688152],"delay":29015.2} +{"session_id":"sess-64dda106adb1","input_length":596,"output_length":578,"hash_ids":[1688153,1688154],"delay":293.3} +{"session_id":"sess-64dda106adb1","input_length":3498,"output_length":258,"hash_ids":[1688155,1688156,1688157,1688158,1688159,1688160,1688161],"delay":435.0} +{"session_id":"sess-64dda106adb1","input_length":1294,"output_length":1084,"hash_ids":[1688162,1688163,1688164],"delay":24841.6} +{"session_id":"sess-64dda106adb1","input_length":4487,"output_length":79,"hash_ids":[1688165,1688166,1688167,1688168,1688169,1688170,1688171,1688172,1688173],"delay":259.0} +{"session_id":"sess-64dda106adb1","input_length":1149,"output_length":188,"hash_ids":[1688174,1688175,1688176],"delay":435.7} +{"session_id":"sess-64dda106adb1","input_length":282,"output_length":564,"hash_ids":[1688177],"delay":307.6} +{"session_id":"sess-64dda106adb1","input_length":5474,"output_length":685,"hash_ids":[1688178,1688179,1688180,1688181,1688182,1688183,1688184,1688185,1688186,1688187,1688188],"delay":1390.8} +{"session_id":"sess-64dda106adb1","input_length":1538,"output_length":94,"hash_ids":[1688189,1688190,1688191,1688192],"delay":615.7} +{"session_id":"sess-64dda106adb1","input_length":3484,"output_length":174,"hash_ids":[1688193,1688194,1688195,1688196,1688197,1688198,1688199],"delay":1787.7} +{"session_id":"sess-64dda106adb1","input_length":537,"output_length":325,"hash_ids":[1688200,1688201],"delay":495.0} +{"session_id":"sess-64dda106adb1","input_length":4096,"output_length":840,"hash_ids":[1688202,1688203,1688204,1688205,1688206,1688207,1688208,1688209],"delay":975.5} +{"session_id":"sess-6bb16a1fe416","input_length":66820,"output_length":1349,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,1696063,1696064,1696065,1696066,1696067,1696068,1696069,1696070,1696071,1696072,1696073,1696074,1696075,1696076,1696077,1696078,1696079,1696080,1696081,1696082,1696083,1696084,1696085,1696086,1696087,1696088,1696089,1696090],"timestamp":0.0,"group_id":30} +{"session_id":"sess-6bb16a1fe416","input_length":3322,"output_length":507,"hash_ids":[1696091,1696092,1696093,1696094,1696095,1696096,1696097],"delay":18890.7} +{"session_id":"sess-6bb16a1fe416","input_length":3091,"output_length":159,"hash_ids":[1696098,1696099,1696100,1696101,1696102,1696103,1696104],"delay":12069.0} +{"session_id":"sess-6bb16a1fe416","input_length":4307,"output_length":492,"hash_ids":[1696105,1696106,1696107,1696108,1696109,1696110,1696111,1696112,1696113],"delay":676.0} +{"session_id":"sess-6bb16a1fe416","input_length":4476,"output_length":712,"hash_ids":[1696114,1696115,1696116,1696117,1696118,1696119,1696120,1696121,1696122],"delay":5501.4} +{"session_id":"sess-6bb16a1fe416","input_length":2002,"output_length":565,"hash_ids":[1696123,1696124,1696125,1696126],"delay":702.7} +{"session_id":"sess-6bb16a1fe416","input_length":108,"output_length":65,"hash_ids":[1696127],"delay":4380.1} +{"session_id":"sess-6bb16a1fe416","input_length":1483,"output_length":425,"hash_ids":[1696128,1696129,1696130],"delay":561.7} +{"session_id":"sess-6bb16a1fe416","input_length":1580,"output_length":170,"hash_ids":[1696131,1696132,1696133,1696134],"delay":21927.6} +{"session_id":"sess-6bb16a1fe416","input_length":921,"output_length":151,"hash_ids":[1696135,1696136],"delay":13674.2} +{"session_id":"sess-6bb16a1fe416","input_length":910,"output_length":221,"hash_ids":[1696137,1696138],"delay":876.1} +{"session_id":"sess-6bb16a1fe416","input_length":2062,"output_length":534,"hash_ids":[1696139,1696140,1696141,1696142,1696143],"delay":560.0} +{"session_id":"sess-6bb16a1fe416","input_length":748,"output_length":178,"hash_ids":[1696144,1696145],"delay":1019.5} +{"session_id":"sess-6bb16a1fe416","input_length":6317,"output_length":84,"hash_ids":[1696146,1696147,1696148,1696149,1696150,1696151,1696152,1696153,1696154,1696155,1696156,1696157,1696158],"delay":1357.9} +{"session_id":"sess-6bb16a1fe416","input_length":635,"output_length":283,"hash_ids":[1696159,1696160],"delay":2273.0} +{"session_id":"sess-6bb16a1fe416","input_length":804,"output_length":143,"hash_ids":[1696161,1696162],"delay":523.3} +{"session_id":"sess-6bb16a1fe416","input_length":2316,"output_length":63,"hash_ids":[1696163,1696164,1696165,1696166,1696167],"delay":356.2} +{"session_id":"sess-6bb16a1fe416","input_length":121,"output_length":75,"hash_ids":[1696168],"delay":1139.2} +{"session_id":"sess-6bb16a1fe416","input_length":1144,"output_length":1551,"hash_ids":[1696169,1696170,1696171],"delay":1886.4} +{"session_id":"sess-6bb16a1fe416","input_length":272,"output_length":48,"hash_ids":[1696172],"delay":3592.7} +{"session_id":"sess-6bb16a1fe416","input_length":267,"output_length":138,"hash_ids":[1696173],"delay":542.9} +{"session_id":"sess-6bb16a1fe416","input_length":3906,"output_length":1692,"hash_ids":[1696174,1696175,1696176,1696177,1696178,1696179,1696180,1696181],"delay":874.0} +{"session_id":"sess-6bb16a1fe416","input_length":941,"output_length":517,"hash_ids":[1696182,1696183],"delay":488.5} +{"session_id":"sess-6bb16a1fe416","input_length":2704,"output_length":99,"hash_ids":[1696184,1696185,1696186,1696187,1696188,1696189],"delay":6449.2} +{"session_id":"sess-6bb16a1fe416","input_length":802,"output_length":265,"hash_ids":[1696190,1696191],"delay":44.1} +{"session_id":"sess-6bb16a1fe416","input_length":2577,"output_length":698,"hash_ids":[1696192,1696193,1696194,1696195,1696196,1696197],"delay":2782.9} +{"session_id":"sess-6bb16a1fe416","input_length":3711,"output_length":2126,"hash_ids":[1696198,1696199,1696200,1696201,1696202,1696203,1696204,1696205],"delay":871.8} +{"session_id":"sess-d739a882f820","input_length":59889,"output_length":562,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1700063,1700064,1700065,1700066,1700067,1700068,1700069,1700070,1700071,1700072,1700073,1700074,1700075,1700076],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d739a882f820","input_length":2926,"output_length":45,"hash_ids":[1700077,1700078,1700079,1700080,1700081,1700082],"delay":2387.6} +{"session_id":"sess-d739a882f820","input_length":410,"output_length":250,"hash_ids":[1700083],"delay":543.6} +{"session_id":"sess-d739a882f820","input_length":920,"output_length":149,"hash_ids":[1700084,1700085],"delay":359.0} +{"session_id":"sess-d739a882f820","input_length":998,"output_length":2293,"hash_ids":[1700086,1700087],"delay":2797.1} +{"session_id":"sess-d739a882f820","input_length":3411,"output_length":360,"hash_ids":[1700088,1700089,1700090,1700091,1700092,1700093,1700094],"delay":736.0} +{"session_id":"sess-d739a882f820","input_length":5069,"output_length":268,"hash_ids":[1700095,1700096,1700097,1700098,1700099,1700100,1700101,1700102,1700103,1700104],"delay":42548.3} +{"session_id":"sess-d739a882f820","input_length":4110,"output_length":105,"hash_ids":[1700105,1700106,1700107,1700108,1700109,1700110,1700111,1700112,1700113],"delay":554.6} +{"session_id":"sess-d739a882f820","input_length":5053,"output_length":243,"hash_ids":[1700114,1700115,1700116,1700117,1700118,1700119,1700120,1700121,1700122,1700123],"delay":641.0} +{"session_id":"sess-d739a882f820","input_length":2519,"output_length":162,"hash_ids":[1700124,1700125,1700126,1700127,1700128],"delay":1151.0} +{"session_id":"sess-d739a882f820","input_length":571,"output_length":815,"hash_ids":[1700129,1700130],"delay":4462.6} +{"session_id":"sess-d739a882f820","input_length":6819,"output_length":231,"hash_ids":[1700131,1700132,1700133,1700134,1700135,1700136,1700137,1700138,1700139,1700140,1700141,1700142,1700143,1700144],"delay":14612.2} +{"session_id":"sess-d739a882f820","input_length":579,"output_length":745,"hash_ids":[1700145,1700146],"delay":1047.3} +{"session_id":"sess-d739a882f820","input_length":1545,"output_length":174,"hash_ids":[1700147,1700148,1700149,1700150],"delay":86.5} +{"session_id":"sess-d739a882f820","input_length":317,"output_length":283,"hash_ids":[1700151],"delay":266.9} +{"session_id":"sess-d739a882f820","input_length":1270,"output_length":190,"hash_ids":[1700152,1700153,1700154],"delay":42820.8} +{"session_id":"sess-d739a882f820","input_length":3913,"output_length":117,"hash_ids":[1700155,1700156,1700157,1700158,1700159,1700160,1700161,1700162],"delay":673.4} +{"session_id":"sess-d739a882f820","input_length":6971,"output_length":88,"hash_ids":[1700163,1700164,1700165,1700166,1700167,1700168,1700169,1700170,1700171,1700172,1700173,1700174,1700175,1700176],"delay":734.8} +{"session_id":"sess-d739a882f820","input_length":1076,"output_length":158,"hash_ids":[1700177,1700178,1700179],"delay":1704.4} +{"session_id":"sess-d739a882f820","input_length":1393,"output_length":30,"hash_ids":[1700180,1700181,1700182],"delay":17872.8} +{"session_id":"sess-d739a882f820","input_length":229,"output_length":795,"hash_ids":[1700183],"delay":16852.9} +{"session_id":"sess-d739a882f820","input_length":1269,"output_length":71,"hash_ids":[1700184,1700185,1700186],"delay":4778.3} +{"session_id":"sess-d739a882f820","input_length":1720,"output_length":283,"hash_ids":[1700187,1700188,1700189,1700190],"delay":16868.5} +{"session_id":"sess-d739a882f820","input_length":3698,"output_length":373,"hash_ids":[1700191,1700192,1700193,1700194,1700195,1700196,1700197,1700198],"delay":501.4} +{"session_id":"sess-d739a882f820","input_length":3684,"output_length":364,"hash_ids":[1700199,1700200,1700201,1700202,1700203,1700204,1700205,1700206],"delay":1392.1} +{"session_id":"sess-d739a882f820","input_length":646,"output_length":62,"hash_ids":[1700207,1700208],"delay":377.0} +{"session_id":"sess-8a190f12a83c","input_length":67313,"output_length":1209,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,1704063,1704064,1704065,1704066,1704067,1704068,1704069,1704070,1704071,1704072,1704073,1704074,1704075,1704076,1704077,1704078,1704079,1704080,1704081,1704082,1704083,1704084,1704085,1704086,1704087,1704088,1704089,1704090,1704091],"timestamp":0.0,"group_id":28} +{"session_id":"sess-8a190f12a83c","input_length":409,"output_length":719,"hash_ids":[1704092],"delay":901.3} +{"session_id":"sess-8a190f12a83c","input_length":913,"output_length":141,"hash_ids":[1704093,1704094],"delay":825.0} +{"session_id":"sess-8a190f12a83c","input_length":3333,"output_length":931,"hash_ids":[1704095,1704096,1704097,1704098,1704099,1704100,1704101],"delay":1498.1} +{"session_id":"sess-8a190f12a83c","input_length":524,"output_length":331,"hash_ids":[1704102,1704103],"delay":392.5} +{"session_id":"sess-8a190f12a83c","input_length":6003,"output_length":860,"hash_ids":[1704104,1704105,1704106,1704107,1704108,1704109,1704110,1704111,1704112,1704113,1704114,1704115],"delay":1152.5} +{"session_id":"sess-8a190f12a83c","input_length":2086,"output_length":193,"hash_ids":[1704116,1704117,1704118,1704119,1704120],"delay":945.2} +{"session_id":"sess-8a190f12a83c","input_length":1547,"output_length":168,"hash_ids":[1704121,1704122,1704123,1704124],"delay":8851.0} +{"session_id":"sess-8a190f12a83c","input_length":1718,"output_length":125,"hash_ids":[1704125,1704126,1704127,1704128],"delay":1188.7} +{"session_id":"sess-8a190f12a83c","input_length":3980,"output_length":1485,"hash_ids":[1704129,1704130,1704131,1704132,1704133,1704134,1704135,1704136],"delay":31037.8} +{"session_id":"sess-8a190f12a83c","input_length":558,"output_length":37,"hash_ids":[1704137,1704138],"delay":440.4} +{"session_id":"sess-8a190f12a83c","input_length":866,"output_length":1973,"hash_ids":[1704139,1704140],"delay":711.9} +{"session_id":"sess-8a190f12a83c","input_length":8530,"output_length":153,"hash_ids":[1704141,1704142,1704143,1704144,1704145,1704146,1704147,1704148,1704149,1704150,1704151,1704152,1704153,1704154,1704155,1704156,1704157],"delay":1811.8} +{"session_id":"sess-8a190f12a83c","input_length":2047,"output_length":666,"hash_ids":[1704158,1704159,1704160,1704161],"delay":194.7} +{"session_id":"sess-8a190f12a83c","input_length":2694,"output_length":257,"hash_ids":[1704162,1704163,1704164,1704165,1704166,1704167],"delay":25781.3} +{"session_id":"sess-8a190f12a83c","input_length":573,"output_length":125,"hash_ids":[1704168,1704169],"delay":291.8} +{"session_id":"sess-8a190f12a83c","input_length":3641,"output_length":237,"hash_ids":[1704170,1704171,1704172,1704173,1704174,1704175,1704176,1704177],"delay":8753.1} +{"session_id":"sess-f7a251f346d4","input_length":58504,"output_length":193,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1708063,1708064,1708065,1708066,1708067,1708068,1708069,1708070,1708071,1708072,1708073,1708074],"timestamp":0.0,"group_id":6} +{"session_id":"sess-f7a251f346d4","input_length":3568,"output_length":510,"hash_ids":[1708075,1708076,1708077,1708078,1708079,1708080,1708081],"delay":2017.7} +{"session_id":"sess-f7a251f346d4","input_length":437,"output_length":478,"hash_ids":[1708082],"delay":2245.8} +{"session_id":"sess-f7a251f346d4","input_length":1535,"output_length":389,"hash_ids":[1708083,1708084,1708085],"delay":1928.5} +{"session_id":"sess-f7a251f346d4","input_length":655,"output_length":142,"hash_ids":[1708086,1708087],"delay":1149.3} +{"session_id":"sess-f7a251f346d4","input_length":781,"output_length":393,"hash_ids":[1708088,1708089],"delay":4758.2} +{"session_id":"sess-f7a251f346d4","input_length":1144,"output_length":261,"hash_ids":[1708090,1708091,1708092],"delay":6471.7} +{"session_id":"sess-f7a251f346d4","input_length":111,"output_length":40,"hash_ids":[1708093],"delay":11842.3} +{"session_id":"sess-f7a251f346d4","input_length":952,"output_length":593,"hash_ids":[1708094,1708095],"delay":31334.0} +{"session_id":"sess-f7a251f346d4","input_length":1694,"output_length":505,"hash_ids":[1708096,1708097,1708098,1708099],"delay":1688.7} +{"session_id":"sess-f7a251f346d4","input_length":4967,"output_length":30,"hash_ids":[1708100,1708101,1708102,1708103,1708104,1708105,1708106,1708107,1708108,1708109],"delay":7373.0} +{"session_id":"sess-f7a251f346d4","input_length":1216,"output_length":118,"hash_ids":[1708110,1708111,1708112],"delay":789.3} +{"session_id":"sess-f7a251f346d4","input_length":4825,"output_length":361,"hash_ids":[1708113,1708114,1708115,1708116,1708117,1708118,1708119,1708120,1708121,1708122],"delay":271.6} +{"session_id":"sess-f7a251f346d4","input_length":897,"output_length":96,"hash_ids":[1708123,1708124],"delay":561.4} +{"session_id":"sess-f7a251f346d4","input_length":475,"output_length":105,"hash_ids":[1708125],"delay":214.1} +{"session_id":"sess-f7a251f346d4","input_length":1514,"output_length":392,"hash_ids":[1708126,1708127,1708128],"delay":1809.9} +{"session_id":"sess-f7a251f346d4","input_length":782,"output_length":709,"hash_ids":[1708129,1708130],"delay":880.5} +{"session_id":"sess-f7a251f346d4","input_length":3907,"output_length":465,"hash_ids":[1708131,1708132,1708133,1708134,1708135,1708136,1708137,1708138],"delay":2351.0} +{"session_id":"sess-f7a251f346d4","input_length":5417,"output_length":555,"hash_ids":[1708139,1708140,1708141,1708142,1708143,1708144,1708145,1708146,1708147,1708148,1708149],"delay":18159.2} +{"session_id":"sess-f7a251f346d4","input_length":435,"output_length":191,"hash_ids":[1708150],"delay":530.0} +{"session_id":"sess-f7a251f346d4","input_length":4333,"output_length":1077,"hash_ids":[1708151,1708152,1708153,1708154,1708155,1708156,1708157,1708158,1708159],"delay":7462.8} +{"session_id":"sess-f7a251f346d4","input_length":1731,"output_length":245,"hash_ids":[1708160,1708161,1708162,1708163],"delay":4763.1} +{"session_id":"sess-f7a251f346d4","input_length":892,"output_length":41,"hash_ids":[1708164,1708165],"delay":1456.0} +{"session_id":"sess-f7a251f346d4","input_length":1319,"output_length":851,"hash_ids":[1708166,1708167,1708168],"delay":4352.1} +{"session_id":"sess-f7a251f346d4","input_length":984,"output_length":2204,"hash_ids":[1708169,1708170],"delay":1249.4} +{"session_id":"sess-f7a251f346d4","input_length":2105,"output_length":87,"hash_ids":[1708171,1708172,1708173,1708174,1708175],"delay":226.6} +{"session_id":"sess-f7a251f346d4","input_length":7642,"output_length":551,"hash_ids":[1708176,1708177,1708178,1708179,1708180,1708181,1708182,1708183,1708184,1708185,1708186,1708187,1708188,1708189,1708190],"delay":799.8} +{"session_id":"sess-f7a251f346d4","input_length":486,"output_length":197,"hash_ids":[1708191],"delay":316.7} +{"session_id":"sess-f7a251f346d4","input_length":657,"output_length":63,"hash_ids":[1708192,1708193],"delay":713.6} +{"session_id":"sess-f7a251f346d4","input_length":1529,"output_length":90,"hash_ids":[1708194,1708195,1708196],"delay":79.4} +{"session_id":"sess-f7a251f346d4","input_length":1736,"output_length":231,"hash_ids":[1708197,1708198,1708199,1708200],"delay":505.7} +{"session_id":"sess-8d9f4a41f50a","input_length":69537,"output_length":313,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1712063,1712064,1712065,1712066,1712067,1712068,1712069,1712070,1712071,1712072,1712073,1712074,1712075,1712076,1712077,1712078,1712079,1712080,1712081,1712082,1712083,1712084,1712085,1712086,1712087,1712088,1712089,1712090,1712091,1712092,1712093,1712094,1712095],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8d9f4a41f50a","input_length":2539,"output_length":98,"hash_ids":[1712096,1712097,1712098,1712099,1712100],"delay":778.6} +{"session_id":"sess-8d9f4a41f50a","input_length":6266,"output_length":222,"hash_ids":[1712101,1712102,1712103,1712104,1712105,1712106,1712107,1712108,1712109,1712110,1712111,1712112,1712113],"delay":889.7} +{"session_id":"sess-8d9f4a41f50a","input_length":855,"output_length":690,"hash_ids":[1712114,1712115],"delay":609.0} +{"session_id":"sess-8d9f4a41f50a","input_length":1236,"output_length":639,"hash_ids":[1712116,1712117,1712118],"delay":1184.8} +{"session_id":"sess-8d9f4a41f50a","input_length":1521,"output_length":851,"hash_ids":[1712119,1712120,1712121],"delay":4724.6} +{"session_id":"sess-8d9f4a41f50a","input_length":828,"output_length":1799,"hash_ids":[1712122,1712123],"delay":646.1} +{"session_id":"sess-8d9f4a41f50a","input_length":1048,"output_length":1829,"hash_ids":[1712124,1712125,1712126],"delay":1040.3} +{"session_id":"sess-8d9f4a41f50a","input_length":713,"output_length":101,"hash_ids":[1712127,1712128],"delay":1518.3} +{"session_id":"sess-8d9f4a41f50a","input_length":5057,"output_length":240,"hash_ids":[1712129,1712130,1712131,1712132,1712133,1712134,1712135,1712136,1712137,1712138],"delay":436.3} +{"session_id":"sess-8d9f4a41f50a","input_length":961,"output_length":295,"hash_ids":[1712139,1712140],"delay":18379.4} +{"session_id":"sess-8d9f4a41f50a","input_length":363,"output_length":195,"hash_ids":[1712141],"delay":402.6} +{"session_id":"sess-8d9f4a41f50a","input_length":908,"output_length":2238,"hash_ids":[1712142,1712143],"delay":435.9} +{"session_id":"sess-8d9f4a41f50a","input_length":7670,"output_length":511,"hash_ids":[1712144,1712145,1712146,1712147,1712148,1712149,1712150,1712151,1712152,1712153,1712154,1712155,1712156,1712157,1712158],"delay":9430.4} +{"session_id":"sess-8d9f4a41f50a","input_length":5823,"output_length":281,"hash_ids":[1712159,1712160,1712161,1712162,1712163,1712164,1712165,1712166,1712167,1712168,1712169,1712170],"delay":481.5} +{"session_id":"sess-8d9f4a41f50a","input_length":2816,"output_length":188,"hash_ids":[1712171,1712172,1712173,1712174,1712175,1712176],"delay":7028.8} +{"session_id":"sess-8d9f4a41f50a","input_length":4798,"output_length":723,"hash_ids":[1712177,1712178,1712179,1712180,1712181,1712182,1712183,1712184,1712185,1712186],"delay":216.3} +{"session_id":"sess-8d9f4a41f50a","input_length":1641,"output_length":393,"hash_ids":[1712187,1712188,1712189,1712190],"delay":1299.7} +{"session_id":"sess-8d9f4a41f50a","input_length":1580,"output_length":95,"hash_ids":[1712191,1712192,1712193,1712194],"delay":447.7} +{"session_id":"sess-44afb551ab0e","input_length":57320,"output_length":65,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1716063,1716064,1716065,1716066,1716067,1716068,1716069,1716070,1716071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-44afb551ab0e","input_length":860,"output_length":649,"hash_ids":[1716072,1716073],"delay":6794.6} +{"session_id":"sess-44afb551ab0e","input_length":2523,"output_length":162,"hash_ids":[1716074,1716075,1716076,1716077,1716078],"delay":2265.3} +{"session_id":"sess-44afb551ab0e","input_length":1001,"output_length":399,"hash_ids":[1716079,1716080],"delay":3757.9} +{"session_id":"sess-44afb551ab0e","input_length":5297,"output_length":502,"hash_ids":[1716081,1716082,1716083,1716084,1716085,1716086,1716087,1716088,1716089,1716090,1716091],"delay":1397.3} +{"session_id":"sess-44afb551ab0e","input_length":598,"output_length":214,"hash_ids":[1716092,1716093],"delay":646.7} +{"session_id":"sess-44afb551ab0e","input_length":3421,"output_length":526,"hash_ids":[1716094,1716095,1716096,1716097,1716098,1716099,1716100],"delay":22593.6} +{"session_id":"sess-44afb551ab0e","input_length":1085,"output_length":767,"hash_ids":[1716101,1716102,1716103],"delay":710.9} +{"session_id":"sess-44afb551ab0e","input_length":7237,"output_length":381,"hash_ids":[1716104,1716105,1716106,1716107,1716108,1716109,1716110,1716111,1716112,1716113,1716114,1716115,1716116,1716117,1716118],"delay":8419.5} +{"session_id":"sess-44afb551ab0e","input_length":691,"output_length":606,"hash_ids":[1716119,1716120],"delay":1084.5} +{"session_id":"sess-44afb551ab0e","input_length":4408,"output_length":524,"hash_ids":[1716121,1716122,1716123,1716124,1716125,1716126,1716127,1716128,1716129],"delay":373.7} +{"session_id":"sess-44afb551ab0e","input_length":3730,"output_length":764,"hash_ids":[1716130,1716131,1716132,1716133,1716134,1716135,1716136,1716137],"delay":1317.6} +{"session_id":"sess-44afb551ab0e","input_length":276,"output_length":420,"hash_ids":[1716138],"delay":13609.8} +{"session_id":"sess-44afb551ab0e","input_length":437,"output_length":116,"hash_ids":[1716139],"delay":401.4} +{"session_id":"sess-44afb551ab0e","input_length":3978,"output_length":233,"hash_ids":[1716140,1716141,1716142,1716143,1716144,1716145,1716146,1716147],"delay":467.4} +{"session_id":"sess-44afb551ab0e","input_length":911,"output_length":240,"hash_ids":[1716148,1716149],"delay":3499.0} +{"session_id":"sess-44afb551ab0e","input_length":206,"output_length":314,"hash_ids":[1716150],"delay":419.9} +{"session_id":"sess-44afb551ab0e","input_length":1916,"output_length":849,"hash_ids":[1716151,1716152,1716153,1716154],"delay":672.4} +{"session_id":"sess-44afb551ab0e","input_length":4631,"output_length":39,"hash_ids":[1716155,1716156,1716157,1716158,1716159,1716160,1716161,1716162,1716163,1716164],"delay":1067.2} +{"session_id":"sess-44afb551ab0e","input_length":78,"output_length":964,"hash_ids":[1716165],"delay":587.8} +{"session_id":"sess-44afb551ab0e","input_length":461,"output_length":863,"hash_ids":[1716166],"delay":471.2} +{"session_id":"sess-44afb551ab0e","input_length":1716,"output_length":237,"hash_ids":[1716167,1716168,1716169,1716170],"delay":166.8} +{"session_id":"sess-939346166552","input_length":56880,"output_length":55,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1720063,1720064,1720065,1720066,1720067,1720068,1720069,1720070,1720071],"timestamp":0.0,"group_id":1} +{"session_id":"sess-939346166552","input_length":2334,"output_length":116,"hash_ids":[1720072,1720073,1720074,1720075,1720076],"delay":217.0} +{"session_id":"sess-939346166552","input_length":7936,"output_length":79,"hash_ids":[1720077,1720078,1720079,1720080,1720081,1720082,1720083,1720084,1720085,1720086,1720087,1720088,1720089,1720090,1720091,1720092],"delay":2428.6} +{"session_id":"sess-939346166552","input_length":467,"output_length":192,"hash_ids":[1720093],"delay":9796.5} +{"session_id":"sess-939346166552","input_length":4190,"output_length":124,"hash_ids":[1720094,1720095,1720096,1720097,1720098,1720099,1720100,1720101,1720102],"delay":3012.1} +{"session_id":"sess-939346166552","input_length":1098,"output_length":203,"hash_ids":[1720103,1720104,1720105],"delay":1307.3} +{"session_id":"sess-939346166552","input_length":3494,"output_length":324,"hash_ids":[1720106,1720107,1720108,1720109,1720110,1720111,1720112],"delay":829.9} +{"session_id":"sess-939346166552","input_length":1583,"output_length":254,"hash_ids":[1720113,1720114,1720115,1720116],"delay":155.8} +{"session_id":"sess-939346166552","input_length":2525,"output_length":308,"hash_ids":[1720117,1720118,1720119,1720120,1720121],"delay":21563.4} +{"session_id":"sess-939346166552","input_length":2612,"output_length":456,"hash_ids":[1720122,1720123,1720124,1720125,1720126,1720127],"delay":12027.7} +{"session_id":"sess-939346166552","input_length":5598,"output_length":158,"hash_ids":[1720128,1720129,1720130,1720131,1720132,1720133,1720134,1720135,1720136,1720137,1720138],"delay":1080.1} +{"session_id":"sess-939346166552","input_length":9811,"output_length":129,"hash_ids":[1720139,1720140,1720141,1720142,1720143,1720144,1720145,1720146,1720147,1720148,1720149,1720150,1720151,1720152,1720153,1720154,1720155,1720156,1720157,1720158],"delay":10327.8} +{"session_id":"sess-939346166552","input_length":201,"output_length":85,"hash_ids":[1720159],"delay":547.8} +{"session_id":"sess-939346166552","input_length":1137,"output_length":232,"hash_ids":[1720160,1720161,1720162],"delay":485.9} +{"session_id":"sess-939346166552","input_length":266,"output_length":288,"hash_ids":[1720163],"delay":2604.0} +{"session_id":"sess-939346166552","input_length":577,"output_length":320,"hash_ids":[1720164,1720165],"delay":590.5} +{"session_id":"sess-939346166552","input_length":3386,"output_length":737,"hash_ids":[1720166,1720167,1720168,1720169,1720170,1720171,1720172],"delay":34241.5} +{"session_id":"sess-939346166552","input_length":2516,"output_length":1858,"hash_ids":[1720173,1720174,1720175,1720176,1720177],"delay":262.3} +{"session_id":"sess-939346166552","input_length":1073,"output_length":1224,"hash_ids":[1720178,1720179,1720180],"delay":75.5} +{"session_id":"sess-939346166552","input_length":8158,"output_length":301,"hash_ids":[1720181,1720182,1720183,1720184,1720185,1720186,1720187,1720188,1720189,1720190,1720191,1720192,1720193,1720194,1720195,1720196],"delay":5148.6} +{"session_id":"sess-939346166552","input_length":1634,"output_length":1586,"hash_ids":[1720197,1720198,1720199,1720200],"delay":182.2} +{"session_id":"sess-939346166552","input_length":1002,"output_length":230,"hash_ids":[1720201,1720202],"delay":2331.9} +{"session_id":"sess-addd6ad2e88f","input_length":63367,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1724063,1724064,1724065,1724066,1724067,1724068,1724069,1724070,1724071,1724072,1724073,1724074,1724075,1724076,1724077,1724078,1724079,1724080,1724081,1724082,1724083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-addd6ad2e88f","input_length":2265,"output_length":255,"hash_ids":[1724084,1724085,1724086,1724087,1724088],"delay":1024.7} +{"session_id":"sess-addd6ad2e88f","input_length":612,"output_length":198,"hash_ids":[1724089,1724090],"delay":419.3} +{"session_id":"sess-addd6ad2e88f","input_length":6196,"output_length":350,"hash_ids":[1724091,1724092,1724093,1724094,1724095,1724096,1724097,1724098,1724099,1724100,1724101,1724102,1724103],"delay":809.2} +{"session_id":"sess-addd6ad2e88f","input_length":1204,"output_length":279,"hash_ids":[1724104,1724105,1724106],"delay":551.9} +{"session_id":"sess-addd6ad2e88f","input_length":2661,"output_length":287,"hash_ids":[1724107,1724108,1724109,1724110,1724111,1724112],"delay":592.7} +{"session_id":"sess-693bf50f4c35","input_length":54115,"output_length":791,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1728063,1728064,1728065],"timestamp":0.0,"group_id":12} +{"session_id":"sess-693bf50f4c35","input_length":6632,"output_length":157,"hash_ids":[1728066,1728067,1728068,1728069,1728070,1728071,1728072,1728073,1728074,1728075,1728076,1728077,1728078],"delay":746.1} +{"session_id":"sess-693bf50f4c35","input_length":1602,"output_length":112,"hash_ids":[1728079,1728080,1728081,1728082],"delay":1019.1} +{"session_id":"sess-693bf50f4c35","input_length":918,"output_length":1237,"hash_ids":[1728083,1728084],"delay":1480.5} +{"session_id":"sess-693bf50f4c35","input_length":7555,"output_length":320,"hash_ids":[1728085,1728086,1728087,1728088,1728089,1728090,1728091,1728092,1728093,1728094,1728095,1728096,1728097,1728098,1728099],"delay":5277.7} +{"session_id":"sess-693bf50f4c35","input_length":5402,"output_length":794,"hash_ids":[1728100,1728101,1728102,1728103,1728104,1728105,1728106,1728107,1728108,1728109,1728110],"delay":1559.4} +{"session_id":"sess-693bf50f4c35","input_length":109,"output_length":171,"hash_ids":[1728111],"delay":8353.2} +{"session_id":"sess-693bf50f4c35","input_length":1080,"output_length":397,"hash_ids":[1728112,1728113,1728114],"delay":15469.7} +{"session_id":"sess-693bf50f4c35","input_length":802,"output_length":1397,"hash_ids":[1728115,1728116],"delay":377.5} +{"session_id":"sess-693bf50f4c35","input_length":1408,"output_length":78,"hash_ids":[1728117,1728118,1728119],"delay":723.4} +{"session_id":"sess-693bf50f4c35","input_length":1275,"output_length":1107,"hash_ids":[1728120,1728121,1728122],"delay":228.8} +{"session_id":"sess-693bf50f4c35","input_length":3098,"output_length":346,"hash_ids":[1728123,1728124,1728125,1728126,1728127,1728128,1728129],"delay":848.6} +{"session_id":"sess-693bf50f4c35","input_length":3728,"output_length":452,"hash_ids":[1728130,1728131,1728132,1728133,1728134,1728135,1728136,1728137],"delay":8634.3} +{"session_id":"sess-693bf50f4c35","input_length":1666,"output_length":278,"hash_ids":[1728138,1728139,1728140,1728141],"delay":1004.9} +{"session_id":"sess-693bf50f4c35","input_length":306,"output_length":1013,"hash_ids":[1728142],"delay":2019.3} +{"session_id":"sess-693bf50f4c35","input_length":1662,"output_length":95,"hash_ids":[1728143,1728144,1728145,1728146],"delay":30309.4} +{"session_id":"sess-693bf50f4c35","input_length":1274,"output_length":315,"hash_ids":[1728147,1728148,1728149],"delay":3633.3} +{"session_id":"sess-693bf50f4c35","input_length":6965,"output_length":1640,"hash_ids":[1728150,1728151,1728152,1728153,1728154,1728155,1728156,1728157,1728158,1728159,1728160,1728161,1728162,1728163],"delay":699.4} +{"session_id":"sess-693bf50f4c35","input_length":288,"output_length":531,"hash_ids":[1728164],"delay":11763.4} +{"session_id":"sess-693bf50f4c35","input_length":3162,"output_length":635,"hash_ids":[1728165,1728166,1728167,1728168,1728169,1728170,1728171],"delay":167.7} +{"session_id":"sess-693bf50f4c35","input_length":1100,"output_length":112,"hash_ids":[1728172,1728173,1728174],"delay":3913.7} +{"session_id":"sess-693bf50f4c35","input_length":426,"output_length":198,"hash_ids":[1728175],"delay":543.8} +{"session_id":"sess-693bf50f4c35","input_length":5859,"output_length":1257,"hash_ids":[1728176,1728177,1728178,1728179,1728180,1728181,1728182,1728183,1728184,1728185,1728186,1728187],"delay":298.1} +{"session_id":"sess-09a6fa41cf3f","input_length":52839,"output_length":52,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,1732063],"timestamp":0.0,"group_id":39} +{"session_id":"sess-09a6fa41cf3f","input_length":3549,"output_length":846,"hash_ids":[1732064,1732065,1732066,1732067,1732068,1732069,1732070],"delay":171.0} +{"session_id":"sess-09a6fa41cf3f","input_length":206,"output_length":236,"hash_ids":[1732071],"delay":1368.6} +{"session_id":"sess-09a6fa41cf3f","input_length":2631,"output_length":263,"hash_ids":[1732072,1732073,1732074,1732075,1732076,1732077],"delay":13665.0} +{"session_id":"sess-09a6fa41cf3f","input_length":1069,"output_length":146,"hash_ids":[1732078,1732079,1732080],"delay":455.4} +{"session_id":"sess-f3fbef980a4c","input_length":56353,"output_length":115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1736063,1736064,1736065,1736066,1736067,1736068,1736069,1736070],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f3fbef980a4c","input_length":653,"output_length":1277,"hash_ids":[1736071,1736072],"delay":9949.5} +{"session_id":"sess-f3fbef980a4c","input_length":1580,"output_length":194,"hash_ids":[1736073,1736074,1736075,1736076],"delay":9125.5} +{"session_id":"sess-f3fbef980a4c","input_length":3676,"output_length":581,"hash_ids":[1736077,1736078,1736079,1736080,1736081,1736082,1736083,1736084],"delay":18273.9} +{"session_id":"sess-f3fbef980a4c","input_length":1788,"output_length":266,"hash_ids":[1736085,1736086,1736087,1736088],"delay":3668.1} +{"session_id":"sess-caf9073bab45","input_length":61512,"output_length":98,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1740063,1740064,1740065,1740066,1740067,1740068,1740069,1740070,1740071,1740072,1740073,1740074,1740075,1740076,1740077,1740078,1740079,1740080],"timestamp":0.0,"group_id":1} +{"session_id":"sess-caf9073bab45","input_length":3019,"output_length":475,"hash_ids":[1740081,1740082,1740083,1740084,1740085,1740086],"delay":2794.1} +{"session_id":"sess-caf9073bab45","input_length":468,"output_length":229,"hash_ids":[1740087],"delay":2771.6} +{"session_id":"sess-caf9073bab45","input_length":5407,"output_length":167,"hash_ids":[1740088,1740089,1740090,1740091,1740092,1740093,1740094,1740095,1740096,1740097,1740098],"delay":1210.5} +{"session_id":"sess-caf9073bab45","input_length":1059,"output_length":1028,"hash_ids":[1740099,1740100,1740101],"delay":1741.6} +{"session_id":"sess-caf9073bab45","input_length":3379,"output_length":244,"hash_ids":[1740102,1740103,1740104,1740105,1740106,1740107,1740108],"delay":16109.0} +{"session_id":"sess-caf9073bab45","input_length":456,"output_length":72,"hash_ids":[1740109],"delay":81.0} +{"session_id":"sess-caf9073bab45","input_length":8755,"output_length":332,"hash_ids":[1740110,1740111,1740112,1740113,1740114,1740115,1740116,1740117,1740118,1740119,1740120,1740121,1740122,1740123,1740124,1740125,1740126,1740127],"delay":719.5} +{"session_id":"sess-caf9073bab45","input_length":650,"output_length":289,"hash_ids":[1740128,1740129],"delay":1601.1} +{"session_id":"sess-caf9073bab45","input_length":4970,"output_length":153,"hash_ids":[1740130,1740131,1740132,1740133,1740134,1740135,1740136,1740137,1740138,1740139],"delay":14730.3} +{"session_id":"sess-caf9073bab45","input_length":5397,"output_length":141,"hash_ids":[1740140,1740141,1740142,1740143,1740144,1740145,1740146,1740147,1740148,1740149,1740150],"delay":664.0} +{"session_id":"sess-caf9073bab45","input_length":225,"output_length":603,"hash_ids":[1740151],"delay":581.8} +{"session_id":"sess-caf9073bab45","input_length":256,"output_length":229,"hash_ids":[1740152],"delay":1190.9} +{"session_id":"sess-caf9073bab45","input_length":526,"output_length":368,"hash_ids":[1740153,1740154],"delay":1538.0} +{"session_id":"sess-caf9073bab45","input_length":5843,"output_length":42,"hash_ids":[1740155,1740156,1740157,1740158,1740159,1740160,1740161,1740162,1740163,1740164,1740165,1740166],"delay":460.8} +{"session_id":"sess-caf9073bab45","input_length":828,"output_length":280,"hash_ids":[1740167,1740168],"delay":140.2} +{"session_id":"sess-caf9073bab45","input_length":286,"output_length":418,"hash_ids":[1740169],"delay":26183.8} +{"session_id":"sess-caf9073bab45","input_length":1883,"output_length":794,"hash_ids":[1740170,1740171,1740172,1740173],"delay":12274.5} +{"session_id":"sess-caf9073bab45","input_length":1072,"output_length":1108,"hash_ids":[1740174,1740175,1740176],"delay":306.3} +{"session_id":"sess-caf9073bab45","input_length":2555,"output_length":115,"hash_ids":[1740177,1740178,1740179,1740180,1740181],"delay":1890.8} +{"session_id":"sess-caf9073bab45","input_length":429,"output_length":122,"hash_ids":[1740182],"delay":1118.9} +{"session_id":"sess-caf9073bab45","input_length":623,"output_length":996,"hash_ids":[1740183,1740184],"delay":4162.3} +{"session_id":"sess-caf9073bab45","input_length":1280,"output_length":186,"hash_ids":[1740185,1740186,1740187],"delay":1778.6} +{"session_id":"sess-caf9073bab45","input_length":3554,"output_length":181,"hash_ids":[1740188,1740189,1740190,1740191,1740192,1740193,1740194],"delay":8577.7} +{"session_id":"sess-caf9073bab45","input_length":2176,"output_length":550,"hash_ids":[1740195,1740196,1740197,1740198,1740199],"delay":2311.3} +{"session_id":"sess-caf9073bab45","input_length":651,"output_length":1003,"hash_ids":[1740200,1740201],"delay":611.0} +{"session_id":"sess-caf9073bab45","input_length":1269,"output_length":444,"hash_ids":[1740202,1740203,1740204],"delay":2279.9} +{"session_id":"sess-2566dbfca4ab","input_length":69474,"output_length":557,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1744063,1744064,1744065,1744066,1744067,1744068,1744069,1744070,1744071,1744072,1744073,1744074,1744075,1744076,1744077,1744078,1744079,1744080,1744081,1744082,1744083,1744084,1744085,1744086,1744087,1744088,1744089,1744090,1744091,1744092,1744093,1744094,1744095],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2566dbfca4ab","input_length":915,"output_length":153,"hash_ids":[1744096,1744097],"delay":333.7} +{"session_id":"sess-2566dbfca4ab","input_length":405,"output_length":1656,"hash_ids":[1744098],"delay":1505.0} +{"session_id":"sess-2566dbfca4ab","input_length":1501,"output_length":390,"hash_ids":[1744099,1744100,1744101],"delay":49163.9} +{"session_id":"sess-2566dbfca4ab","input_length":1193,"output_length":159,"hash_ids":[1744102,1744103,1744104],"delay":1931.3} +{"session_id":"sess-2566dbfca4ab","input_length":1352,"output_length":1146,"hash_ids":[1744105,1744106,1744107],"delay":969.3} +{"session_id":"sess-2566dbfca4ab","input_length":176,"output_length":130,"hash_ids":[1744108],"delay":432.2} +{"session_id":"sess-2566dbfca4ab","input_length":3281,"output_length":159,"hash_ids":[1744109,1744110,1744111,1744112,1744113,1744114,1744115],"delay":302.8} +{"session_id":"sess-2566dbfca4ab","input_length":1319,"output_length":75,"hash_ids":[1744116,1744117,1744118],"delay":1934.5} +{"session_id":"sess-2566dbfca4ab","input_length":681,"output_length":35,"hash_ids":[1744119,1744120],"delay":14114.2} +{"session_id":"sess-2566dbfca4ab","input_length":799,"output_length":403,"hash_ids":[1744121,1744122],"delay":1036.1} +{"session_id":"sess-2566dbfca4ab","input_length":2060,"output_length":1645,"hash_ids":[1744123,1744124,1744125,1744126,1744127],"delay":22437.2} +{"session_id":"sess-2566dbfca4ab","input_length":3375,"output_length":901,"hash_ids":[1744128,1744129,1744130,1744131,1744132,1744133,1744134],"delay":380.0} +{"session_id":"sess-2566dbfca4ab","input_length":2932,"output_length":442,"hash_ids":[1744135,1744136,1744137,1744138,1744139,1744140],"delay":17378.7} +{"session_id":"sess-2566dbfca4ab","input_length":1449,"output_length":999,"hash_ids":[1744141,1744142,1744143],"delay":1543.6} +{"session_id":"sess-2566dbfca4ab","input_length":4698,"output_length":949,"hash_ids":[1744144,1744145,1744146,1744147,1744148,1744149,1744150,1744151,1744152,1744153],"delay":10480.5} +{"session_id":"sess-2566dbfca4ab","input_length":1797,"output_length":969,"hash_ids":[1744154,1744155,1744156,1744157],"delay":851.7} +{"session_id":"sess-2566dbfca4ab","input_length":3787,"output_length":76,"hash_ids":[1744158,1744159,1744160,1744161,1744162,1744163,1744164,1744165],"delay":720.0} +{"session_id":"sess-2566dbfca4ab","input_length":1965,"output_length":466,"hash_ids":[1744166,1744167,1744168,1744169],"delay":837.5} +{"session_id":"sess-2566dbfca4ab","input_length":4126,"output_length":491,"hash_ids":[1744170,1744171,1744172,1744173,1744174,1744175,1744176,1744177,1744178],"delay":846.5} +{"session_id":"sess-2566dbfca4ab","input_length":610,"output_length":899,"hash_ids":[1744179,1744180],"delay":390.1} +{"session_id":"sess-2566dbfca4ab","input_length":8429,"output_length":1292,"hash_ids":[1744181,1744182,1744183,1744184,1744185,1744186,1744187,1744188,1744189,1744190,1744191,1744192,1744193,1744194,1744195,1744196,1744197],"delay":928.2} +{"session_id":"sess-ecdeb944f2ac","input_length":53556,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1748063,1748064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ecdeb944f2ac","input_length":3492,"output_length":216,"hash_ids":[1748065,1748066,1748067,1748068,1748069,1748070,1748071],"delay":19909.0} +{"session_id":"sess-ecdeb944f2ac","input_length":6673,"output_length":52,"hash_ids":[1748072,1748073,1748074,1748075,1748076,1748077,1748078,1748079,1748080,1748081,1748082,1748083,1748084,1748085],"delay":2597.0} +{"session_id":"sess-ecdeb944f2ac","input_length":163,"output_length":240,"hash_ids":[1748086],"delay":1643.6} +{"session_id":"sess-ecdeb944f2ac","input_length":3326,"output_length":147,"hash_ids":[1748087,1748088,1748089,1748090,1748091,1748092,1748093],"delay":12330.5} +{"session_id":"sess-ecdeb944f2ac","input_length":808,"output_length":362,"hash_ids":[1748094,1748095],"delay":1651.1} +{"session_id":"sess-ecdeb944f2ac","input_length":1162,"output_length":794,"hash_ids":[1748096,1748097,1748098],"delay":482.2} +{"session_id":"sess-ecdeb944f2ac","input_length":2448,"output_length":587,"hash_ids":[1748099,1748100,1748101,1748102,1748103],"delay":3496.0} +{"session_id":"sess-ecdeb944f2ac","input_length":576,"output_length":325,"hash_ids":[1748104,1748105],"delay":613.6} +{"session_id":"sess-ecdeb944f2ac","input_length":1289,"output_length":477,"hash_ids":[1748106,1748107,1748108],"delay":994.6} +{"session_id":"sess-ecdeb944f2ac","input_length":3466,"output_length":55,"hash_ids":[1748109,1748110,1748111,1748112,1748113,1748114,1748115],"delay":20579.5} +{"session_id":"sess-ecdeb944f2ac","input_length":773,"output_length":94,"hash_ids":[1748116,1748117],"delay":502.4} +{"session_id":"sess-ecdeb944f2ac","input_length":1248,"output_length":354,"hash_ids":[1748118,1748119,1748120],"delay":1587.2} +{"session_id":"sess-ecdeb944f2ac","input_length":6930,"output_length":135,"hash_ids":[1748121,1748122,1748123,1748124,1748125,1748126,1748127,1748128,1748129,1748130,1748131,1748132,1748133,1748134],"delay":787.1} +{"session_id":"sess-ecdeb944f2ac","input_length":621,"output_length":439,"hash_ids":[1748135,1748136],"delay":13510.7} +{"session_id":"sess-ecdeb944f2ac","input_length":551,"output_length":2035,"hash_ids":[1748137,1748138],"delay":581.0} +{"session_id":"sess-ecdeb944f2ac","input_length":2523,"output_length":566,"hash_ids":[1748139,1748140,1748141,1748142,1748143],"delay":1731.1} +{"session_id":"sess-ecdeb944f2ac","input_length":2818,"output_length":112,"hash_ids":[1748144,1748145,1748146,1748147,1748148,1748149],"delay":983.6} +{"session_id":"sess-ecdeb944f2ac","input_length":2640,"output_length":241,"hash_ids":[1748150,1748151,1748152,1748153,1748154,1748155],"delay":744.2} +{"session_id":"sess-ecdeb944f2ac","input_length":2233,"output_length":476,"hash_ids":[1748156,1748157,1748158,1748159,1748160],"delay":1851.5} +{"session_id":"sess-ecdeb944f2ac","input_length":2518,"output_length":99,"hash_ids":[1748161,1748162,1748163,1748164,1748165],"delay":481.0} +{"session_id":"sess-ecdeb944f2ac","input_length":210,"output_length":519,"hash_ids":[1748166],"delay":12299.9} +{"session_id":"sess-ecdeb944f2ac","input_length":4148,"output_length":128,"hash_ids":[1748167,1748168,1748169,1748170,1748171,1748172,1748173,1748174,1748175],"delay":599.3} +{"session_id":"sess-ecdeb944f2ac","input_length":7016,"output_length":63,"hash_ids":[1748176,1748177,1748178,1748179,1748180,1748181,1748182,1748183,1748184,1748185,1748186,1748187,1748188,1748189],"delay":17540.4} +{"session_id":"sess-ecdeb944f2ac","input_length":3019,"output_length":193,"hash_ids":[1748190,1748191,1748192,1748193,1748194,1748195],"delay":805.1} +{"session_id":"sess-ecdeb944f2ac","input_length":1832,"output_length":532,"hash_ids":[1748196,1748197,1748198,1748199],"delay":181.5} +{"session_id":"sess-ecdeb944f2ac","input_length":1109,"output_length":1022,"hash_ids":[1748200,1748201,1748202],"delay":19607.4} +{"session_id":"sess-489e21d1810d","input_length":57874,"output_length":1042,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1752063,1752064,1752065,1752066,1752067,1752068,1752069,1752070,1752071,1752072,1752073],"timestamp":0.0,"group_id":2} +{"session_id":"sess-489e21d1810d","input_length":330,"output_length":116,"hash_ids":[1752074],"delay":34686.4} +{"session_id":"sess-489e21d1810d","input_length":1179,"output_length":268,"hash_ids":[1752075,1752076,1752077],"delay":42430.0} +{"session_id":"sess-489e21d1810d","input_length":1745,"output_length":856,"hash_ids":[1752078,1752079,1752080,1752081],"delay":1487.3} +{"session_id":"sess-489e21d1810d","input_length":1203,"output_length":856,"hash_ids":[1752082,1752083,1752084],"delay":5129.0} +{"session_id":"sess-489e21d1810d","input_length":648,"output_length":110,"hash_ids":[1752085,1752086],"delay":1283.9} +{"session_id":"sess-489e21d1810d","input_length":258,"output_length":599,"hash_ids":[1752087],"delay":2199.4} +{"session_id":"sess-489e21d1810d","input_length":364,"output_length":255,"hash_ids":[1752088],"delay":16065.9} +{"session_id":"sess-fb847340b93d","input_length":55086,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1756063,1756064,1756065,1756066,1756067],"timestamp":0.0,"group_id":3} +{"session_id":"sess-fb847340b93d","input_length":3302,"output_length":137,"hash_ids":[1756068,1756069,1756070,1756071,1756072,1756073,1756074],"delay":1019.7} +{"session_id":"sess-fb847340b93d","input_length":637,"output_length":249,"hash_ids":[1756075,1756076],"delay":2197.6} +{"session_id":"sess-fb847340b93d","input_length":1902,"output_length":1030,"hash_ids":[1756077,1756078,1756079,1756080],"delay":15907.6} +{"session_id":"sess-fb847340b93d","input_length":1991,"output_length":135,"hash_ids":[1756081,1756082,1756083,1756084],"delay":1460.0} +{"session_id":"sess-fb847340b93d","input_length":5950,"output_length":193,"hash_ids":[1756085,1756086,1756087,1756088,1756089,1756090,1756091,1756092,1756093,1756094,1756095,1756096],"delay":4217.9} +{"session_id":"sess-fb847340b93d","input_length":4755,"output_length":224,"hash_ids":[1756097,1756098,1756099,1756100,1756101,1756102,1756103,1756104,1756105,1756106],"delay":4340.8} +{"session_id":"sess-fb847340b93d","input_length":1500,"output_length":378,"hash_ids":[1756107,1756108,1756109],"delay":59174.1} +{"session_id":"sess-fb847340b93d","input_length":7620,"output_length":877,"hash_ids":[1756110,1756111,1756112,1756113,1756114,1756115,1756116,1756117,1756118,1756119,1756120,1756121,1756122,1756123,1756124],"delay":2816.2} +{"session_id":"sess-fb847340b93d","input_length":3192,"output_length":265,"hash_ids":[1756125,1756126,1756127,1756128,1756129,1756130,1756131],"delay":13112.3} +{"session_id":"sess-fb847340b93d","input_length":278,"output_length":115,"hash_ids":[1756132],"delay":1561.2} +{"session_id":"sess-fb847340b93d","input_length":649,"output_length":270,"hash_ids":[1756133,1756134],"delay":2117.7} +{"session_id":"sess-fb847340b93d","input_length":2812,"output_length":136,"hash_ids":[1756135,1756136,1756137,1756138,1756139,1756140],"delay":661.6} +{"session_id":"sess-fb847340b93d","input_length":2882,"output_length":1239,"hash_ids":[1756141,1756142,1756143,1756144,1756145,1756146],"delay":2177.5} +{"session_id":"sess-fb847340b93d","input_length":2684,"output_length":30,"hash_ids":[1756147,1756148,1756149,1756150,1756151,1756152],"delay":1394.7} +{"session_id":"sess-fb847340b93d","input_length":3964,"output_length":1211,"hash_ids":[1756153,1756154,1756155,1756156,1756157,1756158,1756159,1756160],"delay":1142.5} +{"session_id":"sess-fb847340b93d","input_length":77,"output_length":327,"hash_ids":[1756161],"delay":751.9} +{"session_id":"sess-fb847340b93d","input_length":2171,"output_length":198,"hash_ids":[1756162,1756163,1756164,1756165,1756166],"delay":9614.5} +{"session_id":"sess-fb847340b93d","input_length":236,"output_length":320,"hash_ids":[1756167],"delay":1228.9} +{"session_id":"sess-fb847340b93d","input_length":643,"output_length":401,"hash_ids":[1756168,1756169],"delay":3254.2} +{"session_id":"sess-fb847340b93d","input_length":769,"output_length":558,"hash_ids":[1756170,1756171],"delay":4013.1} +{"session_id":"sess-fb847340b93d","input_length":540,"output_length":470,"hash_ids":[1756172,1756173],"delay":11947.6} +{"session_id":"sess-e76d37434895","input_length":52792,"output_length":574,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1760063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e76d37434895","input_length":687,"output_length":135,"hash_ids":[1760064,1760065],"delay":2109.4} +{"session_id":"sess-e76d37434895","input_length":8041,"output_length":1079,"hash_ids":[1760066,1760067,1760068,1760069,1760070,1760071,1760072,1760073,1760074,1760075,1760076,1760077,1760078,1760079,1760080,1760081],"delay":895.9} +{"session_id":"sess-e76d37434895","input_length":3195,"output_length":425,"hash_ids":[1760082,1760083,1760084,1760085,1760086,1760087,1760088],"delay":529.2} +{"session_id":"sess-e76d37434895","input_length":3598,"output_length":647,"hash_ids":[1760089,1760090,1760091,1760092,1760093,1760094,1760095,1760096],"delay":895.9} +{"session_id":"sess-e76d37434895","input_length":299,"output_length":95,"hash_ids":[1760097],"delay":21663.8} +{"session_id":"sess-e76d37434895","input_length":1552,"output_length":719,"hash_ids":[1760098,1760099,1760100,1760101],"delay":736.0} +{"session_id":"sess-e76d37434895","input_length":1256,"output_length":55,"hash_ids":[1760102,1760103,1760104],"delay":9355.6} +{"session_id":"sess-e76d37434895","input_length":683,"output_length":1085,"hash_ids":[1760105,1760106],"delay":2531.0} +{"session_id":"sess-e76d37434895","input_length":574,"output_length":306,"hash_ids":[1760107,1760108],"delay":649.4} +{"session_id":"sess-e76d37434895","input_length":1435,"output_length":296,"hash_ids":[1760109,1760110,1760111],"delay":46333.0} +{"session_id":"sess-e76d37434895","input_length":221,"output_length":572,"hash_ids":[1760112],"delay":1702.8} +{"session_id":"sess-e76d37434895","input_length":1179,"output_length":275,"hash_ids":[1760113,1760114,1760115],"delay":289.9} +{"session_id":"sess-e76d37434895","input_length":3301,"output_length":284,"hash_ids":[1760116,1760117,1760118,1760119,1760120,1760121,1760122],"delay":1042.4} +{"session_id":"sess-e76d37434895","input_length":837,"output_length":755,"hash_ids":[1760123,1760124],"delay":637.0} +{"session_id":"sess-e76d37434895","input_length":670,"output_length":1117,"hash_ids":[1760125,1760126],"delay":2493.7} +{"session_id":"sess-e76d37434895","input_length":2723,"output_length":360,"hash_ids":[1760127,1760128,1760129,1760130,1760131,1760132],"delay":3881.4} +{"session_id":"sess-e76d37434895","input_length":300,"output_length":81,"hash_ids":[1760133],"delay":211.5} +{"session_id":"sess-e76d37434895","input_length":738,"output_length":312,"hash_ids":[1760134,1760135],"delay":171.0} +{"session_id":"sess-ab53d3290ad3","input_length":64390,"output_length":526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1764063,1764064,1764065,1764066,1764067,1764068,1764069,1764070,1764071,1764072,1764073,1764074,1764075,1764076,1764077,1764078,1764079,1764080,1764081,1764082,1764083,1764084,1764085],"timestamp":0.0,"group_id":7} +{"session_id":"sess-ab53d3290ad3","input_length":668,"output_length":333,"hash_ids":[1764086,1764087],"delay":7079.5} +{"session_id":"sess-ab53d3290ad3","input_length":1354,"output_length":630,"hash_ids":[1764088,1764089,1764090],"delay":20905.3} +{"session_id":"sess-ab53d3290ad3","input_length":803,"output_length":157,"hash_ids":[1764091,1764092],"delay":1377.8} +{"session_id":"sess-ab53d3290ad3","input_length":222,"output_length":51,"hash_ids":[1764093],"delay":5348.2} +{"session_id":"sess-ab53d3290ad3","input_length":1761,"output_length":666,"hash_ids":[1764094,1764095,1764096,1764097],"delay":7167.4} +{"session_id":"sess-ab53d3290ad3","input_length":4722,"output_length":469,"hash_ids":[1764098,1764099,1764100,1764101,1764102,1764103,1764104,1764105,1764106,1764107],"delay":20420.7} +{"session_id":"sess-ab53d3290ad3","input_length":2926,"output_length":234,"hash_ids":[1764108,1764109,1764110,1764111,1764112,1764113],"delay":2403.5} +{"session_id":"sess-ab53d3290ad3","input_length":1952,"output_length":193,"hash_ids":[1764114,1764115,1764116,1764117],"delay":555.5} +{"session_id":"sess-ab53d3290ad3","input_length":2205,"output_length":95,"hash_ids":[1764118,1764119,1764120,1764121,1764122],"delay":633.4} +{"session_id":"sess-ab53d3290ad3","input_length":1284,"output_length":211,"hash_ids":[1764123,1764124,1764125],"delay":12543.8} +{"session_id":"sess-ab53d3290ad3","input_length":92,"output_length":319,"hash_ids":[1764126],"delay":2064.2} +{"session_id":"sess-ab53d3290ad3","input_length":1492,"output_length":287,"hash_ids":[1764127,1764128,1764129],"delay":737.6} +{"session_id":"sess-ab53d3290ad3","input_length":624,"output_length":62,"hash_ids":[1764130,1764131],"delay":361.6} +{"session_id":"sess-ab53d3290ad3","input_length":132,"output_length":337,"hash_ids":[1764132],"delay":1088.6} +{"session_id":"sess-ab53d3290ad3","input_length":587,"output_length":299,"hash_ids":[1764133,1764134],"delay":489.2} +{"session_id":"sess-ab53d3290ad3","input_length":1926,"output_length":111,"hash_ids":[1764135,1764136,1764137,1764138],"delay":540.0} +{"session_id":"sess-ab53d3290ad3","input_length":1548,"output_length":599,"hash_ids":[1764139,1764140,1764141,1764142],"delay":943.8} +{"session_id":"sess-ab53d3290ad3","input_length":1099,"output_length":159,"hash_ids":[1764143,1764144,1764145],"delay":245.0} +{"session_id":"sess-ab53d3290ad3","input_length":5818,"output_length":317,"hash_ids":[1764146,1764147,1764148,1764149,1764150,1764151,1764152,1764153,1764154,1764155,1764156,1764157],"delay":27062.3} +{"session_id":"sess-ab53d3290ad3","input_length":1208,"output_length":1423,"hash_ids":[1764158,1764159,1764160],"delay":561.8} +{"session_id":"sess-ab53d3290ad3","input_length":196,"output_length":70,"hash_ids":[1764161],"delay":23810.6} +{"session_id":"sess-ab53d3290ad3","input_length":753,"output_length":324,"hash_ids":[1764162,1764163],"delay":443.3} +{"session_id":"sess-ab53d3290ad3","input_length":2406,"output_length":359,"hash_ids":[1764164,1764165,1764166,1764167,1764168],"delay":743.5} +{"session_id":"sess-ab53d3290ad3","input_length":430,"output_length":511,"hash_ids":[1764169],"delay":1790.7} +{"session_id":"sess-ab53d3290ad3","input_length":2945,"output_length":379,"hash_ids":[1764170,1764171,1764172,1764173,1764174,1764175],"delay":252.0} +{"session_id":"sess-ab53d3290ad3","input_length":551,"output_length":1185,"hash_ids":[1764176,1764177],"delay":327.3} +{"session_id":"sess-ab53d3290ad3","input_length":769,"output_length":68,"hash_ids":[1764178,1764179],"delay":136.1} +{"session_id":"sess-ab53d3290ad3","input_length":3921,"output_length":243,"hash_ids":[1764180,1764181,1764182,1764183,1764184,1764185,1764186,1764187],"delay":401.5} +{"session_id":"sess-ab53d3290ad3","input_length":246,"output_length":321,"hash_ids":[1764188],"delay":2297.3} +{"session_id":"sess-ab53d3290ad3","input_length":1850,"output_length":559,"hash_ids":[1764189,1764190,1764191,1764192],"delay":11073.3} +{"session_id":"sess-ab53d3290ad3","input_length":3319,"output_length":352,"hash_ids":[1764193,1764194,1764195,1764196,1764197,1764198,1764199],"delay":1437.0} +{"session_id":"sess-ab53d3290ad3","input_length":2059,"output_length":1150,"hash_ids":[1764200,1764201,1764202,1764203,1764204],"delay":23003.6} +{"session_id":"sess-ab53d3290ad3","input_length":1161,"output_length":244,"hash_ids":[1764205,1764206,1764207],"delay":3318.7} +{"session_id":"sess-c7a048431dec","input_length":53195,"output_length":210,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1768063],"timestamp":0.0,"group_id":2} +{"session_id":"sess-c7a048431dec","input_length":870,"output_length":482,"hash_ids":[1768064,1768065],"delay":2566.4} +{"session_id":"sess-c7a048431dec","input_length":371,"output_length":344,"hash_ids":[1768066],"delay":1047.7} +{"session_id":"sess-c7a048431dec","input_length":4910,"output_length":420,"hash_ids":[1768067,1768068,1768069,1768070,1768071,1768072,1768073,1768074,1768075,1768076],"delay":10509.9} +{"session_id":"sess-c7a048431dec","input_length":1218,"output_length":1069,"hash_ids":[1768077,1768078,1768079],"delay":5847.9} +{"session_id":"sess-c7a048431dec","input_length":2233,"output_length":204,"hash_ids":[1768080,1768081,1768082,1768083,1768084],"delay":588.5} +{"session_id":"sess-c7a048431dec","input_length":3077,"output_length":299,"hash_ids":[1768085,1768086,1768087,1768088,1768089,1768090,1768091],"delay":517.7} +{"session_id":"sess-c7a048431dec","input_length":2961,"output_length":210,"hash_ids":[1768092,1768093,1768094,1768095,1768096,1768097],"delay":1979.4} +{"session_id":"sess-c7a048431dec","input_length":909,"output_length":200,"hash_ids":[1768098,1768099],"delay":38865.9} +{"session_id":"sess-c7a048431dec","input_length":1357,"output_length":348,"hash_ids":[1768100,1768101,1768102],"delay":688.5} +{"session_id":"sess-c7a048431dec","input_length":3151,"output_length":122,"hash_ids":[1768103,1768104,1768105,1768106,1768107,1768108,1768109],"delay":472.2} +{"session_id":"sess-c7a048431dec","input_length":5862,"output_length":1193,"hash_ids":[1768110,1768111,1768112,1768113,1768114,1768115,1768116,1768117,1768118,1768119,1768120,1768121],"delay":270.4} +{"session_id":"sess-c7a048431dec","input_length":4040,"output_length":235,"hash_ids":[1768122,1768123,1768124,1768125,1768126,1768127,1768128,1768129],"delay":1034.0} +{"session_id":"sess-c7a048431dec","input_length":762,"output_length":748,"hash_ids":[1768130,1768131],"delay":222.6} +{"session_id":"sess-c7a048431dec","input_length":5659,"output_length":177,"hash_ids":[1768132,1768133,1768134,1768135,1768136,1768137,1768138,1768139,1768140,1768141,1768142,1768143],"delay":1035.1} +{"session_id":"sess-c7a048431dec","input_length":7164,"output_length":1504,"hash_ids":[1768144,1768145,1768146,1768147,1768148,1768149,1768150,1768151,1768152,1768153,1768154,1768155,1768156,1768157],"delay":5854.5} +{"session_id":"sess-c7a048431dec","input_length":6580,"output_length":331,"hash_ids":[1768158,1768159,1768160,1768161,1768162,1768163,1768164,1768165,1768166,1768167,1768168,1768169,1768170],"delay":17716.5} +{"session_id":"sess-c7a048431dec","input_length":5223,"output_length":155,"hash_ids":[1768171,1768172,1768173,1768174,1768175,1768176,1768177,1768178,1768179,1768180,1768181],"delay":460.5} +{"session_id":"sess-c7a048431dec","input_length":537,"output_length":807,"hash_ids":[1768182,1768183],"delay":6285.5} +{"session_id":"sess-c7a048431dec","input_length":5269,"output_length":499,"hash_ids":[1768184,1768185,1768186,1768187,1768188,1768189,1768190,1768191,1768192,1768193,1768194],"delay":173.0} +{"session_id":"sess-c7a048431dec","input_length":579,"output_length":260,"hash_ids":[1768195,1768196],"delay":886.5} +{"session_id":"sess-690a5c682953","input_length":66943,"output_length":127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1772063,1772064,1772065,1772066,1772067,1772068,1772069,1772070,1772071,1772072,1772073,1772074,1772075,1772076,1772077,1772078,1772079,1772080,1772081,1772082,1772083,1772084,1772085,1772086,1772087,1772088,1772089,1772090],"timestamp":0.0,"group_id":3} +{"session_id":"sess-690a5c682953","input_length":1052,"output_length":191,"hash_ids":[1772091,1772092,1772093],"delay":1193.5} +{"session_id":"sess-690a5c682953","input_length":1437,"output_length":193,"hash_ids":[1772094,1772095,1772096],"delay":901.6} +{"session_id":"sess-690a5c682953","input_length":808,"output_length":30,"hash_ids":[1772097,1772098],"delay":586.4} +{"session_id":"sess-690a5c682953","input_length":722,"output_length":61,"hash_ids":[1772099,1772100],"delay":26643.3} +{"session_id":"sess-690a5c682953","input_length":5324,"output_length":137,"hash_ids":[1772101,1772102,1772103,1772104,1772105,1772106,1772107,1772108,1772109,1772110,1772111],"delay":16551.2} +{"session_id":"sess-690a5c682953","input_length":5022,"output_length":230,"hash_ids":[1772112,1772113,1772114,1772115,1772116,1772117,1772118,1772119,1772120,1772121],"delay":2055.9} +{"session_id":"sess-690a5c682953","input_length":743,"output_length":92,"hash_ids":[1772122,1772123],"delay":1202.8} +{"session_id":"sess-690a5c682953","input_length":2001,"output_length":1267,"hash_ids":[1772124,1772125,1772126,1772127],"delay":810.8} +{"session_id":"sess-690a5c682953","input_length":1541,"output_length":232,"hash_ids":[1772128,1772129,1772130,1772131],"delay":590.4} +{"session_id":"sess-690a5c682953","input_length":313,"output_length":115,"hash_ids":[1772132],"delay":346.1} +{"session_id":"sess-690a5c682953","input_length":444,"output_length":88,"hash_ids":[1772133],"delay":2802.4} +{"session_id":"sess-690a5c682953","input_length":3031,"output_length":261,"hash_ids":[1772134,1772135,1772136,1772137,1772138,1772139],"delay":4114.3} +{"session_id":"sess-690a5c682953","input_length":2026,"output_length":30,"hash_ids":[1772140,1772141,1772142,1772143],"delay":1434.6} +{"session_id":"sess-690a5c682953","input_length":499,"output_length":495,"hash_ids":[1772144],"delay":447.5} +{"session_id":"sess-690a5c682953","input_length":1226,"output_length":455,"hash_ids":[1772145,1772146,1772147],"delay":32855.7} +{"session_id":"sess-690a5c682953","input_length":1403,"output_length":191,"hash_ids":[1772148,1772149,1772150],"delay":959.0} +{"session_id":"sess-91764b78d6de","input_length":55448,"output_length":758,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1776063,1776064,1776065,1776066,1776067,1776068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-91764b78d6de","input_length":1387,"output_length":421,"hash_ids":[1776069,1776070,1776071],"delay":2386.8} +{"session_id":"sess-91764b78d6de","input_length":1326,"output_length":2909,"hash_ids":[1776072,1776073,1776074],"delay":2534.0} +{"session_id":"sess-91764b78d6de","input_length":3398,"output_length":138,"hash_ids":[1776075,1776076,1776077,1776078,1776079,1776080,1776081],"delay":393.9} +{"session_id":"sess-91764b78d6de","input_length":548,"output_length":212,"hash_ids":[1776082,1776083],"delay":1179.2} +{"session_id":"sess-91764b78d6de","input_length":597,"output_length":76,"hash_ids":[1776084,1776085],"delay":1057.0} +{"session_id":"sess-91764b78d6de","input_length":5064,"output_length":756,"hash_ids":[1776086,1776087,1776088,1776089,1776090,1776091,1776092,1776093,1776094,1776095],"delay":122.3} +{"session_id":"sess-91764b78d6de","input_length":1554,"output_length":267,"hash_ids":[1776096,1776097,1776098,1776099],"delay":508.2} +{"session_id":"sess-91764b78d6de","input_length":1314,"output_length":125,"hash_ids":[1776100,1776101,1776102],"delay":2767.2} +{"session_id":"sess-91764b78d6de","input_length":680,"output_length":227,"hash_ids":[1776103,1776104],"delay":2080.9} +{"session_id":"sess-91764b78d6de","input_length":5465,"output_length":373,"hash_ids":[1776105,1776106,1776107,1776108,1776109,1776110,1776111,1776112,1776113,1776114,1776115],"delay":14026.2} +{"session_id":"sess-91764b78d6de","input_length":1968,"output_length":574,"hash_ids":[1776116,1776117,1776118,1776119],"delay":3371.4} +{"session_id":"sess-91764b78d6de","input_length":147,"output_length":67,"hash_ids":[1776120],"delay":679.7} +{"session_id":"sess-5eb1c0454f5b","input_length":59374,"output_length":747,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1780063,1780064,1780065,1780066,1780067,1780068,1780069,1780070,1780071,1780072,1780073,1780074,1780075],"timestamp":0.0,"group_id":3} +{"session_id":"sess-5eb1c0454f5b","input_length":5732,"output_length":301,"hash_ids":[1780076,1780077,1780078,1780079,1780080,1780081,1780082,1780083,1780084,1780085,1780086,1780087],"delay":327.0} +{"session_id":"sess-5eb1c0454f5b","input_length":3486,"output_length":182,"hash_ids":[1780088,1780089,1780090,1780091,1780092,1780093,1780094],"delay":795.7} +{"session_id":"sess-5eb1c0454f5b","input_length":2438,"output_length":1162,"hash_ids":[1780095,1780096,1780097,1780098,1780099],"delay":841.3} +{"session_id":"sess-5eb1c0454f5b","input_length":583,"output_length":196,"hash_ids":[1780100,1780101],"delay":3295.2} +{"session_id":"sess-5eb1c0454f5b","input_length":1048,"output_length":192,"hash_ids":[1780102,1780103,1780104],"delay":1778.3} +{"session_id":"sess-5eb1c0454f5b","input_length":4306,"output_length":408,"hash_ids":[1780105,1780106,1780107,1780108,1780109,1780110,1780111,1780112,1780113],"delay":12690.2} +{"session_id":"sess-5eb1c0454f5b","input_length":2409,"output_length":415,"hash_ids":[1780114,1780115,1780116,1780117,1780118],"delay":3066.4} +{"session_id":"sess-5eb1c0454f5b","input_length":3296,"output_length":208,"hash_ids":[1780119,1780120,1780121,1780122,1780123,1780124,1780125],"delay":37806.1} +{"session_id":"sess-5eb1c0454f5b","input_length":1019,"output_length":1051,"hash_ids":[1780126,1780127],"delay":5100.2} +{"session_id":"sess-5eb1c0454f5b","input_length":7098,"output_length":69,"hash_ids":[1780128,1780129,1780130,1780131,1780132,1780133,1780134,1780135,1780136,1780137,1780138,1780139,1780140,1780141],"delay":883.8} +{"session_id":"sess-5eb1c0454f5b","input_length":2869,"output_length":145,"hash_ids":[1780142,1780143,1780144,1780145,1780146,1780147],"delay":350.2} +{"session_id":"sess-5eb1c0454f5b","input_length":1497,"output_length":106,"hash_ids":[1780148,1780149,1780150],"delay":426.5} +{"session_id":"sess-5eb1c0454f5b","input_length":3122,"output_length":178,"hash_ids":[1780151,1780152,1780153,1780154,1780155,1780156,1780157],"delay":2165.1} +{"session_id":"sess-5eb1c0454f5b","input_length":4372,"output_length":85,"hash_ids":[1780158,1780159,1780160,1780161,1780162,1780163,1780164,1780165,1780166],"delay":886.0} +{"session_id":"sess-5eb1c0454f5b","input_length":4584,"output_length":428,"hash_ids":[1780167,1780168,1780169,1780170,1780171,1780172,1780173,1780174,1780175],"delay":2346.6} +{"session_id":"sess-5eb1c0454f5b","input_length":1137,"output_length":193,"hash_ids":[1780176,1780177,1780178],"delay":382.4} +{"session_id":"sess-5eb1c0454f5b","input_length":4261,"output_length":171,"hash_ids":[1780179,1780180,1780181,1780182,1780183,1780184,1780185,1780186,1780187],"delay":2148.4} +{"session_id":"sess-5eb1c0454f5b","input_length":1812,"output_length":128,"hash_ids":[1780188,1780189,1780190,1780191],"delay":2451.3} +{"session_id":"sess-5eb1c0454f5b","input_length":1073,"output_length":325,"hash_ids":[1780192,1780193,1780194],"delay":1721.6} +{"session_id":"sess-5eb1c0454f5b","input_length":2082,"output_length":973,"hash_ids":[1780195,1780196,1780197,1780198,1780199],"delay":8499.3} +{"session_id":"sess-5eb1c0454f5b","input_length":4418,"output_length":786,"hash_ids":[1780200,1780201,1780202,1780203,1780204,1780205,1780206,1780207,1780208],"delay":651.5} +{"session_id":"sess-1a9a9242b36d","input_length":61428,"output_length":1051,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1784063,1784064,1784065,1784066,1784067,1784068,1784069,1784070,1784071,1784072,1784073,1784074,1784075,1784076,1784077,1784078,1784079],"timestamp":0.0,"group_id":4} +{"session_id":"sess-1a9a9242b36d","input_length":5068,"output_length":94,"hash_ids":[1784080,1784081,1784082,1784083,1784084,1784085,1784086,1784087,1784088,1784089],"delay":2405.3} +{"session_id":"sess-1a9a9242b36d","input_length":1945,"output_length":1033,"hash_ids":[1784090,1784091,1784092,1784093],"delay":1701.8} +{"session_id":"sess-1a9a9242b36d","input_length":1780,"output_length":182,"hash_ids":[1784094,1784095,1784096,1784097],"delay":51516.8} +{"session_id":"sess-1a9a9242b36d","input_length":2094,"output_length":109,"hash_ids":[1784098,1784099,1784100,1784101,1784102],"delay":767.9} +{"session_id":"sess-1a9a9242b36d","input_length":741,"output_length":80,"hash_ids":[1784103,1784104],"delay":622.3} +{"session_id":"sess-1a9a9242b36d","input_length":3465,"output_length":705,"hash_ids":[1784105,1784106,1784107,1784108,1784109,1784110,1784111],"delay":623.0} +{"session_id":"sess-1a9a9242b36d","input_length":985,"output_length":572,"hash_ids":[1784112,1784113],"delay":3629.1} +{"session_id":"sess-1a9a9242b36d","input_length":2794,"output_length":88,"hash_ids":[1784114,1784115,1784116,1784117,1784118,1784119],"delay":579.0} +{"session_id":"sess-1a9a9242b36d","input_length":3462,"output_length":357,"hash_ids":[1784120,1784121,1784122,1784123,1784124,1784125,1784126],"delay":188.5} +{"session_id":"sess-1a9a9242b36d","input_length":542,"output_length":161,"hash_ids":[1784127,1784128],"delay":215.1} +{"session_id":"sess-1a9a9242b36d","input_length":3036,"output_length":176,"hash_ids":[1784129,1784130,1784131,1784132,1784133,1784134],"delay":31100.3} +{"session_id":"sess-6d08d18a59a0","input_length":53924,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1788063,1788064,1788065],"timestamp":0.0,"group_id":3} +{"session_id":"sess-6d08d18a59a0","input_length":2239,"output_length":969,"hash_ids":[1788066,1788067,1788068,1788069,1788070],"delay":1758.5} +{"session_id":"sess-6d08d18a59a0","input_length":3528,"output_length":230,"hash_ids":[1788071,1788072,1788073,1788074,1788075,1788076,1788077],"delay":28108.2} +{"session_id":"sess-6d08d18a59a0","input_length":5222,"output_length":790,"hash_ids":[1788078,1788079,1788080,1788081,1788082,1788083,1788084,1788085,1788086,1788087,1788088],"delay":42679.5} +{"session_id":"sess-6d08d18a59a0","input_length":1810,"output_length":503,"hash_ids":[1788089,1788090,1788091,1788092],"delay":413.8} +{"session_id":"sess-6d08d18a59a0","input_length":1782,"output_length":2491,"hash_ids":[1788093,1788094,1788095,1788096],"delay":203.6} +{"session_id":"sess-6d08d18a59a0","input_length":838,"output_length":314,"hash_ids":[1788097,1788098],"delay":572.4} +{"session_id":"sess-6d08d18a59a0","input_length":1579,"output_length":810,"hash_ids":[1788099,1788100,1788101,1788102],"delay":1080.6} +{"session_id":"sess-6d08d18a59a0","input_length":807,"output_length":275,"hash_ids":[1788103,1788104],"delay":16651.2} +{"session_id":"sess-6d08d18a59a0","input_length":1151,"output_length":124,"hash_ids":[1788105,1788106,1788107],"delay":11298.5} +{"session_id":"sess-6d08d18a59a0","input_length":646,"output_length":50,"hash_ids":[1788108,1788109],"delay":209.0} +{"session_id":"sess-6d08d18a59a0","input_length":4020,"output_length":462,"hash_ids":[1788110,1788111,1788112,1788113,1788114,1788115,1788116,1788117],"delay":595.8} +{"session_id":"sess-6d08d18a59a0","input_length":543,"output_length":71,"hash_ids":[1788118,1788119],"delay":47174.2} +{"session_id":"sess-6d08d18a59a0","input_length":5536,"output_length":314,"hash_ids":[1788120,1788121,1788122,1788123,1788124,1788125,1788126,1788127,1788128,1788129,1788130],"delay":1167.2} +{"session_id":"sess-6d08d18a59a0","input_length":1932,"output_length":198,"hash_ids":[1788131,1788132,1788133,1788134],"delay":1153.9} +{"session_id":"sess-6d08d18a59a0","input_length":5420,"output_length":288,"hash_ids":[1788135,1788136,1788137,1788138,1788139,1788140,1788141,1788142,1788143,1788144,1788145],"delay":630.6} +{"session_id":"sess-6d08d18a59a0","input_length":2463,"output_length":172,"hash_ids":[1788146,1788147,1788148,1788149,1788150],"delay":1436.6} +{"session_id":"sess-6d08d18a59a0","input_length":1972,"output_length":919,"hash_ids":[1788151,1788152,1788153,1788154],"delay":1036.7} +{"session_id":"sess-6d08d18a59a0","input_length":265,"output_length":561,"hash_ids":[1788155],"delay":359.2} +{"session_id":"sess-6d08d18a59a0","input_length":5521,"output_length":1277,"hash_ids":[1788156,1788157,1788158,1788159,1788160,1788161,1788162,1788163,1788164,1788165,1788166],"delay":1916.3} +{"session_id":"sess-6d08d18a59a0","input_length":1685,"output_length":116,"hash_ids":[1788167,1788168,1788169,1788170],"delay":2264.4} +{"session_id":"sess-6d08d18a59a0","input_length":293,"output_length":71,"hash_ids":[1788171],"delay":78.5} +{"session_id":"sess-6d08d18a59a0","input_length":576,"output_length":277,"hash_ids":[1788172,1788173],"delay":52.9} +{"session_id":"sess-6d08d18a59a0","input_length":705,"output_length":248,"hash_ids":[1788174,1788175],"delay":371.7} +{"session_id":"sess-6d08d18a59a0","input_length":1253,"output_length":389,"hash_ids":[1788176,1788177,1788178],"delay":31704.7} +{"session_id":"sess-6d08d18a59a0","input_length":1272,"output_length":615,"hash_ids":[1788179,1788180,1788181],"delay":491.4} +{"session_id":"sess-6d08d18a59a0","input_length":491,"output_length":688,"hash_ids":[1788182],"delay":3270.8} +{"session_id":"sess-6d08d18a59a0","input_length":2832,"output_length":1244,"hash_ids":[1788183,1788184,1788185,1788186,1788187,1788188],"delay":249.4} +{"session_id":"sess-6d08d18a59a0","input_length":646,"output_length":722,"hash_ids":[1788189,1788190],"delay":271.3} +{"session_id":"sess-9c8aed99de0d","input_length":56990,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1792063,1792064,1792065,1792066,1792067,1792068,1792069,1792070,1792071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9c8aed99de0d","input_length":2254,"output_length":98,"hash_ids":[1792072,1792073,1792074,1792075,1792076],"delay":1600.1} +{"session_id":"sess-9c8aed99de0d","input_length":3475,"output_length":91,"hash_ids":[1792077,1792078,1792079,1792080,1792081,1792082,1792083],"delay":441.1} +{"session_id":"sess-9c8aed99de0d","input_length":475,"output_length":563,"hash_ids":[1792084],"delay":5829.4} +{"session_id":"sess-9c8aed99de0d","input_length":4912,"output_length":221,"hash_ids":[1792085,1792086,1792087,1792088,1792089,1792090,1792091,1792092,1792093,1792094],"delay":1624.0} +{"session_id":"sess-9c8aed99de0d","input_length":1483,"output_length":246,"hash_ids":[1792095,1792096,1792097],"delay":438.3} +{"session_id":"sess-9c8aed99de0d","input_length":2358,"output_length":60,"hash_ids":[1792098,1792099,1792100,1792101,1792102],"delay":10677.0} +{"session_id":"sess-9c8aed99de0d","input_length":4282,"output_length":1036,"hash_ids":[1792103,1792104,1792105,1792106,1792107,1792108,1792109,1792110,1792111],"delay":850.2} +{"session_id":"sess-9c8aed99de0d","input_length":1877,"output_length":500,"hash_ids":[1792112,1792113,1792114,1792115],"delay":47884.1} +{"session_id":"sess-9c8aed99de0d","input_length":3793,"output_length":170,"hash_ids":[1792116,1792117,1792118,1792119,1792120,1792121,1792122,1792123],"delay":762.8} +{"session_id":"sess-9c8aed99de0d","input_length":468,"output_length":420,"hash_ids":[1792124],"delay":144.2} +{"session_id":"sess-9c8aed99de0d","input_length":2474,"output_length":166,"hash_ids":[1792125,1792126,1792127,1792128,1792129],"delay":2515.1} +{"session_id":"sess-9c8aed99de0d","input_length":8072,"output_length":77,"hash_ids":[1792130,1792131,1792132,1792133,1792134,1792135,1792136,1792137,1792138,1792139,1792140,1792141,1792142,1792143,1792144,1792145],"delay":394.5} +{"session_id":"sess-9c8aed99de0d","input_length":495,"output_length":30,"hash_ids":[1792146],"delay":5682.3} +{"session_id":"sess-9c8aed99de0d","input_length":1465,"output_length":404,"hash_ids":[1792147,1792148,1792149],"delay":2304.0} +{"session_id":"sess-9c8aed99de0d","input_length":582,"output_length":269,"hash_ids":[1792150,1792151],"delay":1114.8} +{"session_id":"sess-9c8aed99de0d","input_length":331,"output_length":512,"hash_ids":[1792152],"delay":724.3} +{"session_id":"sess-9c8aed99de0d","input_length":1843,"output_length":181,"hash_ids":[1792153,1792154,1792155,1792156],"delay":460.5} +{"session_id":"sess-9c8aed99de0d","input_length":745,"output_length":202,"hash_ids":[1792157,1792158],"delay":20364.0} +{"session_id":"sess-9c8aed99de0d","input_length":1318,"output_length":610,"hash_ids":[1792159,1792160,1792161],"delay":924.1} +{"session_id":"sess-9c8aed99de0d","input_length":957,"output_length":225,"hash_ids":[1792162,1792163],"delay":592.4} +{"session_id":"sess-9c8aed99de0d","input_length":1784,"output_length":534,"hash_ids":[1792164,1792165,1792166,1792167],"delay":14869.0} +{"session_id":"sess-9c8aed99de0d","input_length":2733,"output_length":1435,"hash_ids":[1792168,1792169,1792170,1792171,1792172,1792173],"delay":312.6} +{"session_id":"sess-9c8aed99de0d","input_length":8046,"output_length":368,"hash_ids":[1792174,1792175,1792176,1792177,1792178,1792179,1792180,1792181,1792182,1792183,1792184,1792185,1792186,1792187,1792188,1792189],"delay":9598.1} +{"session_id":"sess-9c8aed99de0d","input_length":3922,"output_length":316,"hash_ids":[1792190,1792191,1792192,1792193,1792194,1792195,1792196,1792197],"delay":4599.5} +{"session_id":"sess-9c8aed99de0d","input_length":4321,"output_length":138,"hash_ids":[1792198,1792199,1792200,1792201,1792202,1792203,1792204,1792205,1792206],"delay":493.7} +{"session_id":"sess-2916aa133ede","input_length":59006,"output_length":238,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1796063,1796064,1796065,1796066,1796067,1796068,1796069,1796070,1796071,1796072,1796073,1796074,1796075],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2916aa133ede","input_length":592,"output_length":965,"hash_ids":[1796076,1796077],"delay":17337.7} +{"session_id":"sess-2916aa133ede","input_length":2297,"output_length":340,"hash_ids":[1796078,1796079,1796080,1796081,1796082],"delay":1475.0} +{"session_id":"sess-2916aa133ede","input_length":4978,"output_length":349,"hash_ids":[1796083,1796084,1796085,1796086,1796087,1796088,1796089,1796090,1796091,1796092],"delay":1014.0} +{"session_id":"sess-2916aa133ede","input_length":1010,"output_length":90,"hash_ids":[1796093,1796094],"delay":7277.0} +{"session_id":"sess-2916aa133ede","input_length":1904,"output_length":1548,"hash_ids":[1796095,1796096,1796097,1796098],"delay":18778.1} +{"session_id":"sess-697295c0d50a","input_length":53933,"output_length":797,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1800063,1800064,1800065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-92ba00a27738","input_length":67576,"output_length":202,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1804063,1804064,1804065,1804066,1804067,1804068,1804069,1804070,1804071,1804072,1804073,1804074,1804075,1804076,1804077,1804078,1804079,1804080,1804081,1804082,1804083,1804084,1804085,1804086,1804087,1804088,1804089,1804090,1804091],"timestamp":0.0,"group_id":0} +{"session_id":"sess-92ba00a27738","input_length":7009,"output_length":78,"hash_ids":[1804092,1804093,1804094,1804095,1804096,1804097,1804098,1804099,1804100,1804101,1804102,1804103,1804104,1804105],"delay":42427.0} +{"session_id":"sess-92ba00a27738","input_length":74,"output_length":251,"hash_ids":[1804106],"delay":574.1} +{"session_id":"sess-92ba00a27738","input_length":306,"output_length":441,"hash_ids":[1804107],"delay":10062.6} +{"session_id":"sess-92ba00a27738","input_length":2873,"output_length":214,"hash_ids":[1804108,1804109,1804110,1804111,1804112,1804113],"delay":1150.8} +{"session_id":"sess-92ba00a27738","input_length":4788,"output_length":670,"hash_ids":[1804114,1804115,1804116,1804117,1804118,1804119,1804120,1804121,1804122,1804123],"delay":535.8} +{"session_id":"sess-92ba00a27738","input_length":1138,"output_length":495,"hash_ids":[1804124,1804125,1804126],"delay":2603.0} +{"session_id":"sess-92ba00a27738","input_length":3948,"output_length":141,"hash_ids":[1804127,1804128,1804129,1804130,1804131,1804132,1804133,1804134],"delay":282.4} +{"session_id":"sess-92ba00a27738","input_length":5647,"output_length":381,"hash_ids":[1804135,1804136,1804137,1804138,1804139,1804140,1804141,1804142,1804143,1804144,1804145,1804146],"delay":25398.3} +{"session_id":"sess-92ba00a27738","input_length":4975,"output_length":325,"hash_ids":[1804147,1804148,1804149,1804150,1804151,1804152,1804153,1804154,1804155,1804156],"delay":2969.0} +{"session_id":"sess-92ba00a27738","input_length":711,"output_length":64,"hash_ids":[1804157,1804158],"delay":1654.4} +{"session_id":"sess-92ba00a27738","input_length":4872,"output_length":253,"hash_ids":[1804159,1804160,1804161,1804162,1804163,1804164,1804165,1804166,1804167,1804168],"delay":4145.5} +{"session_id":"sess-92ba00a27738","input_length":1075,"output_length":722,"hash_ids":[1804169,1804170,1804171],"delay":655.3} +{"session_id":"sess-92ba00a27738","input_length":1153,"output_length":427,"hash_ids":[1804172,1804173,1804174],"delay":4333.1} +{"session_id":"sess-92ba00a27738","input_length":424,"output_length":551,"hash_ids":[1804175],"delay":978.7} +{"session_id":"sess-92ba00a27738","input_length":601,"output_length":91,"hash_ids":[1804176,1804177],"delay":424.4} +{"session_id":"sess-92ba00a27738","input_length":824,"output_length":975,"hash_ids":[1804178,1804179],"delay":11542.8} +{"session_id":"sess-92ba00a27738","input_length":2320,"output_length":104,"hash_ids":[1804180,1804181,1804182,1804183,1804184],"delay":335.6} +{"session_id":"sess-92ba00a27738","input_length":2134,"output_length":293,"hash_ids":[1804185,1804186,1804187,1804188,1804189],"delay":145.4} +{"session_id":"sess-92ba00a27738","input_length":596,"output_length":30,"hash_ids":[1804190,1804191],"delay":428.5} +{"session_id":"sess-92ba00a27738","input_length":1445,"output_length":442,"hash_ids":[1804192,1804193,1804194],"delay":169.2} +{"session_id":"sess-92ba00a27738","input_length":2655,"output_length":211,"hash_ids":[1804195,1804196,1804197,1804198,1804199,1804200],"delay":6997.2} +{"session_id":"sess-92ba00a27738","input_length":5397,"output_length":390,"hash_ids":[1804201,1804202,1804203,1804204,1804205,1804206,1804207,1804208,1804209,1804210,1804211],"delay":393.0} +{"session_id":"sess-c90092fc8e51","input_length":60442,"output_length":831,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1808063,1808064,1808065,1808066,1808067,1808068,1808069,1808070,1808071,1808072,1808073,1808074,1808075,1808076,1808077,1808078],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c90092fc8e51","input_length":1732,"output_length":325,"hash_ids":[1808079,1808080,1808081,1808082],"delay":924.3} +{"session_id":"sess-c90092fc8e51","input_length":253,"output_length":426,"hash_ids":[1808083],"delay":15332.6} +{"session_id":"sess-c90092fc8e51","input_length":1101,"output_length":1273,"hash_ids":[1808084,1808085,1808086],"delay":9347.3} +{"session_id":"sess-c90092fc8e51","input_length":5271,"output_length":791,"hash_ids":[1808087,1808088,1808089,1808090,1808091,1808092,1808093,1808094,1808095,1808096,1808097],"delay":578.3} +{"session_id":"sess-c90092fc8e51","input_length":5830,"output_length":111,"hash_ids":[1808098,1808099,1808100,1808101,1808102,1808103,1808104,1808105,1808106,1808107,1808108,1808109],"delay":3791.1} +{"session_id":"sess-c90092fc8e51","input_length":3403,"output_length":659,"hash_ids":[1808110,1808111,1808112,1808113,1808114,1808115,1808116],"delay":1069.7} +{"session_id":"sess-49ca0778045c","input_length":53391,"output_length":294,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1812063,1812064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-49ca0778045c","input_length":4876,"output_length":460,"hash_ids":[1812065,1812066,1812067,1812068,1812069,1812070,1812071,1812072,1812073,1812074],"delay":6818.8} +{"session_id":"sess-49ca0778045c","input_length":1849,"output_length":111,"hash_ids":[1812075,1812076,1812077,1812078],"delay":11648.9} +{"session_id":"sess-49ca0778045c","input_length":6387,"output_length":222,"hash_ids":[1812079,1812080,1812081,1812082,1812083,1812084,1812085,1812086,1812087,1812088,1812089,1812090,1812091],"delay":1338.4} +{"session_id":"sess-49ca0778045c","input_length":1949,"output_length":231,"hash_ids":[1812092,1812093,1812094,1812095],"delay":1960.3} +{"session_id":"sess-49ca0778045c","input_length":1646,"output_length":667,"hash_ids":[1812096,1812097,1812098,1812099],"delay":594.3} +{"session_id":"sess-49ca0778045c","input_length":744,"output_length":482,"hash_ids":[1812100,1812101],"delay":1334.8} +{"session_id":"sess-49ca0778045c","input_length":646,"output_length":88,"hash_ids":[1812102,1812103],"delay":1146.4} +{"session_id":"sess-49ca0778045c","input_length":2630,"output_length":227,"hash_ids":[1812104,1812105,1812106,1812107,1812108,1812109],"delay":358.2} +{"session_id":"sess-49ca0778045c","input_length":2566,"output_length":252,"hash_ids":[1812110,1812111,1812112,1812113,1812114,1812115],"delay":1165.1} +{"session_id":"sess-49ca0778045c","input_length":3199,"output_length":227,"hash_ids":[1812116,1812117,1812118,1812119,1812120,1812121,1812122],"delay":4591.2} +{"session_id":"sess-49ca0778045c","input_length":2056,"output_length":267,"hash_ids":[1812123,1812124,1812125,1812126,1812127],"delay":948.3} +{"session_id":"sess-49ca0778045c","input_length":5159,"output_length":747,"hash_ids":[1812128,1812129,1812130,1812131,1812132,1812133,1812134,1812135,1812136,1812137,1812138],"delay":11896.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":55315,"output_length":228,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1816063,1816064,1816065,1816066,1816067,1816068],"timestamp":0.0,"group_id":10} +{"session_id":"sess-7ddc2fd7aeae","input_length":6372,"output_length":122,"hash_ids":[1816069,1816070,1816071,1816072,1816073,1816074,1816075,1816076,1816077,1816078,1816079,1816080,1816081],"delay":336.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":6665,"output_length":1011,"hash_ids":[1816082,1816083,1816084,1816085,1816086,1816087,1816088,1816089,1816090,1816091,1816092,1816093,1816094,1816095],"delay":2152.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":1964,"output_length":1296,"hash_ids":[1816096,1816097,1816098,1816099],"delay":875.5} +{"session_id":"sess-7ddc2fd7aeae","input_length":288,"output_length":640,"hash_ids":[1816100],"delay":821.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":2345,"output_length":113,"hash_ids":[1816101,1816102,1816103,1816104,1816105],"delay":2551.3} +{"session_id":"sess-7ddc2fd7aeae","input_length":1241,"output_length":133,"hash_ids":[1816106,1816107,1816108],"delay":30333.3} +{"session_id":"sess-7ddc2fd7aeae","input_length":1512,"output_length":580,"hash_ids":[1816109,1816110,1816111],"delay":1054.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":1869,"output_length":273,"hash_ids":[1816112,1816113,1816114,1816115],"delay":402.1} +{"session_id":"sess-7ddc2fd7aeae","input_length":2407,"output_length":190,"hash_ids":[1816116,1816117,1816118,1816119,1816120],"delay":2522.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":1318,"output_length":136,"hash_ids":[1816121,1816122,1816123],"delay":1745.5} +{"session_id":"sess-7ddc2fd7aeae","input_length":799,"output_length":628,"hash_ids":[1816124,1816125],"delay":15604.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":2276,"output_length":121,"hash_ids":[1816126,1816127,1816128,1816129,1816130],"delay":887.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":1221,"output_length":1368,"hash_ids":[1816131,1816132,1816133],"delay":933.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":6967,"output_length":989,"hash_ids":[1816134,1816135,1816136,1816137,1816138,1816139,1816140,1816141,1816142,1816143,1816144,1816145,1816146,1816147],"delay":302.2} +{"session_id":"sess-7ddc2fd7aeae","input_length":8861,"output_length":32,"hash_ids":[1816148,1816149,1816150,1816151,1816152,1816153,1816154,1816155,1816156,1816157,1816158,1816159,1816160,1816161,1816162,1816163,1816164,1816165],"delay":1024.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":1597,"output_length":43,"hash_ids":[1816166,1816167,1816168,1816169],"delay":1621.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":555,"output_length":670,"hash_ids":[1816170,1816171],"delay":18349.3} +{"session_id":"sess-7ddc2fd7aeae","input_length":4484,"output_length":723,"hash_ids":[1816172,1816173,1816174,1816175,1816176,1816177,1816178,1816179,1816180],"delay":3197.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":2772,"output_length":87,"hash_ids":[1816181,1816182,1816183,1816184,1816185,1816186],"delay":28609.5} +{"session_id":"sess-7ddc2fd7aeae","input_length":1485,"output_length":307,"hash_ids":[1816187,1816188,1816189],"delay":27149.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":1506,"output_length":136,"hash_ids":[1816190,1816191,1816192],"delay":1114.8} +{"session_id":"sess-7ddc2fd7aeae","input_length":2183,"output_length":609,"hash_ids":[1816193,1816194,1816195,1816196,1816197],"delay":2363.3} +{"session_id":"sess-7ddc2fd7aeae","input_length":2364,"output_length":453,"hash_ids":[1816198,1816199,1816200,1816201,1816202],"delay":738.6} +{"session_id":"sess-8c28ca01810b","input_length":60523,"output_length":131,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1820063,1820064,1820065,1820066,1820067,1820068,1820069,1820070,1820071,1820072,1820073,1820074,1820075,1820076,1820077,1820078],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8c28ca01810b","input_length":616,"output_length":269,"hash_ids":[1820079,1820080],"delay":9676.5} +{"session_id":"sess-8c28ca01810b","input_length":1568,"output_length":491,"hash_ids":[1820081,1820082,1820083,1820084],"delay":778.1} +{"session_id":"sess-8c28ca01810b","input_length":1581,"output_length":30,"hash_ids":[1820085,1820086,1820087,1820088],"delay":1533.1} +{"session_id":"sess-8c28ca01810b","input_length":952,"output_length":624,"hash_ids":[1820089,1820090],"delay":16901.7} +{"session_id":"sess-8c28ca01810b","input_length":3442,"output_length":133,"hash_ids":[1820091,1820092,1820093,1820094,1820095,1820096,1820097],"delay":1286.3} +{"session_id":"sess-8c28ca01810b","input_length":357,"output_length":799,"hash_ids":[1820098],"delay":954.4} +{"session_id":"sess-8c28ca01810b","input_length":4340,"output_length":451,"hash_ids":[1820099,1820100,1820101,1820102,1820103,1820104,1820105,1820106,1820107],"delay":320.8} +{"session_id":"sess-8c28ca01810b","input_length":925,"output_length":593,"hash_ids":[1820108,1820109],"delay":678.2} +{"session_id":"sess-8c28ca01810b","input_length":1625,"output_length":95,"hash_ids":[1820110,1820111,1820112,1820113],"delay":1754.4} +{"session_id":"sess-8c28ca01810b","input_length":1808,"output_length":251,"hash_ids":[1820114,1820115,1820116,1820117],"delay":23483.7} +{"session_id":"sess-48222bb7f3a7","input_length":57041,"output_length":271,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1824063,1824064,1824065,1824066,1824067,1824068,1824069,1824070,1824071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-48222bb7f3a7","input_length":8580,"output_length":252,"hash_ids":[1824072,1824073,1824074,1824075,1824076,1824077,1824078,1824079,1824080,1824081,1824082,1824083,1824084,1824085,1824086,1824087,1824088],"delay":715.1} +{"session_id":"sess-48222bb7f3a7","input_length":312,"output_length":831,"hash_ids":[1824089],"delay":1480.0} +{"session_id":"sess-48222bb7f3a7","input_length":598,"output_length":674,"hash_ids":[1824090,1824091],"delay":628.9} +{"session_id":"sess-48222bb7f3a7","input_length":719,"output_length":92,"hash_ids":[1824092,1824093],"delay":577.4} +{"session_id":"sess-48222bb7f3a7","input_length":840,"output_length":588,"hash_ids":[1824094,1824095],"delay":712.7} +{"session_id":"sess-48222bb7f3a7","input_length":1080,"output_length":164,"hash_ids":[1824096,1824097,1824098],"delay":592.9} +{"session_id":"sess-48222bb7f3a7","input_length":4736,"output_length":281,"hash_ids":[1824099,1824100,1824101,1824102,1824103,1824104,1824105,1824106,1824107,1824108],"delay":1496.5} +{"session_id":"sess-48222bb7f3a7","input_length":2121,"output_length":345,"hash_ids":[1824109,1824110,1824111,1824112,1824113],"delay":877.1} +{"session_id":"sess-48222bb7f3a7","input_length":3562,"output_length":30,"hash_ids":[1824114,1824115,1824116,1824117,1824118,1824119,1824120],"delay":1480.4} +{"session_id":"sess-48222bb7f3a7","input_length":230,"output_length":369,"hash_ids":[1824121],"delay":414.5} +{"session_id":"sess-48222bb7f3a7","input_length":3029,"output_length":341,"hash_ids":[1824122,1824123,1824124,1824125,1824126,1824127],"delay":332.5} +{"session_id":"sess-48222bb7f3a7","input_length":1412,"output_length":627,"hash_ids":[1824128,1824129,1824130],"delay":45370.6} +{"session_id":"sess-48222bb7f3a7","input_length":618,"output_length":353,"hash_ids":[1824131,1824132],"delay":6180.4} +{"session_id":"sess-48222bb7f3a7","input_length":6555,"output_length":998,"hash_ids":[1824133,1824134,1824135,1824136,1824137,1824138,1824139,1824140,1824141,1824142,1824143,1824144,1824145],"delay":832.0} +{"session_id":"sess-48222bb7f3a7","input_length":1553,"output_length":462,"hash_ids":[1824146,1824147,1824148,1824149],"delay":35246.3} +{"session_id":"sess-48222bb7f3a7","input_length":3828,"output_length":74,"hash_ids":[1824150,1824151,1824152,1824153,1824154,1824155,1824156,1824157],"delay":247.4} +{"session_id":"sess-48222bb7f3a7","input_length":1425,"output_length":2462,"hash_ids":[1824158,1824159,1824160],"delay":347.6} +{"session_id":"sess-48222bb7f3a7","input_length":3444,"output_length":171,"hash_ids":[1824161,1824162,1824163,1824164,1824165,1824166,1824167],"delay":159.7} +{"session_id":"sess-48222bb7f3a7","input_length":2859,"output_length":575,"hash_ids":[1824168,1824169,1824170,1824171,1824172,1824173],"delay":483.4} +{"session_id":"sess-48222bb7f3a7","input_length":1434,"output_length":285,"hash_ids":[1824174,1824175,1824176],"delay":428.2} +{"session_id":"sess-48222bb7f3a7","input_length":1683,"output_length":98,"hash_ids":[1824177,1824178,1824179,1824180],"delay":135.1} +{"session_id":"sess-48222bb7f3a7","input_length":2388,"output_length":639,"hash_ids":[1824181,1824182,1824183,1824184,1824185],"delay":2202.5} +{"session_id":"sess-48222bb7f3a7","input_length":3085,"output_length":744,"hash_ids":[1824186,1824187,1824188,1824189,1824190,1824191,1824192],"delay":7208.5} +{"session_id":"sess-aa7ecfdc8f9e","input_length":54213,"output_length":188,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1828063,1828064,1828065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6ee1e4b8efaa","input_length":59439,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1832063,1832064,1832065,1832066,1832067,1832068,1832069,1832070,1832071,1832072,1832073,1832074,1832075,1832076],"timestamp":0.0,"group_id":10} +{"session_id":"sess-6ee1e4b8efaa","input_length":5881,"output_length":323,"hash_ids":[1832077,1832078,1832079,1832080,1832081,1832082,1832083,1832084,1832085,1832086,1832087,1832088],"delay":203.6} +{"session_id":"sess-6ee1e4b8efaa","input_length":3714,"output_length":149,"hash_ids":[1832089,1832090,1832091,1832092,1832093,1832094,1832095,1832096],"delay":12244.1} +{"session_id":"sess-6ee1e4b8efaa","input_length":7393,"output_length":30,"hash_ids":[1832097,1832098,1832099,1832100,1832101,1832102,1832103,1832104,1832105,1832106,1832107,1832108,1832109,1832110,1832111],"delay":2484.3} +{"session_id":"sess-6ee1e4b8efaa","input_length":201,"output_length":158,"hash_ids":[1832112],"delay":1438.6} +{"session_id":"sess-6ee1e4b8efaa","input_length":2521,"output_length":121,"hash_ids":[1832113,1832114,1832115,1832116,1832117],"delay":960.5} +{"session_id":"sess-6ee1e4b8efaa","input_length":7155,"output_length":264,"hash_ids":[1832118,1832119,1832120,1832121,1832122,1832123,1832124,1832125,1832126,1832127,1832128,1832129,1832130,1832131],"delay":258.4} +{"session_id":"sess-6ee1e4b8efaa","input_length":5738,"output_length":190,"hash_ids":[1832132,1832133,1832134,1832135,1832136,1832137,1832138,1832139,1832140,1832141,1832142,1832143],"delay":784.9} +{"session_id":"sess-6ee1e4b8efaa","input_length":1096,"output_length":881,"hash_ids":[1832144,1832145,1832146],"delay":30583.9} +{"session_id":"sess-6ee1e4b8efaa","input_length":689,"output_length":899,"hash_ids":[1832147,1832148],"delay":6405.8} +{"session_id":"sess-6ee1e4b8efaa","input_length":658,"output_length":493,"hash_ids":[1832149,1832150],"delay":551.0} +{"session_id":"sess-6ee1e4b8efaa","input_length":2022,"output_length":1205,"hash_ids":[1832151,1832152,1832153,1832154],"delay":541.0} +{"session_id":"sess-6ee1e4b8efaa","input_length":204,"output_length":1754,"hash_ids":[1832155],"delay":4504.0} +{"session_id":"sess-6ee1e4b8efaa","input_length":4997,"output_length":403,"hash_ids":[1832156,1832157,1832158,1832159,1832160,1832161,1832162,1832163,1832164,1832165],"delay":824.7} +{"session_id":"sess-6ee1e4b8efaa","input_length":3211,"output_length":502,"hash_ids":[1832166,1832167,1832168,1832169,1832170,1832171,1832172],"delay":2941.5} +{"session_id":"sess-6ee1e4b8efaa","input_length":5606,"output_length":262,"hash_ids":[1832173,1832174,1832175,1832176,1832177,1832178,1832179,1832180,1832181,1832182,1832183],"delay":1005.9} +{"session_id":"sess-6ee1e4b8efaa","input_length":1807,"output_length":112,"hash_ids":[1832184,1832185,1832186,1832187],"delay":92.6} +{"session_id":"sess-6ee1e4b8efaa","input_length":7575,"output_length":1245,"hash_ids":[1832188,1832189,1832190,1832191,1832192,1832193,1832194,1832195,1832196,1832197,1832198,1832199,1832200,1832201,1832202],"delay":26.4} +{"session_id":"sess-6ee1e4b8efaa","input_length":1275,"output_length":249,"hash_ids":[1832203,1832204,1832205],"delay":190.2} +{"session_id":"sess-b6f90f5bad2b","input_length":62996,"output_length":640,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1836063,1836064,1836065,1836066,1836067,1836068,1836069,1836070,1836071,1836072,1836073,1836074,1836075,1836076,1836077,1836078,1836079,1836080,1836081,1836082,1836083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b6f90f5bad2b","input_length":3348,"output_length":143,"hash_ids":[1836084,1836085,1836086,1836087,1836088,1836089,1836090],"delay":1710.1} +{"session_id":"sess-b6f90f5bad2b","input_length":6659,"output_length":199,"hash_ids":[1836091,1836092,1836093,1836094,1836095,1836096,1836097,1836098,1836099,1836100,1836101,1836102,1836103,1836104],"delay":16688.9} +{"session_id":"sess-b6f90f5bad2b","input_length":1044,"output_length":588,"hash_ids":[1836105,1836106,1836107],"delay":1670.6} +{"session_id":"sess-b6f90f5bad2b","input_length":6064,"output_length":180,"hash_ids":[1836108,1836109,1836110,1836111,1836112,1836113,1836114,1836115,1836116,1836117,1836118,1836119],"delay":2237.9} +{"session_id":"sess-b6f90f5bad2b","input_length":586,"output_length":388,"hash_ids":[1836120,1836121],"delay":426.4} +{"session_id":"sess-b6f90f5bad2b","input_length":3696,"output_length":239,"hash_ids":[1836122,1836123,1836124,1836125,1836126,1836127,1836128,1836129],"delay":15012.3} +{"session_id":"sess-b6f90f5bad2b","input_length":222,"output_length":317,"hash_ids":[1836130],"delay":1570.8} +{"session_id":"sess-b6f90f5bad2b","input_length":762,"output_length":110,"hash_ids":[1836131,1836132],"delay":18885.2} +{"session_id":"sess-b6f90f5bad2b","input_length":505,"output_length":296,"hash_ids":[1836133],"delay":36086.3} +{"session_id":"sess-b6f90f5bad2b","input_length":304,"output_length":276,"hash_ids":[1836134],"delay":258.0} +{"session_id":"sess-b6f90f5bad2b","input_length":772,"output_length":474,"hash_ids":[1836135,1836136],"delay":52054.4} +{"session_id":"sess-b6f90f5bad2b","input_length":4197,"output_length":277,"hash_ids":[1836137,1836138,1836139,1836140,1836141,1836142,1836143,1836144,1836145],"delay":1893.4} +{"session_id":"sess-b6f90f5bad2b","input_length":2197,"output_length":115,"hash_ids":[1836146,1836147,1836148,1836149,1836150],"delay":1667.3} +{"session_id":"sess-b6f90f5bad2b","input_length":3074,"output_length":127,"hash_ids":[1836151,1836152,1836153,1836154,1836155,1836156,1836157],"delay":1137.5} +{"session_id":"sess-b6f90f5bad2b","input_length":4153,"output_length":429,"hash_ids":[1836158,1836159,1836160,1836161,1836162,1836163,1836164,1836165,1836166],"delay":1451.2} +{"session_id":"sess-b6f90f5bad2b","input_length":4008,"output_length":100,"hash_ids":[1836167,1836168,1836169,1836170,1836171,1836172,1836173,1836174],"delay":398.9} +{"session_id":"sess-b6f90f5bad2b","input_length":1449,"output_length":304,"hash_ids":[1836175,1836176,1836177],"delay":508.1} +{"session_id":"sess-b6f90f5bad2b","input_length":6765,"output_length":237,"hash_ids":[1836178,1836179,1836180,1836181,1836182,1836183,1836184,1836185,1836186,1836187,1836188,1836189,1836190,1836191],"delay":568.9} +{"session_id":"sess-b6f90f5bad2b","input_length":1443,"output_length":699,"hash_ids":[1836192,1836193,1836194],"delay":6017.9} +{"session_id":"sess-b6f90f5bad2b","input_length":650,"output_length":601,"hash_ids":[1836195,1836196],"delay":288.6} +{"session_id":"sess-b6f90f5bad2b","input_length":1817,"output_length":253,"hash_ids":[1836197,1836198,1836199,1836200],"delay":310.3} +{"session_id":"sess-b6f90f5bad2b","input_length":2398,"output_length":44,"hash_ids":[1836201,1836202,1836203,1836204,1836205],"delay":1194.2} +{"session_id":"sess-b6f90f5bad2b","input_length":298,"output_length":44,"hash_ids":[1836206],"delay":617.6} +{"session_id":"sess-b6f90f5bad2b","input_length":2980,"output_length":505,"hash_ids":[1836207,1836208,1836209,1836210,1836211,1836212],"delay":338.6} +{"session_id":"sess-9a22dcda7276","input_length":63777,"output_length":636,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1840063,1840064,1840065,1840066,1840067,1840068,1840069,1840070,1840071,1840072,1840073,1840074,1840075,1840076,1840077,1840078,1840079,1840080,1840081,1840082,1840083,1840084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9a22dcda7276","input_length":1431,"output_length":105,"hash_ids":[1840085,1840086,1840087],"delay":2680.3} +{"session_id":"sess-9a22dcda7276","input_length":2168,"output_length":222,"hash_ids":[1840088,1840089,1840090,1840091,1840092],"delay":1375.3} +{"session_id":"sess-9a22dcda7276","input_length":1695,"output_length":40,"hash_ids":[1840093,1840094,1840095,1840096],"delay":1719.2} +{"session_id":"sess-9a22dcda7276","input_length":919,"output_length":81,"hash_ids":[1840097,1840098],"delay":7227.0} +{"session_id":"sess-9a22dcda7276","input_length":1065,"output_length":381,"hash_ids":[1840099,1840100,1840101],"delay":8794.1} +{"session_id":"sess-9a22dcda7276","input_length":1786,"output_length":341,"hash_ids":[1840102,1840103,1840104,1840105],"delay":221.5} +{"session_id":"sess-9a22dcda7276","input_length":2092,"output_length":507,"hash_ids":[1840106,1840107,1840108,1840109,1840110],"delay":20432.8} +{"session_id":"sess-9a22dcda7276","input_length":293,"output_length":530,"hash_ids":[1840111],"delay":14059.6} +{"session_id":"sess-9a22dcda7276","input_length":8967,"output_length":1019,"hash_ids":[1840112,1840113,1840114,1840115,1840116,1840117,1840118,1840119,1840120,1840121,1840122,1840123,1840124,1840125,1840126,1840127,1840128,1840129],"delay":10675.4} +{"session_id":"sess-9a22dcda7276","input_length":626,"output_length":275,"hash_ids":[1840130,1840131],"delay":9175.0} +{"session_id":"sess-9a22dcda7276","input_length":5512,"output_length":82,"hash_ids":[1840132,1840133,1840134,1840135,1840136,1840137,1840138,1840139,1840140,1840141,1840142],"delay":787.0} +{"session_id":"sess-9a22dcda7276","input_length":532,"output_length":400,"hash_ids":[1840143,1840144],"delay":14977.0} +{"session_id":"sess-9a22dcda7276","input_length":7747,"output_length":168,"hash_ids":[1840145,1840146,1840147,1840148,1840149,1840150,1840151,1840152,1840153,1840154,1840155,1840156,1840157,1840158,1840159,1840160],"delay":406.5} +{"session_id":"sess-9a22dcda7276","input_length":4554,"output_length":2425,"hash_ids":[1840161,1840162,1840163,1840164,1840165,1840166,1840167,1840168,1840169],"delay":388.0} +{"session_id":"sess-9a22dcda7276","input_length":759,"output_length":397,"hash_ids":[1840170,1840171],"delay":1782.7} +{"session_id":"sess-9a22dcda7276","input_length":2472,"output_length":399,"hash_ids":[1840172,1840173,1840174,1840175,1840176],"delay":5426.1} +{"session_id":"sess-9a22dcda7276","input_length":1560,"output_length":155,"hash_ids":[1840177,1840178,1840179,1840180],"delay":17419.8} +{"session_id":"sess-9a22dcda7276","input_length":2788,"output_length":251,"hash_ids":[1840181,1840182,1840183,1840184,1840185,1840186],"delay":1224.0} +{"session_id":"sess-9a22dcda7276","input_length":336,"output_length":219,"hash_ids":[1840187],"delay":142.2} +{"session_id":"sess-9a22dcda7276","input_length":918,"output_length":348,"hash_ids":[1840188,1840189],"delay":1522.5} +{"session_id":"sess-9a22dcda7276","input_length":583,"output_length":905,"hash_ids":[1840190,1840191],"delay":1552.4} +{"session_id":"sess-9a22dcda7276","input_length":2954,"output_length":614,"hash_ids":[1840192,1840193,1840194,1840195,1840196,1840197],"delay":558.2} +{"session_id":"sess-9a22dcda7276","input_length":3017,"output_length":194,"hash_ids":[1840198,1840199,1840200,1840201,1840202,1840203],"delay":8870.2} +{"session_id":"sess-6ba820f9b088","input_length":53506,"output_length":120,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1844063,1844064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6ba820f9b088","input_length":958,"output_length":147,"hash_ids":[1844065,1844066],"delay":1038.0} +{"session_id":"sess-6ba820f9b088","input_length":3804,"output_length":152,"hash_ids":[1844067,1844068,1844069,1844070,1844071,1844072,1844073,1844074],"delay":746.0} +{"session_id":"sess-6ba820f9b088","input_length":402,"output_length":125,"hash_ids":[1844075],"delay":588.1} +{"session_id":"sess-6ba820f9b088","input_length":976,"output_length":186,"hash_ids":[1844076,1844077],"delay":2519.6} +{"session_id":"sess-6ba820f9b088","input_length":3266,"output_length":47,"hash_ids":[1844078,1844079,1844080,1844081,1844082,1844083,1844084],"delay":68198.2} +{"session_id":"sess-6ba820f9b088","input_length":335,"output_length":245,"hash_ids":[1844085],"delay":285.2} +{"session_id":"sess-6ba820f9b088","input_length":205,"output_length":497,"hash_ids":[1844086],"delay":735.8} +{"session_id":"sess-6ba820f9b088","input_length":6355,"output_length":220,"hash_ids":[1844087,1844088,1844089,1844090,1844091,1844092,1844093,1844094,1844095,1844096,1844097,1844098,1844099],"delay":843.8} +{"session_id":"sess-6ba820f9b088","input_length":1015,"output_length":130,"hash_ids":[1844100,1844101],"delay":8535.5} +{"session_id":"sess-6ba820f9b088","input_length":6186,"output_length":149,"hash_ids":[1844102,1844103,1844104,1844105,1844106,1844107,1844108,1844109,1844110,1844111,1844112,1844113,1844114],"delay":12785.4} +{"session_id":"sess-6ba820f9b088","input_length":6139,"output_length":2424,"hash_ids":[1844115,1844116,1844117,1844118,1844119,1844120,1844121,1844122,1844123,1844124,1844125,1844126],"delay":1166.6} +{"session_id":"sess-6ba820f9b088","input_length":5787,"output_length":755,"hash_ids":[1844127,1844128,1844129,1844130,1844131,1844132,1844133,1844134,1844135,1844136,1844137,1844138],"delay":1153.4} +{"session_id":"sess-6ba820f9b088","input_length":329,"output_length":380,"hash_ids":[1844139],"delay":1441.0} +{"session_id":"sess-6ba820f9b088","input_length":738,"output_length":113,"hash_ids":[1844140,1844141],"delay":601.5} +{"session_id":"sess-6ba820f9b088","input_length":8046,"output_length":109,"hash_ids":[1844142,1844143,1844144,1844145,1844146,1844147,1844148,1844149,1844150,1844151,1844152,1844153,1844154,1844155,1844156,1844157],"delay":6913.9} +{"session_id":"sess-6ba820f9b088","input_length":2313,"output_length":303,"hash_ids":[1844158,1844159,1844160,1844161,1844162],"delay":2283.9} +{"session_id":"sess-6ba820f9b088","input_length":7851,"output_length":279,"hash_ids":[1844163,1844164,1844165,1844166,1844167,1844168,1844169,1844170,1844171,1844172,1844173,1844174,1844175,1844176,1844177,1844178],"delay":23806.5} +{"session_id":"sess-6ba820f9b088","input_length":1947,"output_length":595,"hash_ids":[1844179,1844180,1844181,1844182],"delay":3724.8} +{"session_id":"sess-6ba820f9b088","input_length":823,"output_length":101,"hash_ids":[1844183,1844184],"delay":7790.9} +{"session_id":"sess-6ba820f9b088","input_length":2203,"output_length":278,"hash_ids":[1844185,1844186,1844187,1844188,1844189],"delay":9887.9} +{"session_id":"sess-6ba820f9b088","input_length":1059,"output_length":182,"hash_ids":[1844190,1844191,1844192],"delay":9190.1} +{"session_id":"sess-6ba820f9b088","input_length":4560,"output_length":362,"hash_ids":[1844193,1844194,1844195,1844196,1844197,1844198,1844199,1844200,1844201],"delay":1357.2} +{"session_id":"sess-6ba820f9b088","input_length":3402,"output_length":239,"hash_ids":[1844202,1844203,1844204,1844205,1844206,1844207,1844208],"delay":8688.1} +{"session_id":"sess-f15d5d75389d","input_length":73263,"output_length":874,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,1848063,1848064,1848065,1848066,1848067,1848068,1848069,1848070,1848071,1848072,1848073,1848074,1848075,1848076,1848077,1848078,1848079,1848080,1848081,1848082,1848083,1848084,1848085,1848086,1848087,1848088,1848089,1848090,1848091,1848092,1848093,1848094,1848095,1848096,1848097,1848098,1848099,1848100,1848101,1848102,1848103],"timestamp":0.0,"group_id":10} +{"session_id":"sess-f15d5d75389d","input_length":1300,"output_length":355,"hash_ids":[1848104,1848105,1848106],"delay":185.4} +{"session_id":"sess-f15d5d75389d","input_length":761,"output_length":266,"hash_ids":[1848107,1848108],"delay":1826.6} +{"session_id":"sess-f15d5d75389d","input_length":1912,"output_length":66,"hash_ids":[1848109,1848110,1848111,1848112],"delay":9248.2} +{"session_id":"sess-f15d5d75389d","input_length":1938,"output_length":222,"hash_ids":[1848113,1848114,1848115,1848116],"delay":1436.8} +{"session_id":"sess-f15d5d75389d","input_length":2497,"output_length":242,"hash_ids":[1848117,1848118,1848119,1848120,1848121],"delay":8274.7} +{"session_id":"sess-f15d5d75389d","input_length":744,"output_length":143,"hash_ids":[1848122,1848123],"delay":590.1} +{"session_id":"sess-f15d5d75389d","input_length":429,"output_length":221,"hash_ids":[1848124],"delay":547.3} +{"session_id":"sess-f15d5d75389d","input_length":1652,"output_length":1177,"hash_ids":[1848125,1848126,1848127,1848128],"delay":777.3} +{"session_id":"sess-f15d5d75389d","input_length":1886,"output_length":244,"hash_ids":[1848129,1848130,1848131,1848132],"delay":423.6} +{"session_id":"sess-f15d5d75389d","input_length":324,"output_length":461,"hash_ids":[1848133],"delay":1086.5} +{"session_id":"sess-3b4f4b74c8a8","input_length":57367,"output_length":586,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1852063,1852064,1852065,1852066,1852067,1852068,1852069,1852070,1852071,1852072],"timestamp":0.0,"group_id":3} +{"session_id":"sess-3b4f4b74c8a8","input_length":1176,"output_length":436,"hash_ids":[1852073,1852074,1852075],"delay":371.2} +{"session_id":"sess-3b4f4b74c8a8","input_length":1084,"output_length":228,"hash_ids":[1852076,1852077,1852078],"delay":683.2} +{"session_id":"sess-7669daf9700d","input_length":54638,"output_length":361,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1856063,1856064,1856065,1856066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7669daf9700d","input_length":5070,"output_length":97,"hash_ids":[1856067,1856068,1856069,1856070,1856071,1856072,1856073,1856074,1856075,1856076],"delay":27661.0} +{"session_id":"sess-7669daf9700d","input_length":2024,"output_length":361,"hash_ids":[1856077,1856078,1856079,1856080],"delay":1090.9} +{"session_id":"sess-f4a8f31fb71c","input_length":53434,"output_length":197,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,1860063,1860064],"timestamp":0.0,"group_id":41} +{"session_id":"sess-f4a8f31fb71c","input_length":96,"output_length":1821,"hash_ids":[1860065],"delay":1814.8} +{"session_id":"sess-f4a8f31fb71c","input_length":1226,"output_length":74,"hash_ids":[1860066,1860067,1860068],"delay":1611.3} +{"session_id":"sess-f4a8f31fb71c","input_length":1083,"output_length":783,"hash_ids":[1860069,1860070,1860071],"delay":28939.6} +{"session_id":"sess-f4a8f31fb71c","input_length":2512,"output_length":666,"hash_ids":[1860072,1860073,1860074,1860075,1860076],"delay":50071.5} +{"session_id":"sess-f4a8f31fb71c","input_length":174,"output_length":471,"hash_ids":[1860077],"delay":904.6} +{"session_id":"sess-f4a8f31fb71c","input_length":1476,"output_length":66,"hash_ids":[1860078,1860079,1860080],"delay":1971.3} +{"session_id":"sess-f4a8f31fb71c","input_length":3115,"output_length":223,"hash_ids":[1860081,1860082,1860083,1860084,1860085,1860086,1860087],"delay":713.2} +{"session_id":"sess-f4a8f31fb71c","input_length":494,"output_length":115,"hash_ids":[1860088],"delay":929.1} +{"session_id":"sess-f4a8f31fb71c","input_length":1515,"output_length":158,"hash_ids":[1860089,1860090,1860091],"delay":4281.7} +{"session_id":"sess-f4a8f31fb71c","input_length":1754,"output_length":679,"hash_ids":[1860092,1860093,1860094,1860095],"delay":41026.7} +{"session_id":"sess-f4a8f31fb71c","input_length":561,"output_length":160,"hash_ids":[1860096,1860097],"delay":622.1} +{"session_id":"sess-f4a8f31fb71c","input_length":3236,"output_length":35,"hash_ids":[1860098,1860099,1860100,1860101,1860102,1860103,1860104],"delay":795.0} +{"session_id":"sess-f4a8f31fb71c","input_length":1618,"output_length":58,"hash_ids":[1860105,1860106,1860107,1860108],"delay":399.6} +{"session_id":"sess-f4a8f31fb71c","input_length":4216,"output_length":179,"hash_ids":[1860109,1860110,1860111,1860112,1860113,1860114,1860115,1860116,1860117],"delay":2755.1} +{"session_id":"sess-f4a8f31fb71c","input_length":680,"output_length":865,"hash_ids":[1860118,1860119],"delay":177.6} +{"session_id":"sess-f4a8f31fb71c","input_length":527,"output_length":1381,"hash_ids":[1860120,1860121],"delay":31190.5} +{"session_id":"sess-f4a8f31fb71c","input_length":858,"output_length":169,"hash_ids":[1860122,1860123],"delay":51.8} +{"session_id":"sess-f4a8f31fb71c","input_length":1834,"output_length":688,"hash_ids":[1860124,1860125,1860126,1860127],"delay":520.6} +{"session_id":"sess-f4a8f31fb71c","input_length":380,"output_length":855,"hash_ids":[1860128],"delay":14190.5} +{"session_id":"sess-f4a8f31fb71c","input_length":1510,"output_length":119,"hash_ids":[1860129,1860130,1860131],"delay":625.2} +{"session_id":"sess-f4a8f31fb71c","input_length":1101,"output_length":1073,"hash_ids":[1860132,1860133,1860134],"delay":595.6} +{"session_id":"sess-f4a8f31fb71c","input_length":2836,"output_length":227,"hash_ids":[1860135,1860136,1860137,1860138,1860139,1860140],"delay":688.7} +{"session_id":"sess-f4a8f31fb71c","input_length":5670,"output_length":84,"hash_ids":[1860141,1860142,1860143,1860144,1860145,1860146,1860147,1860148,1860149,1860150,1860151,1860152],"delay":916.8} +{"session_id":"sess-f4a8f31fb71c","input_length":7809,"output_length":267,"hash_ids":[1860153,1860154,1860155,1860156,1860157,1860158,1860159,1860160,1860161,1860162,1860163,1860164,1860165,1860166,1860167,1860168],"delay":688.2} +{"session_id":"sess-f4a8f31fb71c","input_length":2103,"output_length":77,"hash_ids":[1860169,1860170,1860171,1860172,1860173],"delay":13462.5} +{"session_id":"sess-f4a8f31fb71c","input_length":357,"output_length":117,"hash_ids":[1860174],"delay":696.0} +{"session_id":"sess-f4a8f31fb71c","input_length":1833,"output_length":191,"hash_ids":[1860175,1860176,1860177,1860178],"delay":11620.2} +{"session_id":"sess-f4a8f31fb71c","input_length":2334,"output_length":425,"hash_ids":[1860179,1860180,1860181,1860182,1860183],"delay":429.1} +{"session_id":"sess-f4a8f31fb71c","input_length":5707,"output_length":139,"hash_ids":[1860184,1860185,1860186,1860187,1860188,1860189,1860190,1860191,1860192,1860193,1860194,1860195],"delay":390.2} +{"session_id":"sess-f4a8f31fb71c","input_length":1221,"output_length":560,"hash_ids":[1860196,1860197,1860198],"delay":178.5} +{"session_id":"sess-f4a8f31fb71c","input_length":3553,"output_length":750,"hash_ids":[1860199,1860200,1860201,1860202,1860203,1860204,1860205],"delay":292.9} +{"session_id":"sess-1d2977a7c6e6","input_length":54463,"output_length":265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,1864063,1864064,1864065,1864066],"timestamp":0.0,"group_id":19} +{"session_id":"sess-1d2977a7c6e6","input_length":3114,"output_length":473,"hash_ids":[1864067,1864068,1864069,1864070,1864071,1864072,1864073],"delay":745.9} +{"session_id":"sess-1d2977a7c6e6","input_length":1478,"output_length":894,"hash_ids":[1864074,1864075,1864076],"delay":12299.3} +{"session_id":"sess-2d7716957b01","input_length":54038,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1868063,1868064,1868065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff8532c39f2f","input_length":56238,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1872063,1872064,1872065,1872066,1872067,1872068,1872069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff8532c39f2f","input_length":573,"output_length":2142,"hash_ids":[1872070,1872071],"delay":1004.3} +{"session_id":"sess-ff8532c39f2f","input_length":5705,"output_length":367,"hash_ids":[1872072,1872073,1872074,1872075,1872076,1872077,1872078,1872079,1872080,1872081,1872082,1872083],"delay":866.9} +{"session_id":"sess-ff8532c39f2f","input_length":1529,"output_length":175,"hash_ids":[1872084,1872085,1872086],"delay":592.2} +{"session_id":"sess-ff8532c39f2f","input_length":1130,"output_length":433,"hash_ids":[1872087,1872088,1872089],"delay":626.7} +{"session_id":"sess-ff8532c39f2f","input_length":3208,"output_length":432,"hash_ids":[1872090,1872091,1872092,1872093,1872094,1872095,1872096],"delay":1520.9} +{"session_id":"sess-ff8532c39f2f","input_length":1118,"output_length":567,"hash_ids":[1872097,1872098,1872099],"delay":1451.5} +{"session_id":"sess-ff8532c39f2f","input_length":1205,"output_length":59,"hash_ids":[1872100,1872101,1872102],"delay":556.2} +{"session_id":"sess-ff8532c39f2f","input_length":3271,"output_length":517,"hash_ids":[1872103,1872104,1872105,1872106,1872107,1872108,1872109],"delay":502.9} +{"session_id":"sess-ff8532c39f2f","input_length":804,"output_length":148,"hash_ids":[1872110,1872111],"delay":2623.6} +{"session_id":"sess-ff8532c39f2f","input_length":3377,"output_length":123,"hash_ids":[1872112,1872113,1872114,1872115,1872116,1872117,1872118],"delay":417.7} +{"session_id":"sess-ff8532c39f2f","input_length":1140,"output_length":294,"hash_ids":[1872119,1872120,1872121],"delay":2170.2} +{"session_id":"sess-ff8532c39f2f","input_length":682,"output_length":1193,"hash_ids":[1872122,1872123],"delay":9974.1} +{"session_id":"sess-ff8532c39f2f","input_length":390,"output_length":95,"hash_ids":[1872124],"delay":464.7} +{"session_id":"sess-ff8532c39f2f","input_length":2079,"output_length":147,"hash_ids":[1872125,1872126,1872127,1872128,1872129],"delay":265.9} +{"session_id":"sess-ff8532c39f2f","input_length":6885,"output_length":1362,"hash_ids":[1872130,1872131,1872132,1872133,1872134,1872135,1872136,1872137,1872138,1872139,1872140,1872141,1872142,1872143],"delay":653.4} +{"session_id":"sess-ff8532c39f2f","input_length":944,"output_length":88,"hash_ids":[1872144,1872145],"delay":4611.6} +{"session_id":"sess-ff8532c39f2f","input_length":766,"output_length":763,"hash_ids":[1872146,1872147],"delay":675.7} +{"session_id":"sess-ff8532c39f2f","input_length":1503,"output_length":236,"hash_ids":[1872148,1872149,1872150],"delay":636.9} +{"session_id":"sess-ff8532c39f2f","input_length":5021,"output_length":2809,"hash_ids":[1872151,1872152,1872153,1872154,1872155,1872156,1872157,1872158,1872159,1872160],"delay":524.0} +{"session_id":"sess-ff8532c39f2f","input_length":4363,"output_length":540,"hash_ids":[1872161,1872162,1872163,1872164,1872165,1872166,1872167,1872168,1872169],"delay":157.5} +{"session_id":"sess-ff8532c39f2f","input_length":730,"output_length":160,"hash_ids":[1872170,1872171],"delay":21817.4} +{"session_id":"sess-ff8532c39f2f","input_length":3732,"output_length":463,"hash_ids":[1872172,1872173,1872174,1872175,1872176,1872177,1872178,1872179],"delay":367.9} +{"session_id":"sess-ff8532c39f2f","input_length":1113,"output_length":206,"hash_ids":[1872180,1872181,1872182],"delay":503.2} +{"session_id":"sess-ff8532c39f2f","input_length":464,"output_length":1092,"hash_ids":[1872183],"delay":846.6} +{"session_id":"sess-ff8532c39f2f","input_length":727,"output_length":498,"hash_ids":[1872184,1872185],"delay":521.9} +{"session_id":"sess-ff8532c39f2f","input_length":5349,"output_length":70,"hash_ids":[1872186,1872187,1872188,1872189,1872190,1872191,1872192,1872193,1872194,1872195,1872196],"delay":241.4} +{"session_id":"sess-d574228963b7","input_length":63402,"output_length":110,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1876063,1876064,1876065,1876066,1876067,1876068,1876069,1876070,1876071,1876072,1876073,1876074,1876075,1876076,1876077,1876078,1876079,1876080,1876081,1876082,1876083],"timestamp":0.0,"group_id":9} +{"session_id":"sess-d574228963b7","input_length":3992,"output_length":140,"hash_ids":[1876084,1876085,1876086,1876087,1876088,1876089,1876090,1876091],"delay":1956.5} +{"session_id":"sess-d574228963b7","input_length":917,"output_length":1674,"hash_ids":[1876092,1876093],"delay":608.9} +{"session_id":"sess-d574228963b7","input_length":4240,"output_length":450,"hash_ids":[1876094,1876095,1876096,1876097,1876098,1876099,1876100,1876101,1876102],"delay":5036.4} +{"session_id":"sess-d574228963b7","input_length":661,"output_length":169,"hash_ids":[1876103,1876104],"delay":15799.0} +{"session_id":"sess-d574228963b7","input_length":1909,"output_length":142,"hash_ids":[1876105,1876106,1876107,1876108],"delay":172.6} +{"session_id":"sess-d574228963b7","input_length":117,"output_length":366,"hash_ids":[1876109],"delay":6051.8} +{"session_id":"sess-d574228963b7","input_length":638,"output_length":86,"hash_ids":[1876110,1876111],"delay":8596.5} +{"session_id":"sess-d574228963b7","input_length":377,"output_length":203,"hash_ids":[1876112],"delay":878.7} +{"session_id":"sess-d574228963b7","input_length":3230,"output_length":347,"hash_ids":[1876113,1876114,1876115,1876116,1876117,1876118,1876119],"delay":1447.1} +{"session_id":"sess-d574228963b7","input_length":5499,"output_length":249,"hash_ids":[1876120,1876121,1876122,1876123,1876124,1876125,1876126,1876127,1876128,1876129,1876130],"delay":4962.9} +{"session_id":"sess-d574228963b7","input_length":682,"output_length":119,"hash_ids":[1876131,1876132],"delay":160.0} +{"session_id":"sess-d574228963b7","input_length":683,"output_length":440,"hash_ids":[1876133,1876134],"delay":1165.0} +{"session_id":"sess-d574228963b7","input_length":3609,"output_length":67,"hash_ids":[1876135,1876136,1876137,1876138,1876139,1876140,1876141,1876142],"delay":203.8} +{"session_id":"sess-d574228963b7","input_length":1607,"output_length":630,"hash_ids":[1876143,1876144,1876145,1876146],"delay":1750.0} +{"session_id":"sess-d574228963b7","input_length":940,"output_length":64,"hash_ids":[1876147,1876148],"delay":614.1} +{"session_id":"sess-d574228963b7","input_length":916,"output_length":288,"hash_ids":[1876149,1876150],"delay":168.9} +{"session_id":"sess-d574228963b7","input_length":5655,"output_length":80,"hash_ids":[1876151,1876152,1876153,1876154,1876155,1876156,1876157,1876158,1876159,1876160,1876161,1876162],"delay":12329.3} +{"session_id":"sess-bda3abc035e9","input_length":56391,"output_length":557,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,1880063,1880064,1880065,1880066,1880067,1880068,1880069,1880070],"timestamp":0.0,"group_id":11} +{"session_id":"sess-bda3abc035e9","input_length":1073,"output_length":640,"hash_ids":[1880071,1880072,1880073],"delay":29097.0} +{"session_id":"sess-bda3abc035e9","input_length":730,"output_length":83,"hash_ids":[1880074,1880075],"delay":949.9} +{"session_id":"sess-bda3abc035e9","input_length":155,"output_length":395,"hash_ids":[1880076],"delay":2316.4} +{"session_id":"sess-bda3abc035e9","input_length":5503,"output_length":150,"hash_ids":[1880077,1880078,1880079,1880080,1880081,1880082,1880083,1880084,1880085,1880086,1880087],"delay":638.1} +{"session_id":"sess-bda3abc035e9","input_length":3078,"output_length":2448,"hash_ids":[1880088,1880089,1880090,1880091,1880092,1880093,1880094],"delay":1293.7} +{"session_id":"sess-bda3abc035e9","input_length":917,"output_length":123,"hash_ids":[1880095,1880096],"delay":5287.8} +{"session_id":"sess-bda3abc035e9","input_length":6421,"output_length":46,"hash_ids":[1880097,1880098,1880099,1880100,1880101,1880102,1880103,1880104,1880105,1880106,1880107,1880108,1880109],"delay":2353.9} +{"session_id":"sess-bda3abc035e9","input_length":1155,"output_length":802,"hash_ids":[1880110,1880111,1880112],"delay":3661.5} +{"session_id":"sess-bda3abc035e9","input_length":1844,"output_length":225,"hash_ids":[1880113,1880114,1880115,1880116],"delay":638.2} +{"session_id":"sess-bda3abc035e9","input_length":671,"output_length":42,"hash_ids":[1880117,1880118],"delay":303.7} +{"session_id":"sess-bda3abc035e9","input_length":3702,"output_length":102,"hash_ids":[1880119,1880120,1880121,1880122,1880123,1880124,1880125,1880126],"delay":2118.5} +{"session_id":"sess-fc60266d87b2","input_length":54489,"output_length":129,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,1884063,1884064,1884065,1884066],"timestamp":0.0,"group_id":15} +{"session_id":"sess-fc60266d87b2","input_length":3720,"output_length":192,"hash_ids":[1884067,1884068,1884069,1884070,1884071,1884072,1884073,1884074],"delay":20744.4} +{"session_id":"sess-fc60266d87b2","input_length":990,"output_length":291,"hash_ids":[1884075,1884076],"delay":22969.9} +{"session_id":"sess-fc60266d87b2","input_length":1085,"output_length":67,"hash_ids":[1884077,1884078,1884079],"delay":6815.3} +{"session_id":"sess-fc60266d87b2","input_length":7745,"output_length":193,"hash_ids":[1884080,1884081,1884082,1884083,1884084,1884085,1884086,1884087,1884088,1884089,1884090,1884091,1884092,1884093,1884094,1884095],"delay":5962.2} +{"session_id":"sess-fc60266d87b2","input_length":1100,"output_length":517,"hash_ids":[1884096,1884097,1884098],"delay":37122.1} +{"session_id":"sess-fc60266d87b2","input_length":2128,"output_length":1192,"hash_ids":[1884099,1884100,1884101,1884102,1884103],"delay":3282.1} +{"session_id":"sess-fc60266d87b2","input_length":1538,"output_length":48,"hash_ids":[1884104,1884105,1884106,1884107],"delay":903.9} +{"session_id":"sess-fc60266d87b2","input_length":774,"output_length":447,"hash_ids":[1884108,1884109],"delay":620.5} +{"session_id":"sess-fc60266d87b2","input_length":606,"output_length":637,"hash_ids":[1884110,1884111],"delay":33097.6} +{"session_id":"sess-fc60266d87b2","input_length":438,"output_length":355,"hash_ids":[1884112],"delay":731.4} +{"session_id":"sess-fc60266d87b2","input_length":3417,"output_length":1292,"hash_ids":[1884113,1884114,1884115,1884116,1884117,1884118,1884119],"delay":632.3} +{"session_id":"sess-fc60266d87b2","input_length":4600,"output_length":650,"hash_ids":[1884120,1884121,1884122,1884123,1884124,1884125,1884126,1884127,1884128],"delay":288.8} +{"session_id":"sess-fc60266d87b2","input_length":758,"output_length":166,"hash_ids":[1884129,1884130],"delay":7344.4} +{"session_id":"sess-fc60266d87b2","input_length":317,"output_length":114,"hash_ids":[1884131],"delay":6889.1} +{"session_id":"sess-fc60266d87b2","input_length":1174,"output_length":224,"hash_ids":[1884132,1884133,1884134],"delay":1434.5} +{"session_id":"sess-6b6014b0a2ac","input_length":58058,"output_length":218,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1888063,1888064,1888065,1888066,1888067,1888068,1888069,1888070,1888071,1888072,1888073],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6b6014b0a2ac","input_length":4149,"output_length":1584,"hash_ids":[1888074,1888075,1888076,1888077,1888078,1888079,1888080,1888081,1888082],"delay":217.4} +{"session_id":"sess-6b6014b0a2ac","input_length":3209,"output_length":708,"hash_ids":[1888083,1888084,1888085,1888086,1888087,1888088,1888089],"delay":4626.5} +{"session_id":"sess-6b6014b0a2ac","input_length":1802,"output_length":1633,"hash_ids":[1888090,1888091,1888092,1888093],"delay":2409.0} +{"session_id":"sess-6b6014b0a2ac","input_length":6928,"output_length":106,"hash_ids":[1888094,1888095,1888096,1888097,1888098,1888099,1888100,1888101,1888102,1888103,1888104,1888105,1888106,1888107],"delay":26703.3} +{"session_id":"sess-6b6014b0a2ac","input_length":800,"output_length":503,"hash_ids":[1888108,1888109],"delay":918.6} +{"session_id":"sess-6b6014b0a2ac","input_length":2188,"output_length":186,"hash_ids":[1888110,1888111,1888112,1888113,1888114],"delay":29751.0} +{"session_id":"sess-6b6014b0a2ac","input_length":387,"output_length":86,"hash_ids":[1888115],"delay":916.2} +{"session_id":"sess-6b6014b0a2ac","input_length":1533,"output_length":70,"hash_ids":[1888116,1888117,1888118],"delay":823.9} +{"session_id":"sess-6b6014b0a2ac","input_length":372,"output_length":69,"hash_ids":[1888119],"delay":776.4} +{"session_id":"sess-6b6014b0a2ac","input_length":1603,"output_length":116,"hash_ids":[1888120,1888121,1888122,1888123],"delay":11872.9} +{"session_id":"sess-6b6014b0a2ac","input_length":2641,"output_length":579,"hash_ids":[1888124,1888125,1888126,1888127,1888128,1888129],"delay":11985.8} +{"session_id":"sess-6b6014b0a2ac","input_length":851,"output_length":108,"hash_ids":[1888130,1888131],"delay":1511.8} +{"session_id":"sess-6b6014b0a2ac","input_length":363,"output_length":1717,"hash_ids":[1888132],"delay":1393.4} +{"session_id":"sess-6b6014b0a2ac","input_length":4947,"output_length":577,"hash_ids":[1888133,1888134,1888135,1888136,1888137,1888138,1888139,1888140,1888141,1888142],"delay":234.6} +{"session_id":"sess-6b6014b0a2ac","input_length":756,"output_length":90,"hash_ids":[1888143,1888144],"delay":298.1} +{"session_id":"sess-6b6014b0a2ac","input_length":1981,"output_length":1356,"hash_ids":[1888145,1888146,1888147,1888148],"delay":317.4} +{"session_id":"sess-6b6014b0a2ac","input_length":967,"output_length":1180,"hash_ids":[1888149,1888150],"delay":11491.1} +{"session_id":"sess-6b6014b0a2ac","input_length":4075,"output_length":323,"hash_ids":[1888151,1888152,1888153,1888154,1888155,1888156,1888157,1888158],"delay":5453.1} +{"session_id":"sess-6b6014b0a2ac","input_length":162,"output_length":812,"hash_ids":[1888159],"delay":6727.6} +{"session_id":"sess-6b6014b0a2ac","input_length":3439,"output_length":109,"hash_ids":[1888160,1888161,1888162,1888163,1888164,1888165,1888166],"delay":236.1} +{"session_id":"sess-6b6014b0a2ac","input_length":2368,"output_length":616,"hash_ids":[1888167,1888168,1888169,1888170,1888171],"delay":1072.7} +{"session_id":"sess-6b6014b0a2ac","input_length":8213,"output_length":308,"hash_ids":[1888172,1888173,1888174,1888175,1888176,1888177,1888178,1888179,1888180,1888181,1888182,1888183,1888184,1888185,1888186,1888187,1888188],"delay":4935.8} +{"session_id":"sess-6b6014b0a2ac","input_length":2168,"output_length":370,"hash_ids":[1888189,1888190,1888191,1888192,1888193],"delay":1035.9} +{"session_id":"sess-4c46a7533253","input_length":65149,"output_length":124,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1892063,1892064,1892065,1892066,1892067,1892068,1892069,1892070,1892071,1892072,1892073,1892074,1892075,1892076,1892077,1892078,1892079,1892080,1892081,1892082,1892083,1892084,1892085,1892086,1892087],"timestamp":0.0,"group_id":9} +{"session_id":"sess-4c46a7533253","input_length":2859,"output_length":458,"hash_ids":[1892088,1892089,1892090,1892091,1892092,1892093],"delay":1522.3} +{"session_id":"sess-34af726394d6","input_length":53909,"output_length":912,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,1896063,1896064,1896065],"timestamp":0.0,"group_id":47} +{"session_id":"sess-34af726394d6","input_length":1430,"output_length":138,"hash_ids":[1896066,1896067,1896068],"delay":640.6} +{"session_id":"sess-34af726394d6","input_length":1232,"output_length":172,"hash_ids":[1896069,1896070,1896071],"delay":47777.9} +{"session_id":"sess-34af726394d6","input_length":2025,"output_length":374,"hash_ids":[1896072,1896073,1896074,1896075],"delay":277.6} +{"session_id":"sess-34af726394d6","input_length":348,"output_length":254,"hash_ids":[1896076],"delay":8048.2} +{"session_id":"sess-34af726394d6","input_length":8795,"output_length":2666,"hash_ids":[1896077,1896078,1896079,1896080,1896081,1896082,1896083,1896084,1896085,1896086,1896087,1896088,1896089,1896090,1896091,1896092,1896093,1896094],"delay":688.5} +{"session_id":"sess-34af726394d6","input_length":919,"output_length":80,"hash_ids":[1896095,1896096],"delay":260.0} +{"session_id":"sess-34af726394d6","input_length":924,"output_length":585,"hash_ids":[1896097,1896098],"delay":41784.0} +{"session_id":"sess-34af726394d6","input_length":1087,"output_length":81,"hash_ids":[1896099,1896100,1896101],"delay":2976.4} +{"session_id":"sess-34af726394d6","input_length":1034,"output_length":181,"hash_ids":[1896102,1896103,1896104],"delay":1170.0} +{"session_id":"sess-34af726394d6","input_length":122,"output_length":197,"hash_ids":[1896105],"delay":436.6} +{"session_id":"sess-34af726394d6","input_length":920,"output_length":109,"hash_ids":[1896106,1896107],"delay":735.0} +{"session_id":"sess-34af726394d6","input_length":3288,"output_length":86,"hash_ids":[1896108,1896109,1896110,1896111,1896112,1896113,1896114],"delay":7114.5} +{"session_id":"sess-34af726394d6","input_length":1794,"output_length":1072,"hash_ids":[1896115,1896116,1896117,1896118],"delay":1141.3} +{"session_id":"sess-34af726394d6","input_length":3571,"output_length":980,"hash_ids":[1896119,1896120,1896121,1896122,1896123,1896124,1896125],"delay":776.4} +{"session_id":"sess-34af726394d6","input_length":1494,"output_length":476,"hash_ids":[1896126,1896127,1896128],"delay":932.2} +{"session_id":"sess-34af726394d6","input_length":2453,"output_length":1013,"hash_ids":[1896129,1896130,1896131,1896132,1896133],"delay":13226.9} +{"session_id":"sess-34af726394d6","input_length":5504,"output_length":100,"hash_ids":[1896134,1896135,1896136,1896137,1896138,1896139,1896140,1896141,1896142,1896143,1896144],"delay":611.7} +{"session_id":"sess-34af726394d6","input_length":830,"output_length":748,"hash_ids":[1896145,1896146],"delay":438.0} +{"session_id":"sess-34af726394d6","input_length":1180,"output_length":147,"hash_ids":[1896147,1896148,1896149],"delay":2159.0} +{"session_id":"sess-34af726394d6","input_length":776,"output_length":196,"hash_ids":[1896150,1896151],"delay":592.4} +{"session_id":"sess-34af726394d6","input_length":4705,"output_length":542,"hash_ids":[1896152,1896153,1896154,1896155,1896156,1896157,1896158,1896159,1896160,1896161],"delay":584.3} +{"session_id":"sess-34af726394d6","input_length":438,"output_length":357,"hash_ids":[1896162],"delay":599.0} +{"session_id":"sess-34af726394d6","input_length":2301,"output_length":1488,"hash_ids":[1896163,1896164,1896165,1896166,1896167],"delay":631.0} +{"session_id":"sess-34af726394d6","input_length":1119,"output_length":351,"hash_ids":[1896168,1896169,1896170],"delay":612.5} +{"session_id":"sess-34af726394d6","input_length":2611,"output_length":198,"hash_ids":[1896171,1896172,1896173,1896174,1896175,1896176],"delay":12587.8} +{"session_id":"sess-34af726394d6","input_length":6217,"output_length":234,"hash_ids":[1896177,1896178,1896179,1896180,1896181,1896182,1896183,1896184,1896185,1896186,1896187,1896188,1896189],"delay":338.1} +{"session_id":"sess-34af726394d6","input_length":3455,"output_length":604,"hash_ids":[1896190,1896191,1896192,1896193,1896194,1896195,1896196],"delay":107.1} +{"session_id":"sess-bdf121f4a71f","input_length":53447,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1900063,1900064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bdf121f4a71f","input_length":682,"output_length":53,"hash_ids":[1900065,1900066],"delay":702.6} +{"session_id":"sess-bdf121f4a71f","input_length":769,"output_length":53,"hash_ids":[1900067,1900068],"delay":13124.7} +{"session_id":"sess-bdf121f4a71f","input_length":2576,"output_length":150,"hash_ids":[1900069,1900070,1900071,1900072,1900073,1900074],"delay":4080.1} +{"session_id":"sess-bdf121f4a71f","input_length":516,"output_length":1243,"hash_ids":[1900075,1900076],"delay":192.2} +{"session_id":"sess-bdf121f4a71f","input_length":1795,"output_length":519,"hash_ids":[1900077,1900078,1900079,1900080],"delay":11979.1} +{"session_id":"sess-bdf121f4a71f","input_length":350,"output_length":1671,"hash_ids":[1900081],"delay":773.6} +{"session_id":"sess-bdf121f4a71f","input_length":767,"output_length":122,"hash_ids":[1900082,1900083],"delay":265.2} +{"session_id":"sess-bdf121f4a71f","input_length":1264,"output_length":634,"hash_ids":[1900084,1900085,1900086],"delay":1331.9} +{"session_id":"sess-bdf121f4a71f","input_length":2344,"output_length":318,"hash_ids":[1900087,1900088,1900089,1900090,1900091],"delay":22100.0} +{"session_id":"sess-bdf121f4a71f","input_length":768,"output_length":1748,"hash_ids":[1900092,1900093],"delay":506.1} +{"session_id":"sess-bdf121f4a71f","input_length":6319,"output_length":272,"hash_ids":[1900094,1900095,1900096,1900097,1900098,1900099,1900100,1900101,1900102,1900103,1900104,1900105,1900106],"delay":1306.4} +{"session_id":"sess-bdf121f4a71f","input_length":966,"output_length":169,"hash_ids":[1900107,1900108],"delay":4119.2} +{"session_id":"sess-bdf121f4a71f","input_length":858,"output_length":2353,"hash_ids":[1900109,1900110],"delay":29363.7} +{"session_id":"sess-bdf121f4a71f","input_length":203,"output_length":844,"hash_ids":[1900111],"delay":1044.8} +{"session_id":"sess-bdf121f4a71f","input_length":535,"output_length":436,"hash_ids":[1900112,1900113],"delay":17043.6} +{"session_id":"sess-bdf121f4a71f","input_length":4258,"output_length":171,"hash_ids":[1900114,1900115,1900116,1900117,1900118,1900119,1900120,1900121,1900122],"delay":38266.7} +{"session_id":"sess-bdf121f4a71f","input_length":1233,"output_length":462,"hash_ids":[1900123,1900124,1900125],"delay":520.9} +{"session_id":"sess-bdf121f4a71f","input_length":566,"output_length":981,"hash_ids":[1900126,1900127],"delay":1414.0} +{"session_id":"sess-bdf121f4a71f","input_length":1902,"output_length":385,"hash_ids":[1900128,1900129,1900130,1900131],"delay":2716.9} +{"session_id":"sess-bdf121f4a71f","input_length":6093,"output_length":33,"hash_ids":[1900132,1900133,1900134,1900135,1900136,1900137,1900138,1900139,1900140,1900141,1900142,1900143],"delay":461.6} +{"session_id":"sess-bdf121f4a71f","input_length":9510,"output_length":93,"hash_ids":[1900144,1900145,1900146,1900147,1900148,1900149,1900150,1900151,1900152,1900153,1900154,1900155,1900156,1900157,1900158,1900159,1900160,1900161,1900162],"delay":2326.7} +{"session_id":"sess-bdf121f4a71f","input_length":1606,"output_length":707,"hash_ids":[1900163,1900164,1900165,1900166],"delay":9608.9} +{"session_id":"sess-6ab03590d9ba","input_length":56376,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1904063,1904064,1904065,1904066,1904067,1904068,1904069,1904070],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6ab03590d9ba","input_length":2019,"output_length":332,"hash_ids":[1904071,1904072,1904073,1904074],"delay":6369.0} +{"session_id":"sess-6ab03590d9ba","input_length":370,"output_length":301,"hash_ids":[1904075],"delay":3672.1} +{"session_id":"sess-6ab03590d9ba","input_length":3352,"output_length":462,"hash_ids":[1904076,1904077,1904078,1904079,1904080,1904081,1904082],"delay":879.3} +{"session_id":"sess-6ab03590d9ba","input_length":2590,"output_length":88,"hash_ids":[1904083,1904084,1904085,1904086,1904087,1904088],"delay":796.2} +{"session_id":"sess-6ab03590d9ba","input_length":775,"output_length":811,"hash_ids":[1904089,1904090],"delay":1227.3} +{"session_id":"sess-6ab03590d9ba","input_length":2824,"output_length":77,"hash_ids":[1904091,1904092,1904093,1904094,1904095,1904096],"delay":39572.1} +{"session_id":"sess-6ab03590d9ba","input_length":5994,"output_length":80,"hash_ids":[1904097,1904098,1904099,1904100,1904101,1904102,1904103,1904104,1904105,1904106,1904107,1904108],"delay":19150.5} +{"session_id":"sess-6ab03590d9ba","input_length":4805,"output_length":646,"hash_ids":[1904109,1904110,1904111,1904112,1904113,1904114,1904115,1904116,1904117,1904118],"delay":3056.7} +{"session_id":"sess-6ab03590d9ba","input_length":246,"output_length":285,"hash_ids":[1904119],"delay":1672.9} +{"session_id":"sess-6ab03590d9ba","input_length":4988,"output_length":223,"hash_ids":[1904120,1904121,1904122,1904123,1904124,1904125,1904126,1904127,1904128,1904129],"delay":406.5} +{"session_id":"sess-6ab03590d9ba","input_length":1565,"output_length":128,"hash_ids":[1904130,1904131,1904132,1904133],"delay":595.5} +{"session_id":"sess-6ab03590d9ba","input_length":1386,"output_length":227,"hash_ids":[1904134,1904135,1904136],"delay":206.5} +{"session_id":"sess-6ab03590d9ba","input_length":624,"output_length":595,"hash_ids":[1904137,1904138],"delay":458.7} +{"session_id":"sess-6ab03590d9ba","input_length":1293,"output_length":651,"hash_ids":[1904139,1904140,1904141],"delay":588.6} +{"session_id":"sess-6ab03590d9ba","input_length":7648,"output_length":722,"hash_ids":[1904142,1904143,1904144,1904145,1904146,1904147,1904148,1904149,1904150,1904151,1904152,1904153,1904154,1904155,1904156],"delay":2025.6} +{"session_id":"sess-6ab03590d9ba","input_length":338,"output_length":87,"hash_ids":[1904157],"delay":356.1} +{"session_id":"sess-6ab03590d9ba","input_length":5105,"output_length":35,"hash_ids":[1904158,1904159,1904160,1904161,1904162,1904163,1904164,1904165,1904166,1904167],"delay":660.3} +{"session_id":"sess-6ab03590d9ba","input_length":1600,"output_length":533,"hash_ids":[1904168,1904169,1904170,1904171],"delay":10731.5} +{"session_id":"sess-6ab03590d9ba","input_length":986,"output_length":96,"hash_ids":[1904172,1904173],"delay":490.4} +{"session_id":"sess-6ab03590d9ba","input_length":9179,"output_length":344,"hash_ids":[1904174,1904175,1904176,1904177,1904178,1904179,1904180,1904181,1904182,1904183,1904184,1904185,1904186,1904187,1904188,1904189,1904190,1904191],"delay":288.0} +{"session_id":"sess-6ab03590d9ba","input_length":4583,"output_length":92,"hash_ids":[1904192,1904193,1904194,1904195,1904196,1904197,1904198,1904199,1904200],"delay":1370.8} +{"session_id":"sess-6ab03590d9ba","input_length":1684,"output_length":902,"hash_ids":[1904201,1904202,1904203,1904204],"delay":102.8} +{"session_id":"sess-fdad2f5a8cca","input_length":76176,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1908063,1908064,1908065,1908066,1908067,1908068,1908069,1908070,1908071,1908072,1908073,1908074,1908075,1908076,1908077,1908078,1908079,1908080,1908081,1908082,1908083,1908084,1908085,1908086,1908087,1908088,1908089,1908090,1908091,1908092,1908093,1908094,1908095,1908096,1908097,1908098,1908099,1908100,1908101,1908102,1908103,1908104,1908105,1908106,1908107,1908108],"timestamp":0.0,"group_id":3} +{"session_id":"sess-fdad2f5a8cca","input_length":2050,"output_length":74,"hash_ids":[1908109,1908110,1908111,1908112,1908113],"delay":827.7} +{"session_id":"sess-fdad2f5a8cca","input_length":1259,"output_length":61,"hash_ids":[1908114,1908115,1908116],"delay":10626.8} +{"session_id":"sess-fdad2f5a8cca","input_length":2639,"output_length":110,"hash_ids":[1908117,1908118,1908119,1908120,1908121,1908122],"delay":625.3} +{"session_id":"sess-fdad2f5a8cca","input_length":2248,"output_length":82,"hash_ids":[1908123,1908124,1908125,1908126,1908127],"delay":589.8} +{"session_id":"sess-fdad2f5a8cca","input_length":1785,"output_length":131,"hash_ids":[1908128,1908129,1908130,1908131],"delay":11171.0} +{"session_id":"sess-fdad2f5a8cca","input_length":593,"output_length":416,"hash_ids":[1908132,1908133],"delay":2245.0} +{"session_id":"sess-fdad2f5a8cca","input_length":602,"output_length":137,"hash_ids":[1908134,1908135],"delay":1124.6} +{"session_id":"sess-fdad2f5a8cca","input_length":5098,"output_length":395,"hash_ids":[1908136,1908137,1908138,1908139,1908140,1908141,1908142,1908143,1908144,1908145],"delay":1244.9} +{"session_id":"sess-fdad2f5a8cca","input_length":1137,"output_length":860,"hash_ids":[1908146,1908147,1908148],"delay":1153.9} +{"session_id":"sess-fdad2f5a8cca","input_length":2438,"output_length":828,"hash_ids":[1908149,1908150,1908151,1908152,1908153],"delay":218.7} +{"session_id":"sess-c003de0eb5ce","input_length":54701,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1912063,1912064,1912065,1912066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c003de0eb5ce","input_length":3398,"output_length":448,"hash_ids":[1912067,1912068,1912069,1912070,1912071,1912072,1912073],"delay":5919.3} +{"session_id":"sess-3ca1aa75f937","input_length":55398,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1916063,1916064,1916065,1916066,1916067,1916068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3ca1aa75f937","input_length":1192,"output_length":372,"hash_ids":[1916069,1916070,1916071],"delay":7549.8} +{"session_id":"sess-3ca1aa75f937","input_length":2949,"output_length":192,"hash_ids":[1916072,1916073,1916074,1916075,1916076,1916077],"delay":65790.5} +{"session_id":"sess-3ca1aa75f937","input_length":4203,"output_length":175,"hash_ids":[1916078,1916079,1916080,1916081,1916082,1916083,1916084,1916085,1916086],"delay":1645.9} +{"session_id":"sess-3ca1aa75f937","input_length":2738,"output_length":117,"hash_ids":[1916087,1916088,1916089,1916090,1916091,1916092],"delay":387.9} +{"session_id":"sess-3ca1aa75f937","input_length":6016,"output_length":394,"hash_ids":[1916093,1916094,1916095,1916096,1916097,1916098,1916099,1916100,1916101,1916102,1916103,1916104],"delay":1439.9} +{"session_id":"sess-3ca1aa75f937","input_length":1839,"output_length":244,"hash_ids":[1916105,1916106,1916107,1916108],"delay":1337.1} +{"session_id":"sess-3ca1aa75f937","input_length":3447,"output_length":253,"hash_ids":[1916109,1916110,1916111,1916112,1916113,1916114,1916115],"delay":848.7} +{"session_id":"sess-3ca1aa75f937","input_length":816,"output_length":492,"hash_ids":[1916116,1916117],"delay":3241.3} +{"session_id":"sess-3ca1aa75f937","input_length":1076,"output_length":407,"hash_ids":[1916118,1916119,1916120],"delay":2850.6} +{"session_id":"sess-3ca1aa75f937","input_length":2058,"output_length":126,"hash_ids":[1916121,1916122,1916123,1916124,1916125],"delay":3323.1} +{"session_id":"sess-65c87b513ed7","input_length":53263,"output_length":292,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1920063,1920064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1ab9dfc4a347","input_length":69045,"output_length":526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1924063,1924064,1924065,1924066,1924067,1924068,1924069,1924070,1924071,1924072,1924073,1924074,1924075,1924076,1924077,1924078,1924079,1924080,1924081,1924082,1924083,1924084,1924085,1924086,1924087,1924088,1924089,1924090,1924091,1924092,1924093,1924094],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1ab9dfc4a347","input_length":853,"output_length":30,"hash_ids":[1924095,1924096],"delay":780.4} +{"session_id":"sess-1ab9dfc4a347","input_length":2076,"output_length":1705,"hash_ids":[1924097,1924098,1924099,1924100,1924101],"delay":1084.6} +{"session_id":"sess-1ab9dfc4a347","input_length":5865,"output_length":169,"hash_ids":[1924102,1924103,1924104,1924105,1924106,1924107,1924108,1924109,1924110,1924111,1924112,1924113],"delay":6799.5} +{"session_id":"sess-1ab9dfc4a347","input_length":1925,"output_length":376,"hash_ids":[1924114,1924115,1924116,1924117],"delay":2700.5} +{"session_id":"sess-1ab9dfc4a347","input_length":1534,"output_length":266,"hash_ids":[1924118,1924119,1924120],"delay":101.1} +{"session_id":"sess-1c18265ae4df","input_length":57725,"output_length":383,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1928063,1928064,1928065,1928066,1928067,1928068,1928069,1928070,1928071,1928072],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1c18265ae4df","input_length":1676,"output_length":98,"hash_ids":[1928073,1928074,1928075,1928076],"delay":611.7} +{"session_id":"sess-1c18265ae4df","input_length":892,"output_length":1143,"hash_ids":[1928077,1928078],"delay":14272.2} +{"session_id":"sess-1c18265ae4df","input_length":513,"output_length":155,"hash_ids":[1928079,1928080],"delay":680.3} +{"session_id":"sess-1c18265ae4df","input_length":195,"output_length":1286,"hash_ids":[1928081],"delay":545.8} +{"session_id":"sess-1c18265ae4df","input_length":2237,"output_length":220,"hash_ids":[1928082,1928083,1928084,1928085,1928086],"delay":12603.6} +{"session_id":"sess-1c18265ae4df","input_length":285,"output_length":255,"hash_ids":[1928087],"delay":441.9} +{"session_id":"sess-1c18265ae4df","input_length":1291,"output_length":2232,"hash_ids":[1928088,1928089,1928090],"delay":1026.2} +{"session_id":"sess-1c18265ae4df","input_length":1499,"output_length":39,"hash_ids":[1928091,1928092,1928093],"delay":202.1} +{"session_id":"sess-1c18265ae4df","input_length":1088,"output_length":65,"hash_ids":[1928094,1928095,1928096],"delay":716.4} +{"session_id":"sess-1c18265ae4df","input_length":662,"output_length":94,"hash_ids":[1928097,1928098],"delay":452.9} +{"session_id":"sess-1c18265ae4df","input_length":7502,"output_length":684,"hash_ids":[1928099,1928100,1928101,1928102,1928103,1928104,1928105,1928106,1928107,1928108,1928109,1928110,1928111,1928112,1928113],"delay":874.6} +{"session_id":"sess-1c18265ae4df","input_length":465,"output_length":123,"hash_ids":[1928114],"delay":333.8} +{"session_id":"sess-1c18265ae4df","input_length":1109,"output_length":303,"hash_ids":[1928115,1928116,1928117],"delay":999.5} +{"session_id":"sess-1c18265ae4df","input_length":633,"output_length":48,"hash_ids":[1928118,1928119],"delay":1753.7} +{"session_id":"sess-1c18265ae4df","input_length":625,"output_length":385,"hash_ids":[1928120,1928121],"delay":1119.5} +{"session_id":"sess-faa8a9c53649","input_length":56167,"output_length":923,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,1932063,1932064,1932065,1932066,1932067,1932068,1932069],"timestamp":0.0,"group_id":20} +{"session_id":"sess-faa8a9c53649","input_length":2027,"output_length":198,"hash_ids":[1932070,1932071,1932072,1932073],"delay":440.5} +{"session_id":"sess-faa8a9c53649","input_length":2836,"output_length":1299,"hash_ids":[1932074,1932075,1932076,1932077,1932078,1932079],"delay":16577.1} +{"session_id":"sess-faa8a9c53649","input_length":8309,"output_length":535,"hash_ids":[1932080,1932081,1932082,1932083,1932084,1932085,1932086,1932087,1932088,1932089,1932090,1932091,1932092,1932093,1932094,1932095,1932096],"delay":15921.0} +{"session_id":"sess-e9f6bfd2f0c4","input_length":52877,"output_length":61,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1936063],"timestamp":0.0,"group_id":7} +{"session_id":"sess-e9f6bfd2f0c4","input_length":811,"output_length":119,"hash_ids":[1936064,1936065],"delay":1099.1} +{"session_id":"sess-e9f6bfd2f0c4","input_length":91,"output_length":639,"hash_ids":[1936066],"delay":1463.1} +{"session_id":"sess-e9f6bfd2f0c4","input_length":406,"output_length":293,"hash_ids":[1936067],"delay":434.5} +{"session_id":"sess-e9f6bfd2f0c4","input_length":5790,"output_length":1481,"hash_ids":[1936068,1936069,1936070,1936071,1936072,1936073,1936074,1936075,1936076,1936077,1936078,1936079],"delay":20926.2} +{"session_id":"sess-e9f6bfd2f0c4","input_length":3069,"output_length":528,"hash_ids":[1936080,1936081,1936082,1936083,1936084,1936085],"delay":3591.3} +{"session_id":"sess-e9f6bfd2f0c4","input_length":427,"output_length":245,"hash_ids":[1936086],"delay":2177.4} +{"session_id":"sess-e9f6bfd2f0c4","input_length":684,"output_length":61,"hash_ids":[1936087,1936088],"delay":2914.8} +{"session_id":"sess-e9f6bfd2f0c4","input_length":932,"output_length":295,"hash_ids":[1936089,1936090],"delay":513.2} +{"session_id":"sess-e9f6bfd2f0c4","input_length":5594,"output_length":454,"hash_ids":[1936091,1936092,1936093,1936094,1936095,1936096,1936097,1936098,1936099,1936100,1936101],"delay":5314.2} +{"session_id":"sess-a4c7899d9881","input_length":53277,"output_length":103,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1940063,1940064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a4c7899d9881","input_length":1110,"output_length":91,"hash_ids":[1940065,1940066,1940067],"delay":1787.4} +{"session_id":"sess-a4c7899d9881","input_length":5463,"output_length":381,"hash_ids":[1940068,1940069,1940070,1940071,1940072,1940073,1940074,1940075,1940076,1940077,1940078],"delay":646.2} +{"session_id":"sess-a4c7899d9881","input_length":1870,"output_length":292,"hash_ids":[1940079,1940080,1940081,1940082],"delay":910.5} +{"session_id":"sess-a4c7899d9881","input_length":3027,"output_length":49,"hash_ids":[1940083,1940084,1940085,1940086,1940087,1940088],"delay":736.0} +{"session_id":"sess-a4c7899d9881","input_length":4772,"output_length":1318,"hash_ids":[1940089,1940090,1940091,1940092,1940093,1940094,1940095,1940096,1940097,1940098],"delay":2370.2} +{"session_id":"sess-a4c7899d9881","input_length":1329,"output_length":1419,"hash_ids":[1940099,1940100,1940101],"delay":778.4} +{"session_id":"sess-a4c7899d9881","input_length":986,"output_length":138,"hash_ids":[1940102,1940103],"delay":1049.6} +{"session_id":"sess-a4c7899d9881","input_length":4645,"output_length":94,"hash_ids":[1940104,1940105,1940106,1940107,1940108,1940109,1940110,1940111,1940112,1940113],"delay":1384.6} +{"session_id":"sess-a4c7899d9881","input_length":197,"output_length":548,"hash_ids":[1940114],"delay":34501.8} +{"session_id":"sess-a4c7899d9881","input_length":2327,"output_length":207,"hash_ids":[1940115,1940116,1940117,1940118,1940119],"delay":764.8} +{"session_id":"sess-a4c7899d9881","input_length":1047,"output_length":642,"hash_ids":[1940120,1940121,1940122],"delay":11518.0} +{"session_id":"sess-a4c7899d9881","input_length":2279,"output_length":314,"hash_ids":[1940123,1940124,1940125,1940126,1940127],"delay":1935.7} +{"session_id":"sess-a4c7899d9881","input_length":1479,"output_length":340,"hash_ids":[1940128,1940129,1940130],"delay":1742.1} +{"session_id":"sess-a4c7899d9881","input_length":287,"output_length":208,"hash_ids":[1940131],"delay":1063.1} +{"session_id":"sess-a4c7899d9881","input_length":589,"output_length":72,"hash_ids":[1940132,1940133],"delay":1468.1} +{"session_id":"sess-a4c7899d9881","input_length":835,"output_length":530,"hash_ids":[1940134,1940135],"delay":1061.1} +{"session_id":"sess-a4c7899d9881","input_length":1212,"output_length":381,"hash_ids":[1940136,1940137,1940138],"delay":928.8} +{"session_id":"sess-a4c7899d9881","input_length":6812,"output_length":506,"hash_ids":[1940139,1940140,1940141,1940142,1940143,1940144,1940145,1940146,1940147,1940148,1940149,1940150,1940151,1940152],"delay":10278.1} +{"session_id":"sess-a4c7899d9881","input_length":1794,"output_length":175,"hash_ids":[1940153,1940154,1940155,1940156],"delay":499.6} +{"session_id":"sess-a4c7899d9881","input_length":1024,"output_length":502,"hash_ids":[1940157,1940158],"delay":1156.0} +{"session_id":"sess-a4c7899d9881","input_length":3096,"output_length":364,"hash_ids":[1940159,1940160,1940161,1940162,1940163,1940164,1940165],"delay":7994.6} +{"session_id":"sess-a4c7899d9881","input_length":2478,"output_length":169,"hash_ids":[1940166,1940167,1940168,1940169,1940170],"delay":2055.4} +{"session_id":"sess-a4c7899d9881","input_length":3242,"output_length":122,"hash_ids":[1940171,1940172,1940173,1940174,1940175,1940176,1940177],"delay":28003.5} +{"session_id":"sess-a4c7899d9881","input_length":6153,"output_length":278,"hash_ids":[1940178,1940179,1940180,1940181,1940182,1940183,1940184,1940185,1940186,1940187,1940188,1940189,1940190],"delay":5968.4} +{"session_id":"sess-a4c7899d9881","input_length":1142,"output_length":123,"hash_ids":[1940191,1940192,1940193],"delay":1273.7} +{"session_id":"sess-a4c7899d9881","input_length":2061,"output_length":184,"hash_ids":[1940194,1940195,1940196,1940197,1940198],"delay":4500.7} +{"session_id":"sess-a4c7899d9881","input_length":4440,"output_length":141,"hash_ids":[1940199,1940200,1940201,1940202,1940203,1940204,1940205,1940206,1940207],"delay":483.6} +{"session_id":"sess-3d55797c9afa","input_length":55301,"output_length":550,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1944063,1944064,1944065,1944066,1944067,1944068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3d55797c9afa","input_length":1618,"output_length":2480,"hash_ids":[1944069,1944070,1944071,1944072],"delay":1212.8} +{"session_id":"sess-3d55797c9afa","input_length":902,"output_length":118,"hash_ids":[1944073,1944074],"delay":3303.5} +{"session_id":"sess-3d55797c9afa","input_length":1100,"output_length":299,"hash_ids":[1944075,1944076,1944077],"delay":2320.5} +{"session_id":"sess-3d55797c9afa","input_length":1571,"output_length":226,"hash_ids":[1944078,1944079,1944080,1944081],"delay":1798.9} +{"session_id":"sess-3d55797c9afa","input_length":334,"output_length":458,"hash_ids":[1944082],"delay":1024.0} +{"session_id":"sess-3d55797c9afa","input_length":2434,"output_length":160,"hash_ids":[1944083,1944084,1944085,1944086,1944087],"delay":710.9} +{"session_id":"sess-3d55797c9afa","input_length":2467,"output_length":196,"hash_ids":[1944088,1944089,1944090,1944091,1944092],"delay":59716.4} +{"session_id":"sess-3d55797c9afa","input_length":6011,"output_length":102,"hash_ids":[1944093,1944094,1944095,1944096,1944097,1944098,1944099,1944100,1944101,1944102,1944103,1944104],"delay":1268.3} +{"session_id":"sess-3d55797c9afa","input_length":529,"output_length":649,"hash_ids":[1944105,1944106],"delay":3849.3} +{"session_id":"sess-3d55797c9afa","input_length":1399,"output_length":56,"hash_ids":[1944107,1944108,1944109],"delay":483.6} +{"session_id":"sess-3d55797c9afa","input_length":3875,"output_length":1473,"hash_ids":[1944110,1944111,1944112,1944113,1944114,1944115,1944116,1944117],"delay":7285.6} +{"session_id":"sess-3d55797c9afa","input_length":3857,"output_length":976,"hash_ids":[1944118,1944119,1944120,1944121,1944122,1944123,1944124,1944125],"delay":2404.6} +{"session_id":"sess-3d55797c9afa","input_length":2326,"output_length":119,"hash_ids":[1944126,1944127,1944128,1944129,1944130],"delay":383.7} +{"session_id":"sess-3d55797c9afa","input_length":238,"output_length":108,"hash_ids":[1944131],"delay":615.3} +{"session_id":"sess-3d55797c9afa","input_length":1608,"output_length":932,"hash_ids":[1944132,1944133,1944134,1944135],"delay":704.8} +{"session_id":"sess-c573c3e9c07e","input_length":59024,"output_length":1283,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1948063,1948064,1948065,1948066,1948067,1948068,1948069,1948070,1948071,1948072,1948073,1948074,1948075],"timestamp":0.0,"group_id":4} +{"session_id":"sess-c573c3e9c07e","input_length":1417,"output_length":560,"hash_ids":[1948076,1948077,1948078],"delay":965.6} +{"session_id":"sess-c573c3e9c07e","input_length":207,"output_length":141,"hash_ids":[1948079],"delay":19243.2} +{"session_id":"sess-c573c3e9c07e","input_length":1086,"output_length":121,"hash_ids":[1948080,1948081,1948082],"delay":1816.7} +{"session_id":"sess-c573c3e9c07e","input_length":981,"output_length":75,"hash_ids":[1948083,1948084],"delay":1165.0} +{"session_id":"sess-c573c3e9c07e","input_length":463,"output_length":586,"hash_ids":[1948085],"delay":1286.9} +{"session_id":"sess-c573c3e9c07e","input_length":1667,"output_length":307,"hash_ids":[1948086,1948087,1948088,1948089],"delay":251.3} +{"session_id":"sess-c573c3e9c07e","input_length":205,"output_length":446,"hash_ids":[1948090],"delay":941.5} +{"session_id":"sess-8eb2763b74fb","input_length":52950,"output_length":491,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,1952063],"timestamp":0.0,"group_id":3} +{"session_id":"sess-c9f35c1ed802","input_length":65431,"output_length":189,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,1956063,1956064,1956065,1956066,1956067,1956068,1956069,1956070,1956071,1956072,1956073,1956074,1956075,1956076,1956077,1956078,1956079,1956080,1956081,1956082,1956083,1956084,1956085,1956086,1956087],"timestamp":0.0,"group_id":33} +{"session_id":"sess-c9f35c1ed802","input_length":3356,"output_length":302,"hash_ids":[1956088,1956089,1956090,1956091,1956092,1956093,1956094],"delay":727.5} +{"session_id":"sess-c9f35c1ed802","input_length":932,"output_length":123,"hash_ids":[1956095,1956096],"delay":10936.7} +{"session_id":"sess-c9f35c1ed802","input_length":790,"output_length":54,"hash_ids":[1956097,1956098],"delay":1280.1} +{"session_id":"sess-c9f35c1ed802","input_length":267,"output_length":229,"hash_ids":[1956099],"delay":361.4} +{"session_id":"sess-c9f35c1ed802","input_length":7319,"output_length":1169,"hash_ids":[1956100,1956101,1956102,1956103,1956104,1956105,1956106,1956107,1956108,1956109,1956110,1956111,1956112,1956113,1956114],"delay":2612.3} +{"session_id":"sess-c9f35c1ed802","input_length":2432,"output_length":319,"hash_ids":[1956115,1956116,1956117,1956118,1956119],"delay":188.9} +{"session_id":"sess-c9f35c1ed802","input_length":770,"output_length":386,"hash_ids":[1956120,1956121],"delay":19694.9} +{"session_id":"sess-c9f35c1ed802","input_length":458,"output_length":1825,"hash_ids":[1956122],"delay":931.6} +{"session_id":"sess-c9f35c1ed802","input_length":2751,"output_length":903,"hash_ids":[1956123,1956124,1956125,1956126,1956127,1956128],"delay":1059.7} +{"session_id":"sess-2129772cf3ad","input_length":54710,"output_length":664,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,1960063,1960064,1960065,1960066],"timestamp":0.0,"group_id":12} +{"session_id":"sess-2129772cf3ad","input_length":965,"output_length":379,"hash_ids":[1960067,1960068],"delay":1762.8} +{"session_id":"sess-2129772cf3ad","input_length":3459,"output_length":50,"hash_ids":[1960069,1960070,1960071,1960072,1960073,1960074,1960075],"delay":17177.1} +{"session_id":"sess-2129772cf3ad","input_length":439,"output_length":113,"hash_ids":[1960076],"delay":335.9} +{"session_id":"sess-2129772cf3ad","input_length":4743,"output_length":281,"hash_ids":[1960077,1960078,1960079,1960080,1960081,1960082,1960083,1960084,1960085,1960086],"delay":15337.0} +{"session_id":"sess-2129772cf3ad","input_length":6221,"output_length":257,"hash_ids":[1960087,1960088,1960089,1960090,1960091,1960092,1960093,1960094,1960095,1960096,1960097,1960098,1960099],"delay":372.5} +{"session_id":"sess-2ca60b7daaee","input_length":52639,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502],"timestamp":0.0,"group_id":17} +{"session_id":"sess-2ca60b7daaee","input_length":6732,"output_length":387,"hash_ids":[1960100,1960101,1960102,1960103,1960104,1960105,1960106,1960107,1960108,1960109,1960110,1960111,1960112,1960113],"delay":11133.0} +{"session_id":"sess-2ca60b7daaee","input_length":2846,"output_length":48,"hash_ids":[1960114,1960115,1960116,1960117,1960118,1960119],"delay":113.7} +{"session_id":"sess-2ca60b7daaee","input_length":1030,"output_length":612,"hash_ids":[1960120,1960121,1960122],"delay":4428.9} +{"session_id":"sess-2ca60b7daaee","input_length":3124,"output_length":1764,"hash_ids":[1960123,1960124,1960125,1960126,1960127,1960128,1960129],"delay":718.5} +{"session_id":"sess-2ca60b7daaee","input_length":9423,"output_length":60,"hash_ids":[1960130,1960131,1960132,1960133,1960134,1960135,1960136,1960137,1960138,1960139,1960140,1960141,1960142,1960143,1960144,1960145,1960146,1960147,1960148],"delay":37594.7} +{"session_id":"sess-2ca60b7daaee","input_length":2221,"output_length":577,"hash_ids":[1960149,1960150,1960151,1960152,1960153],"delay":307.3} +{"session_id":"sess-2ca60b7daaee","input_length":719,"output_length":532,"hash_ids":[1960154,1960155],"delay":1223.9} +{"session_id":"sess-40f4eb58a73f","input_length":70267,"output_length":309,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,1968063,1968064,1968065,1968066,1968067,1968068,1968069,1968070,1968071,1968072,1968073,1968074,1968075,1968076,1968077,1968078,1968079,1968080,1968081,1968082,1968083,1968084,1968085,1968086,1968087,1968088,1968089,1968090,1968091,1968092,1968093,1968094,1968095,1968096,1968097],"timestamp":0.0,"group_id":4} +{"session_id":"sess-40f4eb58a73f","input_length":1229,"output_length":856,"hash_ids":[1968098,1968099,1968100],"delay":751.6} +{"session_id":"sess-40f4eb58a73f","input_length":4282,"output_length":88,"hash_ids":[1968101,1968102,1968103,1968104,1968105,1968106,1968107,1968108,1968109],"delay":13448.3} +{"session_id":"sess-40f4eb58a73f","input_length":858,"output_length":264,"hash_ids":[1968110,1968111],"delay":4483.5} +{"session_id":"sess-40f4eb58a73f","input_length":1003,"output_length":1197,"hash_ids":[1968112,1968113],"delay":1188.3} +{"session_id":"sess-40f4eb58a73f","input_length":1748,"output_length":71,"hash_ids":[1968114,1968115,1968116,1968117],"delay":864.6} +{"session_id":"sess-40f4eb58a73f","input_length":1423,"output_length":316,"hash_ids":[1968118,1968119,1968120],"delay":750.6} +{"session_id":"sess-40f4eb58a73f","input_length":2566,"output_length":260,"hash_ids":[1968121,1968122,1968123,1968124,1968125,1968126],"delay":6063.7} +{"session_id":"sess-40f4eb58a73f","input_length":1492,"output_length":425,"hash_ids":[1968127,1968128,1968129],"delay":1541.4} +{"session_id":"sess-40f4eb58a73f","input_length":3336,"output_length":866,"hash_ids":[1968130,1968131,1968132,1968133,1968134,1968135,1968136],"delay":1662.9} +{"session_id":"sess-40f4eb58a73f","input_length":4935,"output_length":328,"hash_ids":[1968137,1968138,1968139,1968140,1968141,1968142,1968143,1968144,1968145,1968146],"delay":977.7} +{"session_id":"sess-40f4eb58a73f","input_length":1972,"output_length":245,"hash_ids":[1968147,1968148,1968149,1968150],"delay":17729.5} +{"session_id":"sess-40f4eb58a73f","input_length":472,"output_length":713,"hash_ids":[1968151],"delay":3074.7} +{"session_id":"sess-40f4eb58a73f","input_length":2861,"output_length":266,"hash_ids":[1968152,1968153,1968154,1968155,1968156,1968157],"delay":5180.0} +{"session_id":"sess-40f4eb58a73f","input_length":1154,"output_length":148,"hash_ids":[1968158,1968159,1968160],"delay":10692.8} +{"session_id":"sess-40f4eb58a73f","input_length":2418,"output_length":543,"hash_ids":[1968161,1968162,1968163,1968164,1968165],"delay":230.5} +{"session_id":"sess-40f4eb58a73f","input_length":111,"output_length":254,"hash_ids":[1968166],"delay":261.1} +{"session_id":"sess-40f4eb58a73f","input_length":1276,"output_length":95,"hash_ids":[1968167,1968168,1968169],"delay":1935.7} +{"session_id":"sess-40f4eb58a73f","input_length":1152,"output_length":597,"hash_ids":[1968170,1968171,1968172],"delay":417.7} +{"session_id":"sess-40f4eb58a73f","input_length":259,"output_length":790,"hash_ids":[1968173],"delay":5912.6} +{"session_id":"sess-40f4eb58a73f","input_length":495,"output_length":266,"hash_ids":[1968174],"delay":280.4} +{"session_id":"sess-40f4eb58a73f","input_length":4847,"output_length":340,"hash_ids":[1968175,1968176,1968177,1968178,1968179,1968180,1968181,1968182,1968183,1968184],"delay":312.8} +{"session_id":"sess-40f4eb58a73f","input_length":742,"output_length":1357,"hash_ids":[1968185,1968186],"delay":352.1} +{"session_id":"sess-40f4eb58a73f","input_length":1654,"output_length":46,"hash_ids":[1968187,1968188,1968189,1968190],"delay":1249.9} +{"session_id":"sess-40f4eb58a73f","input_length":4213,"output_length":110,"hash_ids":[1968191,1968192,1968193,1968194,1968195,1968196,1968197,1968198,1968199],"delay":316.8} +{"session_id":"sess-40f4eb58a73f","input_length":927,"output_length":120,"hash_ids":[1968200,1968201],"delay":1453.7} +{"session_id":"sess-c4a94dc71239","input_length":54235,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,1972063,1972064,1972065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c4a94dc71239","input_length":7863,"output_length":541,"hash_ids":[1972066,1972067,1972068,1972069,1972070,1972071,1972072,1972073,1972074,1972075,1972076,1972077,1972078,1972079,1972080,1972081],"delay":1012.0} +{"session_id":"sess-c4a94dc71239","input_length":4986,"output_length":187,"hash_ids":[1972082,1972083,1972084,1972085,1972086,1972087,1972088,1972089,1972090,1972091],"delay":42246.9} +{"session_id":"sess-c4a94dc71239","input_length":8453,"output_length":237,"hash_ids":[1972092,1972093,1972094,1972095,1972096,1972097,1972098,1972099,1972100,1972101,1972102,1972103,1972104,1972105,1972106,1972107,1972108],"delay":2691.0} +{"session_id":"sess-c4a94dc71239","input_length":524,"output_length":365,"hash_ids":[1972109,1972110],"delay":20829.7} +{"session_id":"sess-c4a94dc71239","input_length":3294,"output_length":223,"hash_ids":[1972111,1972112,1972113,1972114,1972115,1972116,1972117],"delay":1190.5} +{"session_id":"sess-c4a94dc71239","input_length":1497,"output_length":860,"hash_ids":[1972118,1972119,1972120],"delay":4104.6} +{"session_id":"sess-c4a94dc71239","input_length":1605,"output_length":270,"hash_ids":[1972121,1972122,1972123,1972124],"delay":928.1} +{"session_id":"sess-c4a94dc71239","input_length":1400,"output_length":136,"hash_ids":[1972125,1972126,1972127],"delay":707.8} +{"session_id":"sess-c4a94dc71239","input_length":6681,"output_length":291,"hash_ids":[1972128,1972129,1972130,1972131,1972132,1972133,1972134,1972135,1972136,1972137,1972138,1972139,1972140,1972141],"delay":967.8} +{"session_id":"sess-c4a94dc71239","input_length":2674,"output_length":314,"hash_ids":[1972142,1972143,1972144,1972145,1972146,1972147],"delay":17468.5} +{"session_id":"sess-c4a94dc71239","input_length":1538,"output_length":48,"hash_ids":[1972148,1972149,1972150,1972151],"delay":1074.9} +{"session_id":"sess-c4a94dc71239","input_length":1657,"output_length":1634,"hash_ids":[1972152,1972153,1972154,1972155],"delay":353.5} +{"session_id":"sess-c4a94dc71239","input_length":1010,"output_length":157,"hash_ids":[1972156,1972157],"delay":368.6} +{"session_id":"sess-c4a94dc71239","input_length":1704,"output_length":42,"hash_ids":[1972158,1972159,1972160,1972161],"delay":176.0} +{"session_id":"sess-c4a94dc71239","input_length":3456,"output_length":37,"hash_ids":[1972162,1972163,1972164,1972165,1972166,1972167,1972168],"delay":755.0} +{"session_id":"sess-c4a94dc71239","input_length":2191,"output_length":193,"hash_ids":[1972169,1972170,1972171,1972172,1972173],"delay":1449.6} +{"session_id":"sess-c4a94dc71239","input_length":819,"output_length":229,"hash_ids":[1972174,1972175],"delay":1281.8} +{"session_id":"sess-c4a94dc71239","input_length":799,"output_length":611,"hash_ids":[1972176,1972177],"delay":308.7} +{"session_id":"sess-c4a94dc71239","input_length":6751,"output_length":231,"hash_ids":[1972178,1972179,1972180,1972181,1972182,1972183,1972184,1972185,1972186,1972187,1972188,1972189,1972190,1972191],"delay":321.1} +{"session_id":"sess-c4a94dc71239","input_length":7849,"output_length":582,"hash_ids":[1972192,1972193,1972194,1972195,1972196,1972197,1972198,1972199,1972200,1972201,1972202,1972203,1972204,1972205,1972206,1972207],"delay":1788.1} +{"session_id":"sess-64af10baf119","input_length":55897,"output_length":46,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1976063,1976064,1976065,1976066,1976067,1976068,1976069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-64af10baf119","input_length":1308,"output_length":265,"hash_ids":[1976070,1976071,1976072],"delay":645.1} +{"session_id":"sess-64af10baf119","input_length":993,"output_length":121,"hash_ids":[1976073,1976074],"delay":3020.1} +{"session_id":"sess-64af10baf119","input_length":1064,"output_length":86,"hash_ids":[1976075,1976076,1976077],"delay":537.5} +{"session_id":"sess-64af10baf119","input_length":6636,"output_length":685,"hash_ids":[1976078,1976079,1976080,1976081,1976082,1976083,1976084,1976085,1976086,1976087,1976088,1976089,1976090],"delay":18120.3} +{"session_id":"sess-64af10baf119","input_length":1043,"output_length":798,"hash_ids":[1976091,1976092,1976093],"delay":414.5} +{"session_id":"sess-64af10baf119","input_length":320,"output_length":258,"hash_ids":[1976094],"delay":958.7} +{"session_id":"sess-64af10baf119","input_length":8588,"output_length":171,"hash_ids":[1976095,1976096,1976097,1976098,1976099,1976100,1976101,1976102,1976103,1976104,1976105,1976106,1976107,1976108,1976109,1976110,1976111],"delay":518.7} +{"session_id":"sess-64af10baf119","input_length":958,"output_length":244,"hash_ids":[1976112,1976113],"delay":215.1} +{"session_id":"sess-64af10baf119","input_length":3029,"output_length":171,"hash_ids":[1976114,1976115,1976116,1976117,1976118,1976119],"delay":2461.6} +{"session_id":"sess-64af10baf119","input_length":805,"output_length":60,"hash_ids":[1976120,1976121],"delay":3609.5} +{"session_id":"sess-64af10baf119","input_length":969,"output_length":140,"hash_ids":[1976122,1976123],"delay":18916.7} +{"session_id":"sess-64af10baf119","input_length":1120,"output_length":424,"hash_ids":[1976124,1976125,1976126],"delay":2601.5} +{"session_id":"sess-64af10baf119","input_length":5354,"output_length":433,"hash_ids":[1976127,1976128,1976129,1976130,1976131,1976132,1976133,1976134,1976135,1976136,1976137],"delay":2130.4} +{"session_id":"sess-64af10baf119","input_length":2972,"output_length":406,"hash_ids":[1976138,1976139,1976140,1976141,1976142,1976143],"delay":4926.1} +{"session_id":"sess-7b0a8e9bca24","input_length":61928,"output_length":348,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,1980063,1980064,1980065,1980066,1980067,1980068,1980069,1980070,1980071,1980072,1980073,1980074,1980075,1980076,1980077,1980078,1980079,1980080],"timestamp":0.0,"group_id":2} +{"session_id":"sess-7b0a8e9bca24","input_length":3451,"output_length":346,"hash_ids":[1980081,1980082,1980083,1980084,1980085,1980086,1980087],"delay":679.1} +{"session_id":"sess-7b0a8e9bca24","input_length":1158,"output_length":129,"hash_ids":[1980088,1980089,1980090],"delay":694.6} +{"session_id":"sess-7b0a8e9bca24","input_length":4331,"output_length":89,"hash_ids":[1980091,1980092,1980093,1980094,1980095,1980096,1980097,1980098,1980099],"delay":1106.7} +{"session_id":"sess-7b0a8e9bca24","input_length":4660,"output_length":209,"hash_ids":[1980100,1980101,1980102,1980103,1980104,1980105,1980106,1980107,1980108,1980109],"delay":671.2} +{"session_id":"sess-7b0a8e9bca24","input_length":629,"output_length":100,"hash_ids":[1980110,1980111],"delay":904.8} +{"session_id":"sess-7b0a8e9bca24","input_length":1418,"output_length":393,"hash_ids":[1980112,1980113,1980114],"delay":611.2} +{"session_id":"sess-7b0a8e9bca24","input_length":564,"output_length":64,"hash_ids":[1980115,1980116],"delay":2772.7} +{"session_id":"sess-7b0a8e9bca24","input_length":2055,"output_length":397,"hash_ids":[1980117,1980118,1980119,1980120,1980121],"delay":7060.3} +{"session_id":"sess-7b0a8e9bca24","input_length":2253,"output_length":727,"hash_ids":[1980122,1980123,1980124,1980125,1980126],"delay":12113.1} +{"session_id":"sess-7b0a8e9bca24","input_length":6392,"output_length":220,"hash_ids":[1980127,1980128,1980129,1980130,1980131,1980132,1980133,1980134,1980135,1980136,1980137,1980138,1980139],"delay":2034.3} +{"session_id":"sess-7b0a8e9bca24","input_length":295,"output_length":243,"hash_ids":[1980140],"delay":1062.7} +{"session_id":"sess-7b0a8e9bca24","input_length":1090,"output_length":100,"hash_ids":[1980141,1980142,1980143],"delay":8233.1} +{"session_id":"sess-7b0a8e9bca24","input_length":445,"output_length":121,"hash_ids":[1980144],"delay":19744.0} +{"session_id":"sess-7b0a8e9bca24","input_length":4513,"output_length":423,"hash_ids":[1980145,1980146,1980147,1980148,1980149,1980150,1980151,1980152,1980153],"delay":645.9} +{"session_id":"sess-7b0a8e9bca24","input_length":1762,"output_length":441,"hash_ids":[1980154,1980155,1980156,1980157],"delay":33691.9} +{"session_id":"sess-7b0a8e9bca24","input_length":2057,"output_length":959,"hash_ids":[1980158,1980159,1980160,1980161,1980162],"delay":9362.1} +{"session_id":"sess-7b0a8e9bca24","input_length":1637,"output_length":190,"hash_ids":[1980163,1980164,1980165,1980166],"delay":755.5} +{"session_id":"sess-523e7be6060e","input_length":59911,"output_length":503,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,1984063,1984064,1984065,1984066,1984067,1984068,1984069,1984070,1984071,1984072,1984073,1984074,1984075,1984076,1984077],"timestamp":0.0,"group_id":15} +{"session_id":"sess-523e7be6060e","input_length":710,"output_length":986,"hash_ids":[1984078,1984079],"delay":531.8} +{"session_id":"sess-523e7be6060e","input_length":743,"output_length":527,"hash_ids":[1984080,1984081],"delay":975.0} +{"session_id":"sess-523e7be6060e","input_length":759,"output_length":189,"hash_ids":[1984082,1984083],"delay":1238.9} +{"session_id":"sess-523e7be6060e","input_length":820,"output_length":463,"hash_ids":[1984084,1984085],"delay":212.2} +{"session_id":"sess-523e7be6060e","input_length":1194,"output_length":554,"hash_ids":[1984086,1984087,1984088],"delay":551.3} +{"session_id":"sess-523e7be6060e","input_length":6057,"output_length":125,"hash_ids":[1984089,1984090,1984091,1984092,1984093,1984094,1984095,1984096,1984097,1984098,1984099,1984100],"delay":1191.0} +{"session_id":"sess-523e7be6060e","input_length":652,"output_length":162,"hash_ids":[1984101,1984102],"delay":676.9} +{"session_id":"sess-523e7be6060e","input_length":802,"output_length":758,"hash_ids":[1984103,1984104],"delay":326.6} +{"session_id":"sess-523e7be6060e","input_length":497,"output_length":151,"hash_ids":[1984105],"delay":785.3} +{"session_id":"sess-523e7be6060e","input_length":263,"output_length":80,"hash_ids":[1984106],"delay":904.8} +{"session_id":"sess-523e7be6060e","input_length":7779,"output_length":408,"hash_ids":[1984107,1984108,1984109,1984110,1984111,1984112,1984113,1984114,1984115,1984116,1984117,1984118,1984119,1984120,1984121,1984122],"delay":1028.4} +{"session_id":"sess-523e7be6060e","input_length":1036,"output_length":366,"hash_ids":[1984123,1984124,1984125],"delay":4312.8} +{"session_id":"sess-523e7be6060e","input_length":5708,"output_length":1807,"hash_ids":[1984126,1984127,1984128,1984129,1984130,1984131,1984132,1984133,1984134,1984135,1984136,1984137],"delay":1381.7} +{"session_id":"sess-523e7be6060e","input_length":1542,"output_length":412,"hash_ids":[1984138,1984139,1984140,1984141],"delay":323.3} +{"session_id":"sess-523e7be6060e","input_length":4010,"output_length":550,"hash_ids":[1984142,1984143,1984144,1984145,1984146,1984147,1984148,1984149],"delay":786.7} +{"session_id":"sess-523e7be6060e","input_length":3694,"output_length":806,"hash_ids":[1984150,1984151,1984152,1984153,1984154,1984155,1984156,1984157],"delay":2301.1} +{"session_id":"sess-523e7be6060e","input_length":1847,"output_length":1087,"hash_ids":[1984158,1984159,1984160,1984161],"delay":233.0} +{"session_id":"sess-523e7be6060e","input_length":984,"output_length":1401,"hash_ids":[1984162,1984163],"delay":5970.0} +{"session_id":"sess-523e7be6060e","input_length":1643,"output_length":137,"hash_ids":[1984164,1984165,1984166,1984167],"delay":1458.5} +{"session_id":"sess-e7860e9a2c93","input_length":74054,"output_length":1048,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1988063,1988064,1988065,1988066,1988067,1988068,1988069,1988070,1988071,1988072,1988073,1988074,1988075,1988076,1988077,1988078,1988079,1988080,1988081,1988082,1988083,1988084,1988085,1988086,1988087,1988088,1988089,1988090,1988091,1988092,1988093,1988094,1988095,1988096,1988097,1988098,1988099,1988100,1988101,1988102,1988103,1988104],"timestamp":0.0,"group_id":9} +{"session_id":"sess-a7e74965dabb","input_length":62465,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,1992063,1992064,1992065,1992066,1992067,1992068,1992069,1992070,1992071,1992072,1992073,1992074,1992075,1992076,1992077,1992078,1992079,1992080,1992081,1992082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a7e74965dabb","input_length":5162,"output_length":153,"hash_ids":[1992083,1992084,1992085,1992086,1992087,1992088,1992089,1992090,1992091,1992092,1992093],"delay":3954.2} +{"session_id":"sess-a7e74965dabb","input_length":590,"output_length":120,"hash_ids":[1992094,1992095],"delay":799.5} +{"session_id":"sess-a7e74965dabb","input_length":2361,"output_length":229,"hash_ids":[1992096,1992097,1992098,1992099,1992100],"delay":886.1} +{"session_id":"sess-a7e74965dabb","input_length":4233,"output_length":57,"hash_ids":[1992101,1992102,1992103,1992104,1992105,1992106,1992107,1992108,1992109],"delay":1351.7} +{"session_id":"sess-a7e74965dabb","input_length":2185,"output_length":320,"hash_ids":[1992110,1992111,1992112,1992113,1992114],"delay":11306.5} +{"session_id":"sess-a7e74965dabb","input_length":1119,"output_length":491,"hash_ids":[1992115,1992116,1992117],"delay":354.4} +{"session_id":"sess-a7e74965dabb","input_length":9899,"output_length":395,"hash_ids":[1992118,1992119,1992120,1992121,1992122,1992123,1992124,1992125,1992126,1992127,1992128,1992129,1992130,1992131,1992132,1992133,1992134,1992135,1992136,1992137],"delay":8912.5} +{"session_id":"sess-a7e74965dabb","input_length":1795,"output_length":787,"hash_ids":[1992138,1992139,1992140,1992141],"delay":716.4} +{"session_id":"sess-a7e74965dabb","input_length":1484,"output_length":338,"hash_ids":[1992142,1992143,1992144],"delay":1588.6} +{"session_id":"sess-a7e74965dabb","input_length":3770,"output_length":108,"hash_ids":[1992145,1992146,1992147,1992148,1992149,1992150,1992151,1992152],"delay":713.9} +{"session_id":"sess-a7e74965dabb","input_length":1734,"output_length":103,"hash_ids":[1992153,1992154,1992155,1992156],"delay":17270.9} +{"session_id":"sess-a7e74965dabb","input_length":1755,"output_length":138,"hash_ids":[1992157,1992158,1992159,1992160],"delay":3604.0} +{"session_id":"sess-a7e74965dabb","input_length":680,"output_length":290,"hash_ids":[1992161,1992162],"delay":26555.7} +{"session_id":"sess-a7e74965dabb","input_length":3660,"output_length":141,"hash_ids":[1992163,1992164,1992165,1992166,1992167,1992168,1992169,1992170],"delay":235.6} +{"session_id":"sess-a7e74965dabb","input_length":4127,"output_length":778,"hash_ids":[1992171,1992172,1992173,1992174,1992175,1992176,1992177,1992178,1992179],"delay":39.8} +{"session_id":"sess-a7e74965dabb","input_length":1528,"output_length":362,"hash_ids":[1992180,1992181,1992182],"delay":3569.8} +{"session_id":"sess-a7e74965dabb","input_length":1194,"output_length":675,"hash_ids":[1992183,1992184,1992185],"delay":513.1} +{"session_id":"sess-a7e74965dabb","input_length":3819,"output_length":30,"hash_ids":[1992186,1992187,1992188,1992189,1992190,1992191,1992192,1992193],"delay":363.2} +{"session_id":"sess-a7e74965dabb","input_length":5169,"output_length":284,"hash_ids":[1992194,1992195,1992196,1992197,1992198,1992199,1992200,1992201,1992202,1992203,1992204],"delay":268.1} +{"session_id":"sess-a7e74965dabb","input_length":1927,"output_length":640,"hash_ids":[1992205,1992206,1992207,1992208],"delay":965.9} +{"session_id":"sess-3bc4444d39a1","input_length":56464,"output_length":651,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1996063,1996064,1996065,1996066,1996067,1996068,1996069,1996070],"timestamp":0.0,"group_id":5} +{"session_id":"sess-3bc4444d39a1","input_length":4269,"output_length":677,"hash_ids":[1996071,1996072,1996073,1996074,1996075,1996076,1996077,1996078,1996079],"delay":2512.4} +{"session_id":"sess-3bc4444d39a1","input_length":541,"output_length":321,"hash_ids":[1996080,1996081],"delay":1550.2} +{"session_id":"sess-f2c3204b0bd4","input_length":62655,"output_length":1336,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2000063,2000064,2000065,2000066,2000067,2000068,2000069,2000070,2000071,2000072,2000073,2000074,2000075,2000076,2000077,2000078,2000079,2000080,2000081,2000082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f2c3204b0bd4","input_length":738,"output_length":105,"hash_ids":[2000083,2000084],"delay":2975.0} +{"session_id":"sess-f2c3204b0bd4","input_length":4397,"output_length":38,"hash_ids":[2000085,2000086,2000087,2000088,2000089,2000090,2000091,2000092,2000093],"delay":48611.9} +{"session_id":"sess-f2c3204b0bd4","input_length":5852,"output_length":139,"hash_ids":[2000094,2000095,2000096,2000097,2000098,2000099,2000100,2000101,2000102,2000103,2000104,2000105],"delay":974.0} +{"session_id":"sess-f2c3204b0bd4","input_length":308,"output_length":183,"hash_ids":[2000106],"delay":8605.3} +{"session_id":"sess-f2c3204b0bd4","input_length":1907,"output_length":171,"hash_ids":[2000107,2000108,2000109,2000110],"delay":3181.7} +{"session_id":"sess-f2c3204b0bd4","input_length":3453,"output_length":232,"hash_ids":[2000111,2000112,2000113,2000114,2000115,2000116,2000117],"delay":36507.9} +{"session_id":"sess-f2c3204b0bd4","input_length":780,"output_length":177,"hash_ids":[2000118,2000119],"delay":8113.2} +{"session_id":"sess-f2c3204b0bd4","input_length":4357,"output_length":1210,"hash_ids":[2000120,2000121,2000122,2000123,2000124,2000125,2000126,2000127,2000128],"delay":1363.4} +{"session_id":"sess-f2c3204b0bd4","input_length":612,"output_length":114,"hash_ids":[2000129,2000130],"delay":857.5} +{"session_id":"sess-f2c3204b0bd4","input_length":6664,"output_length":544,"hash_ids":[2000131,2000132,2000133,2000134,2000135,2000136,2000137,2000138,2000139,2000140,2000141,2000142,2000143,2000144],"delay":31362.3} +{"session_id":"sess-f2c3204b0bd4","input_length":4131,"output_length":134,"hash_ids":[2000145,2000146,2000147,2000148,2000149,2000150,2000151,2000152,2000153],"delay":698.1} +{"session_id":"sess-f2c3204b0bd4","input_length":1332,"output_length":423,"hash_ids":[2000154,2000155,2000156],"delay":1814.6} +{"session_id":"sess-f2c3204b0bd4","input_length":180,"output_length":231,"hash_ids":[2000157],"delay":4007.9} +{"session_id":"sess-f2c3204b0bd4","input_length":3150,"output_length":861,"hash_ids":[2000158,2000159,2000160,2000161,2000162,2000163,2000164],"delay":246.0} +{"session_id":"sess-f2c3204b0bd4","input_length":1760,"output_length":198,"hash_ids":[2000165,2000166,2000167,2000168],"delay":668.0} +{"session_id":"sess-f2c3204b0bd4","input_length":2435,"output_length":711,"hash_ids":[2000169,2000170,2000171,2000172,2000173],"delay":6249.5} +{"session_id":"sess-f2c3204b0bd4","input_length":123,"output_length":213,"hash_ids":[2000174],"delay":84.7} +{"session_id":"sess-f2c3204b0bd4","input_length":987,"output_length":182,"hash_ids":[2000175,2000176],"delay":7641.6} +{"session_id":"sess-f2c3204b0bd4","input_length":475,"output_length":116,"hash_ids":[2000177],"delay":11745.0} +{"session_id":"sess-f2c3204b0bd4","input_length":2336,"output_length":188,"hash_ids":[2000178,2000179,2000180,2000181,2000182],"delay":1109.6} +{"session_id":"sess-f2c3204b0bd4","input_length":1477,"output_length":113,"hash_ids":[2000183,2000184,2000185],"delay":2629.5} +{"session_id":"sess-f2c3204b0bd4","input_length":6673,"output_length":652,"hash_ids":[2000186,2000187,2000188,2000189,2000190,2000191,2000192,2000193,2000194,2000195,2000196,2000197,2000198,2000199],"delay":129.5} +{"session_id":"sess-f2c3204b0bd4","input_length":1127,"output_length":120,"hash_ids":[2000200,2000201,2000202],"delay":457.7} +{"session_id":"sess-f2c3204b0bd4","input_length":2845,"output_length":169,"hash_ids":[2000203,2000204,2000205,2000206,2000207,2000208],"delay":547.1} +{"session_id":"sess-7132279fb5dc","input_length":54159,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2004063,2004064,2004065],"timestamp":0.0,"group_id":9} +{"session_id":"sess-7132279fb5dc","input_length":1732,"output_length":1068,"hash_ids":[2004066,2004067,2004068,2004069],"delay":1662.3} +{"session_id":"sess-7132279fb5dc","input_length":2595,"output_length":36,"hash_ids":[2004070,2004071,2004072,2004073,2004074,2004075],"delay":921.4} +{"session_id":"sess-7132279fb5dc","input_length":909,"output_length":172,"hash_ids":[2004076,2004077],"delay":4298.3} +{"session_id":"sess-7132279fb5dc","input_length":9334,"output_length":307,"hash_ids":[2004078,2004079,2004080,2004081,2004082,2004083,2004084,2004085,2004086,2004087,2004088,2004089,2004090,2004091,2004092,2004093,2004094,2004095,2004096],"delay":2233.2} +{"session_id":"sess-7132279fb5dc","input_length":615,"output_length":123,"hash_ids":[2004097,2004098],"delay":566.0} +{"session_id":"sess-7132279fb5dc","input_length":1953,"output_length":349,"hash_ids":[2004099,2004100,2004101,2004102],"delay":614.8} +{"session_id":"sess-7132279fb5dc","input_length":5698,"output_length":234,"hash_ids":[2004103,2004104,2004105,2004106,2004107,2004108,2004109,2004110,2004111,2004112,2004113,2004114],"delay":9191.1} +{"session_id":"sess-7132279fb5dc","input_length":602,"output_length":328,"hash_ids":[2004115,2004116],"delay":3329.2} +{"session_id":"sess-7132279fb5dc","input_length":883,"output_length":549,"hash_ids":[2004117,2004118],"delay":490.3} +{"session_id":"sess-7132279fb5dc","input_length":2052,"output_length":483,"hash_ids":[2004119,2004120,2004121,2004122,2004123],"delay":12698.2} +{"session_id":"sess-7132279fb5dc","input_length":1026,"output_length":2454,"hash_ids":[2004124,2004125,2004126],"delay":177.8} +{"session_id":"sess-7132279fb5dc","input_length":752,"output_length":187,"hash_ids":[2004127,2004128],"delay":512.0} +{"session_id":"sess-7132279fb5dc","input_length":1769,"output_length":834,"hash_ids":[2004129,2004130,2004131,2004132],"delay":1111.7} +{"session_id":"sess-7132279fb5dc","input_length":2069,"output_length":432,"hash_ids":[2004133,2004134,2004135,2004136,2004137],"delay":736.9} +{"session_id":"sess-7132279fb5dc","input_length":1153,"output_length":122,"hash_ids":[2004138,2004139,2004140],"delay":1413.0} +{"session_id":"sess-7132279fb5dc","input_length":510,"output_length":260,"hash_ids":[2004141],"delay":1075.1} +{"session_id":"sess-7132279fb5dc","input_length":265,"output_length":124,"hash_ids":[2004142],"delay":627.9} +{"session_id":"sess-7132279fb5dc","input_length":80,"output_length":728,"hash_ids":[2004143],"delay":3827.5} +{"session_id":"sess-7132279fb5dc","input_length":3803,"output_length":162,"hash_ids":[2004144,2004145,2004146,2004147,2004148,2004149,2004150,2004151],"delay":27910.9} +{"session_id":"sess-7132279fb5dc","input_length":2469,"output_length":1013,"hash_ids":[2004152,2004153,2004154,2004155,2004156],"delay":9182.3} +{"session_id":"sess-7132279fb5dc","input_length":2137,"output_length":432,"hash_ids":[2004157,2004158,2004159,2004160,2004161],"delay":878.2} +{"session_id":"sess-7132279fb5dc","input_length":1232,"output_length":713,"hash_ids":[2004162,2004163,2004164],"delay":3586.4} +{"session_id":"sess-7132279fb5dc","input_length":3396,"output_length":1436,"hash_ids":[2004165,2004166,2004167,2004168,2004169,2004170,2004171],"delay":6148.5} +{"session_id":"sess-7132279fb5dc","input_length":989,"output_length":160,"hash_ids":[2004172,2004173],"delay":935.4} +{"session_id":"sess-7132279fb5dc","input_length":2808,"output_length":56,"hash_ids":[2004174,2004175,2004176,2004177,2004178,2004179],"delay":206.9} +{"session_id":"sess-7132279fb5dc","input_length":3876,"output_length":131,"hash_ids":[2004180,2004181,2004182,2004183,2004184,2004185,2004186,2004187],"delay":341.0} +{"session_id":"sess-7132279fb5dc","input_length":2283,"output_length":176,"hash_ids":[2004188,2004189,2004190,2004191,2004192],"delay":4832.2} +{"session_id":"sess-7132279fb5dc","input_length":1230,"output_length":856,"hash_ids":[2004193,2004194,2004195],"delay":233.9} +{"session_id":"sess-90632c7ae46e","input_length":52735,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902],"timestamp":0.0,"group_id":4} +{"session_id":"sess-90632c7ae46e","input_length":4004,"output_length":161,"hash_ids":[2004196,2004197,2004198,2004199,2004200,2004201,2004202,2004203],"delay":397.3} +{"session_id":"sess-90632c7ae46e","input_length":7177,"output_length":269,"hash_ids":[2004204,2004205,2004206,2004207,2004208,2004209,2004210,2004211,2004212,2004213,2004214,2004215,2004216,2004217,2004218],"delay":4991.4} +{"session_id":"sess-90632c7ae46e","input_length":301,"output_length":85,"hash_ids":[2004219],"delay":1462.5} +{"session_id":"sess-90632c7ae46e","input_length":1113,"output_length":785,"hash_ids":[2004220,2004221,2004222],"delay":717.0} +{"session_id":"sess-90632c7ae46e","input_length":2118,"output_length":469,"hash_ids":[2004223,2004224,2004225,2004226,2004227],"delay":563.2} +{"session_id":"sess-90632c7ae46e","input_length":8286,"output_length":57,"hash_ids":[2004228,2004229,2004230,2004231,2004232,2004233,2004234,2004235,2004236,2004237,2004238,2004239,2004240,2004241,2004242,2004243,2004244],"delay":3629.9} +{"session_id":"sess-90632c7ae46e","input_length":650,"output_length":124,"hash_ids":[2004245,2004246],"delay":713.9} +{"session_id":"sess-90632c7ae46e","input_length":701,"output_length":1428,"hash_ids":[2004247,2004248],"delay":4653.4} +{"session_id":"sess-90632c7ae46e","input_length":2762,"output_length":102,"hash_ids":[2004249,2004250,2004251,2004252,2004253,2004254],"delay":406.1} +{"session_id":"sess-561036b8291d","input_length":53784,"output_length":1427,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2012063,2012064,2012065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-561036b8291d","input_length":2306,"output_length":1137,"hash_ids":[2012066,2012067,2012068,2012069,2012070],"delay":14036.2} +{"session_id":"sess-561036b8291d","input_length":4715,"output_length":336,"hash_ids":[2012071,2012072,2012073,2012074,2012075,2012076,2012077,2012078,2012079,2012080],"delay":345.6} +{"session_id":"sess-561036b8291d","input_length":138,"output_length":502,"hash_ids":[2012081],"delay":1065.1} +{"session_id":"sess-561036b8291d","input_length":651,"output_length":419,"hash_ids":[2012082,2012083],"delay":855.5} +{"session_id":"sess-561036b8291d","input_length":575,"output_length":467,"hash_ids":[2012084,2012085],"delay":607.4} +{"session_id":"sess-561036b8291d","input_length":1491,"output_length":2668,"hash_ids":[2012086,2012087,2012088],"delay":353.1} +{"session_id":"sess-561036b8291d","input_length":2316,"output_length":445,"hash_ids":[2012089,2012090,2012091,2012092,2012093],"delay":500.0} +{"session_id":"sess-561036b8291d","input_length":1307,"output_length":30,"hash_ids":[2012094,2012095,2012096],"delay":606.7} +{"session_id":"sess-561036b8291d","input_length":339,"output_length":2041,"hash_ids":[2012097],"delay":11278.0} +{"session_id":"sess-0a1994ba1edd","input_length":54096,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,2016063,2016064,2016065],"timestamp":0.0,"group_id":25} +{"session_id":"sess-9662b5220587","input_length":66063,"output_length":343,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2020063,2020064,2020065,2020066,2020067,2020068,2020069,2020070,2020071,2020072,2020073,2020074,2020075,2020076,2020077,2020078,2020079,2020080,2020081,2020082,2020083,2020084,2020085,2020086,2020087,2020088,2020089],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9662b5220587","input_length":1289,"output_length":204,"hash_ids":[2020090,2020091,2020092],"delay":21576.4} +{"session_id":"sess-438c43b75180","input_length":65615,"output_length":358,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2024063,2024064,2024065,2024066,2024067,2024068,2024069,2024070,2024071,2024072,2024073,2024074,2024075,2024076,2024077,2024078,2024079,2024080,2024081,2024082,2024083,2024084,2024085,2024086,2024087,2024088],"timestamp":0.0,"group_id":2} +{"session_id":"sess-438c43b75180","input_length":3310,"output_length":161,"hash_ids":[2024089,2024090,2024091,2024092,2024093,2024094,2024095],"delay":996.9} +{"session_id":"sess-438c43b75180","input_length":1338,"output_length":399,"hash_ids":[2024096,2024097,2024098],"delay":371.0} +{"session_id":"sess-438c43b75180","input_length":9898,"output_length":46,"hash_ids":[2024099,2024100,2024101,2024102,2024103,2024104,2024105,2024106,2024107,2024108,2024109,2024110,2024111,2024112,2024113,2024114,2024115,2024116,2024117,2024118],"delay":1412.2} +{"session_id":"sess-438c43b75180","input_length":352,"output_length":105,"hash_ids":[2024119],"delay":375.6} +{"session_id":"sess-438c43b75180","input_length":7645,"output_length":183,"hash_ids":[2024120,2024121,2024122,2024123,2024124,2024125,2024126,2024127,2024128,2024129,2024130,2024131,2024132,2024133,2024134],"delay":2184.3} +{"session_id":"sess-438c43b75180","input_length":551,"output_length":453,"hash_ids":[2024135,2024136],"delay":2586.3} +{"session_id":"sess-438c43b75180","input_length":2988,"output_length":69,"hash_ids":[2024137,2024138,2024139,2024140,2024141,2024142],"delay":1857.7} +{"session_id":"sess-438c43b75180","input_length":9499,"output_length":367,"hash_ids":[2024143,2024144,2024145,2024146,2024147,2024148,2024149,2024150,2024151,2024152,2024153,2024154,2024155,2024156,2024157,2024158,2024159,2024160,2024161],"delay":1737.9} +{"session_id":"sess-438c43b75180","input_length":2323,"output_length":168,"hash_ids":[2024162,2024163,2024164,2024165,2024166],"delay":167.6} +{"session_id":"sess-438c43b75180","input_length":2727,"output_length":79,"hash_ids":[2024167,2024168,2024169,2024170,2024171,2024172],"delay":18309.0} +{"session_id":"sess-438c43b75180","input_length":1224,"output_length":77,"hash_ids":[2024173,2024174,2024175],"delay":1237.2} +{"session_id":"sess-438c43b75180","input_length":1295,"output_length":862,"hash_ids":[2024176,2024177,2024178],"delay":974.4} +{"session_id":"sess-438c43b75180","input_length":1178,"output_length":375,"hash_ids":[2024179,2024180,2024181],"delay":14287.0} +{"session_id":"sess-438c43b75180","input_length":140,"output_length":132,"hash_ids":[2024182],"delay":1055.7} +{"session_id":"sess-438c43b75180","input_length":419,"output_length":394,"hash_ids":[2024183],"delay":498.1} +{"session_id":"sess-438c43b75180","input_length":3331,"output_length":184,"hash_ids":[2024184,2024185,2024186,2024187,2024188,2024189,2024190],"delay":221.0} +{"session_id":"sess-438c43b75180","input_length":2738,"output_length":355,"hash_ids":[2024191,2024192,2024193,2024194,2024195,2024196],"delay":441.1} +{"session_id":"sess-438c43b75180","input_length":7511,"output_length":330,"hash_ids":[2024197,2024198,2024199,2024200,2024201,2024202,2024203,2024204,2024205,2024206,2024207,2024208,2024209,2024210,2024211],"delay":207.0} +{"session_id":"sess-175921f7f366","input_length":52220,"output_length":334,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],"timestamp":0.0,"group_id":0} +{"session_id":"sess-175921f7f366","input_length":1461,"output_length":286,"hash_ids":[2024212,2024213,2024214],"delay":1445.0} +{"session_id":"sess-175921f7f366","input_length":1073,"output_length":77,"hash_ids":[2024215,2024216,2024217],"delay":754.6} +{"session_id":"sess-175921f7f366","input_length":3504,"output_length":40,"hash_ids":[2024218,2024219,2024220,2024221,2024222,2024223,2024224],"delay":1919.0} +{"session_id":"sess-175921f7f366","input_length":3230,"output_length":128,"hash_ids":[2024225,2024226,2024227,2024228,2024229,2024230,2024231],"delay":4403.1} +{"session_id":"sess-175921f7f366","input_length":3012,"output_length":200,"hash_ids":[2024232,2024233,2024234,2024235,2024236,2024237],"delay":6278.1} +{"session_id":"sess-175921f7f366","input_length":2439,"output_length":319,"hash_ids":[2024238,2024239,2024240,2024241,2024242],"delay":1244.3} +{"session_id":"sess-175921f7f366","input_length":3053,"output_length":372,"hash_ids":[2024243,2024244,2024245,2024246,2024247,2024248],"delay":1029.4} +{"session_id":"sess-175921f7f366","input_length":604,"output_length":355,"hash_ids":[2024249,2024250],"delay":10671.1} +{"session_id":"sess-175921f7f366","input_length":2292,"output_length":173,"hash_ids":[2024251,2024252,2024253,2024254,2024255],"delay":5109.4} +{"session_id":"sess-175921f7f366","input_length":980,"output_length":30,"hash_ids":[2024256,2024257],"delay":247.0} +{"session_id":"sess-175921f7f366","input_length":2168,"output_length":162,"hash_ids":[2024258,2024259,2024260,2024261,2024262],"delay":9137.9} +{"session_id":"sess-175921f7f366","input_length":480,"output_length":46,"hash_ids":[2024263],"delay":3149.3} +{"session_id":"sess-175921f7f366","input_length":765,"output_length":251,"hash_ids":[2024264,2024265],"delay":3629.1} +{"session_id":"sess-175921f7f366","input_length":86,"output_length":2399,"hash_ids":[2024266],"delay":8139.5} +{"session_id":"sess-175921f7f366","input_length":1858,"output_length":172,"hash_ids":[2024267,2024268,2024269,2024270],"delay":3011.8} +{"session_id":"sess-175921f7f366","input_length":3393,"output_length":343,"hash_ids":[2024271,2024272,2024273,2024274,2024275,2024276,2024277],"delay":353.6} +{"session_id":"sess-175921f7f366","input_length":1608,"output_length":352,"hash_ids":[2024278,2024279,2024280,2024281],"delay":206.2} +{"session_id":"sess-175921f7f366","input_length":656,"output_length":363,"hash_ids":[2024282,2024283],"delay":6555.3} +{"session_id":"sess-175921f7f366","input_length":3111,"output_length":242,"hash_ids":[2024284,2024285,2024286,2024287,2024288,2024289,2024290],"delay":317.5} +{"session_id":"sess-175921f7f366","input_length":1237,"output_length":1083,"hash_ids":[2024291,2024292,2024293],"delay":564.4} +{"session_id":"sess-175921f7f366","input_length":1041,"output_length":232,"hash_ids":[2024294,2024295,2024296],"delay":10261.2} +{"session_id":"sess-175921f7f366","input_length":807,"output_length":832,"hash_ids":[2024297,2024298],"delay":501.7} +{"session_id":"sess-175921f7f366","input_length":2796,"output_length":175,"hash_ids":[2024299,2024300,2024301,2024302,2024303,2024304],"delay":496.8} +{"session_id":"sess-175921f7f366","input_length":1460,"output_length":313,"hash_ids":[2024305,2024306,2024307],"delay":2630.7} +{"session_id":"sess-175921f7f366","input_length":7949,"output_length":476,"hash_ids":[2024308,2024309,2024310,2024311,2024312,2024313,2024314,2024315,2024316,2024317,2024318,2024319,2024320,2024321,2024322,2024323],"delay":358.7} +{"session_id":"sess-175921f7f366","input_length":4154,"output_length":844,"hash_ids":[2024324,2024325,2024326,2024327,2024328,2024329,2024330,2024331,2024332],"delay":1170.1} +{"session_id":"sess-175921f7f366","input_length":1544,"output_length":516,"hash_ids":[2024333,2024334,2024335,2024336],"delay":315.5} +{"session_id":"sess-175921f7f366","input_length":6315,"output_length":163,"hash_ids":[2024337,2024338,2024339,2024340,2024341,2024342,2024343,2024344,2024345,2024346,2024347,2024348,2024349],"delay":7806.1} +{"session_id":"sess-175921f7f366","input_length":2091,"output_length":174,"hash_ids":[2024350,2024351,2024352,2024353,2024354],"delay":314.5} +{"session_id":"sess-11835f476765","input_length":63617,"output_length":892,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2032063,2032064,2032065,2032066,2032067,2032068,2032069,2032070,2032071,2032072,2032073,2032074,2032075,2032076,2032077,2032078,2032079,2032080,2032081,2032082,2032083,2032084],"timestamp":0.0,"group_id":1} +{"session_id":"sess-11835f476765","input_length":1454,"output_length":504,"hash_ids":[2032085,2032086,2032087],"delay":54728.5} +{"session_id":"sess-11835f476765","input_length":1607,"output_length":40,"hash_ids":[2032088,2032089,2032090,2032091],"delay":896.9} +{"session_id":"sess-11835f476765","input_length":2924,"output_length":610,"hash_ids":[2032092,2032093,2032094,2032095,2032096,2032097],"delay":9852.1} +{"session_id":"sess-11835f476765","input_length":2640,"output_length":186,"hash_ids":[2032098,2032099,2032100,2032101,2032102,2032103],"delay":177.6} +{"session_id":"sess-11835f476765","input_length":903,"output_length":345,"hash_ids":[2032104,2032105],"delay":1173.8} +{"session_id":"sess-11835f476765","input_length":5749,"output_length":327,"hash_ids":[2032106,2032107,2032108,2032109,2032110,2032111,2032112,2032113,2032114,2032115,2032116,2032117],"delay":2352.9} +{"session_id":"sess-11835f476765","input_length":3227,"output_length":422,"hash_ids":[2032118,2032119,2032120,2032121,2032122,2032123,2032124],"delay":4855.1} +{"session_id":"sess-11835f476765","input_length":3659,"output_length":72,"hash_ids":[2032125,2032126,2032127,2032128,2032129,2032130,2032131,2032132],"delay":11821.4} +{"session_id":"sess-11835f476765","input_length":1225,"output_length":279,"hash_ids":[2032133,2032134,2032135],"delay":585.1} +{"session_id":"sess-11835f476765","input_length":974,"output_length":90,"hash_ids":[2032136,2032137],"delay":372.9} +{"session_id":"sess-11835f476765","input_length":778,"output_length":155,"hash_ids":[2032138,2032139],"delay":477.6} +{"session_id":"sess-11835f476765","input_length":1891,"output_length":243,"hash_ids":[2032140,2032141,2032142,2032143],"delay":1562.9} +{"session_id":"sess-11835f476765","input_length":3004,"output_length":469,"hash_ids":[2032144,2032145,2032146,2032147,2032148,2032149],"delay":2193.5} +{"session_id":"sess-11835f476765","input_length":5450,"output_length":861,"hash_ids":[2032150,2032151,2032152,2032153,2032154,2032155,2032156,2032157,2032158,2032159,2032160],"delay":14290.1} +{"session_id":"sess-11835f476765","input_length":5367,"output_length":512,"hash_ids":[2032161,2032162,2032163,2032164,2032165,2032166,2032167,2032168,2032169,2032170,2032171],"delay":856.1} +{"session_id":"sess-11835f476765","input_length":1416,"output_length":152,"hash_ids":[2032172,2032173,2032174],"delay":791.8} +{"session_id":"sess-11835f476765","input_length":1073,"output_length":226,"hash_ids":[2032175,2032176,2032177],"delay":6477.2} +{"session_id":"sess-11835f476765","input_length":3679,"output_length":231,"hash_ids":[2032178,2032179,2032180,2032181,2032182,2032183,2032184,2032185],"delay":1749.6} +{"session_id":"sess-11835f476765","input_length":723,"output_length":195,"hash_ids":[2032186,2032187],"delay":1095.6} +{"session_id":"sess-11835f476765","input_length":4327,"output_length":163,"hash_ids":[2032188,2032189,2032190,2032191,2032192,2032193,2032194,2032195,2032196],"delay":441.6} +{"session_id":"sess-11835f476765","input_length":426,"output_length":290,"hash_ids":[2032197],"delay":709.7} +{"session_id":"sess-11835f476765","input_length":2498,"output_length":168,"hash_ids":[2032198,2032199,2032200,2032201,2032202],"delay":1447.2} +{"session_id":"sess-e7d5fdbf9b92","input_length":53669,"output_length":1390,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2036063,2036064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e7d5fdbf9b92","input_length":4947,"output_length":157,"hash_ids":[2036065,2036066,2036067,2036068,2036069,2036070,2036071,2036072,2036073,2036074],"delay":1611.7} +{"session_id":"sess-e7d5fdbf9b92","input_length":5522,"output_length":613,"hash_ids":[2036075,2036076,2036077,2036078,2036079,2036080,2036081,2036082,2036083,2036084,2036085],"delay":5918.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":5716,"output_length":274,"hash_ids":[2036086,2036087,2036088,2036089,2036090,2036091,2036092,2036093,2036094,2036095,2036096,2036097],"delay":48545.1} +{"session_id":"sess-e7d5fdbf9b92","input_length":750,"output_length":150,"hash_ids":[2036098,2036099],"delay":3518.9} +{"session_id":"sess-e7d5fdbf9b92","input_length":2423,"output_length":414,"hash_ids":[2036100,2036101,2036102,2036103,2036104],"delay":679.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":1755,"output_length":436,"hash_ids":[2036105,2036106,2036107,2036108],"delay":856.1} +{"session_id":"sess-e7d5fdbf9b92","input_length":4027,"output_length":33,"hash_ids":[2036109,2036110,2036111,2036112,2036113,2036114,2036115,2036116],"delay":13243.1} +{"session_id":"sess-e7d5fdbf9b92","input_length":1137,"output_length":2214,"hash_ids":[2036117,2036118,2036119],"delay":926.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":2436,"output_length":249,"hash_ids":[2036120,2036121,2036122,2036123,2036124],"delay":19391.2} +{"session_id":"sess-e7d5fdbf9b92","input_length":596,"output_length":89,"hash_ids":[2036125,2036126],"delay":368.8} +{"session_id":"sess-e7d5fdbf9b92","input_length":1456,"output_length":61,"hash_ids":[2036127,2036128,2036129],"delay":840.7} +{"session_id":"sess-e7d5fdbf9b92","input_length":4482,"output_length":367,"hash_ids":[2036130,2036131,2036132,2036133,2036134,2036135,2036136,2036137,2036138],"delay":3481.4} +{"session_id":"sess-e7d5fdbf9b92","input_length":3295,"output_length":346,"hash_ids":[2036139,2036140,2036141,2036142,2036143,2036144,2036145],"delay":6850.2} +{"session_id":"sess-e7d5fdbf9b92","input_length":924,"output_length":195,"hash_ids":[2036146,2036147],"delay":1509.8} +{"session_id":"sess-e7d5fdbf9b92","input_length":1164,"output_length":462,"hash_ids":[2036148,2036149,2036150],"delay":890.6} +{"session_id":"sess-e7d5fdbf9b92","input_length":1863,"output_length":156,"hash_ids":[2036151,2036152,2036153,2036154],"delay":298.3} +{"session_id":"sess-e7d5fdbf9b92","input_length":3489,"output_length":55,"hash_ids":[2036155,2036156,2036157,2036158,2036159,2036160,2036161],"delay":1334.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":924,"output_length":103,"hash_ids":[2036162,2036163],"delay":10931.9} +{"session_id":"sess-e7d5fdbf9b92","input_length":588,"output_length":999,"hash_ids":[2036164,2036165],"delay":906.8} +{"session_id":"sess-e7d5fdbf9b92","input_length":5906,"output_length":404,"hash_ids":[2036166,2036167,2036168,2036169,2036170,2036171,2036172,2036173,2036174,2036175,2036176,2036177],"delay":911.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":1396,"output_length":1220,"hash_ids":[2036178,2036179,2036180],"delay":3634.0} +{"session_id":"sess-0fcfedbc4428","input_length":74064,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2040063,2040064,2040065,2040066,2040067,2040068,2040069,2040070,2040071,2040072,2040073,2040074,2040075,2040076,2040077,2040078,2040079,2040080,2040081,2040082,2040083,2040084,2040085,2040086,2040087,2040088,2040089,2040090,2040091,2040092,2040093,2040094,2040095,2040096,2040097,2040098,2040099,2040100,2040101,2040102,2040103,2040104],"timestamp":0.0,"group_id":13} +{"session_id":"sess-0fcfedbc4428","input_length":5386,"output_length":99,"hash_ids":[2040105,2040106,2040107,2040108,2040109,2040110,2040111,2040112,2040113,2040114,2040115],"delay":2187.1} +{"session_id":"sess-0fcfedbc4428","input_length":7438,"output_length":30,"hash_ids":[2040116,2040117,2040118,2040119,2040120,2040121,2040122,2040123,2040124,2040125,2040126,2040127,2040128,2040129,2040130],"delay":1041.7} +{"session_id":"sess-0fcfedbc4428","input_length":2115,"output_length":263,"hash_ids":[2040131,2040132,2040133,2040134,2040135],"delay":1376.2} +{"session_id":"sess-0fcfedbc4428","input_length":3595,"output_length":1456,"hash_ids":[2040136,2040137,2040138,2040139,2040140,2040141,2040142,2040143],"delay":4265.9} +{"session_id":"sess-57c9e2afdbef","input_length":54007,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2044063,2044064,2044065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-57c9e2afdbef","input_length":2004,"output_length":74,"hash_ids":[2044066,2044067,2044068,2044069],"delay":1692.1} +{"session_id":"sess-57c9e2afdbef","input_length":1697,"output_length":316,"hash_ids":[2044070,2044071,2044072,2044073],"delay":1401.5} +{"session_id":"sess-57c9e2afdbef","input_length":887,"output_length":974,"hash_ids":[2044074,2044075],"delay":446.9} +{"session_id":"sess-57c9e2afdbef","input_length":201,"output_length":363,"hash_ids":[2044076],"delay":1393.6} +{"session_id":"sess-57c9e2afdbef","input_length":8548,"output_length":717,"hash_ids":[2044077,2044078,2044079,2044080,2044081,2044082,2044083,2044084,2044085,2044086,2044087,2044088,2044089,2044090,2044091,2044092,2044093],"delay":3373.7} +{"session_id":"sess-57c9e2afdbef","input_length":2376,"output_length":2044,"hash_ids":[2044094,2044095,2044096,2044097,2044098],"delay":644.0} +{"session_id":"sess-57c9e2afdbef","input_length":939,"output_length":364,"hash_ids":[2044099,2044100],"delay":448.0} +{"session_id":"sess-57c9e2afdbef","input_length":2026,"output_length":127,"hash_ids":[2044101,2044102,2044103,2044104],"delay":15661.9} +{"session_id":"sess-57c9e2afdbef","input_length":1494,"output_length":35,"hash_ids":[2044105,2044106,2044107],"delay":32374.8} +{"session_id":"sess-57c9e2afdbef","input_length":3018,"output_length":365,"hash_ids":[2044108,2044109,2044110,2044111,2044112,2044113],"delay":243.6} +{"session_id":"sess-57c9e2afdbef","input_length":782,"output_length":384,"hash_ids":[2044114,2044115],"delay":4497.5} +{"session_id":"sess-57c9e2afdbef","input_length":3030,"output_length":584,"hash_ids":[2044116,2044117,2044118,2044119,2044120,2044121],"delay":1430.0} +{"session_id":"sess-57c9e2afdbef","input_length":4405,"output_length":181,"hash_ids":[2044122,2044123,2044124,2044125,2044126,2044127,2044128,2044129,2044130],"delay":653.9} +{"session_id":"sess-57c9e2afdbef","input_length":9846,"output_length":190,"hash_ids":[2044131,2044132,2044133,2044134,2044135,2044136,2044137,2044138,2044139,2044140,2044141,2044142,2044143,2044144,2044145,2044146,2044147,2044148,2044149,2044150],"delay":313.6} +{"session_id":"sess-57c9e2afdbef","input_length":374,"output_length":49,"hash_ids":[2044151],"delay":992.5} +{"session_id":"sess-57c9e2afdbef","input_length":868,"output_length":476,"hash_ids":[2044152,2044153],"delay":1442.5} +{"session_id":"sess-57c9e2afdbef","input_length":3828,"output_length":285,"hash_ids":[2044154,2044155,2044156,2044157,2044158,2044159,2044160,2044161],"delay":375.0} +{"session_id":"sess-57c9e2afdbef","input_length":2991,"output_length":507,"hash_ids":[2044162,2044163,2044164,2044165,2044166,2044167],"delay":512.1} +{"session_id":"sess-57c9e2afdbef","input_length":3390,"output_length":522,"hash_ids":[2044168,2044169,2044170,2044171,2044172,2044173,2044174],"delay":8735.4} +{"session_id":"sess-57c9e2afdbef","input_length":8498,"output_length":296,"hash_ids":[2044175,2044176,2044177,2044178,2044179,2044180,2044181,2044182,2044183,2044184,2044185,2044186,2044187,2044188,2044189,2044190,2044191],"delay":1131.1} +{"session_id":"sess-57c9e2afdbef","input_length":683,"output_length":170,"hash_ids":[2044192,2044193],"delay":249.3} +{"session_id":"sess-57c9e2afdbef","input_length":1339,"output_length":30,"hash_ids":[2044194,2044195,2044196],"delay":288.9} +{"session_id":"sess-57c9e2afdbef","input_length":2439,"output_length":382,"hash_ids":[2044197,2044198,2044199,2044200,2044201],"delay":7789.7} +{"session_id":"sess-333aded28b48","input_length":55965,"output_length":634,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2048063,2048064,2048065,2048066,2048067,2048068,2048069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-333aded28b48","input_length":1017,"output_length":603,"hash_ids":[2048070,2048071],"delay":2044.6} +{"session_id":"sess-333aded28b48","input_length":678,"output_length":95,"hash_ids":[2048072,2048073],"delay":163.3} +{"session_id":"sess-333aded28b48","input_length":721,"output_length":649,"hash_ids":[2048074,2048075],"delay":15498.5} +{"session_id":"sess-333aded28b48","input_length":5555,"output_length":1349,"hash_ids":[2048076,2048077,2048078,2048079,2048080,2048081,2048082,2048083,2048084,2048085,2048086],"delay":7872.3} +{"session_id":"sess-333aded28b48","input_length":984,"output_length":244,"hash_ids":[2048087,2048088],"delay":3415.7} +{"session_id":"sess-333aded28b48","input_length":1357,"output_length":199,"hash_ids":[2048089,2048090,2048091],"delay":1041.2} +{"session_id":"sess-333aded28b48","input_length":2599,"output_length":101,"hash_ids":[2048092,2048093,2048094,2048095,2048096,2048097],"delay":1202.4} +{"session_id":"sess-333aded28b48","input_length":614,"output_length":1146,"hash_ids":[2048098,2048099],"delay":5358.1} +{"session_id":"sess-333aded28b48","input_length":1240,"output_length":220,"hash_ids":[2048100,2048101,2048102],"delay":115.9} +{"session_id":"sess-333aded28b48","input_length":450,"output_length":497,"hash_ids":[2048103],"delay":3570.8} +{"session_id":"sess-333aded28b48","input_length":261,"output_length":567,"hash_ids":[2048104],"delay":534.5} +{"session_id":"sess-333aded28b48","input_length":1825,"output_length":30,"hash_ids":[2048105,2048106,2048107,2048108],"delay":4958.8} +{"session_id":"sess-333aded28b48","input_length":959,"output_length":515,"hash_ids":[2048109,2048110],"delay":4716.1} +{"session_id":"sess-333aded28b48","input_length":1082,"output_length":106,"hash_ids":[2048111,2048112,2048113],"delay":932.3} +{"session_id":"sess-333aded28b48","input_length":2123,"output_length":206,"hash_ids":[2048114,2048115,2048116,2048117,2048118],"delay":10899.9} +{"session_id":"sess-333aded28b48","input_length":2164,"output_length":259,"hash_ids":[2048119,2048120,2048121,2048122,2048123],"delay":713.2} +{"session_id":"sess-333aded28b48","input_length":1066,"output_length":729,"hash_ids":[2048124,2048125,2048126],"delay":18687.5} +{"session_id":"sess-333aded28b48","input_length":1812,"output_length":79,"hash_ids":[2048127,2048128,2048129,2048130],"delay":21666.4} +{"session_id":"sess-333aded28b48","input_length":632,"output_length":373,"hash_ids":[2048131,2048132],"delay":1317.9} +{"session_id":"sess-333aded28b48","input_length":4666,"output_length":434,"hash_ids":[2048133,2048134,2048135,2048136,2048137,2048138,2048139,2048140,2048141,2048142],"delay":5662.9} +{"session_id":"sess-333aded28b48","input_length":1984,"output_length":185,"hash_ids":[2048143,2048144,2048145,2048146],"delay":274.3} +{"session_id":"sess-333aded28b48","input_length":1726,"output_length":77,"hash_ids":[2048147,2048148,2048149,2048150],"delay":1131.1} +{"session_id":"sess-333aded28b48","input_length":877,"output_length":234,"hash_ids":[2048151,2048152],"delay":1233.1} +{"session_id":"sess-333aded28b48","input_length":842,"output_length":97,"hash_ids":[2048153,2048154],"delay":1274.0} +{"session_id":"sess-333aded28b48","input_length":5616,"output_length":58,"hash_ids":[2048155,2048156,2048157,2048158,2048159,2048160,2048161,2048162,2048163,2048164,2048165],"delay":68.9} +{"session_id":"sess-333aded28b48","input_length":4789,"output_length":718,"hash_ids":[2048166,2048167,2048168,2048169,2048170,2048171,2048172,2048173,2048174,2048175],"delay":241.3} +{"session_id":"sess-333aded28b48","input_length":3376,"output_length":737,"hash_ids":[2048176,2048177,2048178,2048179,2048180,2048181,2048182],"delay":1765.6} +{"session_id":"sess-333aded28b48","input_length":1429,"output_length":81,"hash_ids":[2048183,2048184,2048185],"delay":2414.3} +{"session_id":"sess-333aded28b48","input_length":2125,"output_length":468,"hash_ids":[2048186,2048187,2048188,2048189,2048190],"delay":659.1} +{"session_id":"sess-333aded28b48","input_length":219,"output_length":139,"hash_ids":[2048191],"delay":530.3} +{"session_id":"sess-333aded28b48","input_length":851,"output_length":724,"hash_ids":[2048192,2048193],"delay":330.2} +{"session_id":"sess-333aded28b48","input_length":478,"output_length":455,"hash_ids":[2048194],"delay":4022.9} +{"session_id":"sess-333aded28b48","input_length":1617,"output_length":425,"hash_ids":[2048195,2048196,2048197,2048198],"delay":934.5} +{"session_id":"sess-333aded28b48","input_length":605,"output_length":457,"hash_ids":[2048199,2048200],"delay":451.8} +{"session_id":"sess-333aded28b48","input_length":1119,"output_length":779,"hash_ids":[2048201,2048202,2048203],"delay":265.9} +{"session_id":"sess-61dcfab01318","input_length":67066,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2052063,2052064,2052065,2052066,2052067,2052068,2052069,2052070,2052071,2052072,2052073,2052074,2052075,2052076,2052077,2052078,2052079,2052080,2052081,2052082,2052083,2052084,2052085,2052086,2052087,2052088,2052089,2052090],"timestamp":0.0,"group_id":0} +{"session_id":"sess-61dcfab01318","input_length":1773,"output_length":139,"hash_ids":[2052091,2052092,2052093,2052094],"delay":907.0} +{"session_id":"sess-61dcfab01318","input_length":936,"output_length":682,"hash_ids":[2052095,2052096],"delay":226.5} +{"session_id":"sess-61dcfab01318","input_length":7409,"output_length":142,"hash_ids":[2052097,2052098,2052099,2052100,2052101,2052102,2052103,2052104,2052105,2052106,2052107,2052108,2052109,2052110,2052111],"delay":701.9} +{"session_id":"sess-61dcfab01318","input_length":2012,"output_length":208,"hash_ids":[2052112,2052113,2052114,2052115],"delay":2359.7} +{"session_id":"sess-61dcfab01318","input_length":2499,"output_length":196,"hash_ids":[2052116,2052117,2052118,2052119,2052120],"delay":491.3} +{"session_id":"sess-61dcfab01318","input_length":3220,"output_length":1218,"hash_ids":[2052121,2052122,2052123,2052124,2052125,2052126,2052127],"delay":1010.2} +{"session_id":"sess-61dcfab01318","input_length":212,"output_length":244,"hash_ids":[2052128],"delay":750.2} +{"session_id":"sess-61dcfab01318","input_length":1452,"output_length":291,"hash_ids":[2052129,2052130,2052131],"delay":714.6} +{"session_id":"sess-61dcfab01318","input_length":591,"output_length":218,"hash_ids":[2052132,2052133],"delay":7347.9} +{"session_id":"sess-61dcfab01318","input_length":2065,"output_length":541,"hash_ids":[2052134,2052135,2052136,2052137,2052138],"delay":1718.7} +{"session_id":"sess-61dcfab01318","input_length":922,"output_length":30,"hash_ids":[2052139,2052140],"delay":302.4} +{"session_id":"sess-61dcfab01318","input_length":5596,"output_length":196,"hash_ids":[2052141,2052142,2052143,2052144,2052145,2052146,2052147,2052148,2052149,2052150,2052151],"delay":180.2} +{"session_id":"sess-61dcfab01318","input_length":1193,"output_length":91,"hash_ids":[2052152,2052153,2052154],"delay":2006.2} +{"session_id":"sess-61dcfab01318","input_length":1765,"output_length":159,"hash_ids":[2052155,2052156,2052157,2052158],"delay":193.1} +{"session_id":"sess-61dcfab01318","input_length":393,"output_length":164,"hash_ids":[2052159],"delay":470.9} +{"session_id":"sess-61dcfab01318","input_length":1744,"output_length":442,"hash_ids":[2052160,2052161,2052162,2052163],"delay":1128.0} +{"session_id":"sess-61dcfab01318","input_length":4911,"output_length":287,"hash_ids":[2052164,2052165,2052166,2052167,2052168,2052169,2052170,2052171,2052172,2052173],"delay":7814.6} +{"session_id":"sess-61dcfab01318","input_length":2523,"output_length":1252,"hash_ids":[2052174,2052175,2052176,2052177,2052178],"delay":417.5} +{"session_id":"sess-61dcfab01318","input_length":2794,"output_length":276,"hash_ids":[2052179,2052180,2052181,2052182,2052183,2052184],"delay":292.8} +{"session_id":"sess-61dcfab01318","input_length":1416,"output_length":862,"hash_ids":[2052185,2052186,2052187],"delay":6055.7} +{"session_id":"sess-61dcfab01318","input_length":1104,"output_length":833,"hash_ids":[2052188,2052189,2052190],"delay":695.9} +{"session_id":"sess-61dcfab01318","input_length":7836,"output_length":248,"hash_ids":[2052191,2052192,2052193,2052194,2052195,2052196,2052197,2052198,2052199,2052200,2052201,2052202,2052203,2052204,2052205,2052206],"delay":390.0} +{"session_id":"sess-b8129dd98538","input_length":54282,"output_length":1181,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2056063,2056064,2056065,2056066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b8129dd98538","input_length":1066,"output_length":119,"hash_ids":[2056067,2056068,2056069],"delay":5068.0} +{"session_id":"sess-b8129dd98538","input_length":8069,"output_length":157,"hash_ids":[2056070,2056071,2056072,2056073,2056074,2056075,2056076,2056077,2056078,2056079,2056080,2056081,2056082,2056083,2056084,2056085],"delay":1345.4} +{"session_id":"sess-2ccdc3b77011","input_length":81046,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2060063,2060064,2060065,2060066,2060067,2060068,2060069,2060070,2060071,2060072,2060073,2060074,2060075,2060076,2060077,2060078,2060079,2060080,2060081,2060082,2060083,2060084,2060085,2060086,2060087,2060088,2060089,2060090,2060091,2060092,2060093,2060094,2060095,2060096,2060097,2060098,2060099,2060100,2060101,2060102,2060103,2060104,2060105,2060106,2060107,2060108,2060109,2060110,2060111,2060112,2060113,2060114,2060115,2060116,2060117,2060118],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2ccdc3b77011","input_length":3239,"output_length":823,"hash_ids":[2060119,2060120,2060121,2060122,2060123,2060124,2060125],"delay":11216.3} +{"session_id":"sess-2ccdc3b77011","input_length":61,"output_length":195,"hash_ids":[2060126],"delay":698.5} +{"session_id":"sess-2ccdc3b77011","input_length":866,"output_length":78,"hash_ids":[2060127,2060128],"delay":15529.8} +{"session_id":"sess-2ccdc3b77011","input_length":2888,"output_length":157,"hash_ids":[2060129,2060130,2060131,2060132,2060133,2060134],"delay":341.9} +{"session_id":"sess-2ccdc3b77011","input_length":1540,"output_length":321,"hash_ids":[2060135,2060136,2060137,2060138],"delay":333.5} +{"session_id":"sess-2ccdc3b77011","input_length":1963,"output_length":408,"hash_ids":[2060139,2060140,2060141,2060142],"delay":3737.2} +{"session_id":"sess-2ccdc3b77011","input_length":2760,"output_length":99,"hash_ids":[2060143,2060144,2060145,2060146,2060147,2060148],"delay":5807.3} +{"session_id":"sess-2ccdc3b77011","input_length":1315,"output_length":2081,"hash_ids":[2060149,2060150,2060151],"delay":3314.1} +{"session_id":"sess-2ccdc3b77011","input_length":2299,"output_length":807,"hash_ids":[2060152,2060153,2060154,2060155,2060156],"delay":10319.2} +{"session_id":"sess-2ccdc3b77011","input_length":1117,"output_length":373,"hash_ids":[2060157,2060158,2060159],"delay":846.1} +{"session_id":"sess-2ccdc3b77011","input_length":82,"output_length":447,"hash_ids":[2060160],"delay":21567.4} +{"session_id":"sess-2ccdc3b77011","input_length":470,"output_length":676,"hash_ids":[2060161],"delay":2214.0} +{"session_id":"sess-2ccdc3b77011","input_length":1917,"output_length":351,"hash_ids":[2060162,2060163,2060164,2060165],"delay":447.1} +{"session_id":"sess-2ccdc3b77011","input_length":3906,"output_length":112,"hash_ids":[2060166,2060167,2060168,2060169,2060170,2060171,2060172,2060173],"delay":5630.9} +{"session_id":"sess-2ccdc3b77011","input_length":5931,"output_length":249,"hash_ids":[2060174,2060175,2060176,2060177,2060178,2060179,2060180,2060181,2060182,2060183,2060184,2060185],"delay":855.0} +{"session_id":"sess-2ccdc3b77011","input_length":1740,"output_length":487,"hash_ids":[2060186,2060187,2060188,2060189],"delay":7611.3} +{"session_id":"sess-2ccdc3b77011","input_length":3132,"output_length":146,"hash_ids":[2060190,2060191,2060192,2060193,2060194,2060195,2060196],"delay":376.9} +{"session_id":"sess-2ccdc3b77011","input_length":482,"output_length":852,"hash_ids":[2060197],"delay":1189.1} +{"session_id":"sess-094b0e9f1db2","input_length":60797,"output_length":509,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,2064063,2064064,2064065,2064066,2064067,2064068,2064069,2064070,2064071,2064072,2064073,2064074,2064075,2064076,2064077,2064078],"timestamp":0.0,"group_id":29} +{"session_id":"sess-094b0e9f1db2","input_length":5678,"output_length":139,"hash_ids":[2064079,2064080,2064081,2064082,2064083,2064084,2064085,2064086,2064087,2064088,2064089,2064090],"delay":1150.8} +{"session_id":"sess-094b0e9f1db2","input_length":8185,"output_length":694,"hash_ids":[2064091,2064092,2064093,2064094,2064095,2064096,2064097,2064098,2064099,2064100,2064101,2064102,2064103,2064104,2064105,2064106],"delay":2069.9} +{"session_id":"sess-094b0e9f1db2","input_length":2701,"output_length":1209,"hash_ids":[2064107,2064108,2064109,2064110,2064111,2064112],"delay":616.6} +{"session_id":"sess-094b0e9f1db2","input_length":2541,"output_length":531,"hash_ids":[2064113,2064114,2064115,2064116,2064117],"delay":10640.3} +{"session_id":"sess-094b0e9f1db2","input_length":7821,"output_length":1667,"hash_ids":[2064118,2064119,2064120,2064121,2064122,2064123,2064124,2064125,2064126,2064127,2064128,2064129,2064130,2064131,2064132,2064133],"delay":4219.4} +{"session_id":"sess-094b0e9f1db2","input_length":1532,"output_length":112,"hash_ids":[2064134,2064135,2064136],"delay":2008.4} +{"session_id":"sess-094b0e9f1db2","input_length":2408,"output_length":876,"hash_ids":[2064137,2064138,2064139,2064140,2064141],"delay":627.3} +{"session_id":"sess-094b0e9f1db2","input_length":820,"output_length":383,"hash_ids":[2064142,2064143],"delay":1487.6} +{"session_id":"sess-094b0e9f1db2","input_length":852,"output_length":275,"hash_ids":[2064144,2064145],"delay":2178.6} +{"session_id":"sess-094b0e9f1db2","input_length":5921,"output_length":1753,"hash_ids":[2064146,2064147,2064148,2064149,2064150,2064151,2064152,2064153,2064154,2064155,2064156,2064157],"delay":561.6} +{"session_id":"sess-094b0e9f1db2","input_length":1029,"output_length":89,"hash_ids":[2064158,2064159,2064160],"delay":4937.9} +{"session_id":"sess-094b0e9f1db2","input_length":6390,"output_length":61,"hash_ids":[2064161,2064162,2064163,2064164,2064165,2064166,2064167,2064168,2064169,2064170,2064171,2064172,2064173],"delay":7393.6} +{"session_id":"sess-094b0e9f1db2","input_length":3186,"output_length":715,"hash_ids":[2064174,2064175,2064176,2064177,2064178,2064179,2064180],"delay":527.5} +{"session_id":"sess-094b0e9f1db2","input_length":604,"output_length":176,"hash_ids":[2064181,2064182],"delay":670.2} +{"session_id":"sess-094b0e9f1db2","input_length":4439,"output_length":207,"hash_ids":[2064183,2064184,2064185,2064186,2064187,2064188,2064189,2064190,2064191],"delay":1625.2} +{"session_id":"sess-094b0e9f1db2","input_length":725,"output_length":55,"hash_ids":[2064192,2064193],"delay":422.9} +{"session_id":"sess-094b0e9f1db2","input_length":988,"output_length":472,"hash_ids":[2064194,2064195],"delay":439.7} +{"session_id":"sess-094b0e9f1db2","input_length":1297,"output_length":78,"hash_ids":[2064196,2064197,2064198],"delay":2135.7} +{"session_id":"sess-094b0e9f1db2","input_length":1009,"output_length":55,"hash_ids":[2064199,2064200],"delay":454.6} +{"session_id":"sess-691dc57c1b6e","input_length":58018,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2068063,2068064,2068065,2068066,2068067,2068068,2068069,2068070,2068071,2068072,2068073],"timestamp":0.0,"group_id":0} +{"session_id":"sess-691dc57c1b6e","input_length":527,"output_length":71,"hash_ids":[2068074,2068075],"delay":28155.8} +{"session_id":"sess-691dc57c1b6e","input_length":3469,"output_length":358,"hash_ids":[2068076,2068077,2068078,2068079,2068080,2068081,2068082],"delay":2706.5} +{"session_id":"sess-691dc57c1b6e","input_length":3897,"output_length":369,"hash_ids":[2068083,2068084,2068085,2068086,2068087,2068088,2068089,2068090],"delay":590.5} +{"session_id":"sess-691dc57c1b6e","input_length":2791,"output_length":494,"hash_ids":[2068091,2068092,2068093,2068094,2068095,2068096],"delay":735.4} +{"session_id":"sess-691dc57c1b6e","input_length":9226,"output_length":271,"hash_ids":[2068097,2068098,2068099,2068100,2068101,2068102,2068103,2068104,2068105,2068106,2068107,2068108,2068109,2068110,2068111,2068112,2068113,2068114,2068115],"delay":442.0} +{"session_id":"sess-691dc57c1b6e","input_length":1611,"output_length":446,"hash_ids":[2068116,2068117,2068118,2068119],"delay":1443.0} +{"session_id":"sess-691dc57c1b6e","input_length":1486,"output_length":211,"hash_ids":[2068120,2068121,2068122],"delay":5219.1} +{"session_id":"sess-691dc57c1b6e","input_length":4673,"output_length":651,"hash_ids":[2068123,2068124,2068125,2068126,2068127,2068128,2068129,2068130,2068131,2068132],"delay":1014.0} +{"session_id":"sess-691dc57c1b6e","input_length":2686,"output_length":190,"hash_ids":[2068133,2068134,2068135,2068136,2068137,2068138],"delay":1477.3} +{"session_id":"sess-691dc57c1b6e","input_length":4560,"output_length":350,"hash_ids":[2068139,2068140,2068141,2068142,2068143,2068144,2068145,2068146,2068147],"delay":12756.3} +{"session_id":"sess-691dc57c1b6e","input_length":172,"output_length":267,"hash_ids":[2068148],"delay":467.3} +{"session_id":"sess-691dc57c1b6e","input_length":495,"output_length":30,"hash_ids":[2068149],"delay":1467.9} +{"session_id":"sess-691dc57c1b6e","input_length":2740,"output_length":1099,"hash_ids":[2068150,2068151,2068152,2068153,2068154,2068155],"delay":841.2} +{"session_id":"sess-691dc57c1b6e","input_length":1627,"output_length":1991,"hash_ids":[2068156,2068157,2068158,2068159],"delay":24868.6} +{"session_id":"sess-691dc57c1b6e","input_length":2543,"output_length":138,"hash_ids":[2068160,2068161,2068162,2068163,2068164],"delay":5334.3} +{"session_id":"sess-691dc57c1b6e","input_length":929,"output_length":170,"hash_ids":[2068165,2068166],"delay":214.3} +{"session_id":"sess-691dc57c1b6e","input_length":6375,"output_length":795,"hash_ids":[2068167,2068168,2068169,2068170,2068171,2068172,2068173,2068174,2068175,2068176,2068177,2068178,2068179],"delay":1804.1} +{"session_id":"sess-691dc57c1b6e","input_length":7127,"output_length":102,"hash_ids":[2068180,2068181,2068182,2068183,2068184,2068185,2068186,2068187,2068188,2068189,2068190,2068191,2068192,2068193],"delay":1557.8} +{"session_id":"sess-691dc57c1b6e","input_length":2252,"output_length":127,"hash_ids":[2068194,2068195,2068196,2068197,2068198],"delay":341.5} +{"session_id":"sess-691dc57c1b6e","input_length":2041,"output_length":138,"hash_ids":[2068199,2068200,2068201,2068202],"delay":5986.6} +{"session_id":"sess-691dc57c1b6e","input_length":3194,"output_length":580,"hash_ids":[2068203,2068204,2068205,2068206,2068207,2068208,2068209],"delay":522.4} +{"session_id":"sess-06a6cb650b61","input_length":57762,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2072063,2072064,2072065,2072066,2072067,2072068,2072069,2072070,2072071,2072072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-06a6cb650b61","input_length":459,"output_length":125,"hash_ids":[2072073],"delay":16724.6} +{"session_id":"sess-06a6cb650b61","input_length":2906,"output_length":1018,"hash_ids":[2072074,2072075,2072076,2072077,2072078,2072079],"delay":680.1} +{"session_id":"sess-06a6cb650b61","input_length":2735,"output_length":58,"hash_ids":[2072080,2072081,2072082,2072083,2072084,2072085],"delay":1695.0} +{"session_id":"sess-06a6cb650b61","input_length":9577,"output_length":202,"hash_ids":[2072086,2072087,2072088,2072089,2072090,2072091,2072092,2072093,2072094,2072095,2072096,2072097,2072098,2072099,2072100,2072101,2072102,2072103,2072104],"delay":195.0} +{"session_id":"sess-06a6cb650b61","input_length":3400,"output_length":2507,"hash_ids":[2072105,2072106,2072107,2072108,2072109,2072110,2072111],"delay":1299.9} +{"session_id":"sess-06a6cb650b61","input_length":996,"output_length":400,"hash_ids":[2072112,2072113],"delay":3697.2} +{"session_id":"sess-06a6cb650b61","input_length":1343,"output_length":331,"hash_ids":[2072114,2072115,2072116],"delay":2693.6} +{"session_id":"sess-06a6cb650b61","input_length":874,"output_length":632,"hash_ids":[2072117,2072118],"delay":369.2} +{"session_id":"sess-06a6cb650b61","input_length":2026,"output_length":479,"hash_ids":[2072119,2072120,2072121,2072122],"delay":359.3} +{"session_id":"sess-06a6cb650b61","input_length":5153,"output_length":139,"hash_ids":[2072123,2072124,2072125,2072126,2072127,2072128,2072129,2072130,2072131,2072132,2072133],"delay":2988.8} +{"session_id":"sess-06a6cb650b61","input_length":2192,"output_length":371,"hash_ids":[2072134,2072135,2072136,2072137,2072138],"delay":745.3} +{"session_id":"sess-06a6cb650b61","input_length":1803,"output_length":261,"hash_ids":[2072139,2072140,2072141,2072142],"delay":1782.2} +{"session_id":"sess-06a6cb650b61","input_length":1563,"output_length":56,"hash_ids":[2072143,2072144,2072145,2072146],"delay":213.1} +{"session_id":"sess-06a6cb650b61","input_length":2461,"output_length":95,"hash_ids":[2072147,2072148,2072149,2072150,2072151],"delay":513.2} +{"session_id":"sess-06a6cb650b61","input_length":2163,"output_length":60,"hash_ids":[2072152,2072153,2072154,2072155,2072156],"delay":13108.6} +{"session_id":"sess-987693ec21a1","input_length":59622,"output_length":144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2076063,2076064,2076065,2076066,2076067,2076068,2076069,2076070,2076071,2076072,2076073,2076074,2076075,2076076],"timestamp":0.0,"group_id":3} +{"session_id":"sess-987693ec21a1","input_length":1365,"output_length":76,"hash_ids":[2076077,2076078,2076079],"delay":3781.4} +{"session_id":"sess-987693ec21a1","input_length":5282,"output_length":386,"hash_ids":[2076080,2076081,2076082,2076083,2076084,2076085,2076086,2076087,2076088,2076089,2076090],"delay":805.2} +{"session_id":"sess-987693ec21a1","input_length":1996,"output_length":795,"hash_ids":[2076091,2076092,2076093,2076094],"delay":15658.8} +{"session_id":"sess-987693ec21a1","input_length":646,"output_length":373,"hash_ids":[2076095,2076096],"delay":9052.5} +{"session_id":"sess-987693ec21a1","input_length":2541,"output_length":320,"hash_ids":[2076097,2076098,2076099,2076100,2076101],"delay":741.4} +{"session_id":"sess-987693ec21a1","input_length":3373,"output_length":47,"hash_ids":[2076102,2076103,2076104,2076105,2076106,2076107,2076108],"delay":1184.0} +{"session_id":"sess-987693ec21a1","input_length":4013,"output_length":301,"hash_ids":[2076109,2076110,2076111,2076112,2076113,2076114,2076115,2076116],"delay":2722.6} +{"session_id":"sess-987693ec21a1","input_length":3892,"output_length":172,"hash_ids":[2076117,2076118,2076119,2076120,2076121,2076122,2076123,2076124],"delay":516.6} +{"session_id":"sess-987693ec21a1","input_length":2306,"output_length":673,"hash_ids":[2076125,2076126,2076127,2076128,2076129],"delay":654.4} +{"session_id":"sess-cd5e9ffba204","input_length":57656,"output_length":41,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2080063,2080064,2080065,2080066,2080067,2080068,2080069,2080070,2080071,2080072],"timestamp":0.0,"group_id":5} +{"session_id":"sess-cd5e9ffba204","input_length":4899,"output_length":736,"hash_ids":[2080073,2080074,2080075,2080076,2080077,2080078,2080079,2080080,2080081,2080082],"delay":2658.7} +{"session_id":"sess-cd5e9ffba204","input_length":126,"output_length":245,"hash_ids":[2080083],"delay":886.0} +{"session_id":"sess-cd5e9ffba204","input_length":2662,"output_length":697,"hash_ids":[2080084,2080085,2080086,2080087,2080088,2080089],"delay":819.5} +{"session_id":"sess-cd5e9ffba204","input_length":905,"output_length":285,"hash_ids":[2080090,2080091],"delay":270.0} +{"session_id":"sess-cd5e9ffba204","input_length":2296,"output_length":401,"hash_ids":[2080092,2080093,2080094,2080095,2080096],"delay":2735.8} +{"session_id":"sess-cd5e9ffba204","input_length":538,"output_length":338,"hash_ids":[2080097,2080098],"delay":1159.3} +{"session_id":"sess-cd5e9ffba204","input_length":1735,"output_length":70,"hash_ids":[2080099,2080100,2080101,2080102],"delay":31533.2} +{"session_id":"sess-cd5e9ffba204","input_length":1589,"output_length":1253,"hash_ids":[2080103,2080104,2080105,2080106],"delay":2091.9} +{"session_id":"sess-cd5e9ffba204","input_length":6840,"output_length":412,"hash_ids":[2080107,2080108,2080109,2080110,2080111,2080112,2080113,2080114,2080115,2080116,2080117,2080118,2080119,2080120],"delay":1259.3} +{"session_id":"sess-cd5e9ffba204","input_length":8180,"output_length":186,"hash_ids":[2080121,2080122,2080123,2080124,2080125,2080126,2080127,2080128,2080129,2080130,2080131,2080132,2080133,2080134,2080135,2080136],"delay":40156.2} +{"session_id":"sess-cd5e9ffba204","input_length":688,"output_length":2347,"hash_ids":[2080137,2080138],"delay":1290.4} +{"session_id":"sess-cd5e9ffba204","input_length":1416,"output_length":551,"hash_ids":[2080139,2080140,2080141],"delay":214.4} +{"session_id":"sess-cd5e9ffba204","input_length":678,"output_length":303,"hash_ids":[2080142,2080143],"delay":1548.7} +{"session_id":"sess-cd5e9ffba204","input_length":274,"output_length":303,"hash_ids":[2080144],"delay":460.0} +{"session_id":"sess-cd5e9ffba204","input_length":2618,"output_length":148,"hash_ids":[2080145,2080146,2080147,2080148,2080149,2080150],"delay":1133.8} +{"session_id":"sess-cd5e9ffba204","input_length":1338,"output_length":422,"hash_ids":[2080151,2080152,2080153],"delay":549.8} +{"session_id":"sess-cd5e9ffba204","input_length":636,"output_length":627,"hash_ids":[2080154,2080155],"delay":666.7} +{"session_id":"sess-cd5e9ffba204","input_length":3787,"output_length":41,"hash_ids":[2080156,2080157,2080158,2080159,2080160,2080161,2080162,2080163],"delay":1964.4} +{"session_id":"sess-20041aa4d5fa","input_length":53526,"output_length":344,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2084063,2084064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-20041aa4d5fa","input_length":9079,"output_length":427,"hash_ids":[2084065,2084066,2084067,2084068,2084069,2084070,2084071,2084072,2084073,2084074,2084075,2084076,2084077,2084078,2084079,2084080,2084081,2084082],"delay":18913.7} +{"session_id":"sess-20041aa4d5fa","input_length":763,"output_length":57,"hash_ids":[2084083,2084084],"delay":255.3} +{"session_id":"sess-20041aa4d5fa","input_length":4478,"output_length":929,"hash_ids":[2084085,2084086,2084087,2084088,2084089,2084090,2084091,2084092,2084093],"delay":1050.8} +{"session_id":"sess-20041aa4d5fa","input_length":951,"output_length":462,"hash_ids":[2084094,2084095],"delay":803.4} +{"session_id":"sess-20041aa4d5fa","input_length":2148,"output_length":532,"hash_ids":[2084096,2084097,2084098,2084099,2084100],"delay":880.4} +{"session_id":"sess-20041aa4d5fa","input_length":978,"output_length":169,"hash_ids":[2084101,2084102],"delay":898.3} +{"session_id":"sess-20041aa4d5fa","input_length":257,"output_length":2023,"hash_ids":[2084103],"delay":623.7} +{"session_id":"sess-20041aa4d5fa","input_length":4795,"output_length":140,"hash_ids":[2084104,2084105,2084106,2084107,2084108,2084109,2084110,2084111,2084112,2084113],"delay":428.3} +{"session_id":"sess-20041aa4d5fa","input_length":2086,"output_length":179,"hash_ids":[2084114,2084115,2084116,2084117,2084118],"delay":686.7} +{"session_id":"sess-20041aa4d5fa","input_length":1451,"output_length":427,"hash_ids":[2084119,2084120,2084121],"delay":2910.7} +{"session_id":"sess-20041aa4d5fa","input_length":1277,"output_length":30,"hash_ids":[2084122,2084123,2084124],"delay":1260.5} +{"session_id":"sess-20041aa4d5fa","input_length":1071,"output_length":1060,"hash_ids":[2084125,2084126,2084127],"delay":617.0} +{"session_id":"sess-20041aa4d5fa","input_length":454,"output_length":148,"hash_ids":[2084128],"delay":1635.1} +{"session_id":"sess-20041aa4d5fa","input_length":586,"output_length":176,"hash_ids":[2084129,2084130],"delay":958.6} +{"session_id":"sess-20041aa4d5fa","input_length":1695,"output_length":95,"hash_ids":[2084131,2084132,2084133,2084134],"delay":678.1} +{"session_id":"sess-20041aa4d5fa","input_length":761,"output_length":203,"hash_ids":[2084135,2084136],"delay":797.2} +{"session_id":"sess-20041aa4d5fa","input_length":382,"output_length":513,"hash_ids":[2084137],"delay":9944.9} +{"session_id":"sess-20041aa4d5fa","input_length":1870,"output_length":152,"hash_ids":[2084138,2084139,2084140,2084141],"delay":158.6} +{"session_id":"sess-20041aa4d5fa","input_length":6178,"output_length":963,"hash_ids":[2084142,2084143,2084144,2084145,2084146,2084147,2084148,2084149,2084150,2084151,2084152,2084153,2084154],"delay":123.5} +{"session_id":"sess-20041aa4d5fa","input_length":755,"output_length":466,"hash_ids":[2084155,2084156],"delay":1549.1} +{"session_id":"sess-20041aa4d5fa","input_length":2932,"output_length":386,"hash_ids":[2084157,2084158,2084159,2084160,2084161,2084162],"delay":1718.4} +{"session_id":"sess-20041aa4d5fa","input_length":382,"output_length":649,"hash_ids":[2084163],"delay":4659.5} +{"session_id":"sess-20041aa4d5fa","input_length":269,"output_length":1337,"hash_ids":[2084164],"delay":333.7} +{"session_id":"sess-20041aa4d5fa","input_length":1303,"output_length":341,"hash_ids":[2084165,2084166,2084167],"delay":775.1} +{"session_id":"sess-20041aa4d5fa","input_length":2221,"output_length":506,"hash_ids":[2084168,2084169,2084170,2084171,2084172],"delay":2044.7} +{"session_id":"sess-20041aa4d5fa","input_length":4375,"output_length":322,"hash_ids":[2084173,2084174,2084175,2084176,2084177,2084178,2084179,2084180,2084181],"delay":478.7} +{"session_id":"sess-20041aa4d5fa","input_length":501,"output_length":161,"hash_ids":[2084182],"delay":1087.6} +{"session_id":"sess-20041aa4d5fa","input_length":554,"output_length":1470,"hash_ids":[2084183,2084184],"delay":860.2} +{"session_id":"sess-20041aa4d5fa","input_length":98,"output_length":781,"hash_ids":[2084185],"delay":29710.4} +{"session_id":"sess-20041aa4d5fa","input_length":2839,"output_length":650,"hash_ids":[2084186,2084187,2084188,2084189,2084190,2084191],"delay":472.6} +{"session_id":"sess-20041aa4d5fa","input_length":388,"output_length":492,"hash_ids":[2084192],"delay":162.2} +{"session_id":"sess-2eb2e4a47be7","input_length":57536,"output_length":599,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,2088063,2088064,2088065,2088066,2088067,2088068,2088069,2088070,2088071,2088072],"timestamp":0.0,"group_id":46} +{"session_id":"sess-2eb2e4a47be7","input_length":186,"output_length":84,"hash_ids":[2088073],"delay":1959.0} +{"session_id":"sess-2eb2e4a47be7","input_length":816,"output_length":123,"hash_ids":[2088074,2088075],"delay":2943.4} +{"session_id":"sess-2eb2e4a47be7","input_length":577,"output_length":256,"hash_ids":[2088076,2088077],"delay":2179.3} +{"session_id":"sess-2eb2e4a47be7","input_length":1137,"output_length":148,"hash_ids":[2088078,2088079,2088080],"delay":889.5} +{"session_id":"sess-2eb2e4a47be7","input_length":669,"output_length":472,"hash_ids":[2088081,2088082],"delay":31592.4} +{"session_id":"sess-2eb2e4a47be7","input_length":571,"output_length":1289,"hash_ids":[2088083,2088084],"delay":2090.2} +{"session_id":"sess-2eb2e4a47be7","input_length":2611,"output_length":376,"hash_ids":[2088085,2088086,2088087,2088088,2088089,2088090],"delay":1401.4} +{"session_id":"sess-2eb2e4a47be7","input_length":349,"output_length":1391,"hash_ids":[2088091],"delay":116.3} +{"session_id":"sess-2eb2e4a47be7","input_length":9972,"output_length":30,"hash_ids":[2088092,2088093,2088094,2088095,2088096,2088097,2088098,2088099,2088100,2088101,2088102,2088103,2088104,2088105,2088106,2088107,2088108,2088109,2088110,2088111],"delay":451.9} +{"session_id":"sess-2eb2e4a47be7","input_length":248,"output_length":852,"hash_ids":[2088112],"delay":18765.2} +{"session_id":"sess-2eb2e4a47be7","input_length":165,"output_length":779,"hash_ids":[2088113],"delay":15025.6} +{"session_id":"sess-2eb2e4a47be7","input_length":1539,"output_length":911,"hash_ids":[2088114,2088115,2088116,2088117],"delay":2398.8} +{"session_id":"sess-2eb2e4a47be7","input_length":3737,"output_length":1188,"hash_ids":[2088118,2088119,2088120,2088121,2088122,2088123,2088124,2088125],"delay":1152.2} +{"session_id":"sess-2eb2e4a47be7","input_length":5900,"output_length":2422,"hash_ids":[2088126,2088127,2088128,2088129,2088130,2088131,2088132,2088133,2088134,2088135,2088136,2088137],"delay":1189.2} +{"session_id":"sess-2eb2e4a47be7","input_length":1389,"output_length":427,"hash_ids":[2088138,2088139,2088140],"delay":1628.3} +{"session_id":"sess-2eb2e4a47be7","input_length":3135,"output_length":250,"hash_ids":[2088141,2088142,2088143,2088144,2088145,2088146,2088147],"delay":453.2} +{"session_id":"sess-2eb2e4a47be7","input_length":5998,"output_length":163,"hash_ids":[2088148,2088149,2088150,2088151,2088152,2088153,2088154,2088155,2088156,2088157,2088158,2088159],"delay":1021.1} +{"session_id":"sess-2eb2e4a47be7","input_length":747,"output_length":171,"hash_ids":[2088160,2088161],"delay":693.6} +{"session_id":"sess-2eb2e4a47be7","input_length":1481,"output_length":1461,"hash_ids":[2088162,2088163,2088164],"delay":5620.6} +{"session_id":"sess-2eb2e4a47be7","input_length":5851,"output_length":616,"hash_ids":[2088165,2088166,2088167,2088168,2088169,2088170,2088171,2088172,2088173,2088174,2088175,2088176],"delay":166.4} +{"session_id":"sess-2eb2e4a47be7","input_length":5243,"output_length":216,"hash_ids":[2088177,2088178,2088179,2088180,2088181,2088182,2088183,2088184,2088185,2088186,2088187],"delay":1017.1} +{"session_id":"sess-2eb2e4a47be7","input_length":3112,"output_length":71,"hash_ids":[2088188,2088189,2088190,2088191,2088192,2088193,2088194],"delay":8183.6} +{"session_id":"sess-2eb2e4a47be7","input_length":755,"output_length":280,"hash_ids":[2088195,2088196],"delay":259.7} +{"session_id":"sess-f76ac5661581","input_length":56387,"output_length":676,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2092063,2092064,2092065,2092066,2092067,2092068,2092069,2092070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f76ac5661581","input_length":2051,"output_length":166,"hash_ids":[2092071,2092072,2092073,2092074,2092075],"delay":812.9} +{"session_id":"sess-f76ac5661581","input_length":1427,"output_length":268,"hash_ids":[2092076,2092077,2092078],"delay":606.1} +{"session_id":"sess-f76ac5661581","input_length":4065,"output_length":199,"hash_ids":[2092079,2092080,2092081,2092082,2092083,2092084,2092085,2092086],"delay":1976.3} +{"session_id":"sess-f76ac5661581","input_length":1531,"output_length":296,"hash_ids":[2092087,2092088,2092089],"delay":40987.0} +{"session_id":"sess-f76ac5661581","input_length":2322,"output_length":100,"hash_ids":[2092090,2092091,2092092,2092093,2092094],"delay":1389.4} +{"session_id":"sess-f76ac5661581","input_length":266,"output_length":415,"hash_ids":[2092095],"delay":14638.3} +{"session_id":"sess-f76ac5661581","input_length":430,"output_length":250,"hash_ids":[2092096],"delay":491.8} +{"session_id":"sess-f76ac5661581","input_length":2253,"output_length":1742,"hash_ids":[2092097,2092098,2092099,2092100,2092101],"delay":1504.6} +{"session_id":"sess-12dee3ed2504","input_length":55136,"output_length":645,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2096063,2096064,2096065,2096066,2096067],"timestamp":0.0,"group_id":13} +{"session_id":"sess-12dee3ed2504","input_length":795,"output_length":332,"hash_ids":[2096068,2096069],"delay":28039.4} +{"session_id":"sess-12dee3ed2504","input_length":9433,"output_length":227,"hash_ids":[2096070,2096071,2096072,2096073,2096074,2096075,2096076,2096077,2096078,2096079,2096080,2096081,2096082,2096083,2096084,2096085,2096086,2096087,2096088],"delay":14163.0} +{"session_id":"sess-12dee3ed2504","input_length":9702,"output_length":74,"hash_ids":[2096089,2096090,2096091,2096092,2096093,2096094,2096095,2096096,2096097,2096098,2096099,2096100,2096101,2096102,2096103,2096104,2096105,2096106,2096107],"delay":1554.5} +{"session_id":"sess-12dee3ed2504","input_length":8994,"output_length":221,"hash_ids":[2096108,2096109,2096110,2096111,2096112,2096113,2096114,2096115,2096116,2096117,2096118,2096119,2096120,2096121,2096122,2096123,2096124,2096125],"delay":619.2} +{"session_id":"sess-12dee3ed2504","input_length":1018,"output_length":1241,"hash_ids":[2096126,2096127],"delay":238.3} +{"session_id":"sess-12dee3ed2504","input_length":3244,"output_length":161,"hash_ids":[2096128,2096129,2096130,2096131,2096132,2096133,2096134],"delay":155.3} +{"session_id":"sess-12dee3ed2504","input_length":7339,"output_length":466,"hash_ids":[2096135,2096136,2096137,2096138,2096139,2096140,2096141,2096142,2096143,2096144,2096145,2096146,2096147,2096148,2096149],"delay":1078.9} +{"session_id":"sess-12dee3ed2504","input_length":1896,"output_length":2388,"hash_ids":[2096150,2096151,2096152,2096153],"delay":323.5} +{"session_id":"sess-12dee3ed2504","input_length":1215,"output_length":157,"hash_ids":[2096154,2096155,2096156],"delay":1079.7} +{"session_id":"sess-12dee3ed2504","input_length":5232,"output_length":401,"hash_ids":[2096157,2096158,2096159,2096160,2096161,2096162,2096163,2096164,2096165,2096166,2096167],"delay":452.1} +{"session_id":"sess-12dee3ed2504","input_length":6808,"output_length":2294,"hash_ids":[2096168,2096169,2096170,2096171,2096172,2096173,2096174,2096175,2096176,2096177,2096178,2096179,2096180,2096181],"delay":285.8} +{"session_id":"sess-12dee3ed2504","input_length":1205,"output_length":195,"hash_ids":[2096182,2096183,2096184],"delay":675.9} +{"session_id":"sess-12dee3ed2504","input_length":2597,"output_length":1961,"hash_ids":[2096185,2096186,2096187,2096188,2096189,2096190],"delay":256.8} +{"session_id":"sess-12dee3ed2504","input_length":5329,"output_length":408,"hash_ids":[2096191,2096192,2096193,2096194,2096195,2096196,2096197,2096198,2096199,2096200,2096201],"delay":1024.9} +{"session_id":"sess-4bf779ba4d76","input_length":54264,"output_length":578,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2100063,2100064,2100065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4bf779ba4d76","input_length":199,"output_length":600,"hash_ids":[2100066],"delay":6251.4} +{"session_id":"sess-4bf779ba4d76","input_length":1315,"output_length":103,"hash_ids":[2100067,2100068,2100069],"delay":1017.7} +{"session_id":"sess-4bf779ba4d76","input_length":452,"output_length":30,"hash_ids":[2100070],"delay":2376.2} +{"session_id":"sess-3064ba0c98a8","input_length":55657,"output_length":710,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2104063,2104064,2104065,2104066,2104067,2104068],"timestamp":0.0,"group_id":2} +{"session_id":"sess-3064ba0c98a8","input_length":629,"output_length":516,"hash_ids":[2104069,2104070],"delay":858.0} +{"session_id":"sess-3064ba0c98a8","input_length":1304,"output_length":199,"hash_ids":[2104071,2104072,2104073],"delay":5804.0} +{"session_id":"sess-3064ba0c98a8","input_length":3372,"output_length":279,"hash_ids":[2104074,2104075,2104076,2104077,2104078,2104079,2104080],"delay":361.6} +{"session_id":"sess-3064ba0c98a8","input_length":1552,"output_length":81,"hash_ids":[2104081,2104082,2104083,2104084],"delay":1251.1} +{"session_id":"sess-3064ba0c98a8","input_length":1751,"output_length":406,"hash_ids":[2104085,2104086,2104087,2104088],"delay":3501.5} +{"session_id":"sess-3064ba0c98a8","input_length":2135,"output_length":196,"hash_ids":[2104089,2104090,2104091,2104092,2104093],"delay":15276.5} +{"session_id":"sess-3064ba0c98a8","input_length":7854,"output_length":1017,"hash_ids":[2104094,2104095,2104096,2104097,2104098,2104099,2104100,2104101,2104102,2104103,2104104,2104105,2104106,2104107,2104108,2104109],"delay":164.8} +{"session_id":"sess-3064ba0c98a8","input_length":877,"output_length":118,"hash_ids":[2104110,2104111],"delay":392.1} +{"session_id":"sess-3064ba0c98a8","input_length":4594,"output_length":593,"hash_ids":[2104112,2104113,2104114,2104115,2104116,2104117,2104118,2104119,2104120],"delay":2397.0} +{"session_id":"sess-3064ba0c98a8","input_length":1202,"output_length":261,"hash_ids":[2104121,2104122,2104123],"delay":478.9} +{"session_id":"sess-3064ba0c98a8","input_length":2366,"output_length":1324,"hash_ids":[2104124,2104125,2104126,2104127,2104128],"delay":1442.8} +{"session_id":"sess-3064ba0c98a8","input_length":1055,"output_length":211,"hash_ids":[2104129,2104130,2104131],"delay":420.8} +{"session_id":"sess-3064ba0c98a8","input_length":8137,"output_length":414,"hash_ids":[2104132,2104133,2104134,2104135,2104136,2104137,2104138,2104139,2104140,2104141,2104142,2104143,2104144,2104145,2104146,2104147],"delay":364.0} +{"session_id":"sess-3064ba0c98a8","input_length":1036,"output_length":134,"hash_ids":[2104148,2104149,2104150],"delay":30175.5} +{"session_id":"sess-3064ba0c98a8","input_length":1589,"output_length":1393,"hash_ids":[2104151,2104152,2104153,2104154],"delay":6075.0} +{"session_id":"sess-3064ba0c98a8","input_length":3412,"output_length":164,"hash_ids":[2104155,2104156,2104157,2104158,2104159,2104160,2104161],"delay":1053.6} +{"session_id":"sess-3064ba0c98a8","input_length":462,"output_length":880,"hash_ids":[2104162],"delay":535.2} +{"session_id":"sess-3064ba0c98a8","input_length":3414,"output_length":348,"hash_ids":[2104163,2104164,2104165,2104166,2104167,2104168,2104169],"delay":1493.6} +{"session_id":"sess-3064ba0c98a8","input_length":451,"output_length":1233,"hash_ids":[2104170],"delay":546.0} +{"session_id":"sess-3064ba0c98a8","input_length":1094,"output_length":617,"hash_ids":[2104171,2104172,2104173],"delay":1709.1} +{"session_id":"sess-3064ba0c98a8","input_length":1982,"output_length":589,"hash_ids":[2104174,2104175,2104176,2104177],"delay":303.9} +{"session_id":"sess-3064ba0c98a8","input_length":2447,"output_length":338,"hash_ids":[2104178,2104179,2104180,2104181,2104182],"delay":1132.7} +{"session_id":"sess-3064ba0c98a8","input_length":639,"output_length":697,"hash_ids":[2104183,2104184],"delay":435.2} +{"session_id":"sess-3064ba0c98a8","input_length":526,"output_length":121,"hash_ids":[2104185,2104186],"delay":4077.5} +{"session_id":"sess-3064ba0c98a8","input_length":4850,"output_length":396,"hash_ids":[2104187,2104188,2104189,2104190,2104191,2104192,2104193,2104194,2104195,2104196],"delay":588.9} +{"session_id":"sess-fdbb64f42639","input_length":53783,"output_length":2532,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2108063,2108064,2108065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-fdbb64f42639","input_length":3026,"output_length":162,"hash_ids":[2108066,2108067,2108068,2108069,2108070,2108071],"delay":1023.2} +{"session_id":"sess-fdbb64f42639","input_length":222,"output_length":566,"hash_ids":[2108072],"delay":8884.2} +{"session_id":"sess-fdbb64f42639","input_length":932,"output_length":104,"hash_ids":[2108073,2108074],"delay":1187.5} +{"session_id":"sess-fdbb64f42639","input_length":3263,"output_length":688,"hash_ids":[2108075,2108076,2108077,2108078,2108079,2108080,2108081],"delay":1085.5} +{"session_id":"sess-a62b968c5550","input_length":56888,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2112063,2112064,2112065,2112066,2112067,2112068,2112069,2112070,2112071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a62b968c5550","input_length":1394,"output_length":243,"hash_ids":[2112072,2112073,2112074],"delay":19246.0} +{"session_id":"sess-a62b968c5550","input_length":538,"output_length":287,"hash_ids":[2112075,2112076],"delay":12564.5} +{"session_id":"sess-a62b968c5550","input_length":1883,"output_length":299,"hash_ids":[2112077,2112078,2112079,2112080],"delay":43651.8} +{"session_id":"sess-a62b968c5550","input_length":2822,"output_length":63,"hash_ids":[2112081,2112082,2112083,2112084,2112085,2112086],"delay":3891.8} +{"session_id":"sess-a62b968c5550","input_length":519,"output_length":589,"hash_ids":[2112087,2112088],"delay":1711.5} +{"session_id":"sess-a62b968c5550","input_length":2112,"output_length":30,"hash_ids":[2112089,2112090,2112091,2112092,2112093],"delay":3495.2} +{"session_id":"sess-a62b968c5550","input_length":1945,"output_length":177,"hash_ids":[2112094,2112095,2112096,2112097],"delay":1925.0} +{"session_id":"sess-a62b968c5550","input_length":2373,"output_length":389,"hash_ids":[2112098,2112099,2112100,2112101,2112102],"delay":935.5} +{"session_id":"sess-a62b968c5550","input_length":318,"output_length":1105,"hash_ids":[2112103],"delay":1414.3} +{"session_id":"sess-a62b968c5550","input_length":2681,"output_length":239,"hash_ids":[2112104,2112105,2112106,2112107,2112108,2112109],"delay":1744.5} +{"session_id":"sess-a62b968c5550","input_length":2860,"output_length":476,"hash_ids":[2112110,2112111,2112112,2112113,2112114,2112115],"delay":418.9} +{"session_id":"sess-a62b968c5550","input_length":1022,"output_length":518,"hash_ids":[2112116,2112117],"delay":808.8} +{"session_id":"sess-a62b968c5550","input_length":5494,"output_length":110,"hash_ids":[2112118,2112119,2112120,2112121,2112122,2112123,2112124,2112125,2112126,2112127,2112128],"delay":437.4} +{"session_id":"sess-353102792e13","input_length":52625,"output_length":2903,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502],"timestamp":0.0,"group_id":42} +{"session_id":"sess-353102792e13","input_length":6642,"output_length":125,"hash_ids":[2112129,2112130,2112131,2112132,2112133,2112134,2112135,2112136,2112137,2112138,2112139,2112140,2112141],"delay":7806.0} +{"session_id":"sess-353102792e13","input_length":5068,"output_length":195,"hash_ids":[2112142,2112143,2112144,2112145,2112146,2112147,2112148,2112149,2112150,2112151],"delay":1437.6} +{"session_id":"sess-353102792e13","input_length":206,"output_length":77,"hash_ids":[2112152],"delay":540.9} +{"session_id":"sess-353102792e13","input_length":739,"output_length":403,"hash_ids":[2112153,2112154],"delay":1129.7} +{"session_id":"sess-353102792e13","input_length":1077,"output_length":684,"hash_ids":[2112155,2112156,2112157],"delay":949.2} +{"session_id":"sess-353102792e13","input_length":366,"output_length":198,"hash_ids":[2112158],"delay":453.3} +{"session_id":"sess-353102792e13","input_length":597,"output_length":935,"hash_ids":[2112159,2112160],"delay":908.6} +{"session_id":"sess-353102792e13","input_length":6105,"output_length":87,"hash_ids":[2112161,2112162,2112163,2112164,2112165,2112166,2112167,2112168,2112169,2112170,2112171,2112172],"delay":1284.2} +{"session_id":"sess-353102792e13","input_length":6690,"output_length":384,"hash_ids":[2112173,2112174,2112175,2112176,2112177,2112178,2112179,2112180,2112181,2112182,2112183,2112184,2112185,2112186],"delay":26550.8} +{"session_id":"sess-353102792e13","input_length":9858,"output_length":47,"hash_ids":[2112187,2112188,2112189,2112190,2112191,2112192,2112193,2112194,2112195,2112196,2112197,2112198,2112199,2112200,2112201,2112202,2112203,2112204,2112205,2112206],"delay":38817.9} +{"session_id":"sess-c3d0c7feedd8","input_length":56143,"output_length":37,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2120063,2120064,2120065,2120066,2120067,2120068,2120069],"timestamp":0.0,"group_id":5} +{"session_id":"sess-c3d0c7feedd8","input_length":2204,"output_length":320,"hash_ids":[2120070,2120071,2120072,2120073,2120074],"delay":3534.8} +{"session_id":"sess-c3d0c7feedd8","input_length":3496,"output_length":764,"hash_ids":[2120075,2120076,2120077,2120078,2120079,2120080,2120081],"delay":746.4} +{"session_id":"sess-c3d0c7feedd8","input_length":1950,"output_length":679,"hash_ids":[2120082,2120083,2120084,2120085],"delay":2235.5} +{"session_id":"sess-18f7592c3b60","input_length":56514,"output_length":385,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2124063,2124064,2124065,2124066,2124067,2124068,2124069,2124070],"timestamp":0.0,"group_id":11} +{"session_id":"sess-18f7592c3b60","input_length":371,"output_length":59,"hash_ids":[2124071],"delay":414.8} +{"session_id":"sess-18f7592c3b60","input_length":3266,"output_length":348,"hash_ids":[2124072,2124073,2124074,2124075,2124076,2124077,2124078],"delay":1924.3} +{"session_id":"sess-18f7592c3b60","input_length":5886,"output_length":233,"hash_ids":[2124079,2124080,2124081,2124082,2124083,2124084,2124085,2124086,2124087,2124088,2124089,2124090],"delay":8337.6} +{"session_id":"sess-18f7592c3b60","input_length":582,"output_length":326,"hash_ids":[2124091,2124092],"delay":644.0} +{"session_id":"sess-fb8aec98069e","input_length":52683,"output_length":298,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb8aec98069e","input_length":8782,"output_length":1905,"hash_ids":[2124093,2124094,2124095,2124096,2124097,2124098,2124099,2124100,2124101,2124102,2124103,2124104,2124105,2124106,2124107,2124108,2124109,2124110],"delay":3397.4} +{"session_id":"sess-fb8aec98069e","input_length":981,"output_length":607,"hash_ids":[2124111,2124112],"delay":648.6} +{"session_id":"sess-fb8aec98069e","input_length":3947,"output_length":161,"hash_ids":[2124113,2124114,2124115,2124116,2124117,2124118,2124119,2124120],"delay":1491.3} +{"session_id":"sess-fb8aec98069e","input_length":3028,"output_length":426,"hash_ids":[2124121,2124122,2124123,2124124,2124125,2124126],"delay":41464.9} +{"session_id":"sess-fb8aec98069e","input_length":1593,"output_length":335,"hash_ids":[2124127,2124128,2124129,2124130],"delay":1839.0} +{"session_id":"sess-fb8aec98069e","input_length":506,"output_length":622,"hash_ids":[2124131],"delay":3432.8} +{"session_id":"sess-fb8aec98069e","input_length":2377,"output_length":94,"hash_ids":[2124132,2124133,2124134,2124135,2124136],"delay":1650.1} +{"session_id":"sess-fb8aec98069e","input_length":2162,"output_length":328,"hash_ids":[2124137,2124138,2124139,2124140,2124141],"delay":3483.2} +{"session_id":"sess-fb8aec98069e","input_length":3338,"output_length":438,"hash_ids":[2124142,2124143,2124144,2124145,2124146,2124147,2124148],"delay":876.9} +{"session_id":"sess-fb8aec98069e","input_length":2848,"output_length":165,"hash_ids":[2124149,2124150,2124151,2124152,2124153,2124154],"delay":1217.2} +{"session_id":"sess-fb8aec98069e","input_length":3078,"output_length":171,"hash_ids":[2124155,2124156,2124157,2124158,2124159,2124160,2124161],"delay":18828.7} +{"session_id":"sess-fb8aec98069e","input_length":1482,"output_length":288,"hash_ids":[2124162,2124163,2124164],"delay":12662.1} +{"session_id":"sess-fb8aec98069e","input_length":3723,"output_length":288,"hash_ids":[2124165,2124166,2124167,2124168,2124169,2124170,2124171,2124172],"delay":2684.7} +{"session_id":"sess-fb8aec98069e","input_length":187,"output_length":658,"hash_ids":[2124173],"delay":816.3} +{"session_id":"sess-fb8aec98069e","input_length":312,"output_length":228,"hash_ids":[2124174],"delay":9344.1} +{"session_id":"sess-fb8aec98069e","input_length":6055,"output_length":324,"hash_ids":[2124175,2124176,2124177,2124178,2124179,2124180,2124181,2124182,2124183,2124184,2124185,2124186],"delay":1769.5} +{"session_id":"sess-fb8aec98069e","input_length":1733,"output_length":242,"hash_ids":[2124187,2124188,2124189,2124190],"delay":3103.7} +{"session_id":"sess-fb8aec98069e","input_length":943,"output_length":193,"hash_ids":[2124191,2124192],"delay":5573.0} +{"session_id":"sess-fb8aec98069e","input_length":840,"output_length":491,"hash_ids":[2124193,2124194],"delay":1114.1} +{"session_id":"sess-fb8aec98069e","input_length":1393,"output_length":262,"hash_ids":[2124195,2124196,2124197],"delay":1394.0} +{"session_id":"sess-fb8aec98069e","input_length":838,"output_length":213,"hash_ids":[2124198,2124199],"delay":3525.3} +{"session_id":"sess-fb8aec98069e","input_length":675,"output_length":297,"hash_ids":[2124200,2124201],"delay":194.5} +{"session_id":"sess-fb8aec98069e","input_length":715,"output_length":2171,"hash_ids":[2124202,2124203],"delay":794.3} +{"session_id":"sess-477d523c31f3","input_length":59679,"output_length":376,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2132063,2132064,2132065,2132066,2132067,2132068,2132069,2132070,2132071,2132072,2132073,2132074,2132075,2132076],"timestamp":0.0,"group_id":0} +{"session_id":"sess-477d523c31f3","input_length":3253,"output_length":2213,"hash_ids":[2132077,2132078,2132079,2132080,2132081,2132082,2132083],"delay":765.0} +{"session_id":"sess-477d523c31f3","input_length":3566,"output_length":46,"hash_ids":[2132084,2132085,2132086,2132087,2132088,2132089,2132090],"delay":68029.9} +{"session_id":"sess-477d523c31f3","input_length":2397,"output_length":39,"hash_ids":[2132091,2132092,2132093,2132094,2132095],"delay":817.5} +{"session_id":"sess-477d523c31f3","input_length":871,"output_length":716,"hash_ids":[2132096,2132097],"delay":3119.9} +{"session_id":"sess-477d523c31f3","input_length":4230,"output_length":204,"hash_ids":[2132098,2132099,2132100,2132101,2132102,2132103,2132104,2132105,2132106],"delay":1624.6} +{"session_id":"sess-477d523c31f3","input_length":3450,"output_length":637,"hash_ids":[2132107,2132108,2132109,2132110,2132111,2132112,2132113],"delay":189.8} +{"session_id":"sess-477d523c31f3","input_length":585,"output_length":218,"hash_ids":[2132114,2132115],"delay":1912.6} +{"session_id":"sess-477d523c31f3","input_length":327,"output_length":64,"hash_ids":[2132116],"delay":2123.2} +{"session_id":"sess-477d523c31f3","input_length":1396,"output_length":179,"hash_ids":[2132117,2132118,2132119],"delay":1424.4} +{"session_id":"sess-477d523c31f3","input_length":1298,"output_length":140,"hash_ids":[2132120,2132121,2132122],"delay":578.6} +{"session_id":"sess-477d523c31f3","input_length":3707,"output_length":154,"hash_ids":[2132123,2132124,2132125,2132126,2132127,2132128,2132129,2132130],"delay":305.7} +{"session_id":"sess-477d523c31f3","input_length":3425,"output_length":81,"hash_ids":[2132131,2132132,2132133,2132134,2132135,2132136,2132137],"delay":414.4} +{"session_id":"sess-477d523c31f3","input_length":636,"output_length":129,"hash_ids":[2132138,2132139],"delay":1086.9} +{"session_id":"sess-477d523c31f3","input_length":802,"output_length":923,"hash_ids":[2132140,2132141],"delay":266.2} +{"session_id":"sess-477d523c31f3","input_length":424,"output_length":233,"hash_ids":[2132142],"delay":948.6} +{"session_id":"sess-477d523c31f3","input_length":2078,"output_length":870,"hash_ids":[2132143,2132144,2132145,2132146,2132147],"delay":458.7} +{"session_id":"sess-477d523c31f3","input_length":3679,"output_length":453,"hash_ids":[2132148,2132149,2132150,2132151,2132152,2132153,2132154,2132155],"delay":1335.0} +{"session_id":"sess-477d523c31f3","input_length":907,"output_length":472,"hash_ids":[2132156,2132157],"delay":18813.3} +{"session_id":"sess-477d523c31f3","input_length":1991,"output_length":245,"hash_ids":[2132158,2132159,2132160,2132161],"delay":617.1} +{"session_id":"sess-477d523c31f3","input_length":2707,"output_length":751,"hash_ids":[2132162,2132163,2132164,2132165,2132166,2132167],"delay":11258.0} +{"session_id":"sess-477d523c31f3","input_length":8382,"output_length":289,"hash_ids":[2132168,2132169,2132170,2132171,2132172,2132173,2132174,2132175,2132176,2132177,2132178,2132179,2132180,2132181,2132182,2132183,2132184],"delay":461.4} +{"session_id":"sess-477d523c31f3","input_length":688,"output_length":612,"hash_ids":[2132185,2132186],"delay":19536.8} +{"session_id":"sess-477d523c31f3","input_length":4258,"output_length":355,"hash_ids":[2132187,2132188,2132189,2132190,2132191,2132192,2132193,2132194,2132195],"delay":413.8} +{"session_id":"sess-477d523c31f3","input_length":665,"output_length":252,"hash_ids":[2132196,2132197],"delay":2500.9} +{"session_id":"sess-477d523c31f3","input_length":504,"output_length":810,"hash_ids":[2132198],"delay":415.8} +{"session_id":"sess-477d523c31f3","input_length":341,"output_length":241,"hash_ids":[2132199],"delay":20055.5} +{"session_id":"sess-477d523c31f3","input_length":1396,"output_length":1086,"hash_ids":[2132200,2132201,2132202],"delay":1210.8} +{"session_id":"sess-2a5978790d66","input_length":55339,"output_length":134,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,2136063,2136064,2136065,2136066,2136067,2136068],"timestamp":0.0,"group_id":21} +{"session_id":"sess-2a5978790d66","input_length":2559,"output_length":482,"hash_ids":[2136069,2136070,2136071,2136072,2136073],"delay":478.5} +{"session_id":"sess-2a5978790d66","input_length":905,"output_length":1482,"hash_ids":[2136074,2136075],"delay":16708.8} +{"session_id":"sess-2a5978790d66","input_length":3039,"output_length":190,"hash_ids":[2136076,2136077,2136078,2136079,2136080,2136081],"delay":1136.4} +{"session_id":"sess-2a5978790d66","input_length":768,"output_length":276,"hash_ids":[2136082,2136083],"delay":328.7} +{"session_id":"sess-2a5978790d66","input_length":3805,"output_length":89,"hash_ids":[2136084,2136085,2136086,2136087,2136088,2136089,2136090,2136091],"delay":368.9} +{"session_id":"sess-2a5978790d66","input_length":1785,"output_length":339,"hash_ids":[2136092,2136093,2136094,2136095],"delay":781.4} +{"session_id":"sess-2a5978790d66","input_length":1087,"output_length":333,"hash_ids":[2136096,2136097,2136098],"delay":477.7} +{"session_id":"sess-2a5978790d66","input_length":1063,"output_length":141,"hash_ids":[2136099,2136100,2136101],"delay":499.1} +{"session_id":"sess-2a5978790d66","input_length":6428,"output_length":341,"hash_ids":[2136102,2136103,2136104,2136105,2136106,2136107,2136108,2136109,2136110,2136111,2136112,2136113,2136114],"delay":3958.5} +{"session_id":"sess-2a5978790d66","input_length":4188,"output_length":64,"hash_ids":[2136115,2136116,2136117,2136118,2136119,2136120,2136121,2136122,2136123],"delay":697.4} +{"session_id":"sess-2a5978790d66","input_length":948,"output_length":116,"hash_ids":[2136124,2136125],"delay":793.7} +{"session_id":"sess-2a5978790d66","input_length":5325,"output_length":337,"hash_ids":[2136126,2136127,2136128,2136129,2136130,2136131,2136132,2136133,2136134,2136135,2136136],"delay":3330.7} +{"session_id":"sess-2a5978790d66","input_length":1069,"output_length":500,"hash_ids":[2136137,2136138,2136139],"delay":1636.8} +{"session_id":"sess-2a5978790d66","input_length":258,"output_length":84,"hash_ids":[2136140],"delay":12294.9} +{"session_id":"sess-2a5978790d66","input_length":886,"output_length":101,"hash_ids":[2136141,2136142],"delay":690.1} +{"session_id":"sess-2a5978790d66","input_length":404,"output_length":656,"hash_ids":[2136143],"delay":3865.7} +{"session_id":"sess-2a5978790d66","input_length":681,"output_length":328,"hash_ids":[2136144,2136145],"delay":1577.8} +{"session_id":"sess-2a5978790d66","input_length":2719,"output_length":284,"hash_ids":[2136146,2136147,2136148,2136149,2136150,2136151],"delay":15227.8} +{"session_id":"sess-2a5978790d66","input_length":803,"output_length":128,"hash_ids":[2136152,2136153],"delay":782.7} +{"session_id":"sess-2a5978790d66","input_length":4749,"output_length":949,"hash_ids":[2136154,2136155,2136156,2136157,2136158,2136159,2136160,2136161,2136162,2136163],"delay":9267.3} +{"session_id":"sess-2a5978790d66","input_length":1652,"output_length":101,"hash_ids":[2136164,2136165,2136166,2136167],"delay":1035.8} +{"session_id":"sess-2a5978790d66","input_length":832,"output_length":300,"hash_ids":[2136168,2136169],"delay":37674.7} +{"session_id":"sess-2a5978790d66","input_length":454,"output_length":1173,"hash_ids":[2136170],"delay":225.9} +{"session_id":"sess-2a5978790d66","input_length":1087,"output_length":329,"hash_ids":[2136171,2136172,2136173],"delay":213.4} +{"session_id":"sess-2a5978790d66","input_length":5823,"output_length":319,"hash_ids":[2136174,2136175,2136176,2136177,2136178,2136179,2136180,2136181,2136182,2136183,2136184,2136185],"delay":2195.5} +{"session_id":"sess-2a5978790d66","input_length":1477,"output_length":198,"hash_ids":[2136186,2136187,2136188],"delay":7992.8} +{"session_id":"sess-2a5978790d66","input_length":3936,"output_length":190,"hash_ids":[2136189,2136190,2136191,2136192,2136193,2136194,2136195,2136196],"delay":9540.0} +{"session_id":"sess-2a5978790d66","input_length":639,"output_length":390,"hash_ids":[2136197,2136198],"delay":440.5} +{"session_id":"sess-2a5978790d66","input_length":3835,"output_length":30,"hash_ids":[2136199,2136200,2136201,2136202,2136203,2136204,2136205,2136206],"delay":3393.1} +{"session_id":"sess-417fd71bd7de","input_length":60379,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2140063,2140064,2140065,2140066,2140067,2140068,2140069,2140070,2140071,2140072,2140073,2140074,2140075,2140076,2140077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9c7fbd680404","input_length":58415,"output_length":1122,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,2144063,2144064,2144065,2144066,2144067,2144068,2144069,2144070,2144071,2144072,2144073,2144074],"timestamp":0.0,"group_id":21} +{"session_id":"sess-9c7fbd680404","input_length":1115,"output_length":121,"hash_ids":[2144075,2144076,2144077],"delay":2513.6} +{"session_id":"sess-9c7fbd680404","input_length":486,"output_length":1688,"hash_ids":[2144078],"delay":260.9} +{"session_id":"sess-9c7fbd680404","input_length":1470,"output_length":204,"hash_ids":[2144079,2144080,2144081],"delay":27931.3} +{"session_id":"sess-9c7fbd680404","input_length":293,"output_length":606,"hash_ids":[2144082],"delay":26030.0} +{"session_id":"sess-9c7fbd680404","input_length":3010,"output_length":132,"hash_ids":[2144083,2144084,2144085,2144086,2144087,2144088],"delay":291.4} +{"session_id":"sess-9c7fbd680404","input_length":848,"output_length":75,"hash_ids":[2144089,2144090],"delay":3222.6} +{"session_id":"sess-9c7fbd680404","input_length":1438,"output_length":146,"hash_ids":[2144091,2144092,2144093],"delay":785.8} +{"session_id":"sess-9c7fbd680404","input_length":807,"output_length":485,"hash_ids":[2144094,2144095],"delay":1740.7} +{"session_id":"sess-9c7fbd680404","input_length":438,"output_length":739,"hash_ids":[2144096],"delay":476.3} +{"session_id":"sess-9c7fbd680404","input_length":990,"output_length":501,"hash_ids":[2144097,2144098],"delay":21942.8} +{"session_id":"sess-9c7fbd680404","input_length":140,"output_length":914,"hash_ids":[2144099],"delay":533.7} +{"session_id":"sess-9c7fbd680404","input_length":3000,"output_length":517,"hash_ids":[2144100,2144101,2144102,2144103,2144104,2144105],"delay":31925.6} +{"session_id":"sess-9c7fbd680404","input_length":3551,"output_length":1099,"hash_ids":[2144106,2144107,2144108,2144109,2144110,2144111,2144112],"delay":19164.8} +{"session_id":"sess-9c7fbd680404","input_length":825,"output_length":566,"hash_ids":[2144113,2144114],"delay":406.6} +{"session_id":"sess-9c7fbd680404","input_length":9422,"output_length":1477,"hash_ids":[2144115,2144116,2144117,2144118,2144119,2144120,2144121,2144122,2144123,2144124,2144125,2144126,2144127,2144128,2144129,2144130,2144131,2144132,2144133],"delay":173.0} +{"session_id":"sess-9c7fbd680404","input_length":760,"output_length":30,"hash_ids":[2144134,2144135],"delay":381.3} +{"session_id":"sess-9c7fbd680404","input_length":1886,"output_length":58,"hash_ids":[2144136,2144137,2144138,2144139],"delay":366.5} +{"session_id":"sess-9c7fbd680404","input_length":5258,"output_length":362,"hash_ids":[2144140,2144141,2144142,2144143,2144144,2144145,2144146,2144147,2144148,2144149,2144150],"delay":1501.5} +{"session_id":"sess-9c7fbd680404","input_length":903,"output_length":536,"hash_ids":[2144151,2144152],"delay":414.3} +{"session_id":"sess-9c7fbd680404","input_length":7796,"output_length":440,"hash_ids":[2144153,2144154,2144155,2144156,2144157,2144158,2144159,2144160,2144161,2144162,2144163,2144164,2144165,2144166,2144167,2144168],"delay":3772.4} +{"session_id":"sess-9c7fbd680404","input_length":1325,"output_length":89,"hash_ids":[2144169,2144170,2144171],"delay":1464.2} +{"session_id":"sess-9c7fbd680404","input_length":946,"output_length":785,"hash_ids":[2144172,2144173],"delay":1413.4} +{"session_id":"sess-9c7fbd680404","input_length":2420,"output_length":365,"hash_ids":[2144174,2144175,2144176,2144177,2144178],"delay":103.7} +{"session_id":"sess-9c7fbd680404","input_length":1564,"output_length":404,"hash_ids":[2144179,2144180,2144181,2144182],"delay":2317.0} +{"session_id":"sess-9c7fbd680404","input_length":941,"output_length":561,"hash_ids":[2144183,2144184],"delay":1135.9} +{"session_id":"sess-9c7fbd680404","input_length":3391,"output_length":185,"hash_ids":[2144185,2144186,2144187,2144188,2144189,2144190,2144191],"delay":24051.7} +{"session_id":"sess-9c7fbd680404","input_length":2717,"output_length":1112,"hash_ids":[2144192,2144193,2144194,2144195,2144196,2144197],"delay":210.8} +{"session_id":"sess-0922b76f09b5","input_length":57194,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2148063,2148064,2148065,2148066,2148067,2148068,2148069,2148070,2148071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0922b76f09b5","input_length":1456,"output_length":128,"hash_ids":[2148072,2148073,2148074],"delay":5691.0} +{"session_id":"sess-0922b76f09b5","input_length":1896,"output_length":96,"hash_ids":[2148075,2148076,2148077,2148078],"delay":515.4} +{"session_id":"sess-0922b76f09b5","input_length":1921,"output_length":542,"hash_ids":[2148079,2148080,2148081,2148082],"delay":7324.0} +{"session_id":"sess-0922b76f09b5","input_length":399,"output_length":83,"hash_ids":[2148083],"delay":2957.9} +{"session_id":"sess-0922b76f09b5","input_length":7565,"output_length":407,"hash_ids":[2148084,2148085,2148086,2148087,2148088,2148089,2148090,2148091,2148092,2148093,2148094,2148095,2148096,2148097,2148098],"delay":15184.2} +{"session_id":"sess-0922b76f09b5","input_length":2635,"output_length":70,"hash_ids":[2148099,2148100,2148101,2148102,2148103,2148104],"delay":2191.6} +{"session_id":"sess-0922b76f09b5","input_length":3172,"output_length":83,"hash_ids":[2148105,2148106,2148107,2148108,2148109,2148110,2148111],"delay":39664.2} +{"session_id":"sess-0922b76f09b5","input_length":1383,"output_length":302,"hash_ids":[2148112,2148113,2148114],"delay":1665.4} +{"session_id":"sess-0922b76f09b5","input_length":2651,"output_length":140,"hash_ids":[2148115,2148116,2148117,2148118,2148119,2148120],"delay":3143.9} +{"session_id":"sess-0922b76f09b5","input_length":1999,"output_length":116,"hash_ids":[2148121,2148122,2148123,2148124],"delay":892.6} +{"session_id":"sess-0922b76f09b5","input_length":165,"output_length":73,"hash_ids":[2148125],"delay":4171.2} +{"session_id":"sess-0922b76f09b5","input_length":404,"output_length":54,"hash_ids":[2148126],"delay":9358.1} +{"session_id":"sess-0922b76f09b5","input_length":5543,"output_length":205,"hash_ids":[2148127,2148128,2148129,2148130,2148131,2148132,2148133,2148134,2148135,2148136,2148137],"delay":21661.3} +{"session_id":"sess-0922b76f09b5","input_length":3753,"output_length":197,"hash_ids":[2148138,2148139,2148140,2148141,2148142,2148143,2148144,2148145],"delay":2048.0} +{"session_id":"sess-0922b76f09b5","input_length":449,"output_length":400,"hash_ids":[2148146],"delay":1090.0} +{"session_id":"sess-0922b76f09b5","input_length":1422,"output_length":152,"hash_ids":[2148147,2148148,2148149],"delay":649.5} +{"session_id":"sess-0922b76f09b5","input_length":1195,"output_length":176,"hash_ids":[2148150,2148151,2148152],"delay":341.4} +{"session_id":"sess-0922b76f09b5","input_length":2342,"output_length":1342,"hash_ids":[2148153,2148154,2148155,2148156,2148157],"delay":814.8} +{"session_id":"sess-0922b76f09b5","input_length":1635,"output_length":286,"hash_ids":[2148158,2148159,2148160,2148161],"delay":928.5} +{"session_id":"sess-0922b76f09b5","input_length":2791,"output_length":1351,"hash_ids":[2148162,2148163,2148164,2148165,2148166,2148167],"delay":309.0} +{"session_id":"sess-0922b76f09b5","input_length":911,"output_length":248,"hash_ids":[2148168,2148169],"delay":197.1} +{"session_id":"sess-0922b76f09b5","input_length":322,"output_length":309,"hash_ids":[2148170],"delay":15187.7} +{"session_id":"sess-0922b76f09b5","input_length":784,"output_length":335,"hash_ids":[2148171,2148172],"delay":503.5} +{"session_id":"sess-0922b76f09b5","input_length":2204,"output_length":602,"hash_ids":[2148173,2148174,2148175,2148176,2148177],"delay":1317.4} +{"session_id":"sess-0922b76f09b5","input_length":2129,"output_length":410,"hash_ids":[2148178,2148179,2148180,2148181,2148182],"delay":1497.4} +{"session_id":"sess-0922b76f09b5","input_length":1317,"output_length":770,"hash_ids":[2148183,2148184,2148185],"delay":173.6} +{"session_id":"sess-0922b76f09b5","input_length":974,"output_length":424,"hash_ids":[2148186,2148187],"delay":24065.0} +{"session_id":"sess-0922b76f09b5","input_length":3074,"output_length":83,"hash_ids":[2148188,2148189,2148190,2148191,2148192,2148193,2148194],"delay":229.2} +{"session_id":"sess-697b0a20a11b","input_length":59457,"output_length":2059,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2152063,2152064,2152065,2152066,2152067,2152068,2152069,2152070,2152071,2152072,2152073,2152074,2152075,2152076],"timestamp":0.0,"group_id":14} +{"session_id":"sess-697b0a20a11b","input_length":3739,"output_length":941,"hash_ids":[2152077,2152078,2152079,2152080,2152081,2152082,2152083,2152084],"delay":379.2} +{"session_id":"sess-697b0a20a11b","input_length":1120,"output_length":224,"hash_ids":[2152085,2152086,2152087],"delay":1984.1} +{"session_id":"sess-697b0a20a11b","input_length":935,"output_length":374,"hash_ids":[2152088,2152089],"delay":1085.3} +{"session_id":"sess-697b0a20a11b","input_length":3679,"output_length":60,"hash_ids":[2152090,2152091,2152092,2152093,2152094,2152095,2152096,2152097],"delay":3124.2} +{"session_id":"sess-697b0a20a11b","input_length":8714,"output_length":570,"hash_ids":[2152098,2152099,2152100,2152101,2152102,2152103,2152104,2152105,2152106,2152107,2152108,2152109,2152110,2152111,2152112,2152113,2152114,2152115],"delay":8644.0} +{"session_id":"sess-697b0a20a11b","input_length":660,"output_length":500,"hash_ids":[2152116,2152117],"delay":1020.6} +{"session_id":"sess-697b0a20a11b","input_length":1944,"output_length":216,"hash_ids":[2152118,2152119,2152120,2152121],"delay":2595.2} +{"session_id":"sess-697b0a20a11b","input_length":522,"output_length":1555,"hash_ids":[2152122,2152123],"delay":520.1} +{"session_id":"sess-697b0a20a11b","input_length":1897,"output_length":1167,"hash_ids":[2152124,2152125,2152126,2152127],"delay":1049.6} +{"session_id":"sess-697b0a20a11b","input_length":847,"output_length":1677,"hash_ids":[2152128,2152129],"delay":13327.2} +{"session_id":"sess-697b0a20a11b","input_length":4510,"output_length":141,"hash_ids":[2152130,2152131,2152132,2152133,2152134,2152135,2152136,2152137,2152138],"delay":529.4} +{"session_id":"sess-697b0a20a11b","input_length":1613,"output_length":690,"hash_ids":[2152139,2152140,2152141,2152142],"delay":5378.7} +{"session_id":"sess-697b0a20a11b","input_length":296,"output_length":746,"hash_ids":[2152143],"delay":155.7} +{"session_id":"sess-697b0a20a11b","input_length":2246,"output_length":78,"hash_ids":[2152144,2152145,2152146,2152147,2152148],"delay":1357.6} +{"session_id":"sess-697b0a20a11b","input_length":850,"output_length":807,"hash_ids":[2152149,2152150],"delay":297.5} +{"session_id":"sess-697b0a20a11b","input_length":3519,"output_length":349,"hash_ids":[2152151,2152152,2152153,2152154,2152155,2152156,2152157],"delay":1683.8} +{"session_id":"sess-697b0a20a11b","input_length":1434,"output_length":158,"hash_ids":[2152158,2152159,2152160],"delay":403.3} +{"session_id":"sess-697b0a20a11b","input_length":1605,"output_length":153,"hash_ids":[2152161,2152162,2152163,2152164],"delay":195.4} +{"session_id":"sess-697b0a20a11b","input_length":5575,"output_length":419,"hash_ids":[2152165,2152166,2152167,2152168,2152169,2152170,2152171,2152172,2152173,2152174,2152175],"delay":434.4} +{"session_id":"sess-697b0a20a11b","input_length":1749,"output_length":349,"hash_ids":[2152176,2152177,2152178,2152179],"delay":768.6} +{"session_id":"sess-697b0a20a11b","input_length":7035,"output_length":1635,"hash_ids":[2152180,2152181,2152182,2152183,2152184,2152185,2152186,2152187,2152188,2152189,2152190,2152191,2152192,2152193],"delay":4761.7} +{"session_id":"sess-87ef64df6faf","input_length":52812,"output_length":122,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2156063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-87ef64df6faf","input_length":1785,"output_length":138,"hash_ids":[2156064,2156065,2156066,2156067],"delay":650.3} +{"session_id":"sess-87ef64df6faf","input_length":2109,"output_length":169,"hash_ids":[2156068,2156069,2156070,2156071,2156072],"delay":1636.7} +{"session_id":"sess-87ef64df6faf","input_length":3727,"output_length":663,"hash_ids":[2156073,2156074,2156075,2156076,2156077,2156078,2156079,2156080],"delay":700.9} +{"session_id":"sess-87ef64df6faf","input_length":4437,"output_length":110,"hash_ids":[2156081,2156082,2156083,2156084,2156085,2156086,2156087,2156088,2156089],"delay":1276.1} +{"session_id":"sess-87ef64df6faf","input_length":1075,"output_length":102,"hash_ids":[2156090,2156091,2156092],"delay":12491.6} +{"session_id":"sess-87ef64df6faf","input_length":1588,"output_length":149,"hash_ids":[2156093,2156094,2156095,2156096],"delay":177.4} +{"session_id":"sess-87ef64df6faf","input_length":800,"output_length":199,"hash_ids":[2156097,2156098],"delay":782.8} +{"session_id":"sess-87ef64df6faf","input_length":4190,"output_length":1018,"hash_ids":[2156099,2156100,2156101,2156102,2156103,2156104,2156105,2156106,2156107],"delay":1073.0} +{"session_id":"sess-87ef64df6faf","input_length":874,"output_length":59,"hash_ids":[2156108,2156109],"delay":813.5} +{"session_id":"sess-87ef64df6faf","input_length":4775,"output_length":363,"hash_ids":[2156110,2156111,2156112,2156113,2156114,2156115,2156116,2156117,2156118,2156119],"delay":5227.8} +{"session_id":"sess-87ef64df6faf","input_length":178,"output_length":58,"hash_ids":[2156120],"delay":10579.1} +{"session_id":"sess-87ef64df6faf","input_length":919,"output_length":142,"hash_ids":[2156121,2156122],"delay":605.9} +{"session_id":"sess-87ef64df6faf","input_length":5802,"output_length":82,"hash_ids":[2156123,2156124,2156125,2156126,2156127,2156128,2156129,2156130,2156131,2156132,2156133,2156134],"delay":548.0} +{"session_id":"sess-87ef64df6faf","input_length":606,"output_length":109,"hash_ids":[2156135,2156136],"delay":211.8} +{"session_id":"sess-87ef64df6faf","input_length":311,"output_length":484,"hash_ids":[2156137],"delay":538.6} +{"session_id":"sess-aa25ee65e5ac","input_length":52291,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-aa25ee65e5ac","input_length":2196,"output_length":172,"hash_ids":[2156138,2156139,2156140,2156141,2156142],"delay":3791.2} +{"session_id":"sess-aa25ee65e5ac","input_length":854,"output_length":770,"hash_ids":[2156143,2156144],"delay":382.7} +{"session_id":"sess-aa25ee65e5ac","input_length":2817,"output_length":1848,"hash_ids":[2156145,2156146,2156147,2156148,2156149,2156150],"delay":1141.5} +{"session_id":"sess-aa25ee65e5ac","input_length":3795,"output_length":1055,"hash_ids":[2156151,2156152,2156153,2156154,2156155,2156156,2156157,2156158],"delay":297.1} +{"session_id":"sess-aa25ee65e5ac","input_length":2350,"output_length":1022,"hash_ids":[2156159,2156160,2156161,2156162,2156163],"delay":558.7} +{"session_id":"sess-aa25ee65e5ac","input_length":472,"output_length":112,"hash_ids":[2156164],"delay":294.4} +{"session_id":"sess-aa25ee65e5ac","input_length":465,"output_length":532,"hash_ids":[2156165],"delay":586.6} +{"session_id":"sess-aa25ee65e5ac","input_length":5920,"output_length":208,"hash_ids":[2156166,2156167,2156168,2156169,2156170,2156171,2156172,2156173,2156174,2156175,2156176,2156177],"delay":349.0} +{"session_id":"sess-aa25ee65e5ac","input_length":4165,"output_length":290,"hash_ids":[2156178,2156179,2156180,2156181,2156182,2156183,2156184,2156185,2156186],"delay":1081.1} +{"session_id":"sess-aa25ee65e5ac","input_length":794,"output_length":32,"hash_ids":[2156187,2156188],"delay":1071.8} +{"session_id":"sess-aa25ee65e5ac","input_length":1300,"output_length":234,"hash_ids":[2156189,2156190,2156191],"delay":680.5} +{"session_id":"sess-aa25ee65e5ac","input_length":4565,"output_length":88,"hash_ids":[2156192,2156193,2156194,2156195,2156196,2156197,2156198,2156199,2156200],"delay":402.6} +{"session_id":"sess-aa25ee65e5ac","input_length":6004,"output_length":523,"hash_ids":[2156201,2156202,2156203,2156204,2156205,2156206,2156207,2156208,2156209,2156210,2156211,2156212],"delay":349.2} +{"session_id":"sess-aa25ee65e5ac","input_length":1005,"output_length":551,"hash_ids":[2156213,2156214],"delay":473.1} +{"session_id":"sess-aa25ee65e5ac","input_length":1350,"output_length":1084,"hash_ids":[2156215,2156216,2156217],"delay":1606.4} +{"session_id":"sess-aa25ee65e5ac","input_length":6220,"output_length":482,"hash_ids":[2156218,2156219,2156220,2156221,2156222,2156223,2156224,2156225,2156226,2156227,2156228,2156229,2156230],"delay":501.9} +{"session_id":"sess-aa25ee65e5ac","input_length":177,"output_length":106,"hash_ids":[2156231],"delay":852.6} +{"session_id":"sess-aa25ee65e5ac","input_length":3467,"output_length":423,"hash_ids":[2156232,2156233,2156234,2156235,2156236,2156237,2156238],"delay":3855.9} +{"session_id":"sess-aa25ee65e5ac","input_length":229,"output_length":38,"hash_ids":[2156239],"delay":430.5} +{"session_id":"sess-aa25ee65e5ac","input_length":317,"output_length":657,"hash_ids":[2156240],"delay":982.7} +{"session_id":"sess-aa25ee65e5ac","input_length":517,"output_length":145,"hash_ids":[2156241,2156242],"delay":20296.0} +{"session_id":"sess-aa25ee65e5ac","input_length":216,"output_length":356,"hash_ids":[2156243],"delay":435.0} +{"session_id":"sess-aa25ee65e5ac","input_length":3693,"output_length":469,"hash_ids":[2156244,2156245,2156246,2156247,2156248,2156249,2156250,2156251],"delay":723.5} +{"session_id":"sess-aa25ee65e5ac","input_length":802,"output_length":573,"hash_ids":[2156252,2156253],"delay":457.6} +{"session_id":"sess-aa25ee65e5ac","input_length":6085,"output_length":89,"hash_ids":[2156254,2156255,2156256,2156257,2156258,2156259,2156260,2156261,2156262,2156263,2156264,2156265],"delay":419.3} +{"session_id":"sess-aa25ee65e5ac","input_length":643,"output_length":418,"hash_ids":[2156266,2156267],"delay":576.9} +{"session_id":"sess-aa25ee65e5ac","input_length":2473,"output_length":84,"hash_ids":[2156268,2156269,2156270,2156271,2156272],"delay":19282.9} +{"session_id":"sess-aa25ee65e5ac","input_length":2534,"output_length":36,"hash_ids":[2156273,2156274,2156275,2156276,2156277],"delay":5726.9} +{"session_id":"sess-23ea81e082d5","input_length":58576,"output_length":1418,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2164063,2164064,2164065,2164066,2164067,2164068,2164069,2164070,2164071,2164072,2164073,2164074],"timestamp":0.0,"group_id":12} +{"session_id":"sess-23ea81e082d5","input_length":6951,"output_length":340,"hash_ids":[2164075,2164076,2164077,2164078,2164079,2164080,2164081,2164082,2164083,2164084,2164085,2164086,2164087,2164088],"delay":3043.0} +{"session_id":"sess-23ea81e082d5","input_length":2257,"output_length":77,"hash_ids":[2164089,2164090,2164091,2164092,2164093],"delay":2349.9} +{"session_id":"sess-23ea81e082d5","input_length":4273,"output_length":350,"hash_ids":[2164094,2164095,2164096,2164097,2164098,2164099,2164100,2164101,2164102],"delay":300.9} +{"session_id":"sess-23ea81e082d5","input_length":4471,"output_length":63,"hash_ids":[2164103,2164104,2164105,2164106,2164107,2164108,2164109,2164110,2164111],"delay":2312.4} +{"session_id":"sess-23ea81e082d5","input_length":667,"output_length":284,"hash_ids":[2164112,2164113],"delay":16923.6} +{"session_id":"sess-23ea81e082d5","input_length":306,"output_length":165,"hash_ids":[2164114],"delay":30600.7} +{"session_id":"sess-23ea81e082d5","input_length":3115,"output_length":270,"hash_ids":[2164115,2164116,2164117,2164118,2164119,2164120,2164121],"delay":572.1} +{"session_id":"sess-23ea81e082d5","input_length":720,"output_length":57,"hash_ids":[2164122,2164123],"delay":489.9} +{"session_id":"sess-853fd74b60b8","input_length":80678,"output_length":480,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2168063,2168064,2168065,2168066,2168067,2168068,2168069,2168070,2168071,2168072,2168073,2168074,2168075,2168076,2168077,2168078,2168079,2168080,2168081,2168082,2168083,2168084,2168085,2168086,2168087,2168088,2168089,2168090,2168091,2168092,2168093,2168094,2168095,2168096,2168097,2168098,2168099,2168100,2168101,2168102,2168103,2168104,2168105,2168106,2168107,2168108,2168109,2168110,2168111,2168112,2168113,2168114,2168115,2168116,2168117],"timestamp":0.0,"group_id":1} +{"session_id":"sess-853fd74b60b8","input_length":330,"output_length":240,"hash_ids":[2168118],"delay":28014.0} +{"session_id":"sess-853fd74b60b8","input_length":2606,"output_length":36,"hash_ids":[2168119,2168120,2168121,2168122,2168123,2168124],"delay":697.3} +{"session_id":"sess-853fd74b60b8","input_length":1223,"output_length":101,"hash_ids":[2168125,2168126,2168127],"delay":515.9} +{"session_id":"sess-853fd74b60b8","input_length":487,"output_length":197,"hash_ids":[2168128],"delay":1376.9} +{"session_id":"sess-853fd74b60b8","input_length":8602,"output_length":295,"hash_ids":[2168129,2168130,2168131,2168132,2168133,2168134,2168135,2168136,2168137,2168138,2168139,2168140,2168141,2168142,2168143,2168144,2168145],"delay":2931.6} +{"session_id":"sess-853fd74b60b8","input_length":3811,"output_length":317,"hash_ids":[2168146,2168147,2168148,2168149,2168150,2168151,2168152,2168153],"delay":812.9} +{"session_id":"sess-853fd74b60b8","input_length":1899,"output_length":184,"hash_ids":[2168154,2168155,2168156,2168157],"delay":1191.7} +{"session_id":"sess-853fd74b60b8","input_length":1206,"output_length":359,"hash_ids":[2168158,2168159,2168160],"delay":1069.2} +{"session_id":"sess-853fd74b60b8","input_length":5701,"output_length":361,"hash_ids":[2168161,2168162,2168163,2168164,2168165,2168166,2168167,2168168,2168169,2168170,2168171,2168172],"delay":5866.0} +{"session_id":"sess-853fd74b60b8","input_length":629,"output_length":842,"hash_ids":[2168173,2168174],"delay":5256.8} +{"session_id":"sess-853fd74b60b8","input_length":149,"output_length":333,"hash_ids":[2168175],"delay":1898.2} +{"session_id":"sess-853fd74b60b8","input_length":3863,"output_length":64,"hash_ids":[2168176,2168177,2168178,2168179,2168180,2168181,2168182,2168183],"delay":6210.8} +{"session_id":"sess-853fd74b60b8","input_length":558,"output_length":113,"hash_ids":[2168184,2168185],"delay":12696.5} +{"session_id":"sess-853fd74b60b8","input_length":3329,"output_length":163,"hash_ids":[2168186,2168187,2168188,2168189,2168190,2168191,2168192],"delay":9848.6} +{"session_id":"sess-853fd74b60b8","input_length":3322,"output_length":66,"hash_ids":[2168193,2168194,2168195,2168196,2168197,2168198,2168199],"delay":460.4} +{"session_id":"sess-853fd74b60b8","input_length":763,"output_length":198,"hash_ids":[2168200,2168201],"delay":205.9} +{"session_id":"sess-853fd74b60b8","input_length":2066,"output_length":163,"hash_ids":[2168202,2168203,2168204,2168205,2168206],"delay":350.8} +{"session_id":"sess-853fd74b60b8","input_length":2863,"output_length":329,"hash_ids":[2168207,2168208,2168209,2168210,2168211,2168212],"delay":9712.4} +{"session_id":"sess-853fd74b60b8","input_length":458,"output_length":1380,"hash_ids":[2168213],"delay":1051.0} +{"session_id":"sess-1c9a7c4fdb61","input_length":54895,"output_length":1036,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2172063,2172064,2172065,2172066,2172067],"timestamp":0.0,"group_id":2} +{"session_id":"sess-1c9a7c4fdb61","input_length":887,"output_length":251,"hash_ids":[2172068,2172069],"delay":372.5} +{"session_id":"sess-1c9a7c4fdb61","input_length":1432,"output_length":128,"hash_ids":[2172070,2172071,2172072],"delay":43795.6} +{"session_id":"sess-1c9a7c4fdb61","input_length":1700,"output_length":297,"hash_ids":[2172073,2172074,2172075,2172076],"delay":16135.2} +{"session_id":"sess-1c9a7c4fdb61","input_length":2069,"output_length":61,"hash_ids":[2172077,2172078,2172079,2172080,2172081],"delay":12232.7} +{"session_id":"sess-1c9a7c4fdb61","input_length":7606,"output_length":255,"hash_ids":[2172082,2172083,2172084,2172085,2172086,2172087,2172088,2172089,2172090,2172091,2172092,2172093,2172094,2172095,2172096],"delay":48510.9} +{"session_id":"sess-a0d926d1673a","input_length":60095,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,2176063,2176064,2176065,2176066,2176067,2176068,2176069,2176070,2176071,2176072,2176073,2176074,2176075,2176076,2176077],"timestamp":0.0,"group_id":28} +{"session_id":"sess-a0d926d1673a","input_length":847,"output_length":36,"hash_ids":[2176078,2176079],"delay":1701.8} +{"session_id":"sess-a0d926d1673a","input_length":203,"output_length":424,"hash_ids":[2176080],"delay":1726.9} +{"session_id":"sess-a0d926d1673a","input_length":887,"output_length":311,"hash_ids":[2176081,2176082],"delay":298.7} +{"session_id":"sess-a0d926d1673a","input_length":1925,"output_length":245,"hash_ids":[2176083,2176084,2176085,2176086],"delay":6226.1} +{"session_id":"sess-a0d926d1673a","input_length":4206,"output_length":1266,"hash_ids":[2176087,2176088,2176089,2176090,2176091,2176092,2176093,2176094,2176095],"delay":9563.0} +{"session_id":"sess-a0d926d1673a","input_length":3270,"output_length":254,"hash_ids":[2176096,2176097,2176098,2176099,2176100,2176101,2176102],"delay":2987.7} +{"session_id":"sess-a0d926d1673a","input_length":4780,"output_length":156,"hash_ids":[2176103,2176104,2176105,2176106,2176107,2176108,2176109,2176110,2176111,2176112],"delay":1715.9} +{"session_id":"sess-a0d926d1673a","input_length":1479,"output_length":723,"hash_ids":[2176113,2176114,2176115],"delay":33262.9} +{"session_id":"sess-a0d926d1673a","input_length":2169,"output_length":1562,"hash_ids":[2176116,2176117,2176118,2176119,2176120],"delay":1667.3} +{"session_id":"sess-a0d926d1673a","input_length":2254,"output_length":2157,"hash_ids":[2176121,2176122,2176123,2176124,2176125],"delay":1567.8} +{"session_id":"sess-a0d926d1673a","input_length":773,"output_length":124,"hash_ids":[2176126,2176127],"delay":26718.4} +{"session_id":"sess-a0d926d1673a","input_length":2095,"output_length":454,"hash_ids":[2176128,2176129,2176130,2176131,2176132],"delay":981.5} +{"session_id":"sess-48e63fee0a05","input_length":55083,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,2180063,2180064,2180065,2180066,2180067],"timestamp":0.0,"group_id":17} +{"session_id":"sess-48e63fee0a05","input_length":4695,"output_length":1269,"hash_ids":[2180068,2180069,2180070,2180071,2180072,2180073,2180074,2180075,2180076,2180077],"delay":6636.2} +{"session_id":"sess-48e63fee0a05","input_length":546,"output_length":403,"hash_ids":[2180078,2180079],"delay":36325.9} +{"session_id":"sess-48e63fee0a05","input_length":2289,"output_length":371,"hash_ids":[2180080,2180081,2180082,2180083,2180084],"delay":4820.4} +{"session_id":"sess-48e63fee0a05","input_length":3490,"output_length":371,"hash_ids":[2180085,2180086,2180087,2180088,2180089,2180090,2180091],"delay":989.5} +{"session_id":"sess-48e63fee0a05","input_length":3380,"output_length":344,"hash_ids":[2180092,2180093,2180094,2180095,2180096,2180097,2180098],"delay":244.6} +{"session_id":"sess-48e63fee0a05","input_length":934,"output_length":68,"hash_ids":[2180099,2180100],"delay":436.2} +{"session_id":"sess-48e63fee0a05","input_length":5542,"output_length":405,"hash_ids":[2180101,2180102,2180103,2180104,2180105,2180106,2180107,2180108,2180109,2180110,2180111],"delay":1651.0} +{"session_id":"sess-48e63fee0a05","input_length":2030,"output_length":395,"hash_ids":[2180112,2180113,2180114,2180115],"delay":689.9} +{"session_id":"sess-48e63fee0a05","input_length":4586,"output_length":162,"hash_ids":[2180116,2180117,2180118,2180119,2180120,2180121,2180122,2180123,2180124],"delay":5010.7} +{"session_id":"sess-48e63fee0a05","input_length":752,"output_length":563,"hash_ids":[2180125,2180126],"delay":949.5} +{"session_id":"sess-48e63fee0a05","input_length":2082,"output_length":203,"hash_ids":[2180127,2180128,2180129,2180130,2180131],"delay":457.1} +{"session_id":"sess-48e63fee0a05","input_length":2045,"output_length":1591,"hash_ids":[2180132,2180133,2180134,2180135],"delay":7135.7} +{"session_id":"sess-48e63fee0a05","input_length":4161,"output_length":133,"hash_ids":[2180136,2180137,2180138,2180139,2180140,2180141,2180142,2180143,2180144],"delay":349.7} +{"session_id":"sess-48e63fee0a05","input_length":3199,"output_length":210,"hash_ids":[2180145,2180146,2180147,2180148,2180149,2180150,2180151],"delay":287.3} +{"session_id":"sess-48e63fee0a05","input_length":2893,"output_length":1591,"hash_ids":[2180152,2180153,2180154,2180155,2180156,2180157],"delay":666.0} +{"session_id":"sess-48e63fee0a05","input_length":1315,"output_length":627,"hash_ids":[2180158,2180159,2180160],"delay":1071.9} +{"session_id":"sess-48e63fee0a05","input_length":1570,"output_length":181,"hash_ids":[2180161,2180162,2180163,2180164],"delay":222.6} +{"session_id":"sess-48e63fee0a05","input_length":1380,"output_length":111,"hash_ids":[2180165,2180166,2180167],"delay":3740.1} +{"session_id":"sess-48e63fee0a05","input_length":7011,"output_length":266,"hash_ids":[2180168,2180169,2180170,2180171,2180172,2180173,2180174,2180175,2180176,2180177,2180178,2180179,2180180,2180181],"delay":456.8} +{"session_id":"sess-48e63fee0a05","input_length":1303,"output_length":773,"hash_ids":[2180182,2180183,2180184],"delay":1821.0} +{"session_id":"sess-48e63fee0a05","input_length":5261,"output_length":294,"hash_ids":[2180185,2180186,2180187,2180188,2180189,2180190,2180191,2180192,2180193,2180194,2180195],"delay":392.4} +{"session_id":"sess-48e63fee0a05","input_length":2171,"output_length":321,"hash_ids":[2180196,2180197,2180198,2180199,2180200],"delay":182.0} +{"session_id":"sess-d11b8dfd9250","input_length":54549,"output_length":393,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2184063,2184064,2184065,2184066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d11b8dfd9250","input_length":1268,"output_length":69,"hash_ids":[2184067,2184068,2184069],"delay":377.6} +{"session_id":"sess-d11b8dfd9250","input_length":1055,"output_length":286,"hash_ids":[2184070,2184071,2184072],"delay":643.6} +{"session_id":"sess-d11b8dfd9250","input_length":1488,"output_length":366,"hash_ids":[2184073,2184074,2184075],"delay":2867.2} +{"session_id":"sess-d11b8dfd9250","input_length":2295,"output_length":30,"hash_ids":[2184076,2184077,2184078,2184079,2184080],"delay":16737.6} +{"session_id":"sess-d11b8dfd9250","input_length":357,"output_length":820,"hash_ids":[2184081],"delay":1806.1} +{"session_id":"sess-d11b8dfd9250","input_length":2848,"output_length":244,"hash_ids":[2184082,2184083,2184084,2184085,2184086,2184087],"delay":1137.7} +{"session_id":"sess-d11b8dfd9250","input_length":6668,"output_length":473,"hash_ids":[2184088,2184089,2184090,2184091,2184092,2184093,2184094,2184095,2184096,2184097,2184098,2184099,2184100,2184101],"delay":512.1} +{"session_id":"sess-d11b8dfd9250","input_length":7057,"output_length":109,"hash_ids":[2184102,2184103,2184104,2184105,2184106,2184107,2184108,2184109,2184110,2184111,2184112,2184113,2184114,2184115],"delay":11117.7} +{"session_id":"sess-d11b8dfd9250","input_length":871,"output_length":437,"hash_ids":[2184116,2184117],"delay":6927.6} +{"session_id":"sess-d11b8dfd9250","input_length":1172,"output_length":141,"hash_ids":[2184118,2184119,2184120],"delay":25354.7} +{"session_id":"sess-d11b8dfd9250","input_length":505,"output_length":101,"hash_ids":[2184121],"delay":632.9} +{"session_id":"sess-d11b8dfd9250","input_length":9933,"output_length":278,"hash_ids":[2184122,2184123,2184124,2184125,2184126,2184127,2184128,2184129,2184130,2184131,2184132,2184133,2184134,2184135,2184136,2184137,2184138,2184139,2184140,2184141],"delay":5300.8} +{"session_id":"sess-d11b8dfd9250","input_length":9069,"output_length":1960,"hash_ids":[2184142,2184143,2184144,2184145,2184146,2184147,2184148,2184149,2184150,2184151,2184152,2184153,2184154,2184155,2184156,2184157,2184158,2184159],"delay":49283.5} +{"session_id":"sess-d11b8dfd9250","input_length":899,"output_length":637,"hash_ids":[2184160,2184161],"delay":812.5} +{"session_id":"sess-d11b8dfd9250","input_length":345,"output_length":180,"hash_ids":[2184162],"delay":576.6} +{"session_id":"sess-d11b8dfd9250","input_length":671,"output_length":62,"hash_ids":[2184163,2184164],"delay":234.0} +{"session_id":"sess-d11b8dfd9250","input_length":6850,"output_length":130,"hash_ids":[2184165,2184166,2184167,2184168,2184169,2184170,2184171,2184172,2184173,2184174,2184175,2184176,2184177,2184178],"delay":290.5} +{"session_id":"sess-d11b8dfd9250","input_length":756,"output_length":65,"hash_ids":[2184179,2184180],"delay":151.5} +{"session_id":"sess-d11b8dfd9250","input_length":787,"output_length":217,"hash_ids":[2184181,2184182],"delay":518.7} +{"session_id":"sess-d11b8dfd9250","input_length":1367,"output_length":58,"hash_ids":[2184183,2184184,2184185],"delay":1427.0} +{"session_id":"sess-d11b8dfd9250","input_length":3213,"output_length":502,"hash_ids":[2184186,2184187,2184188,2184189,2184190,2184191,2184192],"delay":246.8} +{"session_id":"sess-d11b8dfd9250","input_length":1583,"output_length":47,"hash_ids":[2184193,2184194,2184195,2184196],"delay":379.1} +{"session_id":"sess-d11b8dfd9250","input_length":6748,"output_length":65,"hash_ids":[2184197,2184198,2184199,2184200,2184201,2184202,2184203,2184204,2184205,2184206,2184207,2184208,2184209,2184210],"delay":3667.6} +{"session_id":"sess-d11b8dfd9250","input_length":340,"output_length":284,"hash_ids":[2184211],"delay":639.2} +{"session_id":"sess-d11b8dfd9250","input_length":393,"output_length":114,"hash_ids":[2184212],"delay":7008.8} +{"session_id":"sess-bc70b1b94955","input_length":59670,"output_length":461,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,2188063,2188064,2188065,2188066,2188067,2188068,2188069,2188070,2188071,2188072,2188073,2188074,2188075,2188076],"timestamp":0.0,"group_id":8} +{"session_id":"sess-bc70b1b94955","input_length":2679,"output_length":339,"hash_ids":[2188077,2188078,2188079,2188080,2188081,2188082],"delay":19975.7} +{"session_id":"sess-bc70b1b94955","input_length":551,"output_length":280,"hash_ids":[2188083,2188084],"delay":15615.6} +{"session_id":"sess-bc70b1b94955","input_length":2421,"output_length":368,"hash_ids":[2188085,2188086,2188087,2188088,2188089],"delay":2381.1} +{"session_id":"sess-bc70b1b94955","input_length":1139,"output_length":69,"hash_ids":[2188090,2188091,2188092],"delay":383.2} +{"session_id":"sess-bc70b1b94955","input_length":1573,"output_length":2115,"hash_ids":[2188093,2188094,2188095,2188096],"delay":2024.4} +{"session_id":"sess-bc70b1b94955","input_length":3175,"output_length":205,"hash_ids":[2188097,2188098,2188099,2188100,2188101,2188102,2188103],"delay":17423.1} +{"session_id":"sess-bc70b1b94955","input_length":1004,"output_length":358,"hash_ids":[2188104,2188105],"delay":1001.1} +{"session_id":"sess-bc70b1b94955","input_length":5095,"output_length":76,"hash_ids":[2188106,2188107,2188108,2188109,2188110,2188111,2188112,2188113,2188114,2188115],"delay":2117.5} +{"session_id":"sess-bc70b1b94955","input_length":2520,"output_length":213,"hash_ids":[2188116,2188117,2188118,2188119,2188120],"delay":4859.1} +{"session_id":"sess-bc70b1b94955","input_length":1277,"output_length":630,"hash_ids":[2188121,2188122,2188123],"delay":800.1} +{"session_id":"sess-bc70b1b94955","input_length":1464,"output_length":2919,"hash_ids":[2188124,2188125,2188126],"delay":902.6} +{"session_id":"sess-5b3f45da1699","input_length":55243,"output_length":617,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2192063,2192064,2192065,2192066,2192067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5b3f45da1699","input_length":893,"output_length":336,"hash_ids":[2192068,2192069],"delay":1222.2} +{"session_id":"sess-5b3f45da1699","input_length":2853,"output_length":80,"hash_ids":[2192070,2192071,2192072,2192073,2192074,2192075],"delay":967.8} +{"session_id":"sess-5b3f45da1699","input_length":441,"output_length":841,"hash_ids":[2192076],"delay":78.2} +{"session_id":"sess-5b3f45da1699","input_length":898,"output_length":194,"hash_ids":[2192077,2192078],"delay":1986.6} +{"session_id":"sess-a340470be115","input_length":55588,"output_length":433,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2196063,2196064,2196065,2196066,2196067,2196068],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a340470be115","input_length":2523,"output_length":240,"hash_ids":[2196069,2196070,2196071,2196072,2196073],"delay":636.4} +{"session_id":"sess-a340470be115","input_length":51,"output_length":935,"hash_ids":[2196074],"delay":862.5} +{"session_id":"sess-a340470be115","input_length":430,"output_length":947,"hash_ids":[2196075],"delay":19778.9} +{"session_id":"sess-a340470be115","input_length":758,"output_length":442,"hash_ids":[2196076,2196077],"delay":41701.6} +{"session_id":"sess-a340470be115","input_length":293,"output_length":370,"hash_ids":[2196078],"delay":8425.5} +{"session_id":"sess-a340470be115","input_length":429,"output_length":37,"hash_ids":[2196079],"delay":11103.8} +{"session_id":"sess-a340470be115","input_length":2881,"output_length":1644,"hash_ids":[2196080,2196081,2196082,2196083,2196084,2196085],"delay":1008.3} +{"session_id":"sess-a340470be115","input_length":1043,"output_length":390,"hash_ids":[2196086,2196087,2196088],"delay":1328.3} +{"session_id":"sess-a340470be115","input_length":6400,"output_length":1310,"hash_ids":[2196089,2196090,2196091,2196092,2196093,2196094,2196095,2196096,2196097,2196098,2196099,2196100,2196101],"delay":1203.1} +{"session_id":"sess-a340470be115","input_length":1906,"output_length":168,"hash_ids":[2196102,2196103,2196104,2196105],"delay":775.7} +{"session_id":"sess-a340470be115","input_length":498,"output_length":471,"hash_ids":[2196106],"delay":967.3} +{"session_id":"sess-a340470be115","input_length":2936,"output_length":237,"hash_ids":[2196107,2196108,2196109,2196110,2196111,2196112],"delay":137.9} +{"session_id":"sess-a340470be115","input_length":4664,"output_length":198,"hash_ids":[2196113,2196114,2196115,2196116,2196117,2196118,2196119,2196120,2196121,2196122],"delay":2080.8} +{"session_id":"sess-a340470be115","input_length":541,"output_length":63,"hash_ids":[2196123,2196124],"delay":1436.6} +{"session_id":"sess-a340470be115","input_length":312,"output_length":1464,"hash_ids":[2196125],"delay":1066.1} +{"session_id":"sess-a340470be115","input_length":5961,"output_length":236,"hash_ids":[2196126,2196127,2196128,2196129,2196130,2196131,2196132,2196133,2196134,2196135,2196136,2196137],"delay":184.5} +{"session_id":"sess-a340470be115","input_length":4564,"output_length":159,"hash_ids":[2196138,2196139,2196140,2196141,2196142,2196143,2196144,2196145,2196146],"delay":1097.6} +{"session_id":"sess-a340470be115","input_length":3784,"output_length":884,"hash_ids":[2196147,2196148,2196149,2196150,2196151,2196152,2196153,2196154],"delay":365.0} +{"session_id":"sess-a340470be115","input_length":3322,"output_length":343,"hash_ids":[2196155,2196156,2196157,2196158,2196159,2196160,2196161],"delay":758.2} +{"session_id":"sess-a340470be115","input_length":468,"output_length":1306,"hash_ids":[2196162],"delay":204.4} +{"session_id":"sess-a340470be115","input_length":5681,"output_length":187,"hash_ids":[2196163,2196164,2196165,2196166,2196167,2196168,2196169,2196170,2196171,2196172,2196173,2196174],"delay":486.8} +{"session_id":"sess-a340470be115","input_length":1130,"output_length":570,"hash_ids":[2196175,2196176,2196177],"delay":247.7} +{"session_id":"sess-a340470be115","input_length":2328,"output_length":478,"hash_ids":[2196178,2196179,2196180,2196181,2196182],"delay":12074.0} +{"session_id":"sess-a340470be115","input_length":2266,"output_length":346,"hash_ids":[2196183,2196184,2196185,2196186,2196187],"delay":3719.5} +{"session_id":"sess-a340470be115","input_length":1362,"output_length":123,"hash_ids":[2196188,2196189,2196190],"delay":224.4} +{"session_id":"sess-a340470be115","input_length":4580,"output_length":617,"hash_ids":[2196191,2196192,2196193,2196194,2196195,2196196,2196197,2196198,2196199],"delay":307.3} +{"session_id":"sess-4b70ebe6dea7","input_length":56524,"output_length":203,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2200063,2200064,2200065,2200066,2200067,2200068,2200069,2200070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4b70ebe6dea7","input_length":558,"output_length":88,"hash_ids":[2200071,2200072],"delay":1065.6} +{"session_id":"sess-4b70ebe6dea7","input_length":4082,"output_length":165,"hash_ids":[2200073,2200074,2200075,2200076,2200077,2200078,2200079,2200080],"delay":3323.0} +{"session_id":"sess-4b70ebe6dea7","input_length":1183,"output_length":259,"hash_ids":[2200081,2200082,2200083],"delay":1016.3} +{"session_id":"sess-4b70ebe6dea7","input_length":133,"output_length":423,"hash_ids":[2200084],"delay":1877.6} +{"session_id":"sess-4b70ebe6dea7","input_length":427,"output_length":138,"hash_ids":[2200085],"delay":379.0} +{"session_id":"sess-4b70ebe6dea7","input_length":324,"output_length":99,"hash_ids":[2200086],"delay":667.6} +{"session_id":"sess-4b70ebe6dea7","input_length":4092,"output_length":256,"hash_ids":[2200087,2200088,2200089,2200090,2200091,2200092,2200093,2200094],"delay":1251.1} +{"session_id":"sess-4b70ebe6dea7","input_length":1622,"output_length":1561,"hash_ids":[2200095,2200096,2200097,2200098],"delay":1117.2} +{"session_id":"sess-4b70ebe6dea7","input_length":1727,"output_length":244,"hash_ids":[2200099,2200100,2200101,2200102],"delay":593.6} +{"session_id":"sess-4b70ebe6dea7","input_length":2083,"output_length":446,"hash_ids":[2200103,2200104,2200105,2200106,2200107],"delay":700.5} +{"session_id":"sess-4b70ebe6dea7","input_length":1060,"output_length":1964,"hash_ids":[2200108,2200109,2200110],"delay":1311.5} +{"session_id":"sess-4b70ebe6dea7","input_length":691,"output_length":432,"hash_ids":[2200111,2200112],"delay":1011.5} +{"session_id":"sess-4b70ebe6dea7","input_length":1192,"output_length":77,"hash_ids":[2200113,2200114,2200115],"delay":590.6} +{"session_id":"sess-4b70ebe6dea7","input_length":8740,"output_length":432,"hash_ids":[2200116,2200117,2200118,2200119,2200120,2200121,2200122,2200123,2200124,2200125,2200126,2200127,2200128,2200129,2200130,2200131,2200132,2200133],"delay":2952.3} +{"session_id":"sess-4b70ebe6dea7","input_length":3147,"output_length":30,"hash_ids":[2200134,2200135,2200136,2200137,2200138,2200139,2200140],"delay":1283.5} +{"session_id":"sess-4b70ebe6dea7","input_length":791,"output_length":60,"hash_ids":[2200141,2200142],"delay":1238.9} +{"session_id":"sess-4b70ebe6dea7","input_length":8883,"output_length":2372,"hash_ids":[2200143,2200144,2200145,2200146,2200147,2200148,2200149,2200150,2200151,2200152,2200153,2200154,2200155,2200156,2200157,2200158,2200159,2200160],"delay":35763.1} +{"session_id":"sess-4b70ebe6dea7","input_length":52,"output_length":265,"hash_ids":[2200161],"delay":2538.7} +{"session_id":"sess-4b70ebe6dea7","input_length":4636,"output_length":30,"hash_ids":[2200162,2200163,2200164,2200165,2200166,2200167,2200168,2200169,2200170,2200171],"delay":541.2} +{"session_id":"sess-4b70ebe6dea7","input_length":4330,"output_length":283,"hash_ids":[2200172,2200173,2200174,2200175,2200176,2200177,2200178,2200179,2200180],"delay":4905.0} +{"session_id":"sess-4b70ebe6dea7","input_length":7212,"output_length":558,"hash_ids":[2200181,2200182,2200183,2200184,2200185,2200186,2200187,2200188,2200189,2200190,2200191,2200192,2200193,2200194,2200195],"delay":307.9} +{"session_id":"sess-4b70ebe6dea7","input_length":810,"output_length":738,"hash_ids":[2200196,2200197],"delay":2031.5} +{"session_id":"sess-4b70ebe6dea7","input_length":177,"output_length":62,"hash_ids":[2200198],"delay":531.0} +{"session_id":"sess-4b70ebe6dea7","input_length":692,"output_length":259,"hash_ids":[2200199,2200200],"delay":82.4} +{"session_id":"sess-2593687643e0","input_length":56696,"output_length":700,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2204063,2204064,2204065,2204066,2204067,2204068,2204069,2204070],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2593687643e0","input_length":433,"output_length":314,"hash_ids":[2204071],"delay":2200.9} +{"session_id":"sess-2593687643e0","input_length":6260,"output_length":130,"hash_ids":[2204072,2204073,2204074,2204075,2204076,2204077,2204078,2204079,2204080,2204081,2204082,2204083,2204084],"delay":3151.4} +{"session_id":"sess-2593687643e0","input_length":6298,"output_length":316,"hash_ids":[2204085,2204086,2204087,2204088,2204089,2204090,2204091,2204092,2204093,2204094,2204095,2204096,2204097],"delay":10842.4} +{"session_id":"sess-2593687643e0","input_length":506,"output_length":260,"hash_ids":[2204098],"delay":2528.8} +{"session_id":"sess-2593687643e0","input_length":3228,"output_length":292,"hash_ids":[2204099,2204100,2204101,2204102,2204103,2204104,2204105],"delay":3067.3} +{"session_id":"sess-2593687643e0","input_length":3342,"output_length":960,"hash_ids":[2204106,2204107,2204108,2204109,2204110,2204111,2204112],"delay":1622.2} +{"session_id":"sess-2593687643e0","input_length":2806,"output_length":156,"hash_ids":[2204113,2204114,2204115,2204116,2204117,2204118],"delay":311.0} +{"session_id":"sess-2593687643e0","input_length":966,"output_length":632,"hash_ids":[2204119,2204120],"delay":21566.0} +{"session_id":"sess-2593687643e0","input_length":5254,"output_length":711,"hash_ids":[2204121,2204122,2204123,2204124,2204125,2204126,2204127,2204128,2204129,2204130,2204131],"delay":1654.3} +{"session_id":"sess-2593687643e0","input_length":1816,"output_length":278,"hash_ids":[2204132,2204133,2204134,2204135],"delay":1624.1} +{"session_id":"sess-2593687643e0","input_length":2109,"output_length":124,"hash_ids":[2204136,2204137,2204138,2204139,2204140],"delay":675.1} +{"session_id":"sess-2593687643e0","input_length":993,"output_length":2682,"hash_ids":[2204141,2204142],"delay":718.3} +{"session_id":"sess-2593687643e0","input_length":1470,"output_length":119,"hash_ids":[2204143,2204144,2204145],"delay":260.0} +{"session_id":"sess-2593687643e0","input_length":790,"output_length":298,"hash_ids":[2204146,2204147],"delay":554.3} +{"session_id":"sess-2593687643e0","input_length":661,"output_length":338,"hash_ids":[2204148,2204149],"delay":1397.3} +{"session_id":"sess-2593687643e0","input_length":1693,"output_length":107,"hash_ids":[2204150,2204151,2204152,2204153],"delay":5088.0} +{"session_id":"sess-2593687643e0","input_length":7144,"output_length":255,"hash_ids":[2204154,2204155,2204156,2204157,2204158,2204159,2204160,2204161,2204162,2204163,2204164,2204165,2204166,2204167],"delay":1630.5} +{"session_id":"sess-2593687643e0","input_length":915,"output_length":730,"hash_ids":[2204168,2204169],"delay":1073.9} +{"session_id":"sess-2593687643e0","input_length":546,"output_length":313,"hash_ids":[2204170,2204171],"delay":259.0} +{"session_id":"sess-2593687643e0","input_length":504,"output_length":52,"hash_ids":[2204172],"delay":2343.7} +{"session_id":"sess-2593687643e0","input_length":926,"output_length":1286,"hash_ids":[2204173,2204174],"delay":8337.5} +{"session_id":"sess-2593687643e0","input_length":3550,"output_length":68,"hash_ids":[2204175,2204176,2204177,2204178,2204179,2204180,2204181],"delay":1051.1} +{"session_id":"sess-2593687643e0","input_length":876,"output_length":234,"hash_ids":[2204182,2204183],"delay":2344.5} +{"session_id":"sess-2593687643e0","input_length":3944,"output_length":145,"hash_ids":[2204184,2204185,2204186,2204187,2204188,2204189,2204190,2204191],"delay":499.3} +{"session_id":"sess-2593687643e0","input_length":2201,"output_length":388,"hash_ids":[2204192,2204193,2204194,2204195,2204196],"delay":820.3} +{"session_id":"sess-2593687643e0","input_length":689,"output_length":187,"hash_ids":[2204197,2204198],"delay":6283.4} +{"session_id":"sess-2593687643e0","input_length":1237,"output_length":157,"hash_ids":[2204199,2204200,2204201],"delay":856.5} +{"session_id":"sess-4a4d1de14ff6","input_length":64465,"output_length":463,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,2208063,2208064,2208065,2208066,2208067,2208068,2208069,2208070,2208071,2208072,2208073,2208074,2208075,2208076,2208077,2208078,2208079,2208080,2208081,2208082,2208083,2208084,2208085],"timestamp":0.0,"group_id":44} +{"session_id":"sess-4a4d1de14ff6","input_length":6465,"output_length":88,"hash_ids":[2208086,2208087,2208088,2208089,2208090,2208091,2208092,2208093,2208094,2208095,2208096,2208097,2208098],"delay":932.8} +{"session_id":"sess-438b41dc10fc","input_length":65236,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2212063,2212064,2212065,2212066,2212067,2212068,2212069,2212070,2212071,2212072,2212073,2212074,2212075,2212076,2212077,2212078,2212079,2212080,2212081,2212082,2212083,2212084,2212085,2212086,2212087],"timestamp":0.0,"group_id":0} +{"session_id":"sess-438b41dc10fc","input_length":624,"output_length":252,"hash_ids":[2212088,2212089],"delay":1607.5} +{"session_id":"sess-438b41dc10fc","input_length":2652,"output_length":262,"hash_ids":[2212090,2212091,2212092,2212093,2212094,2212095],"delay":208.7} +{"session_id":"sess-438b41dc10fc","input_length":2734,"output_length":648,"hash_ids":[2212096,2212097,2212098,2212099,2212100,2212101],"delay":313.7} +{"session_id":"sess-438b41dc10fc","input_length":1065,"output_length":479,"hash_ids":[2212102,2212103,2212104],"delay":26424.6} +{"session_id":"sess-438b41dc10fc","input_length":1403,"output_length":2210,"hash_ids":[2212105,2212106,2212107],"delay":2306.6} +{"session_id":"sess-438b41dc10fc","input_length":1123,"output_length":125,"hash_ids":[2212108,2212109,2212110],"delay":2373.6} +{"session_id":"sess-438b41dc10fc","input_length":504,"output_length":90,"hash_ids":[2212111],"delay":1404.7} +{"session_id":"sess-438b41dc10fc","input_length":1112,"output_length":1699,"hash_ids":[2212112,2212113,2212114],"delay":650.4} +{"session_id":"sess-438b41dc10fc","input_length":5861,"output_length":480,"hash_ids":[2212115,2212116,2212117,2212118,2212119,2212120,2212121,2212122,2212123,2212124,2212125,2212126],"delay":1888.2} +{"session_id":"sess-438b41dc10fc","input_length":1459,"output_length":436,"hash_ids":[2212127,2212128,2212129],"delay":581.6} +{"session_id":"sess-438b41dc10fc","input_length":610,"output_length":659,"hash_ids":[2212130,2212131],"delay":13655.4} +{"session_id":"sess-438b41dc10fc","input_length":564,"output_length":97,"hash_ids":[2212132,2212133],"delay":1273.7} +{"session_id":"sess-438b41dc10fc","input_length":4727,"output_length":873,"hash_ids":[2212134,2212135,2212136,2212137,2212138,2212139,2212140,2212141,2212142,2212143],"delay":4222.3} +{"session_id":"sess-438b41dc10fc","input_length":2288,"output_length":106,"hash_ids":[2212144,2212145,2212146,2212147,2212148],"delay":327.8} +{"session_id":"sess-438b41dc10fc","input_length":779,"output_length":301,"hash_ids":[2212149,2212150],"delay":1933.2} +{"session_id":"sess-438b41dc10fc","input_length":381,"output_length":90,"hash_ids":[2212151],"delay":3624.5} +{"session_id":"sess-a65ed7743c54","input_length":65681,"output_length":353,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,2216063,2216064,2216065,2216066,2216067,2216068,2216069,2216070,2216071,2216072,2216073,2216074,2216075,2216076,2216077,2216078,2216079,2216080,2216081,2216082,2216083,2216084,2216085,2216086,2216087,2216088],"timestamp":0.0,"group_id":24} +{"session_id":"sess-a65ed7743c54","input_length":5295,"output_length":344,"hash_ids":[2216089,2216090,2216091,2216092,2216093,2216094,2216095,2216096,2216097,2216098,2216099],"delay":1473.2} +{"session_id":"sess-b9bd35861c15","input_length":56221,"output_length":317,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2220063,2220064,2220065,2220066,2220067,2220068,2220069],"timestamp":0.0,"group_id":14} +{"session_id":"sess-b9bd35861c15","input_length":569,"output_length":77,"hash_ids":[2220070,2220071],"delay":1083.1} +{"session_id":"sess-b9bd35861c15","input_length":2103,"output_length":728,"hash_ids":[2220072,2220073,2220074,2220075,2220076],"delay":779.7} +{"session_id":"sess-b9bd35861c15","input_length":5665,"output_length":495,"hash_ids":[2220077,2220078,2220079,2220080,2220081,2220082,2220083,2220084,2220085,2220086,2220087,2220088],"delay":6726.6} +{"session_id":"sess-b9bd35861c15","input_length":1756,"output_length":1279,"hash_ids":[2220089,2220090,2220091,2220092],"delay":354.3} +{"session_id":"sess-b9bd35861c15","input_length":395,"output_length":190,"hash_ids":[2220093],"delay":4468.3} +{"session_id":"sess-b9bd35861c15","input_length":6827,"output_length":296,"hash_ids":[2220094,2220095,2220096,2220097,2220098,2220099,2220100,2220101,2220102,2220103,2220104,2220105,2220106,2220107],"delay":3515.2} +{"session_id":"sess-b9bd35861c15","input_length":3296,"output_length":923,"hash_ids":[2220108,2220109,2220110,2220111,2220112,2220113,2220114],"delay":9160.1} +{"session_id":"sess-b9bd35861c15","input_length":1329,"output_length":1273,"hash_ids":[2220115,2220116,2220117],"delay":2205.4} +{"session_id":"sess-b9bd35861c15","input_length":1554,"output_length":1369,"hash_ids":[2220118,2220119,2220120,2220121],"delay":3191.0} +{"session_id":"sess-b9bd35861c15","input_length":4509,"output_length":1639,"hash_ids":[2220122,2220123,2220124,2220125,2220126,2220127,2220128,2220129,2220130],"delay":719.8} +{"session_id":"sess-b9bd35861c15","input_length":880,"output_length":460,"hash_ids":[2220131,2220132],"delay":2193.8} +{"session_id":"sess-b9bd35861c15","input_length":2630,"output_length":161,"hash_ids":[2220133,2220134,2220135,2220136,2220137,2220138],"delay":1249.0} +{"session_id":"sess-b9bd35861c15","input_length":1633,"output_length":76,"hash_ids":[2220139,2220140,2220141,2220142],"delay":23737.0} +{"session_id":"sess-b9bd35861c15","input_length":228,"output_length":2022,"hash_ids":[2220143],"delay":1132.1} +{"session_id":"sess-b9bd35861c15","input_length":911,"output_length":92,"hash_ids":[2220144,2220145],"delay":688.3} +{"session_id":"sess-b9bd35861c15","input_length":3264,"output_length":383,"hash_ids":[2220146,2220147,2220148,2220149,2220150,2220151,2220152],"delay":1744.4} +{"session_id":"sess-b9bd35861c15","input_length":3383,"output_length":534,"hash_ids":[2220153,2220154,2220155,2220156,2220157,2220158,2220159],"delay":924.5} +{"session_id":"sess-b9bd35861c15","input_length":4657,"output_length":497,"hash_ids":[2220160,2220161,2220162,2220163,2220164,2220165,2220166,2220167,2220168,2220169],"delay":811.8} +{"session_id":"sess-b9bd35861c15","input_length":834,"output_length":140,"hash_ids":[2220170,2220171],"delay":130.9} +{"session_id":"sess-b9bd35861c15","input_length":574,"output_length":418,"hash_ids":[2220172,2220173],"delay":7537.5} +{"session_id":"sess-b9bd35861c15","input_length":331,"output_length":113,"hash_ids":[2220174],"delay":990.6} +{"session_id":"sess-c641a8ca5ea9","input_length":57059,"output_length":666,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2224063,2224064,2224065,2224066,2224067,2224068,2224069,2224070,2224071],"timestamp":0.0,"group_id":9} +{"session_id":"sess-c641a8ca5ea9","input_length":2848,"output_length":136,"hash_ids":[2224072,2224073,2224074,2224075,2224076,2224077],"delay":5332.0} +{"session_id":"sess-c641a8ca5ea9","input_length":2990,"output_length":476,"hash_ids":[2224078,2224079,2224080,2224081,2224082,2224083],"delay":2238.7} +{"session_id":"sess-c641a8ca5ea9","input_length":643,"output_length":46,"hash_ids":[2224084,2224085],"delay":3717.7} +{"session_id":"sess-c641a8ca5ea9","input_length":1428,"output_length":241,"hash_ids":[2224086,2224087,2224088],"delay":3185.9} +{"session_id":"sess-995f58a18e88","input_length":60175,"output_length":279,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2228063,2228064,2228065,2228066,2228067,2228068,2228069,2228070,2228071,2228072,2228073,2228074,2228075,2228076,2228077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-995f58a18e88","input_length":1233,"output_length":143,"hash_ids":[2228078,2228079,2228080],"delay":1990.4} +{"session_id":"sess-995f58a18e88","input_length":788,"output_length":121,"hash_ids":[2228081,2228082],"delay":660.6} +{"session_id":"sess-995f58a18e88","input_length":852,"output_length":146,"hash_ids":[2228083,2228084],"delay":698.6} +{"session_id":"sess-995f58a18e88","input_length":435,"output_length":118,"hash_ids":[2228085],"delay":33847.9} +{"session_id":"sess-995f58a18e88","input_length":4359,"output_length":604,"hash_ids":[2228086,2228087,2228088,2228089,2228090,2228091,2228092,2228093,2228094],"delay":457.3} +{"session_id":"sess-995f58a18e88","input_length":7378,"output_length":733,"hash_ids":[2228095,2228096,2228097,2228098,2228099,2228100,2228101,2228102,2228103,2228104,2228105,2228106,2228107,2228108,2228109],"delay":14827.6} +{"session_id":"sess-995f58a18e88","input_length":1277,"output_length":1036,"hash_ids":[2228110,2228111,2228112],"delay":24599.6} +{"session_id":"sess-995f58a18e88","input_length":9810,"output_length":1293,"hash_ids":[2228113,2228114,2228115,2228116,2228117,2228118,2228119,2228120,2228121,2228122,2228123,2228124,2228125,2228126,2228127,2228128,2228129,2228130,2228131,2228132],"delay":1515.8} +{"session_id":"sess-995f58a18e88","input_length":511,"output_length":451,"hash_ids":[2228133],"delay":913.6} +{"session_id":"sess-995f58a18e88","input_length":277,"output_length":72,"hash_ids":[2228134],"delay":1058.5} +{"session_id":"sess-995f58a18e88","input_length":4929,"output_length":293,"hash_ids":[2228135,2228136,2228137,2228138,2228139,2228140,2228141,2228142,2228143,2228144],"delay":2853.5} +{"session_id":"sess-995f58a18e88","input_length":2472,"output_length":514,"hash_ids":[2228145,2228146,2228147,2228148,2228149],"delay":1212.8} +{"session_id":"sess-995f58a18e88","input_length":322,"output_length":559,"hash_ids":[2228150],"delay":2030.6} +{"session_id":"sess-995f58a18e88","input_length":2439,"output_length":1402,"hash_ids":[2228151,2228152,2228153,2228154,2228155],"delay":748.8} +{"session_id":"sess-995f58a18e88","input_length":483,"output_length":1943,"hash_ids":[2228156],"delay":11119.8} +{"session_id":"sess-995f58a18e88","input_length":1730,"output_length":2205,"hash_ids":[2228157,2228158,2228159,2228160],"delay":1876.1} +{"session_id":"sess-995f58a18e88","input_length":2423,"output_length":705,"hash_ids":[2228161,2228162,2228163,2228164,2228165],"delay":1311.8} +{"session_id":"sess-995f58a18e88","input_length":361,"output_length":496,"hash_ids":[2228166],"delay":1173.6} +{"session_id":"sess-995f58a18e88","input_length":2657,"output_length":791,"hash_ids":[2228167,2228168,2228169,2228170,2228171,2228172],"delay":680.3} +{"session_id":"sess-995f58a18e88","input_length":5862,"output_length":493,"hash_ids":[2228173,2228174,2228175,2228176,2228177,2228178,2228179,2228180,2228181,2228182,2228183,2228184],"delay":1688.6} +{"session_id":"sess-995f58a18e88","input_length":5126,"output_length":211,"hash_ids":[2228185,2228186,2228187,2228188,2228189,2228190,2228191,2228192,2228193,2228194,2228195],"delay":116.9} +{"session_id":"sess-71038dd72699","input_length":62532,"output_length":503,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2232063,2232064,2232065,2232066,2232067,2232068,2232069,2232070,2232071,2232072,2232073,2232074,2232075,2232076,2232077,2232078,2232079,2232080,2232081,2232082],"timestamp":0.0,"group_id":2} +{"session_id":"sess-71038dd72699","input_length":4904,"output_length":157,"hash_ids":[2232083,2232084,2232085,2232086,2232087,2232088,2232089,2232090,2232091,2232092],"delay":1365.5} +{"session_id":"sess-71038dd72699","input_length":6521,"output_length":158,"hash_ids":[2232093,2232094,2232095,2232096,2232097,2232098,2232099,2232100,2232101,2232102,2232103,2232104,2232105],"delay":2989.6} +{"session_id":"sess-71038dd72699","input_length":287,"output_length":296,"hash_ids":[2232106],"delay":302.3} +{"session_id":"sess-71038dd72699","input_length":1135,"output_length":50,"hash_ids":[2232107,2232108,2232109],"delay":13316.2} +{"session_id":"sess-71038dd72699","input_length":191,"output_length":60,"hash_ids":[2232110],"delay":17267.3} +{"session_id":"sess-71038dd72699","input_length":486,"output_length":177,"hash_ids":[2232111],"delay":2017.4} +{"session_id":"sess-71038dd72699","input_length":614,"output_length":1213,"hash_ids":[2232112,2232113],"delay":215.5} +{"session_id":"sess-71038dd72699","input_length":1459,"output_length":270,"hash_ids":[2232114,2232115,2232116],"delay":1702.5} +{"session_id":"sess-71038dd72699","input_length":544,"output_length":285,"hash_ids":[2232117,2232118],"delay":14337.1} +{"session_id":"sess-71038dd72699","input_length":4326,"output_length":732,"hash_ids":[2232119,2232120,2232121,2232122,2232123,2232124,2232125,2232126,2232127],"delay":552.8} +{"session_id":"sess-71038dd72699","input_length":2866,"output_length":270,"hash_ids":[2232128,2232129,2232130,2232131,2232132,2232133],"delay":9874.9} +{"session_id":"sess-71038dd72699","input_length":9255,"output_length":74,"hash_ids":[2232134,2232135,2232136,2232137,2232138,2232139,2232140,2232141,2232142,2232143,2232144,2232145,2232146,2232147,2232148,2232149,2232150,2232151,2232152],"delay":729.0} +{"session_id":"sess-71038dd72699","input_length":4820,"output_length":393,"hash_ids":[2232153,2232154,2232155,2232156,2232157,2232158,2232159,2232160,2232161,2232162],"delay":2035.0} +{"session_id":"sess-71038dd72699","input_length":1633,"output_length":169,"hash_ids":[2232163,2232164,2232165,2232166],"delay":1109.8} +{"session_id":"sess-71038dd72699","input_length":5000,"output_length":355,"hash_ids":[2232167,2232168,2232169,2232170,2232171,2232172,2232173,2232174,2232175,2232176],"delay":305.5} +{"session_id":"sess-71038dd72699","input_length":4461,"output_length":393,"hash_ids":[2232177,2232178,2232179,2232180,2232181,2232182,2232183,2232184,2232185],"delay":2254.7} +{"session_id":"sess-71038dd72699","input_length":1172,"output_length":149,"hash_ids":[2232186,2232187,2232188],"delay":13311.5} +{"session_id":"sess-71038dd72699","input_length":1577,"output_length":168,"hash_ids":[2232189,2232190,2232191,2232192],"delay":707.2} +{"session_id":"sess-71038dd72699","input_length":6800,"output_length":293,"hash_ids":[2232193,2232194,2232195,2232196,2232197,2232198,2232199,2232200,2232201,2232202,2232203,2232204,2232205,2232206],"delay":5695.8} +{"session_id":"sess-78a98c0ea2cb","input_length":52271,"output_length":154,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-78a98c0ea2cb","input_length":2149,"output_length":61,"hash_ids":[2232207,2232208,2232209,2232210,2232211],"delay":6736.6} +{"session_id":"sess-78a98c0ea2cb","input_length":345,"output_length":109,"hash_ids":[2232212],"delay":2195.3} +{"session_id":"sess-78a98c0ea2cb","input_length":1514,"output_length":981,"hash_ids":[2232213,2232214,2232215],"delay":2353.4} +{"session_id":"sess-78a98c0ea2cb","input_length":484,"output_length":201,"hash_ids":[2232216],"delay":48042.2} +{"session_id":"sess-78a98c0ea2cb","input_length":1109,"output_length":157,"hash_ids":[2232217,2232218,2232219],"delay":715.9} +{"session_id":"sess-78a98c0ea2cb","input_length":6754,"output_length":114,"hash_ids":[2232220,2232221,2232222,2232223,2232224,2232225,2232226,2232227,2232228,2232229,2232230,2232231,2232232,2232233],"delay":497.0} +{"session_id":"sess-78a98c0ea2cb","input_length":617,"output_length":339,"hash_ids":[2232234,2232235],"delay":860.7} +{"session_id":"sess-78a98c0ea2cb","input_length":1045,"output_length":871,"hash_ids":[2232236,2232237,2232238],"delay":829.9} +{"session_id":"sess-78a98c0ea2cb","input_length":1792,"output_length":61,"hash_ids":[2232239,2232240,2232241,2232242],"delay":24134.7} +{"session_id":"sess-78a98c0ea2cb","input_length":2143,"output_length":600,"hash_ids":[2232243,2232244,2232245,2232246,2232247],"delay":4612.1} +{"session_id":"sess-78a98c0ea2cb","input_length":1386,"output_length":1085,"hash_ids":[2232248,2232249,2232250],"delay":7551.7} +{"session_id":"sess-78a98c0ea2cb","input_length":3609,"output_length":233,"hash_ids":[2232251,2232252,2232253,2232254,2232255,2232256,2232257,2232258],"delay":612.7} +{"session_id":"sess-78a98c0ea2cb","input_length":2627,"output_length":147,"hash_ids":[2232259,2232260,2232261,2232262,2232263,2232264],"delay":9930.6} +{"session_id":"sess-78a98c0ea2cb","input_length":5133,"output_length":101,"hash_ids":[2232265,2232266,2232267,2232268,2232269,2232270,2232271,2232272,2232273,2232274,2232275],"delay":318.9} +{"session_id":"sess-78a98c0ea2cb","input_length":1785,"output_length":37,"hash_ids":[2232276,2232277,2232278,2232279],"delay":784.0} +{"session_id":"sess-78a98c0ea2cb","input_length":4809,"output_length":1345,"hash_ids":[2232280,2232281,2232282,2232283,2232284,2232285,2232286,2232287,2232288,2232289],"delay":14388.1} +{"session_id":"sess-78a98c0ea2cb","input_length":2565,"output_length":760,"hash_ids":[2232290,2232291,2232292,2232293,2232294,2232295],"delay":795.0} +{"session_id":"sess-78a98c0ea2cb","input_length":1208,"output_length":259,"hash_ids":[2232296,2232297,2232298],"delay":186.6} +{"session_id":"sess-78a98c0ea2cb","input_length":2024,"output_length":402,"hash_ids":[2232299,2232300,2232301,2232302],"delay":561.3} +{"session_id":"sess-78a98c0ea2cb","input_length":1005,"output_length":175,"hash_ids":[2232303,2232304],"delay":3378.1} +{"session_id":"sess-78a98c0ea2cb","input_length":336,"output_length":208,"hash_ids":[2232305],"delay":6638.2} +{"session_id":"sess-78a98c0ea2cb","input_length":1218,"output_length":593,"hash_ids":[2232306,2232307,2232308],"delay":831.9} +{"session_id":"sess-78a98c0ea2cb","input_length":985,"output_length":807,"hash_ids":[2232309,2232310],"delay":15461.0} +{"session_id":"sess-78a98c0ea2cb","input_length":5143,"output_length":415,"hash_ids":[2232311,2232312,2232313,2232314,2232315,2232316,2232317,2232318,2232319,2232320,2232321],"delay":768.5} +{"session_id":"sess-78a98c0ea2cb","input_length":2776,"output_length":98,"hash_ids":[2232322,2232323,2232324,2232325,2232326,2232327],"delay":579.9} +{"session_id":"sess-78a98c0ea2cb","input_length":503,"output_length":62,"hash_ids":[2232328],"delay":108.5} +{"session_id":"sess-78a98c0ea2cb","input_length":6287,"output_length":95,"hash_ids":[2232329,2232330,2232331,2232332,2232333,2232334,2232335,2232336,2232337,2232338,2232339,2232340,2232341],"delay":623.4} +{"session_id":"sess-260006dfb7a9","input_length":59898,"output_length":293,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,2240063,2240064,2240065,2240066,2240067,2240068,2240069,2240070,2240071,2240072,2240073,2240074,2240075,2240076],"timestamp":0.0,"group_id":23} +{"session_id":"sess-260006dfb7a9","input_length":2240,"output_length":250,"hash_ids":[2240077,2240078,2240079,2240080,2240081],"delay":29589.7} +{"session_id":"sess-260006dfb7a9","input_length":976,"output_length":369,"hash_ids":[2240082,2240083],"delay":503.5} +{"session_id":"sess-260006dfb7a9","input_length":556,"output_length":2033,"hash_ids":[2240084,2240085],"delay":52080.1} +{"session_id":"sess-260006dfb7a9","input_length":38,"output_length":126,"hash_ids":[2240086],"delay":294.9} +{"session_id":"sess-260006dfb7a9","input_length":3890,"output_length":163,"hash_ids":[2240087,2240088,2240089,2240090,2240091,2240092,2240093,2240094],"delay":1304.3} +{"session_id":"sess-260006dfb7a9","input_length":1612,"output_length":211,"hash_ids":[2240095,2240096,2240097,2240098],"delay":1028.4} +{"session_id":"sess-260006dfb7a9","input_length":2563,"output_length":396,"hash_ids":[2240099,2240100,2240101,2240102,2240103,2240104],"delay":495.9} +{"session_id":"sess-260006dfb7a9","input_length":4326,"output_length":375,"hash_ids":[2240105,2240106,2240107,2240108,2240109,2240110,2240111,2240112,2240113],"delay":952.2} +{"session_id":"sess-260006dfb7a9","input_length":9875,"output_length":476,"hash_ids":[2240114,2240115,2240116,2240117,2240118,2240119,2240120,2240121,2240122,2240123,2240124,2240125,2240126,2240127,2240128,2240129,2240130,2240131,2240132,2240133],"delay":512.2} +{"session_id":"sess-260006dfb7a9","input_length":1172,"output_length":186,"hash_ids":[2240134,2240135,2240136],"delay":6879.8} +{"session_id":"sess-260006dfb7a9","input_length":946,"output_length":334,"hash_ids":[2240137,2240138],"delay":4232.6} +{"session_id":"sess-260006dfb7a9","input_length":582,"output_length":83,"hash_ids":[2240139,2240140],"delay":1159.8} +{"session_id":"sess-260006dfb7a9","input_length":590,"output_length":788,"hash_ids":[2240141,2240142],"delay":943.5} +{"session_id":"sess-260006dfb7a9","input_length":1820,"output_length":81,"hash_ids":[2240143,2240144,2240145,2240146],"delay":376.6} +{"session_id":"sess-260006dfb7a9","input_length":1208,"output_length":328,"hash_ids":[2240147,2240148,2240149],"delay":494.6} +{"session_id":"sess-00bcdbe9905c","input_length":53669,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2244063,2244064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-00bcdbe9905c","input_length":3045,"output_length":473,"hash_ids":[2244065,2244066,2244067,2244068,2244069,2244070],"delay":6734.3} +{"session_id":"sess-00bcdbe9905c","input_length":2406,"output_length":234,"hash_ids":[2244071,2244072,2244073,2244074,2244075],"delay":19006.2} +{"session_id":"sess-00bcdbe9905c","input_length":336,"output_length":1065,"hash_ids":[2244076],"delay":1081.1} +{"session_id":"sess-00bcdbe9905c","input_length":1088,"output_length":493,"hash_ids":[2244077,2244078,2244079],"delay":286.0} +{"session_id":"sess-00bcdbe9905c","input_length":131,"output_length":231,"hash_ids":[2244080],"delay":2364.9} +{"session_id":"sess-00bcdbe9905c","input_length":1739,"output_length":388,"hash_ids":[2244081,2244082,2244083,2244084],"delay":1813.9} +{"session_id":"sess-00bcdbe9905c","input_length":3559,"output_length":95,"hash_ids":[2244085,2244086,2244087,2244088,2244089,2244090,2244091],"delay":738.9} +{"session_id":"sess-00bcdbe9905c","input_length":95,"output_length":158,"hash_ids":[2244092],"delay":61641.4} +{"session_id":"sess-00bcdbe9905c","input_length":1868,"output_length":210,"hash_ids":[2244093,2244094,2244095,2244096],"delay":4836.7} +{"session_id":"sess-00bcdbe9905c","input_length":478,"output_length":435,"hash_ids":[2244097],"delay":5659.8} +{"session_id":"sess-00bcdbe9905c","input_length":2921,"output_length":125,"hash_ids":[2244098,2244099,2244100,2244101,2244102,2244103],"delay":1250.9} +{"session_id":"sess-00bcdbe9905c","input_length":2079,"output_length":402,"hash_ids":[2244104,2244105,2244106,2244107,2244108],"delay":472.9} +{"session_id":"sess-00bcdbe9905c","input_length":1099,"output_length":254,"hash_ids":[2244109,2244110,2244111],"delay":7155.0} +{"session_id":"sess-00bcdbe9905c","input_length":4396,"output_length":1018,"hash_ids":[2244112,2244113,2244114,2244115,2244116,2244117,2244118,2244119,2244120],"delay":2063.0} +{"session_id":"sess-00bcdbe9905c","input_length":1229,"output_length":949,"hash_ids":[2244121,2244122,2244123],"delay":843.4} +{"session_id":"sess-00bcdbe9905c","input_length":389,"output_length":498,"hash_ids":[2244124],"delay":798.7} +{"session_id":"sess-00bcdbe9905c","input_length":1712,"output_length":30,"hash_ids":[2244125,2244126,2244127,2244128],"delay":203.5} +{"session_id":"sess-00bcdbe9905c","input_length":1767,"output_length":71,"hash_ids":[2244129,2244130,2244131,2244132],"delay":9169.3} +{"session_id":"sess-00bcdbe9905c","input_length":7096,"output_length":183,"hash_ids":[2244133,2244134,2244135,2244136,2244137,2244138,2244139,2244140,2244141,2244142,2244143,2244144,2244145,2244146],"delay":39520.7} +{"session_id":"sess-00bcdbe9905c","input_length":425,"output_length":85,"hash_ids":[2244147],"delay":17778.7} +{"session_id":"sess-00bcdbe9905c","input_length":936,"output_length":590,"hash_ids":[2244148,2244149],"delay":5495.0} +{"session_id":"sess-00bcdbe9905c","input_length":344,"output_length":343,"hash_ids":[2244150],"delay":725.8} +{"session_id":"sess-00bcdbe9905c","input_length":96,"output_length":1017,"hash_ids":[2244151],"delay":10712.2} +{"session_id":"sess-00bcdbe9905c","input_length":4260,"output_length":466,"hash_ids":[2244152,2244153,2244154,2244155,2244156,2244157,2244158,2244159,2244160],"delay":35407.0} +{"session_id":"sess-00bcdbe9905c","input_length":6254,"output_length":399,"hash_ids":[2244161,2244162,2244163,2244164,2244165,2244166,2244167,2244168,2244169,2244170,2244171,2244172,2244173],"delay":265.0} +{"session_id":"sess-00bcdbe9905c","input_length":857,"output_length":309,"hash_ids":[2244174,2244175],"delay":1236.1} +{"session_id":"sess-00bcdbe9905c","input_length":3219,"output_length":276,"hash_ids":[2244176,2244177,2244178,2244179,2244180,2244181,2244182],"delay":584.9} +{"session_id":"sess-00bcdbe9905c","input_length":213,"output_length":1549,"hash_ids":[2244183],"delay":2324.0} +{"session_id":"sess-00bcdbe9905c","input_length":4006,"output_length":1984,"hash_ids":[2244184,2244185,2244186,2244187,2244188,2244189,2244190,2244191],"delay":397.9} +{"session_id":"sess-dd8e0e1f421e","input_length":62126,"output_length":461,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2248063,2248064,2248065,2248066,2248067,2248068,2248069,2248070,2248071,2248072,2248073,2248074,2248075,2248076,2248077,2248078,2248079,2248080,2248081],"timestamp":0.0,"group_id":5} +{"session_id":"sess-dd8e0e1f421e","input_length":826,"output_length":277,"hash_ids":[2248082,2248083],"delay":3600.4} +{"session_id":"sess-dd8e0e1f421e","input_length":315,"output_length":142,"hash_ids":[2248084],"delay":386.9} +{"session_id":"sess-dd8e0e1f421e","input_length":4176,"output_length":580,"hash_ids":[2248085,2248086,2248087,2248088,2248089,2248090,2248091,2248092,2248093],"delay":1030.1} +{"session_id":"sess-dd8e0e1f421e","input_length":2072,"output_length":72,"hash_ids":[2248094,2248095,2248096,2248097,2248098],"delay":893.9} +{"session_id":"sess-dd8e0e1f421e","input_length":8899,"output_length":391,"hash_ids":[2248099,2248100,2248101,2248102,2248103,2248104,2248105,2248106,2248107,2248108,2248109,2248110,2248111,2248112,2248113,2248114,2248115,2248116],"delay":13304.9} +{"session_id":"sess-dd8e0e1f421e","input_length":5876,"output_length":1780,"hash_ids":[2248117,2248118,2248119,2248120,2248121,2248122,2248123,2248124,2248125,2248126,2248127,2248128],"delay":699.1} +{"session_id":"sess-dd8e0e1f421e","input_length":4265,"output_length":169,"hash_ids":[2248129,2248130,2248131,2248132,2248133,2248134,2248135,2248136,2248137],"delay":1173.8} +{"session_id":"sess-dd8e0e1f421e","input_length":1633,"output_length":504,"hash_ids":[2248138,2248139,2248140,2248141],"delay":287.6} +{"session_id":"sess-dd8e0e1f421e","input_length":807,"output_length":446,"hash_ids":[2248142,2248143],"delay":241.7} +{"session_id":"sess-dd8e0e1f421e","input_length":2467,"output_length":288,"hash_ids":[2248144,2248145,2248146,2248147,2248148],"delay":3322.6} +{"session_id":"sess-dd8e0e1f421e","input_length":611,"output_length":74,"hash_ids":[2248149,2248150],"delay":567.4} +{"session_id":"sess-dd8e0e1f421e","input_length":4951,"output_length":213,"hash_ids":[2248151,2248152,2248153,2248154,2248155,2248156,2248157,2248158,2248159,2248160],"delay":307.0} +{"session_id":"sess-dd8e0e1f421e","input_length":1648,"output_length":1481,"hash_ids":[2248161,2248162,2248163,2248164],"delay":1510.5} +{"session_id":"sess-dd8e0e1f421e","input_length":452,"output_length":282,"hash_ids":[2248165],"delay":674.3} +{"session_id":"sess-dd8e0e1f421e","input_length":873,"output_length":450,"hash_ids":[2248166,2248167],"delay":29290.3} +{"session_id":"sess-dd8e0e1f421e","input_length":3091,"output_length":195,"hash_ids":[2248168,2248169,2248170,2248171,2248172,2248173,2248174],"delay":295.9} +{"session_id":"sess-dd8e0e1f421e","input_length":4605,"output_length":1025,"hash_ids":[2248175,2248176,2248177,2248178,2248179,2248180,2248181,2248182,2248183],"delay":5525.0} +{"session_id":"sess-dd8e0e1f421e","input_length":6691,"output_length":42,"hash_ids":[2248184,2248185,2248186,2248187,2248188,2248189,2248190,2248191,2248192,2248193,2248194,2248195,2248196,2248197],"delay":5240.0} +{"session_id":"sess-dd8e0e1f421e","input_length":1059,"output_length":77,"hash_ids":[2248198,2248199,2248200],"delay":3978.6} +{"session_id":"sess-eecf49d05c56","input_length":64073,"output_length":543,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2252063,2252064,2252065,2252066,2252067,2252068,2252069,2252070,2252071,2252072,2252073,2252074,2252075,2252076,2252077,2252078,2252079,2252080,2252081,2252082,2252083,2252084,2252085],"timestamp":0.0,"group_id":1} +{"session_id":"sess-eecf49d05c56","input_length":273,"output_length":615,"hash_ids":[2252086],"delay":1230.9} +{"session_id":"sess-eecf49d05c56","input_length":2842,"output_length":58,"hash_ids":[2252087,2252088,2252089,2252090,2252091,2252092],"delay":1089.8} +{"session_id":"sess-eecf49d05c56","input_length":805,"output_length":209,"hash_ids":[2252093,2252094],"delay":872.4} +{"session_id":"sess-eecf49d05c56","input_length":241,"output_length":99,"hash_ids":[2252095],"delay":1165.9} +{"session_id":"sess-eecf49d05c56","input_length":2206,"output_length":114,"hash_ids":[2252096,2252097,2252098,2252099,2252100],"delay":2107.4} +{"session_id":"sess-eecf49d05c56","input_length":848,"output_length":255,"hash_ids":[2252101,2252102],"delay":620.4} +{"session_id":"sess-eecf49d05c56","input_length":935,"output_length":176,"hash_ids":[2252103,2252104],"delay":13327.4} +{"session_id":"sess-eecf49d05c56","input_length":5585,"output_length":528,"hash_ids":[2252105,2252106,2252107,2252108,2252109,2252110,2252111,2252112,2252113,2252114,2252115],"delay":915.7} +{"session_id":"sess-eecf49d05c56","input_length":1488,"output_length":67,"hash_ids":[2252116,2252117,2252118],"delay":19641.0} +{"session_id":"sess-eecf49d05c56","input_length":614,"output_length":96,"hash_ids":[2252119,2252120],"delay":783.6} +{"session_id":"sess-eecf49d05c56","input_length":1820,"output_length":538,"hash_ids":[2252121,2252122,2252123,2252124],"delay":1013.7} +{"session_id":"sess-eecf49d05c56","input_length":3742,"output_length":2802,"hash_ids":[2252125,2252126,2252127,2252128,2252129,2252130,2252131,2252132],"delay":1229.8} +{"session_id":"sess-eecf49d05c56","input_length":3018,"output_length":342,"hash_ids":[2252133,2252134,2252135,2252136,2252137,2252138],"delay":548.2} +{"session_id":"sess-eecf49d05c56","input_length":1588,"output_length":52,"hash_ids":[2252139,2252140,2252141,2252142],"delay":5849.2} +{"session_id":"sess-eecf49d05c56","input_length":4728,"output_length":169,"hash_ids":[2252143,2252144,2252145,2252146,2252147,2252148,2252149,2252150,2252151,2252152],"delay":5342.4} +{"session_id":"sess-eecf49d05c56","input_length":7643,"output_length":385,"hash_ids":[2252153,2252154,2252155,2252156,2252157,2252158,2252159,2252160,2252161,2252162,2252163,2252164,2252165,2252166,2252167],"delay":28121.3} +{"session_id":"sess-eecf49d05c56","input_length":2396,"output_length":105,"hash_ids":[2252168,2252169,2252170,2252171,2252172],"delay":876.6} +{"session_id":"sess-eecf49d05c56","input_length":3355,"output_length":870,"hash_ids":[2252173,2252174,2252175,2252176,2252177,2252178,2252179],"delay":189.6} +{"session_id":"sess-eecf49d05c56","input_length":1318,"output_length":647,"hash_ids":[2252180,2252181,2252182],"delay":417.0} +{"session_id":"sess-eecf49d05c56","input_length":144,"output_length":571,"hash_ids":[2252183],"delay":7653.4} +{"session_id":"sess-eecf49d05c56","input_length":611,"output_length":177,"hash_ids":[2252184,2252185],"delay":1269.9} +{"session_id":"sess-eecf49d05c56","input_length":865,"output_length":139,"hash_ids":[2252186,2252187],"delay":1233.2} +{"session_id":"sess-eecf49d05c56","input_length":2447,"output_length":332,"hash_ids":[2252188,2252189,2252190,2252191,2252192],"delay":1655.8} +{"session_id":"sess-de74cbd394b7","input_length":69945,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2256063,2256064,2256065,2256066,2256067,2256068,2256069,2256070,2256071,2256072,2256073,2256074,2256075,2256076,2256077,2256078,2256079,2256080,2256081,2256082,2256083,2256084,2256085,2256086,2256087,2256088,2256089,2256090,2256091,2256092,2256093,2256094,2256095,2256096],"timestamp":0.0,"group_id":3} +{"session_id":"sess-de74cbd394b7","input_length":282,"output_length":61,"hash_ids":[2256097],"delay":233.8} +{"session_id":"sess-de74cbd394b7","input_length":728,"output_length":353,"hash_ids":[2256098,2256099],"delay":780.7} +{"session_id":"sess-de74cbd394b7","input_length":9919,"output_length":115,"hash_ids":[2256100,2256101,2256102,2256103,2256104,2256105,2256106,2256107,2256108,2256109,2256110,2256111,2256112,2256113,2256114,2256115,2256116,2256117,2256118,2256119],"delay":600.7} +{"session_id":"sess-de74cbd394b7","input_length":410,"output_length":1045,"hash_ids":[2256120],"delay":24289.2} +{"session_id":"sess-de74cbd394b7","input_length":4493,"output_length":345,"hash_ids":[2256121,2256122,2256123,2256124,2256125,2256126,2256127,2256128,2256129],"delay":422.3} +{"session_id":"sess-de74cbd394b7","input_length":676,"output_length":296,"hash_ids":[2256130,2256131],"delay":13113.3} +{"session_id":"sess-cb7de07794e6","input_length":68986,"output_length":534,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2260063,2260064,2260065,2260066,2260067,2260068,2260069,2260070,2260071,2260072,2260073,2260074,2260075,2260076,2260077,2260078,2260079,2260080,2260081,2260082,2260083,2260084,2260085,2260086,2260087,2260088,2260089,2260090,2260091,2260092,2260093,2260094],"timestamp":0.0,"group_id":1} +{"session_id":"sess-cb7de07794e6","input_length":1988,"output_length":427,"hash_ids":[2260095,2260096,2260097,2260098],"delay":418.1} +{"session_id":"sess-cb7de07794e6","input_length":4065,"output_length":241,"hash_ids":[2260099,2260100,2260101,2260102,2260103,2260104,2260105,2260106],"delay":605.3} +{"session_id":"sess-cb7de07794e6","input_length":645,"output_length":1181,"hash_ids":[2260107,2260108],"delay":21747.7} +{"session_id":"sess-cb7de07794e6","input_length":1529,"output_length":97,"hash_ids":[2260109,2260110,2260111],"delay":6833.0} +{"session_id":"sess-cb7de07794e6","input_length":5536,"output_length":468,"hash_ids":[2260112,2260113,2260114,2260115,2260116,2260117,2260118,2260119,2260120,2260121,2260122],"delay":3084.3} +{"session_id":"sess-cb7de07794e6","input_length":132,"output_length":1170,"hash_ids":[2260123],"delay":1032.5} +{"session_id":"sess-cb7de07794e6","input_length":281,"output_length":297,"hash_ids":[2260124],"delay":1999.7} +{"session_id":"sess-cb7de07794e6","input_length":4821,"output_length":1384,"hash_ids":[2260125,2260126,2260127,2260128,2260129,2260130,2260131,2260132,2260133,2260134],"delay":4654.3} +{"session_id":"sess-cb7de07794e6","input_length":1214,"output_length":136,"hash_ids":[2260135,2260136,2260137],"delay":2729.9} +{"session_id":"sess-cb7de07794e6","input_length":782,"output_length":204,"hash_ids":[2260138,2260139],"delay":14393.7} +{"session_id":"sess-cb7de07794e6","input_length":714,"output_length":250,"hash_ids":[2260140,2260141],"delay":565.5} +{"session_id":"sess-cb7de07794e6","input_length":2092,"output_length":83,"hash_ids":[2260142,2260143,2260144,2260145,2260146],"delay":2175.2} +{"session_id":"sess-cb7de07794e6","input_length":8597,"output_length":123,"hash_ids":[2260147,2260148,2260149,2260150,2260151,2260152,2260153,2260154,2260155,2260156,2260157,2260158,2260159,2260160,2260161,2260162,2260163],"delay":426.3} +{"session_id":"sess-cb7de07794e6","input_length":5014,"output_length":1700,"hash_ids":[2260164,2260165,2260166,2260167,2260168,2260169,2260170,2260171,2260172,2260173],"delay":2118.2} +{"session_id":"sess-cb7de07794e6","input_length":1011,"output_length":728,"hash_ids":[2260174,2260175],"delay":16873.3} +{"session_id":"sess-cb7de07794e6","input_length":3355,"output_length":100,"hash_ids":[2260176,2260177,2260178,2260179,2260180,2260181,2260182],"delay":4763.8} +{"session_id":"sess-cb7de07794e6","input_length":2149,"output_length":521,"hash_ids":[2260183,2260184,2260185,2260186,2260187],"delay":12164.4} +{"session_id":"sess-4acb3196314d","input_length":55954,"output_length":548,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,2264063,2264064,2264065,2264066,2264067,2264068,2264069],"timestamp":0.0,"group_id":21} +{"session_id":"sess-4acb3196314d","input_length":2247,"output_length":180,"hash_ids":[2264070,2264071,2264072,2264073,2264074],"delay":1145.2} +{"session_id":"sess-4acb3196314d","input_length":2119,"output_length":110,"hash_ids":[2264075,2264076,2264077,2264078,2264079],"delay":658.9} +{"session_id":"sess-4acb3196314d","input_length":1015,"output_length":1190,"hash_ids":[2264080,2264081],"delay":835.6} +{"session_id":"sess-4acb3196314d","input_length":2182,"output_length":200,"hash_ids":[2264082,2264083,2264084,2264085,2264086],"delay":627.7} +{"session_id":"sess-4acb3196314d","input_length":1477,"output_length":55,"hash_ids":[2264087,2264088,2264089],"delay":35932.2} +{"session_id":"sess-4acb3196314d","input_length":2069,"output_length":686,"hash_ids":[2264090,2264091,2264092,2264093,2264094],"delay":16569.6} +{"session_id":"sess-4acb3196314d","input_length":3044,"output_length":648,"hash_ids":[2264095,2264096,2264097,2264098,2264099,2264100],"delay":538.2} +{"session_id":"sess-4acb3196314d","input_length":550,"output_length":122,"hash_ids":[2264101,2264102],"delay":1033.7} +{"session_id":"sess-4acb3196314d","input_length":1143,"output_length":278,"hash_ids":[2264103,2264104,2264105],"delay":2805.8} +{"session_id":"sess-d36f65b60884","input_length":54031,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2268063,2268064,2268065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-d36f65b60884","input_length":373,"output_length":184,"hash_ids":[2268066],"delay":363.6} +{"session_id":"sess-d36f65b60884","input_length":189,"output_length":458,"hash_ids":[2268067],"delay":406.2} +{"session_id":"sess-d36f65b60884","input_length":4190,"output_length":236,"hash_ids":[2268068,2268069,2268070,2268071,2268072,2268073,2268074,2268075,2268076],"delay":183.3} +{"session_id":"sess-d36f65b60884","input_length":5472,"output_length":205,"hash_ids":[2268077,2268078,2268079,2268080,2268081,2268082,2268083,2268084,2268085,2268086,2268087],"delay":717.2} +{"session_id":"sess-d36f65b60884","input_length":2183,"output_length":325,"hash_ids":[2268088,2268089,2268090,2268091,2268092],"delay":3638.5} +{"session_id":"sess-d36f65b60884","input_length":1037,"output_length":384,"hash_ids":[2268093,2268094,2268095],"delay":3347.8} +{"session_id":"sess-d36f65b60884","input_length":2057,"output_length":457,"hash_ids":[2268096,2268097,2268098,2268099,2268100],"delay":5382.7} +{"session_id":"sess-d36f65b60884","input_length":1416,"output_length":1102,"hash_ids":[2268101,2268102,2268103],"delay":655.9} +{"session_id":"sess-d36f65b60884","input_length":1610,"output_length":314,"hash_ids":[2268104,2268105,2268106,2268107],"delay":1851.9} +{"session_id":"sess-d36f65b60884","input_length":4119,"output_length":164,"hash_ids":[2268108,2268109,2268110,2268111,2268112,2268113,2268114,2268115,2268116],"delay":804.3} +{"session_id":"sess-d36f65b60884","input_length":948,"output_length":408,"hash_ids":[2268117,2268118],"delay":1531.6} +{"session_id":"sess-d36f65b60884","input_length":3278,"output_length":181,"hash_ids":[2268119,2268120,2268121,2268122,2268123,2268124,2268125],"delay":2521.1} +{"session_id":"sess-d36f65b60884","input_length":2137,"output_length":204,"hash_ids":[2268126,2268127,2268128,2268129,2268130],"delay":12476.0} +{"session_id":"sess-d36f65b60884","input_length":5781,"output_length":292,"hash_ids":[2268131,2268132,2268133,2268134,2268135,2268136,2268137,2268138,2268139,2268140,2268141,2268142],"delay":44318.3} +{"session_id":"sess-d36f65b60884","input_length":439,"output_length":654,"hash_ids":[2268143],"delay":8606.5} +{"session_id":"sess-dc617f2962a0","input_length":57153,"output_length":756,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2272063,2272064,2272065,2272066,2272067,2272068,2272069,2272070,2272071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dc617f2962a0","input_length":6823,"output_length":289,"hash_ids":[2272072,2272073,2272074,2272075,2272076,2272077,2272078,2272079,2272080,2272081,2272082,2272083,2272084,2272085],"delay":3485.7} +{"session_id":"sess-dc617f2962a0","input_length":445,"output_length":376,"hash_ids":[2272086],"delay":13450.3} +{"session_id":"sess-dc617f2962a0","input_length":179,"output_length":124,"hash_ids":[2272087],"delay":877.8} +{"session_id":"sess-dc617f2962a0","input_length":3693,"output_length":314,"hash_ids":[2272088,2272089,2272090,2272091,2272092,2272093,2272094,2272095],"delay":8343.1} +{"session_id":"sess-dc617f2962a0","input_length":5383,"output_length":1093,"hash_ids":[2272096,2272097,2272098,2272099,2272100,2272101,2272102,2272103,2272104,2272105,2272106],"delay":5444.8} +{"session_id":"sess-dc617f2962a0","input_length":1777,"output_length":69,"hash_ids":[2272107,2272108,2272109,2272110],"delay":13582.4} +{"session_id":"sess-dc617f2962a0","input_length":1324,"output_length":682,"hash_ids":[2272111,2272112,2272113],"delay":5806.0} +{"session_id":"sess-dc617f2962a0","input_length":5957,"output_length":139,"hash_ids":[2272114,2272115,2272116,2272117,2272118,2272119,2272120,2272121,2272122,2272123,2272124,2272125],"delay":2093.5} +{"session_id":"sess-dc617f2962a0","input_length":2287,"output_length":291,"hash_ids":[2272126,2272127,2272128,2272129,2272130],"delay":232.0} +{"session_id":"sess-dc617f2962a0","input_length":3026,"output_length":517,"hash_ids":[2272131,2272132,2272133,2272134,2272135,2272136],"delay":9116.9} +{"session_id":"sess-dc617f2962a0","input_length":1358,"output_length":251,"hash_ids":[2272137,2272138,2272139],"delay":1229.6} +{"session_id":"sess-dc617f2962a0","input_length":5253,"output_length":107,"hash_ids":[2272140,2272141,2272142,2272143,2272144,2272145,2272146,2272147,2272148,2272149,2272150],"delay":517.1} +{"session_id":"sess-dc617f2962a0","input_length":1973,"output_length":295,"hash_ids":[2272151,2272152,2272153,2272154],"delay":3168.7} +{"session_id":"sess-dc617f2962a0","input_length":5482,"output_length":327,"hash_ids":[2272155,2272156,2272157,2272158,2272159,2272160,2272161,2272162,2272163,2272164,2272165],"delay":33124.9} +{"session_id":"sess-dc617f2962a0","input_length":5144,"output_length":162,"hash_ids":[2272166,2272167,2272168,2272169,2272170,2272171,2272172,2272173,2272174,2272175,2272176],"delay":436.3} +{"session_id":"sess-dc617f2962a0","input_length":400,"output_length":1181,"hash_ids":[2272177],"delay":1168.4} +{"session_id":"sess-dc617f2962a0","input_length":525,"output_length":230,"hash_ids":[2272178,2272179],"delay":4870.4} +{"session_id":"sess-dc617f2962a0","input_length":3057,"output_length":89,"hash_ids":[2272180,2272181,2272182,2272183,2272184,2272185],"delay":9590.9} +{"session_id":"sess-099d2440ac41","input_length":57109,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2276063,2276064,2276065,2276066,2276067,2276068,2276069,2276070,2276071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-099d2440ac41","input_length":856,"output_length":182,"hash_ids":[2276072,2276073],"delay":3716.2} +{"session_id":"sess-099d2440ac41","input_length":4415,"output_length":225,"hash_ids":[2276074,2276075,2276076,2276077,2276078,2276079,2276080,2276081,2276082],"delay":2795.0} +{"session_id":"sess-099d2440ac41","input_length":6910,"output_length":1699,"hash_ids":[2276083,2276084,2276085,2276086,2276087,2276088,2276089,2276090,2276091,2276092,2276093,2276094,2276095,2276096],"delay":1336.0} +{"session_id":"sess-099d2440ac41","input_length":1893,"output_length":732,"hash_ids":[2276097,2276098,2276099,2276100],"delay":2619.3} +{"session_id":"sess-099d2440ac41","input_length":492,"output_length":381,"hash_ids":[2276101],"delay":867.6} +{"session_id":"sess-099d2440ac41","input_length":1567,"output_length":1056,"hash_ids":[2276102,2276103,2276104,2276105],"delay":300.4} +{"session_id":"sess-099d2440ac41","input_length":1591,"output_length":1689,"hash_ids":[2276106,2276107,2276108,2276109],"delay":14585.5} +{"session_id":"sess-099d2440ac41","input_length":4396,"output_length":200,"hash_ids":[2276110,2276111,2276112,2276113,2276114,2276115,2276116,2276117,2276118],"delay":13424.4} +{"session_id":"sess-099d2440ac41","input_length":1094,"output_length":118,"hash_ids":[2276119,2276120,2276121],"delay":623.8} +{"session_id":"sess-099d2440ac41","input_length":2040,"output_length":287,"hash_ids":[2276122,2276123,2276124,2276125],"delay":1400.0} +{"session_id":"sess-099d2440ac41","input_length":378,"output_length":167,"hash_ids":[2276126],"delay":1330.3} +{"session_id":"sess-099d2440ac41","input_length":621,"output_length":143,"hash_ids":[2276127,2276128],"delay":13924.9} +{"session_id":"sess-099d2440ac41","input_length":499,"output_length":893,"hash_ids":[2276129],"delay":1609.5} +{"session_id":"sess-099d2440ac41","input_length":4525,"output_length":99,"hash_ids":[2276130,2276131,2276132,2276133,2276134,2276135,2276136,2276137,2276138],"delay":24833.5} +{"session_id":"sess-2ab6a862ff8d","input_length":56680,"output_length":899,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,2280063,2280064,2280065,2280066,2280067,2280068,2280069,2280070],"timestamp":0.0,"group_id":36} +{"session_id":"sess-2ab6a862ff8d","input_length":6102,"output_length":695,"hash_ids":[2280071,2280072,2280073,2280074,2280075,2280076,2280077,2280078,2280079,2280080,2280081,2280082],"delay":1141.0} +{"session_id":"sess-2ab6a862ff8d","input_length":1173,"output_length":30,"hash_ids":[2280083,2280084,2280085],"delay":507.3} +{"session_id":"sess-2ab6a862ff8d","input_length":6994,"output_length":1184,"hash_ids":[2280086,2280087,2280088,2280089,2280090,2280091,2280092,2280093,2280094,2280095,2280096,2280097,2280098,2280099],"delay":436.0} +{"session_id":"sess-2ab6a862ff8d","input_length":427,"output_length":130,"hash_ids":[2280100],"delay":890.1} +{"session_id":"sess-2ab6a862ff8d","input_length":224,"output_length":465,"hash_ids":[2280101],"delay":5343.9} +{"session_id":"sess-2ab6a862ff8d","input_length":2877,"output_length":295,"hash_ids":[2280102,2280103,2280104,2280105,2280106,2280107],"delay":16254.7} +{"session_id":"sess-2ab6a862ff8d","input_length":798,"output_length":791,"hash_ids":[2280108,2280109],"delay":1212.9} +{"session_id":"sess-2ab6a862ff8d","input_length":5737,"output_length":32,"hash_ids":[2280110,2280111,2280112,2280113,2280114,2280115,2280116,2280117,2280118,2280119,2280120,2280121],"delay":1157.2} +{"session_id":"sess-2ab6a862ff8d","input_length":627,"output_length":176,"hash_ids":[2280122,2280123],"delay":7463.6} +{"session_id":"sess-2ab6a862ff8d","input_length":3648,"output_length":301,"hash_ids":[2280124,2280125,2280126,2280127,2280128,2280129,2280130,2280131],"delay":494.7} +{"session_id":"sess-2ab6a862ff8d","input_length":8259,"output_length":153,"hash_ids":[2280132,2280133,2280134,2280135,2280136,2280137,2280138,2280139,2280140,2280141,2280142,2280143,2280144,2280145,2280146,2280147,2280148],"delay":45383.3} +{"session_id":"sess-2ab6a862ff8d","input_length":407,"output_length":130,"hash_ids":[2280149],"delay":390.6} +{"session_id":"sess-2ab6a862ff8d","input_length":424,"output_length":341,"hash_ids":[2280150],"delay":14795.2} +{"session_id":"sess-2ab6a862ff8d","input_length":4282,"output_length":871,"hash_ids":[2280151,2280152,2280153,2280154,2280155,2280156,2280157,2280158,2280159],"delay":1278.6} +{"session_id":"sess-2ab6a862ff8d","input_length":801,"output_length":103,"hash_ids":[2280160,2280161],"delay":3527.0} +{"session_id":"sess-2ab6a862ff8d","input_length":1882,"output_length":145,"hash_ids":[2280162,2280163,2280164,2280165],"delay":317.7} +{"session_id":"sess-2ab6a862ff8d","input_length":1210,"output_length":173,"hash_ids":[2280166,2280167,2280168],"delay":8677.2} +{"session_id":"sess-2ab6a862ff8d","input_length":1395,"output_length":213,"hash_ids":[2280169,2280170,2280171],"delay":2507.4} +{"session_id":"sess-2ab6a862ff8d","input_length":3004,"output_length":558,"hash_ids":[2280172,2280173,2280174,2280175,2280176,2280177],"delay":379.2} +{"session_id":"sess-2ab6a862ff8d","input_length":619,"output_length":1156,"hash_ids":[2280178,2280179],"delay":1660.4} +{"session_id":"sess-2ab6a862ff8d","input_length":425,"output_length":105,"hash_ids":[2280180],"delay":271.8} +{"session_id":"sess-2ab6a862ff8d","input_length":672,"output_length":434,"hash_ids":[2280181,2280182],"delay":2940.2} +{"session_id":"sess-2ab6a862ff8d","input_length":5469,"output_length":511,"hash_ids":[2280183,2280184,2280185,2280186,2280187,2280188,2280189,2280190,2280191,2280192,2280193],"delay":322.6} +{"session_id":"sess-2ab6a862ff8d","input_length":2719,"output_length":378,"hash_ids":[2280194,2280195,2280196,2280197,2280198,2280199],"delay":736.2} +{"session_id":"sess-2ab6a862ff8d","input_length":1082,"output_length":183,"hash_ids":[2280200,2280201,2280202],"delay":3258.9} +{"session_id":"sess-0fc714981807","input_length":54198,"output_length":1115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2284063,2284064,2284065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0fc714981807","input_length":2299,"output_length":450,"hash_ids":[2284066,2284067,2284068,2284069,2284070],"delay":107.2} +{"session_id":"sess-0fc714981807","input_length":1931,"output_length":829,"hash_ids":[2284071,2284072,2284073,2284074],"delay":2681.1} +{"session_id":"sess-0fc714981807","input_length":2481,"output_length":434,"hash_ids":[2284075,2284076,2284077,2284078,2284079],"delay":1208.4} +{"session_id":"sess-0fc714981807","input_length":2263,"output_length":2177,"hash_ids":[2284080,2284081,2284082,2284083,2284084],"delay":1459.0} +{"session_id":"sess-0fc714981807","input_length":4646,"output_length":1431,"hash_ids":[2284085,2284086,2284087,2284088,2284089,2284090,2284091,2284092,2284093,2284094],"delay":12506.3} +{"session_id":"sess-0fc714981807","input_length":4042,"output_length":359,"hash_ids":[2284095,2284096,2284097,2284098,2284099,2284100,2284101,2284102],"delay":866.3} +{"session_id":"sess-0fc714981807","input_length":5598,"output_length":2001,"hash_ids":[2284103,2284104,2284105,2284106,2284107,2284108,2284109,2284110,2284111,2284112,2284113],"delay":843.2} +{"session_id":"sess-0fc714981807","input_length":4324,"output_length":401,"hash_ids":[2284114,2284115,2284116,2284117,2284118,2284119,2284120,2284121,2284122],"delay":1218.5} +{"session_id":"sess-0fc714981807","input_length":5888,"output_length":275,"hash_ids":[2284123,2284124,2284125,2284126,2284127,2284128,2284129,2284130,2284131,2284132,2284133,2284134],"delay":839.5} +{"session_id":"sess-0fc714981807","input_length":630,"output_length":107,"hash_ids":[2284135,2284136],"delay":5862.3} +{"session_id":"sess-0fc714981807","input_length":1402,"output_length":87,"hash_ids":[2284137,2284138,2284139],"delay":2169.9} +{"session_id":"sess-0fc714981807","input_length":1428,"output_length":341,"hash_ids":[2284140,2284141,2284142],"delay":645.2} +{"session_id":"sess-0fc714981807","input_length":3887,"output_length":1226,"hash_ids":[2284143,2284144,2284145,2284146,2284147,2284148,2284149,2284150],"delay":175.4} +{"session_id":"sess-0fc714981807","input_length":890,"output_length":850,"hash_ids":[2284151,2284152],"delay":1155.4} +{"session_id":"sess-0fc714981807","input_length":3683,"output_length":644,"hash_ids":[2284153,2284154,2284155,2284156,2284157,2284158,2284159,2284160],"delay":679.0} +{"session_id":"sess-0fc714981807","input_length":3416,"output_length":599,"hash_ids":[2284161,2284162,2284163,2284164,2284165,2284166,2284167],"delay":246.2} +{"session_id":"sess-0fc714981807","input_length":879,"output_length":252,"hash_ids":[2284168,2284169],"delay":488.1} +{"session_id":"sess-0fc714981807","input_length":2996,"output_length":297,"hash_ids":[2284170,2284171,2284172,2284173,2284174,2284175],"delay":2088.4} +{"session_id":"sess-0fc714981807","input_length":2743,"output_length":636,"hash_ids":[2284176,2284177,2284178,2284179,2284180,2284181],"delay":210.0} +{"session_id":"sess-0fc714981807","input_length":2405,"output_length":153,"hash_ids":[2284182,2284183,2284184,2284185,2284186],"delay":318.6} +{"session_id":"sess-0fc714981807","input_length":1278,"output_length":337,"hash_ids":[2284187,2284188,2284189],"delay":307.8} +{"session_id":"sess-d35b37b23116","input_length":52371,"output_length":214,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d35b37b23116","input_length":1542,"output_length":125,"hash_ids":[2284190,2284191,2284192,2284193],"delay":695.9} +{"session_id":"sess-d35b37b23116","input_length":3534,"output_length":1215,"hash_ids":[2284194,2284195,2284196,2284197,2284198,2284199,2284200],"delay":10002.5} +{"session_id":"sess-d35b37b23116","input_length":623,"output_length":437,"hash_ids":[2284201,2284202],"delay":1083.5} +{"session_id":"sess-d35b37b23116","input_length":2349,"output_length":199,"hash_ids":[2284203,2284204,2284205,2284206,2284207],"delay":325.4} +{"session_id":"sess-d35b37b23116","input_length":1549,"output_length":670,"hash_ids":[2284208,2284209,2284210,2284211],"delay":1589.1} +{"session_id":"sess-d35b37b23116","input_length":4361,"output_length":50,"hash_ids":[2284212,2284213,2284214,2284215,2284216,2284217,2284218,2284219,2284220],"delay":35826.6} +{"session_id":"sess-d35b37b23116","input_length":74,"output_length":282,"hash_ids":[2284221],"delay":1097.7} +{"session_id":"sess-d35b37b23116","input_length":3396,"output_length":528,"hash_ids":[2284222,2284223,2284224,2284225,2284226,2284227,2284228],"delay":527.1} +{"session_id":"sess-d35b37b23116","input_length":1241,"output_length":396,"hash_ids":[2284229,2284230,2284231],"delay":26965.4} +{"session_id":"sess-d35b37b23116","input_length":983,"output_length":173,"hash_ids":[2284232,2284233],"delay":274.3} +{"session_id":"sess-d35b37b23116","input_length":4591,"output_length":585,"hash_ids":[2284234,2284235,2284236,2284237,2284238,2284239,2284240,2284241,2284242],"delay":734.1} +{"session_id":"sess-d35b37b23116","input_length":2033,"output_length":30,"hash_ids":[2284243,2284244,2284245,2284246],"delay":18935.3} +{"session_id":"sess-d35b37b23116","input_length":3174,"output_length":89,"hash_ids":[2284247,2284248,2284249,2284250,2284251,2284252,2284253],"delay":17265.9} +{"session_id":"sess-d35b37b23116","input_length":1780,"output_length":307,"hash_ids":[2284254,2284255,2284256,2284257],"delay":153.3} +{"session_id":"sess-d35b37b23116","input_length":1746,"output_length":2238,"hash_ids":[2284258,2284259,2284260,2284261],"delay":202.4} +{"session_id":"sess-d35b37b23116","input_length":347,"output_length":982,"hash_ids":[2284262],"delay":3523.0} +{"session_id":"sess-d35b37b23116","input_length":1272,"output_length":152,"hash_ids":[2284263,2284264,2284265],"delay":244.2} +{"session_id":"sess-d35b37b23116","input_length":755,"output_length":30,"hash_ids":[2284266,2284267],"delay":4652.4} +{"session_id":"sess-d35b37b23116","input_length":595,"output_length":320,"hash_ids":[2284268,2284269],"delay":3157.9} +{"session_id":"sess-d35b37b23116","input_length":1544,"output_length":136,"hash_ids":[2284270,2284271,2284272,2284273],"delay":46671.3} +{"session_id":"sess-d35b37b23116","input_length":1977,"output_length":596,"hash_ids":[2284274,2284275,2284276,2284277],"delay":1712.5} +{"session_id":"sess-d35b37b23116","input_length":1451,"output_length":214,"hash_ids":[2284278,2284279,2284280],"delay":671.5} +{"session_id":"sess-d35b37b23116","input_length":415,"output_length":706,"hash_ids":[2284281],"delay":17840.9} +{"session_id":"sess-d35b37b23116","input_length":704,"output_length":236,"hash_ids":[2284282,2284283],"delay":285.2} +{"session_id":"sess-d35b37b23116","input_length":2910,"output_length":151,"hash_ids":[2284284,2284285,2284286,2284287,2284288,2284289],"delay":23179.4} +{"session_id":"sess-d35b37b23116","input_length":1920,"output_length":206,"hash_ids":[2284290,2284291,2284292,2284293],"delay":5153.1} +{"session_id":"sess-d35b37b23116","input_length":2289,"output_length":418,"hash_ids":[2284294,2284295,2284296,2284297,2284298],"delay":2752.2} +{"session_id":"sess-d35b37b23116","input_length":1743,"output_length":30,"hash_ids":[2284299,2284300,2284301,2284302],"delay":9909.1} +{"session_id":"sess-d35b37b23116","input_length":637,"output_length":286,"hash_ids":[2284303,2284304],"delay":1431.2} +{"session_id":"sess-d35b37b23116","input_length":4151,"output_length":549,"hash_ids":[2284305,2284306,2284307,2284308,2284309,2284310,2284311,2284312,2284313],"delay":805.0} +{"session_id":"sess-d35b37b23116","input_length":4589,"output_length":41,"hash_ids":[2284314,2284315,2284316,2284317,2284318,2284319,2284320,2284321,2284322],"delay":2830.3} +{"session_id":"sess-d35b37b23116","input_length":1599,"output_length":82,"hash_ids":[2284323,2284324,2284325,2284326],"delay":521.6} +{"session_id":"sess-d35b37b23116","input_length":276,"output_length":196,"hash_ids":[2284327],"delay":511.1} +{"session_id":"sess-d35b37b23116","input_length":2628,"output_length":63,"hash_ids":[2284328,2284329,2284330,2284331,2284332,2284333],"delay":113.5} +{"session_id":"sess-d35b37b23116","input_length":809,"output_length":30,"hash_ids":[2284334,2284335],"delay":124.4} +{"session_id":"sess-ec6bcabb7920","input_length":59202,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2292063,2292064,2292065,2292066,2292067,2292068,2292069,2292070,2292071,2292072,2292073,2292074,2292075],"timestamp":0.0,"group_id":4} +{"session_id":"sess-ec6bcabb7920","input_length":3872,"output_length":688,"hash_ids":[2292076,2292077,2292078,2292079,2292080,2292081,2292082,2292083],"delay":8368.3} +{"session_id":"sess-ec6bcabb7920","input_length":479,"output_length":174,"hash_ids":[2292084],"delay":786.9} +{"session_id":"sess-ec6bcabb7920","input_length":2024,"output_length":707,"hash_ids":[2292085,2292086,2292087,2292088],"delay":901.4} +{"session_id":"sess-ec6bcabb7920","input_length":801,"output_length":169,"hash_ids":[2292089,2292090],"delay":906.3} +{"session_id":"sess-ec6bcabb7920","input_length":2699,"output_length":1581,"hash_ids":[2292091,2292092,2292093,2292094,2292095,2292096],"delay":1214.7} +{"session_id":"sess-ec6bcabb7920","input_length":198,"output_length":55,"hash_ids":[2292097],"delay":6674.5} +{"session_id":"sess-ec6bcabb7920","input_length":981,"output_length":944,"hash_ids":[2292098,2292099],"delay":18353.9} +{"session_id":"sess-ec6bcabb7920","input_length":1134,"output_length":671,"hash_ids":[2292100,2292101,2292102],"delay":228.7} +{"session_id":"sess-ec6bcabb7920","input_length":3685,"output_length":754,"hash_ids":[2292103,2292104,2292105,2292106,2292107,2292108,2292109,2292110],"delay":2728.4} +{"session_id":"sess-ec6bcabb7920","input_length":1366,"output_length":1174,"hash_ids":[2292111,2292112,2292113],"delay":472.4} +{"session_id":"sess-ec6bcabb7920","input_length":1945,"output_length":573,"hash_ids":[2292114,2292115,2292116,2292117],"delay":8888.9} +{"session_id":"sess-ec6bcabb7920","input_length":1547,"output_length":226,"hash_ids":[2292118,2292119,2292120,2292121],"delay":10522.0} +{"session_id":"sess-ec6bcabb7920","input_length":2994,"output_length":451,"hash_ids":[2292122,2292123,2292124,2292125,2292126,2292127],"delay":5860.1} +{"session_id":"sess-ec6bcabb7920","input_length":1164,"output_length":357,"hash_ids":[2292128,2292129,2292130],"delay":719.3} +{"session_id":"sess-ec6bcabb7920","input_length":639,"output_length":164,"hash_ids":[2292131,2292132],"delay":1459.8} +{"session_id":"sess-ec6bcabb7920","input_length":4012,"output_length":127,"hash_ids":[2292133,2292134,2292135,2292136,2292137,2292138,2292139,2292140],"delay":7616.9} +{"session_id":"sess-ec6bcabb7920","input_length":3167,"output_length":894,"hash_ids":[2292141,2292142,2292143,2292144,2292145,2292146,2292147],"delay":1435.5} +{"session_id":"sess-ec6bcabb7920","input_length":637,"output_length":1021,"hash_ids":[2292148,2292149],"delay":10075.2} +{"session_id":"sess-ec6bcabb7920","input_length":1186,"output_length":392,"hash_ids":[2292150,2292151,2292152],"delay":109.8} +{"session_id":"sess-ec6bcabb7920","input_length":3039,"output_length":364,"hash_ids":[2292153,2292154,2292155,2292156,2292157,2292158],"delay":438.0} +{"session_id":"sess-ec6bcabb7920","input_length":771,"output_length":215,"hash_ids":[2292159,2292160],"delay":1425.2} +{"session_id":"sess-ec6bcabb7920","input_length":7085,"output_length":628,"hash_ids":[2292161,2292162,2292163,2292164,2292165,2292166,2292167,2292168,2292169,2292170,2292171,2292172,2292173,2292174],"delay":350.1} +{"session_id":"sess-ec6bcabb7920","input_length":9292,"output_length":1120,"hash_ids":[2292175,2292176,2292177,2292178,2292179,2292180,2292181,2292182,2292183,2292184,2292185,2292186,2292187,2292188,2292189,2292190,2292191,2292192,2292193],"delay":16637.1} +{"session_id":"sess-ec6bcabb7920","input_length":751,"output_length":868,"hash_ids":[2292194,2292195],"delay":5203.4} +{"session_id":"sess-1e72c11da932","input_length":53338,"output_length":171,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,2296063,2296064],"timestamp":0.0,"group_id":28} +{"session_id":"sess-1e72c11da932","input_length":765,"output_length":278,"hash_ids":[2296065,2296066],"delay":668.3} +{"session_id":"sess-1e72c11da932","input_length":228,"output_length":898,"hash_ids":[2296067],"delay":18676.0} +{"session_id":"sess-1e72c11da932","input_length":1622,"output_length":637,"hash_ids":[2296068,2296069,2296070,2296071],"delay":2232.2} +{"session_id":"sess-1e72c11da932","input_length":479,"output_length":155,"hash_ids":[2296072],"delay":10547.2} +{"session_id":"sess-1e72c11da932","input_length":2535,"output_length":144,"hash_ids":[2296073,2296074,2296075,2296076,2296077],"delay":1215.7} +{"session_id":"sess-1e72c11da932","input_length":2618,"output_length":1027,"hash_ids":[2296078,2296079,2296080,2296081,2296082,2296083],"delay":4140.2} +{"session_id":"sess-1e72c11da932","input_length":1058,"output_length":2620,"hash_ids":[2296084,2296085,2296086],"delay":547.5} +{"session_id":"sess-1e72c11da932","input_length":1227,"output_length":56,"hash_ids":[2296087,2296088,2296089],"delay":727.7} +{"session_id":"sess-1e72c11da932","input_length":4603,"output_length":281,"hash_ids":[2296090,2296091,2296092,2296093,2296094,2296095,2296096,2296097,2296098],"delay":1036.9} +{"session_id":"sess-1e72c11da932","input_length":1515,"output_length":597,"hash_ids":[2296099,2296100,2296101],"delay":7343.5} +{"session_id":"sess-1e72c11da932","input_length":438,"output_length":221,"hash_ids":[2296102],"delay":47351.8} +{"session_id":"sess-1e72c11da932","input_length":930,"output_length":116,"hash_ids":[2296103,2296104],"delay":1283.2} +{"session_id":"sess-1e72c11da932","input_length":1615,"output_length":150,"hash_ids":[2296105,2296106,2296107,2296108],"delay":255.5} +{"session_id":"sess-1e72c11da932","input_length":1399,"output_length":624,"hash_ids":[2296109,2296110,2296111],"delay":3684.1} +{"session_id":"sess-e3c614bc9e0e","input_length":54351,"output_length":306,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2300063,2300064,2300065,2300066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e3c614bc9e0e","input_length":3170,"output_length":383,"hash_ids":[2300067,2300068,2300069,2300070,2300071,2300072,2300073],"delay":2897.6} +{"session_id":"sess-e3c614bc9e0e","input_length":3182,"output_length":237,"hash_ids":[2300074,2300075,2300076,2300077,2300078,2300079,2300080],"delay":1205.8} +{"session_id":"sess-e3c614bc9e0e","input_length":3125,"output_length":79,"hash_ids":[2300081,2300082,2300083,2300084,2300085,2300086,2300087],"delay":70751.3} +{"session_id":"sess-e3c614bc9e0e","input_length":2041,"output_length":421,"hash_ids":[2300088,2300089,2300090,2300091],"delay":165.6} +{"session_id":"sess-e3c614bc9e0e","input_length":1937,"output_length":67,"hash_ids":[2300092,2300093,2300094,2300095],"delay":11389.6} +{"session_id":"sess-e3c614bc9e0e","input_length":5338,"output_length":1969,"hash_ids":[2300096,2300097,2300098,2300099,2300100,2300101,2300102,2300103,2300104,2300105,2300106],"delay":764.1} +{"session_id":"sess-e3c614bc9e0e","input_length":2614,"output_length":741,"hash_ids":[2300107,2300108,2300109,2300110,2300111,2300112],"delay":870.4} +{"session_id":"sess-e3c614bc9e0e","input_length":2817,"output_length":1285,"hash_ids":[2300113,2300114,2300115,2300116,2300117,2300118],"delay":975.9} +{"session_id":"sess-e3c614bc9e0e","input_length":1223,"output_length":1256,"hash_ids":[2300119,2300120,2300121],"delay":1097.4} +{"session_id":"sess-858c72e9e57e","input_length":67823,"output_length":496,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2304063,2304064,2304065,2304066,2304067,2304068,2304069,2304070,2304071,2304072,2304073,2304074,2304075,2304076,2304077,2304078,2304079,2304080,2304081,2304082,2304083,2304084,2304085,2304086,2304087,2304088,2304089,2304090,2304091,2304092],"timestamp":0.0,"group_id":0} +{"session_id":"sess-858c72e9e57e","input_length":1842,"output_length":103,"hash_ids":[2304093,2304094,2304095,2304096],"delay":742.2} +{"session_id":"sess-858c72e9e57e","input_length":801,"output_length":357,"hash_ids":[2304097,2304098],"delay":384.0} +{"session_id":"sess-858c72e9e57e","input_length":2508,"output_length":534,"hash_ids":[2304099,2304100,2304101,2304102,2304103],"delay":14731.8} +{"session_id":"sess-858c72e9e57e","input_length":1658,"output_length":57,"hash_ids":[2304104,2304105,2304106,2304107],"delay":1011.5} +{"session_id":"sess-858c72e9e57e","input_length":1129,"output_length":328,"hash_ids":[2304108,2304109,2304110],"delay":2019.0} +{"session_id":"sess-858c72e9e57e","input_length":5894,"output_length":30,"hash_ids":[2304111,2304112,2304113,2304114,2304115,2304116,2304117,2304118,2304119,2304120,2304121,2304122],"delay":1202.0} +{"session_id":"sess-858c72e9e57e","input_length":4413,"output_length":374,"hash_ids":[2304123,2304124,2304125,2304126,2304127,2304128,2304129,2304130,2304131],"delay":1321.5} +{"session_id":"sess-858c72e9e57e","input_length":4728,"output_length":1643,"hash_ids":[2304132,2304133,2304134,2304135,2304136,2304137,2304138,2304139,2304140,2304141],"delay":3651.0} +{"session_id":"sess-858c72e9e57e","input_length":578,"output_length":217,"hash_ids":[2304142,2304143],"delay":5876.1} +{"session_id":"sess-858c72e9e57e","input_length":416,"output_length":30,"hash_ids":[2304144],"delay":489.7} +{"session_id":"sess-858c72e9e57e","input_length":2338,"output_length":247,"hash_ids":[2304145,2304146,2304147,2304148,2304149],"delay":15417.3} +{"session_id":"sess-858c72e9e57e","input_length":1321,"output_length":271,"hash_ids":[2304150,2304151,2304152],"delay":716.9} +{"session_id":"sess-858c72e9e57e","input_length":2440,"output_length":292,"hash_ids":[2304153,2304154,2304155,2304156,2304157],"delay":749.6} +{"session_id":"sess-858c72e9e57e","input_length":935,"output_length":1021,"hash_ids":[2304158,2304159],"delay":317.8} +{"session_id":"sess-858c72e9e57e","input_length":5593,"output_length":473,"hash_ids":[2304160,2304161,2304162,2304163,2304164,2304165,2304166,2304167,2304168,2304169,2304170],"delay":6835.3} +{"session_id":"sess-858c72e9e57e","input_length":5405,"output_length":30,"hash_ids":[2304171,2304172,2304173,2304174,2304175,2304176,2304177,2304178,2304179,2304180,2304181],"delay":2747.8} +{"session_id":"sess-858c72e9e57e","input_length":745,"output_length":178,"hash_ids":[2304182,2304183],"delay":2202.8} +{"session_id":"sess-858c72e9e57e","input_length":1338,"output_length":1799,"hash_ids":[2304184,2304185,2304186],"delay":433.7} +{"session_id":"sess-858c72e9e57e","input_length":3739,"output_length":532,"hash_ids":[2304187,2304188,2304189,2304190,2304191,2304192,2304193,2304194],"delay":774.9} +{"session_id":"sess-858c72e9e57e","input_length":139,"output_length":134,"hash_ids":[2304195],"delay":1042.7} +{"session_id":"sess-858c72e9e57e","input_length":1300,"output_length":165,"hash_ids":[2304196,2304197,2304198],"delay":110.6} +{"session_id":"sess-858c72e9e57e","input_length":4108,"output_length":138,"hash_ids":[2304199,2304200,2304201,2304202,2304203,2304204,2304205,2304206,2304207],"delay":277.7} +{"session_id":"sess-858c72e9e57e","input_length":218,"output_length":992,"hash_ids":[2304208],"delay":15821.7} +{"session_id":"sess-86ee2945d642","input_length":63433,"output_length":45,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2308063,2308064,2308065,2308066,2308067,2308068,2308069,2308070,2308071,2308072,2308073,2308074,2308075,2308076,2308077,2308078,2308079,2308080,2308081,2308082,2308083],"timestamp":0.0,"group_id":1} +{"session_id":"sess-86ee2945d642","input_length":6873,"output_length":411,"hash_ids":[2308084,2308085,2308086,2308087,2308088,2308089,2308090,2308091,2308092,2308093,2308094,2308095,2308096,2308097],"delay":2708.6} +{"session_id":"sess-86ee2945d642","input_length":4001,"output_length":391,"hash_ids":[2308098,2308099,2308100,2308101,2308102,2308103,2308104,2308105],"delay":1311.1} +{"session_id":"sess-86ee2945d642","input_length":489,"output_length":799,"hash_ids":[2308106],"delay":651.7} +{"session_id":"sess-86ee2945d642","input_length":813,"output_length":76,"hash_ids":[2308107,2308108],"delay":2104.7} +{"session_id":"sess-86ee2945d642","input_length":1848,"output_length":659,"hash_ids":[2308109,2308110,2308111,2308112],"delay":31241.9} +{"session_id":"sess-86ee2945d642","input_length":3225,"output_length":1708,"hash_ids":[2308113,2308114,2308115,2308116,2308117,2308118,2308119],"delay":707.7} +{"session_id":"sess-86ee2945d642","input_length":2228,"output_length":1258,"hash_ids":[2308120,2308121,2308122,2308123,2308124],"delay":1795.1} +{"session_id":"sess-86ee2945d642","input_length":5436,"output_length":53,"hash_ids":[2308125,2308126,2308127,2308128,2308129,2308130,2308131,2308132,2308133,2308134,2308135],"delay":34584.2} +{"session_id":"sess-86ee2945d642","input_length":487,"output_length":78,"hash_ids":[2308136],"delay":2730.6} +{"session_id":"sess-86ee2945d642","input_length":4530,"output_length":209,"hash_ids":[2308137,2308138,2308139,2308140,2308141,2308142,2308143,2308144,2308145],"delay":301.4} +{"session_id":"sess-86ee2945d642","input_length":2861,"output_length":1460,"hash_ids":[2308146,2308147,2308148,2308149,2308150,2308151],"delay":640.2} +{"session_id":"sess-86ee2945d642","input_length":3275,"output_length":166,"hash_ids":[2308152,2308153,2308154,2308155,2308156,2308157,2308158],"delay":35615.3} +{"session_id":"sess-86ee2945d642","input_length":1471,"output_length":116,"hash_ids":[2308159,2308160,2308161],"delay":451.8} +{"session_id":"sess-86ee2945d642","input_length":2826,"output_length":353,"hash_ids":[2308162,2308163,2308164,2308165,2308166,2308167],"delay":206.2} +{"session_id":"sess-86ee2945d642","input_length":7398,"output_length":485,"hash_ids":[2308168,2308169,2308170,2308171,2308172,2308173,2308174,2308175,2308176,2308177,2308178,2308179,2308180,2308181,2308182],"delay":223.5} +{"session_id":"sess-86ee2945d642","input_length":8428,"output_length":76,"hash_ids":[2308183,2308184,2308185,2308186,2308187,2308188,2308189,2308190,2308191,2308192,2308193,2308194,2308195,2308196,2308197,2308198,2308199],"delay":1186.1} +{"session_id":"sess-86ee2945d642","input_length":378,"output_length":52,"hash_ids":[2308200],"delay":823.3} +{"session_id":"sess-86ee2945d642","input_length":1059,"output_length":176,"hash_ids":[2308201,2308202,2308203],"delay":396.5} +{"session_id":"sess-a39e490f930b","input_length":52246,"output_length":243,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a39e490f930b","input_length":2169,"output_length":104,"hash_ids":[2308204,2308205,2308206,2308207,2308208],"delay":634.3} +{"session_id":"sess-a39e490f930b","input_length":3615,"output_length":266,"hash_ids":[2308209,2308210,2308211,2308212,2308213,2308214,2308215,2308216],"delay":1807.0} +{"session_id":"sess-a39e490f930b","input_length":1840,"output_length":146,"hash_ids":[2308217,2308218,2308219,2308220],"delay":1368.5} +{"session_id":"sess-a39e490f930b","input_length":1460,"output_length":250,"hash_ids":[2308221,2308222,2308223],"delay":30755.7} +{"session_id":"sess-a39e490f930b","input_length":2167,"output_length":38,"hash_ids":[2308224,2308225,2308226,2308227,2308228],"delay":42872.1} +{"session_id":"sess-a39e490f930b","input_length":1013,"output_length":441,"hash_ids":[2308229,2308230],"delay":3390.0} +{"session_id":"sess-a39e490f930b","input_length":532,"output_length":1102,"hash_ids":[2308231,2308232],"delay":4179.3} +{"session_id":"sess-a39e490f930b","input_length":519,"output_length":91,"hash_ids":[2308233,2308234],"delay":1565.8} +{"session_id":"sess-a39e490f930b","input_length":2294,"output_length":428,"hash_ids":[2308235,2308236,2308237,2308238,2308239],"delay":1051.9} +{"session_id":"sess-a39e490f930b","input_length":1499,"output_length":580,"hash_ids":[2308240,2308241,2308242],"delay":2717.1} +{"session_id":"sess-a39e490f930b","input_length":1103,"output_length":238,"hash_ids":[2308243,2308244,2308245],"delay":30767.1} +{"session_id":"sess-a39e490f930b","input_length":305,"output_length":116,"hash_ids":[2308246],"delay":585.4} +{"session_id":"sess-a39e490f930b","input_length":1478,"output_length":232,"hash_ids":[2308247,2308248,2308249],"delay":21797.8} +{"session_id":"sess-a39e490f930b","input_length":895,"output_length":268,"hash_ids":[2308250,2308251],"delay":21093.9} +{"session_id":"sess-a39e490f930b","input_length":2358,"output_length":1227,"hash_ids":[2308252,2308253,2308254,2308255,2308256],"delay":1075.8} +{"session_id":"sess-a39e490f930b","input_length":2677,"output_length":113,"hash_ids":[2308257,2308258,2308259,2308260,2308261,2308262],"delay":2990.2} +{"session_id":"sess-a39e490f930b","input_length":734,"output_length":289,"hash_ids":[2308263,2308264],"delay":9519.9} +{"session_id":"sess-a39e490f930b","input_length":1164,"output_length":444,"hash_ids":[2308265,2308266,2308267],"delay":2628.5} +{"session_id":"sess-a39e490f930b","input_length":4086,"output_length":251,"hash_ids":[2308268,2308269,2308270,2308271,2308272,2308273,2308274,2308275],"delay":283.9} +{"session_id":"sess-a39e490f930b","input_length":632,"output_length":611,"hash_ids":[2308276,2308277],"delay":1086.6} +{"session_id":"sess-a39e490f930b","input_length":2317,"output_length":689,"hash_ids":[2308278,2308279,2308280,2308281,2308282],"delay":600.2} +{"session_id":"sess-a39e490f930b","input_length":4431,"output_length":507,"hash_ids":[2308283,2308284,2308285,2308286,2308287,2308288,2308289,2308290,2308291],"delay":6926.9} +{"session_id":"sess-a39e490f930b","input_length":8707,"output_length":856,"hash_ids":[2308292,2308293,2308294,2308295,2308296,2308297,2308298,2308299,2308300,2308301,2308302,2308303,2308304,2308305,2308306,2308307,2308308,2308309],"delay":1387.1} +{"session_id":"sess-a39e490f930b","input_length":2702,"output_length":286,"hash_ids":[2308310,2308311,2308312,2308313,2308314,2308315],"delay":1046.7} +{"session_id":"sess-a39e490f930b","input_length":253,"output_length":351,"hash_ids":[2308316],"delay":579.6} +{"session_id":"sess-a39e490f930b","input_length":2042,"output_length":250,"hash_ids":[2308317,2308318,2308319,2308320],"delay":8101.0} +{"session_id":"sess-e8f28295abec","input_length":64034,"output_length":467,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2316063,2316064,2316065,2316066,2316067,2316068,2316069,2316070,2316071,2316072,2316073,2316074,2316075,2316076,2316077,2316078,2316079,2316080,2316081,2316082,2316083,2316084,2316085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e8f28295abec","input_length":3530,"output_length":186,"hash_ids":[2316086,2316087,2316088,2316089,2316090,2316091,2316092],"delay":775.4} +{"session_id":"sess-e8f28295abec","input_length":143,"output_length":151,"hash_ids":[2316093],"delay":17250.6} +{"session_id":"sess-e8f28295abec","input_length":556,"output_length":205,"hash_ids":[2316094,2316095],"delay":669.6} +{"session_id":"sess-e8f28295abec","input_length":2299,"output_length":85,"hash_ids":[2316096,2316097,2316098,2316099,2316100],"delay":268.2} +{"session_id":"sess-e8f28295abec","input_length":182,"output_length":158,"hash_ids":[2316101],"delay":1284.8} +{"session_id":"sess-e8f28295abec","input_length":8856,"output_length":52,"hash_ids":[2316102,2316103,2316104,2316105,2316106,2316107,2316108,2316109,2316110,2316111,2316112,2316113,2316114,2316115,2316116,2316117,2316118,2316119],"delay":489.9} +{"session_id":"sess-e8f28295abec","input_length":9478,"output_length":42,"hash_ids":[2316120,2316121,2316122,2316123,2316124,2316125,2316126,2316127,2316128,2316129,2316130,2316131,2316132,2316133,2316134,2316135,2316136,2316137,2316138],"delay":4835.1} +{"session_id":"sess-e8f28295abec","input_length":409,"output_length":485,"hash_ids":[2316139],"delay":426.9} +{"session_id":"sess-e8f28295abec","input_length":599,"output_length":236,"hash_ids":[2316140,2316141],"delay":469.7} +{"session_id":"sess-e8f28295abec","input_length":7808,"output_length":1002,"hash_ids":[2316142,2316143,2316144,2316145,2316146,2316147,2316148,2316149,2316150,2316151,2316152,2316153,2316154,2316155,2316156,2316157],"delay":769.5} +{"session_id":"sess-e8f28295abec","input_length":331,"output_length":416,"hash_ids":[2316158],"delay":363.0} +{"session_id":"sess-e8f28295abec","input_length":8691,"output_length":1140,"hash_ids":[2316159,2316160,2316161,2316162,2316163,2316164,2316165,2316166,2316167,2316168,2316169,2316170,2316171,2316172,2316173,2316174,2316175],"delay":549.4} +{"session_id":"sess-e8f28295abec","input_length":2206,"output_length":1059,"hash_ids":[2316176,2316177,2316178,2316179,2316180],"delay":805.5} +{"session_id":"sess-e8f28295abec","input_length":2151,"output_length":357,"hash_ids":[2316181,2316182,2316183,2316184,2316185],"delay":735.4} +{"session_id":"sess-e8f28295abec","input_length":939,"output_length":188,"hash_ids":[2316186,2316187],"delay":3194.3} +{"session_id":"sess-e8f28295abec","input_length":147,"output_length":155,"hash_ids":[2316188],"delay":2237.1} +{"session_id":"sess-e8f28295abec","input_length":2880,"output_length":146,"hash_ids":[2316189,2316190,2316191,2316192,2316193,2316194],"delay":493.1} +{"session_id":"sess-e8f28295abec","input_length":7020,"output_length":1311,"hash_ids":[2316195,2316196,2316197,2316198,2316199,2316200,2316201,2316202,2316203,2316204,2316205,2316206,2316207,2316208],"delay":1436.3} +{"session_id":"sess-9eb1bc4a9041","input_length":65994,"output_length":44,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2320063,2320064,2320065,2320066,2320067,2320068,2320069,2320070,2320071,2320072,2320073,2320074,2320075,2320076,2320077,2320078,2320079,2320080,2320081,2320082,2320083,2320084,2320085,2320086,2320087,2320088],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9eb1bc4a9041","input_length":3303,"output_length":340,"hash_ids":[2320089,2320090,2320091,2320092,2320093,2320094,2320095],"delay":1565.0} +{"session_id":"sess-9eb1bc4a9041","input_length":4941,"output_length":1059,"hash_ids":[2320096,2320097,2320098,2320099,2320100,2320101,2320102,2320103,2320104,2320105],"delay":817.7} +{"session_id":"sess-9eb1bc4a9041","input_length":3163,"output_length":268,"hash_ids":[2320106,2320107,2320108,2320109,2320110,2320111,2320112],"delay":4596.7} +{"session_id":"sess-c76edf698dd2","input_length":53972,"output_length":743,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2324063,2324064,2324065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c76edf698dd2","input_length":2806,"output_length":1744,"hash_ids":[2324066,2324067,2324068,2324069,2324070,2324071],"delay":2665.7} +{"session_id":"sess-c76edf698dd2","input_length":8223,"output_length":132,"hash_ids":[2324072,2324073,2324074,2324075,2324076,2324077,2324078,2324079,2324080,2324081,2324082,2324083,2324084,2324085,2324086,2324087,2324088],"delay":521.1} +{"session_id":"sess-c76edf698dd2","input_length":1872,"output_length":1852,"hash_ids":[2324089,2324090,2324091,2324092],"delay":2583.5} +{"session_id":"sess-c76edf698dd2","input_length":1700,"output_length":55,"hash_ids":[2324093,2324094,2324095,2324096],"delay":39756.1} +{"session_id":"sess-c76edf698dd2","input_length":6361,"output_length":77,"hash_ids":[2324097,2324098,2324099,2324100,2324101,2324102,2324103,2324104,2324105,2324106,2324107,2324108,2324109],"delay":4712.0} +{"session_id":"sess-c76edf698dd2","input_length":532,"output_length":104,"hash_ids":[2324110,2324111],"delay":10149.6} +{"session_id":"sess-c76edf698dd2","input_length":1036,"output_length":892,"hash_ids":[2324112,2324113,2324114],"delay":636.5} +{"session_id":"sess-c76edf698dd2","input_length":4056,"output_length":397,"hash_ids":[2324115,2324116,2324117,2324118,2324119,2324120,2324121,2324122],"delay":1950.4} +{"session_id":"sess-c76edf698dd2","input_length":1519,"output_length":974,"hash_ids":[2324123,2324124,2324125],"delay":14294.2} +{"session_id":"sess-c76edf698dd2","input_length":758,"output_length":194,"hash_ids":[2324126,2324127],"delay":1740.8} +{"session_id":"sess-c76edf698dd2","input_length":2164,"output_length":441,"hash_ids":[2324128,2324129,2324130,2324131,2324132],"delay":10104.0} +{"session_id":"sess-c76edf698dd2","input_length":1230,"output_length":128,"hash_ids":[2324133,2324134,2324135],"delay":21851.1} +{"session_id":"sess-c76edf698dd2","input_length":1179,"output_length":244,"hash_ids":[2324136,2324137,2324138],"delay":21664.0} +{"session_id":"sess-c76edf698dd2","input_length":564,"output_length":2790,"hash_ids":[2324139,2324140],"delay":377.2} +{"session_id":"sess-c76edf698dd2","input_length":2400,"output_length":527,"hash_ids":[2324141,2324142,2324143,2324144,2324145],"delay":1508.0} +{"session_id":"sess-c76edf698dd2","input_length":4294,"output_length":328,"hash_ids":[2324146,2324147,2324148,2324149,2324150,2324151,2324152,2324153,2324154],"delay":862.4} +{"session_id":"sess-c76edf698dd2","input_length":3849,"output_length":314,"hash_ids":[2324155,2324156,2324157,2324158,2324159,2324160,2324161,2324162],"delay":185.5} +{"session_id":"sess-c76edf698dd2","input_length":2895,"output_length":147,"hash_ids":[2324163,2324164,2324165,2324166,2324167,2324168],"delay":2067.5} +{"session_id":"sess-8cc9dc4589ef","input_length":56822,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2328063,2328064,2328065,2328066,2328067,2328068,2328069,2328070],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8cc9dc4589ef","input_length":8574,"output_length":62,"hash_ids":[2328071,2328072,2328073,2328074,2328075,2328076,2328077,2328078,2328079,2328080,2328081,2328082,2328083,2328084,2328085,2328086,2328087],"delay":787.9} +{"session_id":"sess-8cc9dc4589ef","input_length":7491,"output_length":1653,"hash_ids":[2328088,2328089,2328090,2328091,2328092,2328093,2328094,2328095,2328096,2328097,2328098,2328099,2328100,2328101,2328102],"delay":1184.9} +{"session_id":"sess-8cc9dc4589ef","input_length":162,"output_length":817,"hash_ids":[2328103],"delay":796.3} +{"session_id":"sess-8cc9dc4589ef","input_length":3371,"output_length":493,"hash_ids":[2328104,2328105,2328106,2328107,2328108,2328109,2328110],"delay":651.9} +{"session_id":"sess-8cc9dc4589ef","input_length":122,"output_length":326,"hash_ids":[2328111],"delay":433.2} +{"session_id":"sess-8cc9dc4589ef","input_length":6752,"output_length":419,"hash_ids":[2328112,2328113,2328114,2328115,2328116,2328117,2328118,2328119,2328120,2328121,2328122,2328123,2328124,2328125],"delay":1764.7} +{"session_id":"sess-8cc9dc4589ef","input_length":822,"output_length":967,"hash_ids":[2328126,2328127],"delay":1525.2} +{"session_id":"sess-8cc9dc4589ef","input_length":3818,"output_length":149,"hash_ids":[2328128,2328129,2328130,2328131,2328132,2328133,2328134,2328135],"delay":13046.9} +{"session_id":"sess-8cc9dc4589ef","input_length":1311,"output_length":225,"hash_ids":[2328136,2328137,2328138],"delay":778.8} +{"session_id":"sess-d8f0768d9d19","input_length":54172,"output_length":151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2332063,2332064,2332065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d8f0768d9d19","input_length":1160,"output_length":315,"hash_ids":[2332066,2332067,2332068],"delay":23996.4} +{"session_id":"sess-d8f0768d9d19","input_length":1816,"output_length":329,"hash_ids":[2332069,2332070,2332071,2332072],"delay":1077.1} +{"session_id":"sess-d8f0768d9d19","input_length":6860,"output_length":703,"hash_ids":[2332073,2332074,2332075,2332076,2332077,2332078,2332079,2332080,2332081,2332082,2332083,2332084,2332085,2332086],"delay":764.7} +{"session_id":"sess-d8f0768d9d19","input_length":1085,"output_length":112,"hash_ids":[2332087,2332088,2332089],"delay":30866.7} +{"session_id":"sess-d8f0768d9d19","input_length":3731,"output_length":312,"hash_ids":[2332090,2332091,2332092,2332093,2332094,2332095,2332096,2332097],"delay":733.4} +{"session_id":"sess-d8f0768d9d19","input_length":3017,"output_length":117,"hash_ids":[2332098,2332099,2332100,2332101,2332102,2332103],"delay":5893.7} +{"session_id":"sess-d8f0768d9d19","input_length":3229,"output_length":351,"hash_ids":[2332104,2332105,2332106,2332107,2332108,2332109,2332110],"delay":648.6} +{"session_id":"sess-d8f0768d9d19","input_length":443,"output_length":222,"hash_ids":[2332111],"delay":31328.5} +{"session_id":"sess-d8f0768d9d19","input_length":799,"output_length":420,"hash_ids":[2332112,2332113],"delay":129.1} +{"session_id":"sess-d8f0768d9d19","input_length":1028,"output_length":107,"hash_ids":[2332114,2332115,2332116],"delay":14166.5} +{"session_id":"sess-d8f0768d9d19","input_length":898,"output_length":157,"hash_ids":[2332117,2332118],"delay":926.9} +{"session_id":"sess-d8f0768d9d19","input_length":2265,"output_length":293,"hash_ids":[2332119,2332120,2332121,2332122,2332123],"delay":1111.1} +{"session_id":"sess-d8f0768d9d19","input_length":7747,"output_length":378,"hash_ids":[2332124,2332125,2332126,2332127,2332128,2332129,2332130,2332131,2332132,2332133,2332134,2332135,2332136,2332137,2332138,2332139],"delay":1002.0} +{"session_id":"sess-d8f0768d9d19","input_length":1009,"output_length":429,"hash_ids":[2332140,2332141],"delay":11967.4} +{"session_id":"sess-d8f0768d9d19","input_length":709,"output_length":75,"hash_ids":[2332142,2332143],"delay":5364.8} +{"session_id":"sess-d8f0768d9d19","input_length":2015,"output_length":351,"hash_ids":[2332144,2332145,2332146,2332147],"delay":4998.8} +{"session_id":"sess-d8f0768d9d19","input_length":9738,"output_length":909,"hash_ids":[2332148,2332149,2332150,2332151,2332152,2332153,2332154,2332155,2332156,2332157,2332158,2332159,2332160,2332161,2332162,2332163,2332164,2332165,2332166,2332167],"delay":215.4} +{"session_id":"sess-d8f0768d9d19","input_length":2518,"output_length":199,"hash_ids":[2332168,2332169,2332170,2332171,2332172],"delay":455.3} +{"session_id":"sess-d8f0768d9d19","input_length":1552,"output_length":281,"hash_ids":[2332173,2332174,2332175,2332176],"delay":1909.3} +{"session_id":"sess-d8f0768d9d19","input_length":501,"output_length":80,"hash_ids":[2332177],"delay":1380.9} +{"session_id":"sess-d8f0768d9d19","input_length":6781,"output_length":91,"hash_ids":[2332178,2332179,2332180,2332181,2332182,2332183,2332184,2332185,2332186,2332187,2332188,2332189,2332190,2332191],"delay":168.9} +{"session_id":"sess-d8f0768d9d19","input_length":7636,"output_length":909,"hash_ids":[2332192,2332193,2332194,2332195,2332196,2332197,2332198,2332199,2332200,2332201,2332202,2332203,2332204,2332205,2332206],"delay":467.2} +{"session_id":"sess-46300ee19311","input_length":55102,"output_length":2192,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2336063,2336064,2336065,2336066,2336067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-46300ee19311","input_length":1600,"output_length":84,"hash_ids":[2336068,2336069,2336070,2336071],"delay":2668.5} +{"session_id":"sess-46300ee19311","input_length":2824,"output_length":268,"hash_ids":[2336072,2336073,2336074,2336075,2336076,2336077],"delay":439.6} +{"session_id":"sess-46300ee19311","input_length":2708,"output_length":300,"hash_ids":[2336078,2336079,2336080,2336081,2336082,2336083],"delay":699.8} +{"session_id":"sess-46300ee19311","input_length":537,"output_length":299,"hash_ids":[2336084,2336085],"delay":37022.9} +{"session_id":"sess-46300ee19311","input_length":481,"output_length":1127,"hash_ids":[2336086],"delay":3345.2} +{"session_id":"sess-46300ee19311","input_length":2498,"output_length":368,"hash_ids":[2336087,2336088,2336089,2336090,2336091],"delay":19074.4} +{"session_id":"sess-46300ee19311","input_length":3182,"output_length":204,"hash_ids":[2336092,2336093,2336094,2336095,2336096,2336097,2336098],"delay":2614.3} +{"session_id":"sess-46300ee19311","input_length":539,"output_length":41,"hash_ids":[2336099,2336100],"delay":5981.3} +{"session_id":"sess-46300ee19311","input_length":1777,"output_length":280,"hash_ids":[2336101,2336102,2336103,2336104],"delay":30281.2} +{"session_id":"sess-46300ee19311","input_length":491,"output_length":944,"hash_ids":[2336105],"delay":492.8} +{"session_id":"sess-46300ee19311","input_length":1305,"output_length":62,"hash_ids":[2336106,2336107,2336108],"delay":1244.4} +{"session_id":"sess-46300ee19311","input_length":2018,"output_length":35,"hash_ids":[2336109,2336110,2336111,2336112],"delay":2812.7} +{"session_id":"sess-46300ee19311","input_length":2382,"output_length":603,"hash_ids":[2336113,2336114,2336115,2336116,2336117],"delay":854.8} +{"session_id":"sess-46300ee19311","input_length":2345,"output_length":399,"hash_ids":[2336118,2336119,2336120,2336121,2336122],"delay":25601.5} +{"session_id":"sess-46300ee19311","input_length":3246,"output_length":640,"hash_ids":[2336123,2336124,2336125,2336126,2336127,2336128,2336129],"delay":3025.4} +{"session_id":"sess-46300ee19311","input_length":6613,"output_length":58,"hash_ids":[2336130,2336131,2336132,2336133,2336134,2336135,2336136,2336137,2336138,2336139,2336140,2336141,2336142],"delay":3784.4} +{"session_id":"sess-46300ee19311","input_length":1629,"output_length":607,"hash_ids":[2336143,2336144,2336145,2336146],"delay":26004.2} +{"session_id":"sess-46300ee19311","input_length":1015,"output_length":180,"hash_ids":[2336147,2336148],"delay":1925.3} +{"session_id":"sess-46300ee19311","input_length":1095,"output_length":74,"hash_ids":[2336149,2336150,2336151],"delay":152.3} +{"session_id":"sess-46300ee19311","input_length":1240,"output_length":2604,"hash_ids":[2336152,2336153,2336154],"delay":777.9} +{"session_id":"sess-46300ee19311","input_length":3626,"output_length":1327,"hash_ids":[2336155,2336156,2336157,2336158,2336159,2336160,2336161,2336162],"delay":710.0} +{"session_id":"sess-46300ee19311","input_length":1768,"output_length":339,"hash_ids":[2336163,2336164,2336165,2336166],"delay":659.2} +{"session_id":"sess-46300ee19311","input_length":3525,"output_length":1212,"hash_ids":[2336167,2336168,2336169,2336170,2336171,2336172,2336173],"delay":268.7} +{"session_id":"sess-0b444d9a4c6c","input_length":59615,"output_length":697,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2340063,2340064,2340065,2340066,2340067,2340068,2340069,2340070,2340071,2340072,2340073,2340074,2340075,2340076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0b444d9a4c6c","input_length":924,"output_length":219,"hash_ids":[2340077,2340078],"delay":790.5} +{"session_id":"sess-e703c0106167","input_length":64555,"output_length":854,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2344063,2344064,2344065,2344066,2344067,2344068,2344069,2344070,2344071,2344072,2344073,2344074,2344075,2344076,2344077,2344078,2344079,2344080,2344081,2344082,2344083,2344084,2344085,2344086],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e703c0106167","input_length":2568,"output_length":80,"hash_ids":[2344087,2344088,2344089,2344090,2344091,2344092],"delay":430.5} +{"session_id":"sess-e703c0106167","input_length":404,"output_length":992,"hash_ids":[2344093],"delay":452.2} +{"session_id":"sess-e703c0106167","input_length":1222,"output_length":268,"hash_ids":[2344094,2344095,2344096],"delay":17535.3} +{"session_id":"sess-e703c0106167","input_length":540,"output_length":245,"hash_ids":[2344097,2344098],"delay":620.9} +{"session_id":"sess-e703c0106167","input_length":5902,"output_length":126,"hash_ids":[2344099,2344100,2344101,2344102,2344103,2344104,2344105,2344106,2344107,2344108,2344109,2344110],"delay":1833.0} +{"session_id":"sess-e703c0106167","input_length":546,"output_length":294,"hash_ids":[2344111,2344112],"delay":1480.3} +{"session_id":"sess-e703c0106167","input_length":1805,"output_length":210,"hash_ids":[2344113,2344114,2344115,2344116],"delay":24807.7} +{"session_id":"sess-e703c0106167","input_length":6156,"output_length":322,"hash_ids":[2344117,2344118,2344119,2344120,2344121,2344122,2344123,2344124,2344125,2344126,2344127,2344128,2344129],"delay":32217.0} +{"session_id":"sess-e703c0106167","input_length":198,"output_length":126,"hash_ids":[2344130],"delay":1756.1} +{"session_id":"sess-e703c0106167","input_length":3190,"output_length":1267,"hash_ids":[2344131,2344132,2344133,2344134,2344135,2344136,2344137],"delay":528.4} +{"session_id":"sess-e703c0106167","input_length":2988,"output_length":251,"hash_ids":[2344138,2344139,2344140,2344141,2344142,2344143],"delay":18040.1} +{"session_id":"sess-e703c0106167","input_length":912,"output_length":119,"hash_ids":[2344144,2344145],"delay":946.9} +{"session_id":"sess-26b9ac7646a1","input_length":69609,"output_length":497,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2348063,2348064,2348065,2348066,2348067,2348068,2348069,2348070,2348071,2348072,2348073,2348074,2348075,2348076,2348077,2348078,2348079,2348080,2348081,2348082,2348083,2348084,2348085,2348086,2348087,2348088,2348089,2348090,2348091,2348092,2348093,2348094,2348095],"timestamp":0.0,"group_id":5} +{"session_id":"sess-26b9ac7646a1","input_length":2738,"output_length":71,"hash_ids":[2348096,2348097,2348098,2348099,2348100,2348101],"delay":472.1} +{"session_id":"sess-26b9ac7646a1","input_length":4955,"output_length":71,"hash_ids":[2348102,2348103,2348104,2348105,2348106,2348107,2348108,2348109,2348110,2348111],"delay":2547.5} +{"session_id":"sess-26b9ac7646a1","input_length":3404,"output_length":246,"hash_ids":[2348112,2348113,2348114,2348115,2348116,2348117,2348118],"delay":11586.0} +{"session_id":"sess-26b9ac7646a1","input_length":925,"output_length":233,"hash_ids":[2348119,2348120],"delay":6099.4} +{"session_id":"sess-26b9ac7646a1","input_length":950,"output_length":889,"hash_ids":[2348121,2348122],"delay":18922.6} +{"session_id":"sess-26b9ac7646a1","input_length":7833,"output_length":86,"hash_ids":[2348123,2348124,2348125,2348126,2348127,2348128,2348129,2348130,2348131,2348132,2348133,2348134,2348135,2348136,2348137,2348138],"delay":312.7} +{"session_id":"sess-26b9ac7646a1","input_length":1356,"output_length":1659,"hash_ids":[2348139,2348140,2348141],"delay":9731.3} +{"session_id":"sess-26b9ac7646a1","input_length":1911,"output_length":366,"hash_ids":[2348142,2348143,2348144,2348145],"delay":10791.8} +{"session_id":"sess-26b9ac7646a1","input_length":493,"output_length":857,"hash_ids":[2348146],"delay":1577.9} +{"session_id":"sess-26b9ac7646a1","input_length":1776,"output_length":290,"hash_ids":[2348147,2348148,2348149,2348150],"delay":313.8} +{"session_id":"sess-26b9ac7646a1","input_length":5386,"output_length":971,"hash_ids":[2348151,2348152,2348153,2348154,2348155,2348156,2348157,2348158,2348159,2348160,2348161],"delay":1729.9} +{"session_id":"sess-26b9ac7646a1","input_length":7887,"output_length":115,"hash_ids":[2348162,2348163,2348164,2348165,2348166,2348167,2348168,2348169,2348170,2348171,2348172,2348173,2348174,2348175,2348176,2348177],"delay":1141.9} +{"session_id":"sess-26b9ac7646a1","input_length":1704,"output_length":157,"hash_ids":[2348178,2348179,2348180,2348181],"delay":454.7} +{"session_id":"sess-26b9ac7646a1","input_length":488,"output_length":367,"hash_ids":[2348182],"delay":278.1} +{"session_id":"sess-26b9ac7646a1","input_length":1163,"output_length":471,"hash_ids":[2348183,2348184,2348185],"delay":6372.4} +{"session_id":"sess-26b9ac7646a1","input_length":1594,"output_length":318,"hash_ids":[2348186,2348187,2348188,2348189],"delay":1059.8} +{"session_id":"sess-26b9ac7646a1","input_length":2410,"output_length":223,"hash_ids":[2348190,2348191,2348192,2348193,2348194],"delay":178.4} +{"session_id":"sess-26b9ac7646a1","input_length":241,"output_length":1105,"hash_ids":[2348195],"delay":253.3} +{"session_id":"sess-26b9ac7646a1","input_length":3021,"output_length":895,"hash_ids":[2348196,2348197,2348198,2348199,2348200,2348201],"delay":986.3} +{"session_id":"sess-0a60c6e5549c","input_length":54562,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,2352063,2352064,2352065,2352066],"timestamp":0.0,"group_id":27} +{"session_id":"sess-0a60c6e5549c","input_length":1082,"output_length":633,"hash_ids":[2352067,2352068,2352069],"delay":822.7} +{"session_id":"sess-0a60c6e5549c","input_length":3432,"output_length":412,"hash_ids":[2352070,2352071,2352072,2352073,2352074,2352075,2352076],"delay":14923.7} +{"session_id":"sess-0a60c6e5549c","input_length":977,"output_length":400,"hash_ids":[2352077,2352078],"delay":70475.4} +{"session_id":"sess-0a60c6e5549c","input_length":8137,"output_length":833,"hash_ids":[2352079,2352080,2352081,2352082,2352083,2352084,2352085,2352086,2352087,2352088,2352089,2352090,2352091,2352092,2352093,2352094],"delay":2177.9} +{"session_id":"sess-d34e3858f21e","input_length":81567,"output_length":180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2356063,2356064,2356065,2356066,2356067,2356068,2356069,2356070,2356071,2356072,2356073,2356074,2356075,2356076,2356077,2356078,2356079,2356080,2356081,2356082,2356083,2356084,2356085,2356086,2356087,2356088,2356089,2356090,2356091,2356092,2356093,2356094,2356095,2356096,2356097,2356098,2356099,2356100,2356101,2356102,2356103,2356104,2356105,2356106,2356107,2356108,2356109,2356110,2356111,2356112,2356113,2356114,2356115,2356116,2356117,2356118,2356119],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d34e3858f21e","input_length":3092,"output_length":1096,"hash_ids":[2356120,2356121,2356122,2356123,2356124,2356125,2356126],"delay":13107.8} +{"session_id":"sess-d34e3858f21e","input_length":936,"output_length":86,"hash_ids":[2356127,2356128],"delay":14470.5} +{"session_id":"sess-d34e3858f21e","input_length":3076,"output_length":671,"hash_ids":[2356129,2356130,2356131,2356132,2356133,2356134,2356135],"delay":2843.8} +{"session_id":"sess-d34e3858f21e","input_length":2503,"output_length":75,"hash_ids":[2356136,2356137,2356138,2356139,2356140],"delay":13042.9} +{"session_id":"sess-d34e3858f21e","input_length":5701,"output_length":41,"hash_ids":[2356141,2356142,2356143,2356144,2356145,2356146,2356147,2356148,2356149,2356150,2356151,2356152],"delay":1719.2} +{"session_id":"sess-d34e3858f21e","input_length":832,"output_length":555,"hash_ids":[2356153,2356154],"delay":523.6} +{"session_id":"sess-d34e3858f21e","input_length":4930,"output_length":30,"hash_ids":[2356155,2356156,2356157,2356158,2356159,2356160,2356161,2356162,2356163,2356164],"delay":1099.5} +{"session_id":"sess-d34e3858f21e","input_length":265,"output_length":421,"hash_ids":[2356165],"delay":716.2} +{"session_id":"sess-d34e3858f21e","input_length":3655,"output_length":81,"hash_ids":[2356166,2356167,2356168,2356169,2356170,2356171,2356172,2356173],"delay":218.7} +{"session_id":"sess-d34e3858f21e","input_length":7545,"output_length":276,"hash_ids":[2356174,2356175,2356176,2356177,2356178,2356179,2356180,2356181,2356182,2356183,2356184,2356185,2356186,2356187,2356188],"delay":274.2} +{"session_id":"sess-d34e3858f21e","input_length":638,"output_length":855,"hash_ids":[2356189,2356190],"delay":6134.2} +{"session_id":"sess-d34e3858f21e","input_length":2857,"output_length":96,"hash_ids":[2356191,2356192,2356193,2356194,2356195,2356196],"delay":690.3} +{"session_id":"sess-d34e3858f21e","input_length":920,"output_length":936,"hash_ids":[2356197,2356198],"delay":510.2} +{"session_id":"sess-d34e3858f21e","input_length":4769,"output_length":469,"hash_ids":[2356199,2356200,2356201,2356202,2356203,2356204,2356205,2356206,2356207,2356208],"delay":82.4} +{"session_id":"sess-1986a6c34875","input_length":78702,"output_length":208,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2360063,2360064,2360065,2360066,2360067,2360068,2360069,2360070,2360071,2360072,2360073,2360074,2360075,2360076,2360077,2360078,2360079,2360080,2360081,2360082,2360083,2360084,2360085,2360086,2360087,2360088,2360089,2360090,2360091,2360092,2360093,2360094,2360095,2360096,2360097,2360098,2360099,2360100,2360101,2360102,2360103,2360104,2360105,2360106,2360107,2360108,2360109,2360110,2360111,2360112,2360113],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1986a6c34875","input_length":806,"output_length":67,"hash_ids":[2360114,2360115],"delay":636.9} +{"session_id":"sess-1986a6c34875","input_length":1313,"output_length":151,"hash_ids":[2360116,2360117,2360118],"delay":881.6} +{"session_id":"sess-1986a6c34875","input_length":2220,"output_length":331,"hash_ids":[2360119,2360120,2360121,2360122,2360123],"delay":3367.9} +{"session_id":"sess-1986a6c34875","input_length":1893,"output_length":243,"hash_ids":[2360124,2360125,2360126,2360127],"delay":441.8} +{"session_id":"sess-1986a6c34875","input_length":9881,"output_length":172,"hash_ids":[2360128,2360129,2360130,2360131,2360132,2360133,2360134,2360135,2360136,2360137,2360138,2360139,2360140,2360141,2360142,2360143,2360144,2360145,2360146,2360147],"delay":3127.0} +{"session_id":"sess-1986a6c34875","input_length":2183,"output_length":397,"hash_ids":[2360148,2360149,2360150,2360151,2360152],"delay":11204.3} +{"session_id":"sess-1986a6c34875","input_length":308,"output_length":2287,"hash_ids":[2360153],"delay":1155.6} +{"session_id":"sess-1986a6c34875","input_length":945,"output_length":96,"hash_ids":[2360154,2360155],"delay":556.0} +{"session_id":"sess-1986a6c34875","input_length":354,"output_length":926,"hash_ids":[2360156],"delay":451.1} +{"session_id":"sess-1986a6c34875","input_length":896,"output_length":739,"hash_ids":[2360157,2360158],"delay":580.8} +{"session_id":"sess-1986a6c34875","input_length":890,"output_length":1522,"hash_ids":[2360159,2360160],"delay":534.3} +{"session_id":"sess-1986a6c34875","input_length":213,"output_length":287,"hash_ids":[2360161],"delay":435.2} +{"session_id":"sess-1986a6c34875","input_length":921,"output_length":133,"hash_ids":[2360162,2360163],"delay":537.5} +{"session_id":"sess-1986a6c34875","input_length":1180,"output_length":219,"hash_ids":[2360164,2360165,2360166],"delay":622.0} +{"session_id":"sess-1986a6c34875","input_length":1302,"output_length":162,"hash_ids":[2360167,2360168,2360169],"delay":712.1} +{"session_id":"sess-1986a6c34875","input_length":1177,"output_length":153,"hash_ids":[2360170,2360171,2360172],"delay":929.1} +{"session_id":"sess-1986a6c34875","input_length":710,"output_length":91,"hash_ids":[2360173,2360174],"delay":192.9} +{"session_id":"sess-1986a6c34875","input_length":793,"output_length":391,"hash_ids":[2360175,2360176],"delay":180.4} +{"session_id":"sess-4a87d018272b","input_length":53671,"output_length":527,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2364063,2364064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4a87d018272b","input_length":1782,"output_length":417,"hash_ids":[2364065,2364066,2364067,2364068],"delay":256.7} +{"session_id":"sess-4a87d018272b","input_length":1892,"output_length":173,"hash_ids":[2364069,2364070,2364071,2364072],"delay":1459.6} +{"session_id":"sess-4a87d018272b","input_length":293,"output_length":996,"hash_ids":[2364073],"delay":930.2} +{"session_id":"sess-4a87d018272b","input_length":835,"output_length":275,"hash_ids":[2364074,2364075],"delay":283.7} +{"session_id":"sess-4a87d018272b","input_length":1347,"output_length":557,"hash_ids":[2364076,2364077,2364078],"delay":379.4} +{"session_id":"sess-4a87d018272b","input_length":1762,"output_length":322,"hash_ids":[2364079,2364080,2364081,2364082],"delay":1597.3} +{"session_id":"sess-4a87d018272b","input_length":549,"output_length":154,"hash_ids":[2364083,2364084],"delay":165.1} +{"session_id":"sess-4a87d018272b","input_length":4237,"output_length":1625,"hash_ids":[2364085,2364086,2364087,2364088,2364089,2364090,2364091,2364092,2364093],"delay":777.8} +{"session_id":"sess-4a87d018272b","input_length":3227,"output_length":299,"hash_ids":[2364094,2364095,2364096,2364097,2364098,2364099,2364100],"delay":10476.1} +{"session_id":"sess-4a87d018272b","input_length":210,"output_length":171,"hash_ids":[2364101],"delay":49291.8} +{"session_id":"sess-4a87d018272b","input_length":2173,"output_length":48,"hash_ids":[2364102,2364103,2364104,2364105,2364106],"delay":1640.5} +{"session_id":"sess-4a87d018272b","input_length":697,"output_length":297,"hash_ids":[2364107,2364108],"delay":11730.8} +{"session_id":"sess-4a87d018272b","input_length":395,"output_length":346,"hash_ids":[2364109],"delay":1654.7} +{"session_id":"sess-4a87d018272b","input_length":8638,"output_length":426,"hash_ids":[2364110,2364111,2364112,2364113,2364114,2364115,2364116,2364117,2364118,2364119,2364120,2364121,2364122,2364123,2364124,2364125,2364126],"delay":3809.4} +{"session_id":"sess-4a87d018272b","input_length":406,"output_length":764,"hash_ids":[2364127],"delay":661.0} +{"session_id":"sess-4a87d018272b","input_length":2812,"output_length":1151,"hash_ids":[2364128,2364129,2364130,2364131,2364132,2364133],"delay":1351.6} +{"session_id":"sess-4a87d018272b","input_length":9112,"output_length":47,"hash_ids":[2364134,2364135,2364136,2364137,2364138,2364139,2364140,2364141,2364142,2364143,2364144,2364145,2364146,2364147,2364148,2364149,2364150,2364151],"delay":8705.2} +{"session_id":"sess-4a87d018272b","input_length":5419,"output_length":279,"hash_ids":[2364152,2364153,2364154,2364155,2364156,2364157,2364158,2364159,2364160,2364161,2364162],"delay":7343.0} +{"session_id":"sess-4a87d018272b","input_length":1317,"output_length":1464,"hash_ids":[2364163,2364164,2364165],"delay":314.7} +{"session_id":"sess-4a87d018272b","input_length":2052,"output_length":440,"hash_ids":[2364166,2364167,2364168,2364169,2364170],"delay":634.1} +{"session_id":"sess-4a87d018272b","input_length":1165,"output_length":407,"hash_ids":[2364171,2364172,2364173],"delay":20370.7} +{"session_id":"sess-4a87d018272b","input_length":9596,"output_length":813,"hash_ids":[2364174,2364175,2364176,2364177,2364178,2364179,2364180,2364181,2364182,2364183,2364184,2364185,2364186,2364187,2364188,2364189,2364190,2364191,2364192],"delay":399.9} +{"session_id":"sess-4a87d018272b","input_length":341,"output_length":151,"hash_ids":[2364193],"delay":219.1} +{"session_id":"sess-4a87d018272b","input_length":1008,"output_length":69,"hash_ids":[2364194,2364195],"delay":433.4} +{"session_id":"sess-e392f962bd54","input_length":58122,"output_length":591,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2368063,2368064,2368065,2368066,2368067,2368068,2368069,2368070,2368071,2368072,2368073],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e392f962bd54","input_length":1064,"output_length":591,"hash_ids":[2368074,2368075,2368076],"delay":1480.2} +{"session_id":"sess-e392f962bd54","input_length":273,"output_length":69,"hash_ids":[2368077],"delay":594.1} +{"session_id":"sess-e392f962bd54","input_length":175,"output_length":159,"hash_ids":[2368078],"delay":5007.0} +{"session_id":"sess-e392f962bd54","input_length":3832,"output_length":466,"hash_ids":[2368079,2368080,2368081,2368082,2368083,2368084,2368085,2368086],"delay":27114.5} +{"session_id":"sess-e392f962bd54","input_length":3852,"output_length":372,"hash_ids":[2368087,2368088,2368089,2368090,2368091,2368092,2368093,2368094],"delay":14864.2} +{"session_id":"sess-e392f962bd54","input_length":3037,"output_length":115,"hash_ids":[2368095,2368096,2368097,2368098,2368099,2368100],"delay":40025.5} +{"session_id":"sess-e392f962bd54","input_length":2551,"output_length":193,"hash_ids":[2368101,2368102,2368103,2368104,2368105],"delay":1631.2} +{"session_id":"sess-e392f962bd54","input_length":1159,"output_length":730,"hash_ids":[2368106,2368107,2368108],"delay":576.2} +{"session_id":"sess-e392f962bd54","input_length":6443,"output_length":173,"hash_ids":[2368109,2368110,2368111,2368112,2368113,2368114,2368115,2368116,2368117,2368118,2368119,2368120,2368121],"delay":32278.2} +{"session_id":"sess-e392f962bd54","input_length":8622,"output_length":729,"hash_ids":[2368122,2368123,2368124,2368125,2368126,2368127,2368128,2368129,2368130,2368131,2368132,2368133,2368134,2368135,2368136,2368137,2368138],"delay":478.5} +{"session_id":"sess-e392f962bd54","input_length":2818,"output_length":506,"hash_ids":[2368139,2368140,2368141,2368142,2368143,2368144],"delay":14212.1} +{"session_id":"sess-e392f962bd54","input_length":972,"output_length":312,"hash_ids":[2368145,2368146],"delay":14921.7} +{"session_id":"sess-e392f962bd54","input_length":1586,"output_length":276,"hash_ids":[2368147,2368148,2368149,2368150],"delay":512.9} +{"session_id":"sess-e392f962bd54","input_length":1183,"output_length":130,"hash_ids":[2368151,2368152,2368153],"delay":555.2} +{"session_id":"sess-e392f962bd54","input_length":1131,"output_length":560,"hash_ids":[2368154,2368155,2368156],"delay":555.9} +{"session_id":"sess-e392f962bd54","input_length":623,"output_length":1138,"hash_ids":[2368157,2368158],"delay":945.1} +{"session_id":"sess-e392f962bd54","input_length":471,"output_length":170,"hash_ids":[2368159],"delay":1667.8} +{"session_id":"sess-e392f962bd54","input_length":461,"output_length":998,"hash_ids":[2368160],"delay":213.6} +{"session_id":"sess-e392f962bd54","input_length":1791,"output_length":577,"hash_ids":[2368161,2368162,2368163,2368164],"delay":418.6} +{"session_id":"sess-e392f962bd54","input_length":2097,"output_length":114,"hash_ids":[2368165,2368166,2368167,2368168,2368169],"delay":595.2} +{"session_id":"sess-e392f962bd54","input_length":4039,"output_length":334,"hash_ids":[2368170,2368171,2368172,2368173,2368174,2368175,2368176,2368177],"delay":10705.2} +{"session_id":"sess-e392f962bd54","input_length":1324,"output_length":348,"hash_ids":[2368178,2368179,2368180],"delay":1462.2} +{"session_id":"sess-e392f962bd54","input_length":127,"output_length":214,"hash_ids":[2368181],"delay":234.1} +{"session_id":"sess-e392f962bd54","input_length":1575,"output_length":100,"hash_ids":[2368182,2368183,2368184,2368185],"delay":13439.2} +{"session_id":"sess-e392f962bd54","input_length":1290,"output_length":178,"hash_ids":[2368186,2368187,2368188],"delay":1876.1} +{"session_id":"sess-e392f962bd54","input_length":6096,"output_length":2449,"hash_ids":[2368189,2368190,2368191,2368192,2368193,2368194,2368195,2368196,2368197,2368198,2368199,2368200],"delay":269.8} +{"session_id":"sess-e392f962bd54","input_length":215,"output_length":154,"hash_ids":[2368201],"delay":19952.1} +{"session_id":"sess-4024916f6a84","input_length":53608,"output_length":463,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,2372063,2372064],"timestamp":0.0,"group_id":23} +{"session_id":"sess-4024916f6a84","input_length":850,"output_length":120,"hash_ids":[2372065,2372066],"delay":30984.2} +{"session_id":"sess-4024916f6a84","input_length":956,"output_length":102,"hash_ids":[2372067,2372068],"delay":8168.3} +{"session_id":"sess-4024916f6a84","input_length":1074,"output_length":792,"hash_ids":[2372069,2372070,2372071],"delay":19144.8} +{"session_id":"sess-4024916f6a84","input_length":2118,"output_length":147,"hash_ids":[2372072,2372073,2372074,2372075,2372076],"delay":4082.6} +{"session_id":"sess-4024916f6a84","input_length":1382,"output_length":108,"hash_ids":[2372077,2372078,2372079],"delay":2965.1} +{"session_id":"sess-4024916f6a84","input_length":887,"output_length":906,"hash_ids":[2372080,2372081],"delay":33714.4} +{"session_id":"sess-4024916f6a84","input_length":1841,"output_length":97,"hash_ids":[2372082,2372083,2372084,2372085],"delay":425.2} +{"session_id":"sess-4024916f6a84","input_length":4709,"output_length":98,"hash_ids":[2372086,2372087,2372088,2372089,2372090,2372091,2372092,2372093,2372094,2372095],"delay":336.4} +{"session_id":"sess-4024916f6a84","input_length":1146,"output_length":240,"hash_ids":[2372096,2372097,2372098],"delay":539.8} +{"session_id":"sess-4024916f6a84","input_length":683,"output_length":83,"hash_ids":[2372099,2372100],"delay":1229.3} +{"session_id":"sess-4024916f6a84","input_length":4709,"output_length":259,"hash_ids":[2372101,2372102,2372103,2372104,2372105,2372106,2372107,2372108,2372109,2372110],"delay":4328.0} +{"session_id":"sess-4024916f6a84","input_length":1755,"output_length":30,"hash_ids":[2372111,2372112,2372113,2372114],"delay":815.3} +{"session_id":"sess-4024916f6a84","input_length":271,"output_length":43,"hash_ids":[2372115],"delay":118.5} +{"session_id":"sess-4024916f6a84","input_length":393,"output_length":1193,"hash_ids":[2372116],"delay":43243.5} +{"session_id":"sess-4024916f6a84","input_length":3318,"output_length":169,"hash_ids":[2372117,2372118,2372119,2372120,2372121,2372122,2372123],"delay":683.6} +{"session_id":"sess-4024916f6a84","input_length":1237,"output_length":139,"hash_ids":[2372124,2372125,2372126],"delay":1773.4} +{"session_id":"sess-4024916f6a84","input_length":8533,"output_length":59,"hash_ids":[2372127,2372128,2372129,2372130,2372131,2372132,2372133,2372134,2372135,2372136,2372137,2372138,2372139,2372140,2372141,2372142,2372143],"delay":1708.0} +{"session_id":"sess-4024916f6a84","input_length":6628,"output_length":1110,"hash_ids":[2372144,2372145,2372146,2372147,2372148,2372149,2372150,2372151,2372152,2372153,2372154,2372155,2372156],"delay":657.7} +{"session_id":"sess-4024916f6a84","input_length":8293,"output_length":64,"hash_ids":[2372157,2372158,2372159,2372160,2372161,2372162,2372163,2372164,2372165,2372166,2372167,2372168,2372169,2372170,2372171,2372172,2372173],"delay":895.6} +{"session_id":"sess-4024916f6a84","input_length":9659,"output_length":1844,"hash_ids":[2372174,2372175,2372176,2372177,2372178,2372179,2372180,2372181,2372182,2372183,2372184,2372185,2372186,2372187,2372188,2372189,2372190,2372191,2372192],"delay":5556.1} +{"session_id":"sess-25ab0d4c914e","input_length":53175,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2376063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-25ab0d4c914e","input_length":1070,"output_length":336,"hash_ids":[2376064,2376065,2376066],"delay":691.1} +{"session_id":"sess-25ab0d4c914e","input_length":778,"output_length":426,"hash_ids":[2376067,2376068],"delay":3304.0} +{"session_id":"sess-25ab0d4c914e","input_length":4911,"output_length":226,"hash_ids":[2376069,2376070,2376071,2376072,2376073,2376074,2376075,2376076,2376077,2376078],"delay":1251.3} +{"session_id":"sess-25ab0d4c914e","input_length":700,"output_length":564,"hash_ids":[2376079,2376080],"delay":2939.0} +{"session_id":"sess-25ab0d4c914e","input_length":168,"output_length":578,"hash_ids":[2376081],"delay":24329.4} +{"session_id":"sess-25ab0d4c914e","input_length":2315,"output_length":1220,"hash_ids":[2376082,2376083,2376084,2376085,2376086],"delay":37400.2} +{"session_id":"sess-25ab0d4c914e","input_length":653,"output_length":531,"hash_ids":[2376087,2376088],"delay":1033.9} +{"session_id":"sess-25ab0d4c914e","input_length":1900,"output_length":262,"hash_ids":[2376089,2376090,2376091,2376092],"delay":886.8} +{"session_id":"sess-25ab0d4c914e","input_length":2930,"output_length":293,"hash_ids":[2376093,2376094,2376095,2376096,2376097,2376098],"delay":1893.5} +{"session_id":"sess-25ab0d4c914e","input_length":683,"output_length":582,"hash_ids":[2376099,2376100],"delay":1244.4} +{"session_id":"sess-25ab0d4c914e","input_length":1263,"output_length":181,"hash_ids":[2376101,2376102,2376103],"delay":1331.5} +{"session_id":"sess-25ab0d4c914e","input_length":1218,"output_length":1990,"hash_ids":[2376104,2376105,2376106],"delay":593.3} +{"session_id":"sess-25ab0d4c914e","input_length":5767,"output_length":124,"hash_ids":[2376107,2376108,2376109,2376110,2376111,2376112,2376113,2376114,2376115,2376116,2376117,2376118],"delay":1252.9} +{"session_id":"sess-25ab0d4c914e","input_length":495,"output_length":2879,"hash_ids":[2376119],"delay":1490.6} +{"session_id":"sess-25ab0d4c914e","input_length":1642,"output_length":66,"hash_ids":[2376120,2376121,2376122,2376123],"delay":514.1} +{"session_id":"sess-25ab0d4c914e","input_length":1701,"output_length":345,"hash_ids":[2376124,2376125,2376126,2376127],"delay":903.2} +{"session_id":"sess-25ab0d4c914e","input_length":632,"output_length":212,"hash_ids":[2376128,2376129],"delay":2072.5} +{"session_id":"sess-25ab0d4c914e","input_length":4002,"output_length":133,"hash_ids":[2376130,2376131,2376132,2376133,2376134,2376135,2376136,2376137],"delay":3214.1} +{"session_id":"sess-25ab0d4c914e","input_length":2538,"output_length":171,"hash_ids":[2376138,2376139,2376140,2376141,2376142],"delay":165.1} +{"session_id":"sess-25ab0d4c914e","input_length":624,"output_length":518,"hash_ids":[2376143,2376144],"delay":21746.2} +{"session_id":"sess-25ab0d4c914e","input_length":749,"output_length":181,"hash_ids":[2376145,2376146],"delay":990.1} +{"session_id":"sess-25ab0d4c914e","input_length":3419,"output_length":82,"hash_ids":[2376147,2376148,2376149,2376150,2376151,2376152,2376153],"delay":5644.2} +{"session_id":"sess-25ab0d4c914e","input_length":3139,"output_length":127,"hash_ids":[2376154,2376155,2376156,2376157,2376158,2376159,2376160],"delay":709.4} +{"session_id":"sess-25ab0d4c914e","input_length":3751,"output_length":61,"hash_ids":[2376161,2376162,2376163,2376164,2376165,2376166,2376167,2376168],"delay":1414.0} +{"session_id":"sess-25ab0d4c914e","input_length":1050,"output_length":211,"hash_ids":[2376169,2376170,2376171],"delay":359.2} +{"session_id":"sess-25ab0d4c914e","input_length":8433,"output_length":96,"hash_ids":[2376172,2376173,2376174,2376175,2376176,2376177,2376178,2376179,2376180,2376181,2376182,2376183,2376184,2376185,2376186,2376187,2376188],"delay":911.9} +{"session_id":"sess-25ab0d4c914e","input_length":448,"output_length":266,"hash_ids":[2376189],"delay":283.8} +{"session_id":"sess-25ab0d4c914e","input_length":6201,"output_length":30,"hash_ids":[2376190,2376191,2376192,2376193,2376194,2376195,2376196,2376197,2376198,2376199,2376200,2376201,2376202],"delay":298.5} +{"session_id":"sess-25ab0d4c914e","input_length":1055,"output_length":201,"hash_ids":[2376203,2376204,2376205],"delay":3040.9} +{"session_id":"sess-25ab0d4c914e","input_length":118,"output_length":926,"hash_ids":[2376206],"delay":526.1} +{"session_id":"sess-d5e557657650","input_length":66640,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2380063,2380064,2380065,2380066,2380067,2380068,2380069,2380070,2380071,2380072,2380073,2380074,2380075,2380076,2380077,2380078,2380079,2380080,2380081,2380082,2380083,2380084,2380085,2380086,2380087,2380088,2380089,2380090],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d5e557657650","input_length":1163,"output_length":88,"hash_ids":[2380091,2380092,2380093],"delay":1000.6} +{"session_id":"sess-d5e557657650","input_length":3546,"output_length":1121,"hash_ids":[2380094,2380095,2380096,2380097,2380098,2380099,2380100],"delay":22248.7} +{"session_id":"sess-d5e557657650","input_length":1696,"output_length":366,"hash_ids":[2380101,2380102,2380103,2380104],"delay":2015.9} +{"session_id":"sess-d5e557657650","input_length":1915,"output_length":271,"hash_ids":[2380105,2380106,2380107,2380108],"delay":579.4} +{"session_id":"sess-d5e557657650","input_length":871,"output_length":2790,"hash_ids":[2380109,2380110],"delay":1298.7} +{"session_id":"sess-d5e557657650","input_length":2456,"output_length":581,"hash_ids":[2380111,2380112,2380113,2380114,2380115],"delay":378.3} +{"session_id":"sess-d5e557657650","input_length":320,"output_length":590,"hash_ids":[2380116],"delay":14217.6} +{"session_id":"sess-d5e557657650","input_length":4465,"output_length":31,"hash_ids":[2380117,2380118,2380119,2380120,2380121,2380122,2380123,2380124,2380125],"delay":891.1} +{"session_id":"sess-d5e557657650","input_length":437,"output_length":217,"hash_ids":[2380126],"delay":368.9} +{"session_id":"sess-d5e557657650","input_length":137,"output_length":2088,"hash_ids":[2380127],"delay":9293.1} +{"session_id":"sess-d5e557657650","input_length":1881,"output_length":438,"hash_ids":[2380128,2380129,2380130,2380131],"delay":2819.0} +{"session_id":"sess-d5e557657650","input_length":1210,"output_length":189,"hash_ids":[2380132,2380133,2380134],"delay":304.2} +{"session_id":"sess-d5e557657650","input_length":823,"output_length":366,"hash_ids":[2380135,2380136],"delay":245.1} +{"session_id":"sess-d5e557657650","input_length":810,"output_length":435,"hash_ids":[2380137,2380138],"delay":347.5} +{"session_id":"sess-d5e557657650","input_length":511,"output_length":170,"hash_ids":[2380139],"delay":7781.5} +{"session_id":"sess-d5e557657650","input_length":5667,"output_length":200,"hash_ids":[2380140,2380141,2380142,2380143,2380144,2380145,2380146,2380147,2380148,2380149,2380150,2380151],"delay":4913.4} +{"session_id":"sess-d5e557657650","input_length":1081,"output_length":488,"hash_ids":[2380152,2380153,2380154],"delay":23187.5} +{"session_id":"sess-d5e557657650","input_length":437,"output_length":742,"hash_ids":[2380155],"delay":644.7} +{"session_id":"sess-d5e557657650","input_length":1618,"output_length":53,"hash_ids":[2380156,2380157,2380158,2380159],"delay":2516.9} +{"session_id":"sess-d5e557657650","input_length":3920,"output_length":370,"hash_ids":[2380160,2380161,2380162,2380163,2380164,2380165,2380166,2380167],"delay":8944.3} +{"session_id":"sess-d5e557657650","input_length":1696,"output_length":302,"hash_ids":[2380168,2380169,2380170,2380171],"delay":260.0} +{"session_id":"sess-d5e557657650","input_length":702,"output_length":219,"hash_ids":[2380172,2380173],"delay":5308.4} +{"session_id":"sess-d5e557657650","input_length":2396,"output_length":409,"hash_ids":[2380174,2380175,2380176,2380177,2380178],"delay":2004.8} +{"session_id":"sess-d5e557657650","input_length":865,"output_length":730,"hash_ids":[2380179,2380180],"delay":632.5} +{"session_id":"sess-d5e557657650","input_length":2118,"output_length":202,"hash_ids":[2380181,2380182,2380183,2380184,2380185],"delay":2535.8} +{"session_id":"sess-d5e557657650","input_length":2817,"output_length":234,"hash_ids":[2380186,2380187,2380188,2380189,2380190,2380191],"delay":2022.3} +{"session_id":"sess-d5e557657650","input_length":1791,"output_length":881,"hash_ids":[2380192,2380193,2380194,2380195],"delay":360.3} +{"session_id":"sess-435101583fb6","input_length":54567,"output_length":425,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2384063,2384064,2384065,2384066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-435101583fb6","input_length":2392,"output_length":1163,"hash_ids":[2384067,2384068,2384069,2384070,2384071],"delay":1430.7} +{"session_id":"sess-435101583fb6","input_length":1510,"output_length":32,"hash_ids":[2384072,2384073,2384074],"delay":1122.4} +{"session_id":"sess-435101583fb6","input_length":1338,"output_length":317,"hash_ids":[2384075,2384076,2384077],"delay":7104.2} +{"session_id":"sess-435101583fb6","input_length":667,"output_length":333,"hash_ids":[2384078,2384079],"delay":3163.9} +{"session_id":"sess-435101583fb6","input_length":1792,"output_length":262,"hash_ids":[2384080,2384081,2384082,2384083],"delay":16689.3} +{"session_id":"sess-435101583fb6","input_length":2545,"output_length":220,"hash_ids":[2384084,2384085,2384086,2384087,2384088],"delay":2109.5} +{"session_id":"sess-435101583fb6","input_length":1258,"output_length":283,"hash_ids":[2384089,2384090,2384091],"delay":1970.9} +{"session_id":"sess-435101583fb6","input_length":1434,"output_length":150,"hash_ids":[2384092,2384093,2384094],"delay":1138.1} +{"session_id":"sess-435101583fb6","input_length":904,"output_length":245,"hash_ids":[2384095,2384096],"delay":389.7} +{"session_id":"sess-435101583fb6","input_length":1027,"output_length":1694,"hash_ids":[2384097,2384098,2384099],"delay":730.0} +{"session_id":"sess-435101583fb6","input_length":1902,"output_length":321,"hash_ids":[2384100,2384101,2384102,2384103],"delay":524.8} +{"session_id":"sess-435101583fb6","input_length":3810,"output_length":222,"hash_ids":[2384104,2384105,2384106,2384107,2384108,2384109,2384110,2384111],"delay":309.3} +{"session_id":"sess-435101583fb6","input_length":1489,"output_length":1614,"hash_ids":[2384112,2384113,2384114],"delay":153.1} +{"session_id":"sess-435101583fb6","input_length":2009,"output_length":202,"hash_ids":[2384115,2384116,2384117,2384118],"delay":100.2} +{"session_id":"sess-435101583fb6","input_length":6553,"output_length":41,"hash_ids":[2384119,2384120,2384121,2384122,2384123,2384124,2384125,2384126,2384127,2384128,2384129,2384130,2384131],"delay":7296.3} +{"session_id":"sess-5a286977406b","input_length":53751,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2388063,2388064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5a286977406b","input_length":494,"output_length":198,"hash_ids":[2388065],"delay":1126.0} +{"session_id":"sess-5a286977406b","input_length":1851,"output_length":271,"hash_ids":[2388066,2388067,2388068,2388069],"delay":884.8} +{"session_id":"sess-5a286977406b","input_length":1167,"output_length":137,"hash_ids":[2388070,2388071,2388072],"delay":557.5} +{"session_id":"sess-5a286977406b","input_length":4139,"output_length":196,"hash_ids":[2388073,2388074,2388075,2388076,2388077,2388078,2388079,2388080,2388081],"delay":660.7} +{"session_id":"sess-5a286977406b","input_length":3414,"output_length":149,"hash_ids":[2388082,2388083,2388084,2388085,2388086,2388087,2388088],"delay":4908.1} +{"session_id":"sess-5a286977406b","input_length":4877,"output_length":1014,"hash_ids":[2388089,2388090,2388091,2388092,2388093,2388094,2388095,2388096,2388097,2388098],"delay":44166.9} +{"session_id":"sess-5a286977406b","input_length":2216,"output_length":105,"hash_ids":[2388099,2388100,2388101,2388102,2388103],"delay":824.3} +{"session_id":"sess-5a286977406b","input_length":3134,"output_length":177,"hash_ids":[2388104,2388105,2388106,2388107,2388108,2388109,2388110],"delay":367.0} +{"session_id":"sess-5a286977406b","input_length":4316,"output_length":360,"hash_ids":[2388111,2388112,2388113,2388114,2388115,2388116,2388117,2388118,2388119],"delay":3360.2} +{"session_id":"sess-5a286977406b","input_length":673,"output_length":33,"hash_ids":[2388120,2388121],"delay":5293.6} +{"session_id":"sess-5a286977406b","input_length":2850,"output_length":154,"hash_ids":[2388122,2388123,2388124,2388125,2388126,2388127],"delay":32369.0} +{"session_id":"sess-5a286977406b","input_length":903,"output_length":173,"hash_ids":[2388128,2388129],"delay":26505.4} +{"session_id":"sess-5a286977406b","input_length":8080,"output_length":821,"hash_ids":[2388130,2388131,2388132,2388133,2388134,2388135,2388136,2388137,2388138,2388139,2388140,2388141,2388142,2388143,2388144,2388145],"delay":257.9} +{"session_id":"sess-5a286977406b","input_length":1657,"output_length":206,"hash_ids":[2388146,2388147,2388148,2388149],"delay":393.5} +{"session_id":"sess-5a286977406b","input_length":1989,"output_length":1129,"hash_ids":[2388150,2388151,2388152,2388153],"delay":4185.3} +{"session_id":"sess-5a286977406b","input_length":1340,"output_length":2096,"hash_ids":[2388154,2388155,2388156],"delay":1253.3} +{"session_id":"sess-5a286977406b","input_length":1567,"output_length":1601,"hash_ids":[2388157,2388158,2388159,2388160],"delay":10344.8} +{"session_id":"sess-5a286977406b","input_length":1619,"output_length":306,"hash_ids":[2388161,2388162,2388163,2388164],"delay":1023.5} +{"session_id":"sess-5a286977406b","input_length":1402,"output_length":374,"hash_ids":[2388165,2388166,2388167],"delay":25936.1} +{"session_id":"sess-5a286977406b","input_length":789,"output_length":30,"hash_ids":[2388168,2388169],"delay":525.5} +{"session_id":"sess-5a286977406b","input_length":1299,"output_length":185,"hash_ids":[2388170,2388171,2388172],"delay":1287.8} +{"session_id":"sess-5a286977406b","input_length":994,"output_length":418,"hash_ids":[2388173,2388174],"delay":2354.6} +{"session_id":"sess-5a286977406b","input_length":9947,"output_length":107,"hash_ids":[2388175,2388176,2388177,2388178,2388179,2388180,2388181,2388182,2388183,2388184,2388185,2388186,2388187,2388188,2388189,2388190,2388191,2388192,2388193,2388194],"delay":14676.3} +{"session_id":"sess-cc87441cd4c5","input_length":69097,"output_length":842,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2392063,2392064,2392065,2392066,2392067,2392068,2392069,2392070,2392071,2392072,2392073,2392074,2392075,2392076,2392077,2392078,2392079,2392080,2392081,2392082,2392083,2392084,2392085,2392086,2392087,2392088,2392089,2392090,2392091,2392092,2392093,2392094],"timestamp":0.0,"group_id":4} +{"session_id":"sess-cc87441cd4c5","input_length":1420,"output_length":437,"hash_ids":[2392095,2392096,2392097],"delay":321.0} +{"session_id":"sess-cc87441cd4c5","input_length":4341,"output_length":444,"hash_ids":[2392098,2392099,2392100,2392101,2392102,2392103,2392104,2392105,2392106],"delay":1278.1} +{"session_id":"sess-cc87441cd4c5","input_length":2101,"output_length":109,"hash_ids":[2392107,2392108,2392109,2392110,2392111],"delay":34700.4} +{"session_id":"sess-cc87441cd4c5","input_length":4146,"output_length":248,"hash_ids":[2392112,2392113,2392114,2392115,2392116,2392117,2392118,2392119,2392120],"delay":2264.3} +{"session_id":"sess-cc87441cd4c5","input_length":1307,"output_length":237,"hash_ids":[2392121,2392122,2392123],"delay":867.7} +{"session_id":"sess-cc87441cd4c5","input_length":2595,"output_length":286,"hash_ids":[2392124,2392125,2392126,2392127,2392128,2392129],"delay":1154.9} +{"session_id":"sess-cc87441cd4c5","input_length":2239,"output_length":158,"hash_ids":[2392130,2392131,2392132,2392133,2392134],"delay":25666.6} +{"session_id":"sess-cc87441cd4c5","input_length":1266,"output_length":911,"hash_ids":[2392135,2392136,2392137],"delay":1358.6} +{"session_id":"sess-cc87441cd4c5","input_length":1988,"output_length":54,"hash_ids":[2392138,2392139,2392140,2392141],"delay":1336.9} +{"session_id":"sess-cc87441cd4c5","input_length":4804,"output_length":239,"hash_ids":[2392142,2392143,2392144,2392145,2392146,2392147,2392148,2392149,2392150,2392151],"delay":1100.7} +{"session_id":"sess-eeeb5e167ff8","input_length":56890,"output_length":228,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2396063,2396064,2396065,2396066,2396067,2396068,2396069,2396070,2396071],"timestamp":0.0,"group_id":2} +{"session_id":"sess-eeeb5e167ff8","input_length":1965,"output_length":829,"hash_ids":[2396072,2396073,2396074,2396075],"delay":941.1} +{"session_id":"sess-eeeb5e167ff8","input_length":8938,"output_length":122,"hash_ids":[2396076,2396077,2396078,2396079,2396080,2396081,2396082,2396083,2396084,2396085,2396086,2396087,2396088,2396089,2396090,2396091,2396092,2396093],"delay":813.6} +{"session_id":"sess-eeeb5e167ff8","input_length":186,"output_length":233,"hash_ids":[2396094],"delay":797.5} +{"session_id":"sess-eeeb5e167ff8","input_length":576,"output_length":91,"hash_ids":[2396095,2396096],"delay":389.2} +{"session_id":"sess-eeeb5e167ff8","input_length":1978,"output_length":661,"hash_ids":[2396097,2396098,2396099,2396100],"delay":1056.1} +{"session_id":"sess-d63971027bce","input_length":69230,"output_length":202,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2400063,2400064,2400065,2400066,2400067,2400068,2400069,2400070,2400071,2400072,2400073,2400074,2400075,2400076,2400077,2400078,2400079,2400080,2400081,2400082,2400083,2400084,2400085,2400086,2400087,2400088,2400089,2400090,2400091,2400092,2400093,2400094,2400095],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d63971027bce","input_length":1792,"output_length":144,"hash_ids":[2400096,2400097,2400098,2400099],"delay":1664.5} +{"session_id":"sess-d63971027bce","input_length":709,"output_length":1286,"hash_ids":[2400100,2400101],"delay":3314.8} +{"session_id":"sess-d63971027bce","input_length":1730,"output_length":1282,"hash_ids":[2400102,2400103,2400104,2400105],"delay":1885.8} +{"session_id":"sess-d63971027bce","input_length":8323,"output_length":391,"hash_ids":[2400106,2400107,2400108,2400109,2400110,2400111,2400112,2400113,2400114,2400115,2400116,2400117,2400118,2400119,2400120,2400121,2400122],"delay":13838.2} +{"session_id":"sess-d63971027bce","input_length":1938,"output_length":803,"hash_ids":[2400123,2400124,2400125,2400126],"delay":1560.3} +{"session_id":"sess-d63971027bce","input_length":967,"output_length":676,"hash_ids":[2400127,2400128],"delay":13308.8} +{"session_id":"sess-d63971027bce","input_length":3498,"output_length":371,"hash_ids":[2400129,2400130,2400131,2400132,2400133,2400134,2400135],"delay":14088.6} +{"session_id":"sess-d63971027bce","input_length":238,"output_length":478,"hash_ids":[2400136],"delay":1451.7} +{"session_id":"sess-3d8f680ad806","input_length":63575,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,2404063,2404064,2404065,2404066,2404067,2404068,2404069,2404070,2404071,2404072,2404073,2404074,2404075,2404076,2404077,2404078,2404079,2404080,2404081,2404082,2404083,2404084],"timestamp":0.0,"group_id":33} +{"session_id":"sess-3d8f680ad806","input_length":2312,"output_length":773,"hash_ids":[2404085,2404086,2404087,2404088,2404089],"delay":1128.0} +{"session_id":"sess-3d8f680ad806","input_length":4952,"output_length":46,"hash_ids":[2404090,2404091,2404092,2404093,2404094,2404095,2404096,2404097,2404098,2404099],"delay":250.1} +{"session_id":"sess-3d8f680ad806","input_length":1021,"output_length":301,"hash_ids":[2404100,2404101],"delay":9910.9} +{"session_id":"sess-3d8f680ad806","input_length":838,"output_length":361,"hash_ids":[2404102,2404103],"delay":1097.6} +{"session_id":"sess-9f8f3d362701","input_length":59124,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,2408063,2408064,2408065,2408066,2408067,2408068,2408069,2408070,2408071,2408072,2408073,2408074,2408075],"timestamp":0.0,"group_id":19} +{"session_id":"sess-9f8f3d362701","input_length":1849,"output_length":504,"hash_ids":[2408076,2408077,2408078,2408079],"delay":2077.2} +{"session_id":"sess-9f8f3d362701","input_length":206,"output_length":1603,"hash_ids":[2408080],"delay":1783.1} +{"session_id":"sess-9f8f3d362701","input_length":1828,"output_length":469,"hash_ids":[2408081,2408082,2408083,2408084],"delay":2461.5} +{"session_id":"sess-9f8f3d362701","input_length":445,"output_length":248,"hash_ids":[2408085],"delay":432.2} +{"session_id":"sess-9f8f3d362701","input_length":1984,"output_length":1462,"hash_ids":[2408086,2408087,2408088,2408089],"delay":6584.2} +{"session_id":"sess-9f8f3d362701","input_length":5486,"output_length":457,"hash_ids":[2408090,2408091,2408092,2408093,2408094,2408095,2408096,2408097,2408098,2408099,2408100],"delay":4629.0} +{"session_id":"sess-9f8f3d362701","input_length":3845,"output_length":98,"hash_ids":[2408101,2408102,2408103,2408104,2408105,2408106,2408107,2408108],"delay":585.4} +{"session_id":"sess-9f8f3d362701","input_length":5652,"output_length":47,"hash_ids":[2408109,2408110,2408111,2408112,2408113,2408114,2408115,2408116,2408117,2408118,2408119,2408120],"delay":35310.0} +{"session_id":"sess-9f8f3d362701","input_length":1205,"output_length":768,"hash_ids":[2408121,2408122,2408123],"delay":2358.7} +{"session_id":"sess-9f8f3d362701","input_length":989,"output_length":333,"hash_ids":[2408124,2408125],"delay":600.1} +{"session_id":"sess-9f8f3d362701","input_length":428,"output_length":95,"hash_ids":[2408126],"delay":13028.2} +{"session_id":"sess-9f8f3d362701","input_length":762,"output_length":1304,"hash_ids":[2408127,2408128],"delay":772.5} +{"session_id":"sess-9f8f3d362701","input_length":887,"output_length":404,"hash_ids":[2408129,2408130],"delay":192.0} +{"session_id":"sess-9f8f3d362701","input_length":1778,"output_length":582,"hash_ids":[2408131,2408132,2408133,2408134],"delay":19887.7} +{"session_id":"sess-9f8f3d362701","input_length":3266,"output_length":490,"hash_ids":[2408135,2408136,2408137,2408138,2408139,2408140,2408141],"delay":923.3} +{"session_id":"sess-9f8f3d362701","input_length":3878,"output_length":325,"hash_ids":[2408142,2408143,2408144,2408145,2408146,2408147,2408148,2408149],"delay":1266.5} +{"session_id":"sess-9f8f3d362701","input_length":4519,"output_length":2248,"hash_ids":[2408150,2408151,2408152,2408153,2408154,2408155,2408156,2408157,2408158],"delay":1054.3} +{"session_id":"sess-9f8f3d362701","input_length":546,"output_length":337,"hash_ids":[2408159,2408160],"delay":294.2} +{"session_id":"sess-9f8f3d362701","input_length":574,"output_length":300,"hash_ids":[2408161,2408162],"delay":534.0} +{"session_id":"sess-9f8f3d362701","input_length":1682,"output_length":231,"hash_ids":[2408163,2408164,2408165,2408166],"delay":3954.4} +{"session_id":"sess-9f8f3d362701","input_length":3980,"output_length":203,"hash_ids":[2408167,2408168,2408169,2408170,2408171,2408172,2408173,2408174],"delay":513.3} +{"session_id":"sess-9f8f3d362701","input_length":478,"output_length":182,"hash_ids":[2408175],"delay":25188.1} +{"session_id":"sess-9f8f3d362701","input_length":5772,"output_length":165,"hash_ids":[2408176,2408177,2408178,2408179,2408180,2408181,2408182,2408183,2408184,2408185,2408186,2408187],"delay":278.3} +{"session_id":"sess-9f8f3d362701","input_length":4158,"output_length":30,"hash_ids":[2408188,2408189,2408190,2408191,2408192,2408193,2408194,2408195,2408196],"delay":942.4} +{"session_id":"sess-171c9c50f560","input_length":53575,"output_length":254,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2412063,2412064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-171c9c50f560","input_length":7557,"output_length":1326,"hash_ids":[2412065,2412066,2412067,2412068,2412069,2412070,2412071,2412072,2412073,2412074,2412075,2412076,2412077,2412078,2412079],"delay":74849.7} +{"session_id":"sess-171c9c50f560","input_length":1266,"output_length":732,"hash_ids":[2412080,2412081,2412082],"delay":19804.4} +{"session_id":"sess-171c9c50f560","input_length":2285,"output_length":119,"hash_ids":[2412083,2412084,2412085,2412086,2412087],"delay":34591.5} +{"session_id":"sess-171c9c50f560","input_length":90,"output_length":382,"hash_ids":[2412088],"delay":1302.2} +{"session_id":"sess-171c9c50f560","input_length":3175,"output_length":53,"hash_ids":[2412089,2412090,2412091,2412092,2412093,2412094,2412095],"delay":1688.3} +{"session_id":"sess-171c9c50f560","input_length":788,"output_length":34,"hash_ids":[2412096,2412097],"delay":1785.3} +{"session_id":"sess-171c9c50f560","input_length":198,"output_length":358,"hash_ids":[2412098],"delay":1921.1} +{"session_id":"sess-171c9c50f560","input_length":5254,"output_length":643,"hash_ids":[2412099,2412100,2412101,2412102,2412103,2412104,2412105,2412106,2412107,2412108,2412109],"delay":313.1} +{"session_id":"sess-171c9c50f560","input_length":6282,"output_length":342,"hash_ids":[2412110,2412111,2412112,2412113,2412114,2412115,2412116,2412117,2412118,2412119,2412120,2412121,2412122],"delay":2679.6} +{"session_id":"sess-171c9c50f560","input_length":1392,"output_length":322,"hash_ids":[2412123,2412124,2412125],"delay":4071.3} +{"session_id":"sess-171c9c50f560","input_length":2010,"output_length":55,"hash_ids":[2412126,2412127,2412128,2412129],"delay":959.1} +{"session_id":"sess-171c9c50f560","input_length":2967,"output_length":366,"hash_ids":[2412130,2412131,2412132,2412133,2412134,2412135],"delay":1702.0} +{"session_id":"sess-171c9c50f560","input_length":3201,"output_length":331,"hash_ids":[2412136,2412137,2412138,2412139,2412140,2412141,2412142],"delay":840.6} +{"session_id":"sess-171c9c50f560","input_length":2926,"output_length":2249,"hash_ids":[2412143,2412144,2412145,2412146,2412147,2412148],"delay":15532.0} +{"session_id":"sess-171c9c50f560","input_length":9140,"output_length":572,"hash_ids":[2412149,2412150,2412151,2412152,2412153,2412154,2412155,2412156,2412157,2412158,2412159,2412160,2412161,2412162,2412163,2412164,2412165,2412166],"delay":325.1} +{"session_id":"sess-171c9c50f560","input_length":1289,"output_length":753,"hash_ids":[2412167,2412168,2412169],"delay":1590.5} +{"session_id":"sess-171c9c50f560","input_length":2465,"output_length":96,"hash_ids":[2412170,2412171,2412172,2412173,2412174],"delay":24782.9} +{"session_id":"sess-171c9c50f560","input_length":663,"output_length":297,"hash_ids":[2412175,2412176],"delay":206.2} +{"session_id":"sess-bf29693e814f","input_length":54472,"output_length":473,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2416063,2416064,2416065,2416066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bf29693e814f","input_length":494,"output_length":314,"hash_ids":[2416067],"delay":324.3} +{"session_id":"sess-bf29693e814f","input_length":794,"output_length":177,"hash_ids":[2416068,2416069],"delay":1101.9} +{"session_id":"sess-bf29693e814f","input_length":2484,"output_length":446,"hash_ids":[2416070,2416071,2416072,2416073,2416074],"delay":24356.5} +{"session_id":"sess-bf29693e814f","input_length":3508,"output_length":181,"hash_ids":[2416075,2416076,2416077,2416078,2416079,2416080,2416081],"delay":797.8} +{"session_id":"sess-bf29693e814f","input_length":367,"output_length":70,"hash_ids":[2416082],"delay":896.6} +{"session_id":"sess-bf29693e814f","input_length":3443,"output_length":194,"hash_ids":[2416083,2416084,2416085,2416086,2416087,2416088,2416089],"delay":7257.4} +{"session_id":"sess-bf29693e814f","input_length":3584,"output_length":192,"hash_ids":[2416090,2416091,2416092,2416093,2416094,2416095,2416096],"delay":2431.7} +{"session_id":"sess-bf29693e814f","input_length":2059,"output_length":257,"hash_ids":[2416097,2416098,2416099,2416100,2416101],"delay":6845.0} +{"session_id":"sess-bf29693e814f","input_length":1099,"output_length":595,"hash_ids":[2416102,2416103,2416104],"delay":1634.4} +{"session_id":"sess-a99acb15ce5d","input_length":58552,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2420063,2420064,2420065,2420066,2420067,2420068,2420069,2420070,2420071,2420072,2420073,2420074],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a99acb15ce5d","input_length":1474,"output_length":58,"hash_ids":[2420075,2420076,2420077],"delay":1209.5} +{"session_id":"sess-a99acb15ce5d","input_length":2116,"output_length":1595,"hash_ids":[2420078,2420079,2420080,2420081,2420082],"delay":1836.5} +{"session_id":"sess-a99acb15ce5d","input_length":1694,"output_length":54,"hash_ids":[2420083,2420084,2420085,2420086],"delay":473.5} +{"session_id":"sess-a99acb15ce5d","input_length":2005,"output_length":170,"hash_ids":[2420087,2420088,2420089,2420090],"delay":1731.5} +{"session_id":"sess-a99acb15ce5d","input_length":781,"output_length":1130,"hash_ids":[2420091,2420092],"delay":403.3} +{"session_id":"sess-a99acb15ce5d","input_length":651,"output_length":121,"hash_ids":[2420093,2420094],"delay":19475.3} +{"session_id":"sess-a99acb15ce5d","input_length":819,"output_length":205,"hash_ids":[2420095,2420096],"delay":933.3} +{"session_id":"sess-a99acb15ce5d","input_length":809,"output_length":166,"hash_ids":[2420097,2420098],"delay":682.3} +{"session_id":"sess-b49098c96272","input_length":60339,"output_length":241,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2424063,2424064,2424065,2424066,2424067,2424068,2424069,2424070,2424071,2424072,2424073,2424074,2424075,2424076,2424077],"timestamp":0.0,"group_id":9} +{"session_id":"sess-b49098c96272","input_length":532,"output_length":140,"hash_ids":[2424078,2424079],"delay":5941.2} +{"session_id":"sess-b49098c96272","input_length":563,"output_length":350,"hash_ids":[2424080,2424081],"delay":912.6} +{"session_id":"sess-b49098c96272","input_length":1872,"output_length":266,"hash_ids":[2424082,2424083,2424084,2424085],"delay":371.6} +{"session_id":"sess-b49098c96272","input_length":9371,"output_length":143,"hash_ids":[2424086,2424087,2424088,2424089,2424090,2424091,2424092,2424093,2424094,2424095,2424096,2424097,2424098,2424099,2424100,2424101,2424102,2424103,2424104],"delay":1400.8} +{"session_id":"sess-b49098c96272","input_length":3097,"output_length":1308,"hash_ids":[2424105,2424106,2424107,2424108,2424109,2424110,2424111],"delay":35467.6} +{"session_id":"sess-b49098c96272","input_length":683,"output_length":53,"hash_ids":[2424112,2424113],"delay":15051.6} +{"session_id":"sess-b49098c96272","input_length":739,"output_length":336,"hash_ids":[2424114,2424115],"delay":4432.9} +{"session_id":"sess-b49098c96272","input_length":589,"output_length":208,"hash_ids":[2424116,2424117],"delay":419.1} +{"session_id":"sess-b49098c96272","input_length":2113,"output_length":1270,"hash_ids":[2424118,2424119,2424120,2424121,2424122],"delay":6556.5} +{"session_id":"sess-b49098c96272","input_length":629,"output_length":132,"hash_ids":[2424123,2424124],"delay":655.2} +{"session_id":"sess-b49098c96272","input_length":297,"output_length":848,"hash_ids":[2424125],"delay":18928.3} +{"session_id":"sess-b49098c96272","input_length":2538,"output_length":360,"hash_ids":[2424126,2424127,2424128,2424129,2424130],"delay":3836.1} +{"session_id":"sess-b49098c96272","input_length":997,"output_length":147,"hash_ids":[2424131,2424132],"delay":3196.6} +{"session_id":"sess-b49098c96272","input_length":425,"output_length":576,"hash_ids":[2424133],"delay":5124.9} +{"session_id":"sess-b49098c96272","input_length":859,"output_length":188,"hash_ids":[2424134,2424135],"delay":1428.0} +{"session_id":"sess-b49098c96272","input_length":2463,"output_length":788,"hash_ids":[2424136,2424137,2424138,2424139,2424140],"delay":981.9} +{"session_id":"sess-b49098c96272","input_length":773,"output_length":1025,"hash_ids":[2424141,2424142],"delay":1381.8} +{"session_id":"sess-b49098c96272","input_length":1119,"output_length":75,"hash_ids":[2424143,2424144,2424145],"delay":18981.6} +{"session_id":"sess-b49098c96272","input_length":3989,"output_length":2624,"hash_ids":[2424146,2424147,2424148,2424149,2424150,2424151,2424152,2424153],"delay":196.0} +{"session_id":"sess-b49098c96272","input_length":273,"output_length":498,"hash_ids":[2424154],"delay":331.0} +{"session_id":"sess-b49098c96272","input_length":5175,"output_length":230,"hash_ids":[2424155,2424156,2424157,2424158,2424159,2424160,2424161,2424162,2424163,2424164,2424165],"delay":265.6} +{"session_id":"sess-b49098c96272","input_length":1539,"output_length":1325,"hash_ids":[2424166,2424167,2424168,2424169],"delay":301.0} +{"session_id":"sess-b49098c96272","input_length":5463,"output_length":812,"hash_ids":[2424170,2424171,2424172,2424173,2424174,2424175,2424176,2424177,2424178,2424179,2424180],"delay":132.9} +{"session_id":"sess-b49098c96272","input_length":3798,"output_length":391,"hash_ids":[2424181,2424182,2424183,2424184,2424185,2424186,2424187,2424188],"delay":2070.4} +{"session_id":"sess-b49098c96272","input_length":1552,"output_length":71,"hash_ids":[2424189,2424190,2424191,2424192],"delay":959.6} +{"session_id":"sess-b49098c96272","input_length":824,"output_length":179,"hash_ids":[2424193,2424194],"delay":1174.4} +{"session_id":"sess-d7a0dd28307d","input_length":55586,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,2428063,2428064,2428065,2428066,2428067,2428068],"timestamp":0.0,"group_id":29} +{"session_id":"sess-d7a0dd28307d","input_length":609,"output_length":503,"hash_ids":[2428069,2428070],"delay":1426.1} +{"session_id":"sess-d7a0dd28307d","input_length":2649,"output_length":77,"hash_ids":[2428071,2428072,2428073,2428074,2428075,2428076],"delay":1802.9} +{"session_id":"sess-d7a0dd28307d","input_length":3980,"output_length":1672,"hash_ids":[2428077,2428078,2428079,2428080,2428081,2428082,2428083,2428084],"delay":9441.8} +{"session_id":"sess-d7a0dd28307d","input_length":704,"output_length":148,"hash_ids":[2428085,2428086],"delay":6936.2} +{"session_id":"sess-d7a0dd28307d","input_length":2426,"output_length":285,"hash_ids":[2428087,2428088,2428089,2428090,2428091],"delay":5206.8} +{"session_id":"sess-d7a0dd28307d","input_length":1283,"output_length":244,"hash_ids":[2428092,2428093,2428094],"delay":176.2} +{"session_id":"sess-d7a0dd28307d","input_length":652,"output_length":85,"hash_ids":[2428095,2428096],"delay":1308.2} +{"session_id":"sess-d7a0dd28307d","input_length":623,"output_length":741,"hash_ids":[2428097,2428098],"delay":1311.8} +{"session_id":"sess-d7a0dd28307d","input_length":1168,"output_length":62,"hash_ids":[2428099,2428100,2428101],"delay":4700.5} +{"session_id":"sess-d7a0dd28307d","input_length":2561,"output_length":228,"hash_ids":[2428102,2428103,2428104,2428105,2428106,2428107],"delay":278.7} +{"session_id":"sess-d7a0dd28307d","input_length":629,"output_length":184,"hash_ids":[2428108,2428109],"delay":1014.8} +{"session_id":"sess-d7a0dd28307d","input_length":2518,"output_length":109,"hash_ids":[2428110,2428111,2428112,2428113,2428114],"delay":1511.5} +{"session_id":"sess-d7a0dd28307d","input_length":2077,"output_length":68,"hash_ids":[2428115,2428116,2428117,2428118,2428119],"delay":8371.0} +{"session_id":"sess-d7a0dd28307d","input_length":3805,"output_length":98,"hash_ids":[2428120,2428121,2428122,2428123,2428124,2428125,2428126,2428127],"delay":230.2} +{"session_id":"sess-d7a0dd28307d","input_length":7988,"output_length":124,"hash_ids":[2428128,2428129,2428130,2428131,2428132,2428133,2428134,2428135,2428136,2428137,2428138,2428139,2428140,2428141,2428142,2428143],"delay":984.3} +{"session_id":"sess-d7a0dd28307d","input_length":3475,"output_length":540,"hash_ids":[2428144,2428145,2428146,2428147,2428148,2428149,2428150],"delay":393.6} +{"session_id":"sess-d7a0dd28307d","input_length":9405,"output_length":293,"hash_ids":[2428151,2428152,2428153,2428154,2428155,2428156,2428157,2428158,2428159,2428160,2428161,2428162,2428163,2428164,2428165,2428166,2428167,2428168,2428169],"delay":1040.6} +{"session_id":"sess-d7a0dd28307d","input_length":5557,"output_length":2836,"hash_ids":[2428170,2428171,2428172,2428173,2428174,2428175,2428176,2428177,2428178,2428179,2428180],"delay":407.6} +{"session_id":"sess-d7a0dd28307d","input_length":4648,"output_length":1365,"hash_ids":[2428181,2428182,2428183,2428184,2428185,2428186,2428187,2428188,2428189,2428190],"delay":384.3} +{"session_id":"sess-d7a0dd28307d","input_length":575,"output_length":430,"hash_ids":[2428191,2428192],"delay":1476.6} +{"session_id":"sess-d7a0dd28307d","input_length":1511,"output_length":229,"hash_ids":[2428193,2428194,2428195],"delay":689.9} +{"session_id":"sess-d7a0dd28307d","input_length":909,"output_length":170,"hash_ids":[2428196,2428197],"delay":6725.9} +{"session_id":"sess-d7a0dd28307d","input_length":1813,"output_length":873,"hash_ids":[2428198,2428199,2428200,2428201],"delay":2460.0} +{"session_id":"sess-d7a0dd28307d","input_length":1796,"output_length":1621,"hash_ids":[2428202,2428203,2428204,2428205],"delay":244.0} +{"session_id":"sess-8fb4321c455d","input_length":52563,"output_length":545,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8fb4321c455d","input_length":196,"output_length":345,"hash_ids":[2428206],"delay":3480.7} +{"session_id":"sess-8fb4321c455d","input_length":3007,"output_length":226,"hash_ids":[2428207,2428208,2428209,2428210,2428211,2428212],"delay":2202.8} +{"session_id":"sess-8fb4321c455d","input_length":1930,"output_length":347,"hash_ids":[2428213,2428214,2428215,2428216],"delay":1139.5} +{"session_id":"sess-8fb4321c455d","input_length":2216,"output_length":190,"hash_ids":[2428217,2428218,2428219,2428220,2428221],"delay":643.2} +{"session_id":"sess-8fb4321c455d","input_length":3845,"output_length":528,"hash_ids":[2428222,2428223,2428224,2428225,2428226,2428227,2428228,2428229],"delay":577.2} +{"session_id":"sess-8fb4321c455d","input_length":1267,"output_length":575,"hash_ids":[2428230,2428231,2428232],"delay":1240.7} +{"session_id":"sess-8fb4321c455d","input_length":3088,"output_length":1052,"hash_ids":[2428233,2428234,2428235,2428236,2428237,2428238,2428239],"delay":1060.2} +{"session_id":"sess-8fb4321c455d","input_length":1061,"output_length":405,"hash_ids":[2428240,2428241,2428242],"delay":2276.3} +{"session_id":"sess-8fb4321c455d","input_length":4076,"output_length":338,"hash_ids":[2428243,2428244,2428245,2428246,2428247,2428248,2428249,2428250],"delay":5461.4} +{"session_id":"sess-8fb4321c455d","input_length":1313,"output_length":245,"hash_ids":[2428251,2428252,2428253],"delay":1884.9} +{"session_id":"sess-8fb4321c455d","input_length":298,"output_length":684,"hash_ids":[2428254],"delay":8594.2} +{"session_id":"sess-8fb4321c455d","input_length":1668,"output_length":149,"hash_ids":[2428255,2428256,2428257,2428258],"delay":1150.8} +{"session_id":"sess-8fb4321c455d","input_length":434,"output_length":210,"hash_ids":[2428259],"delay":2599.5} +{"session_id":"sess-8fb4321c455d","input_length":374,"output_length":964,"hash_ids":[2428260],"delay":321.3} +{"session_id":"sess-8fb4321c455d","input_length":9857,"output_length":438,"hash_ids":[2428261,2428262,2428263,2428264,2428265,2428266,2428267,2428268,2428269,2428270,2428271,2428272,2428273,2428274,2428275,2428276,2428277,2428278,2428279,2428280],"delay":39027.6} +{"session_id":"sess-8fb4321c455d","input_length":1053,"output_length":154,"hash_ids":[2428281,2428282,2428283],"delay":761.6} +{"session_id":"sess-8fb4321c455d","input_length":1326,"output_length":387,"hash_ids":[2428284,2428285,2428286],"delay":604.0} +{"session_id":"sess-8fb4321c455d","input_length":4471,"output_length":1510,"hash_ids":[2428287,2428288,2428289,2428290,2428291,2428292,2428293,2428294,2428295],"delay":1748.2} +{"session_id":"sess-8fb4321c455d","input_length":4552,"output_length":345,"hash_ids":[2428296,2428297,2428298,2428299,2428300,2428301,2428302,2428303,2428304],"delay":1297.0} +{"session_id":"sess-8fb4321c455d","input_length":2810,"output_length":63,"hash_ids":[2428305,2428306,2428307,2428308,2428309,2428310],"delay":642.5} +{"session_id":"sess-8fb4321c455d","input_length":487,"output_length":100,"hash_ids":[2428311],"delay":11699.0} +{"session_id":"sess-8fb4321c455d","input_length":931,"output_length":287,"hash_ids":[2428312,2428313],"delay":386.6} +{"session_id":"sess-8fb4321c455d","input_length":2573,"output_length":402,"hash_ids":[2428314,2428315,2428316,2428317,2428318,2428319],"delay":485.3} +{"session_id":"sess-8fb4321c455d","input_length":1947,"output_length":1968,"hash_ids":[2428320,2428321,2428322,2428323],"delay":20465.0} +{"session_id":"sess-8fb4321c455d","input_length":6954,"output_length":234,"hash_ids":[2428324,2428325,2428326,2428327,2428328,2428329,2428330,2428331,2428332,2428333,2428334,2428335,2428336,2428337],"delay":740.5} +{"session_id":"sess-8fb4321c455d","input_length":864,"output_length":1549,"hash_ids":[2428338,2428339],"delay":375.5} +{"session_id":"sess-3ae81711addb","input_length":53167,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2436063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3ae81711addb","input_length":689,"output_length":134,"hash_ids":[2436064,2436065],"delay":1155.1} +{"session_id":"sess-3ae81711addb","input_length":943,"output_length":185,"hash_ids":[2436066,2436067],"delay":537.7} +{"session_id":"sess-3ae81711addb","input_length":6359,"output_length":600,"hash_ids":[2436068,2436069,2436070,2436071,2436072,2436073,2436074,2436075,2436076,2436077,2436078,2436079,2436080],"delay":26100.1} +{"session_id":"sess-3ae81711addb","input_length":7465,"output_length":443,"hash_ids":[2436081,2436082,2436083,2436084,2436085,2436086,2436087,2436088,2436089,2436090,2436091,2436092,2436093,2436094,2436095],"delay":1635.5} +{"session_id":"sess-3ae81711addb","input_length":3864,"output_length":695,"hash_ids":[2436096,2436097,2436098,2436099,2436100,2436101,2436102,2436103],"delay":578.6} +{"session_id":"sess-3ae81711addb","input_length":3037,"output_length":906,"hash_ids":[2436104,2436105,2436106,2436107,2436108,2436109],"delay":462.5} +{"session_id":"sess-3ae81711addb","input_length":2317,"output_length":2481,"hash_ids":[2436110,2436111,2436112,2436113,2436114],"delay":172.8} +{"session_id":"sess-3ae81711addb","input_length":1682,"output_length":565,"hash_ids":[2436115,2436116,2436117,2436118],"delay":641.1} +{"session_id":"sess-3ae81711addb","input_length":1267,"output_length":1274,"hash_ids":[2436119,2436120,2436121],"delay":644.1} +{"session_id":"sess-3ae81711addb","input_length":7082,"output_length":129,"hash_ids":[2436122,2436123,2436124,2436125,2436126,2436127,2436128,2436129,2436130,2436131,2436132,2436133,2436134,2436135],"delay":762.7} +{"session_id":"sess-3ae81711addb","input_length":1584,"output_length":265,"hash_ids":[2436136,2436137,2436138,2436139],"delay":666.7} +{"session_id":"sess-3ae81711addb","input_length":1469,"output_length":340,"hash_ids":[2436140,2436141,2436142],"delay":24705.9} +{"session_id":"sess-3ae81711addb","input_length":1233,"output_length":558,"hash_ids":[2436143,2436144,2436145],"delay":202.2} +{"session_id":"sess-d01a5ce71d2e","input_length":52593,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902],"timestamp":0.0,"group_id":4} +{"session_id":"sess-d01a5ce71d2e","input_length":661,"output_length":581,"hash_ids":[2436146,2436147],"delay":11671.9} +{"session_id":"sess-d01a5ce71d2e","input_length":899,"output_length":649,"hash_ids":[2436148,2436149],"delay":12545.6} +{"session_id":"sess-d01a5ce71d2e","input_length":5851,"output_length":1432,"hash_ids":[2436150,2436151,2436152,2436153,2436154,2436155,2436156,2436157,2436158,2436159,2436160,2436161],"delay":1254.8} +{"session_id":"sess-d01a5ce71d2e","input_length":578,"output_length":834,"hash_ids":[2436162,2436163],"delay":8982.1} +{"session_id":"sess-d01a5ce71d2e","input_length":2065,"output_length":30,"hash_ids":[2436164,2436165,2436166,2436167,2436168],"delay":1361.4} +{"session_id":"sess-d01a5ce71d2e","input_length":339,"output_length":366,"hash_ids":[2436169],"delay":741.8} +{"session_id":"sess-a4c8df84984a","input_length":54864,"output_length":176,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2444063,2444064,2444065,2444066,2444067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a4c8df84984a","input_length":694,"output_length":669,"hash_ids":[2444068,2444069],"delay":2190.3} +{"session_id":"sess-a4c8df84984a","input_length":3449,"output_length":614,"hash_ids":[2444070,2444071,2444072,2444073,2444074,2444075,2444076],"delay":909.4} +{"session_id":"sess-a4c8df84984a","input_length":990,"output_length":170,"hash_ids":[2444077,2444078],"delay":1507.9} +{"session_id":"sess-a4c8df84984a","input_length":3312,"output_length":1024,"hash_ids":[2444079,2444080,2444081,2444082,2444083,2444084,2444085],"delay":2090.0} +{"session_id":"sess-a4c8df84984a","input_length":1061,"output_length":64,"hash_ids":[2444086,2444087,2444088],"delay":871.6} +{"session_id":"sess-a4c8df84984a","input_length":1394,"output_length":606,"hash_ids":[2444089,2444090,2444091],"delay":5281.1} +{"session_id":"sess-a4c8df84984a","input_length":1453,"output_length":250,"hash_ids":[2444092,2444093,2444094],"delay":2412.6} +{"session_id":"sess-a4c8df84984a","input_length":708,"output_length":80,"hash_ids":[2444095,2444096],"delay":294.2} +{"session_id":"sess-a4c8df84984a","input_length":4803,"output_length":257,"hash_ids":[2444097,2444098,2444099,2444100,2444101,2444102,2444103,2444104,2444105,2444106],"delay":865.4} +{"session_id":"sess-a4c8df84984a","input_length":4694,"output_length":94,"hash_ids":[2444107,2444108,2444109,2444110,2444111,2444112,2444113,2444114,2444115,2444116],"delay":14360.4} +{"session_id":"sess-a4c8df84984a","input_length":712,"output_length":81,"hash_ids":[2444117,2444118],"delay":1112.6} +{"session_id":"sess-a4c8df84984a","input_length":8947,"output_length":124,"hash_ids":[2444119,2444120,2444121,2444122,2444123,2444124,2444125,2444126,2444127,2444128,2444129,2444130,2444131,2444132,2444133,2444134,2444135,2444136],"delay":278.2} +{"session_id":"sess-a4c8df84984a","input_length":442,"output_length":319,"hash_ids":[2444137],"delay":687.7} +{"session_id":"sess-a4c8df84984a","input_length":1806,"output_length":222,"hash_ids":[2444138,2444139,2444140,2444141],"delay":16152.6} +{"session_id":"sess-a4c8df84984a","input_length":891,"output_length":164,"hash_ids":[2444142,2444143],"delay":2900.8} +{"session_id":"sess-a4c8df84984a","input_length":811,"output_length":55,"hash_ids":[2444144,2444145],"delay":483.6} +{"session_id":"sess-a4c8df84984a","input_length":756,"output_length":205,"hash_ids":[2444146,2444147],"delay":13238.3} +{"session_id":"sess-a4c8df84984a","input_length":3007,"output_length":989,"hash_ids":[2444148,2444149,2444150,2444151,2444152,2444153],"delay":1118.1} +{"session_id":"sess-a4c8df84984a","input_length":780,"output_length":212,"hash_ids":[2444154,2444155],"delay":1342.4} +{"session_id":"sess-a4c8df84984a","input_length":1804,"output_length":129,"hash_ids":[2444156,2444157,2444158,2444159],"delay":1115.4} +{"session_id":"sess-a4c8df84984a","input_length":43,"output_length":174,"hash_ids":[2444160],"delay":3237.9} +{"session_id":"sess-a4c8df84984a","input_length":1004,"output_length":297,"hash_ids":[2444161,2444162],"delay":4361.1} +{"session_id":"sess-a4c8df84984a","input_length":3379,"output_length":1756,"hash_ids":[2444163,2444164,2444165,2444166,2444167,2444168,2444169],"delay":4217.8} +{"session_id":"sess-a4c8df84984a","input_length":1584,"output_length":191,"hash_ids":[2444170,2444171,2444172,2444173],"delay":5015.6} +{"session_id":"sess-a4c8df84984a","input_length":4097,"output_length":120,"hash_ids":[2444174,2444175,2444176,2444177,2444178,2444179,2444180,2444181,2444182],"delay":758.9} +{"session_id":"sess-a4c8df84984a","input_length":1779,"output_length":67,"hash_ids":[2444183,2444184,2444185,2444186],"delay":5923.8} +{"session_id":"sess-a4c8df84984a","input_length":6920,"output_length":459,"hash_ids":[2444187,2444188,2444189,2444190,2444191,2444192,2444193,2444194,2444195,2444196,2444197,2444198,2444199,2444200],"delay":142.1} +{"session_id":"sess-a4c8df84984a","input_length":2982,"output_length":250,"hash_ids":[2444201,2444202,2444203,2444204,2444205,2444206],"delay":393.9} +{"session_id":"sess-a4c8df84984a","input_length":393,"output_length":202,"hash_ids":[2444207],"delay":616.5} +{"session_id":"sess-43a31d17b196","input_length":52766,"output_length":121,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,2448063],"timestamp":0.0,"group_id":22} +{"session_id":"sess-43a31d17b196","input_length":558,"output_length":690,"hash_ids":[2448064,2448065],"delay":2226.0} +{"session_id":"sess-43a31d17b196","input_length":1962,"output_length":890,"hash_ids":[2448066,2448067,2448068,2448069],"delay":13477.8} +{"session_id":"sess-43a31d17b196","input_length":1477,"output_length":753,"hash_ids":[2448070,2448071,2448072],"delay":830.7} +{"session_id":"sess-43a31d17b196","input_length":353,"output_length":123,"hash_ids":[2448073],"delay":2206.8} +{"session_id":"sess-43a31d17b196","input_length":298,"output_length":117,"hash_ids":[2448074],"delay":2543.9} +{"session_id":"sess-43a31d17b196","input_length":3278,"output_length":564,"hash_ids":[2448075,2448076,2448077,2448078,2448079,2448080,2448081],"delay":3973.5} +{"session_id":"sess-43a31d17b196","input_length":3738,"output_length":218,"hash_ids":[2448082,2448083,2448084,2448085,2448086,2448087,2448088,2448089],"delay":5202.0} +{"session_id":"sess-7fdac66eef07","input_length":64497,"output_length":431,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2452063,2452064,2452065,2452066,2452067,2452068,2452069,2452070,2452071,2452072,2452073,2452074,2452075,2452076,2452077,2452078,2452079,2452080,2452081,2452082,2452083,2452084,2452085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7fdac66eef07","input_length":441,"output_length":35,"hash_ids":[2452086],"delay":1786.8} +{"session_id":"sess-7fdac66eef07","input_length":1482,"output_length":437,"hash_ids":[2452087,2452088,2452089],"delay":724.5} +{"session_id":"sess-7fdac66eef07","input_length":255,"output_length":1169,"hash_ids":[2452090],"delay":2491.6} +{"session_id":"sess-7fdac66eef07","input_length":1444,"output_length":713,"hash_ids":[2452091,2452092,2452093],"delay":33588.9} +{"session_id":"sess-7fdac66eef07","input_length":1258,"output_length":193,"hash_ids":[2452094,2452095,2452096],"delay":2477.3} +{"session_id":"sess-7fdac66eef07","input_length":1432,"output_length":101,"hash_ids":[2452097,2452098,2452099],"delay":37291.1} +{"session_id":"sess-7fdac66eef07","input_length":2414,"output_length":276,"hash_ids":[2452100,2452101,2452102,2452103,2452104],"delay":20383.6} +{"session_id":"sess-7fdac66eef07","input_length":814,"output_length":603,"hash_ids":[2452105,2452106],"delay":441.0} +{"session_id":"sess-7fdac66eef07","input_length":3400,"output_length":522,"hash_ids":[2452107,2452108,2452109,2452110,2452111,2452112,2452113],"delay":3028.6} +{"session_id":"sess-7fdac66eef07","input_length":486,"output_length":202,"hash_ids":[2452114],"delay":6443.0} +{"session_id":"sess-7fdac66eef07","input_length":3133,"output_length":506,"hash_ids":[2452115,2452116,2452117,2452118,2452119,2452120,2452121],"delay":577.0} +{"session_id":"sess-7fdac66eef07","input_length":146,"output_length":579,"hash_ids":[2452122],"delay":426.0} +{"session_id":"sess-7fdac66eef07","input_length":590,"output_length":107,"hash_ids":[2452123,2452124],"delay":14126.0} +{"session_id":"sess-7fdac66eef07","input_length":790,"output_length":445,"hash_ids":[2452125,2452126],"delay":180.2} +{"session_id":"sess-7fdac66eef07","input_length":375,"output_length":405,"hash_ids":[2452127],"delay":4148.3} +{"session_id":"sess-7fdac66eef07","input_length":523,"output_length":66,"hash_ids":[2452128,2452129],"delay":268.0} +{"session_id":"sess-7fdac66eef07","input_length":134,"output_length":223,"hash_ids":[2452130],"delay":10222.4} +{"session_id":"sess-7fdac66eef07","input_length":2232,"output_length":978,"hash_ids":[2452131,2452132,2452133,2452134,2452135],"delay":525.4} +{"session_id":"sess-7fdac66eef07","input_length":2527,"output_length":75,"hash_ids":[2452136,2452137,2452138,2452139,2452140],"delay":381.8} +{"session_id":"sess-7fdac66eef07","input_length":3032,"output_length":235,"hash_ids":[2452141,2452142,2452143,2452144,2452145,2452146],"delay":321.3} +{"session_id":"sess-7fdac66eef07","input_length":1338,"output_length":359,"hash_ids":[2452147,2452148,2452149],"delay":545.7} +{"session_id":"sess-7fdac66eef07","input_length":408,"output_length":880,"hash_ids":[2452150],"delay":2648.6} +{"session_id":"sess-7fdac66eef07","input_length":254,"output_length":157,"hash_ids":[2452151],"delay":475.4} +{"session_id":"sess-7fdac66eef07","input_length":5125,"output_length":522,"hash_ids":[2452152,2452153,2452154,2452155,2452156,2452157,2452158,2452159,2452160,2452161,2452162],"delay":1414.5} +{"session_id":"sess-ba23cbd57246","input_length":59754,"output_length":83,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2456063,2456064,2456065,2456066,2456067,2456068,2456069,2456070,2456071,2456072,2456073,2456074,2456075,2456076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ba23cbd57246","input_length":1652,"output_length":41,"hash_ids":[2456077,2456078,2456079,2456080],"delay":282.7} +{"session_id":"sess-ba23cbd57246","input_length":2038,"output_length":139,"hash_ids":[2456081,2456082,2456083,2456084],"delay":2283.4} +{"session_id":"sess-ba23cbd57246","input_length":4157,"output_length":113,"hash_ids":[2456085,2456086,2456087,2456088,2456089,2456090,2456091,2456092,2456093],"delay":34119.2} +{"session_id":"sess-ba23cbd57246","input_length":2995,"output_length":716,"hash_ids":[2456094,2456095,2456096,2456097,2456098,2456099],"delay":513.1} +{"session_id":"sess-ba23cbd57246","input_length":3893,"output_length":474,"hash_ids":[2456100,2456101,2456102,2456103,2456104,2456105,2456106,2456107],"delay":4310.7} +{"session_id":"sess-ba23cbd57246","input_length":745,"output_length":104,"hash_ids":[2456108,2456109],"delay":1175.5} +{"session_id":"sess-ba23cbd57246","input_length":5514,"output_length":383,"hash_ids":[2456110,2456111,2456112,2456113,2456114,2456115,2456116,2456117,2456118,2456119,2456120],"delay":716.4} +{"session_id":"sess-ba23cbd57246","input_length":3448,"output_length":30,"hash_ids":[2456121,2456122,2456123,2456124,2456125,2456126,2456127],"delay":1412.3} +{"session_id":"sess-ba23cbd57246","input_length":8117,"output_length":382,"hash_ids":[2456128,2456129,2456130,2456131,2456132,2456133,2456134,2456135,2456136,2456137,2456138,2456139,2456140,2456141,2456142,2456143],"delay":25050.1} +{"session_id":"sess-ba23cbd57246","input_length":1576,"output_length":467,"hash_ids":[2456144,2456145,2456146,2456147],"delay":522.4} +{"session_id":"sess-ba23cbd57246","input_length":271,"output_length":118,"hash_ids":[2456148],"delay":6921.8} +{"session_id":"sess-ba23cbd57246","input_length":402,"output_length":83,"hash_ids":[2456149],"delay":464.8} +{"session_id":"sess-ba23cbd57246","input_length":4056,"output_length":256,"hash_ids":[2456150,2456151,2456152,2456153,2456154,2456155,2456156,2456157],"delay":7557.5} +{"session_id":"sess-638e57464da0","input_length":62689,"output_length":312,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,2460063,2460064,2460065,2460066,2460067,2460068,2460069,2460070,2460071,2460072,2460073,2460074,2460075,2460076,2460077,2460078,2460079,2460080,2460081,2460082],"timestamp":0.0,"group_id":7} +{"session_id":"sess-638e57464da0","input_length":821,"output_length":169,"hash_ids":[2460083,2460084],"delay":322.0} +{"session_id":"sess-638e57464da0","input_length":1230,"output_length":382,"hash_ids":[2460085,2460086,2460087],"delay":5708.8} +{"session_id":"sess-638e57464da0","input_length":2139,"output_length":695,"hash_ids":[2460088,2460089,2460090,2460091,2460092],"delay":12531.1} +{"session_id":"sess-638e57464da0","input_length":1021,"output_length":103,"hash_ids":[2460093,2460094],"delay":19118.5} +{"session_id":"sess-638e57464da0","input_length":897,"output_length":443,"hash_ids":[2460095,2460096],"delay":15368.5} +{"session_id":"sess-638e57464da0","input_length":2024,"output_length":718,"hash_ids":[2460097,2460098,2460099,2460100],"delay":22249.0} +{"session_id":"sess-638e57464da0","input_length":5610,"output_length":1996,"hash_ids":[2460101,2460102,2460103,2460104,2460105,2460106,2460107,2460108,2460109,2460110,2460111],"delay":367.4} +{"session_id":"sess-638e57464da0","input_length":527,"output_length":1318,"hash_ids":[2460112,2460113],"delay":381.1} +{"session_id":"sess-638e57464da0","input_length":4782,"output_length":156,"hash_ids":[2460114,2460115,2460116,2460117,2460118,2460119,2460120,2460121,2460122,2460123],"delay":1093.8} +{"session_id":"sess-638e57464da0","input_length":8001,"output_length":223,"hash_ids":[2460124,2460125,2460126,2460127,2460128,2460129,2460130,2460131,2460132,2460133,2460134,2460135,2460136,2460137,2460138,2460139],"delay":588.3} +{"session_id":"sess-638e57464da0","input_length":263,"output_length":191,"hash_ids":[2460140],"delay":481.0} +{"session_id":"sess-638e57464da0","input_length":654,"output_length":141,"hash_ids":[2460141,2460142],"delay":294.6} +{"session_id":"sess-638e57464da0","input_length":247,"output_length":339,"hash_ids":[2460143],"delay":13494.1} +{"session_id":"sess-638e57464da0","input_length":2860,"output_length":485,"hash_ids":[2460144,2460145,2460146,2460147,2460148,2460149],"delay":528.5} +{"session_id":"sess-638e57464da0","input_length":6427,"output_length":2123,"hash_ids":[2460150,2460151,2460152,2460153,2460154,2460155,2460156,2460157,2460158,2460159,2460160,2460161,2460162],"delay":11182.4} +{"session_id":"sess-638e57464da0","input_length":4304,"output_length":266,"hash_ids":[2460163,2460164,2460165,2460166,2460167,2460168,2460169,2460170,2460171],"delay":5337.7} +{"session_id":"sess-638e57464da0","input_length":6672,"output_length":587,"hash_ids":[2460172,2460173,2460174,2460175,2460176,2460177,2460178,2460179,2460180,2460181,2460182,2460183,2460184,2460185],"delay":3084.8} +{"session_id":"sess-638e57464da0","input_length":7840,"output_length":274,"hash_ids":[2460186,2460187,2460188,2460189,2460190,2460191,2460192,2460193,2460194,2460195,2460196,2460197,2460198,2460199,2460200,2460201],"delay":365.7} +{"session_id":"sess-c9c2138c865f","input_length":55661,"output_length":537,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,2464063,2464064,2464065,2464066,2464067,2464068],"timestamp":0.0,"group_id":8} +{"session_id":"sess-c9c2138c865f","input_length":4763,"output_length":450,"hash_ids":[2464069,2464070,2464071,2464072,2464073,2464074,2464075,2464076,2464077,2464078],"delay":246.2} +{"session_id":"sess-c9c2138c865f","input_length":429,"output_length":396,"hash_ids":[2464079],"delay":4077.7} +{"session_id":"sess-c9c2138c865f","input_length":2523,"output_length":329,"hash_ids":[2464080,2464081,2464082,2464083,2464084],"delay":11041.7} +{"session_id":"sess-c9c2138c865f","input_length":1258,"output_length":297,"hash_ids":[2464085,2464086,2464087],"delay":10915.9} +{"session_id":"sess-c9c2138c865f","input_length":1596,"output_length":326,"hash_ids":[2464088,2464089,2464090,2464091],"delay":2575.3} +{"session_id":"sess-c9c2138c865f","input_length":660,"output_length":574,"hash_ids":[2464092,2464093],"delay":1209.6} +{"session_id":"sess-c9c2138c865f","input_length":523,"output_length":275,"hash_ids":[2464094,2464095],"delay":4080.5} +{"session_id":"sess-c9c2138c865f","input_length":431,"output_length":143,"hash_ids":[2464096],"delay":28259.8} +{"session_id":"sess-c9c2138c865f","input_length":594,"output_length":288,"hash_ids":[2464097,2464098],"delay":1939.2} +{"session_id":"sess-c9c2138c865f","input_length":1632,"output_length":30,"hash_ids":[2464099,2464100,2464101,2464102],"delay":137.5} +{"session_id":"sess-c9c2138c865f","input_length":482,"output_length":460,"hash_ids":[2464103],"delay":1301.9} +{"session_id":"sess-7f73874620bc","input_length":60322,"output_length":722,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2468063,2468064,2468065,2468066,2468067,2468068,2468069,2468070,2468071,2468072,2468073,2468074,2468075,2468076,2468077],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7f73874620bc","input_length":4706,"output_length":402,"hash_ids":[2468078,2468079,2468080,2468081,2468082,2468083,2468084,2468085,2468086,2468087],"delay":800.4} +{"session_id":"sess-7f73874620bc","input_length":2512,"output_length":236,"hash_ids":[2468088,2468089,2468090,2468091,2468092],"delay":681.0} +{"session_id":"sess-7f73874620bc","input_length":3854,"output_length":276,"hash_ids":[2468093,2468094,2468095,2468096,2468097,2468098,2468099,2468100],"delay":8281.4} +{"session_id":"sess-7f73874620bc","input_length":1646,"output_length":289,"hash_ids":[2468101,2468102,2468103,2468104],"delay":1663.0} +{"session_id":"sess-7f73874620bc","input_length":8527,"output_length":1062,"hash_ids":[2468105,2468106,2468107,2468108,2468109,2468110,2468111,2468112,2468113,2468114,2468115,2468116,2468117,2468118,2468119,2468120,2468121],"delay":2791.6} +{"session_id":"sess-7f73874620bc","input_length":3290,"output_length":922,"hash_ids":[2468122,2468123,2468124,2468125,2468126,2468127,2468128],"delay":1537.0} +{"session_id":"sess-7f73874620bc","input_length":4151,"output_length":271,"hash_ids":[2468129,2468130,2468131,2468132,2468133,2468134,2468135,2468136,2468137],"delay":2866.0} +{"session_id":"sess-7f73874620bc","input_length":2045,"output_length":87,"hash_ids":[2468138,2468139,2468140,2468141],"delay":4829.4} +{"session_id":"sess-7f73874620bc","input_length":219,"output_length":186,"hash_ids":[2468142],"delay":1942.8} +{"session_id":"sess-7f73874620bc","input_length":2105,"output_length":713,"hash_ids":[2468143,2468144,2468145,2468146,2468147],"delay":404.4} +{"session_id":"sess-7f73874620bc","input_length":296,"output_length":89,"hash_ids":[2468148],"delay":1178.9} +{"session_id":"sess-7f73874620bc","input_length":4233,"output_length":262,"hash_ids":[2468149,2468150,2468151,2468152,2468153,2468154,2468155,2468156,2468157],"delay":1209.5} +{"session_id":"sess-7f73874620bc","input_length":8954,"output_length":1043,"hash_ids":[2468158,2468159,2468160,2468161,2468162,2468163,2468164,2468165,2468166,2468167,2468168,2468169,2468170,2468171,2468172,2468173,2468174,2468175],"delay":201.8} +{"session_id":"sess-7f73874620bc","input_length":4836,"output_length":241,"hash_ids":[2468176,2468177,2468178,2468179,2468180,2468181,2468182,2468183,2468184,2468185],"delay":8428.9} +{"session_id":"sess-7f73874620bc","input_length":1229,"output_length":110,"hash_ids":[2468186,2468187,2468188],"delay":15314.9} +{"session_id":"sess-7f73874620bc","input_length":751,"output_length":1164,"hash_ids":[2468189,2468190],"delay":621.3} +{"session_id":"sess-7f73874620bc","input_length":4162,"output_length":666,"hash_ids":[2468191,2468192,2468193,2468194,2468195,2468196,2468197,2468198,2468199],"delay":775.3} +{"session_id":"sess-7f73874620bc","input_length":4293,"output_length":1692,"hash_ids":[2468200,2468201,2468202,2468203,2468204,2468205,2468206,2468207,2468208],"delay":368.2} +{"session_id":"sess-4c0724b1a725","input_length":68994,"output_length":273,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2472063,2472064,2472065,2472066,2472067,2472068,2472069,2472070,2472071,2472072,2472073,2472074,2472075,2472076,2472077,2472078,2472079,2472080,2472081,2472082,2472083,2472084,2472085,2472086,2472087,2472088,2472089,2472090,2472091,2472092,2472093,2472094],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4c0724b1a725","input_length":1802,"output_length":2079,"hash_ids":[2472095,2472096,2472097,2472098],"delay":1572.8} +{"session_id":"sess-4c0724b1a725","input_length":4446,"output_length":775,"hash_ids":[2472099,2472100,2472101,2472102,2472103,2472104,2472105,2472106,2472107],"delay":2702.1} +{"session_id":"sess-4c0724b1a725","input_length":2816,"output_length":1380,"hash_ids":[2472108,2472109,2472110,2472111,2472112,2472113],"delay":496.7} +{"session_id":"sess-4c0724b1a725","input_length":2431,"output_length":1181,"hash_ids":[2472114,2472115,2472116,2472117,2472118],"delay":781.0} +{"session_id":"sess-4c0724b1a725","input_length":864,"output_length":561,"hash_ids":[2472119,2472120],"delay":19795.8} +{"session_id":"sess-e25c08bd65ab","input_length":79680,"output_length":831,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2476063,2476064,2476065,2476066,2476067,2476068,2476069,2476070,2476071,2476072,2476073,2476074,2476075,2476076,2476077,2476078,2476079,2476080,2476081,2476082,2476083,2476084,2476085,2476086,2476087,2476088,2476089,2476090,2476091,2476092,2476093,2476094,2476095,2476096,2476097,2476098,2476099,2476100,2476101,2476102,2476103,2476104,2476105,2476106,2476107,2476108,2476109,2476110,2476111,2476112,2476113,2476114,2476115],"timestamp":0.0,"group_id":3} +{"session_id":"sess-e25c08bd65ab","input_length":3110,"output_length":304,"hash_ids":[2476116,2476117,2476118,2476119,2476120,2476121,2476122],"delay":519.1} +{"session_id":"sess-e25c08bd65ab","input_length":590,"output_length":325,"hash_ids":[2476123,2476124],"delay":736.0} +{"session_id":"sess-e25c08bd65ab","input_length":2466,"output_length":925,"hash_ids":[2476125,2476126,2476127,2476128,2476129],"delay":1214.4} +{"session_id":"sess-e25c08bd65ab","input_length":1012,"output_length":1417,"hash_ids":[2476130,2476131],"delay":1920.4} +{"session_id":"sess-e25c08bd65ab","input_length":470,"output_length":414,"hash_ids":[2476132],"delay":4990.2} +{"session_id":"sess-e25c08bd65ab","input_length":1468,"output_length":251,"hash_ids":[2476133,2476134,2476135],"delay":434.3} +{"session_id":"sess-e25c08bd65ab","input_length":4767,"output_length":363,"hash_ids":[2476136,2476137,2476138,2476139,2476140,2476141,2476142,2476143,2476144,2476145],"delay":1402.2} +{"session_id":"sess-e25c08bd65ab","input_length":528,"output_length":196,"hash_ids":[2476146,2476147],"delay":1369.0} +{"session_id":"sess-e25c08bd65ab","input_length":1048,"output_length":971,"hash_ids":[2476148,2476149,2476150],"delay":494.1} +{"session_id":"sess-e25c08bd65ab","input_length":1054,"output_length":361,"hash_ids":[2476151,2476152,2476153],"delay":308.0} +{"session_id":"sess-e25c08bd65ab","input_length":1102,"output_length":205,"hash_ids":[2476154,2476155,2476156],"delay":453.7} +{"session_id":"sess-e25c08bd65ab","input_length":8179,"output_length":639,"hash_ids":[2476157,2476158,2476159,2476160,2476161,2476162,2476163,2476164,2476165,2476166,2476167,2476168,2476169,2476170,2476171,2476172],"delay":1057.5} +{"session_id":"sess-e25c08bd65ab","input_length":1128,"output_length":133,"hash_ids":[2476173,2476174,2476175],"delay":2743.5} +{"session_id":"sess-e25c08bd65ab","input_length":3668,"output_length":254,"hash_ids":[2476176,2476177,2476178,2476179,2476180,2476181,2476182,2476183],"delay":4360.0} +{"session_id":"sess-e25c08bd65ab","input_length":359,"output_length":594,"hash_ids":[2476184],"delay":257.4} +{"session_id":"sess-e25c08bd65ab","input_length":1370,"output_length":174,"hash_ids":[2476185,2476186,2476187],"delay":536.1} +{"session_id":"sess-e25c08bd65ab","input_length":2150,"output_length":280,"hash_ids":[2476188,2476189,2476190,2476191,2476192],"delay":816.4} +{"session_id":"sess-e25c08bd65ab","input_length":2637,"output_length":91,"hash_ids":[2476193,2476194,2476195,2476196,2476197,2476198],"delay":7866.7} +{"session_id":"sess-e25c08bd65ab","input_length":5545,"output_length":410,"hash_ids":[2476199,2476200,2476201,2476202,2476203,2476204,2476205,2476206,2476207,2476208,2476209],"delay":904.6} +{"session_id":"sess-fb30338b7403","input_length":66175,"output_length":165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,2480063,2480064,2480065,2480066,2480067,2480068,2480069,2480070,2480071,2480072,2480073,2480074,2480075,2480076,2480077,2480078,2480079,2480080,2480081,2480082,2480083,2480084,2480085,2480086,2480087,2480088,2480089],"timestamp":0.0,"group_id":24} +{"session_id":"sess-fb30338b7403","input_length":394,"output_length":868,"hash_ids":[2480090],"delay":228.0} +{"session_id":"sess-fb30338b7403","input_length":1342,"output_length":583,"hash_ids":[2480091,2480092,2480093],"delay":7906.4} +{"session_id":"sess-fb30338b7403","input_length":3165,"output_length":159,"hash_ids":[2480094,2480095,2480096,2480097,2480098,2480099,2480100],"delay":1789.9} +{"session_id":"sess-fb30338b7403","input_length":853,"output_length":366,"hash_ids":[2480101,2480102],"delay":30619.4} +{"session_id":"sess-fb30338b7403","input_length":495,"output_length":570,"hash_ids":[2480103],"delay":349.8} +{"session_id":"sess-fb30338b7403","input_length":1578,"output_length":311,"hash_ids":[2480104,2480105,2480106,2480107],"delay":7575.2} +{"session_id":"sess-fb30338b7403","input_length":6365,"output_length":537,"hash_ids":[2480108,2480109,2480110,2480111,2480112,2480113,2480114,2480115,2480116,2480117,2480118,2480119,2480120],"delay":2850.1} +{"session_id":"sess-fb30338b7403","input_length":448,"output_length":531,"hash_ids":[2480121],"delay":2362.3} +{"session_id":"sess-fb30338b7403","input_length":5742,"output_length":522,"hash_ids":[2480122,2480123,2480124,2480125,2480126,2480127,2480128,2480129,2480130,2480131,2480132,2480133],"delay":460.5} +{"session_id":"sess-fb30338b7403","input_length":3526,"output_length":506,"hash_ids":[2480134,2480135,2480136,2480137,2480138,2480139,2480140],"delay":2061.7} +{"session_id":"sess-fb30338b7403","input_length":135,"output_length":280,"hash_ids":[2480141],"delay":463.6} +{"session_id":"sess-fb30338b7403","input_length":3545,"output_length":228,"hash_ids":[2480142,2480143,2480144,2480145,2480146,2480147,2480148],"delay":352.4} +{"session_id":"sess-fb30338b7403","input_length":1640,"output_length":183,"hash_ids":[2480149,2480150,2480151,2480152],"delay":4653.6} +{"session_id":"sess-fb30338b7403","input_length":289,"output_length":170,"hash_ids":[2480153],"delay":758.5} +{"session_id":"sess-fb30338b7403","input_length":356,"output_length":254,"hash_ids":[2480154],"delay":1005.9} +{"session_id":"sess-fb30338b7403","input_length":2174,"output_length":206,"hash_ids":[2480155,2480156,2480157,2480158,2480159],"delay":908.9} +{"session_id":"sess-fb30338b7403","input_length":605,"output_length":100,"hash_ids":[2480160,2480161],"delay":38235.9} +{"session_id":"sess-0b87cbae0f45","input_length":52282,"output_length":875,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502],"timestamp":0.0,"group_id":17} +{"session_id":"sess-0b87cbae0f45","input_length":1746,"output_length":173,"hash_ids":[2480162,2480163,2480164,2480165],"delay":12096.9} +{"session_id":"sess-0b87cbae0f45","input_length":1904,"output_length":144,"hash_ids":[2480166,2480167,2480168,2480169],"delay":590.6} +{"session_id":"sess-0b87cbae0f45","input_length":3087,"output_length":446,"hash_ids":[2480170,2480171,2480172,2480173,2480174,2480175,2480176],"delay":1424.7} +{"session_id":"sess-0b87cbae0f45","input_length":831,"output_length":265,"hash_ids":[2480177,2480178],"delay":575.8} +{"session_id":"sess-0b87cbae0f45","input_length":3099,"output_length":119,"hash_ids":[2480179,2480180,2480181,2480182,2480183,2480184,2480185],"delay":2597.9} +{"session_id":"sess-0b87cbae0f45","input_length":53,"output_length":658,"hash_ids":[2480186],"delay":1527.2} +{"session_id":"sess-0b87cbae0f45","input_length":1224,"output_length":344,"hash_ids":[2480187,2480188,2480189],"delay":2889.7} +{"session_id":"sess-0b87cbae0f45","input_length":603,"output_length":818,"hash_ids":[2480190,2480191],"delay":564.6} +{"session_id":"sess-0b87cbae0f45","input_length":2229,"output_length":548,"hash_ids":[2480192,2480193,2480194,2480195,2480196],"delay":577.8} +{"session_id":"sess-0b87cbae0f45","input_length":431,"output_length":272,"hash_ids":[2480197],"delay":1245.4} +{"session_id":"sess-0b87cbae0f45","input_length":1796,"output_length":288,"hash_ids":[2480198,2480199,2480200,2480201],"delay":6187.8} +{"session_id":"sess-0b87cbae0f45","input_length":4210,"output_length":200,"hash_ids":[2480202,2480203,2480204,2480205,2480206,2480207,2480208,2480209,2480210],"delay":2060.8} +{"session_id":"sess-0b87cbae0f45","input_length":882,"output_length":191,"hash_ids":[2480211,2480212],"delay":175.1} +{"session_id":"sess-0b87cbae0f45","input_length":3952,"output_length":1106,"hash_ids":[2480213,2480214,2480215,2480216,2480217,2480218,2480219,2480220],"delay":995.4} +{"session_id":"sess-0b87cbae0f45","input_length":2281,"output_length":1330,"hash_ids":[2480221,2480222,2480223,2480224,2480225],"delay":10185.4} +{"session_id":"sess-0b87cbae0f45","input_length":3274,"output_length":383,"hash_ids":[2480226,2480227,2480228,2480229,2480230,2480231,2480232],"delay":1871.2} +{"session_id":"sess-0b87cbae0f45","input_length":3878,"output_length":212,"hash_ids":[2480233,2480234,2480235,2480236,2480237,2480238,2480239,2480240],"delay":250.8} +{"session_id":"sess-0b87cbae0f45","input_length":124,"output_length":367,"hash_ids":[2480241],"delay":1850.2} +{"session_id":"sess-0b87cbae0f45","input_length":695,"output_length":2474,"hash_ids":[2480242,2480243],"delay":1859.8} +{"session_id":"sess-0b87cbae0f45","input_length":1179,"output_length":387,"hash_ids":[2480244,2480245,2480246],"delay":1236.3} +{"session_id":"sess-0b87cbae0f45","input_length":7068,"output_length":646,"hash_ids":[2480247,2480248,2480249,2480250,2480251,2480252,2480253,2480254,2480255,2480256,2480257,2480258,2480259,2480260],"delay":26395.1} +{"session_id":"sess-0b87cbae0f45","input_length":1026,"output_length":511,"hash_ids":[2480261,2480262,2480263],"delay":1258.7} +{"session_id":"sess-0b87cbae0f45","input_length":604,"output_length":289,"hash_ids":[2480264,2480265],"delay":2202.0} +{"session_id":"sess-0b87cbae0f45","input_length":4358,"output_length":230,"hash_ids":[2480266,2480267,2480268,2480269,2480270,2480271,2480272,2480273,2480274],"delay":331.2} +{"session_id":"sess-0b87cbae0f45","input_length":3363,"output_length":53,"hash_ids":[2480275,2480276,2480277,2480278,2480279,2480280,2480281],"delay":423.2} +{"session_id":"sess-0b87cbae0f45","input_length":2654,"output_length":245,"hash_ids":[2480282,2480283,2480284,2480285,2480286,2480287],"delay":230.6} +{"session_id":"sess-0b87cbae0f45","input_length":1731,"output_length":942,"hash_ids":[2480288,2480289,2480290,2480291],"delay":364.2} +{"session_id":"sess-22f90868b7a3","input_length":63604,"output_length":2194,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2488063,2488064,2488065,2488066,2488067,2488068,2488069,2488070,2488071,2488072,2488073,2488074,2488075,2488076,2488077,2488078,2488079,2488080,2488081,2488082,2488083,2488084],"timestamp":0.0,"group_id":4} +{"session_id":"sess-22f90868b7a3","input_length":265,"output_length":733,"hash_ids":[2488085],"delay":51937.6} +{"session_id":"sess-22f90868b7a3","input_length":8261,"output_length":312,"hash_ids":[2488086,2488087,2488088,2488089,2488090,2488091,2488092,2488093,2488094,2488095,2488096,2488097,2488098,2488099,2488100,2488101,2488102],"delay":19691.2} +{"session_id":"sess-22f90868b7a3","input_length":2375,"output_length":1348,"hash_ids":[2488103,2488104,2488105,2488106,2488107],"delay":688.6} +{"session_id":"sess-22f90868b7a3","input_length":413,"output_length":403,"hash_ids":[2488108],"delay":702.2} +{"session_id":"sess-22f90868b7a3","input_length":2588,"output_length":68,"hash_ids":[2488109,2488110,2488111,2488112,2488113,2488114],"delay":454.2} +{"session_id":"sess-22f90868b7a3","input_length":5740,"output_length":1576,"hash_ids":[2488115,2488116,2488117,2488118,2488119,2488120,2488121,2488122,2488123,2488124,2488125,2488126],"delay":9830.4} +{"session_id":"sess-22f90868b7a3","input_length":4713,"output_length":146,"hash_ids":[2488127,2488128,2488129,2488130,2488131,2488132,2488133,2488134,2488135,2488136],"delay":7478.5} +{"session_id":"sess-22f90868b7a3","input_length":3807,"output_length":447,"hash_ids":[2488137,2488138,2488139,2488140,2488141,2488142,2488143,2488144],"delay":12359.2} +{"session_id":"sess-22f90868b7a3","input_length":872,"output_length":81,"hash_ids":[2488145,2488146],"delay":347.4} +{"session_id":"sess-22f90868b7a3","input_length":1071,"output_length":539,"hash_ids":[2488147,2488148,2488149],"delay":251.9} +{"session_id":"sess-22f90868b7a3","input_length":5619,"output_length":487,"hash_ids":[2488150,2488151,2488152,2488153,2488154,2488155,2488156,2488157,2488158,2488159,2488160],"delay":428.4} +{"session_id":"sess-22f90868b7a3","input_length":1789,"output_length":109,"hash_ids":[2488161,2488162,2488163,2488164],"delay":306.3} +{"session_id":"sess-22f90868b7a3","input_length":734,"output_length":228,"hash_ids":[2488165,2488166],"delay":253.4} +{"session_id":"sess-22f90868b7a3","input_length":9786,"output_length":365,"hash_ids":[2488167,2488168,2488169,2488170,2488171,2488172,2488173,2488174,2488175,2488176,2488177,2488178,2488179,2488180,2488181,2488182,2488183,2488184,2488185,2488186],"delay":454.3} +{"session_id":"sess-22f90868b7a3","input_length":4409,"output_length":75,"hash_ids":[2488187,2488188,2488189,2488190,2488191,2488192,2488193,2488194,2488195],"delay":227.6} +{"session_id":"sess-22f90868b7a3","input_length":2563,"output_length":35,"hash_ids":[2488196,2488197,2488198,2488199,2488200,2488201],"delay":220.8} +{"session_id":"sess-22f90868b7a3","input_length":3034,"output_length":506,"hash_ids":[2488202,2488203,2488204,2488205,2488206,2488207],"delay":9417.5} +{"session_id":"sess-4b8fed8f0f5a","input_length":57585,"output_length":697,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2492063,2492064,2492065,2492066,2492067,2492068,2492069,2492070,2492071,2492072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4b8fed8f0f5a","input_length":4300,"output_length":404,"hash_ids":[2492073,2492074,2492075,2492076,2492077,2492078,2492079,2492080,2492081],"delay":948.8} +{"session_id":"sess-4b8fed8f0f5a","input_length":5092,"output_length":313,"hash_ids":[2492082,2492083,2492084,2492085,2492086,2492087,2492088,2492089,2492090,2492091],"delay":754.3} +{"session_id":"sess-ecc1ed947871","input_length":56843,"output_length":124,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,2496063,2496064,2496065,2496066,2496067,2496068,2496069,2496070,2496071],"timestamp":0.0,"group_id":29} +{"session_id":"sess-a72eeb8e03ee","input_length":56080,"output_length":734,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2500063,2500064,2500065,2500066,2500067,2500068,2500069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a72eeb8e03ee","input_length":3488,"output_length":305,"hash_ids":[2500070,2500071,2500072,2500073,2500074,2500075,2500076],"delay":10618.4} +{"session_id":"sess-a72eeb8e03ee","input_length":3234,"output_length":143,"hash_ids":[2500077,2500078,2500079,2500080,2500081,2500082,2500083],"delay":66456.4} +{"session_id":"sess-84865002e862","input_length":53739,"output_length":1076,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2504063,2504064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-84865002e862","input_length":7598,"output_length":230,"hash_ids":[2504065,2504066,2504067,2504068,2504069,2504070,2504071,2504072,2504073,2504074,2504075,2504076,2504077,2504078,2504079],"delay":709.4} +{"session_id":"sess-84865002e862","input_length":2473,"output_length":277,"hash_ids":[2504080,2504081,2504082,2504083,2504084],"delay":3551.7} +{"session_id":"sess-84865002e862","input_length":2224,"output_length":806,"hash_ids":[2504085,2504086,2504087,2504088,2504089],"delay":360.4} +{"session_id":"sess-84865002e862","input_length":5090,"output_length":144,"hash_ids":[2504090,2504091,2504092,2504093,2504094,2504095,2504096,2504097,2504098,2504099],"delay":3354.9} +{"session_id":"sess-84865002e862","input_length":355,"output_length":594,"hash_ids":[2504100],"delay":1409.2} +{"session_id":"sess-84865002e862","input_length":847,"output_length":224,"hash_ids":[2504101,2504102],"delay":1583.0} +{"session_id":"sess-84865002e862","input_length":3821,"output_length":844,"hash_ids":[2504103,2504104,2504105,2504106,2504107,2504108,2504109,2504110],"delay":32615.8} +{"session_id":"sess-84865002e862","input_length":323,"output_length":56,"hash_ids":[2504111],"delay":11677.7} +{"session_id":"sess-84865002e862","input_length":4891,"output_length":241,"hash_ids":[2504112,2504113,2504114,2504115,2504116,2504117,2504118,2504119,2504120,2504121],"delay":8849.3} +{"session_id":"sess-84865002e862","input_length":701,"output_length":722,"hash_ids":[2504122,2504123],"delay":21665.5} +{"session_id":"sess-84865002e862","input_length":3667,"output_length":262,"hash_ids":[2504124,2504125,2504126,2504127,2504128,2504129,2504130,2504131],"delay":12621.2} +{"session_id":"sess-84865002e862","input_length":2046,"output_length":280,"hash_ids":[2504132,2504133,2504134,2504135],"delay":643.5} +{"session_id":"sess-84865002e862","input_length":627,"output_length":736,"hash_ids":[2504136,2504137],"delay":2289.1} +{"session_id":"sess-84865002e862","input_length":1382,"output_length":431,"hash_ids":[2504138,2504139,2504140],"delay":15338.3} +{"session_id":"sess-84865002e862","input_length":1741,"output_length":101,"hash_ids":[2504141,2504142,2504143,2504144],"delay":1369.8} +{"session_id":"sess-84865002e862","input_length":383,"output_length":106,"hash_ids":[2504145],"delay":8619.9} +{"session_id":"sess-84865002e862","input_length":7525,"output_length":1471,"hash_ids":[2504146,2504147,2504148,2504149,2504150,2504151,2504152,2504153,2504154,2504155,2504156,2504157,2504158,2504159,2504160],"delay":8024.2} +{"session_id":"sess-84865002e862","input_length":794,"output_length":818,"hash_ids":[2504161,2504162],"delay":1159.9} +{"session_id":"sess-84865002e862","input_length":811,"output_length":74,"hash_ids":[2504163,2504164],"delay":27473.1} +{"session_id":"sess-84865002e862","input_length":694,"output_length":88,"hash_ids":[2504165,2504166],"delay":364.8} +{"session_id":"sess-84865002e862","input_length":1309,"output_length":495,"hash_ids":[2504167,2504168,2504169],"delay":635.6} +{"session_id":"sess-84865002e862","input_length":976,"output_length":64,"hash_ids":[2504170,2504171],"delay":5617.1} +{"session_id":"sess-84865002e862","input_length":6196,"output_length":655,"hash_ids":[2504172,2504173,2504174,2504175,2504176,2504177,2504178,2504179,2504180,2504181,2504182,2504183,2504184],"delay":29960.9} +{"session_id":"sess-84865002e862","input_length":2699,"output_length":636,"hash_ids":[2504185,2504186,2504187,2504188,2504189,2504190],"delay":444.9} +{"session_id":"sess-84865002e862","input_length":2285,"output_length":1794,"hash_ids":[2504191,2504192,2504193,2504194,2504195],"delay":2335.5} +{"session_id":"sess-84865002e862","input_length":1542,"output_length":2943,"hash_ids":[2504196,2504197,2504198,2504199],"delay":1643.8} +{"session_id":"sess-e857dda6aa78","input_length":56920,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2508063,2508064,2508065,2508066,2508067,2508068,2508069,2508070,2508071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e857dda6aa78","input_length":407,"output_length":416,"hash_ids":[2508072],"delay":321.6} +{"session_id":"sess-e857dda6aa78","input_length":3116,"output_length":830,"hash_ids":[2508073,2508074,2508075,2508076,2508077,2508078,2508079],"delay":16708.7} +{"session_id":"sess-e857dda6aa78","input_length":3114,"output_length":348,"hash_ids":[2508080,2508081,2508082,2508083,2508084,2508085,2508086],"delay":267.9} +{"session_id":"sess-e857dda6aa78","input_length":5849,"output_length":778,"hash_ids":[2508087,2508088,2508089,2508090,2508091,2508092,2508093,2508094,2508095,2508096,2508097,2508098],"delay":1705.7} +{"session_id":"sess-e857dda6aa78","input_length":3699,"output_length":335,"hash_ids":[2508099,2508100,2508101,2508102,2508103,2508104,2508105,2508106],"delay":2106.6} +{"session_id":"sess-e857dda6aa78","input_length":207,"output_length":192,"hash_ids":[2508107],"delay":7379.8} +{"session_id":"sess-e857dda6aa78","input_length":825,"output_length":245,"hash_ids":[2508108,2508109],"delay":13585.0} +{"session_id":"sess-02c604dcdd1b","input_length":58076,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,2512063,2512064,2512065,2512066,2512067,2512068,2512069,2512070,2512071,2512072,2512073],"timestamp":0.0,"group_id":32} +{"session_id":"sess-02c604dcdd1b","input_length":2462,"output_length":489,"hash_ids":[2512074,2512075,2512076,2512077,2512078],"delay":1652.6} +{"session_id":"sess-02c604dcdd1b","input_length":4583,"output_length":49,"hash_ids":[2512079,2512080,2512081,2512082,2512083,2512084,2512085,2512086,2512087],"delay":1383.3} +{"session_id":"sess-02c604dcdd1b","input_length":824,"output_length":381,"hash_ids":[2512088,2512089],"delay":566.8} +{"session_id":"sess-02c604dcdd1b","input_length":980,"output_length":744,"hash_ids":[2512090,2512091],"delay":152.3} +{"session_id":"sess-02c604dcdd1b","input_length":1573,"output_length":339,"hash_ids":[2512092,2512093,2512094,2512095],"delay":207.4} +{"session_id":"sess-02c604dcdd1b","input_length":9286,"output_length":433,"hash_ids":[2512096,2512097,2512098,2512099,2512100,2512101,2512102,2512103,2512104,2512105,2512106,2512107,2512108,2512109,2512110,2512111,2512112,2512113,2512114],"delay":1623.3} +{"session_id":"sess-02c604dcdd1b","input_length":857,"output_length":348,"hash_ids":[2512115,2512116],"delay":644.9} +{"session_id":"sess-02c604dcdd1b","input_length":4621,"output_length":120,"hash_ids":[2512117,2512118,2512119,2512120,2512121,2512122,2512123,2512124,2512125,2512126],"delay":16242.8} +{"session_id":"sess-02c604dcdd1b","input_length":968,"output_length":98,"hash_ids":[2512127,2512128],"delay":496.7} +{"session_id":"sess-02c604dcdd1b","input_length":480,"output_length":313,"hash_ids":[2512129],"delay":2022.0} +{"session_id":"sess-02c604dcdd1b","input_length":4654,"output_length":560,"hash_ids":[2512130,2512131,2512132,2512133,2512134,2512135,2512136,2512137,2512138,2512139],"delay":10040.7} +{"session_id":"sess-02c604dcdd1b","input_length":1641,"output_length":792,"hash_ids":[2512140,2512141,2512142,2512143],"delay":16926.5} +{"session_id":"sess-02c604dcdd1b","input_length":1087,"output_length":225,"hash_ids":[2512144,2512145,2512146],"delay":3625.0} +{"session_id":"sess-02c604dcdd1b","input_length":570,"output_length":109,"hash_ids":[2512147,2512148],"delay":311.4} +{"session_id":"sess-02c604dcdd1b","input_length":1327,"output_length":144,"hash_ids":[2512149,2512150,2512151],"delay":2606.7} +{"session_id":"sess-02c604dcdd1b","input_length":6588,"output_length":225,"hash_ids":[2512152,2512153,2512154,2512155,2512156,2512157,2512158,2512159,2512160,2512161,2512162,2512163,2512164],"delay":529.4} +{"session_id":"sess-02c604dcdd1b","input_length":2640,"output_length":835,"hash_ids":[2512165,2512166,2512167,2512168,2512169,2512170],"delay":33826.5} +{"session_id":"sess-02c604dcdd1b","input_length":2966,"output_length":1142,"hash_ids":[2512171,2512172,2512173,2512174,2512175,2512176],"delay":592.2} +{"session_id":"sess-02c604dcdd1b","input_length":761,"output_length":770,"hash_ids":[2512177,2512178],"delay":386.7} +{"session_id":"sess-02c604dcdd1b","input_length":1367,"output_length":925,"hash_ids":[2512179,2512180,2512181],"delay":468.4} +{"session_id":"sess-02c604dcdd1b","input_length":3263,"output_length":1393,"hash_ids":[2512182,2512183,2512184,2512185,2512186,2512187,2512188],"delay":289.9} +{"session_id":"sess-e047e7cdba44","input_length":52858,"output_length":379,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2516063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e047e7cdba44","input_length":3430,"output_length":268,"hash_ids":[2516064,2516065,2516066,2516067,2516068,2516069,2516070],"delay":553.4} +{"session_id":"sess-e047e7cdba44","input_length":4065,"output_length":1926,"hash_ids":[2516071,2516072,2516073,2516074,2516075,2516076,2516077,2516078],"delay":59543.4} +{"session_id":"sess-e047e7cdba44","input_length":766,"output_length":508,"hash_ids":[2516079,2516080],"delay":1115.1} +{"session_id":"sess-e047e7cdba44","input_length":516,"output_length":1110,"hash_ids":[2516081,2516082],"delay":729.6} +{"session_id":"sess-e047e7cdba44","input_length":4193,"output_length":165,"hash_ids":[2516083,2516084,2516085,2516086,2516087,2516088,2516089,2516090,2516091],"delay":1235.5} +{"session_id":"sess-e047e7cdba44","input_length":5525,"output_length":588,"hash_ids":[2516092,2516093,2516094,2516095,2516096,2516097,2516098,2516099,2516100,2516101,2516102],"delay":35654.6} +{"session_id":"sess-e047e7cdba44","input_length":3328,"output_length":193,"hash_ids":[2516103,2516104,2516105,2516106,2516107,2516108,2516109],"delay":7480.6} +{"session_id":"sess-e047e7cdba44","input_length":1165,"output_length":136,"hash_ids":[2516110,2516111,2516112],"delay":2153.0} +{"session_id":"sess-e047e7cdba44","input_length":2390,"output_length":106,"hash_ids":[2516113,2516114,2516115,2516116,2516117],"delay":1065.8} +{"session_id":"sess-e047e7cdba44","input_length":7090,"output_length":137,"hash_ids":[2516118,2516119,2516120,2516121,2516122,2516123,2516124,2516125,2516126,2516127,2516128,2516129,2516130,2516131],"delay":1489.9} +{"session_id":"sess-e047e7cdba44","input_length":3555,"output_length":261,"hash_ids":[2516132,2516133,2516134,2516135,2516136,2516137,2516138],"delay":948.2} +{"session_id":"sess-e047e7cdba44","input_length":2949,"output_length":36,"hash_ids":[2516139,2516140,2516141,2516142,2516143,2516144],"delay":24636.4} +{"session_id":"sess-e047e7cdba44","input_length":5990,"output_length":43,"hash_ids":[2516145,2516146,2516147,2516148,2516149,2516150,2516151,2516152,2516153,2516154,2516155,2516156],"delay":722.6} +{"session_id":"sess-e047e7cdba44","input_length":373,"output_length":378,"hash_ids":[2516157],"delay":2072.0} +{"session_id":"sess-e047e7cdba44","input_length":3090,"output_length":686,"hash_ids":[2516158,2516159,2516160,2516161,2516162,2516163,2516164],"delay":2514.2} +{"session_id":"sess-e047e7cdba44","input_length":317,"output_length":687,"hash_ids":[2516165],"delay":1330.5} +{"session_id":"sess-aa46809b390d","input_length":60963,"output_length":362,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2520063,2520064,2520065,2520066,2520067,2520068,2520069,2520070,2520071,2520072,2520073,2520074,2520075,2520076,2520077,2520078,2520079],"timestamp":0.0,"group_id":3} +{"session_id":"sess-aa46809b390d","input_length":928,"output_length":173,"hash_ids":[2520080,2520081],"delay":564.8} +{"session_id":"sess-aa46809b390d","input_length":2602,"output_length":58,"hash_ids":[2520082,2520083,2520084,2520085,2520086,2520087],"delay":56387.8} +{"session_id":"sess-aa46809b390d","input_length":459,"output_length":287,"hash_ids":[2520088],"delay":2834.1} +{"session_id":"sess-aa46809b390d","input_length":887,"output_length":236,"hash_ids":[2520089,2520090],"delay":420.5} +{"session_id":"sess-aa46809b390d","input_length":5208,"output_length":138,"hash_ids":[2520091,2520092,2520093,2520094,2520095,2520096,2520097,2520098,2520099,2520100,2520101],"delay":25119.0} +{"session_id":"sess-aa46809b390d","input_length":452,"output_length":1081,"hash_ids":[2520102],"delay":2603.2} +{"session_id":"sess-aa46809b390d","input_length":2450,"output_length":739,"hash_ids":[2520103,2520104,2520105,2520106,2520107],"delay":31631.2} +{"session_id":"sess-aa46809b390d","input_length":1111,"output_length":416,"hash_ids":[2520108,2520109,2520110],"delay":1026.9} +{"session_id":"sess-aa46809b390d","input_length":2061,"output_length":156,"hash_ids":[2520111,2520112,2520113,2520114,2520115],"delay":26627.9} +{"session_id":"sess-aa46809b390d","input_length":2813,"output_length":607,"hash_ids":[2520116,2520117,2520118,2520119,2520120,2520121],"delay":1586.6} +{"session_id":"sess-aa46809b390d","input_length":2546,"output_length":450,"hash_ids":[2520122,2520123,2520124,2520125,2520126],"delay":1488.5} +{"session_id":"sess-aa46809b390d","input_length":2261,"output_length":175,"hash_ids":[2520127,2520128,2520129,2520130,2520131],"delay":362.7} +{"session_id":"sess-aa46809b390d","input_length":1016,"output_length":218,"hash_ids":[2520132,2520133],"delay":1413.8} +{"session_id":"sess-aa46809b390d","input_length":192,"output_length":174,"hash_ids":[2520134],"delay":10682.0} +{"session_id":"sess-aa46809b390d","input_length":804,"output_length":223,"hash_ids":[2520135,2520136],"delay":464.6} +{"session_id":"sess-aa46809b390d","input_length":2746,"output_length":213,"hash_ids":[2520137,2520138,2520139,2520140,2520141,2520142],"delay":587.0} +{"session_id":"sess-aa46809b390d","input_length":3918,"output_length":141,"hash_ids":[2520143,2520144,2520145,2520146,2520147,2520148,2520149,2520150],"delay":1569.2} +{"session_id":"sess-aa46809b390d","input_length":3132,"output_length":585,"hash_ids":[2520151,2520152,2520153,2520154,2520155,2520156,2520157],"delay":680.1} +{"session_id":"sess-aa46809b390d","input_length":2125,"output_length":98,"hash_ids":[2520158,2520159,2520160,2520161,2520162],"delay":358.2} +{"session_id":"sess-aa46809b390d","input_length":1742,"output_length":387,"hash_ids":[2520163,2520164,2520165,2520166],"delay":749.4} +{"session_id":"sess-aa46809b390d","input_length":3499,"output_length":823,"hash_ids":[2520167,2520168,2520169,2520170,2520171,2520172,2520173],"delay":313.8} +{"session_id":"sess-aa46809b390d","input_length":428,"output_length":150,"hash_ids":[2520174],"delay":113.9} +{"session_id":"sess-aa46809b390d","input_length":1075,"output_length":93,"hash_ids":[2520175,2520176,2520177],"delay":443.7} +{"session_id":"sess-aa46809b390d","input_length":2506,"output_length":175,"hash_ids":[2520178,2520179,2520180,2520181,2520182],"delay":2854.4} +{"session_id":"sess-aa46809b390d","input_length":1660,"output_length":1555,"hash_ids":[2520183,2520184,2520185,2520186],"delay":733.8} +{"session_id":"sess-aa46809b390d","input_length":773,"output_length":30,"hash_ids":[2520187,2520188],"delay":153.5} +{"session_id":"sess-5f7a68d07e63","input_length":53121,"output_length":183,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2524063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5f7a68d07e63","input_length":5560,"output_length":277,"hash_ids":[2524064,2524065,2524066,2524067,2524068,2524069,2524070,2524071,2524072,2524073,2524074],"delay":14584.7} +{"session_id":"sess-5f7a68d07e63","input_length":3256,"output_length":542,"hash_ids":[2524075,2524076,2524077,2524078,2524079,2524080,2524081],"delay":1843.1} +{"session_id":"sess-5f7a68d07e63","input_length":4777,"output_length":507,"hash_ids":[2524082,2524083,2524084,2524085,2524086,2524087,2524088,2524089,2524090,2524091],"delay":35012.2} +{"session_id":"sess-5f7a68d07e63","input_length":1269,"output_length":361,"hash_ids":[2524092,2524093,2524094],"delay":3669.7} +{"session_id":"sess-5f7a68d07e63","input_length":354,"output_length":1692,"hash_ids":[2524095],"delay":405.1} +{"session_id":"sess-5f7a68d07e63","input_length":327,"output_length":496,"hash_ids":[2524096],"delay":10738.2} +{"session_id":"sess-5f7a68d07e63","input_length":3812,"output_length":682,"hash_ids":[2524097,2524098,2524099,2524100,2524101,2524102,2524103,2524104],"delay":732.2} +{"session_id":"sess-5f7a68d07e63","input_length":2325,"output_length":40,"hash_ids":[2524105,2524106,2524107,2524108,2524109],"delay":1216.3} +{"session_id":"sess-5f7a68d07e63","input_length":891,"output_length":288,"hash_ids":[2524110,2524111],"delay":139.2} +{"session_id":"sess-5f7a68d07e63","input_length":447,"output_length":1033,"hash_ids":[2524112],"delay":4396.3} +{"session_id":"sess-5f7a68d07e63","input_length":1058,"output_length":104,"hash_ids":[2524113,2524114,2524115],"delay":584.2} +{"session_id":"sess-5f7a68d07e63","input_length":610,"output_length":572,"hash_ids":[2524116,2524117],"delay":489.5} +{"session_id":"sess-5f7a68d07e63","input_length":734,"output_length":122,"hash_ids":[2524118,2524119],"delay":2644.4} +{"session_id":"sess-5f7a68d07e63","input_length":5889,"output_length":47,"hash_ids":[2524120,2524121,2524122,2524123,2524124,2524125,2524126,2524127,2524128,2524129,2524130,2524131],"delay":651.6} +{"session_id":"sess-5f7a68d07e63","input_length":1691,"output_length":159,"hash_ids":[2524132,2524133,2524134,2524135],"delay":485.4} +{"session_id":"sess-5f7a68d07e63","input_length":1717,"output_length":90,"hash_ids":[2524136,2524137,2524138,2524139],"delay":879.2} +{"session_id":"sess-5f7a68d07e63","input_length":643,"output_length":354,"hash_ids":[2524140,2524141],"delay":1217.5} +{"session_id":"sess-5f7a68d07e63","input_length":2388,"output_length":261,"hash_ids":[2524142,2524143,2524144,2524145,2524146],"delay":311.3} +{"session_id":"sess-5f7a68d07e63","input_length":2560,"output_length":698,"hash_ids":[2524147,2524148,2524149,2524150,2524151],"delay":717.6} +{"session_id":"sess-5f7a68d07e63","input_length":468,"output_length":240,"hash_ids":[2524152],"delay":479.8} +{"session_id":"sess-5f7a68d07e63","input_length":147,"output_length":83,"hash_ids":[2524153],"delay":10787.6} +{"session_id":"sess-5f7a68d07e63","input_length":6068,"output_length":170,"hash_ids":[2524154,2524155,2524156,2524157,2524158,2524159,2524160,2524161,2524162,2524163,2524164,2524165],"delay":15286.8} +{"session_id":"sess-5f7a68d07e63","input_length":922,"output_length":195,"hash_ids":[2524166,2524167],"delay":508.6} +{"session_id":"sess-5f7a68d07e63","input_length":4952,"output_length":612,"hash_ids":[2524168,2524169,2524170,2524171,2524172,2524173,2524174,2524175,2524176,2524177],"delay":990.7} +{"session_id":"sess-5f7a68d07e63","input_length":597,"output_length":1449,"hash_ids":[2524178,2524179],"delay":829.1} +{"session_id":"sess-5f7a68d07e63","input_length":1692,"output_length":767,"hash_ids":[2524180,2524181,2524182,2524183],"delay":1390.6} +{"session_id":"sess-5f7a68d07e63","input_length":6541,"output_length":344,"hash_ids":[2524184,2524185,2524186,2524187,2524188,2524189,2524190,2524191,2524192,2524193,2524194,2524195,2524196],"delay":100.1} +{"session_id":"sess-dbe6c897e9d4","input_length":52923,"output_length":612,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2528063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dbe6c897e9d4","input_length":8397,"output_length":40,"hash_ids":[2528064,2528065,2528066,2528067,2528068,2528069,2528070,2528071,2528072,2528073,2528074,2528075,2528076,2528077,2528078,2528079,2528080],"delay":2902.4} +{"session_id":"sess-dbe6c897e9d4","input_length":412,"output_length":553,"hash_ids":[2528081],"delay":2381.8} +{"session_id":"sess-dbe6c897e9d4","input_length":3044,"output_length":179,"hash_ids":[2528082,2528083,2528084,2528085,2528086,2528087],"delay":3785.7} +{"session_id":"sess-dbe6c897e9d4","input_length":358,"output_length":1069,"hash_ids":[2528088],"delay":3295.0} +{"session_id":"sess-dbe6c897e9d4","input_length":1120,"output_length":689,"hash_ids":[2528089,2528090,2528091],"delay":832.8} +{"session_id":"sess-dbe6c897e9d4","input_length":6545,"output_length":1201,"hash_ids":[2528092,2528093,2528094,2528095,2528096,2528097,2528098,2528099,2528100,2528101,2528102,2528103,2528104],"delay":246.9} +{"session_id":"sess-dbe6c897e9d4","input_length":378,"output_length":229,"hash_ids":[2528105],"delay":2809.3} +{"session_id":"sess-dbe6c897e9d4","input_length":2454,"output_length":556,"hash_ids":[2528106,2528107,2528108,2528109,2528110],"delay":14047.0} +{"session_id":"sess-dbe6c897e9d4","input_length":5266,"output_length":635,"hash_ids":[2528111,2528112,2528113,2528114,2528115,2528116,2528117,2528118,2528119,2528120,2528121],"delay":449.8} +{"session_id":"sess-dbe6c897e9d4","input_length":2632,"output_length":1561,"hash_ids":[2528122,2528123,2528124,2528125,2528126,2528127],"delay":770.5} +{"session_id":"sess-dbe6c897e9d4","input_length":888,"output_length":30,"hash_ids":[2528128,2528129],"delay":453.4} +{"session_id":"sess-dbe6c897e9d4","input_length":1183,"output_length":157,"hash_ids":[2528130,2528131,2528132],"delay":1520.3} +{"session_id":"sess-dbe6c897e9d4","input_length":970,"output_length":352,"hash_ids":[2528133,2528134],"delay":967.1} +{"session_id":"sess-dbe6c897e9d4","input_length":6093,"output_length":194,"hash_ids":[2528135,2528136,2528137,2528138,2528139,2528140,2528141,2528142,2528143,2528144,2528145,2528146],"delay":443.9} +{"session_id":"sess-dbe6c897e9d4","input_length":5442,"output_length":293,"hash_ids":[2528147,2528148,2528149,2528150,2528151,2528152,2528153,2528154,2528155,2528156,2528157],"delay":12938.8} +{"session_id":"sess-dbe6c897e9d4","input_length":1578,"output_length":356,"hash_ids":[2528158,2528159,2528160,2528161],"delay":355.8} +{"session_id":"sess-dbe6c897e9d4","input_length":2706,"output_length":289,"hash_ids":[2528162,2528163,2528164,2528165,2528166,2528167],"delay":300.2} +{"session_id":"sess-dbe6c897e9d4","input_length":3038,"output_length":323,"hash_ids":[2528168,2528169,2528170,2528171,2528172,2528173],"delay":1755.4} +{"session_id":"sess-dbe6c897e9d4","input_length":409,"output_length":64,"hash_ids":[2528174],"delay":207.0} +{"session_id":"sess-dbe6c897e9d4","input_length":1099,"output_length":747,"hash_ids":[2528175,2528176,2528177],"delay":527.7} +{"session_id":"sess-dbe6c897e9d4","input_length":6169,"output_length":674,"hash_ids":[2528178,2528179,2528180,2528181,2528182,2528183,2528184,2528185,2528186,2528187,2528188,2528189,2528190],"delay":5824.5} +{"session_id":"sess-dbe6c897e9d4","input_length":4450,"output_length":620,"hash_ids":[2528191,2528192,2528193,2528194,2528195,2528196,2528197,2528198,2528199],"delay":630.6} +{"session_id":"sess-1ea751b979e1","input_length":53310,"output_length":330,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2532063,2532064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1ea751b979e1","input_length":2409,"output_length":465,"hash_ids":[2532065,2532066,2532067,2532068,2532069],"delay":1682.1} +{"session_id":"sess-1ea751b979e1","input_length":2420,"output_length":179,"hash_ids":[2532070,2532071,2532072,2532073,2532074],"delay":1493.3} +{"session_id":"sess-1ea751b979e1","input_length":1236,"output_length":83,"hash_ids":[2532075,2532076,2532077],"delay":726.6} +{"session_id":"sess-1ea751b979e1","input_length":2327,"output_length":281,"hash_ids":[2532078,2532079,2532080,2532081,2532082],"delay":2488.7} +{"session_id":"sess-1ea751b979e1","input_length":93,"output_length":174,"hash_ids":[2532083],"delay":978.5} +{"session_id":"sess-1ea751b979e1","input_length":5939,"output_length":285,"hash_ids":[2532084,2532085,2532086,2532087,2532088,2532089,2532090,2532091,2532092,2532093,2532094,2532095],"delay":18614.7} +{"session_id":"sess-1ea751b979e1","input_length":2030,"output_length":466,"hash_ids":[2532096,2532097,2532098,2532099],"delay":376.8} +{"session_id":"sess-1ea751b979e1","input_length":1389,"output_length":121,"hash_ids":[2532100,2532101,2532102],"delay":864.2} +{"session_id":"sess-1ea751b979e1","input_length":4630,"output_length":148,"hash_ids":[2532103,2532104,2532105,2532106,2532107,2532108,2532109,2532110,2532111,2532112],"delay":43158.9} +{"session_id":"sess-1ea751b979e1","input_length":1551,"output_length":87,"hash_ids":[2532113,2532114,2532115,2532116],"delay":1751.4} +{"session_id":"sess-1ea751b979e1","input_length":738,"output_length":222,"hash_ids":[2532117,2532118],"delay":681.0} +{"session_id":"sess-1ea751b979e1","input_length":407,"output_length":119,"hash_ids":[2532119],"delay":10562.4} +{"session_id":"sess-1ea751b979e1","input_length":7691,"output_length":301,"hash_ids":[2532120,2532121,2532122,2532123,2532124,2532125,2532126,2532127,2532128,2532129,2532130,2532131,2532132,2532133,2532134,2532135],"delay":212.5} +{"session_id":"sess-1ea751b979e1","input_length":1987,"output_length":151,"hash_ids":[2532136,2532137,2532138,2532139],"delay":902.1} +{"session_id":"sess-1ea751b979e1","input_length":5160,"output_length":98,"hash_ids":[2532140,2532141,2532142,2532143,2532144,2532145,2532146,2532147,2532148,2532149,2532150],"delay":1641.0} +{"session_id":"sess-1ea751b979e1","input_length":2501,"output_length":247,"hash_ids":[2532151,2532152,2532153,2532154,2532155],"delay":501.2} +{"session_id":"sess-1ea751b979e1","input_length":3249,"output_length":351,"hash_ids":[2532156,2532157,2532158,2532159,2532160,2532161,2532162],"delay":24962.7} +{"session_id":"sess-1ea751b979e1","input_length":5773,"output_length":164,"hash_ids":[2532163,2532164,2532165,2532166,2532167,2532168,2532169,2532170,2532171,2532172,2532173,2532174],"delay":4361.0} +{"session_id":"sess-1ea751b979e1","input_length":2206,"output_length":179,"hash_ids":[2532175,2532176,2532177,2532178,2532179],"delay":5730.9} +{"session_id":"sess-1ea751b979e1","input_length":220,"output_length":215,"hash_ids":[2532180],"delay":2464.0} +{"session_id":"sess-1ea751b979e1","input_length":1887,"output_length":607,"hash_ids":[2532181,2532182,2532183,2532184],"delay":875.3} +{"session_id":"sess-1ea751b979e1","input_length":103,"output_length":1259,"hash_ids":[2532185],"delay":355.0} +{"session_id":"sess-1ea751b979e1","input_length":1989,"output_length":116,"hash_ids":[2532186,2532187,2532188,2532189],"delay":215.4} +{"session_id":"sess-1ea751b979e1","input_length":670,"output_length":804,"hash_ids":[2532190,2532191],"delay":321.1} +{"session_id":"sess-1ea751b979e1","input_length":1801,"output_length":1872,"hash_ids":[2532192,2532193,2532194,2532195],"delay":1183.8} +{"session_id":"sess-1ea751b979e1","input_length":1010,"output_length":1141,"hash_ids":[2532196,2532197],"delay":590.3} +{"session_id":"sess-1ea751b979e1","input_length":286,"output_length":124,"hash_ids":[2532198],"delay":325.9} +{"session_id":"sess-1ea751b979e1","input_length":4132,"output_length":172,"hash_ids":[2532199,2532200,2532201,2532202,2532203,2532204,2532205,2532206,2532207],"delay":367.6} +{"session_id":"sess-2b3408d38309","input_length":58811,"output_length":760,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2536063,2536064,2536065,2536066,2536067,2536068,2536069,2536070,2536071,2536072,2536073,2536074],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2b3408d38309","input_length":3034,"output_length":2649,"hash_ids":[2536075,2536076,2536077,2536078,2536079,2536080],"delay":3594.9} +{"session_id":"sess-2b3408d38309","input_length":3744,"output_length":292,"hash_ids":[2536081,2536082,2536083,2536084,2536085,2536086,2536087,2536088],"delay":1254.3} +{"session_id":"sess-2b3408d38309","input_length":621,"output_length":189,"hash_ids":[2536089,2536090],"delay":2410.9} +{"session_id":"sess-2b3408d38309","input_length":2277,"output_length":544,"hash_ids":[2536091,2536092,2536093,2536094,2536095],"delay":9086.4} +{"session_id":"sess-2b3408d38309","input_length":4529,"output_length":389,"hash_ids":[2536096,2536097,2536098,2536099,2536100,2536101,2536102,2536103,2536104],"delay":1870.8} +{"session_id":"sess-2b3408d38309","input_length":1718,"output_length":498,"hash_ids":[2536105,2536106,2536107,2536108],"delay":1741.5} +{"session_id":"sess-2b3408d38309","input_length":2370,"output_length":372,"hash_ids":[2536109,2536110,2536111,2536112,2536113],"delay":379.7} +{"session_id":"sess-2b3408d38309","input_length":1518,"output_length":77,"hash_ids":[2536114,2536115,2536116],"delay":3163.7} +{"session_id":"sess-2b3408d38309","input_length":179,"output_length":1451,"hash_ids":[2536117],"delay":291.4} +{"session_id":"sess-2b3408d38309","input_length":1122,"output_length":418,"hash_ids":[2536118,2536119,2536120],"delay":1422.9} +{"session_id":"sess-2b3408d38309","input_length":483,"output_length":95,"hash_ids":[2536121],"delay":11943.8} +{"session_id":"sess-2b3408d38309","input_length":1715,"output_length":572,"hash_ids":[2536122,2536123,2536124,2536125],"delay":2573.7} +{"session_id":"sess-2b3408d38309","input_length":482,"output_length":350,"hash_ids":[2536126],"delay":469.4} +{"session_id":"sess-2b3408d38309","input_length":260,"output_length":455,"hash_ids":[2536127],"delay":584.5} +{"session_id":"sess-2b3408d38309","input_length":2210,"output_length":414,"hash_ids":[2536128,2536129,2536130,2536131,2536132],"delay":2275.4} +{"session_id":"sess-2b3408d38309","input_length":1696,"output_length":135,"hash_ids":[2536133,2536134,2536135,2536136],"delay":167.8} +{"session_id":"sess-2b3408d38309","input_length":847,"output_length":207,"hash_ids":[2536137,2536138],"delay":849.1} +{"session_id":"sess-254def583597","input_length":66313,"output_length":419,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2540063,2540064,2540065,2540066,2540067,2540068,2540069,2540070,2540071,2540072,2540073,2540074,2540075,2540076,2540077,2540078,2540079,2540080,2540081,2540082,2540083,2540084,2540085,2540086,2540087,2540088,2540089],"timestamp":0.0,"group_id":1} +{"session_id":"sess-254def583597","input_length":3880,"output_length":398,"hash_ids":[2540090,2540091,2540092,2540093,2540094,2540095,2540096,2540097],"delay":7451.1} +{"session_id":"sess-254def583597","input_length":307,"output_length":1330,"hash_ids":[2540098],"delay":1715.3} +{"session_id":"sess-0d9f96a13f0b","input_length":55204,"output_length":136,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2544063,2544064,2544065,2544066,2544067],"timestamp":0.0,"group_id":9} +{"session_id":"sess-0d9f96a13f0b","input_length":1058,"output_length":118,"hash_ids":[2544068,2544069,2544070],"delay":2737.8} +{"session_id":"sess-0d9f96a13f0b","input_length":2862,"output_length":160,"hash_ids":[2544071,2544072,2544073,2544074,2544075,2544076],"delay":1888.7} +{"session_id":"sess-0d9f96a13f0b","input_length":4728,"output_length":323,"hash_ids":[2544077,2544078,2544079,2544080,2544081,2544082,2544083,2544084,2544085,2544086],"delay":664.5} +{"session_id":"sess-0d9f96a13f0b","input_length":4741,"output_length":261,"hash_ids":[2544087,2544088,2544089,2544090,2544091,2544092,2544093,2544094,2544095,2544096],"delay":1855.8} +{"session_id":"sess-0d9f96a13f0b","input_length":2860,"output_length":477,"hash_ids":[2544097,2544098,2544099,2544100,2544101,2544102],"delay":12797.1} +{"session_id":"sess-0d9f96a13f0b","input_length":1693,"output_length":117,"hash_ids":[2544103,2544104,2544105,2544106],"delay":801.6} +{"session_id":"sess-0d9f96a13f0b","input_length":386,"output_length":561,"hash_ids":[2544107],"delay":132.9} +{"session_id":"sess-0d9f96a13f0b","input_length":2778,"output_length":701,"hash_ids":[2544108,2544109,2544110,2544111,2544112,2544113],"delay":391.2} +{"session_id":"sess-58c5d90e1ce1","input_length":60675,"output_length":258,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2548063,2548064,2548065,2548066,2548067,2548068,2548069,2548070,2548071,2548072,2548073,2548074,2548075,2548076,2548077,2548078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-58c5d90e1ce1","input_length":3411,"output_length":79,"hash_ids":[2548079,2548080,2548081,2548082,2548083,2548084,2548085],"delay":17345.4} +{"session_id":"sess-58c5d90e1ce1","input_length":3021,"output_length":49,"hash_ids":[2548086,2548087,2548088,2548089,2548090,2548091],"delay":3171.5} +{"session_id":"sess-58c5d90e1ce1","input_length":277,"output_length":36,"hash_ids":[2548092],"delay":1659.4} +{"session_id":"sess-58c5d90e1ce1","input_length":5093,"output_length":96,"hash_ids":[2548093,2548094,2548095,2548096,2548097,2548098,2548099,2548100,2548101,2548102],"delay":10645.4} +{"session_id":"sess-58c5d90e1ce1","input_length":3227,"output_length":54,"hash_ids":[2548103,2548104,2548105,2548106,2548107,2548108,2548109],"delay":276.2} +{"session_id":"sess-58c5d90e1ce1","input_length":5990,"output_length":1019,"hash_ids":[2548110,2548111,2548112,2548113,2548114,2548115,2548116,2548117,2548118,2548119,2548120,2548121],"delay":10202.4} +{"session_id":"sess-58c5d90e1ce1","input_length":1509,"output_length":335,"hash_ids":[2548122,2548123,2548124],"delay":683.7} +{"session_id":"sess-58c5d90e1ce1","input_length":2342,"output_length":132,"hash_ids":[2548125,2548126,2548127,2548128,2548129],"delay":2016.9} +{"session_id":"sess-58c5d90e1ce1","input_length":34,"output_length":30,"hash_ids":[2548130],"delay":51260.7} +{"session_id":"sess-58c5d90e1ce1","input_length":2234,"output_length":1272,"hash_ids":[2548131,2548132,2548133,2548134,2548135],"delay":272.3} +{"session_id":"sess-58c5d90e1ce1","input_length":1473,"output_length":702,"hash_ids":[2548136,2548137,2548138],"delay":8618.7} +{"session_id":"sess-58c5d90e1ce1","input_length":1199,"output_length":479,"hash_ids":[2548139,2548140,2548141],"delay":734.0} +{"session_id":"sess-58c5d90e1ce1","input_length":3083,"output_length":774,"hash_ids":[2548142,2548143,2548144,2548145,2548146,2548147,2548148],"delay":636.0} +{"session_id":"sess-58c5d90e1ce1","input_length":525,"output_length":152,"hash_ids":[2548149,2548150],"delay":1177.6} +{"session_id":"sess-58c5d90e1ce1","input_length":5285,"output_length":347,"hash_ids":[2548151,2548152,2548153,2548154,2548155,2548156,2548157,2548158,2548159,2548160,2548161],"delay":2296.7} +{"session_id":"sess-58c5d90e1ce1","input_length":5034,"output_length":175,"hash_ids":[2548162,2548163,2548164,2548165,2548166,2548167,2548168,2548169,2548170,2548171],"delay":472.6} +{"session_id":"sess-58c5d90e1ce1","input_length":1701,"output_length":355,"hash_ids":[2548172,2548173,2548174,2548175],"delay":826.1} +{"session_id":"sess-58c5d90e1ce1","input_length":4317,"output_length":39,"hash_ids":[2548176,2548177,2548178,2548179,2548180,2548181,2548182,2548183,2548184],"delay":447.0} +{"session_id":"sess-58c5d90e1ce1","input_length":1463,"output_length":322,"hash_ids":[2548185,2548186,2548187],"delay":193.2} +{"session_id":"sess-58c5d90e1ce1","input_length":5637,"output_length":67,"hash_ids":[2548188,2548189,2548190,2548191,2548192,2548193,2548194,2548195,2548196,2548197,2548198,2548199],"delay":1403.8} +{"session_id":"sess-58c5d90e1ce1","input_length":2064,"output_length":54,"hash_ids":[2548200,2548201,2548202,2548203,2548204],"delay":11314.3} +{"session_id":"sess-58c5d90e1ce1","input_length":2532,"output_length":768,"hash_ids":[2548205,2548206,2548207,2548208,2548209],"delay":576.7} +{"session_id":"sess-58c5d90e1ce1","input_length":796,"output_length":327,"hash_ids":[2548210,2548211],"delay":411.7} +{"session_id":"sess-e7212be3b0d7","input_length":71939,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,2552063,2552064,2552065,2552066,2552067,2552068,2552069,2552070,2552071,2552072,2552073,2552074,2552075,2552076,2552077,2552078,2552079,2552080,2552081,2552082,2552083,2552084,2552085,2552086,2552087,2552088,2552089,2552090,2552091,2552092,2552093,2552094,2552095,2552096,2552097,2552098,2552099,2552100],"timestamp":0.0,"group_id":18} +{"session_id":"sess-e7212be3b0d7","input_length":8859,"output_length":425,"hash_ids":[2552101,2552102,2552103,2552104,2552105,2552106,2552107,2552108,2552109,2552110,2552111,2552112,2552113,2552114,2552115,2552116,2552117,2552118],"delay":484.7} +{"session_id":"sess-e7212be3b0d7","input_length":2705,"output_length":276,"hash_ids":[2552119,2552120,2552121,2552122,2552123,2552124],"delay":428.0} +{"session_id":"sess-e7212be3b0d7","input_length":968,"output_length":474,"hash_ids":[2552125,2552126],"delay":14336.5} +{"session_id":"sess-e7212be3b0d7","input_length":1223,"output_length":60,"hash_ids":[2552127,2552128,2552129],"delay":851.8} +{"session_id":"sess-e7212be3b0d7","input_length":9683,"output_length":268,"hash_ids":[2552130,2552131,2552132,2552133,2552134,2552135,2552136,2552137,2552138,2552139,2552140,2552141,2552142,2552143,2552144,2552145,2552146,2552147,2552148],"delay":1549.5} +{"session_id":"sess-e7212be3b0d7","input_length":1414,"output_length":383,"hash_ids":[2552149,2552150,2552151],"delay":672.7} +{"session_id":"sess-e7212be3b0d7","input_length":8442,"output_length":30,"hash_ids":[2552152,2552153,2552154,2552155,2552156,2552157,2552158,2552159,2552160,2552161,2552162,2552163,2552164,2552165,2552166,2552167,2552168],"delay":785.0} +{"session_id":"sess-e7212be3b0d7","input_length":1166,"output_length":42,"hash_ids":[2552169,2552170,2552171],"delay":6680.4} +{"session_id":"sess-e7212be3b0d7","input_length":4489,"output_length":48,"hash_ids":[2552172,2552173,2552174,2552175,2552176,2552177,2552178,2552179,2552180],"delay":1128.7} +{"session_id":"sess-e7212be3b0d7","input_length":2454,"output_length":60,"hash_ids":[2552181,2552182,2552183,2552184,2552185],"delay":457.8} +{"session_id":"sess-e7212be3b0d7","input_length":260,"output_length":294,"hash_ids":[2552186],"delay":6460.3} +{"session_id":"sess-e7212be3b0d7","input_length":4148,"output_length":676,"hash_ids":[2552187,2552188,2552189,2552190,2552191,2552192,2552193,2552194,2552195],"delay":289.8} +{"session_id":"sess-e7212be3b0d7","input_length":1034,"output_length":446,"hash_ids":[2552196,2552197,2552198],"delay":198.4} +{"session_id":"sess-e7212be3b0d7","input_length":909,"output_length":85,"hash_ids":[2552199,2552200],"delay":4452.3} +{"session_id":"sess-e7212be3b0d7","input_length":4082,"output_length":131,"hash_ids":[2552201,2552202,2552203,2552204,2552205,2552206,2552207,2552208],"delay":283.1} +{"session_id":"sess-e7212be3b0d7","input_length":2651,"output_length":153,"hash_ids":[2552209,2552210,2552211,2552212,2552213,2552214],"delay":197.6} +{"session_id":"sess-374e0a164b5c","input_length":55049,"output_length":824,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2556063,2556064,2556065,2556066,2556067],"timestamp":0.0,"group_id":4} +{"session_id":"sess-374e0a164b5c","input_length":252,"output_length":117,"hash_ids":[2556068],"delay":31470.0} +{"session_id":"sess-374e0a164b5c","input_length":1024,"output_length":1422,"hash_ids":[2556069,2556070],"delay":1972.9} +{"session_id":"sess-374e0a164b5c","input_length":74,"output_length":830,"hash_ids":[2556071],"delay":1024.9} +{"session_id":"sess-374e0a164b5c","input_length":2041,"output_length":51,"hash_ids":[2556072,2556073,2556074,2556075],"delay":969.4} +{"session_id":"sess-374e0a164b5c","input_length":253,"output_length":829,"hash_ids":[2556076],"delay":639.3} +{"session_id":"sess-374e0a164b5c","input_length":2039,"output_length":66,"hash_ids":[2556077,2556078,2556079,2556080],"delay":8484.3} +{"session_id":"sess-374e0a164b5c","input_length":1936,"output_length":405,"hash_ids":[2556081,2556082,2556083,2556084],"delay":2025.2} +{"session_id":"sess-374e0a164b5c","input_length":1285,"output_length":547,"hash_ids":[2556085,2556086,2556087],"delay":3332.9} +{"session_id":"sess-374e0a164b5c","input_length":1432,"output_length":147,"hash_ids":[2556088,2556089,2556090],"delay":241.9} +{"session_id":"sess-374e0a164b5c","input_length":1632,"output_length":176,"hash_ids":[2556091,2556092,2556093,2556094],"delay":14647.7} +{"session_id":"sess-374e0a164b5c","input_length":1556,"output_length":991,"hash_ids":[2556095,2556096,2556097,2556098],"delay":1122.3} +{"session_id":"sess-374e0a164b5c","input_length":582,"output_length":100,"hash_ids":[2556099,2556100],"delay":22269.8} +{"session_id":"sess-374e0a164b5c","input_length":7678,"output_length":151,"hash_ids":[2556101,2556102,2556103,2556104,2556105,2556106,2556107,2556108,2556109,2556110,2556111,2556112,2556113,2556114,2556115],"delay":1225.5} +{"session_id":"sess-374e0a164b5c","input_length":4983,"output_length":549,"hash_ids":[2556116,2556117,2556118,2556119,2556120,2556121,2556122,2556123,2556124,2556125],"delay":10436.5} +{"session_id":"sess-374e0a164b5c","input_length":464,"output_length":214,"hash_ids":[2556126],"delay":39160.7} +{"session_id":"sess-374e0a164b5c","input_length":4996,"output_length":197,"hash_ids":[2556127,2556128,2556129,2556130,2556131,2556132,2556133,2556134,2556135,2556136],"delay":630.7} +{"session_id":"sess-00791df49395","input_length":55270,"output_length":645,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,2560063,2560064,2560065,2560066,2560067],"timestamp":0.0,"group_id":16} +{"session_id":"sess-00791df49395","input_length":1986,"output_length":50,"hash_ids":[2560068,2560069,2560070,2560071],"delay":399.1} +{"session_id":"sess-00791df49395","input_length":1378,"output_length":177,"hash_ids":[2560072,2560073,2560074],"delay":4003.1} +{"session_id":"sess-00791df49395","input_length":3686,"output_length":417,"hash_ids":[2560075,2560076,2560077,2560078,2560079,2560080,2560081,2560082],"delay":743.3} +{"session_id":"sess-00791df49395","input_length":1253,"output_length":246,"hash_ids":[2560083,2560084,2560085],"delay":850.9} +{"session_id":"sess-00791df49395","input_length":727,"output_length":96,"hash_ids":[2560086,2560087],"delay":1345.3} +{"session_id":"sess-00791df49395","input_length":2466,"output_length":289,"hash_ids":[2560088,2560089,2560090,2560091,2560092],"delay":17977.3} +{"session_id":"sess-00791df49395","input_length":1696,"output_length":71,"hash_ids":[2560093,2560094,2560095,2560096],"delay":411.1} +{"session_id":"sess-00791df49395","input_length":1753,"output_length":598,"hash_ids":[2560097,2560098,2560099,2560100],"delay":1061.6} +{"session_id":"sess-00791df49395","input_length":156,"output_length":1231,"hash_ids":[2560101],"delay":306.1} +{"session_id":"sess-00791df49395","input_length":909,"output_length":1117,"hash_ids":[2560102,2560103],"delay":1354.0} +{"session_id":"sess-00791df49395","input_length":113,"output_length":217,"hash_ids":[2560104],"delay":20802.7} +{"session_id":"sess-00791df49395","input_length":2929,"output_length":128,"hash_ids":[2560105,2560106,2560107,2560108,2560109,2560110],"delay":544.4} +{"session_id":"sess-00791df49395","input_length":2144,"output_length":216,"hash_ids":[2560111,2560112,2560113,2560114,2560115],"delay":355.2} +{"session_id":"sess-00791df49395","input_length":2358,"output_length":698,"hash_ids":[2560116,2560117,2560118,2560119,2560120],"delay":390.8} +{"session_id":"sess-00791df49395","input_length":2360,"output_length":215,"hash_ids":[2560121,2560122,2560123,2560124,2560125],"delay":1661.5} +{"session_id":"sess-00791df49395","input_length":3194,"output_length":86,"hash_ids":[2560126,2560127,2560128,2560129,2560130,2560131,2560132],"delay":961.3} +{"session_id":"sess-00791df49395","input_length":1316,"output_length":1107,"hash_ids":[2560133,2560134,2560135],"delay":8377.8} +{"session_id":"sess-00791df49395","input_length":6516,"output_length":501,"hash_ids":[2560136,2560137,2560138,2560139,2560140,2560141,2560142,2560143,2560144,2560145,2560146,2560147,2560148],"delay":562.0} +{"session_id":"sess-00791df49395","input_length":5097,"output_length":639,"hash_ids":[2560149,2560150,2560151,2560152,2560153,2560154,2560155,2560156,2560157,2560158],"delay":1630.3} +{"session_id":"sess-00791df49395","input_length":510,"output_length":139,"hash_ids":[2560159],"delay":1079.0} +{"session_id":"sess-00791df49395","input_length":7822,"output_length":739,"hash_ids":[2560160,2560161,2560162,2560163,2560164,2560165,2560166,2560167,2560168,2560169,2560170,2560171,2560172,2560173,2560174,2560175],"delay":8767.5} +{"session_id":"sess-00791df49395","input_length":799,"output_length":337,"hash_ids":[2560176,2560177],"delay":735.2} +{"session_id":"sess-00791df49395","input_length":3633,"output_length":288,"hash_ids":[2560178,2560179,2560180,2560181,2560182,2560183,2560184,2560185],"delay":629.9} +{"session_id":"sess-00791df49395","input_length":8306,"output_length":96,"hash_ids":[2560186,2560187,2560188,2560189,2560190,2560191,2560192,2560193,2560194,2560195,2560196,2560197,2560198,2560199,2560200,2560201,2560202],"delay":688.5} +{"session_id":"sess-439f807eb64d","input_length":58054,"output_length":812,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2564063,2564064,2564065,2564066,2564067,2564068,2564069,2564070,2564071,2564072,2564073],"timestamp":0.0,"group_id":9} +{"session_id":"sess-439f807eb64d","input_length":330,"output_length":274,"hash_ids":[2564074],"delay":7718.1} +{"session_id":"sess-439f807eb64d","input_length":625,"output_length":261,"hash_ids":[2564075,2564076],"delay":1657.1} +{"session_id":"sess-439f807eb64d","input_length":868,"output_length":107,"hash_ids":[2564077,2564078],"delay":6182.2} +{"session_id":"sess-439f807eb64d","input_length":9664,"output_length":505,"hash_ids":[2564079,2564080,2564081,2564082,2564083,2564084,2564085,2564086,2564087,2564088,2564089,2564090,2564091,2564092,2564093,2564094,2564095,2564096,2564097],"delay":845.0} +{"session_id":"sess-890ef50e640c","input_length":53632,"output_length":1815,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2568063,2568064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-890ef50e640c","input_length":2006,"output_length":1835,"hash_ids":[2568065,2568066,2568067,2568068],"delay":32949.1} +{"session_id":"sess-890ef50e640c","input_length":751,"output_length":178,"hash_ids":[2568069,2568070],"delay":10196.2} +{"session_id":"sess-890ef50e640c","input_length":4620,"output_length":54,"hash_ids":[2568071,2568072,2568073,2568074,2568075,2568076,2568077,2568078,2568079,2568080],"delay":1253.1} +{"session_id":"sess-890ef50e640c","input_length":2970,"output_length":419,"hash_ids":[2568081,2568082,2568083,2568084,2568085,2568086],"delay":543.5} +{"session_id":"sess-890ef50e640c","input_length":812,"output_length":279,"hash_ids":[2568087,2568088],"delay":23538.9} +{"session_id":"sess-890ef50e640c","input_length":462,"output_length":47,"hash_ids":[2568089],"delay":18252.7} +{"session_id":"sess-890ef50e640c","input_length":3765,"output_length":74,"hash_ids":[2568090,2568091,2568092,2568093,2568094,2568095,2568096,2568097],"delay":2110.0} +{"session_id":"sess-890ef50e640c","input_length":803,"output_length":30,"hash_ids":[2568098,2568099],"delay":738.9} +{"session_id":"sess-890ef50e640c","input_length":376,"output_length":35,"hash_ids":[2568100],"delay":3907.4} +{"session_id":"sess-890ef50e640c","input_length":9870,"output_length":701,"hash_ids":[2568101,2568102,2568103,2568104,2568105,2568106,2568107,2568108,2568109,2568110,2568111,2568112,2568113,2568114,2568115,2568116,2568117,2568118,2568119,2568120],"delay":9666.6} +{"session_id":"sess-890ef50e640c","input_length":1206,"output_length":1050,"hash_ids":[2568121,2568122,2568123],"delay":6065.6} +{"session_id":"sess-890ef50e640c","input_length":1789,"output_length":294,"hash_ids":[2568124,2568125,2568126,2568127],"delay":2723.4} +{"session_id":"sess-890ef50e640c","input_length":1296,"output_length":243,"hash_ids":[2568128,2568129,2568130],"delay":1134.3} +{"session_id":"sess-890ef50e640c","input_length":807,"output_length":101,"hash_ids":[2568131,2568132],"delay":1120.0} +{"session_id":"sess-890ef50e640c","input_length":1849,"output_length":567,"hash_ids":[2568133,2568134,2568135,2568136],"delay":595.5} +{"session_id":"sess-890ef50e640c","input_length":1433,"output_length":326,"hash_ids":[2568137,2568138,2568139],"delay":772.4} +{"session_id":"sess-890ef50e640c","input_length":684,"output_length":1122,"hash_ids":[2568140,2568141],"delay":523.0} +{"session_id":"sess-890ef50e640c","input_length":757,"output_length":141,"hash_ids":[2568142,2568143],"delay":1370.7} +{"session_id":"sess-890ef50e640c","input_length":1986,"output_length":177,"hash_ids":[2568144,2568145,2568146,2568147],"delay":874.1} +{"session_id":"sess-c23c367c85bd","input_length":57459,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2572063,2572064,2572065,2572066,2572067,2572068,2572069,2572070,2572071,2572072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c23c367c85bd","input_length":402,"output_length":90,"hash_ids":[2572073],"delay":537.4} +{"session_id":"sess-c23c367c85bd","input_length":2973,"output_length":54,"hash_ids":[2572074,2572075,2572076,2572077,2572078,2572079],"delay":1510.9} +{"session_id":"sess-c23c367c85bd","input_length":1166,"output_length":202,"hash_ids":[2572080,2572081,2572082],"delay":420.5} +{"session_id":"sess-c23c367c85bd","input_length":1066,"output_length":600,"hash_ids":[2572083,2572084,2572085],"delay":1023.7} +{"session_id":"sess-c23c367c85bd","input_length":1053,"output_length":123,"hash_ids":[2572086,2572087,2572088],"delay":19733.2} +{"session_id":"sess-c23c367c85bd","input_length":2017,"output_length":471,"hash_ids":[2572089,2572090,2572091,2572092],"delay":1464.8} +{"session_id":"sess-c23c367c85bd","input_length":8600,"output_length":1373,"hash_ids":[2572093,2572094,2572095,2572096,2572097,2572098,2572099,2572100,2572101,2572102,2572103,2572104,2572105,2572106,2572107,2572108,2572109],"delay":13458.5} +{"session_id":"sess-c23c367c85bd","input_length":1510,"output_length":127,"hash_ids":[2572110,2572111,2572112],"delay":13195.4} +{"session_id":"sess-c23c367c85bd","input_length":7710,"output_length":862,"hash_ids":[2572113,2572114,2572115,2572116,2572117,2572118,2572119,2572120,2572121,2572122,2572123,2572124,2572125,2572126,2572127,2572128],"delay":4384.3} +{"session_id":"sess-c23c367c85bd","input_length":1870,"output_length":165,"hash_ids":[2572129,2572130,2572131,2572132],"delay":727.7} +{"session_id":"sess-c23c367c85bd","input_length":5138,"output_length":299,"hash_ids":[2572133,2572134,2572135,2572136,2572137,2572138,2572139,2572140,2572141,2572142,2572143],"delay":1228.4} +{"session_id":"sess-c23c367c85bd","input_length":7792,"output_length":370,"hash_ids":[2572144,2572145,2572146,2572147,2572148,2572149,2572150,2572151,2572152,2572153,2572154,2572155,2572156,2572157,2572158,2572159],"delay":2429.9} +{"session_id":"sess-c23c367c85bd","input_length":257,"output_length":226,"hash_ids":[2572160],"delay":448.5} +{"session_id":"sess-c23c367c85bd","input_length":2451,"output_length":267,"hash_ids":[2572161,2572162,2572163,2572164,2572165],"delay":414.3} +{"session_id":"sess-c23c367c85bd","input_length":2472,"output_length":873,"hash_ids":[2572166,2572167,2572168,2572169,2572170],"delay":16948.4} +{"session_id":"sess-c23c367c85bd","input_length":1278,"output_length":581,"hash_ids":[2572171,2572172,2572173],"delay":420.0} +{"session_id":"sess-c23c367c85bd","input_length":3128,"output_length":465,"hash_ids":[2572174,2572175,2572176,2572177,2572178,2572179,2572180],"delay":4917.7} +{"session_id":"sess-c23c367c85bd","input_length":9649,"output_length":146,"hash_ids":[2572181,2572182,2572183,2572184,2572185,2572186,2572187,2572188,2572189,2572190,2572191,2572192,2572193,2572194,2572195,2572196,2572197,2572198,2572199],"delay":592.3} +{"session_id":"sess-c23c367c85bd","input_length":3199,"output_length":86,"hash_ids":[2572200,2572201,2572202,2572203,2572204,2572205,2572206],"delay":170.0} +{"session_id":"sess-c23c367c85bd","input_length":427,"output_length":611,"hash_ids":[2572207],"delay":3263.0} +{"session_id":"sess-6a60592aab9b","input_length":53024,"output_length":258,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,2576063],"timestamp":0.0,"group_id":28} +{"session_id":"sess-6a60592aab9b","input_length":2115,"output_length":306,"hash_ids":[2576064,2576065,2576066,2576067,2576068],"delay":1329.1} +{"session_id":"sess-6a60592aab9b","input_length":592,"output_length":701,"hash_ids":[2576069,2576070],"delay":71337.2} +{"session_id":"sess-6a60592aab9b","input_length":270,"output_length":150,"hash_ids":[2576071],"delay":1707.7} +{"session_id":"sess-6a60592aab9b","input_length":3903,"output_length":1711,"hash_ids":[2576072,2576073,2576074,2576075,2576076,2576077,2576078,2576079],"delay":2395.2} +{"session_id":"sess-6a60592aab9b","input_length":2021,"output_length":836,"hash_ids":[2576080,2576081,2576082,2576083],"delay":23810.9} +{"session_id":"sess-6a60592aab9b","input_length":1737,"output_length":230,"hash_ids":[2576084,2576085,2576086,2576087],"delay":1229.0} +{"session_id":"sess-6a60592aab9b","input_length":4080,"output_length":597,"hash_ids":[2576088,2576089,2576090,2576091,2576092,2576093,2576094,2576095],"delay":1799.1} +{"session_id":"sess-6a60592aab9b","input_length":2313,"output_length":495,"hash_ids":[2576096,2576097,2576098,2576099,2576100],"delay":877.6} +{"session_id":"sess-6a60592aab9b","input_length":3685,"output_length":271,"hash_ids":[2576101,2576102,2576103,2576104,2576105,2576106,2576107,2576108],"delay":289.4} +{"session_id":"sess-6a60592aab9b","input_length":308,"output_length":435,"hash_ids":[2576109],"delay":2867.5} +{"session_id":"sess-6a60592aab9b","input_length":1318,"output_length":506,"hash_ids":[2576110,2576111,2576112],"delay":4124.7} +{"session_id":"sess-4e6f51e75721","input_length":56055,"output_length":422,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2580063,2580064,2580065,2580066,2580067,2580068,2580069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4e6f51e75721","input_length":1586,"output_length":413,"hash_ids":[2580070,2580071,2580072,2580073],"delay":19271.7} +{"session_id":"sess-4e6f51e75721","input_length":8555,"output_length":249,"hash_ids":[2580074,2580075,2580076,2580077,2580078,2580079,2580080,2580081,2580082,2580083,2580084,2580085,2580086,2580087,2580088,2580089,2580090],"delay":514.6} +{"session_id":"sess-4e6f51e75721","input_length":774,"output_length":80,"hash_ids":[2580091,2580092],"delay":791.7} +{"session_id":"sess-4e6f51e75721","input_length":2180,"output_length":635,"hash_ids":[2580093,2580094,2580095,2580096,2580097],"delay":717.9} +{"session_id":"sess-4e6f51e75721","input_length":1688,"output_length":278,"hash_ids":[2580098,2580099,2580100,2580101],"delay":397.2} +{"session_id":"sess-4e6f51e75721","input_length":1013,"output_length":1278,"hash_ids":[2580102,2580103],"delay":21913.9} +{"session_id":"sess-4e6f51e75721","input_length":2425,"output_length":1124,"hash_ids":[2580104,2580105,2580106,2580107,2580108],"delay":2151.7} +{"session_id":"sess-4e6f51e75721","input_length":7522,"output_length":713,"hash_ids":[2580109,2580110,2580111,2580112,2580113,2580114,2580115,2580116,2580117,2580118,2580119,2580120,2580121,2580122,2580123],"delay":12503.0} +{"session_id":"sess-4e6f51e75721","input_length":3154,"output_length":469,"hash_ids":[2580124,2580125,2580126,2580127,2580128,2580129,2580130],"delay":219.0} +{"session_id":"sess-4e6f51e75721","input_length":1259,"output_length":576,"hash_ids":[2580131,2580132,2580133],"delay":960.7} +{"session_id":"sess-4e6f51e75721","input_length":2638,"output_length":122,"hash_ids":[2580134,2580135,2580136,2580137,2580138,2580139],"delay":42255.9} +{"session_id":"sess-4e6f51e75721","input_length":1001,"output_length":550,"hash_ids":[2580140,2580141],"delay":353.2} +{"session_id":"sess-4e6f51e75721","input_length":835,"output_length":187,"hash_ids":[2580142,2580143],"delay":625.4} +{"session_id":"sess-4e6f51e75721","input_length":2608,"output_length":252,"hash_ids":[2580144,2580145,2580146,2580147,2580148,2580149],"delay":2681.3} +{"session_id":"sess-4e6f51e75721","input_length":534,"output_length":973,"hash_ids":[2580150,2580151],"delay":921.5} +{"session_id":"sess-4e6f51e75721","input_length":230,"output_length":528,"hash_ids":[2580152],"delay":882.7} +{"session_id":"sess-4e6f51e75721","input_length":2642,"output_length":626,"hash_ids":[2580153,2580154,2580155,2580156,2580157,2580158],"delay":626.6} +{"session_id":"sess-4e6f51e75721","input_length":4702,"output_length":160,"hash_ids":[2580159,2580160,2580161,2580162,2580163,2580164,2580165,2580166,2580167,2580168],"delay":1492.8} +{"session_id":"sess-4e6f51e75721","input_length":629,"output_length":143,"hash_ids":[2580169,2580170],"delay":423.4} +{"session_id":"sess-4e6f51e75721","input_length":1945,"output_length":646,"hash_ids":[2580171,2580172,2580173,2580174],"delay":7623.0} +{"session_id":"sess-4e6f51e75721","input_length":2362,"output_length":683,"hash_ids":[2580175,2580176,2580177,2580178,2580179],"delay":4428.9} +{"session_id":"sess-4e6f51e75721","input_length":2437,"output_length":82,"hash_ids":[2580180,2580181,2580182,2580183,2580184],"delay":437.1} +{"session_id":"sess-4e6f51e75721","input_length":874,"output_length":67,"hash_ids":[2580185,2580186],"delay":389.5} +{"session_id":"sess-4e6f51e75721","input_length":1726,"output_length":208,"hash_ids":[2580187,2580188,2580189,2580190],"delay":631.3} +{"session_id":"sess-4e6f51e75721","input_length":503,"output_length":552,"hash_ids":[2580191],"delay":350.8} +{"session_id":"sess-4e6f51e75721","input_length":959,"output_length":104,"hash_ids":[2580192,2580193],"delay":724.4} +{"session_id":"sess-4e6f51e75721","input_length":492,"output_length":696,"hash_ids":[2580194],"delay":577.9} +{"session_id":"sess-4e6f51e75721","input_length":657,"output_length":687,"hash_ids":[2580195,2580196],"delay":254.1} +{"session_id":"sess-4e6f51e75721","input_length":1778,"output_length":160,"hash_ids":[2580197,2580198,2580199,2580200],"delay":638.5} +{"session_id":"sess-4e6f51e75721","input_length":689,"output_length":480,"hash_ids":[2580201,2580202],"delay":288.7} +{"session_id":"sess-04e1876dbf94","input_length":54757,"output_length":415,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2584063,2584064,2584065,2584066],"timestamp":0.0,"group_id":3} +{"session_id":"sess-04e1876dbf94","input_length":750,"output_length":202,"hash_ids":[2584067,2584068],"delay":2089.4} +{"session_id":"sess-04e1876dbf94","input_length":300,"output_length":599,"hash_ids":[2584069],"delay":409.7} +{"session_id":"sess-04e1876dbf94","input_length":1568,"output_length":535,"hash_ids":[2584070,2584071,2584072,2584073],"delay":4796.6} +{"session_id":"sess-04e1876dbf94","input_length":6885,"output_length":44,"hash_ids":[2584074,2584075,2584076,2584077,2584078,2584079,2584080,2584081,2584082,2584083,2584084,2584085,2584086,2584087],"delay":2092.5} +{"session_id":"sess-04e1876dbf94","input_length":585,"output_length":144,"hash_ids":[2584088,2584089],"delay":4440.7} +{"session_id":"sess-04e1876dbf94","input_length":2732,"output_length":174,"hash_ids":[2584090,2584091,2584092,2584093,2584094,2584095],"delay":22141.8} +{"session_id":"sess-04e1876dbf94","input_length":9194,"output_length":469,"hash_ids":[2584096,2584097,2584098,2584099,2584100,2584101,2584102,2584103,2584104,2584105,2584106,2584107,2584108,2584109,2584110,2584111,2584112,2584113],"delay":3638.9} +{"session_id":"sess-04e1876dbf94","input_length":2877,"output_length":123,"hash_ids":[2584114,2584115,2584116,2584117,2584118,2584119],"delay":390.3} +{"session_id":"sess-04e1876dbf94","input_length":691,"output_length":573,"hash_ids":[2584120,2584121],"delay":1962.4} +{"session_id":"sess-04e1876dbf94","input_length":70,"output_length":631,"hash_ids":[2584122],"delay":1375.0} +{"session_id":"sess-c4d79ef20a8c","input_length":54285,"output_length":712,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2588063,2588064,2588065,2588066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c4d79ef20a8c","input_length":1114,"output_length":99,"hash_ids":[2588067,2588068,2588069],"delay":3582.9} +{"session_id":"sess-c4d79ef20a8c","input_length":4709,"output_length":93,"hash_ids":[2588070,2588071,2588072,2588073,2588074,2588075,2588076,2588077,2588078,2588079],"delay":787.3} +{"session_id":"sess-c4d79ef20a8c","input_length":2029,"output_length":104,"hash_ids":[2588080,2588081,2588082,2588083],"delay":485.5} +{"session_id":"sess-c4d79ef20a8c","input_length":712,"output_length":674,"hash_ids":[2588084,2588085],"delay":3008.5} +{"session_id":"sess-c4d79ef20a8c","input_length":4888,"output_length":591,"hash_ids":[2588086,2588087,2588088,2588089,2588090,2588091,2588092,2588093,2588094,2588095],"delay":1313.7} +{"session_id":"sess-c4d79ef20a8c","input_length":184,"output_length":285,"hash_ids":[2588096],"delay":875.0} +{"session_id":"sess-c4d79ef20a8c","input_length":595,"output_length":699,"hash_ids":[2588097,2588098],"delay":1179.9} +{"session_id":"sess-c4d79ef20a8c","input_length":302,"output_length":313,"hash_ids":[2588099],"delay":18338.7} +{"session_id":"sess-c4d79ef20a8c","input_length":505,"output_length":748,"hash_ids":[2588100],"delay":507.0} +{"session_id":"sess-c4d79ef20a8c","input_length":1150,"output_length":100,"hash_ids":[2588101,2588102,2588103],"delay":526.2} +{"session_id":"sess-c4d79ef20a8c","input_length":1680,"output_length":498,"hash_ids":[2588104,2588105,2588106,2588107],"delay":584.9} +{"session_id":"sess-c4d79ef20a8c","input_length":1479,"output_length":402,"hash_ids":[2588108,2588109,2588110],"delay":1565.5} +{"session_id":"sess-c4d79ef20a8c","input_length":5224,"output_length":140,"hash_ids":[2588111,2588112,2588113,2588114,2588115,2588116,2588117,2588118,2588119,2588120,2588121],"delay":2993.0} +{"session_id":"sess-c4d79ef20a8c","input_length":580,"output_length":187,"hash_ids":[2588122,2588123],"delay":903.5} +{"session_id":"sess-c4d79ef20a8c","input_length":2064,"output_length":962,"hash_ids":[2588124,2588125,2588126,2588127,2588128],"delay":671.1} +{"session_id":"sess-c4d79ef20a8c","input_length":976,"output_length":705,"hash_ids":[2588129,2588130],"delay":217.8} +{"session_id":"sess-c4d79ef20a8c","input_length":740,"output_length":1462,"hash_ids":[2588131,2588132],"delay":1792.1} +{"session_id":"sess-c4d79ef20a8c","input_length":1170,"output_length":578,"hash_ids":[2588133,2588134,2588135],"delay":1112.3} +{"session_id":"sess-c4d79ef20a8c","input_length":5130,"output_length":56,"hash_ids":[2588136,2588137,2588138,2588139,2588140,2588141,2588142,2588143,2588144,2588145,2588146],"delay":1362.6} +{"session_id":"sess-c4d79ef20a8c","input_length":3481,"output_length":247,"hash_ids":[2588147,2588148,2588149,2588150,2588151,2588152,2588153],"delay":6021.5} +{"session_id":"sess-c4d79ef20a8c","input_length":5791,"output_length":959,"hash_ids":[2588154,2588155,2588156,2588157,2588158,2588159,2588160,2588161,2588162,2588163,2588164,2588165],"delay":15837.7} +{"session_id":"sess-c4d79ef20a8c","input_length":743,"output_length":1619,"hash_ids":[2588166,2588167],"delay":316.6} +{"session_id":"sess-956ce9be21a7","input_length":58651,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2592063,2592064,2592065,2592066,2592067,2592068,2592069,2592070,2592071,2592072,2592073,2592074],"timestamp":0.0,"group_id":13} +{"session_id":"sess-956ce9be21a7","input_length":1044,"output_length":153,"hash_ids":[2592075,2592076,2592077],"delay":20952.6} +{"session_id":"sess-956ce9be21a7","input_length":1143,"output_length":819,"hash_ids":[2592078,2592079,2592080],"delay":33807.0} +{"session_id":"sess-956ce9be21a7","input_length":1675,"output_length":190,"hash_ids":[2592081,2592082,2592083,2592084],"delay":6318.1} +{"session_id":"sess-956ce9be21a7","input_length":2079,"output_length":238,"hash_ids":[2592085,2592086,2592087,2592088,2592089],"delay":2400.7} +{"session_id":"sess-956ce9be21a7","input_length":1162,"output_length":608,"hash_ids":[2592090,2592091,2592092],"delay":718.0} +{"session_id":"sess-956ce9be21a7","input_length":2454,"output_length":387,"hash_ids":[2592093,2592094,2592095,2592096,2592097],"delay":17917.6} +{"session_id":"sess-956ce9be21a7","input_length":3311,"output_length":777,"hash_ids":[2592098,2592099,2592100,2592101,2592102,2592103,2592104],"delay":771.1} +{"session_id":"sess-956ce9be21a7","input_length":5678,"output_length":593,"hash_ids":[2592105,2592106,2592107,2592108,2592109,2592110,2592111,2592112,2592113,2592114,2592115,2592116],"delay":1580.2} +{"session_id":"sess-956ce9be21a7","input_length":570,"output_length":155,"hash_ids":[2592117,2592118],"delay":1277.7} +{"session_id":"sess-956ce9be21a7","input_length":5858,"output_length":103,"hash_ids":[2592119,2592120,2592121,2592122,2592123,2592124,2592125,2592126,2592127,2592128,2592129,2592130],"delay":251.5} +{"session_id":"sess-956ce9be21a7","input_length":1406,"output_length":223,"hash_ids":[2592131,2592132,2592133],"delay":459.5} +{"session_id":"sess-956ce9be21a7","input_length":6053,"output_length":446,"hash_ids":[2592134,2592135,2592136,2592137,2592138,2592139,2592140,2592141,2592142,2592143,2592144,2592145],"delay":2955.7} +{"session_id":"sess-956ce9be21a7","input_length":757,"output_length":571,"hash_ids":[2592146,2592147],"delay":1239.6} +{"session_id":"sess-956ce9be21a7","input_length":906,"output_length":473,"hash_ids":[2592148,2592149],"delay":361.1} +{"session_id":"sess-956ce9be21a7","input_length":1239,"output_length":50,"hash_ids":[2592150,2592151,2592152],"delay":805.1} +{"session_id":"sess-956ce9be21a7","input_length":1802,"output_length":536,"hash_ids":[2592153,2592154,2592155,2592156],"delay":1454.2} +{"session_id":"sess-8fcc511c078b","input_length":56548,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2596063,2596064,2596065,2596066,2596067,2596068,2596069,2596070],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8fcc511c078b","input_length":4309,"output_length":114,"hash_ids":[2596071,2596072,2596073,2596074,2596075,2596076,2596077,2596078,2596079],"delay":2709.3} +{"session_id":"sess-8fcc511c078b","input_length":3556,"output_length":46,"hash_ids":[2596080,2596081,2596082,2596083,2596084,2596085,2596086],"delay":8076.0} +{"session_id":"sess-8fcc511c078b","input_length":3150,"output_length":159,"hash_ids":[2596087,2596088,2596089,2596090,2596091,2596092,2596093],"delay":2146.1} +{"session_id":"sess-8fcc511c078b","input_length":1797,"output_length":367,"hash_ids":[2596094,2596095,2596096,2596097],"delay":2816.5} +{"session_id":"sess-8fcc511c078b","input_length":1829,"output_length":1393,"hash_ids":[2596098,2596099,2596100,2596101],"delay":1240.8} +{"session_id":"sess-8fcc511c078b","input_length":8361,"output_length":143,"hash_ids":[2596102,2596103,2596104,2596105,2596106,2596107,2596108,2596109,2596110,2596111,2596112,2596113,2596114,2596115,2596116,2596117,2596118],"delay":732.0} +{"session_id":"sess-8fcc511c078b","input_length":5560,"output_length":649,"hash_ids":[2596119,2596120,2596121,2596122,2596123,2596124,2596125,2596126,2596127,2596128,2596129],"delay":47485.2} +{"session_id":"sess-8fcc511c078b","input_length":3820,"output_length":349,"hash_ids":[2596130,2596131,2596132,2596133,2596134,2596135,2596136,2596137],"delay":893.5} +{"session_id":"sess-8fcc511c078b","input_length":544,"output_length":154,"hash_ids":[2596138,2596139],"delay":498.9} +{"session_id":"sess-8fcc511c078b","input_length":1001,"output_length":139,"hash_ids":[2596140,2596141],"delay":1102.6} +{"session_id":"sess-8fcc511c078b","input_length":8767,"output_length":492,"hash_ids":[2596142,2596143,2596144,2596145,2596146,2596147,2596148,2596149,2596150,2596151,2596152,2596153,2596154,2596155,2596156,2596157,2596158,2596159],"delay":2079.0} +{"session_id":"sess-8fcc511c078b","input_length":5903,"output_length":73,"hash_ids":[2596160,2596161,2596162,2596163,2596164,2596165,2596166,2596167,2596168,2596169,2596170,2596171],"delay":422.1} +{"session_id":"sess-8fcc511c078b","input_length":252,"output_length":410,"hash_ids":[2596172],"delay":814.4} +{"session_id":"sess-8fcc511c078b","input_length":3470,"output_length":1427,"hash_ids":[2596173,2596174,2596175,2596176,2596177,2596178,2596179],"delay":7793.0} +{"session_id":"sess-8fcc511c078b","input_length":2395,"output_length":352,"hash_ids":[2596180,2596181,2596182,2596183,2596184],"delay":805.0} +{"session_id":"sess-8fcc511c078b","input_length":662,"output_length":451,"hash_ids":[2596185,2596186],"delay":1401.9} +{"session_id":"sess-8fcc511c078b","input_length":1683,"output_length":540,"hash_ids":[2596187,2596188,2596189,2596190],"delay":9867.5} +{"session_id":"sess-8fcc511c078b","input_length":2653,"output_length":287,"hash_ids":[2596191,2596192,2596193,2596194,2596195,2596196],"delay":525.2} +{"session_id":"sess-8fcc511c078b","input_length":5541,"output_length":409,"hash_ids":[2596197,2596198,2596199,2596200,2596201,2596202,2596203,2596204,2596205,2596206,2596207],"delay":14888.4} +{"session_id":"sess-233cbd623766","input_length":57843,"output_length":323,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2600063,2600064,2600065,2600066,2600067,2600068,2600069,2600070,2600071,2600072],"timestamp":0.0,"group_id":3} +{"session_id":"sess-233cbd623766","input_length":421,"output_length":213,"hash_ids":[2600073],"delay":3596.2} +{"session_id":"sess-233cbd623766","input_length":814,"output_length":56,"hash_ids":[2600074,2600075],"delay":56257.7} +{"session_id":"sess-233cbd623766","input_length":3721,"output_length":826,"hash_ids":[2600076,2600077,2600078,2600079,2600080,2600081,2600082,2600083],"delay":925.0} +{"session_id":"sess-233cbd623766","input_length":1786,"output_length":115,"hash_ids":[2600084,2600085,2600086,2600087],"delay":10893.6} +{"session_id":"sess-28ba69f91bb0","input_length":69401,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2604063,2604064,2604065,2604066,2604067,2604068,2604069,2604070,2604071,2604072,2604073,2604074,2604075,2604076,2604077,2604078,2604079,2604080,2604081,2604082,2604083,2604084,2604085,2604086,2604087,2604088,2604089,2604090,2604091,2604092,2604093,2604094,2604095],"timestamp":0.0,"group_id":0} +{"session_id":"sess-28ba69f91bb0","input_length":1181,"output_length":69,"hash_ids":[2604096,2604097,2604098],"delay":889.4} +{"session_id":"sess-28ba69f91bb0","input_length":170,"output_length":216,"hash_ids":[2604099],"delay":568.6} +{"session_id":"sess-28ba69f91bb0","input_length":780,"output_length":75,"hash_ids":[2604100,2604101],"delay":22980.1} +{"session_id":"sess-ab74cfc95a90","input_length":53788,"output_length":34,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2608063,2608064,2608065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ab74cfc95a90","input_length":506,"output_length":401,"hash_ids":[2608066],"delay":1802.6} +{"session_id":"sess-ab74cfc95a90","input_length":2737,"output_length":699,"hash_ids":[2608067,2608068,2608069,2608070,2608071,2608072],"delay":1925.9} +{"session_id":"sess-bcbe38745e43","input_length":53465,"output_length":251,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,2612063,2612064],"timestamp":0.0,"group_id":32} +{"session_id":"sess-bcbe38745e43","input_length":7265,"output_length":298,"hash_ids":[2612065,2612066,2612067,2612068,2612069,2612070,2612071,2612072,2612073,2612074,2612075,2612076,2612077,2612078,2612079],"delay":648.5} +{"session_id":"sess-bcbe38745e43","input_length":457,"output_length":155,"hash_ids":[2612080],"delay":33949.0} +{"session_id":"sess-bcbe38745e43","input_length":9493,"output_length":444,"hash_ids":[2612081,2612082,2612083,2612084,2612085,2612086,2612087,2612088,2612089,2612090,2612091,2612092,2612093,2612094,2612095,2612096,2612097,2612098,2612099],"delay":955.9} +{"session_id":"sess-bcbe38745e43","input_length":493,"output_length":262,"hash_ids":[2612100],"delay":675.4} +{"session_id":"sess-bcbe38745e43","input_length":1472,"output_length":36,"hash_ids":[2612101,2612102,2612103],"delay":27697.0} +{"session_id":"sess-bcbe38745e43","input_length":792,"output_length":205,"hash_ids":[2612104,2612105],"delay":1337.4} +{"session_id":"sess-f1eae3ebb1ba","input_length":56452,"output_length":697,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2616063,2616064,2616065,2616066,2616067,2616068,2616069,2616070],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f1eae3ebb1ba","input_length":5338,"output_length":350,"hash_ids":[2616071,2616072,2616073,2616074,2616075,2616076,2616077,2616078,2616079,2616080,2616081],"delay":1869.1} +{"session_id":"sess-f1eae3ebb1ba","input_length":697,"output_length":1074,"hash_ids":[2616082,2616083],"delay":1071.1} +{"session_id":"sess-f1eae3ebb1ba","input_length":515,"output_length":350,"hash_ids":[2616084,2616085],"delay":1021.8} +{"session_id":"sess-f1eae3ebb1ba","input_length":3809,"output_length":114,"hash_ids":[2616086,2616087,2616088,2616089,2616090,2616091,2616092,2616093],"delay":2038.1} +{"session_id":"sess-f1eae3ebb1ba","input_length":7681,"output_length":1490,"hash_ids":[2616094,2616095,2616096,2616097,2616098,2616099,2616100,2616101,2616102,2616103,2616104,2616105,2616106,2616107,2616108,2616109],"delay":1052.7} +{"session_id":"sess-cf9f92c6de47","input_length":55869,"output_length":561,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2620063,2620064,2620065,2620066,2620067,2620068,2620069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-cf9f92c6de47","input_length":499,"output_length":114,"hash_ids":[2620070],"delay":432.6} +{"session_id":"sess-cf9f92c6de47","input_length":3047,"output_length":447,"hash_ids":[2620071,2620072,2620073,2620074,2620075,2620076],"delay":1965.2} +{"session_id":"sess-7948d4a7031b","input_length":52870,"output_length":561,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2624063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7948d4a7031b","input_length":970,"output_length":2208,"hash_ids":[2624064,2624065],"delay":1505.0} +{"session_id":"sess-7948d4a7031b","input_length":6147,"output_length":524,"hash_ids":[2624066,2624067,2624068,2624069,2624070,2624071,2624072,2624073,2624074,2624075,2624076,2624077,2624078],"delay":790.3} +{"session_id":"sess-7948d4a7031b","input_length":311,"output_length":880,"hash_ids":[2624079],"delay":1062.3} +{"session_id":"sess-7948d4a7031b","input_length":5291,"output_length":262,"hash_ids":[2624080,2624081,2624082,2624083,2624084,2624085,2624086,2624087,2624088,2624089,2624090],"delay":5099.6} +{"session_id":"sess-7948d4a7031b","input_length":1072,"output_length":303,"hash_ids":[2624091,2624092,2624093],"delay":907.7} +{"session_id":"sess-7948d4a7031b","input_length":1785,"output_length":92,"hash_ids":[2624094,2624095,2624096,2624097],"delay":44260.1} +{"session_id":"sess-7948d4a7031b","input_length":495,"output_length":158,"hash_ids":[2624098],"delay":1317.4} +{"session_id":"sess-7948d4a7031b","input_length":2059,"output_length":560,"hash_ids":[2624099,2624100,2624101,2624102,2624103],"delay":356.2} +{"session_id":"sess-7948d4a7031b","input_length":354,"output_length":293,"hash_ids":[2624104],"delay":41590.3} +{"session_id":"sess-7948d4a7031b","input_length":439,"output_length":294,"hash_ids":[2624105],"delay":416.5} +{"session_id":"sess-7948d4a7031b","input_length":6770,"output_length":140,"hash_ids":[2624106,2624107,2624108,2624109,2624110,2624111,2624112,2624113,2624114,2624115,2624116,2624117,2624118,2624119],"delay":629.4} +{"session_id":"sess-7948d4a7031b","input_length":9111,"output_length":174,"hash_ids":[2624120,2624121,2624122,2624123,2624124,2624125,2624126,2624127,2624128,2624129,2624130,2624131,2624132,2624133,2624134,2624135,2624136,2624137],"delay":1876.1} +{"session_id":"sess-7948d4a7031b","input_length":692,"output_length":33,"hash_ids":[2624138,2624139],"delay":7100.6} +{"session_id":"sess-7948d4a7031b","input_length":4710,"output_length":139,"hash_ids":[2624140,2624141,2624142,2624143,2624144,2624145,2624146,2624147,2624148,2624149],"delay":636.2} +{"session_id":"sess-7948d4a7031b","input_length":1044,"output_length":539,"hash_ids":[2624150,2624151,2624152],"delay":11714.7} +{"session_id":"sess-7948d4a7031b","input_length":1470,"output_length":168,"hash_ids":[2624153,2624154,2624155],"delay":1855.1} +{"session_id":"sess-7948d4a7031b","input_length":3078,"output_length":223,"hash_ids":[2624156,2624157,2624158,2624159,2624160,2624161,2624162],"delay":9873.5} +{"session_id":"sess-7948d4a7031b","input_length":1121,"output_length":830,"hash_ids":[2624163,2624164,2624165],"delay":19674.0} +{"session_id":"sess-7948d4a7031b","input_length":1715,"output_length":182,"hash_ids":[2624166,2624167,2624168,2624169],"delay":365.5} +{"session_id":"sess-7948d4a7031b","input_length":1729,"output_length":136,"hash_ids":[2624170,2624171,2624172,2624173],"delay":1893.3} +{"session_id":"sess-7948d4a7031b","input_length":2599,"output_length":204,"hash_ids":[2624174,2624175,2624176,2624177,2624178,2624179],"delay":578.8} +{"session_id":"sess-7948d4a7031b","input_length":166,"output_length":507,"hash_ids":[2624180],"delay":86.1} +{"session_id":"sess-7948d4a7031b","input_length":667,"output_length":695,"hash_ids":[2624181,2624182],"delay":325.2} +{"session_id":"sess-7948d4a7031b","input_length":538,"output_length":1579,"hash_ids":[2624183,2624184],"delay":8801.9} +{"session_id":"sess-7948d4a7031b","input_length":3862,"output_length":812,"hash_ids":[2624185,2624186,2624187,2624188,2624189,2624190,2624191,2624192],"delay":687.8} +{"session_id":"sess-7948d4a7031b","input_length":885,"output_length":118,"hash_ids":[2624193,2624194],"delay":296.6} +{"session_id":"sess-7948d4a7031b","input_length":3122,"output_length":2493,"hash_ids":[2624195,2624196,2624197,2624198,2624199,2624200,2624201],"delay":446.1} +{"session_id":"sess-7948d4a7031b","input_length":390,"output_length":107,"hash_ids":[2624202],"delay":69.0} +{"session_id":"sess-04150e787272","input_length":57497,"output_length":259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2628063,2628064,2628065,2628066,2628067,2628068,2628069,2628070,2628071,2628072],"timestamp":0.0,"group_id":5} +{"session_id":"sess-04150e787272","input_length":949,"output_length":273,"hash_ids":[2628073,2628074],"delay":70932.8} +{"session_id":"sess-04150e787272","input_length":8565,"output_length":990,"hash_ids":[2628075,2628076,2628077,2628078,2628079,2628080,2628081,2628082,2628083,2628084,2628085,2628086,2628087,2628088,2628089,2628090,2628091],"delay":2324.6} +{"session_id":"sess-04150e787272","input_length":7168,"output_length":302,"hash_ids":[2628092,2628093,2628094,2628095,2628096,2628097,2628098,2628099,2628100,2628101,2628102,2628103,2628104,2628105],"delay":2431.2} +{"session_id":"sess-04150e787272","input_length":2825,"output_length":463,"hash_ids":[2628106,2628107,2628108,2628109,2628110,2628111],"delay":7454.2} +{"session_id":"sess-04150e787272","input_length":971,"output_length":956,"hash_ids":[2628112,2628113],"delay":742.9} +{"session_id":"sess-04150e787272","input_length":1337,"output_length":233,"hash_ids":[2628114,2628115,2628116],"delay":896.9} +{"session_id":"sess-04150e787272","input_length":930,"output_length":453,"hash_ids":[2628117,2628118],"delay":1024.6} +{"session_id":"sess-04150e787272","input_length":490,"output_length":205,"hash_ids":[2628119],"delay":111.9} +{"session_id":"sess-04150e787272","input_length":1300,"output_length":770,"hash_ids":[2628120,2628121,2628122],"delay":1287.0} +{"session_id":"sess-04150e787272","input_length":1693,"output_length":123,"hash_ids":[2628123,2628124,2628125,2628126],"delay":2352.3} +{"session_id":"sess-04150e787272","input_length":5571,"output_length":115,"hash_ids":[2628127,2628128,2628129,2628130,2628131,2628132,2628133,2628134,2628135,2628136,2628137],"delay":5661.1} +{"session_id":"sess-04150e787272","input_length":1980,"output_length":1081,"hash_ids":[2628138,2628139,2628140,2628141],"delay":1230.8} +{"session_id":"sess-e1167e5b2dc1","input_length":56097,"output_length":256,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,2632063,2632064,2632065,2632066,2632067,2632068,2632069],"timestamp":0.0,"group_id":9} +{"session_id":"sess-e1167e5b2dc1","input_length":227,"output_length":109,"hash_ids":[2632070],"delay":2440.7} +{"session_id":"sess-e1167e5b2dc1","input_length":699,"output_length":43,"hash_ids":[2632071,2632072],"delay":1202.0} +{"session_id":"sess-e1167e5b2dc1","input_length":7632,"output_length":821,"hash_ids":[2632073,2632074,2632075,2632076,2632077,2632078,2632079,2632080,2632081,2632082,2632083,2632084,2632085,2632086,2632087],"delay":1314.0} +{"session_id":"sess-e1167e5b2dc1","input_length":446,"output_length":124,"hash_ids":[2632088],"delay":2674.6} +{"session_id":"sess-e1167e5b2dc1","input_length":600,"output_length":881,"hash_ids":[2632089,2632090],"delay":18921.4} +{"session_id":"sess-e1167e5b2dc1","input_length":372,"output_length":170,"hash_ids":[2632091],"delay":954.4} +{"session_id":"sess-e1167e5b2dc1","input_length":5305,"output_length":113,"hash_ids":[2632092,2632093,2632094,2632095,2632096,2632097,2632098,2632099,2632100,2632101,2632102],"delay":1086.7} +{"session_id":"sess-e1167e5b2dc1","input_length":5426,"output_length":145,"hash_ids":[2632103,2632104,2632105,2632106,2632107,2632108,2632109,2632110,2632111,2632112,2632113],"delay":800.2} +{"session_id":"sess-e1167e5b2dc1","input_length":8143,"output_length":278,"hash_ids":[2632114,2632115,2632116,2632117,2632118,2632119,2632120,2632121,2632122,2632123,2632124,2632125,2632126,2632127,2632128,2632129],"delay":24513.5} +{"session_id":"sess-e1167e5b2dc1","input_length":1004,"output_length":565,"hash_ids":[2632130,2632131],"delay":1768.2} +{"session_id":"sess-e1167e5b2dc1","input_length":1116,"output_length":533,"hash_ids":[2632132,2632133,2632134],"delay":1709.0} +{"session_id":"sess-e1167e5b2dc1","input_length":7922,"output_length":154,"hash_ids":[2632135,2632136,2632137,2632138,2632139,2632140,2632141,2632142,2632143,2632144,2632145,2632146,2632147,2632148,2632149,2632150],"delay":472.1} +{"session_id":"sess-e1167e5b2dc1","input_length":3043,"output_length":236,"hash_ids":[2632151,2632152,2632153,2632154,2632155,2632156],"delay":1997.6} +{"session_id":"sess-e1167e5b2dc1","input_length":1060,"output_length":1957,"hash_ids":[2632157,2632158,2632159],"delay":2125.9} +{"session_id":"sess-e1167e5b2dc1","input_length":573,"output_length":205,"hash_ids":[2632160,2632161],"delay":1058.1} +{"session_id":"sess-e1167e5b2dc1","input_length":742,"output_length":276,"hash_ids":[2632162,2632163],"delay":543.7} +{"session_id":"sess-e1167e5b2dc1","input_length":1081,"output_length":480,"hash_ids":[2632164,2632165,2632166],"delay":866.5} +{"session_id":"sess-e1167e5b2dc1","input_length":9632,"output_length":286,"hash_ids":[2632167,2632168,2632169,2632170,2632171,2632172,2632173,2632174,2632175,2632176,2632177,2632178,2632179,2632180,2632181,2632182,2632183,2632184,2632185],"delay":1038.1} +{"session_id":"sess-e1167e5b2dc1","input_length":4026,"output_length":1261,"hash_ids":[2632186,2632187,2632188,2632189,2632190,2632191,2632192,2632193],"delay":437.0} +{"session_id":"sess-e1167e5b2dc1","input_length":382,"output_length":567,"hash_ids":[2632194],"delay":38.6} +{"session_id":"sess-e1167e5b2dc1","input_length":800,"output_length":83,"hash_ids":[2632195,2632196],"delay":311.6} +{"session_id":"sess-e1167e5b2dc1","input_length":2208,"output_length":258,"hash_ids":[2632197,2632198,2632199,2632200,2632201],"delay":17020.7} +{"session_id":"sess-4e3369266e83","input_length":53565,"output_length":85,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2636063,2636064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4e3369266e83","input_length":662,"output_length":383,"hash_ids":[2636065,2636066],"delay":1780.5} +{"session_id":"sess-4e3369266e83","input_length":6909,"output_length":489,"hash_ids":[2636067,2636068,2636069,2636070,2636071,2636072,2636073,2636074,2636075,2636076,2636077,2636078,2636079,2636080],"delay":2155.3} +{"session_id":"sess-4e3369266e83","input_length":1061,"output_length":478,"hash_ids":[2636081,2636082,2636083],"delay":921.8} +{"session_id":"sess-4e3369266e83","input_length":9542,"output_length":989,"hash_ids":[2636084,2636085,2636086,2636087,2636088,2636089,2636090,2636091,2636092,2636093,2636094,2636095,2636096,2636097,2636098,2636099,2636100,2636101,2636102],"delay":2136.4} +{"session_id":"sess-4e3369266e83","input_length":493,"output_length":112,"hash_ids":[2636103],"delay":27236.1} +{"session_id":"sess-d6c95c35d8b5","input_length":76724,"output_length":345,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,2640063,2640064,2640065,2640066,2640067,2640068,2640069,2640070,2640071,2640072,2640073,2640074,2640075,2640076,2640077,2640078,2640079,2640080,2640081,2640082,2640083,2640084,2640085,2640086,2640087,2640088,2640089,2640090,2640091,2640092,2640093,2640094,2640095,2640096,2640097,2640098,2640099,2640100,2640101,2640102,2640103,2640104,2640105,2640106,2640107,2640108,2640109],"timestamp":0.0,"group_id":18} +{"session_id":"sess-d6c95c35d8b5","input_length":419,"output_length":166,"hash_ids":[2640110],"delay":6815.8} +{"session_id":"sess-d6c95c35d8b5","input_length":1473,"output_length":566,"hash_ids":[2640111,2640112,2640113],"delay":3632.6} +{"session_id":"sess-d6c95c35d8b5","input_length":867,"output_length":332,"hash_ids":[2640114,2640115],"delay":1061.2} +{"session_id":"sess-d6c95c35d8b5","input_length":1260,"output_length":60,"hash_ids":[2640116,2640117,2640118],"delay":1158.4} +{"session_id":"sess-d6c95c35d8b5","input_length":2419,"output_length":1345,"hash_ids":[2640119,2640120,2640121,2640122,2640123],"delay":1271.4} +{"session_id":"sess-d6c95c35d8b5","input_length":3336,"output_length":309,"hash_ids":[2640124,2640125,2640126,2640127,2640128,2640129,2640130],"delay":968.1} +{"session_id":"sess-d6c95c35d8b5","input_length":2565,"output_length":617,"hash_ids":[2640131,2640132,2640133,2640134,2640135,2640136],"delay":3280.4} +{"session_id":"sess-d6c95c35d8b5","input_length":4602,"output_length":252,"hash_ids":[2640137,2640138,2640139,2640140,2640141,2640142,2640143,2640144,2640145],"delay":239.4} +{"session_id":"sess-d6c95c35d8b5","input_length":2512,"output_length":670,"hash_ids":[2640146,2640147,2640148,2640149,2640150],"delay":2508.3} +{"session_id":"sess-d6c95c35d8b5","input_length":1627,"output_length":52,"hash_ids":[2640151,2640152,2640153,2640154],"delay":3016.3} +{"session_id":"sess-d6c95c35d8b5","input_length":2143,"output_length":183,"hash_ids":[2640155,2640156,2640157,2640158,2640159],"delay":352.9} +{"session_id":"sess-d6c95c35d8b5","input_length":5207,"output_length":700,"hash_ids":[2640160,2640161,2640162,2640163,2640164,2640165,2640166,2640167,2640168,2640169,2640170],"delay":5049.3} +{"session_id":"sess-d6c95c35d8b5","input_length":4012,"output_length":345,"hash_ids":[2640171,2640172,2640173,2640174,2640175,2640176,2640177,2640178],"delay":311.2} +{"session_id":"sess-d6c95c35d8b5","input_length":1834,"output_length":507,"hash_ids":[2640179,2640180,2640181,2640182],"delay":357.6} +{"session_id":"sess-d6c95c35d8b5","input_length":4918,"output_length":2221,"hash_ids":[2640183,2640184,2640185,2640186,2640187,2640188,2640189,2640190,2640191,2640192],"delay":450.0} +{"session_id":"sess-d6c95c35d8b5","input_length":4074,"output_length":240,"hash_ids":[2640193,2640194,2640195,2640196,2640197,2640198,2640199,2640200],"delay":187.6} +{"session_id":"sess-f9573085e33e","input_length":54024,"output_length":263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2644063,2644064,2644065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-f9573085e33e","input_length":408,"output_length":152,"hash_ids":[2644066],"delay":15218.0} +{"session_id":"sess-f9573085e33e","input_length":3173,"output_length":419,"hash_ids":[2644067,2644068,2644069,2644070,2644071,2644072,2644073],"delay":4705.3} +{"session_id":"sess-f9573085e33e","input_length":130,"output_length":30,"hash_ids":[2644074],"delay":29089.6} +{"session_id":"sess-f9573085e33e","input_length":703,"output_length":660,"hash_ids":[2644075,2644076],"delay":343.2} +{"session_id":"sess-f9573085e33e","input_length":354,"output_length":123,"hash_ids":[2644077],"delay":1407.9} +{"session_id":"sess-f9573085e33e","input_length":600,"output_length":203,"hash_ids":[2644078,2644079],"delay":586.2} +{"session_id":"sess-f9573085e33e","input_length":1057,"output_length":70,"hash_ids":[2644080,2644081,2644082],"delay":15504.4} +{"session_id":"sess-f9573085e33e","input_length":1765,"output_length":149,"hash_ids":[2644083,2644084,2644085,2644086],"delay":1548.9} +{"session_id":"sess-f9573085e33e","input_length":481,"output_length":133,"hash_ids":[2644087],"delay":404.3} +{"session_id":"sess-f9573085e33e","input_length":4517,"output_length":263,"hash_ids":[2644088,2644089,2644090,2644091,2644092,2644093,2644094,2644095,2644096],"delay":884.9} +{"session_id":"sess-442cc2787ef3","input_length":53376,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2648063,2648064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-442cc2787ef3","input_length":324,"output_length":318,"hash_ids":[2648065],"delay":491.5} +{"session_id":"sess-442cc2787ef3","input_length":1041,"output_length":501,"hash_ids":[2648066,2648067,2648068],"delay":1132.4} +{"session_id":"sess-442cc2787ef3","input_length":1946,"output_length":72,"hash_ids":[2648069,2648070,2648071,2648072],"delay":13521.8} +{"session_id":"sess-442cc2787ef3","input_length":5600,"output_length":238,"hash_ids":[2648073,2648074,2648075,2648076,2648077,2648078,2648079,2648080,2648081,2648082,2648083],"delay":2155.2} +{"session_id":"sess-442cc2787ef3","input_length":9033,"output_length":473,"hash_ids":[2648084,2648085,2648086,2648087,2648088,2648089,2648090,2648091,2648092,2648093,2648094,2648095,2648096,2648097,2648098,2648099,2648100,2648101],"delay":592.0} +{"session_id":"sess-442cc2787ef3","input_length":1388,"output_length":739,"hash_ids":[2648102,2648103,2648104],"delay":2341.3} +{"session_id":"sess-442cc2787ef3","input_length":1100,"output_length":132,"hash_ids":[2648105,2648106,2648107],"delay":7348.4} +{"session_id":"sess-442cc2787ef3","input_length":2638,"output_length":202,"hash_ids":[2648108,2648109,2648110,2648111,2648112,2648113],"delay":1550.6} +{"session_id":"sess-442cc2787ef3","input_length":1261,"output_length":871,"hash_ids":[2648114,2648115,2648116],"delay":98.7} +{"session_id":"sess-442cc2787ef3","input_length":5687,"output_length":37,"hash_ids":[2648117,2648118,2648119,2648120,2648121,2648122,2648123,2648124,2648125,2648126,2648127,2648128],"delay":377.7} +{"session_id":"sess-442cc2787ef3","input_length":6890,"output_length":273,"hash_ids":[2648129,2648130,2648131,2648132,2648133,2648134,2648135,2648136,2648137,2648138,2648139,2648140,2648141,2648142],"delay":1963.8} +{"session_id":"sess-442cc2787ef3","input_length":2517,"output_length":568,"hash_ids":[2648143,2648144,2648145,2648146,2648147],"delay":871.9} +{"session_id":"sess-442cc2787ef3","input_length":3773,"output_length":539,"hash_ids":[2648148,2648149,2648150,2648151,2648152,2648153,2648154,2648155],"delay":569.2} +{"session_id":"sess-442cc2787ef3","input_length":155,"output_length":257,"hash_ids":[2648156],"delay":1105.2} +{"session_id":"sess-442cc2787ef3","input_length":3611,"output_length":310,"hash_ids":[2648157,2648158,2648159,2648160,2648161,2648162,2648163,2648164],"delay":338.0} +{"session_id":"sess-442cc2787ef3","input_length":7141,"output_length":374,"hash_ids":[2648165,2648166,2648167,2648168,2648169,2648170,2648171,2648172,2648173,2648174,2648175,2648176,2648177,2648178],"delay":1283.7} +{"session_id":"sess-442cc2787ef3","input_length":2875,"output_length":387,"hash_ids":[2648179,2648180,2648181,2648182,2648183,2648184],"delay":9428.9} +{"session_id":"sess-442cc2787ef3","input_length":1873,"output_length":289,"hash_ids":[2648185,2648186,2648187,2648188],"delay":514.5} +{"session_id":"sess-442cc2787ef3","input_length":509,"output_length":148,"hash_ids":[2648189],"delay":1398.6} +{"session_id":"sess-442cc2787ef3","input_length":748,"output_length":142,"hash_ids":[2648190,2648191],"delay":392.8} +{"session_id":"sess-442cc2787ef3","input_length":6346,"output_length":339,"hash_ids":[2648192,2648193,2648194,2648195,2648196,2648197,2648198,2648199,2648200,2648201,2648202,2648203,2648204],"delay":7388.8} +{"session_id":"sess-442cc2787ef3","input_length":2660,"output_length":82,"hash_ids":[2648205,2648206,2648207,2648208,2648209,2648210],"delay":6996.1} +{"session_id":"sess-6e7e993cc3ee","input_length":55602,"output_length":2956,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,2652063,2652064,2652065,2652066,2652067,2652068],"timestamp":0.0,"group_id":7} +{"session_id":"sess-6e7e993cc3ee","input_length":2450,"output_length":716,"hash_ids":[2652069,2652070,2652071,2652072,2652073],"delay":1152.6} +{"session_id":"sess-6e7e993cc3ee","input_length":1524,"output_length":146,"hash_ids":[2652074,2652075,2652076],"delay":705.3} +{"session_id":"sess-6e7e993cc3ee","input_length":7391,"output_length":199,"hash_ids":[2652077,2652078,2652079,2652080,2652081,2652082,2652083,2652084,2652085,2652086,2652087,2652088,2652089,2652090,2652091],"delay":16760.5} +{"session_id":"sess-6e7e993cc3ee","input_length":1534,"output_length":1315,"hash_ids":[2652092,2652093,2652094],"delay":604.1} +{"session_id":"sess-6e7e993cc3ee","input_length":4206,"output_length":1250,"hash_ids":[2652095,2652096,2652097,2652098,2652099,2652100,2652101,2652102,2652103],"delay":604.8} +{"session_id":"sess-6e7e993cc3ee","input_length":575,"output_length":2002,"hash_ids":[2652104,2652105],"delay":2254.1} +{"session_id":"sess-6e7e993cc3ee","input_length":1597,"output_length":1550,"hash_ids":[2652106,2652107,2652108,2652109],"delay":490.8} +{"session_id":"sess-6e7e993cc3ee","input_length":1595,"output_length":340,"hash_ids":[2652110,2652111,2652112,2652113],"delay":468.5} +{"session_id":"sess-6e7e993cc3ee","input_length":1826,"output_length":160,"hash_ids":[2652114,2652115,2652116,2652117],"delay":2001.3} +{"session_id":"sess-6e7e993cc3ee","input_length":8618,"output_length":422,"hash_ids":[2652118,2652119,2652120,2652121,2652122,2652123,2652124,2652125,2652126,2652127,2652128,2652129,2652130,2652131,2652132,2652133,2652134],"delay":1945.0} +{"session_id":"sess-6e7e993cc3ee","input_length":368,"output_length":72,"hash_ids":[2652135],"delay":941.4} +{"session_id":"sess-6e7e993cc3ee","input_length":2336,"output_length":402,"hash_ids":[2652136,2652137,2652138,2652139,2652140],"delay":1152.6} +{"session_id":"sess-6e7e993cc3ee","input_length":5605,"output_length":347,"hash_ids":[2652141,2652142,2652143,2652144,2652145,2652146,2652147,2652148,2652149,2652150,2652151],"delay":12293.2} +{"session_id":"sess-6e7e993cc3ee","input_length":369,"output_length":171,"hash_ids":[2652152],"delay":6687.8} +{"session_id":"sess-6e7e993cc3ee","input_length":5995,"output_length":1684,"hash_ids":[2652153,2652154,2652155,2652156,2652157,2652158,2652159,2652160,2652161,2652162,2652163,2652164],"delay":1644.8} +{"session_id":"sess-6e7e993cc3ee","input_length":246,"output_length":942,"hash_ids":[2652165],"delay":8215.6} +{"session_id":"sess-6e7e993cc3ee","input_length":293,"output_length":541,"hash_ids":[2652166],"delay":264.1} +{"session_id":"sess-6e7e993cc3ee","input_length":2734,"output_length":30,"hash_ids":[2652167,2652168,2652169,2652170,2652171,2652172],"delay":995.7} +{"session_id":"sess-6e7e993cc3ee","input_length":1439,"output_length":877,"hash_ids":[2652173,2652174,2652175],"delay":5560.9} +{"session_id":"sess-6e7e993cc3ee","input_length":247,"output_length":63,"hash_ids":[2652176],"delay":398.6} +{"session_id":"sess-6e7e993cc3ee","input_length":2093,"output_length":776,"hash_ids":[2652177,2652178,2652179,2652180,2652181],"delay":727.8} +{"session_id":"sess-9a4e1ec58189","input_length":57880,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,2656063,2656064,2656065,2656066,2656067,2656068,2656069,2656070,2656071,2656072,2656073],"timestamp":0.0,"group_id":39} +{"session_id":"sess-9a4e1ec58189","input_length":613,"output_length":249,"hash_ids":[2656074,2656075],"delay":700.6} +{"session_id":"sess-9a4e1ec58189","input_length":1051,"output_length":99,"hash_ids":[2656076,2656077,2656078],"delay":2628.6} +{"session_id":"sess-9a4e1ec58189","input_length":2106,"output_length":53,"hash_ids":[2656079,2656080,2656081,2656082,2656083],"delay":2205.4} +{"session_id":"sess-9a4e1ec58189","input_length":3284,"output_length":266,"hash_ids":[2656084,2656085,2656086,2656087,2656088,2656089,2656090],"delay":1561.1} +{"session_id":"sess-9a4e1ec58189","input_length":915,"output_length":198,"hash_ids":[2656091,2656092],"delay":29155.5} +{"session_id":"sess-9a4e1ec58189","input_length":549,"output_length":588,"hash_ids":[2656093,2656094],"delay":978.6} +{"session_id":"sess-9a4e1ec58189","input_length":673,"output_length":151,"hash_ids":[2656095,2656096],"delay":4758.7} +{"session_id":"sess-de5e7ae0c211","input_length":54710,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,2660063,2660064,2660065,2660066],"timestamp":0.0,"group_id":25} +{"session_id":"sess-de5e7ae0c211","input_length":829,"output_length":155,"hash_ids":[2660067,2660068],"delay":539.4} +{"session_id":"sess-de5e7ae0c211","input_length":6626,"output_length":434,"hash_ids":[2660069,2660070,2660071,2660072,2660073,2660074,2660075,2660076,2660077,2660078,2660079,2660080,2660081],"delay":2070.5} +{"session_id":"sess-de5e7ae0c211","input_length":377,"output_length":1159,"hash_ids":[2660082],"delay":948.5} +{"session_id":"sess-de5e7ae0c211","input_length":1571,"output_length":2310,"hash_ids":[2660083,2660084,2660085,2660086],"delay":1708.7} +{"session_id":"sess-de5e7ae0c211","input_length":4702,"output_length":263,"hash_ids":[2660087,2660088,2660089,2660090,2660091,2660092,2660093,2660094,2660095,2660096],"delay":279.1} +{"session_id":"sess-de5e7ae0c211","input_length":1068,"output_length":234,"hash_ids":[2660097,2660098,2660099],"delay":686.0} +{"session_id":"sess-de5e7ae0c211","input_length":3116,"output_length":357,"hash_ids":[2660100,2660101,2660102,2660103,2660104,2660105,2660106],"delay":2958.0} +{"session_id":"sess-de5e7ae0c211","input_length":1307,"output_length":1567,"hash_ids":[2660107,2660108,2660109],"delay":26245.6} +{"session_id":"sess-de5e7ae0c211","input_length":1059,"output_length":1671,"hash_ids":[2660110,2660111,2660112],"delay":3156.4} +{"session_id":"sess-de5e7ae0c211","input_length":4758,"output_length":424,"hash_ids":[2660113,2660114,2660115,2660116,2660117,2660118,2660119,2660120,2660121,2660122],"delay":13327.9} +{"session_id":"sess-de5e7ae0c211","input_length":2934,"output_length":158,"hash_ids":[2660123,2660124,2660125,2660126,2660127,2660128],"delay":9351.0} +{"session_id":"sess-de5e7ae0c211","input_length":2445,"output_length":310,"hash_ids":[2660129,2660130,2660131,2660132,2660133],"delay":76.7} +{"session_id":"sess-de5e7ae0c211","input_length":599,"output_length":800,"hash_ids":[2660134,2660135],"delay":15113.1} +{"session_id":"sess-de5e7ae0c211","input_length":888,"output_length":54,"hash_ids":[2660136,2660137],"delay":96.6} +{"session_id":"sess-de5e7ae0c211","input_length":1484,"output_length":90,"hash_ids":[2660138,2660139,2660140],"delay":2793.0} +{"session_id":"sess-de5e7ae0c211","input_length":930,"output_length":316,"hash_ids":[2660141,2660142],"delay":413.4} +{"session_id":"sess-de5e7ae0c211","input_length":3141,"output_length":606,"hash_ids":[2660143,2660144,2660145,2660146,2660147,2660148,2660149],"delay":22617.2} +{"session_id":"sess-de5e7ae0c211","input_length":2751,"output_length":221,"hash_ids":[2660150,2660151,2660152,2660153,2660154,2660155],"delay":950.8} +{"session_id":"sess-de5e7ae0c211","input_length":4033,"output_length":748,"hash_ids":[2660156,2660157,2660158,2660159,2660160,2660161,2660162,2660163],"delay":15072.2} +{"session_id":"sess-de5e7ae0c211","input_length":159,"output_length":207,"hash_ids":[2660164],"delay":2174.6} +{"session_id":"sess-de5e7ae0c211","input_length":5851,"output_length":160,"hash_ids":[2660165,2660166,2660167,2660168,2660169,2660170,2660171,2660172,2660173,2660174,2660175,2660176],"delay":2330.9} +{"session_id":"sess-de5e7ae0c211","input_length":1006,"output_length":336,"hash_ids":[2660177,2660178],"delay":9952.9} +{"session_id":"sess-de5e7ae0c211","input_length":1685,"output_length":1127,"hash_ids":[2660179,2660180,2660181,2660182],"delay":323.3} +{"session_id":"sess-de5e7ae0c211","input_length":1837,"output_length":622,"hash_ids":[2660183,2660184,2660185,2660186],"delay":257.0} +{"session_id":"sess-de5e7ae0c211","input_length":3350,"output_length":786,"hash_ids":[2660187,2660188,2660189,2660190,2660191,2660192,2660193],"delay":112.7} +{"session_id":"sess-40e77f165cf1","input_length":68229,"output_length":248,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2664063,2664064,2664065,2664066,2664067,2664068,2664069,2664070,2664071,2664072,2664073,2664074,2664075,2664076,2664077,2664078,2664079,2664080,2664081,2664082,2664083,2664084,2664085,2664086,2664087,2664088,2664089,2664090,2664091,2664092,2664093],"timestamp":0.0,"group_id":2} +{"session_id":"sess-40e77f165cf1","input_length":1828,"output_length":54,"hash_ids":[2664094,2664095,2664096,2664097],"delay":501.7} +{"session_id":"sess-40e77f165cf1","input_length":1247,"output_length":238,"hash_ids":[2664098,2664099,2664100],"delay":829.1} +{"session_id":"sess-40e77f165cf1","input_length":2264,"output_length":170,"hash_ids":[2664101,2664102,2664103,2664104,2664105],"delay":51061.4} +{"session_id":"sess-40e77f165cf1","input_length":998,"output_length":990,"hash_ids":[2664106,2664107],"delay":516.5} +{"session_id":"sess-40e77f165cf1","input_length":1575,"output_length":405,"hash_ids":[2664108,2664109,2664110,2664111],"delay":12097.4} +{"session_id":"sess-40e77f165cf1","input_length":2939,"output_length":256,"hash_ids":[2664112,2664113,2664114,2664115,2664116,2664117],"delay":336.5} +{"session_id":"sess-40e77f165cf1","input_length":461,"output_length":798,"hash_ids":[2664118],"delay":734.7} +{"session_id":"sess-40e77f165cf1","input_length":323,"output_length":214,"hash_ids":[2664119],"delay":1635.8} +{"session_id":"sess-40e77f165cf1","input_length":4305,"output_length":510,"hash_ids":[2664120,2664121,2664122,2664123,2664124,2664125,2664126,2664127,2664128],"delay":1902.5} +{"session_id":"sess-40e77f165cf1","input_length":5111,"output_length":187,"hash_ids":[2664129,2664130,2664131,2664132,2664133,2664134,2664135,2664136,2664137,2664138],"delay":1079.5} +{"session_id":"sess-40e77f165cf1","input_length":1963,"output_length":206,"hash_ids":[2664139,2664140,2664141,2664142],"delay":986.7} +{"session_id":"sess-40e77f165cf1","input_length":1088,"output_length":452,"hash_ids":[2664143,2664144,2664145],"delay":13036.7} +{"session_id":"sess-40e77f165cf1","input_length":5913,"output_length":102,"hash_ids":[2664146,2664147,2664148,2664149,2664150,2664151,2664152,2664153,2664154,2664155,2664156,2664157],"delay":13484.7} +{"session_id":"sess-40e77f165cf1","input_length":2177,"output_length":231,"hash_ids":[2664158,2664159,2664160,2664161,2664162],"delay":618.7} +{"session_id":"sess-40e77f165cf1","input_length":417,"output_length":909,"hash_ids":[2664163],"delay":176.9} +{"session_id":"sess-40e77f165cf1","input_length":7561,"output_length":334,"hash_ids":[2664164,2664165,2664166,2664167,2664168,2664169,2664170,2664171,2664172,2664173,2664174,2664175,2664176,2664177,2664178],"delay":22917.2} +{"session_id":"sess-40e77f165cf1","input_length":2327,"output_length":311,"hash_ids":[2664179,2664180,2664181,2664182,2664183],"delay":14047.2} +{"session_id":"sess-40e77f165cf1","input_length":140,"output_length":603,"hash_ids":[2664184],"delay":9708.2} +{"session_id":"sess-40e77f165cf1","input_length":1595,"output_length":80,"hash_ids":[2664185,2664186,2664187,2664188],"delay":906.3} +{"session_id":"sess-40e77f165cf1","input_length":3072,"output_length":44,"hash_ids":[2664189,2664190,2664191,2664192,2664193,2664194],"delay":6227.8} +{"session_id":"sess-40e77f165cf1","input_length":2106,"output_length":261,"hash_ids":[2664195,2664196,2664197,2664198,2664199],"delay":281.8} +{"session_id":"sess-a3a02466e88c","input_length":52907,"output_length":552,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,2668063],"timestamp":0.0,"group_id":6} +{"session_id":"sess-a3a02466e88c","input_length":8168,"output_length":54,"hash_ids":[2668064,2668065,2668066,2668067,2668068,2668069,2668070,2668071,2668072,2668073,2668074,2668075,2668076,2668077,2668078,2668079],"delay":2469.6} +{"session_id":"sess-a3a02466e88c","input_length":7688,"output_length":104,"hash_ids":[2668080,2668081,2668082,2668083,2668084,2668085,2668086,2668087,2668088,2668089,2668090,2668091,2668092,2668093,2668094,2668095],"delay":786.5} +{"session_id":"sess-a3a02466e88c","input_length":7172,"output_length":221,"hash_ids":[2668096,2668097,2668098,2668099,2668100,2668101,2668102,2668103,2668104,2668105,2668106,2668107,2668108,2668109,2668110],"delay":724.2} +{"session_id":"sess-a3a02466e88c","input_length":8572,"output_length":304,"hash_ids":[2668111,2668112,2668113,2668114,2668115,2668116,2668117,2668118,2668119,2668120,2668121,2668122,2668123,2668124,2668125,2668126,2668127],"delay":53433.3} +{"session_id":"sess-a3a02466e88c","input_length":1292,"output_length":86,"hash_ids":[2668128,2668129,2668130],"delay":7722.6} +{"session_id":"sess-a3a02466e88c","input_length":433,"output_length":326,"hash_ids":[2668131],"delay":686.7} +{"session_id":"sess-a3a02466e88c","input_length":1049,"output_length":1066,"hash_ids":[2668132,2668133,2668134],"delay":4477.8} +{"session_id":"sess-a3a02466e88c","input_length":578,"output_length":1198,"hash_ids":[2668135,2668136],"delay":1092.3} +{"session_id":"sess-a3a02466e88c","input_length":2661,"output_length":141,"hash_ids":[2668137,2668138,2668139,2668140,2668141,2668142],"delay":2129.5} +{"session_id":"sess-a3a02466e88c","input_length":4561,"output_length":1325,"hash_ids":[2668143,2668144,2668145,2668146,2668147,2668148,2668149,2668150,2668151],"delay":699.8} +{"session_id":"sess-a3a02466e88c","input_length":723,"output_length":769,"hash_ids":[2668152,2668153],"delay":1990.5} +{"session_id":"sess-a3a02466e88c","input_length":2449,"output_length":157,"hash_ids":[2668154,2668155,2668156,2668157,2668158],"delay":2170.6} +{"session_id":"sess-a3a02466e88c","input_length":2609,"output_length":186,"hash_ids":[2668159,2668160,2668161,2668162,2668163,2668164],"delay":526.2} +{"session_id":"sess-a3a02466e88c","input_length":1128,"output_length":227,"hash_ids":[2668165,2668166,2668167],"delay":257.7} +{"session_id":"sess-a3a02466e88c","input_length":188,"output_length":132,"hash_ids":[2668168],"delay":10410.8} +{"session_id":"sess-a3a02466e88c","input_length":1616,"output_length":1129,"hash_ids":[2668169,2668170,2668171,2668172],"delay":346.3} +{"session_id":"sess-a3a02466e88c","input_length":6631,"output_length":1810,"hash_ids":[2668173,2668174,2668175,2668176,2668177,2668178,2668179,2668180,2668181,2668182,2668183,2668184,2668185],"delay":1618.2} +{"session_id":"sess-a3a02466e88c","input_length":583,"output_length":623,"hash_ids":[2668186,2668187],"delay":272.2} +{"session_id":"sess-a3a02466e88c","input_length":6266,"output_length":1010,"hash_ids":[2668188,2668189,2668190,2668191,2668192,2668193,2668194,2668195,2668196,2668197,2668198,2668199,2668200],"delay":2440.5} +{"session_id":"sess-a3a02466e88c","input_length":1903,"output_length":1516,"hash_ids":[2668201,2668202,2668203,2668204],"delay":1555.3} +{"session_id":"sess-06576271d4e7","input_length":57111,"output_length":51,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2672063,2672064,2672065,2672066,2672067,2672068,2672069,2672070,2672071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-06576271d4e7","input_length":948,"output_length":69,"hash_ids":[2672072,2672073],"delay":15663.6} +{"session_id":"sess-06576271d4e7","input_length":3233,"output_length":164,"hash_ids":[2672074,2672075,2672076,2672077,2672078,2672079,2672080],"delay":1440.0} +{"session_id":"sess-06576271d4e7","input_length":2685,"output_length":375,"hash_ids":[2672081,2672082,2672083,2672084,2672085,2672086],"delay":896.4} +{"session_id":"sess-06576271d4e7","input_length":2738,"output_length":61,"hash_ids":[2672087,2672088,2672089,2672090,2672091,2672092],"delay":16153.0} +{"session_id":"sess-06576271d4e7","input_length":4215,"output_length":181,"hash_ids":[2672093,2672094,2672095,2672096,2672097,2672098,2672099,2672100,2672101],"delay":16587.7} +{"session_id":"sess-06576271d4e7","input_length":5345,"output_length":378,"hash_ids":[2672102,2672103,2672104,2672105,2672106,2672107,2672108,2672109,2672110,2672111,2672112],"delay":948.6} +{"session_id":"sess-06576271d4e7","input_length":3058,"output_length":260,"hash_ids":[2672113,2672114,2672115,2672116,2672117,2672118],"delay":1592.5} +{"session_id":"sess-06576271d4e7","input_length":1420,"output_length":632,"hash_ids":[2672119,2672120,2672121],"delay":5639.5} +{"session_id":"sess-06576271d4e7","input_length":4824,"output_length":160,"hash_ids":[2672122,2672123,2672124,2672125,2672126,2672127,2672128,2672129,2672130,2672131],"delay":435.8} +{"session_id":"sess-06576271d4e7","input_length":2202,"output_length":417,"hash_ids":[2672132,2672133,2672134,2672135,2672136],"delay":1165.7} +{"session_id":"sess-06576271d4e7","input_length":2837,"output_length":591,"hash_ids":[2672137,2672138,2672139,2672140,2672141,2672142],"delay":10163.4} +{"session_id":"sess-06576271d4e7","input_length":1065,"output_length":149,"hash_ids":[2672143,2672144,2672145],"delay":139.1} +{"session_id":"sess-06576271d4e7","input_length":6530,"output_length":1471,"hash_ids":[2672146,2672147,2672148,2672149,2672150,2672151,2672152,2672153,2672154,2672155,2672156,2672157,2672158],"delay":20037.2} +{"session_id":"sess-06576271d4e7","input_length":1790,"output_length":2812,"hash_ids":[2672159,2672160,2672161,2672162],"delay":1292.6} +{"session_id":"sess-06576271d4e7","input_length":5099,"output_length":1496,"hash_ids":[2672163,2672164,2672165,2672166,2672167,2672168,2672169,2672170,2672171,2672172],"delay":1095.4} +{"session_id":"sess-06576271d4e7","input_length":394,"output_length":297,"hash_ids":[2672173],"delay":603.4} +{"session_id":"sess-a83129acfc8b","input_length":52715,"output_length":901,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a83129acfc8b","input_length":7791,"output_length":282,"hash_ids":[2672174,2672175,2672176,2672177,2672178,2672179,2672180,2672181,2672182,2672183,2672184,2672185,2672186,2672187,2672188,2672189],"delay":3024.1} +{"session_id":"sess-a83129acfc8b","input_length":2046,"output_length":71,"hash_ids":[2672190,2672191,2672192,2672193],"delay":1573.6} +{"session_id":"sess-a83129acfc8b","input_length":942,"output_length":270,"hash_ids":[2672194,2672195],"delay":637.3} +{"session_id":"sess-a83129acfc8b","input_length":1589,"output_length":1630,"hash_ids":[2672196,2672197,2672198,2672199],"delay":2309.4} +{"session_id":"sess-a83129acfc8b","input_length":1432,"output_length":30,"hash_ids":[2672200,2672201,2672202],"delay":396.2} +{"session_id":"sess-a83129acfc8b","input_length":1940,"output_length":505,"hash_ids":[2672203,2672204,2672205,2672206],"delay":1408.5} +{"session_id":"sess-a83129acfc8b","input_length":3200,"output_length":336,"hash_ids":[2672207,2672208,2672209,2672210,2672211,2672212,2672213],"delay":589.7} +{"session_id":"sess-a83129acfc8b","input_length":1326,"output_length":65,"hash_ids":[2672214,2672215,2672216],"delay":825.4} +{"session_id":"sess-a83129acfc8b","input_length":587,"output_length":153,"hash_ids":[2672217,2672218],"delay":1030.2} +{"session_id":"sess-a83129acfc8b","input_length":4175,"output_length":433,"hash_ids":[2672219,2672220,2672221,2672222,2672223,2672224,2672225,2672226,2672227],"delay":390.8} +{"session_id":"sess-a83129acfc8b","input_length":130,"output_length":219,"hash_ids":[2672228],"delay":811.6} +{"session_id":"sess-a83129acfc8b","input_length":1644,"output_length":201,"hash_ids":[2672229,2672230,2672231,2672232],"delay":1626.2} +{"session_id":"sess-a83129acfc8b","input_length":4614,"output_length":78,"hash_ids":[2672233,2672234,2672235,2672236,2672237,2672238,2672239,2672240,2672241,2672242],"delay":675.7} +{"session_id":"sess-a83129acfc8b","input_length":1596,"output_length":105,"hash_ids":[2672243,2672244,2672245,2672246],"delay":477.3} +{"session_id":"sess-a83129acfc8b","input_length":7344,"output_length":82,"hash_ids":[2672247,2672248,2672249,2672250,2672251,2672252,2672253,2672254,2672255,2672256,2672257,2672258,2672259,2672260,2672261],"delay":2941.8} +{"session_id":"sess-a83129acfc8b","input_length":1140,"output_length":682,"hash_ids":[2672262,2672263,2672264],"delay":4946.0} +{"session_id":"sess-a83129acfc8b","input_length":374,"output_length":486,"hash_ids":[2672265],"delay":1335.4} +{"session_id":"sess-a83129acfc8b","input_length":8769,"output_length":125,"hash_ids":[2672266,2672267,2672268,2672269,2672270,2672271,2672272,2672273,2672274,2672275,2672276,2672277,2672278,2672279,2672280,2672281,2672282,2672283],"delay":620.7} +{"session_id":"sess-a83129acfc8b","input_length":5341,"output_length":71,"hash_ids":[2672284,2672285,2672286,2672287,2672288,2672289,2672290,2672291,2672292,2672293,2672294],"delay":248.9} +{"session_id":"sess-a83129acfc8b","input_length":1859,"output_length":191,"hash_ids":[2672295,2672296,2672297,2672298],"delay":621.1} +{"session_id":"sess-a83129acfc8b","input_length":2461,"output_length":44,"hash_ids":[2672299,2672300,2672301,2672302,2672303],"delay":411.6} +{"session_id":"sess-a83129acfc8b","input_length":277,"output_length":30,"hash_ids":[2672304],"delay":243.7} +{"session_id":"sess-c24e9d67b08b","input_length":69065,"output_length":419,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2680063,2680064,2680065,2680066,2680067,2680068,2680069,2680070,2680071,2680072,2680073,2680074,2680075,2680076,2680077,2680078,2680079,2680080,2680081,2680082,2680083,2680084,2680085,2680086,2680087,2680088,2680089,2680090,2680091,2680092,2680093,2680094],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c24e9d67b08b","input_length":1656,"output_length":142,"hash_ids":[2680095,2680096,2680097,2680098],"delay":1716.4} +{"session_id":"sess-c24e9d67b08b","input_length":8048,"output_length":154,"hash_ids":[2680099,2680100,2680101,2680102,2680103,2680104,2680105,2680106,2680107,2680108,2680109,2680110,2680111,2680112,2680113,2680114],"delay":1395.8} +{"session_id":"sess-c24e9d67b08b","input_length":4503,"output_length":789,"hash_ids":[2680115,2680116,2680117,2680118,2680119,2680120,2680121,2680122,2680123],"delay":613.1} +{"session_id":"sess-c24e9d67b08b","input_length":5483,"output_length":734,"hash_ids":[2680124,2680125,2680126,2680127,2680128,2680129,2680130,2680131,2680132,2680133,2680134],"delay":46181.1} +{"session_id":"sess-c24e9d67b08b","input_length":6580,"output_length":121,"hash_ids":[2680135,2680136,2680137,2680138,2680139,2680140,2680141,2680142,2680143,2680144,2680145,2680146,2680147],"delay":381.2} +{"session_id":"sess-72e7e003441d","input_length":60733,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2684063,2684064,2684065,2684066,2684067,2684068,2684069,2684070,2684071,2684072,2684073,2684074,2684075,2684076,2684077,2684078],"timestamp":0.0,"group_id":4} +{"session_id":"sess-72e7e003441d","input_length":1146,"output_length":457,"hash_ids":[2684079,2684080,2684081],"delay":525.9} +{"session_id":"sess-72e7e003441d","input_length":3855,"output_length":1241,"hash_ids":[2684082,2684083,2684084,2684085,2684086,2684087,2684088,2684089],"delay":50373.5} +{"session_id":"sess-8255751a0fcf","input_length":52473,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5938431fbe73","input_length":72350,"output_length":194,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,2692063,2692064,2692065,2692066,2692067,2692068,2692069,2692070,2692071,2692072,2692073,2692074,2692075,2692076,2692077,2692078,2692079,2692080,2692081,2692082,2692083,2692084,2692085,2692086,2692087,2692088,2692089,2692090,2692091,2692092,2692093,2692094,2692095,2692096,2692097,2692098,2692099,2692100,2692101],"timestamp":0.0,"group_id":6} +{"session_id":"sess-5938431fbe73","input_length":1438,"output_length":77,"hash_ids":[2692102,2692103,2692104],"delay":8495.6} +{"session_id":"sess-5938431fbe73","input_length":1868,"output_length":285,"hash_ids":[2692105,2692106,2692107,2692108],"delay":26032.6} +{"session_id":"sess-5938431fbe73","input_length":1292,"output_length":142,"hash_ids":[2692109,2692110,2692111],"delay":28023.8} +{"session_id":"sess-5938431fbe73","input_length":542,"output_length":501,"hash_ids":[2692112,2692113],"delay":209.1} +{"session_id":"sess-5938431fbe73","input_length":845,"output_length":202,"hash_ids":[2692114,2692115],"delay":3618.3} +{"session_id":"sess-5938431fbe73","input_length":1460,"output_length":679,"hash_ids":[2692116,2692117,2692118],"delay":913.5} +{"session_id":"sess-5938431fbe73","input_length":1812,"output_length":178,"hash_ids":[2692119,2692120,2692121,2692122],"delay":756.3} +{"session_id":"sess-5938431fbe73","input_length":5326,"output_length":1019,"hash_ids":[2692123,2692124,2692125,2692126,2692127,2692128,2692129,2692130,2692131,2692132,2692133],"delay":459.9} +{"session_id":"sess-5938431fbe73","input_length":673,"output_length":199,"hash_ids":[2692134,2692135],"delay":2553.0} +{"session_id":"sess-5938431fbe73","input_length":1626,"output_length":433,"hash_ids":[2692136,2692137,2692138,2692139],"delay":1826.2} +{"session_id":"sess-5938431fbe73","input_length":3835,"output_length":1742,"hash_ids":[2692140,2692141,2692142,2692143,2692144,2692145,2692146,2692147],"delay":210.1} +{"session_id":"sess-5938431fbe73","input_length":392,"output_length":469,"hash_ids":[2692148],"delay":492.3} +{"session_id":"sess-5938431fbe73","input_length":2780,"output_length":660,"hash_ids":[2692149,2692150,2692151,2692152,2692153,2692154],"delay":305.3} +{"session_id":"sess-5938431fbe73","input_length":9732,"output_length":256,"hash_ids":[2692155,2692156,2692157,2692158,2692159,2692160,2692161,2692162,2692163,2692164,2692165,2692166,2692167,2692168,2692169,2692170,2692171,2692172,2692173,2692174],"delay":15162.3} +{"session_id":"sess-5938431fbe73","input_length":844,"output_length":514,"hash_ids":[2692175,2692176],"delay":461.0} +{"session_id":"sess-5938431fbe73","input_length":114,"output_length":1310,"hash_ids":[2692177],"delay":973.5} +{"session_id":"sess-5938431fbe73","input_length":2629,"output_length":237,"hash_ids":[2692178,2692179,2692180,2692181,2692182,2692183],"delay":3038.2} +{"session_id":"sess-5938431fbe73","input_length":5203,"output_length":301,"hash_ids":[2692184,2692185,2692186,2692187,2692188,2692189,2692190,2692191,2692192,2692193,2692194],"delay":884.0} +{"session_id":"sess-5938431fbe73","input_length":1852,"output_length":455,"hash_ids":[2692195,2692196,2692197,2692198],"delay":349.6} +{"session_id":"sess-5938431fbe73","input_length":3071,"output_length":370,"hash_ids":[2692199,2692200,2692201,2692202,2692203,2692204],"delay":3295.8} +{"session_id":"sess-9a63abb7932d","input_length":77384,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2696063,2696064,2696065,2696066,2696067,2696068,2696069,2696070,2696071,2696072,2696073,2696074,2696075,2696076,2696077,2696078,2696079,2696080,2696081,2696082,2696083,2696084,2696085,2696086,2696087,2696088,2696089,2696090,2696091,2696092,2696093,2696094,2696095,2696096,2696097,2696098,2696099,2696100,2696101,2696102,2696103,2696104,2696105,2696106,2696107,2696108,2696109,2696110,2696111],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9a63abb7932d","input_length":1960,"output_length":600,"hash_ids":[2696112,2696113,2696114,2696115],"delay":1837.9} +{"session_id":"sess-9a63abb7932d","input_length":1627,"output_length":38,"hash_ids":[2696116,2696117,2696118,2696119],"delay":1723.0} +{"session_id":"sess-9a63abb7932d","input_length":1815,"output_length":212,"hash_ids":[2696120,2696121,2696122,2696123],"delay":812.5} +{"session_id":"sess-9a63abb7932d","input_length":4478,"output_length":371,"hash_ids":[2696124,2696125,2696126,2696127,2696128,2696129,2696130,2696131,2696132],"delay":5342.9} +{"session_id":"sess-8e1ba416f1aa","input_length":58404,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2700063,2700064,2700065,2700066,2700067,2700068,2700069,2700070,2700071,2700072,2700073,2700074],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8e1ba416f1aa","input_length":161,"output_length":2427,"hash_ids":[2700075],"delay":16991.4} +{"session_id":"sess-8e1ba416f1aa","input_length":1603,"output_length":297,"hash_ids":[2700076,2700077,2700078,2700079],"delay":142.7} +{"session_id":"sess-8e1ba416f1aa","input_length":4694,"output_length":171,"hash_ids":[2700080,2700081,2700082,2700083,2700084,2700085,2700086,2700087,2700088,2700089],"delay":664.9} +{"session_id":"sess-8e1ba416f1aa","input_length":7225,"output_length":86,"hash_ids":[2700090,2700091,2700092,2700093,2700094,2700095,2700096,2700097,2700098,2700099,2700100,2700101,2700102,2700103,2700104],"delay":63354.1} +{"session_id":"sess-8e1ba416f1aa","input_length":511,"output_length":68,"hash_ids":[2700105],"delay":5008.6} +{"session_id":"sess-8e1ba416f1aa","input_length":1839,"output_length":193,"hash_ids":[2700106,2700107,2700108,2700109],"delay":2099.6} +{"session_id":"sess-8e1ba416f1aa","input_length":2695,"output_length":251,"hash_ids":[2700110,2700111,2700112,2700113,2700114,2700115],"delay":3679.2} +{"session_id":"sess-8e1ba416f1aa","input_length":2213,"output_length":418,"hash_ids":[2700116,2700117,2700118,2700119,2700120],"delay":187.0} +{"session_id":"sess-8e1ba416f1aa","input_length":1638,"output_length":99,"hash_ids":[2700121,2700122,2700123,2700124],"delay":1130.3} +{"session_id":"sess-8e1ba416f1aa","input_length":1196,"output_length":618,"hash_ids":[2700125,2700126,2700127],"delay":274.9} +{"session_id":"sess-8e1ba416f1aa","input_length":2068,"output_length":30,"hash_ids":[2700128,2700129,2700130,2700131,2700132],"delay":498.6} +{"session_id":"sess-8e1ba416f1aa","input_length":4857,"output_length":194,"hash_ids":[2700133,2700134,2700135,2700136,2700137,2700138,2700139,2700140,2700141,2700142],"delay":590.3} +{"session_id":"sess-8e1ba416f1aa","input_length":6201,"output_length":270,"hash_ids":[2700143,2700144,2700145,2700146,2700147,2700148,2700149,2700150,2700151,2700152,2700153,2700154,2700155],"delay":784.9} +{"session_id":"sess-8e1ba416f1aa","input_length":1422,"output_length":415,"hash_ids":[2700156,2700157,2700158],"delay":1021.1} +{"session_id":"sess-8e1ba416f1aa","input_length":5088,"output_length":2032,"hash_ids":[2700159,2700160,2700161,2700162,2700163,2700164,2700165,2700166,2700167,2700168],"delay":564.2} +{"session_id":"sess-8e1ba416f1aa","input_length":512,"output_length":106,"hash_ids":[2700169],"delay":606.5} +{"session_id":"sess-8e1ba416f1aa","input_length":9556,"output_length":513,"hash_ids":[2700170,2700171,2700172,2700173,2700174,2700175,2700176,2700177,2700178,2700179,2700180,2700181,2700182,2700183,2700184,2700185,2700186,2700187,2700188],"delay":3088.3} +{"session_id":"sess-8e1ba416f1aa","input_length":1214,"output_length":280,"hash_ids":[2700189,2700190,2700191],"delay":1114.6} +{"session_id":"sess-8e1ba416f1aa","input_length":5762,"output_length":40,"hash_ids":[2700192,2700193,2700194,2700195,2700196,2700197,2700198,2700199,2700200,2700201,2700202,2700203],"delay":1338.7} +{"session_id":"sess-8e1ba416f1aa","input_length":1717,"output_length":565,"hash_ids":[2700204,2700205,2700206,2700207],"delay":2627.1} +{"session_id":"sess-80aa8ad989a1","input_length":81796,"output_length":363,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2704063,2704064,2704065,2704066,2704067,2704068,2704069,2704070,2704071,2704072,2704073,2704074,2704075,2704076,2704077,2704078,2704079,2704080,2704081,2704082,2704083,2704084,2704085,2704086,2704087,2704088,2704089,2704090,2704091,2704092,2704093,2704094,2704095,2704096,2704097,2704098,2704099,2704100,2704101,2704102,2704103,2704104,2704105,2704106,2704107,2704108,2704109,2704110,2704111,2704112,2704113,2704114,2704115,2704116,2704117,2704118,2704119],"timestamp":0.0,"group_id":1} +{"session_id":"sess-80aa8ad989a1","input_length":3031,"output_length":622,"hash_ids":[2704120,2704121,2704122,2704123,2704124,2704125],"delay":288.7} +{"session_id":"sess-80aa8ad989a1","input_length":7683,"output_length":86,"hash_ids":[2704126,2704127,2704128,2704129,2704130,2704131,2704132,2704133,2704134,2704135,2704136,2704137,2704138,2704139,2704140,2704141],"delay":6700.7} +{"session_id":"sess-80aa8ad989a1","input_length":3639,"output_length":113,"hash_ids":[2704142,2704143,2704144,2704145,2704146,2704147,2704148,2704149],"delay":19425.2} +{"session_id":"sess-80aa8ad989a1","input_length":4338,"output_length":137,"hash_ids":[2704150,2704151,2704152,2704153,2704154,2704155,2704156,2704157,2704158],"delay":655.4} +{"session_id":"sess-80aa8ad989a1","input_length":1580,"output_length":538,"hash_ids":[2704159,2704160,2704161,2704162],"delay":738.5} +{"session_id":"sess-80aa8ad989a1","input_length":217,"output_length":251,"hash_ids":[2704163],"delay":5256.3} +{"session_id":"sess-80aa8ad989a1","input_length":5954,"output_length":239,"hash_ids":[2704164,2704165,2704166,2704167,2704168,2704169,2704170,2704171,2704172,2704173,2704174,2704175],"delay":19855.2} +{"session_id":"sess-80aa8ad989a1","input_length":1258,"output_length":535,"hash_ids":[2704176,2704177,2704178],"delay":1852.4} +{"session_id":"sess-80aa8ad989a1","input_length":801,"output_length":538,"hash_ids":[2704179,2704180],"delay":339.6} +{"session_id":"sess-80aa8ad989a1","input_length":2085,"output_length":370,"hash_ids":[2704181,2704182,2704183,2704184,2704185],"delay":911.8} +{"session_id":"sess-80aa8ad989a1","input_length":3051,"output_length":110,"hash_ids":[2704186,2704187,2704188,2704189,2704190,2704191],"delay":618.1} +{"session_id":"sess-80aa8ad989a1","input_length":1177,"output_length":168,"hash_ids":[2704192,2704193,2704194],"delay":6695.3} +{"session_id":"sess-80aa8ad989a1","input_length":478,"output_length":229,"hash_ids":[2704195],"delay":387.4} +{"session_id":"sess-80aa8ad989a1","input_length":201,"output_length":663,"hash_ids":[2704196],"delay":199.3} +{"session_id":"sess-80aa8ad989a1","input_length":2673,"output_length":550,"hash_ids":[2704197,2704198,2704199,2704200,2704201,2704202],"delay":373.0} +{"session_id":"sess-80aa8ad989a1","input_length":1496,"output_length":306,"hash_ids":[2704203,2704204,2704205],"delay":1258.2} +{"session_id":"sess-80aa8ad989a1","input_length":354,"output_length":205,"hash_ids":[2704206],"delay":2790.5} +{"session_id":"sess-80aa8ad989a1","input_length":1046,"output_length":172,"hash_ids":[2704207,2704208,2704209],"delay":391.9} +{"session_id":"sess-c48e134f37ba","input_length":55832,"output_length":278,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2708063,2708064,2708065,2708066,2708067,2708068,2708069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c48e134f37ba","input_length":6955,"output_length":907,"hash_ids":[2708070,2708071,2708072,2708073,2708074,2708075,2708076,2708077,2708078,2708079,2708080,2708081,2708082,2708083],"delay":17558.5} +{"session_id":"sess-c48e134f37ba","input_length":4807,"output_length":320,"hash_ids":[2708084,2708085,2708086,2708087,2708088,2708089,2708090,2708091,2708092,2708093],"delay":3445.7} +{"session_id":"sess-c48e134f37ba","input_length":5762,"output_length":62,"hash_ids":[2708094,2708095,2708096,2708097,2708098,2708099,2708100,2708101,2708102,2708103,2708104,2708105],"delay":528.1} +{"session_id":"sess-c48e134f37ba","input_length":479,"output_length":323,"hash_ids":[2708106],"delay":3905.1} +{"session_id":"sess-c48e134f37ba","input_length":1817,"output_length":108,"hash_ids":[2708107,2708108,2708109,2708110],"delay":6262.1} +{"session_id":"sess-c48e134f37ba","input_length":1024,"output_length":95,"hash_ids":[2708111,2708112],"delay":893.3} +{"session_id":"sess-c48e134f37ba","input_length":3029,"output_length":245,"hash_ids":[2708113,2708114,2708115,2708116,2708117,2708118],"delay":17123.3} +{"session_id":"sess-c48e134f37ba","input_length":287,"output_length":124,"hash_ids":[2708119],"delay":18664.0} +{"session_id":"sess-c48e134f37ba","input_length":3148,"output_length":2895,"hash_ids":[2708120,2708121,2708122,2708123,2708124,2708125,2708126],"delay":2174.0} +{"session_id":"sess-c48e134f37ba","input_length":972,"output_length":821,"hash_ids":[2708127,2708128],"delay":2670.6} +{"session_id":"sess-c48e134f37ba","input_length":2888,"output_length":113,"hash_ids":[2708129,2708130,2708131,2708132,2708133,2708134],"delay":12839.1} +{"session_id":"sess-c48e134f37ba","input_length":1304,"output_length":171,"hash_ids":[2708135,2708136,2708137],"delay":989.8} +{"session_id":"sess-c48e134f37ba","input_length":306,"output_length":271,"hash_ids":[2708138],"delay":883.1} +{"session_id":"sess-c48e134f37ba","input_length":662,"output_length":223,"hash_ids":[2708139,2708140],"delay":463.3} +{"session_id":"sess-c48e134f37ba","input_length":382,"output_length":173,"hash_ids":[2708141],"delay":6869.8} +{"session_id":"sess-c48e134f37ba","input_length":5802,"output_length":266,"hash_ids":[2708142,2708143,2708144,2708145,2708146,2708147,2708148,2708149,2708150,2708151,2708152,2708153],"delay":372.6} +{"session_id":"sess-c48e134f37ba","input_length":2652,"output_length":127,"hash_ids":[2708154,2708155,2708156,2708157,2708158,2708159],"delay":394.6} +{"session_id":"sess-c48e134f37ba","input_length":9900,"output_length":122,"hash_ids":[2708160,2708161,2708162,2708163,2708164,2708165,2708166,2708167,2708168,2708169,2708170,2708171,2708172,2708173,2708174,2708175,2708176,2708177,2708178,2708179],"delay":7851.2} +{"session_id":"sess-c48e134f37ba","input_length":414,"output_length":192,"hash_ids":[2708180],"delay":1095.9} +{"session_id":"sess-c48e134f37ba","input_length":2709,"output_length":110,"hash_ids":[2708181,2708182,2708183,2708184,2708185,2708186],"delay":168.2} +{"session_id":"sess-c48e134f37ba","input_length":4619,"output_length":54,"hash_ids":[2708187,2708188,2708189,2708190,2708191,2708192,2708193,2708194,2708195,2708196],"delay":530.8} +{"session_id":"sess-6f838d6e8a03","input_length":57340,"output_length":383,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2712063,2712064,2712065,2712066,2712067,2712068,2712069,2712070,2712071],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6f838d6e8a03","input_length":1227,"output_length":263,"hash_ids":[2712072,2712073,2712074],"delay":571.7} +{"session_id":"sess-6f838d6e8a03","input_length":4355,"output_length":113,"hash_ids":[2712075,2712076,2712077,2712078,2712079,2712080,2712081,2712082,2712083],"delay":28348.3} +{"session_id":"sess-6f838d6e8a03","input_length":524,"output_length":1000,"hash_ids":[2712084,2712085],"delay":940.0} +{"session_id":"sess-6f838d6e8a03","input_length":2850,"output_length":295,"hash_ids":[2712086,2712087,2712088,2712089,2712090,2712091],"delay":894.0} +{"session_id":"sess-6f838d6e8a03","input_length":633,"output_length":68,"hash_ids":[2712092,2712093],"delay":12824.6} +{"session_id":"sess-6f838d6e8a03","input_length":647,"output_length":96,"hash_ids":[2712094,2712095],"delay":358.4} +{"session_id":"sess-6f838d6e8a03","input_length":1066,"output_length":55,"hash_ids":[2712096,2712097,2712098],"delay":12823.9} +{"session_id":"sess-6f838d6e8a03","input_length":3121,"output_length":101,"hash_ids":[2712099,2712100,2712101,2712102,2712103,2712104,2712105],"delay":6661.8} +{"session_id":"sess-6f838d6e8a03","input_length":728,"output_length":892,"hash_ids":[2712106,2712107],"delay":1054.8} +{"session_id":"sess-6f838d6e8a03","input_length":8602,"output_length":1429,"hash_ids":[2712108,2712109,2712110,2712111,2712112,2712113,2712114,2712115,2712116,2712117,2712118,2712119,2712120,2712121,2712122,2712123,2712124],"delay":22559.4} +{"session_id":"sess-6f838d6e8a03","input_length":1940,"output_length":988,"hash_ids":[2712125,2712126,2712127,2712128],"delay":16226.7} +{"session_id":"sess-6f838d6e8a03","input_length":873,"output_length":185,"hash_ids":[2712129,2712130],"delay":10246.6} +{"session_id":"sess-6f838d6e8a03","input_length":9069,"output_length":748,"hash_ids":[2712131,2712132,2712133,2712134,2712135,2712136,2712137,2712138,2712139,2712140,2712141,2712142,2712143,2712144,2712145,2712146,2712147,2712148],"delay":767.8} +{"session_id":"sess-6f838d6e8a03","input_length":7018,"output_length":296,"hash_ids":[2712149,2712150,2712151,2712152,2712153,2712154,2712155,2712156,2712157,2712158,2712159,2712160,2712161,2712162],"delay":2326.9} +{"session_id":"sess-6f838d6e8a03","input_length":469,"output_length":248,"hash_ids":[2712163],"delay":3210.7} +{"session_id":"sess-6f838d6e8a03","input_length":6667,"output_length":192,"hash_ids":[2712164,2712165,2712166,2712167,2712168,2712169,2712170,2712171,2712172,2712173,2712174,2712175,2712176,2712177],"delay":557.4} +{"session_id":"sess-6f838d6e8a03","input_length":3796,"output_length":218,"hash_ids":[2712178,2712179,2712180,2712181,2712182,2712183,2712184,2712185],"delay":2259.8} +{"session_id":"sess-6f838d6e8a03","input_length":190,"output_length":42,"hash_ids":[2712186],"delay":11063.5} +{"session_id":"sess-6f838d6e8a03","input_length":809,"output_length":135,"hash_ids":[2712187,2712188],"delay":436.4} +{"session_id":"sess-6f838d6e8a03","input_length":424,"output_length":108,"hash_ids":[2712189],"delay":480.9} +{"session_id":"sess-6f838d6e8a03","input_length":903,"output_length":433,"hash_ids":[2712190,2712191],"delay":19699.3} +{"session_id":"sess-6f838d6e8a03","input_length":82,"output_length":257,"hash_ids":[2712192],"delay":208.7} +{"session_id":"sess-6f838d6e8a03","input_length":792,"output_length":754,"hash_ids":[2712193,2712194],"delay":569.8} +{"session_id":"sess-6f838d6e8a03","input_length":871,"output_length":122,"hash_ids":[2712195,2712196],"delay":1076.0} +{"session_id":"sess-6f838d6e8a03","input_length":2296,"output_length":208,"hash_ids":[2712197,2712198,2712199,2712200,2712201],"delay":304.2} +{"session_id":"sess-408b2aed1867","input_length":54789,"output_length":193,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2716063,2716064,2716065,2716066,2716067],"timestamp":0.0,"group_id":3} +{"session_id":"sess-408b2aed1867","input_length":1799,"output_length":732,"hash_ids":[2716068,2716069,2716070,2716071],"delay":1298.4} +{"session_id":"sess-408b2aed1867","input_length":1086,"output_length":376,"hash_ids":[2716072,2716073,2716074],"delay":4530.4} +{"session_id":"sess-408b2aed1867","input_length":547,"output_length":605,"hash_ids":[2716075,2716076],"delay":690.3} +{"session_id":"sess-408b2aed1867","input_length":678,"output_length":117,"hash_ids":[2716077,2716078],"delay":980.7} +{"session_id":"sess-408b2aed1867","input_length":4431,"output_length":649,"hash_ids":[2716079,2716080,2716081,2716082,2716083,2716084,2716085,2716086,2716087],"delay":2620.9} +{"session_id":"sess-408b2aed1867","input_length":9378,"output_length":947,"hash_ids":[2716088,2716089,2716090,2716091,2716092,2716093,2716094,2716095,2716096,2716097,2716098,2716099,2716100,2716101,2716102,2716103,2716104,2716105,2716106],"delay":709.4} +{"session_id":"sess-408b2aed1867","input_length":543,"output_length":487,"hash_ids":[2716107,2716108],"delay":3081.4} +{"session_id":"sess-408b2aed1867","input_length":947,"output_length":278,"hash_ids":[2716109,2716110],"delay":1405.5} +{"session_id":"sess-408b2aed1867","input_length":9677,"output_length":361,"hash_ids":[2716111,2716112,2716113,2716114,2716115,2716116,2716117,2716118,2716119,2716120,2716121,2716122,2716123,2716124,2716125,2716126,2716127,2716128,2716129],"delay":9144.0} +{"session_id":"sess-408b2aed1867","input_length":386,"output_length":214,"hash_ids":[2716130],"delay":1367.2} +{"session_id":"sess-408b2aed1867","input_length":8029,"output_length":78,"hash_ids":[2716131,2716132,2716133,2716134,2716135,2716136,2716137,2716138,2716139,2716140,2716141,2716142,2716143,2716144,2716145,2716146],"delay":33282.9} +{"session_id":"sess-408b2aed1867","input_length":531,"output_length":165,"hash_ids":[2716147,2716148],"delay":25697.4} +{"session_id":"sess-408b2aed1867","input_length":1712,"output_length":223,"hash_ids":[2716149,2716150,2716151,2716152],"delay":8006.0} +{"session_id":"sess-408b2aed1867","input_length":2894,"output_length":420,"hash_ids":[2716153,2716154,2716155,2716156,2716157,2716158],"delay":511.6} +{"session_id":"sess-408b2aed1867","input_length":1281,"output_length":278,"hash_ids":[2716159,2716160,2716161],"delay":447.0} +{"session_id":"sess-408b2aed1867","input_length":164,"output_length":149,"hash_ids":[2716162],"delay":719.0} +{"session_id":"sess-408b2aed1867","input_length":1724,"output_length":411,"hash_ids":[2716163,2716164,2716165,2716166],"delay":413.3} +{"session_id":"sess-408b2aed1867","input_length":1601,"output_length":50,"hash_ids":[2716167,2716168,2716169,2716170],"delay":377.0} +{"session_id":"sess-408b2aed1867","input_length":471,"output_length":2091,"hash_ids":[2716171],"delay":1928.0} +{"session_id":"sess-408b2aed1867","input_length":5518,"output_length":291,"hash_ids":[2716172,2716173,2716174,2716175,2716176,2716177,2716178,2716179,2716180,2716181,2716182],"delay":10289.1} +{"session_id":"sess-408b2aed1867","input_length":2908,"output_length":820,"hash_ids":[2716183,2716184,2716185,2716186,2716187,2716188],"delay":680.7} +{"session_id":"sess-408b2aed1867","input_length":427,"output_length":30,"hash_ids":[2716189],"delay":703.6} +{"session_id":"sess-408b2aed1867","input_length":654,"output_length":295,"hash_ids":[2716190,2716191],"delay":1410.4} +{"session_id":"sess-408b2aed1867","input_length":952,"output_length":78,"hash_ids":[2716192,2716193],"delay":5661.1} +{"session_id":"sess-408b2aed1867","input_length":2289,"output_length":177,"hash_ids":[2716194,2716195,2716196,2716197,2716198],"delay":195.2} +{"session_id":"sess-408b2aed1867","input_length":292,"output_length":81,"hash_ids":[2716199],"delay":4273.8} +{"session_id":"sess-408b2aed1867","input_length":1954,"output_length":136,"hash_ids":[2716200,2716201,2716202,2716203],"delay":7832.2} +{"session_id":"sess-408b2aed1867","input_length":678,"output_length":83,"hash_ids":[2716204,2716205],"delay":1300.1} +{"session_id":"sess-408b2aed1867","input_length":1385,"output_length":590,"hash_ids":[2716206,2716207,2716208],"delay":324.1} +{"session_id":"sess-2f803abc5664","input_length":53918,"output_length":323,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2720063,2720064,2720065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2f803abc5664","input_length":3817,"output_length":118,"hash_ids":[2720066,2720067,2720068,2720069,2720070,2720071,2720072,2720073],"delay":647.2} +{"session_id":"sess-2f803abc5664","input_length":724,"output_length":758,"hash_ids":[2720074,2720075],"delay":1053.3} +{"session_id":"sess-2f803abc5664","input_length":693,"output_length":415,"hash_ids":[2720076,2720077],"delay":614.9} +{"session_id":"sess-2f803abc5664","input_length":2309,"output_length":109,"hash_ids":[2720078,2720079,2720080,2720081,2720082],"delay":3649.6} +{"session_id":"sess-2f803abc5664","input_length":1141,"output_length":466,"hash_ids":[2720083,2720084,2720085],"delay":15735.2} +{"session_id":"sess-2f803abc5664","input_length":746,"output_length":152,"hash_ids":[2720086,2720087],"delay":934.3} +{"session_id":"sess-2f803abc5664","input_length":6043,"output_length":88,"hash_ids":[2720088,2720089,2720090,2720091,2720092,2720093,2720094,2720095,2720096,2720097,2720098,2720099],"delay":850.7} +{"session_id":"sess-2f803abc5664","input_length":3645,"output_length":933,"hash_ids":[2720100,2720101,2720102,2720103,2720104,2720105,2720106,2720107],"delay":743.4} +{"session_id":"sess-2f803abc5664","input_length":3827,"output_length":258,"hash_ids":[2720108,2720109,2720110,2720111,2720112,2720113,2720114,2720115],"delay":167.0} +{"session_id":"sess-2f803abc5664","input_length":1750,"output_length":246,"hash_ids":[2720116,2720117,2720118,2720119],"delay":2375.7} +{"session_id":"sess-2f803abc5664","input_length":494,"output_length":198,"hash_ids":[2720120],"delay":353.8} +{"session_id":"sess-2f803abc5664","input_length":685,"output_length":234,"hash_ids":[2720121,2720122],"delay":5016.7} +{"session_id":"sess-2f803abc5664","input_length":586,"output_length":77,"hash_ids":[2720123,2720124],"delay":909.0} +{"session_id":"sess-2f803abc5664","input_length":2084,"output_length":1013,"hash_ids":[2720125,2720126,2720127,2720128,2720129],"delay":1705.4} +{"session_id":"sess-2f803abc5664","input_length":1128,"output_length":189,"hash_ids":[2720130,2720131,2720132],"delay":15177.2} +{"session_id":"sess-2f803abc5664","input_length":1449,"output_length":369,"hash_ids":[2720133,2720134,2720135],"delay":10545.3} +{"session_id":"sess-2f803abc5664","input_length":1461,"output_length":174,"hash_ids":[2720136,2720137,2720138],"delay":2016.4} +{"session_id":"sess-2f803abc5664","input_length":95,"output_length":273,"hash_ids":[2720139],"delay":15596.6} +{"session_id":"sess-2f803abc5664","input_length":5870,"output_length":170,"hash_ids":[2720140,2720141,2720142,2720143,2720144,2720145,2720146,2720147,2720148,2720149,2720150,2720151],"delay":200.9} +{"session_id":"sess-2f803abc5664","input_length":541,"output_length":698,"hash_ids":[2720152,2720153],"delay":395.2} +{"session_id":"sess-2f803abc5664","input_length":1771,"output_length":1546,"hash_ids":[2720154,2720155,2720156,2720157],"delay":678.3} +{"session_id":"sess-2f803abc5664","input_length":2155,"output_length":875,"hash_ids":[2720158,2720159,2720160,2720161,2720162],"delay":35302.3} +{"session_id":"sess-2f803abc5664","input_length":9934,"output_length":923,"hash_ids":[2720163,2720164,2720165,2720166,2720167,2720168,2720169,2720170,2720171,2720172,2720173,2720174,2720175,2720176,2720177,2720178,2720179,2720180,2720181,2720182],"delay":4918.0} +{"session_id":"sess-2f803abc5664","input_length":1540,"output_length":118,"hash_ids":[2720183,2720184,2720185,2720186],"delay":337.2} +{"session_id":"sess-2f803abc5664","input_length":1134,"output_length":73,"hash_ids":[2720187,2720188,2720189],"delay":22551.7} +{"session_id":"sess-2f803abc5664","input_length":3374,"output_length":206,"hash_ids":[2720190,2720191,2720192,2720193,2720194,2720195,2720196],"delay":638.4} +{"session_id":"sess-2f803abc5664","input_length":2696,"output_length":200,"hash_ids":[2720197,2720198,2720199,2720200,2720201,2720202],"delay":378.4} +{"session_id":"sess-2f803abc5664","input_length":1813,"output_length":251,"hash_ids":[2720203,2720204,2720205,2720206],"delay":372.3} +{"session_id":"sess-2f803abc5664","input_length":1400,"output_length":1881,"hash_ids":[2720207,2720208,2720209],"delay":2034.9} +{"session_id":"sess-8042149ace98","input_length":59953,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2724063,2724064,2724065,2724066,2724067,2724068,2724069,2724070,2724071,2724072,2724073,2724074,2724075,2724076,2724077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8042149ace98","input_length":641,"output_length":287,"hash_ids":[2724078,2724079],"delay":8937.2} +{"session_id":"sess-8042149ace98","input_length":1110,"output_length":278,"hash_ids":[2724080,2724081,2724082],"delay":6249.2} +{"session_id":"sess-8042149ace98","input_length":9749,"output_length":778,"hash_ids":[2724083,2724084,2724085,2724086,2724087,2724088,2724089,2724090,2724091,2724092,2724093,2724094,2724095,2724096,2724097,2724098,2724099,2724100,2724101,2724102],"delay":830.7} +{"session_id":"sess-8042149ace98","input_length":1727,"output_length":139,"hash_ids":[2724103,2724104,2724105,2724106],"delay":917.0} +{"session_id":"sess-8042149ace98","input_length":377,"output_length":1160,"hash_ids":[2724107],"delay":163.4} +{"session_id":"sess-8042149ace98","input_length":1019,"output_length":438,"hash_ids":[2724108,2724109],"delay":1489.4} +{"session_id":"sess-8042149ace98","input_length":1137,"output_length":236,"hash_ids":[2724110,2724111,2724112],"delay":521.3} +{"session_id":"sess-8042149ace98","input_length":2589,"output_length":2002,"hash_ids":[2724113,2724114,2724115,2724116,2724117,2724118],"delay":19441.5} +{"session_id":"sess-8042149ace98","input_length":1517,"output_length":65,"hash_ids":[2724119,2724120,2724121],"delay":605.0} +{"session_id":"sess-8042149ace98","input_length":2881,"output_length":180,"hash_ids":[2724122,2724123,2724124,2724125,2724126,2724127],"delay":24799.0} +{"session_id":"sess-8042149ace98","input_length":387,"output_length":142,"hash_ids":[2724128],"delay":5673.7} +{"session_id":"sess-8042149ace98","input_length":3248,"output_length":1202,"hash_ids":[2724129,2724130,2724131,2724132,2724133,2724134,2724135],"delay":248.6} +{"session_id":"sess-8042149ace98","input_length":802,"output_length":661,"hash_ids":[2724136,2724137],"delay":878.8} +{"session_id":"sess-8042149ace98","input_length":5318,"output_length":165,"hash_ids":[2724138,2724139,2724140,2724141,2724142,2724143,2724144,2724145,2724146,2724147,2724148],"delay":482.0} +{"session_id":"sess-8042149ace98","input_length":3231,"output_length":791,"hash_ids":[2724149,2724150,2724151,2724152,2724153,2724154,2724155],"delay":19354.3} +{"session_id":"sess-8042149ace98","input_length":345,"output_length":320,"hash_ids":[2724156],"delay":1095.6} +{"session_id":"sess-8042149ace98","input_length":1601,"output_length":575,"hash_ids":[2724157,2724158,2724159,2724160],"delay":21965.7} +{"session_id":"sess-8042149ace98","input_length":655,"output_length":81,"hash_ids":[2724161,2724162],"delay":528.0} +{"session_id":"sess-8042149ace98","input_length":5589,"output_length":258,"hash_ids":[2724163,2724164,2724165,2724166,2724167,2724168,2724169,2724170,2724171,2724172,2724173],"delay":881.3} +{"session_id":"sess-8042149ace98","input_length":494,"output_length":111,"hash_ids":[2724174],"delay":2416.9} +{"session_id":"sess-8042149ace98","input_length":4519,"output_length":424,"hash_ids":[2724175,2724176,2724177,2724178,2724179,2724180,2724181,2724182,2724183],"delay":16318.0} +{"session_id":"sess-8042149ace98","input_length":3488,"output_length":462,"hash_ids":[2724184,2724185,2724186,2724187,2724188,2724189,2724190],"delay":146.5} +{"session_id":"sess-64dd7ac6639f","input_length":52250,"output_length":312,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-64dd7ac6639f","input_length":733,"output_length":240,"hash_ids":[2724191,2724192],"delay":3115.5} +{"session_id":"sess-64dd7ac6639f","input_length":3394,"output_length":316,"hash_ids":[2724193,2724194,2724195,2724196,2724197,2724198,2724199],"delay":1126.8} +{"session_id":"sess-64dd7ac6639f","input_length":822,"output_length":220,"hash_ids":[2724200,2724201],"delay":52782.6} +{"session_id":"sess-64dd7ac6639f","input_length":1094,"output_length":294,"hash_ids":[2724202,2724203,2724204],"delay":2278.3} +{"session_id":"sess-64dd7ac6639f","input_length":2352,"output_length":300,"hash_ids":[2724205,2724206,2724207,2724208,2724209],"delay":1342.1} +{"session_id":"sess-64dd7ac6639f","input_length":1095,"output_length":645,"hash_ids":[2724210,2724211,2724212],"delay":505.2} +{"session_id":"sess-64dd7ac6639f","input_length":336,"output_length":1164,"hash_ids":[2724213],"delay":2404.7} +{"session_id":"sess-64dd7ac6639f","input_length":1425,"output_length":254,"hash_ids":[2724214,2724215,2724216],"delay":751.6} +{"session_id":"sess-64dd7ac6639f","input_length":755,"output_length":623,"hash_ids":[2724217,2724218],"delay":675.8} +{"session_id":"sess-64dd7ac6639f","input_length":162,"output_length":284,"hash_ids":[2724219],"delay":466.5} +{"session_id":"sess-64dd7ac6639f","input_length":733,"output_length":753,"hash_ids":[2724220,2724221],"delay":22126.8} +{"session_id":"sess-64dd7ac6639f","input_length":5784,"output_length":174,"hash_ids":[2724222,2724223,2724224,2724225,2724226,2724227,2724228,2724229,2724230,2724231,2724232,2724233],"delay":886.8} +{"session_id":"sess-64dd7ac6639f","input_length":3042,"output_length":724,"hash_ids":[2724234,2724235,2724236,2724237,2724238,2724239],"delay":315.0} +{"session_id":"sess-64dd7ac6639f","input_length":1174,"output_length":1332,"hash_ids":[2724240,2724241,2724242],"delay":465.4} +{"session_id":"sess-64dd7ac6639f","input_length":1161,"output_length":1854,"hash_ids":[2724243,2724244,2724245],"delay":6662.7} +{"session_id":"sess-64dd7ac6639f","input_length":1406,"output_length":430,"hash_ids":[2724246,2724247,2724248],"delay":808.0} +{"session_id":"sess-64dd7ac6639f","input_length":1391,"output_length":891,"hash_ids":[2724249,2724250,2724251],"delay":1437.1} +{"session_id":"sess-64dd7ac6639f","input_length":1673,"output_length":52,"hash_ids":[2724252,2724253,2724254,2724255],"delay":13736.3} +{"session_id":"sess-64dd7ac6639f","input_length":1972,"output_length":320,"hash_ids":[2724256,2724257,2724258,2724259],"delay":7174.6} +{"session_id":"sess-64dd7ac6639f","input_length":1575,"output_length":900,"hash_ids":[2724260,2724261,2724262,2724263],"delay":1306.3} +{"session_id":"sess-64dd7ac6639f","input_length":937,"output_length":417,"hash_ids":[2724264,2724265],"delay":1158.8} +{"session_id":"sess-64dd7ac6639f","input_length":95,"output_length":30,"hash_ids":[2724266],"delay":699.5} +{"session_id":"sess-64dd7ac6639f","input_length":237,"output_length":1699,"hash_ids":[2724267],"delay":100.9} +{"session_id":"sess-64dd7ac6639f","input_length":1468,"output_length":185,"hash_ids":[2724268,2724269,2724270],"delay":479.5} +{"session_id":"sess-64dd7ac6639f","input_length":224,"output_length":419,"hash_ids":[2724271],"delay":483.7} +{"session_id":"sess-64dd7ac6639f","input_length":986,"output_length":667,"hash_ids":[2724272,2724273],"delay":15505.1} +{"session_id":"sess-64dd7ac6639f","input_length":256,"output_length":240,"hash_ids":[2724274],"delay":2733.9} +{"session_id":"sess-64dd7ac6639f","input_length":284,"output_length":1261,"hash_ids":[2724275],"delay":852.3} +{"session_id":"sess-64dd7ac6639f","input_length":4358,"output_length":1266,"hash_ids":[2724276,2724277,2724278,2724279,2724280,2724281,2724282,2724283,2724284],"delay":1116.1} +{"session_id":"sess-64dd7ac6639f","input_length":1538,"output_length":314,"hash_ids":[2724285,2724286,2724287,2724288],"delay":483.9} +{"session_id":"sess-64dd7ac6639f","input_length":3435,"output_length":115,"hash_ids":[2724289,2724290,2724291,2724292,2724293,2724294,2724295],"delay":782.9} +{"session_id":"sess-64dd7ac6639f","input_length":3821,"output_length":487,"hash_ids":[2724296,2724297,2724298,2724299,2724300,2724301,2724302,2724303],"delay":185.7} +{"session_id":"sess-64dd7ac6639f","input_length":5548,"output_length":67,"hash_ids":[2724304,2724305,2724306,2724307,2724308,2724309,2724310,2724311,2724312,2724313,2724314],"delay":1170.4} +{"session_id":"sess-64dd7ac6639f","input_length":758,"output_length":358,"hash_ids":[2724315,2724316],"delay":148.2} +{"session_id":"sess-64dd7ac6639f","input_length":2428,"output_length":270,"hash_ids":[2724317,2724318,2724319,2724320,2724321],"delay":1170.9} +{"session_id":"sess-5e6cdce29de4","input_length":64465,"output_length":171,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,2732063,2732064,2732065,2732066,2732067,2732068,2732069,2732070,2732071,2732072,2732073,2732074,2732075,2732076,2732077,2732078,2732079,2732080,2732081,2732082,2732083,2732084,2732085],"timestamp":0.0,"group_id":26} +{"session_id":"sess-5e6cdce29de4","input_length":3264,"output_length":735,"hash_ids":[2732086,2732087,2732088,2732089,2732090,2732091,2732092],"delay":2486.5} +{"session_id":"sess-5e6cdce29de4","input_length":1070,"output_length":188,"hash_ids":[2732093,2732094,2732095],"delay":7778.6} +{"session_id":"sess-5e6cdce29de4","input_length":2226,"output_length":622,"hash_ids":[2732096,2732097,2732098,2732099,2732100],"delay":24832.7} +{"session_id":"sess-5e6cdce29de4","input_length":1708,"output_length":347,"hash_ids":[2732101,2732102,2732103,2732104],"delay":19019.8} +{"session_id":"sess-5e6cdce29de4","input_length":4078,"output_length":305,"hash_ids":[2732105,2732106,2732107,2732108,2732109,2732110,2732111,2732112],"delay":980.4} +{"session_id":"sess-5e6cdce29de4","input_length":4101,"output_length":580,"hash_ids":[2732113,2732114,2732115,2732116,2732117,2732118,2732119,2732120,2732121],"delay":13118.6} +{"session_id":"sess-5e6cdce29de4","input_length":3111,"output_length":242,"hash_ids":[2732122,2732123,2732124,2732125,2732126,2732127,2732128],"delay":1200.3} +{"session_id":"sess-5e6cdce29de4","input_length":906,"output_length":41,"hash_ids":[2732129,2732130],"delay":535.2} +{"session_id":"sess-5e6cdce29de4","input_length":1063,"output_length":377,"hash_ids":[2732131,2732132,2732133],"delay":500.7} +{"session_id":"sess-5e6cdce29de4","input_length":6081,"output_length":714,"hash_ids":[2732134,2732135,2732136,2732137,2732138,2732139,2732140,2732141,2732142,2732143,2732144,2732145],"delay":43688.1} +{"session_id":"sess-5e6cdce29de4","input_length":7411,"output_length":345,"hash_ids":[2732146,2732147,2732148,2732149,2732150,2732151,2732152,2732153,2732154,2732155,2732156,2732157,2732158,2732159,2732160],"delay":2230.4} +{"session_id":"sess-5e6cdce29de4","input_length":343,"output_length":82,"hash_ids":[2732161],"delay":15654.0} +{"session_id":"sess-5e6cdce29de4","input_length":2104,"output_length":232,"hash_ids":[2732162,2732163,2732164,2732165,2732166],"delay":1559.0} +{"session_id":"sess-5e6cdce29de4","input_length":6528,"output_length":172,"hash_ids":[2732167,2732168,2732169,2732170,2732171,2732172,2732173,2732174,2732175,2732176,2732177,2732178,2732179],"delay":1337.3} +{"session_id":"sess-5e6cdce29de4","input_length":6584,"output_length":1158,"hash_ids":[2732180,2732181,2732182,2732183,2732184,2732185,2732186,2732187,2732188,2732189,2732190,2732191,2732192],"delay":9548.7} +{"session_id":"sess-5e6cdce29de4","input_length":341,"output_length":132,"hash_ids":[2732193],"delay":6019.4} +{"session_id":"sess-5e6cdce29de4","input_length":2766,"output_length":442,"hash_ids":[2732194,2732195,2732196,2732197,2732198,2732199],"delay":10710.6} +{"session_id":"sess-eead01ec592b","input_length":71936,"output_length":793,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2736063,2736064,2736065,2736066,2736067,2736068,2736069,2736070,2736071,2736072,2736073,2736074,2736075,2736076,2736077,2736078,2736079,2736080,2736081,2736082,2736083,2736084,2736085,2736086,2736087,2736088,2736089,2736090,2736091,2736092,2736093,2736094,2736095,2736096,2736097,2736098,2736099,2736100],"timestamp":0.0,"group_id":2} +{"session_id":"sess-eead01ec592b","input_length":3384,"output_length":107,"hash_ids":[2736101,2736102,2736103,2736104,2736105,2736106,2736107],"delay":3470.0} +{"session_id":"sess-eead01ec592b","input_length":7671,"output_length":78,"hash_ids":[2736108,2736109,2736110,2736111,2736112,2736113,2736114,2736115,2736116,2736117,2736118,2736119,2736120,2736121,2736122],"delay":19213.1} +{"session_id":"sess-eead01ec592b","input_length":663,"output_length":30,"hash_ids":[2736123,2736124],"delay":398.2} +{"session_id":"sess-eead01ec592b","input_length":854,"output_length":30,"hash_ids":[2736125,2736126],"delay":1355.0} +{"session_id":"sess-eead01ec592b","input_length":1920,"output_length":2027,"hash_ids":[2736127,2736128,2736129,2736130],"delay":2247.9} +{"session_id":"sess-eead01ec592b","input_length":1984,"output_length":700,"hash_ids":[2736131,2736132,2736133,2736134],"delay":1480.9} +{"session_id":"sess-eead01ec592b","input_length":8292,"output_length":391,"hash_ids":[2736135,2736136,2736137,2736138,2736139,2736140,2736141,2736142,2736143,2736144,2736145,2736146,2736147,2736148,2736149,2736150,2736151],"delay":25792.3} +{"session_id":"sess-eead01ec592b","input_length":1543,"output_length":870,"hash_ids":[2736152,2736153,2736154,2736155],"delay":8721.7} +{"session_id":"sess-eead01ec592b","input_length":8628,"output_length":106,"hash_ids":[2736156,2736157,2736158,2736159,2736160,2736161,2736162,2736163,2736164,2736165,2736166,2736167,2736168,2736169,2736170,2736171,2736172],"delay":80.9} +{"session_id":"sess-eead01ec592b","input_length":363,"output_length":368,"hash_ids":[2736173],"delay":618.7} +{"session_id":"sess-eead01ec592b","input_length":1694,"output_length":175,"hash_ids":[2736174,2736175,2736176,2736177],"delay":2195.9} +{"session_id":"sess-eead01ec592b","input_length":4084,"output_length":500,"hash_ids":[2736178,2736179,2736180,2736181,2736182,2736183,2736184,2736185],"delay":871.5} +{"session_id":"sess-eead01ec592b","input_length":1072,"output_length":318,"hash_ids":[2736186,2736187,2736188],"delay":3935.8} +{"session_id":"sess-eead01ec592b","input_length":5369,"output_length":583,"hash_ids":[2736189,2736190,2736191,2736192,2736193,2736194,2736195,2736196,2736197,2736198,2736199],"delay":2839.0} +{"session_id":"sess-eead01ec592b","input_length":339,"output_length":236,"hash_ids":[2736200],"delay":86.2} +{"session_id":"sess-eead01ec592b","input_length":722,"output_length":217,"hash_ids":[2736201,2736202],"delay":116.1} +{"session_id":"sess-eead01ec592b","input_length":1329,"output_length":248,"hash_ids":[2736203,2736204,2736205],"delay":389.9} +{"session_id":"sess-eead01ec592b","input_length":1289,"output_length":37,"hash_ids":[2736206,2736207,2736208],"delay":18791.5} +{"session_id":"sess-1fd1d12dbf8d","input_length":54769,"output_length":640,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2740063,2740064,2740065,2740066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1fd1d12dbf8d","input_length":2381,"output_length":447,"hash_ids":[2740067,2740068,2740069,2740070,2740071],"delay":840.8} +{"session_id":"sess-1fd1d12dbf8d","input_length":203,"output_length":289,"hash_ids":[2740072],"delay":2093.8} +{"session_id":"sess-1fd1d12dbf8d","input_length":8497,"output_length":395,"hash_ids":[2740073,2740074,2740075,2740076,2740077,2740078,2740079,2740080,2740081,2740082,2740083,2740084,2740085,2740086,2740087,2740088,2740089],"delay":2269.3} +{"session_id":"sess-1fd1d12dbf8d","input_length":8526,"output_length":408,"hash_ids":[2740090,2740091,2740092,2740093,2740094,2740095,2740096,2740097,2740098,2740099,2740100,2740101,2740102,2740103,2740104,2740105,2740106],"delay":44994.0} +{"session_id":"sess-1fd1d12dbf8d","input_length":1691,"output_length":224,"hash_ids":[2740107,2740108,2740109,2740110],"delay":2074.7} +{"session_id":"sess-1fd1d12dbf8d","input_length":4583,"output_length":48,"hash_ids":[2740111,2740112,2740113,2740114,2740115,2740116,2740117,2740118,2740119],"delay":3023.0} +{"session_id":"sess-1fd1d12dbf8d","input_length":522,"output_length":186,"hash_ids":[2740120,2740121],"delay":1154.5} +{"session_id":"sess-1fd1d12dbf8d","input_length":7112,"output_length":68,"hash_ids":[2740122,2740123,2740124,2740125,2740126,2740127,2740128,2740129,2740130,2740131,2740132,2740133,2740134,2740135],"delay":8105.0} +{"session_id":"sess-1fd1d12dbf8d","input_length":724,"output_length":454,"hash_ids":[2740136,2740137],"delay":12896.1} +{"session_id":"sess-1fd1d12dbf8d","input_length":5492,"output_length":425,"hash_ids":[2740138,2740139,2740140,2740141,2740142,2740143,2740144,2740145,2740146,2740147,2740148],"delay":172.4} +{"session_id":"sess-1fd1d12dbf8d","input_length":1865,"output_length":245,"hash_ids":[2740149,2740150,2740151,2740152],"delay":623.9} +{"session_id":"sess-1fd1d12dbf8d","input_length":285,"output_length":416,"hash_ids":[2740153],"delay":2870.0} +{"session_id":"sess-1fd1d12dbf8d","input_length":1145,"output_length":622,"hash_ids":[2740154,2740155,2740156],"delay":500.5} +{"session_id":"sess-1fd1d12dbf8d","input_length":1571,"output_length":30,"hash_ids":[2740157,2740158,2740159,2740160],"delay":44605.5} +{"session_id":"sess-1fd1d12dbf8d","input_length":3379,"output_length":162,"hash_ids":[2740161,2740162,2740163,2740164,2740165,2740166,2740167],"delay":38840.6} +{"session_id":"sess-1fd1d12dbf8d","input_length":1191,"output_length":59,"hash_ids":[2740168,2740169,2740170],"delay":250.4} +{"session_id":"sess-1fd1d12dbf8d","input_length":2768,"output_length":201,"hash_ids":[2740171,2740172,2740173,2740174,2740175,2740176],"delay":782.8} +{"session_id":"sess-1fd1d12dbf8d","input_length":6354,"output_length":1023,"hash_ids":[2740177,2740178,2740179,2740180,2740181,2740182,2740183,2740184,2740185,2740186,2740187,2740188,2740189],"delay":812.2} +{"session_id":"sess-1fd1d12dbf8d","input_length":480,"output_length":461,"hash_ids":[2740190],"delay":293.0} +{"session_id":"sess-1fd1d12dbf8d","input_length":435,"output_length":229,"hash_ids":[2740191],"delay":826.4} +{"session_id":"sess-1fd1d12dbf8d","input_length":1425,"output_length":930,"hash_ids":[2740192,2740193,2740194],"delay":7966.2} +{"session_id":"sess-1fd1d12dbf8d","input_length":7199,"output_length":40,"hash_ids":[2740195,2740196,2740197,2740198,2740199,2740200,2740201,2740202,2740203,2740204,2740205,2740206,2740207,2740208,2740209],"delay":286.4} +{"session_id":"sess-8b8c794ce4c9","input_length":55990,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2744063,2744064,2744065,2744066,2744067,2744068,2744069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8b8c794ce4c9","input_length":4255,"output_length":55,"hash_ids":[2744070,2744071,2744072,2744073,2744074,2744075,2744076,2744077,2744078],"delay":913.0} +{"session_id":"sess-8b8c794ce4c9","input_length":1539,"output_length":605,"hash_ids":[2744079,2744080,2744081,2744082],"delay":3089.2} +{"session_id":"sess-8b8c794ce4c9","input_length":710,"output_length":345,"hash_ids":[2744083,2744084],"delay":851.4} +{"session_id":"sess-8b8c794ce4c9","input_length":1114,"output_length":272,"hash_ids":[2744085,2744086,2744087],"delay":3223.5} +{"session_id":"sess-8b8c794ce4c9","input_length":1080,"output_length":168,"hash_ids":[2744088,2744089,2744090],"delay":117.0} +{"session_id":"sess-8b8c794ce4c9","input_length":4090,"output_length":244,"hash_ids":[2744091,2744092,2744093,2744094,2744095,2744096,2744097,2744098],"delay":3023.0} +{"session_id":"sess-8b8c794ce4c9","input_length":2692,"output_length":260,"hash_ids":[2744099,2744100,2744101,2744102,2744103,2744104],"delay":2372.9} +{"session_id":"sess-8b8c794ce4c9","input_length":6286,"output_length":158,"hash_ids":[2744105,2744106,2744107,2744108,2744109,2744110,2744111,2744112,2744113,2744114,2744115,2744116,2744117],"delay":1068.3} +{"session_id":"sess-8b8c794ce4c9","input_length":1040,"output_length":228,"hash_ids":[2744118,2744119,2744120],"delay":732.2} +{"session_id":"sess-8b8c794ce4c9","input_length":6228,"output_length":565,"hash_ids":[2744121,2744122,2744123,2744124,2744125,2744126,2744127,2744128,2744129,2744130,2744131,2744132,2744133],"delay":21101.0} +{"session_id":"sess-8b8c794ce4c9","input_length":1902,"output_length":475,"hash_ids":[2744134,2744135,2744136,2744137],"delay":841.7} +{"session_id":"sess-8b8c794ce4c9","input_length":920,"output_length":480,"hash_ids":[2744138,2744139],"delay":617.6} +{"session_id":"sess-8b8c794ce4c9","input_length":737,"output_length":2767,"hash_ids":[2744140,2744141],"delay":476.5} +{"session_id":"sess-8b8c794ce4c9","input_length":198,"output_length":278,"hash_ids":[2744142],"delay":178.4} +{"session_id":"sess-8b8c794ce4c9","input_length":1343,"output_length":1869,"hash_ids":[2744143,2744144,2744145],"delay":1183.5} +{"session_id":"sess-8b8c794ce4c9","input_length":2062,"output_length":231,"hash_ids":[2744146,2744147,2744148,2744149,2744150],"delay":463.6} +{"session_id":"sess-8b8c794ce4c9","input_length":1530,"output_length":455,"hash_ids":[2744151,2744152,2744153],"delay":15372.3} +{"session_id":"sess-8b8c794ce4c9","input_length":1290,"output_length":89,"hash_ids":[2744154,2744155,2744156],"delay":698.7} +{"session_id":"sess-8b8c794ce4c9","input_length":3582,"output_length":127,"hash_ids":[2744157,2744158,2744159,2744160,2744161,2744162,2744163],"delay":84.8} +{"session_id":"sess-8b8c794ce4c9","input_length":494,"output_length":685,"hash_ids":[2744164],"delay":2274.8} +{"session_id":"sess-8b8c794ce4c9","input_length":810,"output_length":563,"hash_ids":[2744165,2744166],"delay":1127.9} +{"session_id":"sess-8b8c794ce4c9","input_length":8859,"output_length":94,"hash_ids":[2744167,2744168,2744169,2744170,2744171,2744172,2744173,2744174,2744175,2744176,2744177,2744178,2744179,2744180,2744181,2744182,2744183,2744184],"delay":6071.8} +{"session_id":"sess-8b8c794ce4c9","input_length":1819,"output_length":228,"hash_ids":[2744185,2744186,2744187,2744188],"delay":7762.8} +{"session_id":"sess-8b8c794ce4c9","input_length":3271,"output_length":122,"hash_ids":[2744189,2744190,2744191,2744192,2744193,2744194,2744195],"delay":1550.3} +{"session_id":"sess-8b8c794ce4c9","input_length":3729,"output_length":218,"hash_ids":[2744196,2744197,2744198,2744199,2744200,2744201,2744202,2744203],"delay":1837.3} +{"session_id":"sess-8b8c794ce4c9","input_length":1559,"output_length":1040,"hash_ids":[2744204,2744205,2744206,2744207],"delay":112.6} +{"session_id":"sess-6bb26431d19f","input_length":53788,"output_length":600,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,2748063,2748064,2748065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-6bb26431d19f","input_length":799,"output_length":886,"hash_ids":[2748066,2748067],"delay":16405.3} +{"session_id":"sess-6bb26431d19f","input_length":208,"output_length":353,"hash_ids":[2748068],"delay":630.1} +{"session_id":"sess-6bb26431d19f","input_length":2262,"output_length":66,"hash_ids":[2748069,2748070,2748071,2748072,2748073],"delay":9234.3} +{"session_id":"sess-6bb26431d19f","input_length":4590,"output_length":641,"hash_ids":[2748074,2748075,2748076,2748077,2748078,2748079,2748080,2748081,2748082],"delay":1392.6} +{"session_id":"sess-6bb26431d19f","input_length":2491,"output_length":731,"hash_ids":[2748083,2748084,2748085,2748086,2748087],"delay":2571.7} +{"session_id":"sess-6bb26431d19f","input_length":4257,"output_length":38,"hash_ids":[2748088,2748089,2748090,2748091,2748092,2748093,2748094,2748095,2748096],"delay":521.9} +{"session_id":"sess-6bb26431d19f","input_length":8793,"output_length":359,"hash_ids":[2748097,2748098,2748099,2748100,2748101,2748102,2748103,2748104,2748105,2748106,2748107,2748108,2748109,2748110,2748111,2748112,2748113,2748114],"delay":21960.6} +{"session_id":"sess-6bb26431d19f","input_length":1423,"output_length":741,"hash_ids":[2748115,2748116,2748117],"delay":7930.2} +{"session_id":"sess-6bb26431d19f","input_length":341,"output_length":113,"hash_ids":[2748118],"delay":966.5} +{"session_id":"sess-6bb26431d19f","input_length":3114,"output_length":376,"hash_ids":[2748119,2748120,2748121,2748122,2748123,2748124,2748125],"delay":4453.8} +{"session_id":"sess-6bb26431d19f","input_length":3042,"output_length":498,"hash_ids":[2748126,2748127,2748128,2748129,2748130,2748131],"delay":756.4} +{"session_id":"sess-6bb26431d19f","input_length":1398,"output_length":147,"hash_ids":[2748132,2748133,2748134],"delay":8426.2} +{"session_id":"sess-6bb26431d19f","input_length":472,"output_length":45,"hash_ids":[2748135],"delay":2306.1} +{"session_id":"sess-6bb26431d19f","input_length":436,"output_length":33,"hash_ids":[2748136],"delay":1235.9} +{"session_id":"sess-6bb26431d19f","input_length":397,"output_length":382,"hash_ids":[2748137],"delay":1042.7} +{"session_id":"sess-6bb26431d19f","input_length":3334,"output_length":164,"hash_ids":[2748138,2748139,2748140,2748141,2748142,2748143,2748144],"delay":654.1} +{"session_id":"sess-6bb26431d19f","input_length":5825,"output_length":642,"hash_ids":[2748145,2748146,2748147,2748148,2748149,2748150,2748151,2748152,2748153,2748154,2748155,2748156],"delay":530.8} +{"session_id":"sess-6bb26431d19f","input_length":4990,"output_length":326,"hash_ids":[2748157,2748158,2748159,2748160,2748161,2748162,2748163,2748164,2748165,2748166],"delay":31072.8} +{"session_id":"sess-6bb26431d19f","input_length":142,"output_length":786,"hash_ids":[2748167],"delay":34032.4} +{"session_id":"sess-6bb26431d19f","input_length":4623,"output_length":429,"hash_ids":[2748168,2748169,2748170,2748171,2748172,2748173,2748174,2748175,2748176,2748177],"delay":415.6} +{"session_id":"sess-6bb26431d19f","input_length":8308,"output_length":635,"hash_ids":[2748178,2748179,2748180,2748181,2748182,2748183,2748184,2748185,2748186,2748187,2748188,2748189,2748190,2748191,2748192,2748193,2748194],"delay":433.9} +{"session_id":"sess-6bb26431d19f","input_length":6493,"output_length":384,"hash_ids":[2748195,2748196,2748197,2748198,2748199,2748200,2748201,2748202,2748203,2748204,2748205,2748206,2748207],"delay":276.1} +{"session_id":"sess-ff3aa0076115","input_length":52637,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ff3aa0076115","input_length":1101,"output_length":125,"hash_ids":[2748208,2748209,2748210],"delay":225.8} +{"session_id":"sess-ff3aa0076115","input_length":2957,"output_length":270,"hash_ids":[2748211,2748212,2748213,2748214,2748215,2748216],"delay":3700.1} +{"session_id":"sess-ff3aa0076115","input_length":854,"output_length":441,"hash_ids":[2748217,2748218],"delay":29367.2} +{"session_id":"sess-ff3aa0076115","input_length":2248,"output_length":763,"hash_ids":[2748219,2748220,2748221,2748222,2748223],"delay":2243.2} +{"session_id":"sess-ff3aa0076115","input_length":4010,"output_length":216,"hash_ids":[2748224,2748225,2748226,2748227,2748228,2748229,2748230,2748231],"delay":1056.9} +{"session_id":"sess-ff3aa0076115","input_length":631,"output_length":167,"hash_ids":[2748232,2748233],"delay":1587.5} +{"session_id":"sess-ff3aa0076115","input_length":299,"output_length":996,"hash_ids":[2748234],"delay":563.7} +{"session_id":"sess-ff3aa0076115","input_length":752,"output_length":134,"hash_ids":[2748235,2748236],"delay":1147.0} +{"session_id":"sess-ff3aa0076115","input_length":1712,"output_length":190,"hash_ids":[2748237,2748238,2748239,2748240],"delay":827.5} +{"session_id":"sess-ff3aa0076115","input_length":393,"output_length":123,"hash_ids":[2748241],"delay":866.4} +{"session_id":"sess-ff3aa0076115","input_length":954,"output_length":635,"hash_ids":[2748242,2748243],"delay":429.4} +{"session_id":"sess-ff3aa0076115","input_length":5721,"output_length":66,"hash_ids":[2748244,2748245,2748246,2748247,2748248,2748249,2748250,2748251,2748252,2748253,2748254,2748255],"delay":953.8} +{"session_id":"sess-ff3aa0076115","input_length":2792,"output_length":137,"hash_ids":[2748256,2748257,2748258,2748259,2748260,2748261],"delay":271.9} +{"session_id":"sess-ff3aa0076115","input_length":1285,"output_length":161,"hash_ids":[2748262,2748263,2748264],"delay":524.6} +{"session_id":"sess-ff3aa0076115","input_length":3366,"output_length":1311,"hash_ids":[2748265,2748266,2748267,2748268,2748269,2748270,2748271],"delay":715.0} +{"session_id":"sess-ff3aa0076115","input_length":419,"output_length":362,"hash_ids":[2748272],"delay":2421.2} +{"session_id":"sess-ff3aa0076115","input_length":2027,"output_length":1440,"hash_ids":[2748273,2748274,2748275,2748276],"delay":109.3} +{"session_id":"sess-ff3aa0076115","input_length":399,"output_length":30,"hash_ids":[2748277],"delay":573.9} +{"session_id":"sess-ff3aa0076115","input_length":2432,"output_length":1330,"hash_ids":[2748278,2748279,2748280,2748281,2748282],"delay":1619.0} +{"session_id":"sess-ff3aa0076115","input_length":385,"output_length":93,"hash_ids":[2748283],"delay":1521.3} +{"session_id":"sess-ff3aa0076115","input_length":825,"output_length":59,"hash_ids":[2748284,2748285],"delay":618.1} +{"session_id":"sess-ff3aa0076115","input_length":794,"output_length":186,"hash_ids":[2748286,2748287],"delay":479.4} +{"session_id":"sess-ff3aa0076115","input_length":1286,"output_length":261,"hash_ids":[2748288,2748289,2748290],"delay":34734.9} +{"session_id":"sess-ff3aa0076115","input_length":5656,"output_length":243,"hash_ids":[2748291,2748292,2748293,2748294,2748295,2748296,2748297,2748298,2748299,2748300,2748301,2748302],"delay":310.5} +{"session_id":"sess-7fe6398caebf","input_length":67290,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2756063,2756064,2756065,2756066,2756067,2756068,2756069,2756070,2756071,2756072,2756073,2756074,2756075,2756076,2756077,2756078,2756079,2756080,2756081,2756082,2756083,2756084,2756085,2756086,2756087,2756088,2756089,2756090,2756091],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7fe6398caebf","input_length":5164,"output_length":111,"hash_ids":[2756092,2756093,2756094,2756095,2756096,2756097,2756098,2756099,2756100,2756101,2756102],"delay":1442.0} +{"session_id":"sess-7fe6398caebf","input_length":1608,"output_length":378,"hash_ids":[2756103,2756104,2756105,2756106],"delay":3333.6} +{"session_id":"sess-7fe6398caebf","input_length":207,"output_length":140,"hash_ids":[2756107],"delay":3975.9} +{"session_id":"sess-7fe6398caebf","input_length":896,"output_length":59,"hash_ids":[2756108,2756109],"delay":817.2} +{"session_id":"sess-7fe6398caebf","input_length":222,"output_length":683,"hash_ids":[2756110],"delay":1543.4} +{"session_id":"sess-7fe6398caebf","input_length":2706,"output_length":293,"hash_ids":[2756111,2756112,2756113,2756114,2756115,2756116],"delay":5691.5} +{"session_id":"sess-7fe6398caebf","input_length":4045,"output_length":2928,"hash_ids":[2756117,2756118,2756119,2756120,2756121,2756122,2756123,2756124],"delay":5937.3} +{"session_id":"sess-7fe6398caebf","input_length":2896,"output_length":2158,"hash_ids":[2756125,2756126,2756127,2756128,2756129,2756130],"delay":31381.4} +{"session_id":"sess-7fe6398caebf","input_length":3780,"output_length":318,"hash_ids":[2756131,2756132,2756133,2756134,2756135,2756136,2756137,2756138],"delay":28287.8} +{"session_id":"sess-7fe6398caebf","input_length":6877,"output_length":540,"hash_ids":[2756139,2756140,2756141,2756142,2756143,2756144,2756145,2756146,2756147,2756148,2756149,2756150,2756151,2756152],"delay":90.3} +{"session_id":"sess-7fe6398caebf","input_length":1621,"output_length":2125,"hash_ids":[2756153,2756154,2756155,2756156],"delay":44246.0} +{"session_id":"sess-7fe6398caebf","input_length":1178,"output_length":1074,"hash_ids":[2756157,2756158,2756159],"delay":558.7} +{"session_id":"sess-7fe6398caebf","input_length":4585,"output_length":1971,"hash_ids":[2756160,2756161,2756162,2756163,2756164,2756165,2756166,2756167,2756168],"delay":6843.0} +{"session_id":"sess-7fe6398caebf","input_length":7231,"output_length":1147,"hash_ids":[2756169,2756170,2756171,2756172,2756173,2756174,2756175,2756176,2756177,2756178,2756179,2756180,2756181,2756182,2756183],"delay":252.9} +{"session_id":"sess-7fe6398caebf","input_length":2290,"output_length":233,"hash_ids":[2756184,2756185,2756186,2756187,2756188],"delay":1263.2} +{"session_id":"sess-6bfbfc028547","input_length":79319,"output_length":614,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,2760063,2760064,2760065,2760066,2760067,2760068,2760069,2760070,2760071,2760072,2760073,2760074,2760075,2760076,2760077,2760078,2760079,2760080,2760081,2760082,2760083,2760084,2760085,2760086,2760087,2760088,2760089,2760090,2760091,2760092,2760093,2760094,2760095,2760096,2760097,2760098,2760099,2760100,2760101,2760102,2760103,2760104,2760105,2760106,2760107,2760108,2760109,2760110,2760111,2760112,2760113,2760114],"timestamp":0.0,"group_id":26} +{"session_id":"sess-6bfbfc028547","input_length":1840,"output_length":1959,"hash_ids":[2760115,2760116,2760117,2760118],"delay":40536.9} +{"session_id":"sess-6bfbfc028547","input_length":2781,"output_length":360,"hash_ids":[2760119,2760120,2760121,2760122,2760123,2760124],"delay":578.4} +{"session_id":"sess-6bfbfc028547","input_length":197,"output_length":260,"hash_ids":[2760125],"delay":1371.8} +{"session_id":"sess-6bfbfc028547","input_length":1381,"output_length":74,"hash_ids":[2760126,2760127,2760128],"delay":278.2} +{"session_id":"sess-6bfbfc028547","input_length":1010,"output_length":1028,"hash_ids":[2760129,2760130],"delay":3201.9} +{"session_id":"sess-6bfbfc028547","input_length":2798,"output_length":381,"hash_ids":[2760131,2760132,2760133,2760134,2760135,2760136],"delay":515.9} +{"session_id":"sess-6bfbfc028547","input_length":603,"output_length":286,"hash_ids":[2760137,2760138],"delay":1738.8} +{"session_id":"sess-6bfbfc028547","input_length":6708,"output_length":48,"hash_ids":[2760139,2760140,2760141,2760142,2760143,2760144,2760145,2760146,2760147,2760148,2760149,2760150,2760151,2760152],"delay":7102.8} +{"session_id":"sess-6bfbfc028547","input_length":2662,"output_length":201,"hash_ids":[2760153,2760154,2760155,2760156,2760157,2760158],"delay":464.4} +{"session_id":"sess-6bfbfc028547","input_length":4177,"output_length":583,"hash_ids":[2760159,2760160,2760161,2760162,2760163,2760164,2760165,2760166,2760167],"delay":1894.6} +{"session_id":"sess-6bfbfc028547","input_length":1499,"output_length":401,"hash_ids":[2760168,2760169,2760170],"delay":672.3} +{"session_id":"sess-6bfbfc028547","input_length":2675,"output_length":225,"hash_ids":[2760171,2760172,2760173,2760174,2760175,2760176],"delay":562.5} +{"session_id":"sess-6bfbfc028547","input_length":2420,"output_length":420,"hash_ids":[2760177,2760178,2760179,2760180,2760181],"delay":624.3} +{"session_id":"sess-6bfbfc028547","input_length":2417,"output_length":178,"hash_ids":[2760182,2760183,2760184,2760185,2760186],"delay":365.0} +{"session_id":"sess-6bfbfc028547","input_length":3451,"output_length":600,"hash_ids":[2760187,2760188,2760189,2760190,2760191,2760192,2760193],"delay":666.4} +{"session_id":"sess-6bfbfc028547","input_length":481,"output_length":709,"hash_ids":[2760194],"delay":16444.5} +{"session_id":"sess-6bfbfc028547","input_length":1434,"output_length":66,"hash_ids":[2760195,2760196,2760197],"delay":634.9} +{"session_id":"sess-6bfbfc028547","input_length":3543,"output_length":71,"hash_ids":[2760198,2760199,2760200,2760201,2760202,2760203,2760204],"delay":165.1} +{"session_id":"sess-3b39c4316566","input_length":52819,"output_length":161,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2764063],"timestamp":0.0,"group_id":1} +{"session_id":"sess-3b39c4316566","input_length":4065,"output_length":581,"hash_ids":[2764064,2764065,2764066,2764067,2764068,2764069,2764070,2764071],"delay":1778.5} +{"session_id":"sess-3b39c4316566","input_length":6002,"output_length":754,"hash_ids":[2764072,2764073,2764074,2764075,2764076,2764077,2764078,2764079,2764080,2764081,2764082,2764083],"delay":1914.0} +{"session_id":"sess-3b39c4316566","input_length":3196,"output_length":836,"hash_ids":[2764084,2764085,2764086,2764087,2764088,2764089,2764090],"delay":6752.3} +{"session_id":"sess-3b39c4316566","input_length":600,"output_length":569,"hash_ids":[2764091,2764092],"delay":3776.6} +{"session_id":"sess-3b39c4316566","input_length":2761,"output_length":147,"hash_ids":[2764093,2764094,2764095,2764096,2764097,2764098],"delay":6358.6} +{"session_id":"sess-3b39c4316566","input_length":3690,"output_length":619,"hash_ids":[2764099,2764100,2764101,2764102,2764103,2764104,2764105,2764106],"delay":2563.3} +{"session_id":"sess-dfd5c90e938e","input_length":53891,"output_length":305,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2768063,2768064,2768065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dfd5c90e938e","input_length":8740,"output_length":75,"hash_ids":[2768066,2768067,2768068,2768069,2768070,2768071,2768072,2768073,2768074,2768075,2768076,2768077,2768078,2768079,2768080,2768081,2768082,2768083],"delay":629.8} +{"session_id":"sess-dfd5c90e938e","input_length":4135,"output_length":333,"hash_ids":[2768084,2768085,2768086,2768087,2768088,2768089,2768090,2768091,2768092],"delay":6040.3} +{"session_id":"sess-dfd5c90e938e","input_length":2692,"output_length":76,"hash_ids":[2768093,2768094,2768095,2768096,2768097,2768098],"delay":1812.2} +{"session_id":"sess-dfd5c90e938e","input_length":2844,"output_length":1257,"hash_ids":[2768099,2768100,2768101,2768102,2768103,2768104],"delay":13518.7} +{"session_id":"sess-dfd5c90e938e","input_length":1015,"output_length":191,"hash_ids":[2768105,2768106],"delay":1138.2} +{"session_id":"sess-dfd5c90e938e","input_length":420,"output_length":523,"hash_ids":[2768107],"delay":25258.8} +{"session_id":"sess-dfd5c90e938e","input_length":1583,"output_length":84,"hash_ids":[2768108,2768109,2768110,2768111],"delay":449.0} +{"session_id":"sess-dfd5c90e938e","input_length":421,"output_length":152,"hash_ids":[2768112],"delay":284.2} +{"session_id":"sess-e3d103869222","input_length":61628,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,2772063,2772064,2772065,2772066,2772067,2772068,2772069,2772070,2772071,2772072,2772073,2772074,2772075,2772076,2772077,2772078,2772079,2772080],"timestamp":0.0,"group_id":20} +{"session_id":"sess-e3d103869222","input_length":985,"output_length":2218,"hash_ids":[2772081,2772082],"delay":24271.1} +{"session_id":"sess-e3d103869222","input_length":633,"output_length":213,"hash_ids":[2772083,2772084],"delay":1939.1} +{"session_id":"sess-e3d103869222","input_length":745,"output_length":110,"hash_ids":[2772085,2772086],"delay":2743.2} +{"session_id":"sess-e3d103869222","input_length":449,"output_length":342,"hash_ids":[2772087],"delay":1350.1} +{"session_id":"sess-e3d103869222","input_length":515,"output_length":593,"hash_ids":[2772088,2772089],"delay":812.5} +{"session_id":"sess-e3d103869222","input_length":8147,"output_length":58,"hash_ids":[2772090,2772091,2772092,2772093,2772094,2772095,2772096,2772097,2772098,2772099,2772100,2772101,2772102,2772103,2772104,2772105],"delay":2433.8} +{"session_id":"sess-e3d103869222","input_length":2318,"output_length":1042,"hash_ids":[2772106,2772107,2772108,2772109,2772110],"delay":371.9} +{"session_id":"sess-e3d103869222","input_length":2346,"output_length":258,"hash_ids":[2772111,2772112,2772113,2772114,2772115],"delay":49323.6} +{"session_id":"sess-e3d103869222","input_length":6908,"output_length":50,"hash_ids":[2772116,2772117,2772118,2772119,2772120,2772121,2772122,2772123,2772124,2772125,2772126,2772127,2772128,2772129],"delay":1221.7} +{"session_id":"sess-e3d103869222","input_length":7679,"output_length":210,"hash_ids":[2772130,2772131,2772132,2772133,2772134,2772135,2772136,2772137,2772138,2772139,2772140,2772141,2772142,2772143,2772144],"delay":409.0} +{"session_id":"sess-e3d103869222","input_length":2901,"output_length":246,"hash_ids":[2772145,2772146,2772147,2772148,2772149,2772150],"delay":604.6} +{"session_id":"sess-e3d103869222","input_length":6150,"output_length":173,"hash_ids":[2772151,2772152,2772153,2772154,2772155,2772156,2772157,2772158,2772159,2772160,2772161,2772162,2772163],"delay":330.7} +{"session_id":"sess-e3d103869222","input_length":2348,"output_length":82,"hash_ids":[2772164,2772165,2772166,2772167,2772168],"delay":421.9} +{"session_id":"sess-b7a13127e942","input_length":52789,"output_length":1374,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2776063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b7a13127e942","input_length":1605,"output_length":1036,"hash_ids":[2776064,2776065,2776066,2776067],"delay":1444.4} +{"session_id":"sess-b7a13127e942","input_length":854,"output_length":1270,"hash_ids":[2776068,2776069],"delay":2492.0} +{"session_id":"sess-b7a13127e942","input_length":792,"output_length":401,"hash_ids":[2776070,2776071],"delay":375.0} +{"session_id":"sess-b7a13127e942","input_length":9415,"output_length":255,"hash_ids":[2776072,2776073,2776074,2776075,2776076,2776077,2776078,2776079,2776080,2776081,2776082,2776083,2776084,2776085,2776086,2776087,2776088,2776089,2776090],"delay":4798.6} +{"session_id":"sess-b7a13127e942","input_length":1305,"output_length":655,"hash_ids":[2776091,2776092,2776093],"delay":3205.8} +{"session_id":"sess-b7a13127e942","input_length":1116,"output_length":680,"hash_ids":[2776094,2776095,2776096],"delay":511.6} +{"session_id":"sess-b7a13127e942","input_length":4162,"output_length":118,"hash_ids":[2776097,2776098,2776099,2776100,2776101,2776102,2776103,2776104,2776105],"delay":1454.3} +{"session_id":"sess-b7a13127e942","input_length":1073,"output_length":262,"hash_ids":[2776106,2776107,2776108],"delay":3002.6} +{"session_id":"sess-b7a13127e942","input_length":502,"output_length":187,"hash_ids":[2776109],"delay":26792.0} +{"session_id":"sess-b7a13127e942","input_length":3874,"output_length":209,"hash_ids":[2776110,2776111,2776112,2776113,2776114,2776115,2776116,2776117],"delay":27939.0} +{"session_id":"sess-b7a13127e942","input_length":1562,"output_length":146,"hash_ids":[2776118,2776119,2776120,2776121],"delay":490.6} +{"session_id":"sess-4e08d00b4916","input_length":53230,"output_length":1352,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2780063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4e08d00b4916","input_length":1651,"output_length":2564,"hash_ids":[2780064,2780065,2780066,2780067],"delay":74888.4} +{"session_id":"sess-4e08d00b4916","input_length":1645,"output_length":1786,"hash_ids":[2780068,2780069,2780070,2780071],"delay":2761.5} +{"session_id":"sess-4e08d00b4916","input_length":7217,"output_length":661,"hash_ids":[2780072,2780073,2780074,2780075,2780076,2780077,2780078,2780079,2780080,2780081,2780082,2780083,2780084,2780085,2780086],"delay":1152.6} +{"session_id":"sess-4e08d00b4916","input_length":628,"output_length":539,"hash_ids":[2780087,2780088],"delay":3061.3} +{"session_id":"sess-4e08d00b4916","input_length":2959,"output_length":189,"hash_ids":[2780089,2780090,2780091,2780092,2780093,2780094],"delay":17487.1} +{"session_id":"sess-4e08d00b4916","input_length":4550,"output_length":180,"hash_ids":[2780095,2780096,2780097,2780098,2780099,2780100,2780101,2780102,2780103],"delay":2215.9} +{"session_id":"sess-4e08d00b4916","input_length":3044,"output_length":98,"hash_ids":[2780104,2780105,2780106,2780107,2780108,2780109],"delay":7344.5} +{"session_id":"sess-4e08d00b4916","input_length":1104,"output_length":249,"hash_ids":[2780110,2780111,2780112],"delay":1050.8} +{"session_id":"sess-4e08d00b4916","input_length":856,"output_length":110,"hash_ids":[2780113,2780114],"delay":611.9} +{"session_id":"sess-4e08d00b4916","input_length":7818,"output_length":210,"hash_ids":[2780115,2780116,2780117,2780118,2780119,2780120,2780121,2780122,2780123,2780124,2780125,2780126,2780127,2780128,2780129,2780130],"delay":289.3} +{"session_id":"sess-4e08d00b4916","input_length":306,"output_length":528,"hash_ids":[2780131],"delay":369.6} +{"session_id":"sess-4e08d00b4916","input_length":2242,"output_length":342,"hash_ids":[2780132,2780133,2780134,2780135,2780136],"delay":11704.6} +{"session_id":"sess-4e08d00b4916","input_length":1616,"output_length":421,"hash_ids":[2780137,2780138,2780139,2780140],"delay":5543.6} +{"session_id":"sess-4e08d00b4916","input_length":3941,"output_length":287,"hash_ids":[2780141,2780142,2780143,2780144,2780145,2780146,2780147,2780148],"delay":282.8} +{"session_id":"sess-4e08d00b4916","input_length":1264,"output_length":546,"hash_ids":[2780149,2780150,2780151],"delay":14181.8} +{"session_id":"sess-4e08d00b4916","input_length":1171,"output_length":126,"hash_ids":[2780152,2780153,2780154],"delay":1236.3} +{"session_id":"sess-4e08d00b4916","input_length":7896,"output_length":173,"hash_ids":[2780155,2780156,2780157,2780158,2780159,2780160,2780161,2780162,2780163,2780164,2780165,2780166,2780167,2780168,2780169,2780170],"delay":335.9} +{"session_id":"sess-cdb6ae16f2f1","input_length":61672,"output_length":311,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,2784063,2784064,2784065,2784066,2784067,2784068,2784069,2784070,2784071,2784072,2784073,2784074,2784075,2784076,2784077,2784078,2784079,2784080],"timestamp":0.0,"group_id":6} +{"session_id":"sess-cdb6ae16f2f1","input_length":2205,"output_length":385,"hash_ids":[2784081,2784082,2784083,2784084,2784085],"delay":850.0} +{"session_id":"sess-cdb6ae16f2f1","input_length":1503,"output_length":110,"hash_ids":[2784086,2784087,2784088],"delay":36279.2} +{"session_id":"sess-cdb6ae16f2f1","input_length":1908,"output_length":92,"hash_ids":[2784089,2784090,2784091,2784092],"delay":693.6} +{"session_id":"sess-cdb6ae16f2f1","input_length":1505,"output_length":185,"hash_ids":[2784093,2784094,2784095],"delay":931.7} +{"session_id":"sess-cdb6ae16f2f1","input_length":653,"output_length":333,"hash_ids":[2784096,2784097],"delay":2082.7} +{"session_id":"sess-cdb6ae16f2f1","input_length":2364,"output_length":337,"hash_ids":[2784098,2784099,2784100,2784101,2784102],"delay":664.3} +{"session_id":"sess-cdb6ae16f2f1","input_length":933,"output_length":277,"hash_ids":[2784103,2784104],"delay":1584.1} +{"session_id":"sess-cdb6ae16f2f1","input_length":2227,"output_length":158,"hash_ids":[2784105,2784106,2784107,2784108,2784109],"delay":567.5} +{"session_id":"sess-cdb6ae16f2f1","input_length":1299,"output_length":214,"hash_ids":[2784110,2784111,2784112],"delay":33098.0} +{"session_id":"sess-cdb6ae16f2f1","input_length":1436,"output_length":1954,"hash_ids":[2784113,2784114,2784115],"delay":197.4} +{"session_id":"sess-cdb6ae16f2f1","input_length":5310,"output_length":471,"hash_ids":[2784116,2784117,2784118,2784119,2784120,2784121,2784122,2784123,2784124,2784125,2784126],"delay":3535.9} +{"session_id":"sess-cdb6ae16f2f1","input_length":808,"output_length":107,"hash_ids":[2784127,2784128],"delay":620.8} +{"session_id":"sess-cdb6ae16f2f1","input_length":496,"output_length":59,"hash_ids":[2784129],"delay":6232.6} +{"session_id":"sess-cdb6ae16f2f1","input_length":5901,"output_length":533,"hash_ids":[2784130,2784131,2784132,2784133,2784134,2784135,2784136,2784137,2784138,2784139,2784140,2784141],"delay":407.4} +{"session_id":"sess-cdb6ae16f2f1","input_length":6864,"output_length":137,"hash_ids":[2784142,2784143,2784144,2784145,2784146,2784147,2784148,2784149,2784150,2784151,2784152,2784153,2784154,2784155],"delay":8597.0} +{"session_id":"sess-1d970e87f523","input_length":54944,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2788063,2788064,2788065,2788066,2788067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1d970e87f523","input_length":1148,"output_length":527,"hash_ids":[2788068,2788069,2788070],"delay":734.0} +{"session_id":"sess-1d970e87f523","input_length":622,"output_length":127,"hash_ids":[2788071,2788072],"delay":150.7} +{"session_id":"sess-1d970e87f523","input_length":402,"output_length":105,"hash_ids":[2788073],"delay":2044.3} +{"session_id":"sess-1d970e87f523","input_length":2453,"output_length":290,"hash_ids":[2788074,2788075,2788076,2788077,2788078],"delay":597.3} +{"session_id":"sess-1d970e87f523","input_length":2385,"output_length":766,"hash_ids":[2788079,2788080,2788081,2788082,2788083],"delay":35454.5} +{"session_id":"sess-1d970e87f523","input_length":2077,"output_length":648,"hash_ids":[2788084,2788085,2788086,2788087,2788088],"delay":16493.4} +{"session_id":"sess-1d970e87f523","input_length":5276,"output_length":322,"hash_ids":[2788089,2788090,2788091,2788092,2788093,2788094,2788095,2788096,2788097,2788098,2788099],"delay":7623.5} +{"session_id":"sess-1d970e87f523","input_length":1087,"output_length":270,"hash_ids":[2788100,2788101,2788102],"delay":2993.7} +{"session_id":"sess-1d970e87f523","input_length":1426,"output_length":46,"hash_ids":[2788103,2788104,2788105],"delay":1420.5} +{"session_id":"sess-1d970e87f523","input_length":2857,"output_length":86,"hash_ids":[2788106,2788107,2788108,2788109,2788110,2788111],"delay":285.8} +{"session_id":"sess-1d970e87f523","input_length":4045,"output_length":655,"hash_ids":[2788112,2788113,2788114,2788115,2788116,2788117,2788118,2788119],"delay":1449.6} +{"session_id":"sess-1d970e87f523","input_length":7232,"output_length":435,"hash_ids":[2788120,2788121,2788122,2788123,2788124,2788125,2788126,2788127,2788128,2788129,2788130,2788131,2788132,2788133,2788134],"delay":268.6} +{"session_id":"sess-1d970e87f523","input_length":977,"output_length":79,"hash_ids":[2788135,2788136],"delay":789.3} +{"session_id":"sess-1d970e87f523","input_length":6061,"output_length":419,"hash_ids":[2788137,2788138,2788139,2788140,2788141,2788142,2788143,2788144,2788145,2788146,2788147,2788148],"delay":1181.6} +{"session_id":"sess-1d970e87f523","input_length":976,"output_length":1981,"hash_ids":[2788149,2788150],"delay":3753.9} +{"session_id":"sess-1d970e87f523","input_length":1475,"output_length":181,"hash_ids":[2788151,2788152,2788153],"delay":708.3} +{"session_id":"sess-1d970e87f523","input_length":5339,"output_length":679,"hash_ids":[2788154,2788155,2788156,2788157,2788158,2788159,2788160,2788161,2788162,2788163,2788164],"delay":528.1} +{"session_id":"sess-1d970e87f523","input_length":855,"output_length":989,"hash_ids":[2788165,2788166],"delay":3163.5} +{"session_id":"sess-1d970e87f523","input_length":651,"output_length":561,"hash_ids":[2788167,2788168],"delay":8262.9} +{"session_id":"sess-1d970e87f523","input_length":865,"output_length":1680,"hash_ids":[2788169,2788170],"delay":584.3} +{"session_id":"sess-1d970e87f523","input_length":865,"output_length":500,"hash_ids":[2788171,2788172],"delay":123.6} +{"session_id":"sess-1d970e87f523","input_length":2347,"output_length":119,"hash_ids":[2788173,2788174,2788175,2788176,2788177],"delay":8247.4} +{"session_id":"sess-1d970e87f523","input_length":1498,"output_length":1364,"hash_ids":[2788178,2788179,2788180],"delay":3802.4} +{"session_id":"sess-1d970e87f523","input_length":1443,"output_length":141,"hash_ids":[2788181,2788182,2788183],"delay":6567.0} +{"session_id":"sess-1d970e87f523","input_length":502,"output_length":530,"hash_ids":[2788184],"delay":409.4} +{"session_id":"sess-1d970e87f523","input_length":1525,"output_length":60,"hash_ids":[2788185,2788186,2788187],"delay":4286.9} +{"session_id":"sess-1d970e87f523","input_length":4696,"output_length":653,"hash_ids":[2788188,2788189,2788190,2788191,2788192,2788193,2788194,2788195,2788196,2788197],"delay":96.8} +{"session_id":"sess-20f97d6dbb9d","input_length":61847,"output_length":257,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2792063,2792064,2792065,2792066,2792067,2792068,2792069,2792070,2792071,2792072,2792073,2792074,2792075,2792076,2792077,2792078,2792079,2792080],"timestamp":0.0,"group_id":3} +{"session_id":"sess-20f97d6dbb9d","input_length":5487,"output_length":439,"hash_ids":[2792081,2792082,2792083,2792084,2792085,2792086,2792087,2792088,2792089,2792090,2792091],"delay":818.3} +{"session_id":"sess-20f97d6dbb9d","input_length":2280,"output_length":585,"hash_ids":[2792092,2792093,2792094,2792095,2792096],"delay":740.9} +{"session_id":"sess-20f97d6dbb9d","input_length":6757,"output_length":170,"hash_ids":[2792097,2792098,2792099,2792100,2792101,2792102,2792103,2792104,2792105,2792106,2792107,2792108,2792109,2792110],"delay":555.7} +{"session_id":"sess-20f97d6dbb9d","input_length":2341,"output_length":30,"hash_ids":[2792111,2792112,2792113,2792114,2792115],"delay":10999.6} +{"session_id":"sess-20f97d6dbb9d","input_length":1179,"output_length":140,"hash_ids":[2792116,2792117,2792118],"delay":95.3} +{"session_id":"sess-20f97d6dbb9d","input_length":3142,"output_length":801,"hash_ids":[2792119,2792120,2792121,2792122,2792123,2792124,2792125],"delay":17790.6} +{"session_id":"sess-d63a86cf41c1","input_length":61726,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2796063,2796064,2796065,2796066,2796067,2796068,2796069,2796070,2796071,2796072,2796073,2796074,2796075,2796076,2796077,2796078,2796079,2796080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d63a86cf41c1","input_length":1460,"output_length":250,"hash_ids":[2796081,2796082,2796083],"delay":1338.5} +{"session_id":"sess-d63a86cf41c1","input_length":3658,"output_length":142,"hash_ids":[2796084,2796085,2796086,2796087,2796088,2796089,2796090,2796091],"delay":1303.9} +{"session_id":"sess-d63a86cf41c1","input_length":1557,"output_length":347,"hash_ids":[2796092,2796093,2796094,2796095],"delay":533.8} +{"session_id":"sess-d63a86cf41c1","input_length":2205,"output_length":998,"hash_ids":[2796096,2796097,2796098,2796099,2796100],"delay":147.7} +{"session_id":"sess-d63a86cf41c1","input_length":1065,"output_length":315,"hash_ids":[2796101,2796102,2796103],"delay":964.6} +{"session_id":"sess-d63a86cf41c1","input_length":1324,"output_length":118,"hash_ids":[2796104,2796105,2796106],"delay":4293.1} +{"session_id":"sess-d63a86cf41c1","input_length":8656,"output_length":173,"hash_ids":[2796107,2796108,2796109,2796110,2796111,2796112,2796113,2796114,2796115,2796116,2796117,2796118,2796119,2796120,2796121,2796122,2796123],"delay":12632.4} +{"session_id":"sess-d63a86cf41c1","input_length":473,"output_length":946,"hash_ids":[2796124],"delay":1974.6} +{"session_id":"sess-d63a86cf41c1","input_length":268,"output_length":244,"hash_ids":[2796125],"delay":551.7} +{"session_id":"sess-d63a86cf41c1","input_length":1525,"output_length":293,"hash_ids":[2796126,2796127,2796128],"delay":1713.2} +{"session_id":"sess-d63a86cf41c1","input_length":3101,"output_length":1762,"hash_ids":[2796129,2796130,2796131,2796132,2796133,2796134,2796135],"delay":3426.0} +{"session_id":"sess-d63a86cf41c1","input_length":2351,"output_length":524,"hash_ids":[2796136,2796137,2796138,2796139,2796140],"delay":3333.9} +{"session_id":"sess-d63a86cf41c1","input_length":1566,"output_length":237,"hash_ids":[2796141,2796142,2796143,2796144],"delay":8799.1} +{"session_id":"sess-d63a86cf41c1","input_length":832,"output_length":181,"hash_ids":[2796145,2796146],"delay":594.8} +{"session_id":"sess-d63a86cf41c1","input_length":423,"output_length":2690,"hash_ids":[2796147],"delay":21383.8} +{"session_id":"sess-d63a86cf41c1","input_length":311,"output_length":1627,"hash_ids":[2796148],"delay":289.1} +{"session_id":"sess-d63a86cf41c1","input_length":716,"output_length":2595,"hash_ids":[2796149,2796150],"delay":330.0} +{"session_id":"sess-d63a86cf41c1","input_length":723,"output_length":1289,"hash_ids":[2796151,2796152],"delay":8693.3} +{"session_id":"sess-d63a86cf41c1","input_length":7534,"output_length":315,"hash_ids":[2796153,2796154,2796155,2796156,2796157,2796158,2796159,2796160,2796161,2796162,2796163,2796164,2796165,2796166,2796167],"delay":1524.4} +{"session_id":"sess-d63a86cf41c1","input_length":3202,"output_length":67,"hash_ids":[2796168,2796169,2796170,2796171,2796172,2796173,2796174],"delay":10870.3} +{"session_id":"sess-d63a86cf41c1","input_length":3580,"output_length":491,"hash_ids":[2796175,2796176,2796177,2796178,2796179,2796180,2796181],"delay":15082.1} +{"session_id":"sess-d63a86cf41c1","input_length":1415,"output_length":96,"hash_ids":[2796182,2796183,2796184],"delay":1845.9} +{"session_id":"sess-d63a86cf41c1","input_length":1321,"output_length":375,"hash_ids":[2796185,2796186,2796187],"delay":7068.3} +{"session_id":"sess-d63a86cf41c1","input_length":297,"output_length":319,"hash_ids":[2796188],"delay":2735.7} +{"session_id":"sess-d63a86cf41c1","input_length":630,"output_length":188,"hash_ids":[2796189,2796190],"delay":2870.7} +{"session_id":"sess-d63a86cf41c1","input_length":689,"output_length":52,"hash_ids":[2796191,2796192],"delay":342.5} +{"session_id":"sess-d63a86cf41c1","input_length":1361,"output_length":350,"hash_ids":[2796193,2796194,2796195],"delay":304.6} +{"session_id":"sess-5a2f0b3fdcbe","input_length":55148,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,2800063,2800064,2800065,2800066,2800067],"timestamp":0.0,"group_id":17} +{"session_id":"sess-5a2f0b3fdcbe","input_length":1475,"output_length":283,"hash_ids":[2800068,2800069,2800070],"delay":448.2} +{"session_id":"sess-c0bd75829f65","input_length":53420,"output_length":427,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2804063,2804064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c0bd75829f65","input_length":2576,"output_length":1029,"hash_ids":[2804065,2804066,2804067,2804068,2804069,2804070],"delay":807.5} +{"session_id":"sess-c0bd75829f65","input_length":1005,"output_length":257,"hash_ids":[2804071,2804072],"delay":2221.3} +{"session_id":"sess-c0bd75829f65","input_length":1313,"output_length":104,"hash_ids":[2804073,2804074,2804075],"delay":3704.7} +{"session_id":"sess-c0bd75829f65","input_length":2515,"output_length":77,"hash_ids":[2804076,2804077,2804078,2804079,2804080],"delay":876.1} +{"session_id":"sess-c0bd75829f65","input_length":2294,"output_length":139,"hash_ids":[2804081,2804082,2804083,2804084,2804085],"delay":17806.2} +{"session_id":"sess-c0bd75829f65","input_length":513,"output_length":158,"hash_ids":[2804086,2804087],"delay":26157.1} +{"session_id":"sess-c0bd75829f65","input_length":1331,"output_length":369,"hash_ids":[2804088,2804089,2804090],"delay":457.5} +{"session_id":"sess-c0bd75829f65","input_length":505,"output_length":386,"hash_ids":[2804091],"delay":1940.7} +{"session_id":"sess-c0bd75829f65","input_length":421,"output_length":533,"hash_ids":[2804092],"delay":33105.2} +{"session_id":"sess-c0bd75829f65","input_length":8637,"output_length":150,"hash_ids":[2804093,2804094,2804095,2804096,2804097,2804098,2804099,2804100,2804101,2804102,2804103,2804104,2804105,2804106,2804107,2804108,2804109],"delay":2441.0} +{"session_id":"sess-c0bd75829f65","input_length":2469,"output_length":153,"hash_ids":[2804110,2804111,2804112,2804113,2804114],"delay":995.8} +{"session_id":"sess-c0bd75829f65","input_length":1313,"output_length":453,"hash_ids":[2804115,2804116,2804117],"delay":2929.0} +{"session_id":"sess-c0bd75829f65","input_length":2830,"output_length":100,"hash_ids":[2804118,2804119,2804120,2804121,2804122,2804123],"delay":297.6} +{"session_id":"sess-c0bd75829f65","input_length":330,"output_length":396,"hash_ids":[2804124],"delay":9450.4} +{"session_id":"sess-c0bd75829f65","input_length":1393,"output_length":54,"hash_ids":[2804125,2804126,2804127],"delay":53696.4} +{"session_id":"sess-c0bd75829f65","input_length":1416,"output_length":146,"hash_ids":[2804128,2804129,2804130],"delay":936.6} +{"session_id":"sess-c0bd75829f65","input_length":3513,"output_length":370,"hash_ids":[2804131,2804132,2804133,2804134,2804135,2804136,2804137],"delay":378.9} +{"session_id":"sess-c0bd75829f65","input_length":1732,"output_length":160,"hash_ids":[2804138,2804139,2804140,2804141],"delay":773.4} +{"session_id":"sess-c0bd75829f65","input_length":3246,"output_length":1472,"hash_ids":[2804142,2804143,2804144,2804145,2804146,2804147,2804148],"delay":1002.5} +{"session_id":"sess-c0bd75829f65","input_length":2571,"output_length":445,"hash_ids":[2804149,2804150,2804151,2804152,2804153,2804154],"delay":221.1} +{"session_id":"sess-c0bd75829f65","input_length":2069,"output_length":575,"hash_ids":[2804155,2804156,2804157,2804158,2804159],"delay":287.2} +{"session_id":"sess-c0bd75829f65","input_length":1897,"output_length":365,"hash_ids":[2804160,2804161,2804162,2804163],"delay":1001.9} +{"session_id":"sess-c0bd75829f65","input_length":434,"output_length":198,"hash_ids":[2804164],"delay":651.1} +{"session_id":"sess-c0bd75829f65","input_length":5716,"output_length":630,"hash_ids":[2804165,2804166,2804167,2804168,2804169,2804170,2804171,2804172,2804173,2804174,2804175,2804176],"delay":1909.4} +{"session_id":"sess-c0bd75829f65","input_length":8548,"output_length":156,"hash_ids":[2804177,2804178,2804179,2804180,2804181,2804182,2804183,2804184,2804185,2804186,2804187,2804188,2804189,2804190,2804191,2804192,2804193],"delay":1781.5} +{"session_id":"sess-c0bd75829f65","input_length":1959,"output_length":948,"hash_ids":[2804194,2804195,2804196,2804197],"delay":207.5} +{"session_id":"sess-c0bd75829f65","input_length":348,"output_length":143,"hash_ids":[2804198],"delay":1519.7} +{"session_id":"sess-c0bd75829f65","input_length":1521,"output_length":520,"hash_ids":[2804199,2804200,2804201],"delay":1406.3} +{"session_id":"sess-c0bd75829f65","input_length":1330,"output_length":1003,"hash_ids":[2804202,2804203,2804204],"delay":746.9} +{"session_id":"sess-7e8023546336","input_length":54775,"output_length":1223,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,2808063,2808064,2808065,2808066],"timestamp":0.0,"group_id":16} +{"session_id":"sess-7e8023546336","input_length":2450,"output_length":284,"hash_ids":[2808067,2808068,2808069,2808070,2808071],"delay":2228.6} +{"session_id":"sess-7e8023546336","input_length":2292,"output_length":135,"hash_ids":[2808072,2808073,2808074,2808075,2808076],"delay":288.4} +{"session_id":"sess-7e8023546336","input_length":539,"output_length":657,"hash_ids":[2808077,2808078],"delay":564.1} +{"session_id":"sess-7e8023546336","input_length":488,"output_length":241,"hash_ids":[2808079],"delay":729.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":61421,"output_length":1246,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2812063,2812064,2812065,2812066,2812067,2812068,2812069,2812070,2812071,2812072,2812073,2812074,2812075,2812076,2812077,2812078,2812079],"timestamp":0.0,"group_id":1} +{"session_id":"sess-19ab5f6e9cb3","input_length":4456,"output_length":1805,"hash_ids":[2812080,2812081,2812082,2812083,2812084,2812085,2812086,2812087,2812088],"delay":923.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":1622,"output_length":333,"hash_ids":[2812089,2812090,2812091,2812092],"delay":671.3} +{"session_id":"sess-19ab5f6e9cb3","input_length":118,"output_length":382,"hash_ids":[2812093],"delay":5628.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":3123,"output_length":353,"hash_ids":[2812094,2812095,2812096,2812097,2812098,2812099,2812100],"delay":5242.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":578,"output_length":2525,"hash_ids":[2812101,2812102],"delay":702.9} +{"session_id":"sess-19ab5f6e9cb3","input_length":268,"output_length":173,"hash_ids":[2812103],"delay":555.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":2517,"output_length":700,"hash_ids":[2812104,2812105,2812106,2812107,2812108],"delay":374.5} +{"session_id":"sess-19ab5f6e9cb3","input_length":806,"output_length":55,"hash_ids":[2812109,2812110],"delay":1186.0} +{"session_id":"sess-19ab5f6e9cb3","input_length":1185,"output_length":1977,"hash_ids":[2812111,2812112,2812113],"delay":685.9} +{"session_id":"sess-19ab5f6e9cb3","input_length":978,"output_length":377,"hash_ids":[2812114,2812115],"delay":7925.0} +{"session_id":"sess-19ab5f6e9cb3","input_length":700,"output_length":628,"hash_ids":[2812116,2812117],"delay":217.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":2168,"output_length":387,"hash_ids":[2812118,2812119,2812120,2812121,2812122],"delay":390.1} +{"session_id":"sess-19ab5f6e9cb3","input_length":2193,"output_length":595,"hash_ids":[2812123,2812124,2812125,2812126,2812127],"delay":1868.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":2383,"output_length":1490,"hash_ids":[2812128,2812129,2812130,2812131,2812132],"delay":3234.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":9778,"output_length":213,"hash_ids":[2812133,2812134,2812135,2812136,2812137,2812138,2812139,2812140,2812141,2812142,2812143,2812144,2812145,2812146,2812147,2812148,2812149,2812150,2812151,2812152],"delay":1588.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":726,"output_length":64,"hash_ids":[2812153,2812154],"delay":3297.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":2746,"output_length":189,"hash_ids":[2812155,2812156,2812157,2812158,2812159,2812160],"delay":389.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":2607,"output_length":79,"hash_ids":[2812161,2812162,2812163,2812164,2812165,2812166],"delay":129.0} +{"session_id":"sess-19ab5f6e9cb3","input_length":1964,"output_length":194,"hash_ids":[2812167,2812168,2812169,2812170],"delay":1499.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":454,"output_length":359,"hash_ids":[2812171],"delay":713.2} +{"session_id":"sess-19ab5f6e9cb3","input_length":6267,"output_length":298,"hash_ids":[2812172,2812173,2812174,2812175,2812176,2812177,2812178,2812179,2812180,2812181,2812182,2812183,2812184],"delay":213.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":1221,"output_length":144,"hash_ids":[2812185,2812186,2812187],"delay":65.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":3986,"output_length":335,"hash_ids":[2812188,2812189,2812190,2812191,2812192,2812193,2812194,2812195],"delay":3583.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":1284,"output_length":916,"hash_ids":[2812196,2812197,2812198],"delay":248.1} +{"session_id":"sess-fb4be4ba6876","input_length":55448,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2816063,2816064,2816065,2816066,2816067,2816068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb4be4ba6876","input_length":1836,"output_length":49,"hash_ids":[2816069,2816070,2816071,2816072],"delay":1393.1} +{"session_id":"sess-fb4be4ba6876","input_length":1459,"output_length":299,"hash_ids":[2816073,2816074,2816075],"delay":1382.6} +{"session_id":"sess-fb4be4ba6876","input_length":1293,"output_length":619,"hash_ids":[2816076,2816077,2816078],"delay":284.7} +{"session_id":"sess-fb4be4ba6876","input_length":2195,"output_length":230,"hash_ids":[2816079,2816080,2816081,2816082,2816083],"delay":1639.8} +{"session_id":"sess-fb4be4ba6876","input_length":229,"output_length":1585,"hash_ids":[2816084],"delay":1604.4} +{"session_id":"sess-fb4be4ba6876","input_length":5521,"output_length":2244,"hash_ids":[2816085,2816086,2816087,2816088,2816089,2816090,2816091,2816092,2816093,2816094,2816095],"delay":2048.8} +{"session_id":"sess-fb4be4ba6876","input_length":510,"output_length":305,"hash_ids":[2816096],"delay":1853.6} +{"session_id":"sess-fb4be4ba6876","input_length":1974,"output_length":333,"hash_ids":[2816097,2816098,2816099,2816100],"delay":14834.4} +{"session_id":"sess-fb4be4ba6876","input_length":1446,"output_length":1073,"hash_ids":[2816101,2816102,2816103],"delay":16433.5} +{"session_id":"sess-fb4be4ba6876","input_length":3285,"output_length":287,"hash_ids":[2816104,2816105,2816106,2816107,2816108,2816109,2816110],"delay":548.6} +{"session_id":"sess-fb4be4ba6876","input_length":1967,"output_length":225,"hash_ids":[2816111,2816112,2816113,2816114],"delay":885.1} +{"session_id":"sess-fb4be4ba6876","input_length":3416,"output_length":101,"hash_ids":[2816115,2816116,2816117,2816118,2816119,2816120,2816121],"delay":1030.0} +{"session_id":"sess-fb4be4ba6876","input_length":1138,"output_length":2680,"hash_ids":[2816122,2816123,2816124],"delay":1513.2} +{"session_id":"sess-fb4be4ba6876","input_length":162,"output_length":171,"hash_ids":[2816125],"delay":902.7} +{"session_id":"sess-fb4be4ba6876","input_length":406,"output_length":420,"hash_ids":[2816126],"delay":863.8} +{"session_id":"sess-fb4be4ba6876","input_length":1503,"output_length":32,"hash_ids":[2816127,2816128,2816129],"delay":1164.3} +{"session_id":"sess-fb4be4ba6876","input_length":328,"output_length":184,"hash_ids":[2816130],"delay":3080.4} +{"session_id":"sess-fb4be4ba6876","input_length":3194,"output_length":41,"hash_ids":[2816131,2816132,2816133,2816134,2816135,2816136,2816137],"delay":1293.8} +{"session_id":"sess-fb4be4ba6876","input_length":745,"output_length":304,"hash_ids":[2816138,2816139],"delay":2317.7} +{"session_id":"sess-fb4be4ba6876","input_length":1973,"output_length":642,"hash_ids":[2816140,2816141,2816142,2816143],"delay":289.2} +{"session_id":"sess-fb4be4ba6876","input_length":1569,"output_length":403,"hash_ids":[2816144,2816145,2816146,2816147],"delay":432.0} +{"session_id":"sess-fb4be4ba6876","input_length":3032,"output_length":156,"hash_ids":[2816148,2816149,2816150,2816151,2816152,2816153],"delay":1749.1} +{"session_id":"sess-fb4be4ba6876","input_length":4374,"output_length":732,"hash_ids":[2816154,2816155,2816156,2816157,2816158,2816159,2816160,2816161,2816162],"delay":20102.5} +{"session_id":"sess-fb4be4ba6876","input_length":6936,"output_length":170,"hash_ids":[2816163,2816164,2816165,2816166,2816167,2816168,2816169,2816170,2816171,2816172,2816173,2816174,2816175,2816176],"delay":419.5} +{"session_id":"sess-fb4be4ba6876","input_length":7101,"output_length":286,"hash_ids":[2816177,2816178,2816179,2816180,2816181,2816182,2816183,2816184,2816185,2816186,2816187,2816188,2816189,2816190],"delay":245.7} +{"session_id":"sess-fb4be4ba6876","input_length":558,"output_length":110,"hash_ids":[2816191,2816192],"delay":404.4} +{"session_id":"sess-fb4be4ba6876","input_length":1159,"output_length":193,"hash_ids":[2816193,2816194,2816195],"delay":5913.7} +{"session_id":"sess-e462e31b02ab","input_length":56801,"output_length":265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2820063,2820064,2820065,2820066,2820067,2820068,2820069,2820070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e462e31b02ab","input_length":6515,"output_length":179,"hash_ids":[2820071,2820072,2820073,2820074,2820075,2820076,2820077,2820078,2820079,2820080,2820081,2820082,2820083],"delay":2315.6} +{"session_id":"sess-e462e31b02ab","input_length":5557,"output_length":82,"hash_ids":[2820084,2820085,2820086,2820087,2820088,2820089,2820090,2820091,2820092,2820093,2820094],"delay":2803.6} +{"session_id":"sess-e462e31b02ab","input_length":1154,"output_length":1862,"hash_ids":[2820095,2820096,2820097],"delay":145.1} +{"session_id":"sess-e462e31b02ab","input_length":7791,"output_length":727,"hash_ids":[2820098,2820099,2820100,2820101,2820102,2820103,2820104,2820105,2820106,2820107,2820108,2820109,2820110,2820111,2820112,2820113],"delay":969.6} +{"session_id":"sess-e462e31b02ab","input_length":608,"output_length":512,"hash_ids":[2820114,2820115],"delay":23574.0} +{"session_id":"sess-e462e31b02ab","input_length":4034,"output_length":533,"hash_ids":[2820116,2820117,2820118,2820119,2820120,2820121,2820122,2820123],"delay":926.4} +{"session_id":"sess-feb6146fd9d0","input_length":54371,"output_length":176,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,2824063,2824064,2824065,2824066],"timestamp":0.0,"group_id":27} +{"session_id":"sess-feb6146fd9d0","input_length":6793,"output_length":482,"hash_ids":[2824067,2824068,2824069,2824070,2824071,2824072,2824073,2824074,2824075,2824076,2824077,2824078,2824079,2824080],"delay":1484.7} +{"session_id":"sess-feb6146fd9d0","input_length":4618,"output_length":159,"hash_ids":[2824081,2824082,2824083,2824084,2824085,2824086,2824087,2824088,2824089,2824090],"delay":1816.9} +{"session_id":"sess-feb6146fd9d0","input_length":4658,"output_length":189,"hash_ids":[2824091,2824092,2824093,2824094,2824095,2824096,2824097,2824098,2824099,2824100],"delay":684.3} +{"session_id":"sess-feb6146fd9d0","input_length":1418,"output_length":503,"hash_ids":[2824101,2824102,2824103],"delay":1993.2} +{"session_id":"sess-feb6146fd9d0","input_length":227,"output_length":267,"hash_ids":[2824104],"delay":14444.4} +{"session_id":"sess-feb6146fd9d0","input_length":3256,"output_length":263,"hash_ids":[2824105,2824106,2824107,2824108,2824109,2824110,2824111],"delay":1087.0} +{"session_id":"sess-feb6146fd9d0","input_length":1150,"output_length":872,"hash_ids":[2824112,2824113,2824114],"delay":267.2} +{"session_id":"sess-feb6146fd9d0","input_length":1654,"output_length":168,"hash_ids":[2824115,2824116,2824117,2824118],"delay":285.8} +{"session_id":"sess-feb6146fd9d0","input_length":5589,"output_length":2107,"hash_ids":[2824119,2824120,2824121,2824122,2824123,2824124,2824125,2824126,2824127,2824128,2824129],"delay":18115.9} +{"session_id":"sess-feb6146fd9d0","input_length":435,"output_length":110,"hash_ids":[2824130],"delay":472.6} +{"session_id":"sess-feb6146fd9d0","input_length":1800,"output_length":731,"hash_ids":[2824131,2824132,2824133,2824134],"delay":351.9} +{"session_id":"sess-feb6146fd9d0","input_length":724,"output_length":753,"hash_ids":[2824135,2824136],"delay":5180.6} +{"session_id":"sess-feb6146fd9d0","input_length":1859,"output_length":463,"hash_ids":[2824137,2824138,2824139,2824140],"delay":262.5} +{"session_id":"sess-feb6146fd9d0","input_length":1873,"output_length":746,"hash_ids":[2824141,2824142,2824143,2824144],"delay":299.1} +{"session_id":"sess-feb6146fd9d0","input_length":3363,"output_length":58,"hash_ids":[2824145,2824146,2824147,2824148,2824149,2824150,2824151],"delay":483.6} +{"session_id":"sess-feb6146fd9d0","input_length":521,"output_length":219,"hash_ids":[2824152,2824153],"delay":347.5} +{"session_id":"sess-feb6146fd9d0","input_length":5261,"output_length":177,"hash_ids":[2824154,2824155,2824156,2824157,2824158,2824159,2824160,2824161,2824162,2824163,2824164],"delay":3656.1} +{"session_id":"sess-feb6146fd9d0","input_length":838,"output_length":163,"hash_ids":[2824165,2824166],"delay":419.0} +{"session_id":"sess-feb6146fd9d0","input_length":2570,"output_length":564,"hash_ids":[2824167,2824168,2824169,2824170,2824171,2824172],"delay":188.6} +{"session_id":"sess-feb6146fd9d0","input_length":111,"output_length":943,"hash_ids":[2824173],"delay":602.8} +{"session_id":"sess-feb6146fd9d0","input_length":2734,"output_length":349,"hash_ids":[2824174,2824175,2824176,2824177,2824178,2824179],"delay":270.8} +{"session_id":"sess-feb6146fd9d0","input_length":4107,"output_length":78,"hash_ids":[2824180,2824181,2824182,2824183,2824184,2824185,2824186,2824187,2824188],"delay":194.7} +{"session_id":"sess-feb6146fd9d0","input_length":793,"output_length":149,"hash_ids":[2824189,2824190],"delay":240.8} +{"session_id":"sess-feb6146fd9d0","input_length":729,"output_length":371,"hash_ids":[2824191,2824192],"delay":476.9} +{"session_id":"sess-feb6146fd9d0","input_length":742,"output_length":741,"hash_ids":[2824193,2824194],"delay":323.4} +{"session_id":"sess-feb6146fd9d0","input_length":1865,"output_length":150,"hash_ids":[2824195,2824196,2824197,2824198],"delay":645.5} +{"session_id":"sess-feb6146fd9d0","input_length":2521,"output_length":582,"hash_ids":[2824199,2824200,2824201,2824202,2824203],"delay":289.7} +{"session_id":"sess-fe20e760d545","input_length":63375,"output_length":519,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,2828063,2828064,2828065,2828066,2828067,2828068,2828069,2828070,2828071,2828072,2828073,2828074,2828075,2828076,2828077,2828078,2828079,2828080,2828081,2828082,2828083],"timestamp":0.0,"group_id":24} +{"session_id":"sess-fe20e760d545","input_length":484,"output_length":119,"hash_ids":[2828084],"delay":192.9} +{"session_id":"sess-fe20e760d545","input_length":5481,"output_length":90,"hash_ids":[2828085,2828086,2828087,2828088,2828089,2828090,2828091,2828092,2828093,2828094,2828095],"delay":2334.0} +{"session_id":"sess-fe20e760d545","input_length":2376,"output_length":825,"hash_ids":[2828096,2828097,2828098,2828099,2828100],"delay":347.9} +{"session_id":"sess-fe20e760d545","input_length":136,"output_length":674,"hash_ids":[2828101],"delay":10692.2} +{"session_id":"sess-fe20e760d545","input_length":3190,"output_length":125,"hash_ids":[2828102,2828103,2828104,2828105,2828106,2828107,2828108],"delay":773.1} +{"session_id":"sess-fe20e760d545","input_length":561,"output_length":102,"hash_ids":[2828109,2828110],"delay":43093.5} +{"session_id":"sess-fe20e760d545","input_length":4754,"output_length":240,"hash_ids":[2828111,2828112,2828113,2828114,2828115,2828116,2828117,2828118,2828119,2828120],"delay":6430.3} +{"session_id":"sess-fe20e760d545","input_length":4677,"output_length":160,"hash_ids":[2828121,2828122,2828123,2828124,2828125,2828126,2828127,2828128,2828129,2828130],"delay":1199.1} +{"session_id":"sess-fe20e760d545","input_length":2022,"output_length":268,"hash_ids":[2828131,2828132,2828133,2828134],"delay":222.4} +{"session_id":"sess-fe20e760d545","input_length":2445,"output_length":184,"hash_ids":[2828135,2828136,2828137,2828138,2828139],"delay":1462.3} +{"session_id":"sess-fe20e760d545","input_length":2151,"output_length":241,"hash_ids":[2828140,2828141,2828142,2828143,2828144],"delay":188.4} +{"session_id":"sess-fe20e760d545","input_length":4128,"output_length":269,"hash_ids":[2828145,2828146,2828147,2828148,2828149,2828150,2828151,2828152,2828153],"delay":6360.8} +{"session_id":"sess-fe20e760d545","input_length":378,"output_length":942,"hash_ids":[2828154],"delay":624.2} +{"session_id":"sess-fe20e760d545","input_length":999,"output_length":443,"hash_ids":[2828155,2828156],"delay":22627.7} +{"session_id":"sess-fe20e760d545","input_length":1345,"output_length":105,"hash_ids":[2828157,2828158,2828159],"delay":953.7} +{"session_id":"sess-fe20e760d545","input_length":2089,"output_length":411,"hash_ids":[2828160,2828161,2828162,2828163,2828164],"delay":612.6} +{"session_id":"sess-fe20e760d545","input_length":775,"output_length":275,"hash_ids":[2828165,2828166],"delay":4193.3} +{"session_id":"sess-fe20e760d545","input_length":3456,"output_length":66,"hash_ids":[2828167,2828168,2828169,2828170,2828171,2828172,2828173],"delay":6375.7} +{"session_id":"sess-fe20e760d545","input_length":8520,"output_length":133,"hash_ids":[2828174,2828175,2828176,2828177,2828178,2828179,2828180,2828181,2828182,2828183,2828184,2828185,2828186,2828187,2828188,2828189,2828190],"delay":1873.3} +{"session_id":"sess-fe20e760d545","input_length":3906,"output_length":741,"hash_ids":[2828191,2828192,2828193,2828194,2828195,2828196,2828197,2828198],"delay":623.2} +{"session_id":"sess-fe20e760d545","input_length":1776,"output_length":71,"hash_ids":[2828199,2828200,2828201,2828202],"delay":61.4} +{"session_id":"sess-fe20e760d545","input_length":967,"output_length":655,"hash_ids":[2828203,2828204],"delay":740.8} +{"session_id":"sess-fe20e760d545","input_length":3031,"output_length":207,"hash_ids":[2828205,2828206,2828207,2828208,2828209,2828210],"delay":1537.4} +{"session_id":"sess-fc60167bbe8d","input_length":55827,"output_length":95,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2832063,2832064,2832065,2832066,2832067,2832068,2832069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fc60167bbe8d","input_length":6904,"output_length":376,"hash_ids":[2832070,2832071,2832072,2832073,2832074,2832075,2832076,2832077,2832078,2832079,2832080,2832081,2832082,2832083],"delay":789.1} +{"session_id":"sess-fc60167bbe8d","input_length":5325,"output_length":682,"hash_ids":[2832084,2832085,2832086,2832087,2832088,2832089,2832090,2832091,2832092,2832093,2832094],"delay":4287.9} +{"session_id":"sess-fc60167bbe8d","input_length":9636,"output_length":134,"hash_ids":[2832095,2832096,2832097,2832098,2832099,2832100,2832101,2832102,2832103,2832104,2832105,2832106,2832107,2832108,2832109,2832110,2832111,2832112,2832113],"delay":2464.8} +{"session_id":"sess-fc60167bbe8d","input_length":1436,"output_length":47,"hash_ids":[2832114,2832115,2832116],"delay":23496.1} +{"session_id":"sess-fc60167bbe8d","input_length":605,"output_length":112,"hash_ids":[2832117,2832118],"delay":117.0} +{"session_id":"sess-fc60167bbe8d","input_length":925,"output_length":186,"hash_ids":[2832119,2832120],"delay":782.9} +{"session_id":"sess-fc60167bbe8d","input_length":1048,"output_length":1262,"hash_ids":[2832121,2832122,2832123],"delay":38281.8} +{"session_id":"sess-fc60167bbe8d","input_length":2159,"output_length":708,"hash_ids":[2832124,2832125,2832126,2832127,2832128],"delay":888.8} +{"session_id":"sess-fc60167bbe8d","input_length":3267,"output_length":299,"hash_ids":[2832129,2832130,2832131,2832132,2832133,2832134,2832135],"delay":1975.0} +{"session_id":"sess-fc60167bbe8d","input_length":264,"output_length":768,"hash_ids":[2832136],"delay":564.4} +{"session_id":"sess-fc60167bbe8d","input_length":1156,"output_length":173,"hash_ids":[2832137,2832138,2832139],"delay":1311.8} +{"session_id":"sess-fc60167bbe8d","input_length":106,"output_length":303,"hash_ids":[2832140],"delay":1881.8} +{"session_id":"sess-fc60167bbe8d","input_length":5821,"output_length":549,"hash_ids":[2832141,2832142,2832143,2832144,2832145,2832146,2832147,2832148,2832149,2832150,2832151,2832152],"delay":8648.8} +{"session_id":"sess-fc60167bbe8d","input_length":179,"output_length":344,"hash_ids":[2832153],"delay":14347.0} +{"session_id":"sess-fc60167bbe8d","input_length":463,"output_length":109,"hash_ids":[2832154],"delay":453.3} +{"session_id":"sess-219a7a194c8d","input_length":64677,"output_length":1977,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2836063,2836064,2836065,2836066,2836067,2836068,2836069,2836070,2836071,2836072,2836073,2836074,2836075,2836076,2836077,2836078,2836079,2836080,2836081,2836082,2836083,2836084,2836085,2836086],"timestamp":0.0,"group_id":1} +{"session_id":"sess-219a7a194c8d","input_length":1277,"output_length":941,"hash_ids":[2836087,2836088,2836089],"delay":2642.0} +{"session_id":"sess-219a7a194c8d","input_length":2355,"output_length":314,"hash_ids":[2836090,2836091,2836092,2836093,2836094],"delay":748.3} +{"session_id":"sess-219a7a194c8d","input_length":941,"output_length":188,"hash_ids":[2836095,2836096],"delay":1456.8} +{"session_id":"sess-219a7a194c8d","input_length":3948,"output_length":127,"hash_ids":[2836097,2836098,2836099,2836100,2836101,2836102,2836103,2836104],"delay":387.6} +{"session_id":"sess-219a7a194c8d","input_length":3410,"output_length":1050,"hash_ids":[2836105,2836106,2836107,2836108,2836109,2836110,2836111],"delay":8169.3} +{"session_id":"sess-219a7a194c8d","input_length":622,"output_length":210,"hash_ids":[2836112,2836113],"delay":59.4} +{"session_id":"sess-219a7a194c8d","input_length":1448,"output_length":103,"hash_ids":[2836114,2836115,2836116],"delay":10035.0} +{"session_id":"sess-219a7a194c8d","input_length":2586,"output_length":57,"hash_ids":[2836117,2836118,2836119,2836120,2836121,2836122],"delay":22424.7} +{"session_id":"sess-219a7a194c8d","input_length":166,"output_length":395,"hash_ids":[2836123],"delay":206.0} +{"session_id":"sess-219a7a194c8d","input_length":2298,"output_length":291,"hash_ids":[2836124,2836125,2836126,2836127,2836128],"delay":144.8} +{"session_id":"sess-219a7a194c8d","input_length":1803,"output_length":499,"hash_ids":[2836129,2836130,2836131,2836132],"delay":515.8} +{"session_id":"sess-219a7a194c8d","input_length":1512,"output_length":348,"hash_ids":[2836133,2836134,2836135],"delay":2395.7} +{"session_id":"sess-219a7a194c8d","input_length":2291,"output_length":246,"hash_ids":[2836136,2836137,2836138,2836139,2836140],"delay":19435.1} +{"session_id":"sess-219a7a194c8d","input_length":503,"output_length":2121,"hash_ids":[2836141],"delay":19718.2} +{"session_id":"sess-219a7a194c8d","input_length":2553,"output_length":30,"hash_ids":[2836142,2836143,2836144,2836145,2836146],"delay":11559.5} +{"session_id":"sess-219a7a194c8d","input_length":2692,"output_length":801,"hash_ids":[2836147,2836148,2836149,2836150,2836151,2836152],"delay":676.9} +{"session_id":"sess-219a7a194c8d","input_length":5288,"output_length":349,"hash_ids":[2836153,2836154,2836155,2836156,2836157,2836158,2836159,2836160,2836161,2836162,2836163],"delay":15593.9} +{"session_id":"sess-219a7a194c8d","input_length":4933,"output_length":60,"hash_ids":[2836164,2836165,2836166,2836167,2836168,2836169,2836170,2836171,2836172,2836173],"delay":1653.5} +{"session_id":"sess-219a7a194c8d","input_length":1024,"output_length":297,"hash_ids":[2836174,2836175],"delay":318.4} +{"session_id":"sess-219a7a194c8d","input_length":2067,"output_length":638,"hash_ids":[2836176,2836177,2836178,2836179,2836180],"delay":146.1} +{"session_id":"sess-219a7a194c8d","input_length":298,"output_length":201,"hash_ids":[2836181],"delay":1515.0} +{"session_id":"sess-219a7a194c8d","input_length":5970,"output_length":574,"hash_ids":[2836182,2836183,2836184,2836185,2836186,2836187,2836188,2836189,2836190,2836191,2836192,2836193],"delay":220.0} +{"session_id":"sess-219a7a194c8d","input_length":1660,"output_length":647,"hash_ids":[2836194,2836195,2836196,2836197],"delay":5791.5} +{"session_id":"sess-a6422ccb5bcc","input_length":55020,"output_length":247,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,2840063,2840064,2840065,2840066,2840067],"timestamp":0.0,"group_id":26} +{"session_id":"sess-a6422ccb5bcc","input_length":811,"output_length":181,"hash_ids":[2840068,2840069],"delay":33856.7} +{"session_id":"sess-2a05f6cf4a6b","input_length":54477,"output_length":257,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2844063,2844064,2844065,2844066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-2a05f6cf4a6b","input_length":503,"output_length":689,"hash_ids":[2844067],"delay":2180.6} +{"session_id":"sess-2a05f6cf4a6b","input_length":825,"output_length":706,"hash_ids":[2844068,2844069],"delay":1376.5} +{"session_id":"sess-2a05f6cf4a6b","input_length":276,"output_length":287,"hash_ids":[2844070],"delay":2663.4} +{"session_id":"sess-2a05f6cf4a6b","input_length":63,"output_length":571,"hash_ids":[2844071],"delay":36354.1} +{"session_id":"sess-2a05f6cf4a6b","input_length":300,"output_length":1887,"hash_ids":[2844072],"delay":1730.9} +{"session_id":"sess-2a05f6cf4a6b","input_length":2229,"output_length":394,"hash_ids":[2844073,2844074,2844075,2844076,2844077],"delay":971.0} +{"session_id":"sess-2a05f6cf4a6b","input_length":1067,"output_length":993,"hash_ids":[2844078,2844079,2844080],"delay":3459.1} +{"session_id":"sess-2a05f6cf4a6b","input_length":932,"output_length":186,"hash_ids":[2844081,2844082],"delay":1523.6} +{"session_id":"sess-2a05f6cf4a6b","input_length":745,"output_length":92,"hash_ids":[2844083,2844084],"delay":17378.3} +{"session_id":"sess-2a05f6cf4a6b","input_length":1614,"output_length":673,"hash_ids":[2844085,2844086,2844087,2844088],"delay":598.8} +{"session_id":"sess-2a05f6cf4a6b","input_length":9767,"output_length":60,"hash_ids":[2844089,2844090,2844091,2844092,2844093,2844094,2844095,2844096,2844097,2844098,2844099,2844100,2844101,2844102,2844103,2844104,2844105,2844106,2844107,2844108],"delay":805.2} +{"session_id":"sess-2a05f6cf4a6b","input_length":763,"output_length":32,"hash_ids":[2844109,2844110],"delay":3735.9} +{"session_id":"sess-2a05f6cf4a6b","input_length":2064,"output_length":96,"hash_ids":[2844111,2844112,2844113,2844114,2844115],"delay":9956.2} +{"session_id":"sess-2a05f6cf4a6b","input_length":579,"output_length":308,"hash_ids":[2844116,2844117],"delay":476.3} +{"session_id":"sess-2a05f6cf4a6b","input_length":2365,"output_length":137,"hash_ids":[2844118,2844119,2844120,2844121,2844122],"delay":12592.7} +{"session_id":"sess-2a05f6cf4a6b","input_length":1398,"output_length":2782,"hash_ids":[2844123,2844124,2844125],"delay":581.3} +{"session_id":"sess-2a05f6cf4a6b","input_length":5358,"output_length":1821,"hash_ids":[2844126,2844127,2844128,2844129,2844130,2844131,2844132,2844133,2844134,2844135,2844136],"delay":284.3} +{"session_id":"sess-2a05f6cf4a6b","input_length":590,"output_length":310,"hash_ids":[2844137,2844138],"delay":587.8} +{"session_id":"sess-2a05f6cf4a6b","input_length":2930,"output_length":391,"hash_ids":[2844139,2844140,2844141,2844142,2844143,2844144],"delay":16698.6} +{"session_id":"sess-2a05f6cf4a6b","input_length":1369,"output_length":363,"hash_ids":[2844145,2844146,2844147],"delay":1862.0} +{"session_id":"sess-2a05f6cf4a6b","input_length":217,"output_length":644,"hash_ids":[2844148],"delay":12856.4} +{"session_id":"sess-2a05f6cf4a6b","input_length":251,"output_length":382,"hash_ids":[2844149],"delay":2671.3} +{"session_id":"sess-2a05f6cf4a6b","input_length":2949,"output_length":643,"hash_ids":[2844150,2844151,2844152,2844153,2844154,2844155],"delay":567.9} +{"session_id":"sess-2a05f6cf4a6b","input_length":3008,"output_length":1038,"hash_ids":[2844156,2844157,2844158,2844159,2844160,2844161],"delay":370.6} +{"session_id":"sess-2a05f6cf4a6b","input_length":4204,"output_length":221,"hash_ids":[2844162,2844163,2844164,2844165,2844166,2844167,2844168,2844169,2844170],"delay":1204.6} +{"session_id":"sess-2a05f6cf4a6b","input_length":2682,"output_length":398,"hash_ids":[2844171,2844172,2844173,2844174,2844175,2844176],"delay":6518.4} +{"session_id":"sess-2a05f6cf4a6b","input_length":2621,"output_length":648,"hash_ids":[2844177,2844178,2844179,2844180,2844181,2844182],"delay":5999.0} +{"session_id":"sess-361bcb228315","input_length":52594,"output_length":515,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-361bcb228315","input_length":403,"output_length":169,"hash_ids":[2844183],"delay":1723.6} +{"session_id":"sess-361bcb228315","input_length":622,"output_length":514,"hash_ids":[2844184,2844185],"delay":13596.4} +{"session_id":"sess-361bcb228315","input_length":5087,"output_length":102,"hash_ids":[2844186,2844187,2844188,2844189,2844190,2844191,2844192,2844193,2844194,2844195],"delay":212.0} +{"session_id":"sess-361bcb228315","input_length":6838,"output_length":149,"hash_ids":[2844196,2844197,2844198,2844199,2844200,2844201,2844202,2844203,2844204,2844205,2844206,2844207,2844208,2844209],"delay":19124.8} +{"session_id":"sess-361bcb228315","input_length":641,"output_length":306,"hash_ids":[2844210,2844211],"delay":1624.0} +{"session_id":"sess-361bcb228315","input_length":305,"output_length":76,"hash_ids":[2844212],"delay":863.9} +{"session_id":"sess-361bcb228315","input_length":312,"output_length":160,"hash_ids":[2844213],"delay":1412.0} +{"session_id":"sess-361bcb228315","input_length":3013,"output_length":1802,"hash_ids":[2844214,2844215,2844216,2844217,2844218,2844219],"delay":628.1} +{"session_id":"sess-361bcb228315","input_length":2212,"output_length":139,"hash_ids":[2844220,2844221,2844222,2844223,2844224],"delay":36031.3} +{"session_id":"sess-361bcb228315","input_length":4593,"output_length":538,"hash_ids":[2844225,2844226,2844227,2844228,2844229,2844230,2844231,2844232,2844233],"delay":922.4} +{"session_id":"sess-361bcb228315","input_length":5482,"output_length":130,"hash_ids":[2844234,2844235,2844236,2844237,2844238,2844239,2844240,2844241,2844242,2844243,2844244],"delay":1106.6} +{"session_id":"sess-361bcb228315","input_length":401,"output_length":86,"hash_ids":[2844245],"delay":823.9} +{"session_id":"sess-361bcb228315","input_length":2415,"output_length":123,"hash_ids":[2844246,2844247,2844248,2844249,2844250],"delay":11141.0} +{"session_id":"sess-361bcb228315","input_length":4271,"output_length":220,"hash_ids":[2844251,2844252,2844253,2844254,2844255,2844256,2844257,2844258,2844259],"delay":471.6} +{"session_id":"sess-361bcb228315","input_length":1344,"output_length":730,"hash_ids":[2844260,2844261,2844262],"delay":508.9} +{"session_id":"sess-c6461e70246c","input_length":55143,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2852063,2852064,2852065,2852066,2852067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c6461e70246c","input_length":1990,"output_length":37,"hash_ids":[2852068,2852069,2852070,2852071],"delay":11627.6} +{"session_id":"sess-c6461e70246c","input_length":1460,"output_length":425,"hash_ids":[2852072,2852073,2852074],"delay":2243.9} +{"session_id":"sess-c6461e70246c","input_length":2472,"output_length":716,"hash_ids":[2852075,2852076,2852077,2852078,2852079],"delay":3066.8} +{"session_id":"sess-c6461e70246c","input_length":384,"output_length":1378,"hash_ids":[2852080],"delay":1093.3} +{"session_id":"sess-c6461e70246c","input_length":641,"output_length":2127,"hash_ids":[2852081,2852082],"delay":13289.2} +{"session_id":"sess-c6461e70246c","input_length":2172,"output_length":643,"hash_ids":[2852083,2852084,2852085,2852086,2852087],"delay":945.7} +{"session_id":"sess-c6461e70246c","input_length":262,"output_length":1155,"hash_ids":[2852088],"delay":1533.1} +{"session_id":"sess-c6461e70246c","input_length":1231,"output_length":601,"hash_ids":[2852089,2852090,2852091],"delay":988.6} +{"session_id":"sess-c6461e70246c","input_length":1206,"output_length":35,"hash_ids":[2852092,2852093,2852094],"delay":1327.0} +{"session_id":"sess-c6461e70246c","input_length":116,"output_length":398,"hash_ids":[2852095],"delay":11919.8} +{"session_id":"sess-c6461e70246c","input_length":3122,"output_length":664,"hash_ids":[2852096,2852097,2852098,2852099,2852100,2852101,2852102],"delay":39510.2} +{"session_id":"sess-c6461e70246c","input_length":306,"output_length":167,"hash_ids":[2852103],"delay":748.5} +{"session_id":"sess-c6461e70246c","input_length":1638,"output_length":483,"hash_ids":[2852104,2852105,2852106,2852107],"delay":1184.4} +{"session_id":"sess-c6461e70246c","input_length":515,"output_length":675,"hash_ids":[2852108,2852109],"delay":565.0} +{"session_id":"sess-c6461e70246c","input_length":496,"output_length":35,"hash_ids":[2852110],"delay":3222.4} +{"session_id":"sess-c6461e70246c","input_length":3288,"output_length":146,"hash_ids":[2852111,2852112,2852113,2852114,2852115,2852116,2852117],"delay":631.3} +{"session_id":"sess-c6461e70246c","input_length":1130,"output_length":104,"hash_ids":[2852118,2852119,2852120],"delay":1256.6} +{"session_id":"sess-c6461e70246c","input_length":8653,"output_length":532,"hash_ids":[2852121,2852122,2852123,2852124,2852125,2852126,2852127,2852128,2852129,2852130,2852131,2852132,2852133,2852134,2852135,2852136,2852137],"delay":175.3} +{"session_id":"sess-c6461e70246c","input_length":119,"output_length":243,"hash_ids":[2852138],"delay":12223.2} +{"session_id":"sess-c6461e70246c","input_length":759,"output_length":234,"hash_ids":[2852139,2852140],"delay":2407.2} +{"session_id":"sess-c6461e70246c","input_length":8768,"output_length":460,"hash_ids":[2852141,2852142,2852143,2852144,2852145,2852146,2852147,2852148,2852149,2852150,2852151,2852152,2852153,2852154,2852155,2852156,2852157,2852158],"delay":355.4} +{"session_id":"sess-c6461e70246c","input_length":1254,"output_length":413,"hash_ids":[2852159,2852160,2852161],"delay":3558.5} +{"session_id":"sess-c6461e70246c","input_length":746,"output_length":361,"hash_ids":[2852162,2852163],"delay":10195.1} +{"session_id":"sess-c6461e70246c","input_length":382,"output_length":155,"hash_ids":[2852164],"delay":1582.1} +{"session_id":"sess-c6461e70246c","input_length":945,"output_length":400,"hash_ids":[2852165,2852166],"delay":766.4} +{"session_id":"sess-c6461e70246c","input_length":337,"output_length":51,"hash_ids":[2852167],"delay":2515.0} +{"session_id":"sess-c6461e70246c","input_length":318,"output_length":513,"hash_ids":[2852168],"delay":2961.6} +{"session_id":"sess-c6461e70246c","input_length":1024,"output_length":1017,"hash_ids":[2852169,2852170],"delay":1028.2} +{"session_id":"sess-c6461e70246c","input_length":638,"output_length":533,"hash_ids":[2852171,2852172],"delay":4395.9} +{"session_id":"sess-c6461e70246c","input_length":412,"output_length":208,"hash_ids":[2852173],"delay":389.1} +{"session_id":"sess-c6461e70246c","input_length":805,"output_length":33,"hash_ids":[2852174,2852175],"delay":345.2} +{"session_id":"sess-c6461e70246c","input_length":792,"output_length":959,"hash_ids":[2852176,2852177],"delay":745.3} +{"session_id":"sess-c6461e70246c","input_length":7280,"output_length":158,"hash_ids":[2852178,2852179,2852180,2852181,2852182,2852183,2852184,2852185,2852186,2852187,2852188,2852189,2852190,2852191,2852192],"delay":397.9} +{"session_id":"sess-a3073c716ec9","input_length":56794,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,2856063,2856064,2856065,2856066,2856067,2856068,2856069,2856070],"timestamp":0.0,"group_id":6} +{"session_id":"sess-a3073c716ec9","input_length":593,"output_length":170,"hash_ids":[2856071,2856072],"delay":2212.8} +{"session_id":"sess-a3073c716ec9","input_length":1191,"output_length":53,"hash_ids":[2856073,2856074,2856075],"delay":5596.7} +{"session_id":"sess-a3073c716ec9","input_length":1708,"output_length":143,"hash_ids":[2856076,2856077,2856078,2856079],"delay":4743.0} +{"session_id":"sess-a3073c716ec9","input_length":251,"output_length":80,"hash_ids":[2856080],"delay":399.4} +{"session_id":"sess-a3073c716ec9","input_length":2607,"output_length":293,"hash_ids":[2856081,2856082,2856083,2856084,2856085,2856086],"delay":5084.6} +{"session_id":"sess-e93357a29b54","input_length":54211,"output_length":887,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2860063,2860064,2860065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e93357a29b54","input_length":2535,"output_length":1624,"hash_ids":[2860066,2860067,2860068,2860069,2860070],"delay":26388.1} +{"session_id":"sess-e93357a29b54","input_length":649,"output_length":291,"hash_ids":[2860071,2860072],"delay":1345.6} +{"session_id":"sess-e93357a29b54","input_length":4877,"output_length":559,"hash_ids":[2860073,2860074,2860075,2860076,2860077,2860078,2860079,2860080,2860081,2860082],"delay":840.3} +{"session_id":"sess-e93357a29b54","input_length":3344,"output_length":742,"hash_ids":[2860083,2860084,2860085,2860086,2860087,2860088,2860089],"delay":385.8} +{"session_id":"sess-e93357a29b54","input_length":1310,"output_length":123,"hash_ids":[2860090,2860091,2860092],"delay":1163.6} +{"session_id":"sess-b5f4f8fba7d0","input_length":61545,"output_length":167,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2864063,2864064,2864065,2864066,2864067,2864068,2864069,2864070,2864071,2864072,2864073,2864074,2864075,2864076,2864077,2864078,2864079,2864080],"timestamp":0.0,"group_id":4} +{"session_id":"sess-b5f4f8fba7d0","input_length":3105,"output_length":290,"hash_ids":[2864081,2864082,2864083,2864084,2864085,2864086,2864087],"delay":1012.0} +{"session_id":"sess-b5f4f8fba7d0","input_length":6047,"output_length":1546,"hash_ids":[2864088,2864089,2864090,2864091,2864092,2864093,2864094,2864095,2864096,2864097,2864098,2864099],"delay":3151.9} +{"session_id":"sess-b5f4f8fba7d0","input_length":347,"output_length":692,"hash_ids":[2864100],"delay":961.3} +{"session_id":"sess-b5f4f8fba7d0","input_length":501,"output_length":1007,"hash_ids":[2864101],"delay":2602.4} +{"session_id":"sess-b5f4f8fba7d0","input_length":1732,"output_length":823,"hash_ids":[2864102,2864103,2864104,2864105],"delay":660.0} +{"session_id":"sess-b5f4f8fba7d0","input_length":2734,"output_length":147,"hash_ids":[2864106,2864107,2864108,2864109,2864110,2864111],"delay":11978.8} +{"session_id":"sess-3667b1664502","input_length":54853,"output_length":93,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2868063,2868064,2868065,2868066,2868067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3667b1664502","input_length":3774,"output_length":56,"hash_ids":[2868068,2868069,2868070,2868071,2868072,2868073,2868074,2868075],"delay":1170.3} +{"session_id":"sess-3667b1664502","input_length":4479,"output_length":413,"hash_ids":[2868076,2868077,2868078,2868079,2868080,2868081,2868082,2868083,2868084],"delay":21699.1} +{"session_id":"sess-3667b1664502","input_length":4317,"output_length":749,"hash_ids":[2868085,2868086,2868087,2868088,2868089,2868090,2868091,2868092,2868093],"delay":1559.5} +{"session_id":"sess-3667b1664502","input_length":2019,"output_length":99,"hash_ids":[2868094,2868095,2868096,2868097],"delay":904.0} +{"session_id":"sess-3667b1664502","input_length":1636,"output_length":163,"hash_ids":[2868098,2868099,2868100,2868101],"delay":961.5} +{"session_id":"sess-3667b1664502","input_length":3871,"output_length":839,"hash_ids":[2868102,2868103,2868104,2868105,2868106,2868107,2868108,2868109],"delay":1692.4} +{"session_id":"sess-3667b1664502","input_length":3464,"output_length":61,"hash_ids":[2868110,2868111,2868112,2868113,2868114,2868115,2868116],"delay":6886.0} +{"session_id":"sess-3667b1664502","input_length":1812,"output_length":165,"hash_ids":[2868117,2868118,2868119,2868120],"delay":555.3} +{"session_id":"sess-3667b1664502","input_length":1756,"output_length":595,"hash_ids":[2868121,2868122,2868123,2868124],"delay":1335.5} +{"session_id":"sess-3667b1664502","input_length":1255,"output_length":64,"hash_ids":[2868125,2868126,2868127],"delay":225.4} +{"session_id":"sess-3667b1664502","input_length":5808,"output_length":443,"hash_ids":[2868128,2868129,2868130,2868131,2868132,2868133,2868134,2868135,2868136,2868137,2868138,2868139],"delay":17930.5} +{"session_id":"sess-3667b1664502","input_length":7003,"output_length":30,"hash_ids":[2868140,2868141,2868142,2868143,2868144,2868145,2868146,2868147,2868148,2868149,2868150,2868151,2868152,2868153],"delay":292.3} +{"session_id":"sess-3667b1664502","input_length":854,"output_length":108,"hash_ids":[2868154,2868155],"delay":16372.8} +{"session_id":"sess-3667b1664502","input_length":1969,"output_length":184,"hash_ids":[2868156,2868157,2868158,2868159],"delay":9782.4} +{"session_id":"sess-3667b1664502","input_length":3108,"output_length":91,"hash_ids":[2868160,2868161,2868162,2868163,2868164,2868165,2868166],"delay":14470.5} +{"session_id":"sess-3667b1664502","input_length":974,"output_length":2761,"hash_ids":[2868167,2868168],"delay":2360.7} +{"session_id":"sess-3667b1664502","input_length":1971,"output_length":104,"hash_ids":[2868169,2868170,2868171,2868172],"delay":997.9} +{"session_id":"sess-3667b1664502","input_length":3757,"output_length":127,"hash_ids":[2868173,2868174,2868175,2868176,2868177,2868178,2868179,2868180],"delay":470.1} +{"session_id":"sess-3667b1664502","input_length":6269,"output_length":146,"hash_ids":[2868181,2868182,2868183,2868184,2868185,2868186,2868187,2868188,2868189,2868190,2868191,2868192,2868193],"delay":610.5} +{"session_id":"sess-3667b1664502","input_length":820,"output_length":1533,"hash_ids":[2868194,2868195],"delay":1180.9} +{"session_id":"sess-3667b1664502","input_length":2250,"output_length":1025,"hash_ids":[2868196,2868197,2868198,2868199,2868200],"delay":4003.1} +{"session_id":"sess-3667b1664502","input_length":3150,"output_length":146,"hash_ids":[2868201,2868202,2868203,2868204,2868205,2868206,2868207],"delay":746.7} +{"session_id":"sess-3a88962e996c","input_length":54064,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2872063,2872064,2872065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3a88962e996c","input_length":4758,"output_length":180,"hash_ids":[2872066,2872067,2872068,2872069,2872070,2872071,2872072,2872073,2872074,2872075],"delay":797.2} +{"session_id":"sess-3a88962e996c","input_length":3049,"output_length":498,"hash_ids":[2872076,2872077,2872078,2872079,2872080,2872081],"delay":2142.5} +{"session_id":"sess-3a88962e996c","input_length":5579,"output_length":1055,"hash_ids":[2872082,2872083,2872084,2872085,2872086,2872087,2872088,2872089,2872090,2872091,2872092],"delay":4466.6} +{"session_id":"sess-20f10019ea8f","input_length":54135,"output_length":450,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,2876063,2876064,2876065],"timestamp":0.0,"group_id":21} +{"session_id":"sess-20f10019ea8f","input_length":4839,"output_length":1018,"hash_ids":[2876066,2876067,2876068,2876069,2876070,2876071,2876072,2876073,2876074,2876075],"delay":1596.7} +{"session_id":"sess-20f10019ea8f","input_length":2256,"output_length":159,"hash_ids":[2876076,2876077,2876078,2876079,2876080],"delay":577.5} +{"session_id":"sess-20f10019ea8f","input_length":1960,"output_length":667,"hash_ids":[2876081,2876082,2876083,2876084],"delay":958.3} +{"session_id":"sess-20f10019ea8f","input_length":382,"output_length":422,"hash_ids":[2876085],"delay":1459.4} +{"session_id":"sess-20f10019ea8f","input_length":1774,"output_length":610,"hash_ids":[2876086,2876087,2876088,2876089],"delay":319.1} +{"session_id":"sess-20f10019ea8f","input_length":4407,"output_length":324,"hash_ids":[2876090,2876091,2876092,2876093,2876094,2876095,2876096,2876097,2876098],"delay":5102.4} +{"session_id":"sess-20f10019ea8f","input_length":7223,"output_length":718,"hash_ids":[2876099,2876100,2876101,2876102,2876103,2876104,2876105,2876106,2876107,2876108,2876109,2876110,2876111,2876112,2876113],"delay":952.6} +{"session_id":"sess-20f10019ea8f","input_length":467,"output_length":368,"hash_ids":[2876114],"delay":819.4} +{"session_id":"sess-20f10019ea8f","input_length":917,"output_length":61,"hash_ids":[2876115,2876116],"delay":593.6} +{"session_id":"sess-20f10019ea8f","input_length":878,"output_length":488,"hash_ids":[2876117,2876118],"delay":3276.9} +{"session_id":"sess-20f10019ea8f","input_length":2165,"output_length":322,"hash_ids":[2876119,2876120,2876121,2876122,2876123],"delay":221.9} +{"session_id":"sess-20f10019ea8f","input_length":980,"output_length":858,"hash_ids":[2876124,2876125],"delay":413.1} +{"session_id":"sess-20f10019ea8f","input_length":3649,"output_length":212,"hash_ids":[2876126,2876127,2876128,2876129,2876130,2876131,2876132,2876133],"delay":17180.4} +{"session_id":"sess-20f10019ea8f","input_length":948,"output_length":99,"hash_ids":[2876134,2876135],"delay":1774.4} +{"session_id":"sess-20f10019ea8f","input_length":1382,"output_length":143,"hash_ids":[2876136,2876137,2876138],"delay":6029.4} +{"session_id":"sess-20f10019ea8f","input_length":2704,"output_length":69,"hash_ids":[2876139,2876140,2876141,2876142,2876143,2876144],"delay":9380.7} +{"session_id":"sess-20f10019ea8f","input_length":535,"output_length":533,"hash_ids":[2876145,2876146],"delay":715.7} +{"session_id":"sess-20f10019ea8f","input_length":3092,"output_length":252,"hash_ids":[2876147,2876148,2876149,2876150,2876151,2876152,2876153],"delay":1615.6} +{"session_id":"sess-cb048f1bc4a0","input_length":55504,"output_length":684,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2880063,2880064,2880065,2880066,2880067,2880068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cb048f1bc4a0","input_length":1471,"output_length":55,"hash_ids":[2880069,2880070,2880071],"delay":936.2} +{"session_id":"sess-cb048f1bc4a0","input_length":6260,"output_length":738,"hash_ids":[2880072,2880073,2880074,2880075,2880076,2880077,2880078,2880079,2880080,2880081,2880082,2880083,2880084],"delay":2230.5} +{"session_id":"sess-cb048f1bc4a0","input_length":380,"output_length":1647,"hash_ids":[2880085],"delay":1631.8} +{"session_id":"sess-cb048f1bc4a0","input_length":1803,"output_length":86,"hash_ids":[2880086,2880087,2880088,2880089],"delay":215.0} +{"session_id":"sess-cb048f1bc4a0","input_length":250,"output_length":1485,"hash_ids":[2880090],"delay":3014.2} +{"session_id":"sess-cb048f1bc4a0","input_length":1745,"output_length":271,"hash_ids":[2880091,2880092,2880093,2880094],"delay":336.2} +{"session_id":"sess-cb048f1bc4a0","input_length":3668,"output_length":179,"hash_ids":[2880095,2880096,2880097,2880098,2880099,2880100,2880101,2880102],"delay":1517.6} +{"session_id":"sess-cb048f1bc4a0","input_length":1082,"output_length":918,"hash_ids":[2880103,2880104,2880105],"delay":788.4} +{"session_id":"sess-cb048f1bc4a0","input_length":6754,"output_length":213,"hash_ids":[2880106,2880107,2880108,2880109,2880110,2880111,2880112,2880113,2880114,2880115,2880116,2880117,2880118,2880119],"delay":7541.0} +{"session_id":"sess-cb048f1bc4a0","input_length":494,"output_length":657,"hash_ids":[2880120],"delay":14336.5} +{"session_id":"sess-cb048f1bc4a0","input_length":1871,"output_length":186,"hash_ids":[2880121,2880122,2880123,2880124],"delay":925.2} +{"session_id":"sess-cb048f1bc4a0","input_length":3247,"output_length":604,"hash_ids":[2880125,2880126,2880127,2880128,2880129,2880130,2880131],"delay":656.8} +{"session_id":"sess-cb048f1bc4a0","input_length":4239,"output_length":298,"hash_ids":[2880132,2880133,2880134,2880135,2880136,2880137,2880138,2880139,2880140],"delay":460.8} +{"session_id":"sess-cb048f1bc4a0","input_length":1576,"output_length":214,"hash_ids":[2880141,2880142,2880143,2880144],"delay":976.7} +{"session_id":"sess-cb048f1bc4a0","input_length":505,"output_length":200,"hash_ids":[2880145],"delay":610.1} +{"session_id":"sess-cb048f1bc4a0","input_length":428,"output_length":156,"hash_ids":[2880146],"delay":182.9} +{"session_id":"sess-cb048f1bc4a0","input_length":1803,"output_length":547,"hash_ids":[2880147,2880148,2880149,2880150],"delay":634.9} +{"session_id":"sess-cb048f1bc4a0","input_length":2310,"output_length":296,"hash_ids":[2880151,2880152,2880153,2880154,2880155],"delay":8355.8} +{"session_id":"sess-cb048f1bc4a0","input_length":4432,"output_length":77,"hash_ids":[2880156,2880157,2880158,2880159,2880160,2880161,2880162,2880163,2880164],"delay":6155.6} +{"session_id":"sess-cb048f1bc4a0","input_length":6582,"output_length":285,"hash_ids":[2880165,2880166,2880167,2880168,2880169,2880170,2880171,2880172,2880173,2880174,2880175,2880176,2880177],"delay":143.8} +{"session_id":"sess-cb048f1bc4a0","input_length":1033,"output_length":467,"hash_ids":[2880178,2880179,2880180],"delay":4286.5} +{"session_id":"sess-cb048f1bc4a0","input_length":994,"output_length":959,"hash_ids":[2880181,2880182],"delay":15053.8} +{"session_id":"sess-cb048f1bc4a0","input_length":789,"output_length":103,"hash_ids":[2880183,2880184],"delay":18047.7} +{"session_id":"sess-cb048f1bc4a0","input_length":669,"output_length":1661,"hash_ids":[2880185,2880186],"delay":12083.5} +{"session_id":"sess-cb048f1bc4a0","input_length":1645,"output_length":112,"hash_ids":[2880187,2880188,2880189,2880190],"delay":10913.8} +{"session_id":"sess-e62864189c21","input_length":52471,"output_length":700,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102],"timestamp":0.0,"group_id":25} +{"session_id":"sess-e62864189c21","input_length":151,"output_length":130,"hash_ids":[2880191],"delay":15858.6} +{"session_id":"sess-e62864189c21","input_length":1037,"output_length":505,"hash_ids":[2880192,2880193,2880194],"delay":1760.3} +{"session_id":"sess-e62864189c21","input_length":1656,"output_length":621,"hash_ids":[2880195,2880196,2880197,2880198],"delay":437.7} +{"session_id":"sess-e62864189c21","input_length":4206,"output_length":581,"hash_ids":[2880199,2880200,2880201,2880202,2880203,2880204,2880205,2880206,2880207],"delay":1004.3} +{"session_id":"sess-e62864189c21","input_length":1559,"output_length":440,"hash_ids":[2880208,2880209,2880210,2880211],"delay":452.8} +{"session_id":"sess-e62864189c21","input_length":926,"output_length":554,"hash_ids":[2880212,2880213],"delay":1292.4} +{"session_id":"sess-e62864189c21","input_length":9661,"output_length":125,"hash_ids":[2880214,2880215,2880216,2880217,2880218,2880219,2880220,2880221,2880222,2880223,2880224,2880225,2880226,2880227,2880228,2880229,2880230,2880231,2880232],"delay":4945.3} +{"session_id":"sess-e62864189c21","input_length":1096,"output_length":495,"hash_ids":[2880233,2880234,2880235],"delay":1084.3} +{"session_id":"sess-e62864189c21","input_length":739,"output_length":389,"hash_ids":[2880236,2880237],"delay":1094.4} +{"session_id":"sess-e62864189c21","input_length":1628,"output_length":393,"hash_ids":[2880238,2880239,2880240,2880241],"delay":1835.0} +{"session_id":"sess-e62864189c21","input_length":1075,"output_length":151,"hash_ids":[2880242,2880243,2880244],"delay":1257.2} +{"session_id":"sess-e62864189c21","input_length":815,"output_length":206,"hash_ids":[2880245,2880246],"delay":9517.7} +{"session_id":"sess-e62864189c21","input_length":8768,"output_length":1276,"hash_ids":[2880247,2880248,2880249,2880250,2880251,2880252,2880253,2880254,2880255,2880256,2880257,2880258,2880259,2880260,2880261,2880262,2880263,2880264],"delay":723.7} +{"session_id":"sess-e62864189c21","input_length":307,"output_length":304,"hash_ids":[2880265],"delay":184.4} +{"session_id":"sess-e62864189c21","input_length":5985,"output_length":465,"hash_ids":[2880266,2880267,2880268,2880269,2880270,2880271,2880272,2880273,2880274,2880275,2880276,2880277],"delay":9613.8} +{"session_id":"sess-90108a2a1279","input_length":72846,"output_length":1599,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,2888063,2888064,2888065,2888066,2888067,2888068,2888069,2888070,2888071,2888072,2888073,2888074,2888075,2888076,2888077,2888078,2888079,2888080,2888081,2888082,2888083,2888084,2888085,2888086,2888087,2888088,2888089,2888090,2888091,2888092,2888093,2888094,2888095,2888096,2888097,2888098,2888099,2888100,2888101,2888102],"timestamp":0.0,"group_id":6} +{"session_id":"sess-90108a2a1279","input_length":2843,"output_length":179,"hash_ids":[2888103,2888104,2888105,2888106,2888107,2888108],"delay":747.2} +{"session_id":"sess-90108a2a1279","input_length":693,"output_length":751,"hash_ids":[2888109,2888110],"delay":9195.6} +{"session_id":"sess-90108a2a1279","input_length":4713,"output_length":194,"hash_ids":[2888111,2888112,2888113,2888114,2888115,2888116,2888117,2888118,2888119,2888120],"delay":1611.0} +{"session_id":"sess-90108a2a1279","input_length":3697,"output_length":120,"hash_ids":[2888121,2888122,2888123,2888124,2888125,2888126,2888127,2888128],"delay":464.3} +{"session_id":"sess-90108a2a1279","input_length":3718,"output_length":156,"hash_ids":[2888129,2888130,2888131,2888132,2888133,2888134,2888135,2888136],"delay":753.6} +{"session_id":"sess-90108a2a1279","input_length":3301,"output_length":281,"hash_ids":[2888137,2888138,2888139,2888140,2888141,2888142,2888143],"delay":12016.4} +{"session_id":"sess-90108a2a1279","input_length":4033,"output_length":167,"hash_ids":[2888144,2888145,2888146,2888147,2888148,2888149,2888150,2888151],"delay":18041.4} +{"session_id":"sess-90108a2a1279","input_length":612,"output_length":280,"hash_ids":[2888152,2888153],"delay":4535.9} +{"session_id":"sess-90108a2a1279","input_length":930,"output_length":155,"hash_ids":[2888154,2888155],"delay":1380.3} +{"session_id":"sess-90108a2a1279","input_length":2369,"output_length":847,"hash_ids":[2888156,2888157,2888158,2888159,2888160],"delay":3530.5} +{"session_id":"sess-9c576cbf8d67","input_length":53410,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2892063,2892064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-9c576cbf8d67","input_length":1505,"output_length":197,"hash_ids":[2892065,2892066,2892067],"delay":10874.7} +{"session_id":"sess-9c576cbf8d67","input_length":6868,"output_length":246,"hash_ids":[2892068,2892069,2892070,2892071,2892072,2892073,2892074,2892075,2892076,2892077,2892078,2892079,2892080,2892081],"delay":5490.2} +{"session_id":"sess-9c576cbf8d67","input_length":5925,"output_length":789,"hash_ids":[2892082,2892083,2892084,2892085,2892086,2892087,2892088,2892089,2892090,2892091,2892092,2892093],"delay":10165.6} +{"session_id":"sess-9c576cbf8d67","input_length":3948,"output_length":94,"hash_ids":[2892094,2892095,2892096,2892097,2892098,2892099,2892100,2892101],"delay":2909.4} +{"session_id":"sess-9c576cbf8d67","input_length":2165,"output_length":227,"hash_ids":[2892102,2892103,2892104,2892105,2892106],"delay":1934.6} +{"session_id":"sess-9c576cbf8d67","input_length":1843,"output_length":137,"hash_ids":[2892107,2892108,2892109,2892110],"delay":22035.6} +{"session_id":"sess-9c576cbf8d67","input_length":582,"output_length":627,"hash_ids":[2892111,2892112],"delay":343.0} +{"session_id":"sess-9c576cbf8d67","input_length":3523,"output_length":383,"hash_ids":[2892113,2892114,2892115,2892116,2892117,2892118,2892119],"delay":184.8} +{"session_id":"sess-9c576cbf8d67","input_length":4646,"output_length":504,"hash_ids":[2892120,2892121,2892122,2892123,2892124,2892125,2892126,2892127,2892128,2892129],"delay":1616.5} +{"session_id":"sess-9c576cbf8d67","input_length":342,"output_length":270,"hash_ids":[2892130],"delay":281.2} +{"session_id":"sess-9c576cbf8d67","input_length":1703,"output_length":286,"hash_ids":[2892131,2892132,2892133,2892134],"delay":2047.9} +{"session_id":"sess-9c576cbf8d67","input_length":147,"output_length":287,"hash_ids":[2892135],"delay":1343.5} +{"session_id":"sess-9c576cbf8d67","input_length":1998,"output_length":1679,"hash_ids":[2892136,2892137,2892138,2892139],"delay":681.1} +{"session_id":"sess-9c576cbf8d67","input_length":4205,"output_length":220,"hash_ids":[2892140,2892141,2892142,2892143,2892144,2892145,2892146,2892147,2892148],"delay":584.7} +{"session_id":"sess-9c576cbf8d67","input_length":1587,"output_length":1014,"hash_ids":[2892149,2892150,2892151,2892152],"delay":395.1} +{"session_id":"sess-9c576cbf8d67","input_length":1346,"output_length":100,"hash_ids":[2892153,2892154,2892155],"delay":1460.0} +{"session_id":"sess-9c576cbf8d67","input_length":4881,"output_length":288,"hash_ids":[2892156,2892157,2892158,2892159,2892160,2892161,2892162,2892163,2892164,2892165],"delay":1321.5} +{"session_id":"sess-9c576cbf8d67","input_length":5682,"output_length":340,"hash_ids":[2892166,2892167,2892168,2892169,2892170,2892171,2892172,2892173,2892174,2892175,2892176,2892177],"delay":253.7} +{"session_id":"sess-9c576cbf8d67","input_length":2316,"output_length":696,"hash_ids":[2892178,2892179,2892180,2892181,2892182],"delay":591.7} +{"session_id":"sess-9c576cbf8d67","input_length":1215,"output_length":127,"hash_ids":[2892183,2892184,2892185],"delay":1507.1} +{"session_id":"sess-9c576cbf8d67","input_length":2269,"output_length":97,"hash_ids":[2892186,2892187,2892188,2892189,2892190],"delay":658.5} +{"session_id":"sess-9c576cbf8d67","input_length":1154,"output_length":608,"hash_ids":[2892191,2892192,2892193],"delay":3376.3} +{"session_id":"sess-f600440933e3","input_length":61637,"output_length":550,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2896063,2896064,2896065,2896066,2896067,2896068,2896069,2896070,2896071,2896072,2896073,2896074,2896075,2896076,2896077,2896078,2896079,2896080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f600440933e3","input_length":1809,"output_length":46,"hash_ids":[2896081,2896082,2896083,2896084],"delay":2248.7} +{"session_id":"sess-f600440933e3","input_length":6398,"output_length":60,"hash_ids":[2896085,2896086,2896087,2896088,2896089,2896090,2896091,2896092,2896093,2896094,2896095,2896096,2896097],"delay":699.4} +{"session_id":"sess-f600440933e3","input_length":2081,"output_length":558,"hash_ids":[2896098,2896099,2896100,2896101,2896102],"delay":462.1} +{"session_id":"sess-f600440933e3","input_length":1372,"output_length":31,"hash_ids":[2896103,2896104,2896105],"delay":1197.5} +{"session_id":"sess-efba58d3d34f","input_length":53685,"output_length":386,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2900063,2900064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-efba58d3d34f","input_length":1656,"output_length":30,"hash_ids":[2900065,2900066,2900067,2900068],"delay":1872.7} +{"session_id":"sess-efba58d3d34f","input_length":6441,"output_length":60,"hash_ids":[2900069,2900070,2900071,2900072,2900073,2900074,2900075,2900076,2900077,2900078,2900079,2900080,2900081],"delay":2376.9} +{"session_id":"sess-efba58d3d34f","input_length":1788,"output_length":423,"hash_ids":[2900082,2900083,2900084,2900085],"delay":647.9} +{"session_id":"sess-efba58d3d34f","input_length":677,"output_length":151,"hash_ids":[2900086,2900087],"delay":40257.2} +{"session_id":"sess-efba58d3d34f","input_length":426,"output_length":662,"hash_ids":[2900088],"delay":708.2} +{"session_id":"sess-efba58d3d34f","input_length":7439,"output_length":166,"hash_ids":[2900089,2900090,2900091,2900092,2900093,2900094,2900095,2900096,2900097,2900098,2900099,2900100,2900101,2900102,2900103],"delay":580.5} +{"session_id":"sess-efba58d3d34f","input_length":4054,"output_length":1217,"hash_ids":[2900104,2900105,2900106,2900107,2900108,2900109,2900110,2900111],"delay":357.5} +{"session_id":"sess-efba58d3d34f","input_length":1227,"output_length":188,"hash_ids":[2900112,2900113,2900114],"delay":954.5} +{"session_id":"sess-efba58d3d34f","input_length":1277,"output_length":531,"hash_ids":[2900115,2900116,2900117],"delay":1410.6} +{"session_id":"sess-efba58d3d34f","input_length":1053,"output_length":262,"hash_ids":[2900118,2900119,2900120],"delay":678.0} +{"session_id":"sess-efba58d3d34f","input_length":494,"output_length":637,"hash_ids":[2900121],"delay":488.8} +{"session_id":"sess-efba58d3d34f","input_length":776,"output_length":286,"hash_ids":[2900122,2900123],"delay":995.8} +{"session_id":"sess-efba58d3d34f","input_length":146,"output_length":40,"hash_ids":[2900124],"delay":16600.0} +{"session_id":"sess-efba58d3d34f","input_length":2507,"output_length":30,"hash_ids":[2900125,2900126,2900127,2900128,2900129],"delay":5135.4} +{"session_id":"sess-efba58d3d34f","input_length":1636,"output_length":97,"hash_ids":[2900130,2900131,2900132,2900133],"delay":623.1} +{"session_id":"sess-efba58d3d34f","input_length":6432,"output_length":928,"hash_ids":[2900134,2900135,2900136,2900137,2900138,2900139,2900140,2900141,2900142,2900143,2900144,2900145,2900146],"delay":10752.2} +{"session_id":"sess-efba58d3d34f","input_length":617,"output_length":185,"hash_ids":[2900147,2900148],"delay":15211.4} +{"session_id":"sess-efba58d3d34f","input_length":544,"output_length":297,"hash_ids":[2900149,2900150],"delay":2661.6} +{"session_id":"sess-efba58d3d34f","input_length":2211,"output_length":40,"hash_ids":[2900151,2900152,2900153,2900154,2900155],"delay":9220.0} +{"session_id":"sess-efba58d3d34f","input_length":1914,"output_length":149,"hash_ids":[2900156,2900157,2900158,2900159],"delay":1675.7} +{"session_id":"sess-efba58d3d34f","input_length":2511,"output_length":638,"hash_ids":[2900160,2900161,2900162,2900163,2900164],"delay":289.0} +{"session_id":"sess-efba58d3d34f","input_length":2034,"output_length":665,"hash_ids":[2900165,2900166,2900167,2900168],"delay":1486.5} +{"session_id":"sess-efba58d3d34f","input_length":540,"output_length":1429,"hash_ids":[2900169,2900170],"delay":6171.9} +{"session_id":"sess-efba58d3d34f","input_length":517,"output_length":319,"hash_ids":[2900171,2900172],"delay":1375.9} +{"session_id":"sess-efba58d3d34f","input_length":1319,"output_length":63,"hash_ids":[2900173,2900174,2900175],"delay":475.5} +{"session_id":"sess-efba58d3d34f","input_length":546,"output_length":157,"hash_ids":[2900176,2900177],"delay":271.4} +{"session_id":"sess-f6e69c0be93f","input_length":61000,"output_length":733,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2904063,2904064,2904065,2904066,2904067,2904068,2904069,2904070,2904071,2904072,2904073,2904074,2904075,2904076,2904077,2904078,2904079],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f6e69c0be93f","input_length":338,"output_length":69,"hash_ids":[2904080],"delay":5034.5} +{"session_id":"sess-f6e69c0be93f","input_length":487,"output_length":106,"hash_ids":[2904081],"delay":791.1} +{"session_id":"sess-f6e69c0be93f","input_length":8802,"output_length":802,"hash_ids":[2904082,2904083,2904084,2904085,2904086,2904087,2904088,2904089,2904090,2904091,2904092,2904093,2904094,2904095,2904096,2904097,2904098,2904099],"delay":1289.4} +{"session_id":"sess-f6e69c0be93f","input_length":177,"output_length":139,"hash_ids":[2904100],"delay":2594.9} +{"session_id":"sess-f6e69c0be93f","input_length":450,"output_length":853,"hash_ids":[2904101],"delay":7890.5} +{"session_id":"sess-f6e69c0be93f","input_length":2260,"output_length":166,"hash_ids":[2904102,2904103,2904104,2904105,2904106],"delay":5916.3} +{"session_id":"sess-f6e69c0be93f","input_length":1006,"output_length":2405,"hash_ids":[2904107,2904108],"delay":14694.1} +{"session_id":"sess-f6e69c0be93f","input_length":3169,"output_length":417,"hash_ids":[2904109,2904110,2904111,2904112,2904113,2904114,2904115],"delay":30082.3} +{"session_id":"sess-f6e69c0be93f","input_length":3301,"output_length":335,"hash_ids":[2904116,2904117,2904118,2904119,2904120,2904121,2904122],"delay":2734.5} +{"session_id":"sess-f6e69c0be93f","input_length":846,"output_length":342,"hash_ids":[2904123,2904124],"delay":1383.2} +{"session_id":"sess-f6e69c0be93f","input_length":1628,"output_length":359,"hash_ids":[2904125,2904126,2904127,2904128],"delay":1059.0} +{"session_id":"sess-f6e69c0be93f","input_length":644,"output_length":177,"hash_ids":[2904129,2904130],"delay":604.7} +{"session_id":"sess-f6e69c0be93f","input_length":2230,"output_length":376,"hash_ids":[2904131,2904132,2904133,2904134,2904135],"delay":959.3} +{"session_id":"sess-f6e69c0be93f","input_length":297,"output_length":501,"hash_ids":[2904136],"delay":646.4} +{"session_id":"sess-f6e69c0be93f","input_length":2356,"output_length":178,"hash_ids":[2904137,2904138,2904139,2904140,2904141],"delay":742.9} +{"session_id":"sess-f6e69c0be93f","input_length":2900,"output_length":91,"hash_ids":[2904142,2904143,2904144,2904145,2904146,2904147],"delay":753.3} +{"session_id":"sess-f6e69c0be93f","input_length":852,"output_length":88,"hash_ids":[2904148,2904149],"delay":182.5} +{"session_id":"sess-f6e69c0be93f","input_length":1515,"output_length":113,"hash_ids":[2904150,2904151,2904152],"delay":1616.3} +{"session_id":"sess-f6e69c0be93f","input_length":696,"output_length":2099,"hash_ids":[2904153,2904154],"delay":4959.1} +{"session_id":"sess-f6e69c0be93f","input_length":4520,"output_length":130,"hash_ids":[2904155,2904156,2904157,2904158,2904159,2904160,2904161,2904162,2904163],"delay":8155.2} +{"session_id":"sess-f6e69c0be93f","input_length":410,"output_length":435,"hash_ids":[2904164],"delay":9579.9} +{"session_id":"sess-f6e69c0be93f","input_length":1282,"output_length":483,"hash_ids":[2904165,2904166,2904167],"delay":1930.8} +{"session_id":"sess-f6e69c0be93f","input_length":858,"output_length":1022,"hash_ids":[2904168,2904169],"delay":18315.6} +{"session_id":"sess-f6e69c0be93f","input_length":1739,"output_length":409,"hash_ids":[2904170,2904171,2904172,2904173],"delay":3738.2} +{"session_id":"sess-f6e69c0be93f","input_length":3705,"output_length":165,"hash_ids":[2904174,2904175,2904176,2904177,2904178,2904179,2904180,2904181],"delay":239.0} +{"session_id":"sess-f6e69c0be93f","input_length":1415,"output_length":102,"hash_ids":[2904182,2904183,2904184],"delay":242.4} +{"session_id":"sess-f6e69c0be93f","input_length":5273,"output_length":476,"hash_ids":[2904185,2904186,2904187,2904188,2904189,2904190,2904191,2904192,2904193,2904194,2904195],"delay":216.9} +{"session_id":"sess-f6e69c0be93f","input_length":736,"output_length":575,"hash_ids":[2904196,2904197],"delay":9152.6} +{"session_id":"sess-58318e9343bc","input_length":53536,"output_length":311,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2908063,2908064],"timestamp":0.0,"group_id":10} +{"session_id":"sess-58318e9343bc","input_length":2276,"output_length":1832,"hash_ids":[2908065,2908066,2908067,2908068,2908069],"delay":2941.9} +{"session_id":"sess-58318e9343bc","input_length":1827,"output_length":47,"hash_ids":[2908070,2908071,2908072,2908073],"delay":336.4} +{"session_id":"sess-58318e9343bc","input_length":4927,"output_length":214,"hash_ids":[2908074,2908075,2908076,2908077,2908078,2908079,2908080,2908081,2908082,2908083],"delay":3788.0} +{"session_id":"sess-58318e9343bc","input_length":1762,"output_length":989,"hash_ids":[2908084,2908085,2908086,2908087],"delay":628.9} +{"session_id":"sess-58318e9343bc","input_length":4883,"output_length":488,"hash_ids":[2908088,2908089,2908090,2908091,2908092,2908093,2908094,2908095,2908096,2908097],"delay":710.1} +{"session_id":"sess-ce10cb13ef1d","input_length":52927,"output_length":2484,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2912063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ce10cb13ef1d","input_length":7143,"output_length":312,"hash_ids":[2912064,2912065,2912066,2912067,2912068,2912069,2912070,2912071,2912072,2912073,2912074,2912075,2912076,2912077],"delay":851.3} +{"session_id":"sess-ce10cb13ef1d","input_length":3564,"output_length":1070,"hash_ids":[2912078,2912079,2912080,2912081,2912082,2912083,2912084],"delay":23674.5} +{"session_id":"sess-ce10cb13ef1d","input_length":1497,"output_length":382,"hash_ids":[2912085,2912086,2912087],"delay":1032.0} +{"session_id":"sess-ce10cb13ef1d","input_length":298,"output_length":246,"hash_ids":[2912088],"delay":1013.7} +{"session_id":"sess-ce10cb13ef1d","input_length":3372,"output_length":217,"hash_ids":[2912089,2912090,2912091,2912092,2912093,2912094,2912095],"delay":181.0} +{"session_id":"sess-ce10cb13ef1d","input_length":5327,"output_length":612,"hash_ids":[2912096,2912097,2912098,2912099,2912100,2912101,2912102,2912103,2912104,2912105,2912106],"delay":2603.9} +{"session_id":"sess-ce10cb13ef1d","input_length":1885,"output_length":76,"hash_ids":[2912107,2912108,2912109,2912110],"delay":12039.0} +{"session_id":"sess-ce10cb13ef1d","input_length":440,"output_length":76,"hash_ids":[2912111],"delay":743.9} +{"session_id":"sess-3e705673ec85","input_length":61906,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2916063,2916064,2916065,2916066,2916067,2916068,2916069,2916070,2916071,2916072,2916073,2916074,2916075,2916076,2916077,2916078,2916079,2916080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3e705673ec85","input_length":7942,"output_length":215,"hash_ids":[2916081,2916082,2916083,2916084,2916085,2916086,2916087,2916088,2916089,2916090,2916091,2916092,2916093,2916094,2916095,2916096],"delay":1388.1} +{"session_id":"sess-3e705673ec85","input_length":637,"output_length":936,"hash_ids":[2916097,2916098],"delay":280.5} +{"session_id":"sess-3e705673ec85","input_length":561,"output_length":569,"hash_ids":[2916099,2916100],"delay":1337.7} +{"session_id":"sess-3e705673ec85","input_length":486,"output_length":507,"hash_ids":[2916101],"delay":17361.7} +{"session_id":"sess-3e705673ec85","input_length":799,"output_length":206,"hash_ids":[2916102,2916103],"delay":2188.8} +{"session_id":"sess-3e705673ec85","input_length":5602,"output_length":251,"hash_ids":[2916104,2916105,2916106,2916107,2916108,2916109,2916110,2916111,2916112,2916113,2916114],"delay":40742.3} +{"session_id":"sess-3e705673ec85","input_length":1333,"output_length":969,"hash_ids":[2916115,2916116,2916117],"delay":1418.5} +{"session_id":"sess-3e705673ec85","input_length":483,"output_length":396,"hash_ids":[2916118],"delay":19403.5} +{"session_id":"sess-3e705673ec85","input_length":1084,"output_length":166,"hash_ids":[2916119,2916120,2916121],"delay":952.3} +{"session_id":"sess-3e705673ec85","input_length":2209,"output_length":343,"hash_ids":[2916122,2916123,2916124,2916125,2916126],"delay":902.4} +{"session_id":"sess-3e705673ec85","input_length":1713,"output_length":204,"hash_ids":[2916127,2916128,2916129,2916130],"delay":2008.0} +{"session_id":"sess-3e705673ec85","input_length":2382,"output_length":30,"hash_ids":[2916131,2916132,2916133,2916134,2916135],"delay":6517.6} +{"session_id":"sess-3e705673ec85","input_length":1307,"output_length":992,"hash_ids":[2916136,2916137,2916138],"delay":1888.9} +{"session_id":"sess-3e705673ec85","input_length":884,"output_length":2204,"hash_ids":[2916139,2916140],"delay":1883.6} +{"session_id":"sess-3e705673ec85","input_length":2266,"output_length":262,"hash_ids":[2916141,2916142,2916143,2916144,2916145],"delay":283.1} +{"session_id":"sess-5f31df35bec0","input_length":61903,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2920063,2920064,2920065,2920066,2920067,2920068,2920069,2920070,2920071,2920072,2920073,2920074,2920075,2920076,2920077,2920078,2920079,2920080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-992ad07f3bef","input_length":74385,"output_length":700,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2924063,2924064,2924065,2924066,2924067,2924068,2924069,2924070,2924071,2924072,2924073,2924074,2924075,2924076,2924077,2924078,2924079,2924080,2924081,2924082,2924083,2924084,2924085,2924086,2924087,2924088,2924089,2924090,2924091,2924092,2924093,2924094,2924095,2924096,2924097,2924098,2924099,2924100,2924101,2924102,2924103,2924104,2924105],"timestamp":0.0,"group_id":1} +{"session_id":"sess-992ad07f3bef","input_length":1713,"output_length":1395,"hash_ids":[2924106,2924107,2924108,2924109],"delay":484.3} +{"session_id":"sess-992ad07f3bef","input_length":328,"output_length":655,"hash_ids":[2924110],"delay":1156.4} +{"session_id":"sess-992ad07f3bef","input_length":6833,"output_length":269,"hash_ids":[2924111,2924112,2924113,2924114,2924115,2924116,2924117,2924118,2924119,2924120,2924121,2924122,2924123,2924124],"delay":704.1} +{"session_id":"sess-992ad07f3bef","input_length":402,"output_length":257,"hash_ids":[2924125],"delay":38252.1} +{"session_id":"sess-992ad07f3bef","input_length":3344,"output_length":1485,"hash_ids":[2924126,2924127,2924128,2924129,2924130,2924131,2924132],"delay":285.4} +{"session_id":"sess-992ad07f3bef","input_length":720,"output_length":90,"hash_ids":[2924133,2924134],"delay":656.7} +{"session_id":"sess-60e6e79a824e","input_length":54220,"output_length":1237,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2928063,2928064,2928065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-60e6e79a824e","input_length":6636,"output_length":1220,"hash_ids":[2928066,2928067,2928068,2928069,2928070,2928071,2928072,2928073,2928074,2928075,2928076,2928077,2928078],"delay":484.2} +{"session_id":"sess-60e6e79a824e","input_length":7295,"output_length":621,"hash_ids":[2928079,2928080,2928081,2928082,2928083,2928084,2928085,2928086,2928087,2928088,2928089,2928090,2928091,2928092,2928093],"delay":774.0} +{"session_id":"sess-60e6e79a824e","input_length":1230,"output_length":126,"hash_ids":[2928094,2928095,2928096],"delay":24511.9} +{"session_id":"sess-60e6e79a824e","input_length":158,"output_length":969,"hash_ids":[2928097],"delay":650.5} +{"session_id":"sess-60e6e79a824e","input_length":6839,"output_length":319,"hash_ids":[2928098,2928099,2928100,2928101,2928102,2928103,2928104,2928105,2928106,2928107,2928108,2928109,2928110,2928111],"delay":1351.5} +{"session_id":"sess-60e6e79a824e","input_length":3306,"output_length":95,"hash_ids":[2928112,2928113,2928114,2928115,2928116,2928117,2928118],"delay":318.7} +{"session_id":"sess-60e6e79a824e","input_length":554,"output_length":405,"hash_ids":[2928119,2928120],"delay":28510.5} +{"session_id":"sess-60e6e79a824e","input_length":3603,"output_length":197,"hash_ids":[2928121,2928122,2928123,2928124,2928125,2928126,2928127,2928128],"delay":7476.4} +{"session_id":"sess-60e6e79a824e","input_length":5792,"output_length":357,"hash_ids":[2928129,2928130,2928131,2928132,2928133,2928134,2928135,2928136,2928137,2928138,2928139,2928140],"delay":23337.5} +{"session_id":"sess-60e6e79a824e","input_length":839,"output_length":445,"hash_ids":[2928141,2928142],"delay":3657.9} +{"session_id":"sess-60e6e79a824e","input_length":1925,"output_length":299,"hash_ids":[2928143,2928144,2928145,2928146],"delay":1050.7} +{"session_id":"sess-60e6e79a824e","input_length":4373,"output_length":239,"hash_ids":[2928147,2928148,2928149,2928150,2928151,2928152,2928153,2928154,2928155],"delay":357.8} +{"session_id":"sess-60e6e79a824e","input_length":4140,"output_length":393,"hash_ids":[2928156,2928157,2928158,2928159,2928160,2928161,2928162,2928163,2928164],"delay":4592.7} +{"session_id":"sess-60e6e79a824e","input_length":1205,"output_length":193,"hash_ids":[2928165,2928166,2928167],"delay":641.6} +{"session_id":"sess-60e6e79a824e","input_length":7153,"output_length":131,"hash_ids":[2928168,2928169,2928170,2928171,2928172,2928173,2928174,2928175,2928176,2928177,2928178,2928179,2928180,2928181],"delay":9404.5} +{"session_id":"sess-60e6e79a824e","input_length":2193,"output_length":1980,"hash_ids":[2928182,2928183,2928184,2928185,2928186],"delay":397.1} +{"session_id":"sess-60e6e79a824e","input_length":573,"output_length":875,"hash_ids":[2928187,2928188],"delay":196.2} +{"session_id":"sess-60e6e79a824e","input_length":2675,"output_length":681,"hash_ids":[2928189,2928190,2928191,2928192,2928193,2928194],"delay":5303.3} +{"session_id":"sess-60e6e79a824e","input_length":5124,"output_length":503,"hash_ids":[2928195,2928196,2928197,2928198,2928199,2928200,2928201,2928202,2928203,2928204,2928205],"delay":6444.4} +{"session_id":"sess-cdc1e95476d4","input_length":53384,"output_length":315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,2932063,2932064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-cdc1e95476d4","input_length":3170,"output_length":214,"hash_ids":[2932065,2932066,2932067,2932068,2932069,2932070,2932071],"delay":1190.0} +{"session_id":"sess-cdc1e95476d4","input_length":2376,"output_length":1150,"hash_ids":[2932072,2932073,2932074,2932075,2932076],"delay":1387.3} +{"session_id":"sess-cdc1e95476d4","input_length":5025,"output_length":99,"hash_ids":[2932077,2932078,2932079,2932080,2932081,2932082,2932083,2932084,2932085,2932086],"delay":19348.3} +{"session_id":"sess-cdc1e95476d4","input_length":2604,"output_length":239,"hash_ids":[2932087,2932088,2932089,2932090,2932091,2932092],"delay":1486.1} +{"session_id":"sess-ab6dac463bbf","input_length":60746,"output_length":415,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2936063,2936064,2936065,2936066,2936067,2936068,2936069,2936070,2936071,2936072,2936073,2936074,2936075,2936076,2936077,2936078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ab6dac463bbf","input_length":425,"output_length":77,"hash_ids":[2936079],"delay":22967.2} +{"session_id":"sess-ab6dac463bbf","input_length":1459,"output_length":566,"hash_ids":[2936080,2936081,2936082],"delay":72767.2} +{"session_id":"sess-ab6dac463bbf","input_length":2058,"output_length":272,"hash_ids":[2936083,2936084,2936085,2936086,2936087],"delay":30081.0} +{"session_id":"sess-ab6dac463bbf","input_length":216,"output_length":208,"hash_ids":[2936088],"delay":52782.2} +{"session_id":"sess-ab6dac463bbf","input_length":1301,"output_length":168,"hash_ids":[2936089,2936090,2936091],"delay":7271.3} +{"session_id":"sess-ab6dac463bbf","input_length":4820,"output_length":919,"hash_ids":[2936092,2936093,2936094,2936095,2936096,2936097,2936098,2936099,2936100,2936101],"delay":447.9} +{"session_id":"sess-ab6dac463bbf","input_length":4590,"output_length":30,"hash_ids":[2936102,2936103,2936104,2936105,2936106,2936107,2936108,2936109,2936110],"delay":468.3} +{"session_id":"sess-ab6dac463bbf","input_length":933,"output_length":1901,"hash_ids":[2936111,2936112],"delay":24515.0} +{"session_id":"sess-ab6dac463bbf","input_length":1722,"output_length":45,"hash_ids":[2936113,2936114,2936115,2936116],"delay":273.9} +{"session_id":"sess-ab6dac463bbf","input_length":1365,"output_length":1845,"hash_ids":[2936117,2936118,2936119],"delay":827.3} +{"session_id":"sess-ab6dac463bbf","input_length":1501,"output_length":251,"hash_ids":[2936120,2936121,2936122],"delay":552.6} +{"session_id":"sess-ab6dac463bbf","input_length":1185,"output_length":340,"hash_ids":[2936123,2936124,2936125],"delay":3486.5} +{"session_id":"sess-ab6dac463bbf","input_length":2782,"output_length":844,"hash_ids":[2936126,2936127,2936128,2936129,2936130,2936131],"delay":537.9} +{"session_id":"sess-ab6dac463bbf","input_length":1851,"output_length":156,"hash_ids":[2936132,2936133,2936134,2936135],"delay":643.4} +{"session_id":"sess-ab6dac463bbf","input_length":2841,"output_length":1080,"hash_ids":[2936136,2936137,2936138,2936139,2936140,2936141],"delay":1088.8} +{"session_id":"sess-ab6dac463bbf","input_length":2659,"output_length":703,"hash_ids":[2936142,2936143,2936144,2936145,2936146,2936147],"delay":183.1} +{"session_id":"sess-ab6dac463bbf","input_length":1297,"output_length":2357,"hash_ids":[2936148,2936149,2936150],"delay":598.2} +{"session_id":"sess-ab6dac463bbf","input_length":2520,"output_length":293,"hash_ids":[2936151,2936152,2936153,2936154,2936155],"delay":1473.5} +{"session_id":"sess-ab6dac463bbf","input_length":2548,"output_length":1131,"hash_ids":[2936156,2936157,2936158,2936159,2936160],"delay":18984.4} +{"session_id":"sess-ab6dac463bbf","input_length":9072,"output_length":54,"hash_ids":[2936161,2936162,2936163,2936164,2936165,2936166,2936167,2936168,2936169,2936170,2936171,2936172,2936173,2936174,2936175,2936176,2936177,2936178],"delay":606.8} +{"session_id":"sess-ab6dac463bbf","input_length":2705,"output_length":78,"hash_ids":[2936179,2936180,2936181,2936182,2936183,2936184],"delay":4098.1} +{"session_id":"sess-ab6dac463bbf","input_length":1996,"output_length":658,"hash_ids":[2936185,2936186,2936187,2936188],"delay":3696.7} +{"session_id":"sess-ab6dac463bbf","input_length":774,"output_length":57,"hash_ids":[2936189,2936190],"delay":407.0} +{"session_id":"sess-cf681e20d9c5","input_length":73098,"output_length":571,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2940063,2940064,2940065,2940066,2940067,2940068,2940069,2940070,2940071,2940072,2940073,2940074,2940075,2940076,2940077,2940078,2940079,2940080,2940081,2940082,2940083,2940084,2940085,2940086,2940087,2940088,2940089,2940090,2940091,2940092,2940093,2940094,2940095,2940096,2940097,2940098,2940099,2940100,2940101,2940102],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cf681e20d9c5","input_length":611,"output_length":266,"hash_ids":[2940103,2940104],"delay":144.0} +{"session_id":"sess-cf681e20d9c5","input_length":1610,"output_length":484,"hash_ids":[2940105,2940106,2940107,2940108],"delay":690.1} +{"session_id":"sess-cf681e20d9c5","input_length":2368,"output_length":33,"hash_ids":[2940109,2940110,2940111,2940112,2940113],"delay":1785.3} +{"session_id":"sess-cf681e20d9c5","input_length":4607,"output_length":367,"hash_ids":[2940114,2940115,2940116,2940117,2940118,2940119,2940120,2940121,2940122],"delay":1172.5} +{"session_id":"sess-cf681e20d9c5","input_length":1439,"output_length":315,"hash_ids":[2940123,2940124,2940125],"delay":351.9} +{"session_id":"sess-cf681e20d9c5","input_length":3384,"output_length":607,"hash_ids":[2940126,2940127,2940128,2940129,2940130,2940131,2940132],"delay":652.4} +{"session_id":"sess-ecb2fee58c19","input_length":72516,"output_length":789,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,2944063,2944064,2944065,2944066,2944067,2944068,2944069,2944070,2944071,2944072,2944073,2944074,2944075,2944076,2944077,2944078,2944079,2944080,2944081,2944082,2944083,2944084,2944085,2944086,2944087,2944088,2944089,2944090,2944091,2944092,2944093,2944094,2944095,2944096,2944097,2944098,2944099,2944100,2944101],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ecb2fee58c19","input_length":7287,"output_length":60,"hash_ids":[2944102,2944103,2944104,2944105,2944106,2944107,2944108,2944109,2944110,2944111,2944112,2944113,2944114,2944115,2944116],"delay":569.0} +{"session_id":"sess-795a1eb49974","input_length":53251,"output_length":152,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2948063,2948064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-795a1eb49974","input_length":1268,"output_length":422,"hash_ids":[2948065,2948066,2948067],"delay":39787.3} +{"session_id":"sess-795a1eb49974","input_length":1799,"output_length":275,"hash_ids":[2948068,2948069,2948070,2948071],"delay":3624.8} +{"session_id":"sess-795a1eb49974","input_length":1824,"output_length":418,"hash_ids":[2948072,2948073,2948074,2948075],"delay":1119.6} +{"session_id":"sess-795a1eb49974","input_length":3338,"output_length":467,"hash_ids":[2948076,2948077,2948078,2948079,2948080,2948081,2948082],"delay":4087.7} +{"session_id":"sess-795a1eb49974","input_length":950,"output_length":172,"hash_ids":[2948083,2948084],"delay":1721.0} +{"session_id":"sess-795a1eb49974","input_length":881,"output_length":90,"hash_ids":[2948085,2948086],"delay":577.1} +{"session_id":"sess-795a1eb49974","input_length":3014,"output_length":153,"hash_ids":[2948087,2948088,2948089,2948090,2948091,2948092],"delay":3164.2} +{"session_id":"sess-795a1eb49974","input_length":2714,"output_length":1239,"hash_ids":[2948093,2948094,2948095,2948096,2948097,2948098],"delay":933.4} +{"session_id":"sess-795a1eb49974","input_length":4308,"output_length":279,"hash_ids":[2948099,2948100,2948101,2948102,2948103,2948104,2948105,2948106,2948107],"delay":64127.0} +{"session_id":"sess-795a1eb49974","input_length":1835,"output_length":720,"hash_ids":[2948108,2948109,2948110,2948111],"delay":5977.3} +{"session_id":"sess-795a1eb49974","input_length":764,"output_length":314,"hash_ids":[2948112,2948113],"delay":56787.1} +{"session_id":"sess-795a1eb49974","input_length":479,"output_length":214,"hash_ids":[2948114],"delay":954.1} +{"session_id":"sess-795a1eb49974","input_length":100,"output_length":556,"hash_ids":[2948115],"delay":6284.6} +{"session_id":"sess-795a1eb49974","input_length":1120,"output_length":225,"hash_ids":[2948116,2948117,2948118],"delay":24029.8} +{"session_id":"sess-795a1eb49974","input_length":1923,"output_length":121,"hash_ids":[2948119,2948120,2948121,2948122],"delay":1382.6} +{"session_id":"sess-795a1eb49974","input_length":2292,"output_length":229,"hash_ids":[2948123,2948124,2948125,2948126,2948127],"delay":360.7} +{"session_id":"sess-795a1eb49974","input_length":802,"output_length":397,"hash_ids":[2948128,2948129],"delay":5211.3} +{"session_id":"sess-795a1eb49974","input_length":1881,"output_length":564,"hash_ids":[2948130,2948131,2948132,2948133],"delay":848.1} +{"session_id":"sess-795a1eb49974","input_length":663,"output_length":119,"hash_ids":[2948134,2948135],"delay":1059.4} +{"session_id":"sess-795a1eb49974","input_length":865,"output_length":583,"hash_ids":[2948136,2948137],"delay":2632.5} +{"session_id":"sess-795a1eb49974","input_length":554,"output_length":1092,"hash_ids":[2948138,2948139],"delay":2425.5} +{"session_id":"sess-795a1eb49974","input_length":1865,"output_length":885,"hash_ids":[2948140,2948141,2948142,2948143],"delay":1705.2} +{"session_id":"sess-795a1eb49974","input_length":836,"output_length":524,"hash_ids":[2948144,2948145],"delay":1428.8} +{"session_id":"sess-795a1eb49974","input_length":3421,"output_length":841,"hash_ids":[2948146,2948147,2948148,2948149,2948150,2948151,2948152],"delay":6310.0} +{"session_id":"sess-795a1eb49974","input_length":1495,"output_length":201,"hash_ids":[2948153,2948154,2948155],"delay":357.0} +{"session_id":"sess-795a1eb49974","input_length":1066,"output_length":449,"hash_ids":[2948156,2948157,2948158],"delay":1347.8} +{"session_id":"sess-795a1eb49974","input_length":266,"output_length":278,"hash_ids":[2948159],"delay":112.0} +{"session_id":"sess-795a1eb49974","input_length":2495,"output_length":332,"hash_ids":[2948160,2948161,2948162,2948163,2948164],"delay":3181.8} +{"session_id":"sess-795a1eb49974","input_length":2676,"output_length":700,"hash_ids":[2948165,2948166,2948167,2948168,2948169,2948170],"delay":11647.3} +{"session_id":"sess-795a1eb49974","input_length":4656,"output_length":30,"hash_ids":[2948171,2948172,2948173,2948174,2948175,2948176,2948177,2948178,2948179,2948180],"delay":608.6} +{"session_id":"sess-795a1eb49974","input_length":2307,"output_length":506,"hash_ids":[2948181,2948182,2948183,2948184,2948185],"delay":109.2} +{"session_id":"sess-795a1eb49974","input_length":6036,"output_length":2460,"hash_ids":[2948186,2948187,2948188,2948189,2948190,2948191,2948192,2948193,2948194,2948195,2948196,2948197],"delay":16441.3} +{"session_id":"sess-795a1eb49974","input_length":1076,"output_length":332,"hash_ids":[2948198,2948199,2948200],"delay":3168.9} +{"session_id":"sess-7b5b010e9cbc","input_length":53001,"output_length":79,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,2952063],"timestamp":0.0,"group_id":4} +{"session_id":"sess-7b5b010e9cbc","input_length":952,"output_length":530,"hash_ids":[2952064,2952065],"delay":1587.2} +{"session_id":"sess-7b5b010e9cbc","input_length":715,"output_length":433,"hash_ids":[2952066,2952067],"delay":24115.5} +{"session_id":"sess-7b5b010e9cbc","input_length":2173,"output_length":712,"hash_ids":[2952068,2952069,2952070,2952071,2952072],"delay":740.4} +{"session_id":"sess-7b5b010e9cbc","input_length":90,"output_length":107,"hash_ids":[2952073],"delay":3358.5} +{"session_id":"sess-7b5b010e9cbc","input_length":7845,"output_length":386,"hash_ids":[2952074,2952075,2952076,2952077,2952078,2952079,2952080,2952081,2952082,2952083,2952084,2952085,2952086,2952087,2952088,2952089],"delay":1527.9} +{"session_id":"sess-7b5b010e9cbc","input_length":2038,"output_length":2079,"hash_ids":[2952090,2952091,2952092,2952093],"delay":1279.0} +{"session_id":"sess-7b5b010e9cbc","input_length":5447,"output_length":150,"hash_ids":[2952094,2952095,2952096,2952097,2952098,2952099,2952100,2952101,2952102,2952103,2952104],"delay":606.6} +{"session_id":"sess-7b5b010e9cbc","input_length":2591,"output_length":238,"hash_ids":[2952105,2952106,2952107,2952108,2952109,2952110],"delay":10073.5} +{"session_id":"sess-7b5b010e9cbc","input_length":1250,"output_length":539,"hash_ids":[2952111,2952112,2952113],"delay":325.1} +{"session_id":"sess-7b5b010e9cbc","input_length":1076,"output_length":267,"hash_ids":[2952114,2952115,2952116],"delay":382.5} +{"session_id":"sess-7b5b010e9cbc","input_length":4641,"output_length":30,"hash_ids":[2952117,2952118,2952119,2952120,2952121,2952122,2952123,2952124,2952125,2952126],"delay":1953.5} +{"session_id":"sess-7b5b010e9cbc","input_length":9548,"output_length":119,"hash_ids":[2952127,2952128,2952129,2952130,2952131,2952132,2952133,2952134,2952135,2952136,2952137,2952138,2952139,2952140,2952141,2952142,2952143,2952144,2952145],"delay":1279.4} +{"session_id":"sess-7b5b010e9cbc","input_length":1416,"output_length":149,"hash_ids":[2952146,2952147,2952148],"delay":625.0} +{"session_id":"sess-7b5b010e9cbc","input_length":1114,"output_length":986,"hash_ids":[2952149,2952150,2952151],"delay":2173.0} +{"session_id":"sess-7b5b010e9cbc","input_length":1858,"output_length":30,"hash_ids":[2952152,2952153,2952154,2952155],"delay":1066.4} +{"session_id":"sess-7b5b010e9cbc","input_length":244,"output_length":147,"hash_ids":[2952156],"delay":2724.4} +{"session_id":"sess-7b5b010e9cbc","input_length":490,"output_length":623,"hash_ids":[2952157],"delay":760.4} +{"session_id":"sess-7b5b010e9cbc","input_length":870,"output_length":178,"hash_ids":[2952158,2952159],"delay":432.2} +{"session_id":"sess-7b5b010e9cbc","input_length":890,"output_length":118,"hash_ids":[2952160,2952161],"delay":271.5} +{"session_id":"sess-7b5b010e9cbc","input_length":1492,"output_length":1409,"hash_ids":[2952162,2952163,2952164],"delay":399.8} +{"session_id":"sess-7b5b010e9cbc","input_length":6901,"output_length":190,"hash_ids":[2952165,2952166,2952167,2952168,2952169,2952170,2952171,2952172,2952173,2952174,2952175,2952176,2952177,2952178],"delay":173.9} +{"session_id":"sess-7b5b010e9cbc","input_length":6543,"output_length":48,"hash_ids":[2952179,2952180,2952181,2952182,2952183,2952184,2952185,2952186,2952187,2952188,2952189,2952190,2952191],"delay":254.1} +{"session_id":"sess-7b5b010e9cbc","input_length":1800,"output_length":176,"hash_ids":[2952192,2952193,2952194,2952195],"delay":6580.4} +{"session_id":"sess-7b5b010e9cbc","input_length":3113,"output_length":176,"hash_ids":[2952196,2952197,2952198,2952199,2952200,2952201,2952202],"delay":1140.7} +{"session_id":"sess-7b5b010e9cbc","input_length":2744,"output_length":132,"hash_ids":[2952203,2952204,2952205,2952206,2952207,2952208],"delay":894.1} +{"session_id":"sess-f5c906ad6742","input_length":55840,"output_length":408,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,2956063,2956064,2956065,2956066,2956067,2956068,2956069],"timestamp":0.0,"group_id":19} +{"session_id":"sess-f5c906ad6742","input_length":2146,"output_length":411,"hash_ids":[2956070,2956071,2956072,2956073,2956074],"delay":43454.3} +{"session_id":"sess-f5c906ad6742","input_length":1444,"output_length":354,"hash_ids":[2956075,2956076,2956077],"delay":5373.3} +{"session_id":"sess-f5c906ad6742","input_length":1418,"output_length":41,"hash_ids":[2956078,2956079,2956080],"delay":12561.1} +{"session_id":"sess-9a001fcc91d1","input_length":53281,"output_length":432,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,2960063,2960064],"timestamp":0.0,"group_id":18} +{"session_id":"sess-9a001fcc91d1","input_length":142,"output_length":289,"hash_ids":[2960065],"delay":943.8} +{"session_id":"sess-9a001fcc91d1","input_length":3258,"output_length":608,"hash_ids":[2960066,2960067,2960068,2960069,2960070,2960071,2960072],"delay":1256.7} +{"session_id":"sess-9a001fcc91d1","input_length":1007,"output_length":219,"hash_ids":[2960073,2960074],"delay":13858.7} +{"session_id":"sess-9a001fcc91d1","input_length":1205,"output_length":166,"hash_ids":[2960075,2960076,2960077],"delay":2090.7} +{"session_id":"sess-9a001fcc91d1","input_length":1376,"output_length":234,"hash_ids":[2960078,2960079,2960080],"delay":2015.7} +{"session_id":"sess-9a001fcc91d1","input_length":4595,"output_length":325,"hash_ids":[2960081,2960082,2960083,2960084,2960085,2960086,2960087,2960088,2960089],"delay":895.6} +{"session_id":"sess-9a001fcc91d1","input_length":1813,"output_length":156,"hash_ids":[2960090,2960091,2960092,2960093],"delay":591.1} +{"session_id":"sess-9a001fcc91d1","input_length":892,"output_length":114,"hash_ids":[2960094,2960095],"delay":409.3} +{"session_id":"sess-9a001fcc91d1","input_length":8037,"output_length":283,"hash_ids":[2960096,2960097,2960098,2960099,2960100,2960101,2960102,2960103,2960104,2960105,2960106,2960107,2960108,2960109,2960110,2960111],"delay":1751.6} +{"session_id":"sess-9a001fcc91d1","input_length":520,"output_length":215,"hash_ids":[2960112,2960113],"delay":39544.8} +{"session_id":"sess-9a001fcc91d1","input_length":1160,"output_length":81,"hash_ids":[2960114,2960115,2960116],"delay":10576.3} +{"session_id":"sess-9a001fcc91d1","input_length":5929,"output_length":191,"hash_ids":[2960117,2960118,2960119,2960120,2960121,2960122,2960123,2960124,2960125,2960126,2960127,2960128],"delay":17106.5} +{"session_id":"sess-9a001fcc91d1","input_length":1138,"output_length":145,"hash_ids":[2960129,2960130,2960131],"delay":546.7} +{"session_id":"sess-9a001fcc91d1","input_length":1262,"output_length":1006,"hash_ids":[2960132,2960133,2960134],"delay":510.6} +{"session_id":"sess-9a001fcc91d1","input_length":2883,"output_length":2541,"hash_ids":[2960135,2960136,2960137,2960138,2960139,2960140],"delay":43092.3} +{"session_id":"sess-9a001fcc91d1","input_length":7656,"output_length":93,"hash_ids":[2960141,2960142,2960143,2960144,2960145,2960146,2960147,2960148,2960149,2960150,2960151,2960152,2960153,2960154,2960155],"delay":141.8} +{"session_id":"sess-9a001fcc91d1","input_length":272,"output_length":955,"hash_ids":[2960156],"delay":2340.1} +{"session_id":"sess-9a001fcc91d1","input_length":1983,"output_length":342,"hash_ids":[2960157,2960158,2960159,2960160],"delay":14890.8} +{"session_id":"sess-9a001fcc91d1","input_length":2903,"output_length":83,"hash_ids":[2960161,2960162,2960163,2960164,2960165,2960166],"delay":709.4} +{"session_id":"sess-9a001fcc91d1","input_length":2481,"output_length":536,"hash_ids":[2960167,2960168,2960169,2960170,2960171],"delay":528.0} +{"session_id":"sess-9a001fcc91d1","input_length":94,"output_length":861,"hash_ids":[2960172],"delay":121.2} +{"session_id":"sess-9a001fcc91d1","input_length":1461,"output_length":1262,"hash_ids":[2960173,2960174,2960175],"delay":1279.8} +{"session_id":"sess-9a001fcc91d1","input_length":2146,"output_length":290,"hash_ids":[2960176,2960177,2960178,2960179,2960180],"delay":323.1} +{"session_id":"sess-9a001fcc91d1","input_length":2542,"output_length":707,"hash_ids":[2960181,2960182,2960183,2960184,2960185],"delay":243.5} +{"session_id":"sess-9a001fcc91d1","input_length":1204,"output_length":190,"hash_ids":[2960186,2960187,2960188],"delay":1231.0} +{"session_id":"sess-9a001fcc91d1","input_length":1156,"output_length":110,"hash_ids":[2960189,2960190,2960191],"delay":10121.6} +{"session_id":"sess-9a001fcc91d1","input_length":4465,"output_length":236,"hash_ids":[2960192,2960193,2960194,2960195,2960196,2960197,2960198,2960199,2960200],"delay":923.8} +{"session_id":"sess-9a001fcc91d1","input_length":769,"output_length":175,"hash_ids":[2960201,2960202],"delay":1040.4} +{"session_id":"sess-9a001fcc91d1","input_length":540,"output_length":1147,"hash_ids":[2960203,2960204],"delay":308.8} +{"session_id":"sess-06db943be3fc","input_length":63645,"output_length":361,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2964063,2964064,2964065,2964066,2964067,2964068,2964069,2964070,2964071,2964072,2964073,2964074,2964075,2964076,2964077,2964078,2964079,2964080,2964081,2964082,2964083,2964084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-06db943be3fc","input_length":4117,"output_length":351,"hash_ids":[2964085,2964086,2964087,2964088,2964089,2964090,2964091,2964092,2964093],"delay":1271.9} +{"session_id":"sess-06db943be3fc","input_length":898,"output_length":214,"hash_ids":[2964094,2964095],"delay":2084.6} +{"session_id":"sess-06db943be3fc","input_length":1707,"output_length":585,"hash_ids":[2964096,2964097,2964098,2964099],"delay":568.9} +{"session_id":"sess-06db943be3fc","input_length":932,"output_length":592,"hash_ids":[2964100,2964101],"delay":1192.6} +{"session_id":"sess-06db943be3fc","input_length":1438,"output_length":278,"hash_ids":[2964102,2964103,2964104],"delay":436.8} +{"session_id":"sess-06db943be3fc","input_length":2256,"output_length":585,"hash_ids":[2964105,2964106,2964107,2964108,2964109],"delay":2655.0} +{"session_id":"sess-06db943be3fc","input_length":3261,"output_length":233,"hash_ids":[2964110,2964111,2964112,2964113,2964114,2964115,2964116],"delay":4358.7} +{"session_id":"sess-06db943be3fc","input_length":558,"output_length":794,"hash_ids":[2964117,2964118],"delay":450.6} +{"session_id":"sess-06db943be3fc","input_length":2707,"output_length":100,"hash_ids":[2964119,2964120,2964121,2964122,2964123,2964124],"delay":1158.7} +{"session_id":"sess-06db943be3fc","input_length":5072,"output_length":352,"hash_ids":[2964125,2964126,2964127,2964128,2964129,2964130,2964131,2964132,2964133,2964134],"delay":1107.7} +{"session_id":"sess-06db943be3fc","input_length":966,"output_length":33,"hash_ids":[2964135,2964136],"delay":1221.2} +{"session_id":"sess-06db943be3fc","input_length":585,"output_length":558,"hash_ids":[2964137,2964138],"delay":2881.7} +{"session_id":"sess-06db943be3fc","input_length":1461,"output_length":149,"hash_ids":[2964139,2964140,2964141],"delay":5651.8} +{"session_id":"sess-06db943be3fc","input_length":288,"output_length":281,"hash_ids":[2964142],"delay":1008.9} +{"session_id":"sess-06db943be3fc","input_length":2687,"output_length":107,"hash_ids":[2964143,2964144,2964145,2964146,2964147,2964148],"delay":6944.9} +{"session_id":"sess-2860110ddb19","input_length":53833,"output_length":141,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,2968063,2968064,2968065],"timestamp":0.0,"group_id":8} +{"session_id":"sess-2860110ddb19","input_length":1327,"output_length":566,"hash_ids":[2968066,2968067,2968068],"delay":2316.3} +{"session_id":"sess-2860110ddb19","input_length":5857,"output_length":81,"hash_ids":[2968069,2968070,2968071,2968072,2968073,2968074,2968075,2968076,2968077,2968078,2968079,2968080],"delay":14148.1} +{"session_id":"sess-2860110ddb19","input_length":2331,"output_length":152,"hash_ids":[2968081,2968082,2968083,2968084,2968085],"delay":7357.0} +{"session_id":"sess-2860110ddb19","input_length":961,"output_length":84,"hash_ids":[2968086,2968087],"delay":29171.2} +{"session_id":"sess-2860110ddb19","input_length":2509,"output_length":186,"hash_ids":[2968088,2968089,2968090,2968091,2968092],"delay":66254.1} +{"session_id":"sess-2860110ddb19","input_length":105,"output_length":30,"hash_ids":[2968093],"delay":45.1} +{"session_id":"sess-2860110ddb19","input_length":7913,"output_length":132,"hash_ids":[2968094,2968095,2968096,2968097,2968098,2968099,2968100,2968101,2968102,2968103,2968104,2968105,2968106,2968107,2968108,2968109],"delay":12533.3} +{"session_id":"sess-2860110ddb19","input_length":6685,"output_length":211,"hash_ids":[2968110,2968111,2968112,2968113,2968114,2968115,2968116,2968117,2968118,2968119,2968120,2968121,2968122,2968123],"delay":54047.1} +{"session_id":"sess-2860110ddb19","input_length":3096,"output_length":1446,"hash_ids":[2968124,2968125,2968126,2968127,2968128,2968129,2968130],"delay":11748.5} +{"session_id":"sess-83ea078adcea","input_length":54590,"output_length":189,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2972063,2972064,2972065,2972066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-83ea078adcea","input_length":2195,"output_length":726,"hash_ids":[2972067,2972068,2972069,2972070,2972071],"delay":33412.8} +{"session_id":"sess-83ea078adcea","input_length":405,"output_length":348,"hash_ids":[2972072],"delay":1242.7} +{"session_id":"sess-83ea078adcea","input_length":1049,"output_length":326,"hash_ids":[2972073,2972074,2972075],"delay":39378.7} +{"session_id":"sess-83ea078adcea","input_length":3435,"output_length":582,"hash_ids":[2972076,2972077,2972078,2972079,2972080,2972081,2972082],"delay":2370.1} +{"session_id":"sess-83ea078adcea","input_length":150,"output_length":2036,"hash_ids":[2972083],"delay":240.2} +{"session_id":"sess-83ea078adcea","input_length":1841,"output_length":135,"hash_ids":[2972084,2972085,2972086,2972087],"delay":1519.9} +{"session_id":"sess-83ea078adcea","input_length":1149,"output_length":522,"hash_ids":[2972088,2972089,2972090],"delay":11145.4} +{"session_id":"sess-83ea078adcea","input_length":7677,"output_length":331,"hash_ids":[2972091,2972092,2972093,2972094,2972095,2972096,2972097,2972098,2972099,2972100,2972101,2972102,2972103,2972104,2972105],"delay":919.1} +{"session_id":"sess-83ea078adcea","input_length":776,"output_length":2626,"hash_ids":[2972106,2972107],"delay":549.1} +{"session_id":"sess-83ea078adcea","input_length":3291,"output_length":127,"hash_ids":[2972108,2972109,2972110,2972111,2972112,2972113,2972114],"delay":1122.7} +{"session_id":"sess-83ea078adcea","input_length":1195,"output_length":337,"hash_ids":[2972115,2972116,2972117],"delay":528.2} +{"session_id":"sess-83ea078adcea","input_length":7663,"output_length":113,"hash_ids":[2972118,2972119,2972120,2972121,2972122,2972123,2972124,2972125,2972126,2972127,2972128,2972129,2972130,2972131,2972132],"delay":382.1} +{"session_id":"sess-83ea078adcea","input_length":3889,"output_length":702,"hash_ids":[2972133,2972134,2972135,2972136,2972137,2972138,2972139,2972140],"delay":890.2} +{"session_id":"sess-83ea078adcea","input_length":574,"output_length":105,"hash_ids":[2972141,2972142],"delay":18295.1} +{"session_id":"sess-83ea078adcea","input_length":4801,"output_length":1510,"hash_ids":[2972143,2972144,2972145,2972146,2972147,2972148,2972149,2972150,2972151,2972152],"delay":373.3} +{"session_id":"sess-83ea078adcea","input_length":1077,"output_length":752,"hash_ids":[2972153,2972154,2972155],"delay":994.0} +{"session_id":"sess-83ea078adcea","input_length":503,"output_length":441,"hash_ids":[2972156],"delay":505.8} +{"session_id":"sess-83ea078adcea","input_length":7230,"output_length":888,"hash_ids":[2972157,2972158,2972159,2972160,2972161,2972162,2972163,2972164,2972165,2972166,2972167,2972168,2972169,2972170,2972171],"delay":1172.5} +{"session_id":"sess-83ea078adcea","input_length":675,"output_length":839,"hash_ids":[2972172,2972173],"delay":358.6} +{"session_id":"sess-83ea078adcea","input_length":5063,"output_length":1279,"hash_ids":[2972174,2972175,2972176,2972177,2972178,2972179,2972180,2972181,2972182,2972183],"delay":5100.4} +{"session_id":"sess-83ea078adcea","input_length":2668,"output_length":487,"hash_ids":[2972184,2972185,2972186,2972187,2972188,2972189],"delay":217.0} +{"session_id":"sess-f5dc7e9c3c19","input_length":62586,"output_length":396,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2976063,2976064,2976065,2976066,2976067,2976068,2976069,2976070,2976071,2976072,2976073,2976074,2976075,2976076,2976077,2976078,2976079,2976080,2976081,2976082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f5dc7e9c3c19","input_length":764,"output_length":630,"hash_ids":[2976083,2976084],"delay":973.2} +{"session_id":"sess-f5dc7e9c3c19","input_length":1069,"output_length":416,"hash_ids":[2976085,2976086,2976087],"delay":37578.1} +{"session_id":"sess-f5dc7e9c3c19","input_length":1115,"output_length":1932,"hash_ids":[2976088,2976089,2976090],"delay":826.8} +{"session_id":"sess-f5dc7e9c3c19","input_length":3591,"output_length":824,"hash_ids":[2976091,2976092,2976093,2976094,2976095,2976096,2976097,2976098],"delay":691.7} +{"session_id":"sess-f5dc7e9c3c19","input_length":509,"output_length":598,"hash_ids":[2976099],"delay":17301.7} +{"session_id":"sess-f5dc7e9c3c19","input_length":2170,"output_length":204,"hash_ids":[2976100,2976101,2976102,2976103,2976104],"delay":4488.3} +{"session_id":"sess-f5dc7e9c3c19","input_length":1311,"output_length":166,"hash_ids":[2976105,2976106,2976107],"delay":763.8} +{"session_id":"sess-f5dc7e9c3c19","input_length":4477,"output_length":314,"hash_ids":[2976108,2976109,2976110,2976111,2976112,2976113,2976114,2976115,2976116],"delay":2296.0} +{"session_id":"sess-f5dc7e9c3c19","input_length":362,"output_length":52,"hash_ids":[2976117],"delay":1152.3} +{"session_id":"sess-f5dc7e9c3c19","input_length":955,"output_length":1011,"hash_ids":[2976118,2976119],"delay":1282.6} +{"session_id":"sess-f5dc7e9c3c19","input_length":2127,"output_length":150,"hash_ids":[2976120,2976121,2976122,2976123,2976124],"delay":431.6} +{"session_id":"sess-74091190c185","input_length":53289,"output_length":322,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2980063,2980064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-74091190c185","input_length":951,"output_length":215,"hash_ids":[2980065,2980066],"delay":1969.3} +{"session_id":"sess-74091190c185","input_length":1120,"output_length":293,"hash_ids":[2980067,2980068,2980069],"delay":610.8} +{"session_id":"sess-74091190c185","input_length":3961,"output_length":372,"hash_ids":[2980070,2980071,2980072,2980073,2980074,2980075,2980076,2980077],"delay":3905.5} +{"session_id":"sess-74091190c185","input_length":2058,"output_length":1706,"hash_ids":[2980078,2980079,2980080,2980081,2980082],"delay":597.9} +{"session_id":"sess-74091190c185","input_length":1896,"output_length":409,"hash_ids":[2980083,2980084,2980085,2980086],"delay":433.6} +{"session_id":"sess-74091190c185","input_length":8089,"output_length":244,"hash_ids":[2980087,2980088,2980089,2980090,2980091,2980092,2980093,2980094,2980095,2980096,2980097,2980098,2980099,2980100,2980101,2980102],"delay":1616.4} +{"session_id":"sess-74091190c185","input_length":807,"output_length":510,"hash_ids":[2980103,2980104],"delay":1255.8} +{"session_id":"sess-74091190c185","input_length":152,"output_length":80,"hash_ids":[2980105],"delay":817.0} +{"session_id":"sess-74091190c185","input_length":937,"output_length":729,"hash_ids":[2980106,2980107],"delay":5075.7} +{"session_id":"sess-74091190c185","input_length":9847,"output_length":71,"hash_ids":[2980108,2980109,2980110,2980111,2980112,2980113,2980114,2980115,2980116,2980117,2980118,2980119,2980120,2980121,2980122,2980123,2980124,2980125,2980126,2980127],"delay":659.0} +{"session_id":"sess-74091190c185","input_length":354,"output_length":571,"hash_ids":[2980128],"delay":392.4} +{"session_id":"sess-74091190c185","input_length":1131,"output_length":499,"hash_ids":[2980129,2980130,2980131],"delay":2744.8} +{"session_id":"sess-74091190c185","input_length":2974,"output_length":296,"hash_ids":[2980132,2980133,2980134,2980135,2980136,2980137],"delay":956.5} +{"session_id":"sess-74091190c185","input_length":4701,"output_length":93,"hash_ids":[2980138,2980139,2980140,2980141,2980142,2980143,2980144,2980145,2980146,2980147],"delay":506.6} +{"session_id":"sess-74091190c185","input_length":815,"output_length":730,"hash_ids":[2980148,2980149],"delay":677.3} +{"session_id":"sess-74091190c185","input_length":902,"output_length":727,"hash_ids":[2980150,2980151],"delay":7925.6} +{"session_id":"sess-74091190c185","input_length":1916,"output_length":142,"hash_ids":[2980152,2980153,2980154,2980155],"delay":1798.3} +{"session_id":"sess-74091190c185","input_length":1582,"output_length":599,"hash_ids":[2980156,2980157,2980158,2980159],"delay":3613.0} +{"session_id":"sess-74091190c185","input_length":4441,"output_length":55,"hash_ids":[2980160,2980161,2980162,2980163,2980164,2980165,2980166,2980167,2980168],"delay":1287.4} +{"session_id":"sess-74091190c185","input_length":681,"output_length":190,"hash_ids":[2980169,2980170],"delay":2573.8} +{"session_id":"sess-74091190c185","input_length":5072,"output_length":188,"hash_ids":[2980171,2980172,2980173,2980174,2980175,2980176,2980177,2980178,2980179,2980180],"delay":287.5} +{"session_id":"sess-74091190c185","input_length":4992,"output_length":383,"hash_ids":[2980181,2980182,2980183,2980184,2980185,2980186,2980187,2980188,2980189,2980190],"delay":467.8} +{"session_id":"sess-74091190c185","input_length":749,"output_length":496,"hash_ids":[2980191,2980192],"delay":306.3} +{"session_id":"sess-74091190c185","input_length":1454,"output_length":434,"hash_ids":[2980193,2980194,2980195],"delay":451.0} +{"session_id":"sess-74091190c185","input_length":1613,"output_length":695,"hash_ids":[2980196,2980197,2980198,2980199],"delay":767.9} +{"session_id":"sess-74091190c185","input_length":3478,"output_length":321,"hash_ids":[2980200,2980201,2980202,2980203,2980204,2980205,2980206],"delay":15275.9} +{"session_id":"sess-4a71d7b4f5e0","input_length":78440,"output_length":285,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,2984063,2984064,2984065,2984066,2984067,2984068,2984069,2984070,2984071,2984072,2984073,2984074,2984075,2984076,2984077,2984078,2984079,2984080,2984081,2984082,2984083,2984084,2984085,2984086,2984087,2984088,2984089,2984090,2984091,2984092,2984093,2984094,2984095,2984096,2984097,2984098,2984099,2984100,2984101,2984102,2984103,2984104,2984105,2984106,2984107,2984108,2984109,2984110,2984111,2984112,2984113],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4a71d7b4f5e0","input_length":2463,"output_length":228,"hash_ids":[2984114,2984115,2984116,2984117,2984118],"delay":1250.3} +{"session_id":"sess-4a71d7b4f5e0","input_length":1506,"output_length":65,"hash_ids":[2984119,2984120,2984121],"delay":16058.8} +{"session_id":"sess-4a71d7b4f5e0","input_length":318,"output_length":83,"hash_ids":[2984122],"delay":23003.0} +{"session_id":"sess-4a71d7b4f5e0","input_length":1828,"output_length":962,"hash_ids":[2984123,2984124,2984125,2984126],"delay":1282.3} +{"session_id":"sess-4a71d7b4f5e0","input_length":1385,"output_length":347,"hash_ids":[2984127,2984128,2984129],"delay":449.8} +{"session_id":"sess-4a71d7b4f5e0","input_length":5308,"output_length":754,"hash_ids":[2984130,2984131,2984132,2984133,2984134,2984135,2984136,2984137,2984138,2984139,2984140],"delay":415.0} +{"session_id":"sess-4a71d7b4f5e0","input_length":450,"output_length":871,"hash_ids":[2984141],"delay":12138.7} +{"session_id":"sess-4a71d7b4f5e0","input_length":1718,"output_length":269,"hash_ids":[2984142,2984143,2984144,2984145],"delay":22245.8} +{"session_id":"sess-4a71d7b4f5e0","input_length":8481,"output_length":177,"hash_ids":[2984146,2984147,2984148,2984149,2984150,2984151,2984152,2984153,2984154,2984155,2984156,2984157,2984158,2984159,2984160,2984161,2984162],"delay":1674.0} +{"session_id":"sess-4a71d7b4f5e0","input_length":2527,"output_length":397,"hash_ids":[2984163,2984164,2984165,2984166,2984167],"delay":438.0} +{"session_id":"sess-34526abbe445","input_length":56896,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2988063,2988064,2988065,2988066,2988067,2988068,2988069,2988070,2988071],"timestamp":0.0,"group_id":13} +{"session_id":"sess-34526abbe445","input_length":4261,"output_length":100,"hash_ids":[2988072,2988073,2988074,2988075,2988076,2988077,2988078,2988079,2988080],"delay":1656.0} +{"session_id":"sess-34526abbe445","input_length":1679,"output_length":1594,"hash_ids":[2988081,2988082,2988083,2988084],"delay":601.2} +{"session_id":"sess-34526abbe445","input_length":6897,"output_length":285,"hash_ids":[2988085,2988086,2988087,2988088,2988089,2988090,2988091,2988092,2988093,2988094,2988095,2988096,2988097,2988098],"delay":1638.0} +{"session_id":"sess-34526abbe445","input_length":2084,"output_length":238,"hash_ids":[2988099,2988100,2988101,2988102,2988103],"delay":32509.8} +{"session_id":"sess-34526abbe445","input_length":3666,"output_length":1205,"hash_ids":[2988104,2988105,2988106,2988107,2988108,2988109,2988110,2988111],"delay":24822.4} +{"session_id":"sess-34526abbe445","input_length":2479,"output_length":55,"hash_ids":[2988112,2988113,2988114,2988115,2988116],"delay":8781.6} +{"session_id":"sess-34526abbe445","input_length":415,"output_length":375,"hash_ids":[2988117],"delay":1567.1} +{"session_id":"sess-34526abbe445","input_length":1625,"output_length":203,"hash_ids":[2988118,2988119,2988120,2988121],"delay":683.1} +{"session_id":"sess-34526abbe445","input_length":5418,"output_length":490,"hash_ids":[2988122,2988123,2988124,2988125,2988126,2988127,2988128,2988129,2988130,2988131,2988132],"delay":234.5} +{"session_id":"sess-34526abbe445","input_length":2805,"output_length":790,"hash_ids":[2988133,2988134,2988135,2988136,2988137,2988138],"delay":1766.6} +{"session_id":"sess-34526abbe445","input_length":660,"output_length":656,"hash_ids":[2988139,2988140],"delay":610.3} +{"session_id":"sess-34526abbe445","input_length":1818,"output_length":1854,"hash_ids":[2988141,2988142,2988143,2988144],"delay":7163.8} +{"session_id":"sess-34526abbe445","input_length":2183,"output_length":228,"hash_ids":[2988145,2988146,2988147,2988148,2988149],"delay":14855.5} +{"session_id":"sess-34526abbe445","input_length":991,"output_length":83,"hash_ids":[2988150,2988151],"delay":2167.0} +{"session_id":"sess-34526abbe445","input_length":400,"output_length":244,"hash_ids":[2988152],"delay":2506.0} +{"session_id":"sess-34526abbe445","input_length":325,"output_length":282,"hash_ids":[2988153],"delay":5456.1} +{"session_id":"sess-34526abbe445","input_length":209,"output_length":245,"hash_ids":[2988154],"delay":8282.8} +{"session_id":"sess-34526abbe445","input_length":1501,"output_length":166,"hash_ids":[2988155,2988156,2988157],"delay":1433.6} +{"session_id":"sess-34526abbe445","input_length":3281,"output_length":179,"hash_ids":[2988158,2988159,2988160,2988161,2988162,2988163,2988164],"delay":642.0} +{"session_id":"sess-34526abbe445","input_length":3073,"output_length":128,"hash_ids":[2988165,2988166,2988167,2988168,2988169,2988170,2988171],"delay":561.3} +{"session_id":"sess-34526abbe445","input_length":668,"output_length":82,"hash_ids":[2988172,2988173],"delay":4203.2} +{"session_id":"sess-34526abbe445","input_length":479,"output_length":505,"hash_ids":[2988174],"delay":255.7} +{"session_id":"sess-34526abbe445","input_length":4122,"output_length":512,"hash_ids":[2988175,2988176,2988177,2988178,2988179,2988180,2988181,2988182,2988183],"delay":605.3} +{"session_id":"sess-34526abbe445","input_length":880,"output_length":171,"hash_ids":[2988184,2988185],"delay":487.8} +{"session_id":"sess-34526abbe445","input_length":1989,"output_length":677,"hash_ids":[2988186,2988187,2988188,2988189],"delay":789.9} +{"session_id":"sess-34526abbe445","input_length":3656,"output_length":333,"hash_ids":[2988190,2988191,2988192,2988193,2988194,2988195,2988196,2988197],"delay":597.3} +{"session_id":"sess-34526abbe445","input_length":2520,"output_length":778,"hash_ids":[2988198,2988199,2988200,2988201,2988202],"delay":724.9} +{"session_id":"sess-1b9d1129bf16","input_length":53954,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,2992063,2992064,2992065],"timestamp":0.0,"group_id":33} +{"session_id":"sess-1b9d1129bf16","input_length":1772,"output_length":2058,"hash_ids":[2992066,2992067,2992068,2992069],"delay":2783.7} +{"session_id":"sess-1b9d1129bf16","input_length":1077,"output_length":719,"hash_ids":[2992070,2992071,2992072],"delay":39795.5} +{"session_id":"sess-1b9d1129bf16","input_length":5496,"output_length":772,"hash_ids":[2992073,2992074,2992075,2992076,2992077,2992078,2992079,2992080,2992081,2992082,2992083],"delay":771.6} +{"session_id":"sess-1b9d1129bf16","input_length":307,"output_length":84,"hash_ids":[2992084],"delay":4100.0} +{"session_id":"sess-1b9d1129bf16","input_length":2997,"output_length":302,"hash_ids":[2992085,2992086,2992087,2992088,2992089,2992090],"delay":491.0} +{"session_id":"sess-1b9d1129bf16","input_length":3061,"output_length":602,"hash_ids":[2992091,2992092,2992093,2992094,2992095,2992096],"delay":26953.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":70614,"output_length":1206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,2996063,2996064,2996065,2996066,2996067,2996068,2996069,2996070,2996071,2996072,2996073,2996074,2996075,2996076,2996077,2996078,2996079,2996080,2996081,2996082,2996083,2996084,2996085,2996086,2996087,2996088,2996089,2996090,2996091,2996092,2996093,2996094,2996095,2996096,2996097],"timestamp":0.0,"group_id":1} +{"session_id":"sess-29d6bbf9a1ec","input_length":2765,"output_length":735,"hash_ids":[2996098,2996099,2996100,2996101,2996102,2996103],"delay":17750.6} +{"session_id":"sess-29d6bbf9a1ec","input_length":3821,"output_length":156,"hash_ids":[2996104,2996105,2996106,2996107,2996108,2996109,2996110,2996111],"delay":1588.0} +{"session_id":"sess-29d6bbf9a1ec","input_length":9561,"output_length":237,"hash_ids":[2996112,2996113,2996114,2996115,2996116,2996117,2996118,2996119,2996120,2996121,2996122,2996123,2996124,2996125,2996126,2996127,2996128,2996129,2996130],"delay":645.4} +{"session_id":"sess-29d6bbf9a1ec","input_length":857,"output_length":92,"hash_ids":[2996131,2996132],"delay":438.4} +{"session_id":"sess-29d6bbf9a1ec","input_length":3132,"output_length":385,"hash_ids":[2996133,2996134,2996135,2996136,2996137,2996138,2996139],"delay":348.9} +{"session_id":"sess-29d6bbf9a1ec","input_length":5031,"output_length":129,"hash_ids":[2996140,2996141,2996142,2996143,2996144,2996145,2996146,2996147,2996148,2996149],"delay":37256.4} +{"session_id":"sess-29d6bbf9a1ec","input_length":7448,"output_length":279,"hash_ids":[2996150,2996151,2996152,2996153,2996154,2996155,2996156,2996157,2996158,2996159,2996160,2996161,2996162,2996163,2996164],"delay":632.6} +{"session_id":"sess-29d6bbf9a1ec","input_length":3498,"output_length":370,"hash_ids":[2996165,2996166,2996167,2996168,2996169,2996170,2996171],"delay":991.9} +{"session_id":"sess-29d6bbf9a1ec","input_length":430,"output_length":217,"hash_ids":[2996172],"delay":163.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":2473,"output_length":305,"hash_ids":[2996173,2996174,2996175,2996176,2996177],"delay":490.6} +{"session_id":"sess-29d6bbf9a1ec","input_length":5995,"output_length":397,"hash_ids":[2996178,2996179,2996180,2996181,2996182,2996183,2996184,2996185,2996186,2996187,2996188,2996189],"delay":463.5} +{"session_id":"sess-29d6bbf9a1ec","input_length":380,"output_length":874,"hash_ids":[2996190],"delay":3047.8} +{"session_id":"sess-29d6bbf9a1ec","input_length":1026,"output_length":1484,"hash_ids":[2996191,2996192,2996193],"delay":1496.6} +{"session_id":"sess-29d6bbf9a1ec","input_length":1185,"output_length":327,"hash_ids":[2996194,2996195,2996196],"delay":393.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":1597,"output_length":321,"hash_ids":[2996197,2996198,2996199,2996200],"delay":317.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":290,"output_length":845,"hash_ids":[2996201],"delay":521.5} +{"session_id":"sess-659312bad029","input_length":54006,"output_length":277,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3000063,3000064,3000065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-659312bad029","input_length":1687,"output_length":495,"hash_ids":[3000066,3000067,3000068,3000069],"delay":284.9} +{"session_id":"sess-659312bad029","input_length":2157,"output_length":229,"hash_ids":[3000070,3000071,3000072,3000073,3000074],"delay":5149.9} +{"session_id":"sess-659312bad029","input_length":301,"output_length":470,"hash_ids":[3000075],"delay":1156.3} +{"session_id":"sess-659312bad029","input_length":761,"output_length":266,"hash_ids":[3000076,3000077],"delay":17816.4} +{"session_id":"sess-659312bad029","input_length":3632,"output_length":125,"hash_ids":[3000078,3000079,3000080,3000081,3000082,3000083,3000084,3000085],"delay":450.3} +{"session_id":"sess-659312bad029","input_length":260,"output_length":132,"hash_ids":[3000086],"delay":6196.3} +{"session_id":"sess-659312bad029","input_length":383,"output_length":1236,"hash_ids":[3000087],"delay":1515.8} +{"session_id":"sess-659312bad029","input_length":393,"output_length":256,"hash_ids":[3000088],"delay":306.7} +{"session_id":"sess-659312bad029","input_length":3976,"output_length":2543,"hash_ids":[3000089,3000090,3000091,3000092,3000093,3000094,3000095,3000096],"delay":1635.5} +{"session_id":"sess-659312bad029","input_length":1948,"output_length":902,"hash_ids":[3000097,3000098,3000099,3000100],"delay":1336.2} +{"session_id":"sess-659312bad029","input_length":1856,"output_length":416,"hash_ids":[3000101,3000102,3000103,3000104],"delay":2122.8} +{"session_id":"sess-659312bad029","input_length":446,"output_length":1491,"hash_ids":[3000105],"delay":47460.2} +{"session_id":"sess-659312bad029","input_length":7257,"output_length":805,"hash_ids":[3000106,3000107,3000108,3000109,3000110,3000111,3000112,3000113,3000114,3000115,3000116,3000117,3000118,3000119,3000120],"delay":1142.0} +{"session_id":"sess-659312bad029","input_length":3392,"output_length":510,"hash_ids":[3000121,3000122,3000123,3000124,3000125,3000126,3000127],"delay":412.3} +{"session_id":"sess-659312bad029","input_length":765,"output_length":197,"hash_ids":[3000128,3000129],"delay":560.9} +{"session_id":"sess-659312bad029","input_length":1009,"output_length":103,"hash_ids":[3000130,3000131],"delay":578.0} +{"session_id":"sess-659312bad029","input_length":453,"output_length":1990,"hash_ids":[3000132],"delay":1043.4} +{"session_id":"sess-659312bad029","input_length":2706,"output_length":305,"hash_ids":[3000133,3000134,3000135,3000136,3000137,3000138],"delay":14413.1} +{"session_id":"sess-659312bad029","input_length":5212,"output_length":228,"hash_ids":[3000139,3000140,3000141,3000142,3000143,3000144,3000145,3000146,3000147,3000148,3000149],"delay":5698.5} +{"session_id":"sess-659312bad029","input_length":2734,"output_length":111,"hash_ids":[3000150,3000151,3000152,3000153,3000154,3000155],"delay":610.2} +{"session_id":"sess-659312bad029","input_length":1079,"output_length":156,"hash_ids":[3000156,3000157,3000158],"delay":274.4} +{"session_id":"sess-659312bad029","input_length":528,"output_length":193,"hash_ids":[3000159,3000160],"delay":1930.4} +{"session_id":"sess-659312bad029","input_length":8323,"output_length":405,"hash_ids":[3000161,3000162,3000163,3000164,3000165,3000166,3000167,3000168,3000169,3000170,3000171,3000172,3000173,3000174,3000175,3000176,3000177],"delay":894.2} +{"session_id":"sess-659312bad029","input_length":2575,"output_length":1041,"hash_ids":[3000178,3000179,3000180,3000181,3000182,3000183],"delay":2518.4} +{"session_id":"sess-659312bad029","input_length":7513,"output_length":1132,"hash_ids":[3000184,3000185,3000186,3000187,3000188,3000189,3000190,3000191,3000192,3000193,3000194,3000195,3000196,3000197,3000198],"delay":283.5} +{"session_id":"sess-0c856a553a9f","input_length":55447,"output_length":124,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3004063,3004064,3004065,3004066,3004067,3004068],"timestamp":0.0,"group_id":3} +{"session_id":"sess-0c856a553a9f","input_length":441,"output_length":217,"hash_ids":[3004069],"delay":3119.5} +{"session_id":"sess-0c856a553a9f","input_length":9401,"output_length":143,"hash_ids":[3004070,3004071,3004072,3004073,3004074,3004075,3004076,3004077,3004078,3004079,3004080,3004081,3004082,3004083,3004084,3004085,3004086,3004087,3004088],"delay":433.4} +{"session_id":"sess-0c856a553a9f","input_length":3877,"output_length":2239,"hash_ids":[3004089,3004090,3004091,3004092,3004093,3004094,3004095,3004096],"delay":1607.6} +{"session_id":"sess-0c856a553a9f","input_length":1155,"output_length":152,"hash_ids":[3004097,3004098,3004099],"delay":1484.6} +{"session_id":"sess-0c856a553a9f","input_length":1031,"output_length":468,"hash_ids":[3004100,3004101,3004102],"delay":2627.4} +{"session_id":"sess-0c856a553a9f","input_length":1710,"output_length":50,"hash_ids":[3004103,3004104,3004105,3004106],"delay":419.2} +{"session_id":"sess-0c856a553a9f","input_length":313,"output_length":131,"hash_ids":[3004107],"delay":1805.3} +{"session_id":"sess-0c856a553a9f","input_length":525,"output_length":162,"hash_ids":[3004108,3004109],"delay":4677.1} +{"session_id":"sess-0c856a553a9f","input_length":867,"output_length":135,"hash_ids":[3004110,3004111],"delay":2513.6} +{"session_id":"sess-0c856a553a9f","input_length":1583,"output_length":195,"hash_ids":[3004112,3004113,3004114,3004115],"delay":24414.9} +{"session_id":"sess-0c856a553a9f","input_length":6050,"output_length":469,"hash_ids":[3004116,3004117,3004118,3004119,3004120,3004121,3004122,3004123,3004124,3004125,3004126,3004127],"delay":1172.2} +{"session_id":"sess-0c856a553a9f","input_length":6224,"output_length":114,"hash_ids":[3004128,3004129,3004130,3004131,3004132,3004133,3004134,3004135,3004136,3004137,3004138,3004139,3004140],"delay":1335.1} +{"session_id":"sess-0c856a553a9f","input_length":2643,"output_length":110,"hash_ids":[3004141,3004142,3004143,3004144,3004145,3004146],"delay":448.3} +{"session_id":"sess-0c856a553a9f","input_length":4586,"output_length":500,"hash_ids":[3004147,3004148,3004149,3004150,3004151,3004152,3004153,3004154,3004155],"delay":499.9} +{"session_id":"sess-0c856a553a9f","input_length":5660,"output_length":136,"hash_ids":[3004156,3004157,3004158,3004159,3004160,3004161,3004162,3004163,3004164,3004165,3004166,3004167],"delay":572.7} +{"session_id":"sess-0c856a553a9f","input_length":2583,"output_length":43,"hash_ids":[3004168,3004169,3004170,3004171,3004172,3004173],"delay":745.2} +{"session_id":"sess-0c856a553a9f","input_length":4898,"output_length":1225,"hash_ids":[3004174,3004175,3004176,3004177,3004178,3004179,3004180,3004181,3004182,3004183],"delay":224.5} +{"session_id":"sess-0c856a553a9f","input_length":899,"output_length":196,"hash_ids":[3004184,3004185],"delay":263.5} +{"session_id":"sess-0c856a553a9f","input_length":6882,"output_length":52,"hash_ids":[3004186,3004187,3004188,3004189,3004190,3004191,3004192,3004193,3004194,3004195,3004196,3004197,3004198,3004199],"delay":734.9} +{"session_id":"sess-0c856a553a9f","input_length":2342,"output_length":59,"hash_ids":[3004200,3004201,3004202,3004203,3004204],"delay":749.3} +{"session_id":"sess-0c856a553a9f","input_length":834,"output_length":391,"hash_ids":[3004205,3004206],"delay":3075.7} +{"session_id":"sess-0c856a553a9f","input_length":226,"output_length":527,"hash_ids":[3004207],"delay":636.5} +{"session_id":"sess-3416c5b6aabc","input_length":63478,"output_length":297,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3008063,3008064,3008065,3008066,3008067,3008068,3008069,3008070,3008071,3008072,3008073,3008074,3008075,3008076,3008077,3008078,3008079,3008080,3008081,3008082,3008083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9978aee67423","input_length":54437,"output_length":771,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3012063,3012064,3012065,3012066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9978aee67423","input_length":3125,"output_length":1226,"hash_ids":[3012067,3012068,3012069,3012070,3012071,3012072,3012073],"delay":3436.7} +{"session_id":"sess-9978aee67423","input_length":6858,"output_length":633,"hash_ids":[3012074,3012075,3012076,3012077,3012078,3012079,3012080,3012081,3012082,3012083,3012084,3012085,3012086,3012087],"delay":30633.4} +{"session_id":"sess-9978aee67423","input_length":1200,"output_length":121,"hash_ids":[3012088,3012089,3012090],"delay":1023.2} +{"session_id":"sess-9978aee67423","input_length":9823,"output_length":289,"hash_ids":[3012091,3012092,3012093,3012094,3012095,3012096,3012097,3012098,3012099,3012100,3012101,3012102,3012103,3012104,3012105,3012106,3012107,3012108,3012109,3012110],"delay":6509.2} +{"session_id":"sess-1a5f107eb582","input_length":56477,"output_length":198,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3016063,3016064,3016065,3016066,3016067,3016068,3016069,3016070],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1a5f107eb582","input_length":2915,"output_length":238,"hash_ids":[3016071,3016072,3016073,3016074,3016075,3016076],"delay":16078.0} +{"session_id":"sess-1a5f107eb582","input_length":1194,"output_length":242,"hash_ids":[3016077,3016078,3016079],"delay":370.3} +{"session_id":"sess-1a5f107eb582","input_length":5452,"output_length":795,"hash_ids":[3016080,3016081,3016082,3016083,3016084,3016085,3016086,3016087,3016088,3016089,3016090],"delay":1194.2} +{"session_id":"sess-1a5f107eb582","input_length":1098,"output_length":167,"hash_ids":[3016091,3016092,3016093],"delay":1465.1} +{"session_id":"sess-1a5f107eb582","input_length":2113,"output_length":294,"hash_ids":[3016094,3016095,3016096,3016097,3016098],"delay":378.8} +{"session_id":"sess-1a5f107eb582","input_length":1124,"output_length":1552,"hash_ids":[3016099,3016100,3016101],"delay":1307.9} +{"session_id":"sess-1a5f107eb582","input_length":382,"output_length":181,"hash_ids":[3016102],"delay":131.8} +{"session_id":"sess-1a5f107eb582","input_length":3868,"output_length":144,"hash_ids":[3016103,3016104,3016105,3016106,3016107,3016108,3016109,3016110],"delay":916.7} +{"session_id":"sess-1a5f107eb582","input_length":2605,"output_length":400,"hash_ids":[3016111,3016112,3016113,3016114,3016115,3016116],"delay":831.0} +{"session_id":"sess-1a5f107eb582","input_length":3481,"output_length":658,"hash_ids":[3016117,3016118,3016119,3016120,3016121,3016122,3016123],"delay":947.7} +{"session_id":"sess-1a5f107eb582","input_length":1252,"output_length":170,"hash_ids":[3016124,3016125,3016126],"delay":2091.7} +{"session_id":"sess-1a5f107eb582","input_length":4453,"output_length":872,"hash_ids":[3016127,3016128,3016129,3016130,3016131,3016132,3016133,3016134,3016135],"delay":1507.6} +{"session_id":"sess-1a5f107eb582","input_length":3248,"output_length":209,"hash_ids":[3016136,3016137,3016138,3016139,3016140,3016141,3016142],"delay":507.8} +{"session_id":"sess-1a5f107eb582","input_length":2411,"output_length":215,"hash_ids":[3016143,3016144,3016145,3016146,3016147],"delay":356.5} +{"session_id":"sess-1a5f107eb582","input_length":3527,"output_length":30,"hash_ids":[3016148,3016149,3016150,3016151,3016152,3016153,3016154],"delay":1240.5} +{"session_id":"sess-1a5f107eb582","input_length":1732,"output_length":156,"hash_ids":[3016155,3016156,3016157,3016158],"delay":6069.7} +{"session_id":"sess-1a5f107eb582","input_length":3309,"output_length":80,"hash_ids":[3016159,3016160,3016161,3016162,3016163,3016164,3016165],"delay":2367.7} +{"session_id":"sess-1a5f107eb582","input_length":844,"output_length":502,"hash_ids":[3016166,3016167],"delay":1002.6} +{"session_id":"sess-1a5f107eb582","input_length":5049,"output_length":737,"hash_ids":[3016168,3016169,3016170,3016171,3016172,3016173,3016174,3016175,3016176,3016177],"delay":617.6} +{"session_id":"sess-1a5f107eb582","input_length":6003,"output_length":406,"hash_ids":[3016178,3016179,3016180,3016181,3016182,3016183,3016184,3016185,3016186,3016187,3016188,3016189],"delay":718.5} +{"session_id":"sess-1a5f107eb582","input_length":4138,"output_length":481,"hash_ids":[3016190,3016191,3016192,3016193,3016194,3016195,3016196,3016197,3016198],"delay":894.4} +{"session_id":"sess-b647e2d0e8c1","input_length":68594,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3020063,3020064,3020065,3020066,3020067,3020068,3020069,3020070,3020071,3020072,3020073,3020074,3020075,3020076,3020077,3020078,3020079,3020080,3020081,3020082,3020083,3020084,3020085,3020086,3020087,3020088,3020089,3020090,3020091,3020092,3020093],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b647e2d0e8c1","input_length":8330,"output_length":350,"hash_ids":[3020094,3020095,3020096,3020097,3020098,3020099,3020100,3020101,3020102,3020103,3020104,3020105,3020106,3020107,3020108,3020109,3020110],"delay":630.8} +{"session_id":"sess-b647e2d0e8c1","input_length":1724,"output_length":54,"hash_ids":[3020111,3020112,3020113,3020114],"delay":502.0} +{"session_id":"sess-b647e2d0e8c1","input_length":445,"output_length":803,"hash_ids":[3020115],"delay":825.4} +{"session_id":"sess-b647e2d0e8c1","input_length":1540,"output_length":835,"hash_ids":[3020116,3020117,3020118,3020119],"delay":1212.4} +{"session_id":"sess-b647e2d0e8c1","input_length":8030,"output_length":325,"hash_ids":[3020120,3020121,3020122,3020123,3020124,3020125,3020126,3020127,3020128,3020129,3020130,3020131,3020132,3020133,3020134,3020135],"delay":14831.6} +{"session_id":"sess-b647e2d0e8c1","input_length":4844,"output_length":655,"hash_ids":[3020136,3020137,3020138,3020139,3020140,3020141,3020142,3020143,3020144,3020145],"delay":45528.8} +{"session_id":"sess-b647e2d0e8c1","input_length":791,"output_length":137,"hash_ids":[3020146,3020147],"delay":240.2} +{"session_id":"sess-b647e2d0e8c1","input_length":1218,"output_length":59,"hash_ids":[3020148,3020149,3020150],"delay":37785.9} +{"session_id":"sess-b647e2d0e8c1","input_length":676,"output_length":1843,"hash_ids":[3020151,3020152],"delay":359.2} +{"session_id":"sess-b647e2d0e8c1","input_length":5018,"output_length":228,"hash_ids":[3020153,3020154,3020155,3020156,3020157,3020158,3020159,3020160,3020161,3020162],"delay":26651.2} +{"session_id":"sess-b647e2d0e8c1","input_length":3961,"output_length":132,"hash_ids":[3020163,3020164,3020165,3020166,3020167,3020168,3020169,3020170],"delay":959.1} +{"session_id":"sess-b647e2d0e8c1","input_length":800,"output_length":56,"hash_ids":[3020171,3020172],"delay":543.6} +{"session_id":"sess-b647e2d0e8c1","input_length":3845,"output_length":225,"hash_ids":[3020173,3020174,3020175,3020176,3020177,3020178,3020179,3020180],"delay":697.2} +{"session_id":"sess-b647e2d0e8c1","input_length":3897,"output_length":106,"hash_ids":[3020181,3020182,3020183,3020184,3020185,3020186,3020187,3020188],"delay":1418.8} +{"session_id":"sess-b647e2d0e8c1","input_length":374,"output_length":784,"hash_ids":[3020189],"delay":380.1} +{"session_id":"sess-b647e2d0e8c1","input_length":2526,"output_length":399,"hash_ids":[3020190,3020191,3020192,3020193,3020194],"delay":880.9} +{"session_id":"sess-b647e2d0e8c1","input_length":3453,"output_length":503,"hash_ids":[3020195,3020196,3020197,3020198,3020199,3020200,3020201],"delay":5029.8} +{"session_id":"sess-b647e2d0e8c1","input_length":378,"output_length":648,"hash_ids":[3020202],"delay":208.3} +{"session_id":"sess-e8ce36ece428","input_length":67056,"output_length":609,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3024063,3024064,3024065,3024066,3024067,3024068,3024069,3024070,3024071,3024072,3024073,3024074,3024075,3024076,3024077,3024078,3024079,3024080,3024081,3024082,3024083,3024084,3024085,3024086,3024087,3024088,3024089,3024090],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e8ce36ece428","input_length":361,"output_length":193,"hash_ids":[3024091],"delay":637.4} +{"session_id":"sess-e8ce36ece428","input_length":986,"output_length":84,"hash_ids":[3024092,3024093],"delay":248.0} +{"session_id":"sess-e8ce36ece428","input_length":1958,"output_length":164,"hash_ids":[3024094,3024095,3024096,3024097],"delay":3999.1} +{"session_id":"sess-e8ce36ece428","input_length":6673,"output_length":474,"hash_ids":[3024098,3024099,3024100,3024101,3024102,3024103,3024104,3024105,3024106,3024107,3024108,3024109,3024110,3024111],"delay":546.3} +{"session_id":"sess-e8ce36ece428","input_length":2258,"output_length":316,"hash_ids":[3024112,3024113,3024114,3024115,3024116],"delay":591.3} +{"session_id":"sess-e8ce36ece428","input_length":1587,"output_length":736,"hash_ids":[3024117,3024118,3024119,3024120],"delay":401.4} +{"session_id":"sess-e8ce36ece428","input_length":1483,"output_length":373,"hash_ids":[3024121,3024122,3024123],"delay":1028.9} +{"session_id":"sess-e8ce36ece428","input_length":6568,"output_length":1805,"hash_ids":[3024124,3024125,3024126,3024127,3024128,3024129,3024130,3024131,3024132,3024133,3024134,3024135,3024136],"delay":309.7} +{"session_id":"sess-e8ce36ece428","input_length":147,"output_length":331,"hash_ids":[3024137],"delay":6496.1} +{"session_id":"sess-e8ce36ece428","input_length":2153,"output_length":378,"hash_ids":[3024138,3024139,3024140,3024141,3024142],"delay":11257.7} +{"session_id":"sess-e8ce36ece428","input_length":2127,"output_length":30,"hash_ids":[3024143,3024144,3024145,3024146,3024147],"delay":1177.2} +{"session_id":"sess-e8ce36ece428","input_length":3529,"output_length":158,"hash_ids":[3024148,3024149,3024150,3024151,3024152,3024153,3024154],"delay":2288.5} +{"session_id":"sess-e8ce36ece428","input_length":1106,"output_length":108,"hash_ids":[3024155,3024156,3024157],"delay":465.4} +{"session_id":"sess-e8ce36ece428","input_length":1182,"output_length":622,"hash_ids":[3024158,3024159,3024160],"delay":696.5} +{"session_id":"sess-e8ce36ece428","input_length":2923,"output_length":199,"hash_ids":[3024161,3024162,3024163,3024164,3024165,3024166],"delay":11903.4} +{"session_id":"sess-e8ce36ece428","input_length":688,"output_length":504,"hash_ids":[3024167,3024168],"delay":19879.6} +{"session_id":"sess-e8ce36ece428","input_length":126,"output_length":967,"hash_ids":[3024169],"delay":676.7} +{"session_id":"sess-e8ce36ece428","input_length":1464,"output_length":1836,"hash_ids":[3024170,3024171,3024172],"delay":644.2} +{"session_id":"sess-e8ce36ece428","input_length":1460,"output_length":298,"hash_ids":[3024173,3024174,3024175],"delay":13028.0} +{"session_id":"sess-e8ce36ece428","input_length":3244,"output_length":590,"hash_ids":[3024176,3024177,3024178,3024179,3024180,3024181,3024182],"delay":596.2} +{"session_id":"sess-e8ce36ece428","input_length":343,"output_length":1885,"hash_ids":[3024183],"delay":163.6} +{"session_id":"sess-e8ce36ece428","input_length":7636,"output_length":70,"hash_ids":[3024184,3024185,3024186,3024187,3024188,3024189,3024190,3024191,3024192,3024193,3024194,3024195,3024196,3024197,3024198],"delay":783.5} +{"session_id":"sess-e8ce36ece428","input_length":574,"output_length":170,"hash_ids":[3024199,3024200],"delay":2504.1} +{"session_id":"sess-c82e8e3bfc98","input_length":54114,"output_length":275,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,3028063,3028064,3028065],"timestamp":0.0,"group_id":7} +{"session_id":"sess-c82e8e3bfc98","input_length":4375,"output_length":272,"hash_ids":[3028066,3028067,3028068,3028069,3028070,3028071,3028072,3028073,3028074],"delay":416.1} +{"session_id":"sess-c82e8e3bfc98","input_length":412,"output_length":48,"hash_ids":[3028075],"delay":1592.1} +{"session_id":"sess-c82e8e3bfc98","input_length":2601,"output_length":643,"hash_ids":[3028076,3028077,3028078,3028079,3028080,3028081],"delay":12992.2} +{"session_id":"sess-c82e8e3bfc98","input_length":826,"output_length":83,"hash_ids":[3028082,3028083],"delay":16102.5} +{"session_id":"sess-c82e8e3bfc98","input_length":1707,"output_length":244,"hash_ids":[3028084,3028085,3028086,3028087],"delay":897.6} +{"session_id":"sess-c82e8e3bfc98","input_length":7214,"output_length":812,"hash_ids":[3028088,3028089,3028090,3028091,3028092,3028093,3028094,3028095,3028096,3028097,3028098,3028099,3028100,3028101,3028102],"delay":1038.9} +{"session_id":"sess-c82e8e3bfc98","input_length":1929,"output_length":546,"hash_ids":[3028103,3028104,3028105,3028106],"delay":2056.5} +{"session_id":"sess-c82e8e3bfc98","input_length":906,"output_length":553,"hash_ids":[3028107,3028108],"delay":1286.4} +{"session_id":"sess-c82e8e3bfc98","input_length":2281,"output_length":321,"hash_ids":[3028109,3028110,3028111,3028112,3028113],"delay":32298.6} +{"session_id":"sess-c82e8e3bfc98","input_length":867,"output_length":184,"hash_ids":[3028114,3028115],"delay":870.2} +{"session_id":"sess-c82e8e3bfc98","input_length":429,"output_length":1526,"hash_ids":[3028116],"delay":7223.9} +{"session_id":"sess-c82e8e3bfc98","input_length":5088,"output_length":350,"hash_ids":[3028117,3028118,3028119,3028120,3028121,3028122,3028123,3028124,3028125,3028126],"delay":5133.9} +{"session_id":"sess-c82e8e3bfc98","input_length":2909,"output_length":97,"hash_ids":[3028127,3028128,3028129,3028130,3028131,3028132],"delay":14474.4} +{"session_id":"sess-c82e8e3bfc98","input_length":306,"output_length":134,"hash_ids":[3028133],"delay":2022.4} +{"session_id":"sess-c82e8e3bfc98","input_length":1415,"output_length":142,"hash_ids":[3028134,3028135,3028136],"delay":847.6} +{"session_id":"sess-c82e8e3bfc98","input_length":886,"output_length":57,"hash_ids":[3028137,3028138],"delay":1813.3} +{"session_id":"sess-c82e8e3bfc98","input_length":1634,"output_length":635,"hash_ids":[3028139,3028140,3028141,3028142],"delay":16867.4} +{"session_id":"sess-c82e8e3bfc98","input_length":422,"output_length":1054,"hash_ids":[3028143],"delay":1691.9} +{"session_id":"sess-c82e8e3bfc98","input_length":609,"output_length":668,"hash_ids":[3028144,3028145],"delay":4797.2} +{"session_id":"sess-c82e8e3bfc98","input_length":1618,"output_length":378,"hash_ids":[3028146,3028147,3028148,3028149],"delay":746.2} +{"session_id":"sess-c82e8e3bfc98","input_length":1625,"output_length":84,"hash_ids":[3028150,3028151,3028152,3028153],"delay":656.7} +{"session_id":"sess-c82e8e3bfc98","input_length":5167,"output_length":227,"hash_ids":[3028154,3028155,3028156,3028157,3028158,3028159,3028160,3028161,3028162,3028163,3028164],"delay":404.3} +{"session_id":"sess-c82e8e3bfc98","input_length":1150,"output_length":30,"hash_ids":[3028165,3028166,3028167],"delay":1149.5} +{"session_id":"sess-c82e8e3bfc98","input_length":3709,"output_length":500,"hash_ids":[3028168,3028169,3028170,3028171,3028172,3028173,3028174,3028175],"delay":421.6} +{"session_id":"sess-c82e8e3bfc98","input_length":2535,"output_length":389,"hash_ids":[3028176,3028177,3028178,3028179,3028180],"delay":1197.6} +{"session_id":"sess-c82e8e3bfc98","input_length":769,"output_length":1528,"hash_ids":[3028181,3028182],"delay":6056.0} +{"session_id":"sess-c82e8e3bfc98","input_length":192,"output_length":194,"hash_ids":[3028183],"delay":185.9} +{"session_id":"sess-c82e8e3bfc98","input_length":66,"output_length":318,"hash_ids":[3028184],"delay":500.5} +{"session_id":"sess-c82e8e3bfc98","input_length":1057,"output_length":439,"hash_ids":[3028185,3028186,3028187],"delay":288.8} +{"session_id":"sess-c82e8e3bfc98","input_length":2534,"output_length":1121,"hash_ids":[3028188,3028189,3028190,3028191,3028192],"delay":119.3} +{"session_id":"sess-c82e8e3bfc98","input_length":5288,"output_length":365,"hash_ids":[3028193,3028194,3028195,3028196,3028197,3028198,3028199,3028200,3028201,3028202,3028203],"delay":368.6} +{"session_id":"sess-c82e8e3bfc98","input_length":200,"output_length":289,"hash_ids":[3028204],"delay":125.3} +{"session_id":"sess-870c95182c44","input_length":54723,"output_length":129,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3032063,3032064,3032065,3032066],"timestamp":0.0,"group_id":5} +{"session_id":"sess-870c95182c44","input_length":3479,"output_length":928,"hash_ids":[3032067,3032068,3032069,3032070,3032071,3032072,3032073],"delay":56005.0} +{"session_id":"sess-870c95182c44","input_length":407,"output_length":1468,"hash_ids":[3032074],"delay":2553.5} +{"session_id":"sess-870c95182c44","input_length":1984,"output_length":301,"hash_ids":[3032075,3032076,3032077,3032078],"delay":720.0} +{"session_id":"sess-870c95182c44","input_length":2094,"output_length":78,"hash_ids":[3032079,3032080,3032081,3032082,3032083],"delay":38120.8} +{"session_id":"sess-870c95182c44","input_length":1776,"output_length":307,"hash_ids":[3032084,3032085,3032086,3032087],"delay":1295.3} +{"session_id":"sess-870c95182c44","input_length":8361,"output_length":292,"hash_ids":[3032088,3032089,3032090,3032091,3032092,3032093,3032094,3032095,3032096,3032097,3032098,3032099,3032100,3032101,3032102,3032103,3032104],"delay":24404.6} +{"session_id":"sess-870c95182c44","input_length":347,"output_length":137,"hash_ids":[3032105],"delay":4224.5} +{"session_id":"sess-870c95182c44","input_length":1076,"output_length":519,"hash_ids":[3032106,3032107,3032108],"delay":528.0} +{"session_id":"sess-870c95182c44","input_length":2364,"output_length":399,"hash_ids":[3032109,3032110,3032111,3032112,3032113],"delay":21360.0} +{"session_id":"sess-870c95182c44","input_length":266,"output_length":488,"hash_ids":[3032114],"delay":7834.8} +{"session_id":"sess-870c95182c44","input_length":397,"output_length":50,"hash_ids":[3032115],"delay":721.5} +{"session_id":"sess-870c95182c44","input_length":8566,"output_length":428,"hash_ids":[3032116,3032117,3032118,3032119,3032120,3032121,3032122,3032123,3032124,3032125,3032126,3032127,3032128,3032129,3032130,3032131,3032132],"delay":927.5} +{"session_id":"sess-870c95182c44","input_length":2706,"output_length":86,"hash_ids":[3032133,3032134,3032135,3032136,3032137,3032138],"delay":1006.3} +{"session_id":"sess-870c95182c44","input_length":901,"output_length":93,"hash_ids":[3032139,3032140],"delay":107.5} +{"session_id":"sess-870c95182c44","input_length":4630,"output_length":901,"hash_ids":[3032141,3032142,3032143,3032144,3032145,3032146,3032147,3032148,3032149,3032150],"delay":310.2} +{"session_id":"sess-870c95182c44","input_length":187,"output_length":662,"hash_ids":[3032151],"delay":147.2} +{"session_id":"sess-a446b4afc19a","input_length":62180,"output_length":389,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3036063,3036064,3036065,3036066,3036067,3036068,3036069,3036070,3036071,3036072,3036073,3036074,3036075,3036076,3036077,3036078,3036079,3036080,3036081],"timestamp":0.0,"group_id":3} +{"session_id":"sess-a446b4afc19a","input_length":4320,"output_length":359,"hash_ids":[3036082,3036083,3036084,3036085,3036086,3036087,3036088,3036089,3036090],"delay":4230.0} +{"session_id":"sess-a446b4afc19a","input_length":219,"output_length":716,"hash_ids":[3036091],"delay":1253.0} +{"session_id":"sess-a446b4afc19a","input_length":8741,"output_length":89,"hash_ids":[3036092,3036093,3036094,3036095,3036096,3036097,3036098,3036099,3036100,3036101,3036102,3036103,3036104,3036105,3036106,3036107,3036108,3036109],"delay":10639.5} +{"session_id":"sess-a446b4afc19a","input_length":1770,"output_length":142,"hash_ids":[3036110,3036111,3036112,3036113],"delay":408.7} +{"session_id":"sess-a446b4afc19a","input_length":507,"output_length":1074,"hash_ids":[3036114],"delay":718.1} +{"session_id":"sess-a446b4afc19a","input_length":204,"output_length":365,"hash_ids":[3036115],"delay":984.5} +{"session_id":"sess-a446b4afc19a","input_length":84,"output_length":204,"hash_ids":[3036116],"delay":358.5} +{"session_id":"sess-a446b4afc19a","input_length":3670,"output_length":118,"hash_ids":[3036117,3036118,3036119,3036120,3036121,3036122,3036123,3036124],"delay":819.2} +{"session_id":"sess-a446b4afc19a","input_length":1145,"output_length":369,"hash_ids":[3036125,3036126,3036127],"delay":14530.8} +{"session_id":"sess-a446b4afc19a","input_length":844,"output_length":255,"hash_ids":[3036128,3036129],"delay":1535.5} +{"session_id":"sess-a446b4afc19a","input_length":2850,"output_length":314,"hash_ids":[3036130,3036131,3036132,3036133,3036134,3036135],"delay":235.4} +{"session_id":"sess-a446b4afc19a","input_length":190,"output_length":175,"hash_ids":[3036136],"delay":7525.6} +{"session_id":"sess-a446b4afc19a","input_length":1689,"output_length":313,"hash_ids":[3036137,3036138,3036139,3036140],"delay":15537.9} +{"session_id":"sess-a446b4afc19a","input_length":346,"output_length":453,"hash_ids":[3036141],"delay":1603.9} +{"session_id":"sess-a446b4afc19a","input_length":5307,"output_length":66,"hash_ids":[3036142,3036143,3036144,3036145,3036146,3036147,3036148,3036149,3036150,3036151,3036152],"delay":10981.5} +{"session_id":"sess-a446b4afc19a","input_length":542,"output_length":61,"hash_ids":[3036153,3036154],"delay":363.6} +{"session_id":"sess-a446b4afc19a","input_length":1722,"output_length":152,"hash_ids":[3036155,3036156,3036157,3036158],"delay":9562.0} +{"session_id":"sess-a446b4afc19a","input_length":3052,"output_length":173,"hash_ids":[3036159,3036160,3036161,3036162,3036163,3036164],"delay":184.5} +{"session_id":"sess-a446b4afc19a","input_length":2047,"output_length":271,"hash_ids":[3036165,3036166,3036167,3036168],"delay":4379.9} +{"session_id":"sess-a446b4afc19a","input_length":1516,"output_length":284,"hash_ids":[3036169,3036170,3036171],"delay":3816.5} +{"session_id":"sess-a446b4afc19a","input_length":582,"output_length":767,"hash_ids":[3036172,3036173],"delay":165.2} +{"session_id":"sess-a446b4afc19a","input_length":1928,"output_length":205,"hash_ids":[3036174,3036175,3036176,3036177],"delay":1355.6} +{"session_id":"sess-a446b4afc19a","input_length":9752,"output_length":1423,"hash_ids":[3036178,3036179,3036180,3036181,3036182,3036183,3036184,3036185,3036186,3036187,3036188,3036189,3036190,3036191,3036192,3036193,3036194,3036195,3036196,3036197],"delay":438.8} +{"session_id":"sess-a446b4afc19a","input_length":2223,"output_length":204,"hash_ids":[3036198,3036199,3036200,3036201,3036202],"delay":1200.4} +{"session_id":"sess-a446b4afc19a","input_length":1088,"output_length":302,"hash_ids":[3036203,3036204,3036205],"delay":4714.5} +{"session_id":"sess-b126874bff11","input_length":54813,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3040063,3040064,3040065,3040066,3040067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b126874bff11","input_length":340,"output_length":180,"hash_ids":[3040068],"delay":3674.6} +{"session_id":"sess-b126874bff11","input_length":5502,"output_length":456,"hash_ids":[3040069,3040070,3040071,3040072,3040073,3040074,3040075,3040076,3040077,3040078,3040079],"delay":3148.5} +{"session_id":"sess-b126874bff11","input_length":1416,"output_length":316,"hash_ids":[3040080,3040081,3040082],"delay":1553.3} +{"session_id":"sess-b126874bff11","input_length":2766,"output_length":248,"hash_ids":[3040083,3040084,3040085,3040086,3040087,3040088],"delay":514.7} +{"session_id":"sess-b126874bff11","input_length":2026,"output_length":401,"hash_ids":[3040089,3040090,3040091,3040092],"delay":521.9} +{"session_id":"sess-b126874bff11","input_length":3063,"output_length":226,"hash_ids":[3040093,3040094,3040095,3040096,3040097,3040098],"delay":1113.3} +{"session_id":"sess-b126874bff11","input_length":908,"output_length":484,"hash_ids":[3040099,3040100],"delay":13223.0} +{"session_id":"sess-b126874bff11","input_length":3705,"output_length":339,"hash_ids":[3040101,3040102,3040103,3040104,3040105,3040106,3040107,3040108],"delay":1407.2} +{"session_id":"sess-b126874bff11","input_length":730,"output_length":175,"hash_ids":[3040109,3040110],"delay":427.1} +{"session_id":"sess-b126874bff11","input_length":6441,"output_length":392,"hash_ids":[3040111,3040112,3040113,3040114,3040115,3040116,3040117,3040118,3040119,3040120,3040121,3040122,3040123],"delay":3081.7} +{"session_id":"sess-b126874bff11","input_length":1643,"output_length":477,"hash_ids":[3040124,3040125,3040126,3040127],"delay":1610.3} +{"session_id":"sess-b126874bff11","input_length":1150,"output_length":145,"hash_ids":[3040128,3040129,3040130],"delay":4981.8} +{"session_id":"sess-b126874bff11","input_length":918,"output_length":96,"hash_ids":[3040131,3040132],"delay":4169.2} +{"session_id":"sess-b126874bff11","input_length":3750,"output_length":555,"hash_ids":[3040133,3040134,3040135,3040136,3040137,3040138,3040139,3040140],"delay":1268.8} +{"session_id":"sess-b126874bff11","input_length":3188,"output_length":416,"hash_ids":[3040141,3040142,3040143,3040144,3040145,3040146,3040147],"delay":580.8} +{"session_id":"sess-b126874bff11","input_length":134,"output_length":165,"hash_ids":[3040148],"delay":274.4} +{"session_id":"sess-b126874bff11","input_length":318,"output_length":205,"hash_ids":[3040149],"delay":812.2} +{"session_id":"sess-b126874bff11","input_length":2513,"output_length":1652,"hash_ids":[3040150,3040151,3040152,3040153,3040154],"delay":827.6} +{"session_id":"sess-b126874bff11","input_length":221,"output_length":1161,"hash_ids":[3040155],"delay":1084.3} +{"session_id":"sess-b126874bff11","input_length":547,"output_length":183,"hash_ids":[3040156,3040157],"delay":13331.4} +{"session_id":"sess-b126874bff11","input_length":123,"output_length":138,"hash_ids":[3040158],"delay":11160.1} +{"session_id":"sess-b126874bff11","input_length":37,"output_length":389,"hash_ids":[3040159],"delay":764.3} +{"session_id":"sess-46c244b54221","input_length":53858,"output_length":586,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3044063,3044064,3044065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-46c244b54221","input_length":2392,"output_length":556,"hash_ids":[3044066,3044067,3044068,3044069,3044070],"delay":942.9} +{"session_id":"sess-46c244b54221","input_length":2382,"output_length":131,"hash_ids":[3044071,3044072,3044073,3044074,3044075],"delay":1539.8} +{"session_id":"sess-46c244b54221","input_length":1878,"output_length":241,"hash_ids":[3044076,3044077,3044078,3044079],"delay":51156.6} +{"session_id":"sess-46c244b54221","input_length":1685,"output_length":1539,"hash_ids":[3044080,3044081,3044082,3044083],"delay":1095.3} +{"session_id":"sess-46c244b54221","input_length":273,"output_length":133,"hash_ids":[3044084],"delay":20415.5} +{"session_id":"sess-46c244b54221","input_length":198,"output_length":398,"hash_ids":[3044085],"delay":2143.7} +{"session_id":"sess-46c244b54221","input_length":1825,"output_length":757,"hash_ids":[3044086,3044087,3044088,3044089],"delay":41802.2} +{"session_id":"sess-46c244b54221","input_length":298,"output_length":529,"hash_ids":[3044090],"delay":1761.2} +{"session_id":"sess-46c244b54221","input_length":1200,"output_length":242,"hash_ids":[3044091,3044092,3044093],"delay":2043.2} +{"session_id":"sess-46c244b54221","input_length":5189,"output_length":190,"hash_ids":[3044094,3044095,3044096,3044097,3044098,3044099,3044100,3044101,3044102,3044103,3044104],"delay":911.2} +{"session_id":"sess-46c244b54221","input_length":268,"output_length":559,"hash_ids":[3044105],"delay":8478.5} +{"session_id":"sess-46c244b54221","input_length":9228,"output_length":30,"hash_ids":[3044106,3044107,3044108,3044109,3044110,3044111,3044112,3044113,3044114,3044115,3044116,3044117,3044118,3044119,3044120,3044121,3044122,3044123,3044124],"delay":2970.1} +{"session_id":"sess-46c244b54221","input_length":3142,"output_length":64,"hash_ids":[3044125,3044126,3044127,3044128,3044129,3044130,3044131],"delay":4768.4} +{"session_id":"sess-46c244b54221","input_length":626,"output_length":819,"hash_ids":[3044132,3044133],"delay":1489.2} +{"session_id":"sess-46c244b54221","input_length":261,"output_length":746,"hash_ids":[3044134],"delay":1145.7} +{"session_id":"sess-46c244b54221","input_length":737,"output_length":72,"hash_ids":[3044135,3044136],"delay":3496.4} +{"session_id":"sess-46c244b54221","input_length":1062,"output_length":312,"hash_ids":[3044137,3044138,3044139],"delay":448.2} +{"session_id":"sess-46c244b54221","input_length":1100,"output_length":423,"hash_ids":[3044140,3044141,3044142],"delay":559.4} +{"session_id":"sess-46c244b54221","input_length":1027,"output_length":246,"hash_ids":[3044143,3044144,3044145],"delay":10392.8} +{"session_id":"sess-46c244b54221","input_length":325,"output_length":43,"hash_ids":[3044146],"delay":544.1} +{"session_id":"sess-46c244b54221","input_length":1656,"output_length":238,"hash_ids":[3044147,3044148,3044149,3044150],"delay":208.0} +{"session_id":"sess-46c244b54221","input_length":774,"output_length":37,"hash_ids":[3044151,3044152],"delay":842.2} +{"session_id":"sess-46c244b54221","input_length":1204,"output_length":577,"hash_ids":[3044153,3044154,3044155],"delay":486.0} +{"session_id":"sess-46c244b54221","input_length":203,"output_length":719,"hash_ids":[3044156],"delay":19650.2} +{"session_id":"sess-46c244b54221","input_length":2789,"output_length":97,"hash_ids":[3044157,3044158,3044159,3044160,3044161,3044162],"delay":444.6} +{"session_id":"sess-46c244b54221","input_length":2230,"output_length":478,"hash_ids":[3044163,3044164,3044165,3044166,3044167],"delay":14868.2} +{"session_id":"sess-46c244b54221","input_length":275,"output_length":98,"hash_ids":[3044168],"delay":5209.4} +{"session_id":"sess-46c244b54221","input_length":3901,"output_length":763,"hash_ids":[3044169,3044170,3044171,3044172,3044173,3044174,3044175,3044176],"delay":419.3} +{"session_id":"sess-46c244b54221","input_length":1338,"output_length":856,"hash_ids":[3044177,3044178,3044179],"delay":2161.9} +{"session_id":"sess-46c244b54221","input_length":1234,"output_length":292,"hash_ids":[3044180,3044181,3044182],"delay":112.7} +{"session_id":"sess-46c244b54221","input_length":1399,"output_length":274,"hash_ids":[3044183,3044184,3044185],"delay":130.8} +{"session_id":"sess-46c244b54221","input_length":6035,"output_length":144,"hash_ids":[3044186,3044187,3044188,3044189,3044190,3044191,3044192,3044193,3044194,3044195,3044196,3044197],"delay":250.4} +{"session_id":"sess-46c244b54221","input_length":2548,"output_length":486,"hash_ids":[3044198,3044199,3044200,3044201,3044202],"delay":7234.7} +{"session_id":"sess-46c244b54221","input_length":544,"output_length":922,"hash_ids":[3044203,3044204],"delay":5302.7} +{"session_id":"sess-0ef3bc8f0b50","input_length":55740,"output_length":111,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3048063,3048064,3048065,3048066,3048067,3048068],"timestamp":0.0,"group_id":4} +{"session_id":"sess-0ef3bc8f0b50","input_length":494,"output_length":495,"hash_ids":[3048069],"delay":2622.4} +{"session_id":"sess-0ef3bc8f0b50","input_length":8720,"output_length":491,"hash_ids":[3048070,3048071,3048072,3048073,3048074,3048075,3048076,3048077,3048078,3048079,3048080,3048081,3048082,3048083,3048084,3048085,3048086,3048087],"delay":465.1} +{"session_id":"sess-0ef3bc8f0b50","input_length":3918,"output_length":320,"hash_ids":[3048088,3048089,3048090,3048091,3048092,3048093,3048094,3048095],"delay":242.0} +{"session_id":"sess-0ef3bc8f0b50","input_length":707,"output_length":76,"hash_ids":[3048096,3048097],"delay":287.6} +{"session_id":"sess-0ef3bc8f0b50","input_length":6106,"output_length":262,"hash_ids":[3048098,3048099,3048100,3048101,3048102,3048103,3048104,3048105,3048106,3048107,3048108,3048109],"delay":600.2} +{"session_id":"sess-0ef3bc8f0b50","input_length":9072,"output_length":105,"hash_ids":[3048110,3048111,3048112,3048113,3048114,3048115,3048116,3048117,3048118,3048119,3048120,3048121,3048122,3048123,3048124,3048125,3048126,3048127],"delay":1657.1} +{"session_id":"sess-0ef3bc8f0b50","input_length":3344,"output_length":664,"hash_ids":[3048128,3048129,3048130,3048131,3048132,3048133,3048134],"delay":649.1} +{"session_id":"sess-0ef3bc8f0b50","input_length":2202,"output_length":748,"hash_ids":[3048135,3048136,3048137,3048138,3048139],"delay":5586.2} +{"session_id":"sess-0ef3bc8f0b50","input_length":981,"output_length":651,"hash_ids":[3048140,3048141],"delay":2290.0} +{"session_id":"sess-0ef3bc8f0b50","input_length":355,"output_length":161,"hash_ids":[3048142],"delay":1758.5} +{"session_id":"sess-0ef3bc8f0b50","input_length":583,"output_length":147,"hash_ids":[3048143,3048144],"delay":19356.4} +{"session_id":"sess-0ef3bc8f0b50","input_length":255,"output_length":128,"hash_ids":[3048145],"delay":10363.1} +{"session_id":"sess-0ef3bc8f0b50","input_length":5021,"output_length":287,"hash_ids":[3048146,3048147,3048148,3048149,3048150,3048151,3048152,3048153,3048154,3048155],"delay":526.3} +{"session_id":"sess-0ef3bc8f0b50","input_length":2066,"output_length":2970,"hash_ids":[3048156,3048157,3048158,3048159,3048160],"delay":678.0} +{"session_id":"sess-0ef3bc8f0b50","input_length":361,"output_length":251,"hash_ids":[3048161],"delay":7720.8} +{"session_id":"sess-0ef3bc8f0b50","input_length":1150,"output_length":426,"hash_ids":[3048162,3048163,3048164],"delay":10283.4} +{"session_id":"sess-0ef3bc8f0b50","input_length":1528,"output_length":274,"hash_ids":[3048165,3048166,3048167],"delay":444.7} +{"session_id":"sess-0ef3bc8f0b50","input_length":565,"output_length":164,"hash_ids":[3048168,3048169],"delay":181.4} +{"session_id":"sess-0ef3bc8f0b50","input_length":751,"output_length":477,"hash_ids":[3048170,3048171],"delay":1619.7} +{"session_id":"sess-0ef3bc8f0b50","input_length":2527,"output_length":108,"hash_ids":[3048172,3048173,3048174,3048175,3048176],"delay":187.9} +{"session_id":"sess-0ef3bc8f0b50","input_length":700,"output_length":332,"hash_ids":[3048177,3048178],"delay":9867.9} +{"session_id":"sess-0ef3bc8f0b50","input_length":640,"output_length":1660,"hash_ids":[3048179,3048180],"delay":1542.0} +{"session_id":"sess-0ef3bc8f0b50","input_length":674,"output_length":232,"hash_ids":[3048181,3048182],"delay":77.1} +{"session_id":"sess-0ef3bc8f0b50","input_length":452,"output_length":342,"hash_ids":[3048183],"delay":352.2} +{"session_id":"sess-0ef3bc8f0b50","input_length":1301,"output_length":201,"hash_ids":[3048184,3048185,3048186],"delay":4999.4} +{"session_id":"sess-0ef3bc8f0b50","input_length":113,"output_length":98,"hash_ids":[3048187],"delay":279.3} +{"session_id":"sess-0ef3bc8f0b50","input_length":1784,"output_length":194,"hash_ids":[3048188,3048189,3048190,3048191],"delay":38.7} +{"session_id":"sess-0ef3bc8f0b50","input_length":469,"output_length":542,"hash_ids":[3048192],"delay":1541.5} +{"session_id":"sess-0ef3bc8f0b50","input_length":1492,"output_length":1279,"hash_ids":[3048193,3048194,3048195],"delay":2379.2} +{"session_id":"sess-0ef3bc8f0b50","input_length":364,"output_length":88,"hash_ids":[3048196],"delay":5055.3} +{"session_id":"sess-0ef3bc8f0b50","input_length":1943,"output_length":298,"hash_ids":[3048197,3048198,3048199,3048200],"delay":122.0} +{"session_id":"sess-e43f4a6d968c","input_length":55539,"output_length":383,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,3052063,3052064,3052065,3052066,3052067,3052068],"timestamp":0.0,"group_id":12} +{"session_id":"sess-e43f4a6d968c","input_length":1796,"output_length":1195,"hash_ids":[3052069,3052070,3052071,3052072],"delay":9575.0} +{"session_id":"sess-e43f4a6d968c","input_length":1367,"output_length":270,"hash_ids":[3052073,3052074,3052075],"delay":1236.0} +{"session_id":"sess-e43f4a6d968c","input_length":875,"output_length":215,"hash_ids":[3052076,3052077],"delay":5428.1} +{"session_id":"sess-e43f4a6d968c","input_length":1256,"output_length":149,"hash_ids":[3052078,3052079,3052080],"delay":934.3} +{"session_id":"sess-e43f4a6d968c","input_length":971,"output_length":957,"hash_ids":[3052081,3052082],"delay":3745.2} +{"session_id":"sess-791fe5bbe11f","input_length":52884,"output_length":806,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,3056063],"timestamp":0.0,"group_id":30} +{"session_id":"sess-791fe5bbe11f","input_length":482,"output_length":248,"hash_ids":[3056064],"delay":39194.1} +{"session_id":"sess-791fe5bbe11f","input_length":748,"output_length":842,"hash_ids":[3056065,3056066],"delay":1254.8} +{"session_id":"sess-791fe5bbe11f","input_length":415,"output_length":153,"hash_ids":[3056067],"delay":5348.5} +{"session_id":"sess-791fe5bbe11f","input_length":4050,"output_length":322,"hash_ids":[3056068,3056069,3056070,3056071,3056072,3056073,3056074,3056075],"delay":592.0} +{"session_id":"sess-791fe5bbe11f","input_length":1140,"output_length":43,"hash_ids":[3056076,3056077,3056078],"delay":32087.0} +{"session_id":"sess-791fe5bbe11f","input_length":4464,"output_length":113,"hash_ids":[3056079,3056080,3056081,3056082,3056083,3056084,3056085,3056086,3056087],"delay":1762.7} +{"session_id":"sess-791fe5bbe11f","input_length":1416,"output_length":30,"hash_ids":[3056088,3056089,3056090],"delay":42522.6} +{"session_id":"sess-791fe5bbe11f","input_length":847,"output_length":1592,"hash_ids":[3056091,3056092],"delay":4387.6} +{"session_id":"sess-791fe5bbe11f","input_length":508,"output_length":298,"hash_ids":[3056093],"delay":877.1} +{"session_id":"sess-791fe5bbe11f","input_length":807,"output_length":1468,"hash_ids":[3056094,3056095],"delay":806.8} +{"session_id":"sess-791fe5bbe11f","input_length":1613,"output_length":57,"hash_ids":[3056096,3056097,3056098,3056099],"delay":537.0} +{"session_id":"sess-791fe5bbe11f","input_length":6078,"output_length":394,"hash_ids":[3056100,3056101,3056102,3056103,3056104,3056105,3056106,3056107,3056108,3056109,3056110,3056111],"delay":1142.5} +{"session_id":"sess-01f7608c031d","input_length":66176,"output_length":34,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3060063,3060064,3060065,3060066,3060067,3060068,3060069,3060070,3060071,3060072,3060073,3060074,3060075,3060076,3060077,3060078,3060079,3060080,3060081,3060082,3060083,3060084,3060085,3060086,3060087,3060088,3060089],"timestamp":0.0,"group_id":1} +{"session_id":"sess-01f7608c031d","input_length":3377,"output_length":165,"hash_ids":[3060090,3060091,3060092,3060093,3060094,3060095,3060096],"delay":3921.5} +{"session_id":"sess-01f7608c031d","input_length":781,"output_length":800,"hash_ids":[3060097,3060098],"delay":8942.3} +{"session_id":"sess-01f7608c031d","input_length":3574,"output_length":836,"hash_ids":[3060099,3060100,3060101,3060102,3060103,3060104,3060105],"delay":1455.6} +{"session_id":"sess-c3d36bd5823c","input_length":55274,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,3064063,3064064,3064065,3064066,3064067],"timestamp":0.0,"group_id":22} +{"session_id":"sess-c3d36bd5823c","input_length":3407,"output_length":478,"hash_ids":[3064068,3064069,3064070,3064071,3064072,3064073,3064074],"delay":1817.0} +{"session_id":"sess-c3d36bd5823c","input_length":543,"output_length":296,"hash_ids":[3064075,3064076],"delay":36402.7} +{"session_id":"sess-c3d36bd5823c","input_length":1411,"output_length":181,"hash_ids":[3064077,3064078,3064079],"delay":8209.6} +{"session_id":"sess-c3d36bd5823c","input_length":1325,"output_length":138,"hash_ids":[3064080,3064081,3064082],"delay":3605.8} +{"session_id":"sess-c3d36bd5823c","input_length":2908,"output_length":771,"hash_ids":[3064083,3064084,3064085,3064086,3064087,3064088],"delay":2720.9} +{"session_id":"sess-c3d36bd5823c","input_length":1811,"output_length":413,"hash_ids":[3064089,3064090,3064091,3064092],"delay":568.2} +{"session_id":"sess-c3d36bd5823c","input_length":561,"output_length":228,"hash_ids":[3064093,3064094],"delay":752.2} +{"session_id":"sess-c3d36bd5823c","input_length":605,"output_length":159,"hash_ids":[3064095,3064096],"delay":29338.9} +{"session_id":"sess-c3d36bd5823c","input_length":5286,"output_length":392,"hash_ids":[3064097,3064098,3064099,3064100,3064101,3064102,3064103,3064104,3064105,3064106,3064107],"delay":9493.6} +{"session_id":"sess-c3d36bd5823c","input_length":748,"output_length":397,"hash_ids":[3064108,3064109],"delay":34816.7} +{"session_id":"sess-c3d36bd5823c","input_length":2985,"output_length":613,"hash_ids":[3064110,3064111,3064112,3064113,3064114,3064115],"delay":622.8} +{"session_id":"sess-fe034d8abff8","input_length":53548,"output_length":523,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3068063,3068064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-fe034d8abff8","input_length":1635,"output_length":477,"hash_ids":[3068065,3068066,3068067,3068068],"delay":312.4} +{"session_id":"sess-2823d5c78209","input_length":56115,"output_length":520,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3072063,3072064,3072065,3072066,3072067,3072068,3072069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb4141770d88","input_length":61351,"output_length":220,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3076063,3076064,3076065,3076066,3076067,3076068,3076069,3076070,3076071,3076072,3076073,3076074,3076075,3076076,3076077,3076078,3076079],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb4141770d88","input_length":6221,"output_length":665,"hash_ids":[3076080,3076081,3076082,3076083,3076084,3076085,3076086,3076087,3076088,3076089,3076090,3076091,3076092],"delay":5211.2} +{"session_id":"sess-fb4141770d88","input_length":4400,"output_length":44,"hash_ids":[3076093,3076094,3076095,3076096,3076097,3076098,3076099,3076100,3076101],"delay":407.3} +{"session_id":"sess-fb4141770d88","input_length":5403,"output_length":67,"hash_ids":[3076102,3076103,3076104,3076105,3076106,3076107,3076108,3076109,3076110,3076111,3076112],"delay":408.9} +{"session_id":"sess-fb4141770d88","input_length":4838,"output_length":314,"hash_ids":[3076113,3076114,3076115,3076116,3076117,3076118,3076119,3076120,3076121,3076122],"delay":405.9} +{"session_id":"sess-fb4141770d88","input_length":1433,"output_length":405,"hash_ids":[3076123,3076124,3076125],"delay":434.9} +{"session_id":"sess-fb4141770d88","input_length":884,"output_length":795,"hash_ids":[3076126,3076127],"delay":646.8} +{"session_id":"sess-fb4141770d88","input_length":1348,"output_length":356,"hash_ids":[3076128,3076129,3076130],"delay":250.5} +{"session_id":"sess-fb4141770d88","input_length":260,"output_length":240,"hash_ids":[3076131],"delay":35046.5} +{"session_id":"sess-fb4141770d88","input_length":9534,"output_length":1104,"hash_ids":[3076132,3076133,3076134,3076135,3076136,3076137,3076138,3076139,3076140,3076141,3076142,3076143,3076144,3076145,3076146,3076147,3076148,3076149,3076150],"delay":1088.7} +{"session_id":"sess-fb4141770d88","input_length":653,"output_length":286,"hash_ids":[3076151,3076152],"delay":1015.0} +{"session_id":"sess-fb4141770d88","input_length":1072,"output_length":136,"hash_ids":[3076153,3076154,3076155],"delay":1558.1} +{"session_id":"sess-fb4141770d88","input_length":641,"output_length":392,"hash_ids":[3076156,3076157],"delay":336.1} +{"session_id":"sess-fb4141770d88","input_length":323,"output_length":210,"hash_ids":[3076158],"delay":90.7} +{"session_id":"sess-fb4141770d88","input_length":1045,"output_length":79,"hash_ids":[3076159,3076160,3076161],"delay":457.8} +{"session_id":"sess-fb4141770d88","input_length":2476,"output_length":259,"hash_ids":[3076162,3076163,3076164,3076165,3076166],"delay":254.9} +{"session_id":"sess-fb4141770d88","input_length":3448,"output_length":30,"hash_ids":[3076167,3076168,3076169,3076170,3076171,3076172,3076173],"delay":3249.5} +{"session_id":"sess-a6af3decb0bc","input_length":58444,"output_length":422,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3080063,3080064,3080065,3080066,3080067,3080068,3080069,3080070,3080071,3080072,3080073,3080074],"timestamp":0.0,"group_id":3} +{"session_id":"sess-a6af3decb0bc","input_length":650,"output_length":1560,"hash_ids":[3080075,3080076],"delay":15416.1} +{"session_id":"sess-a6af3decb0bc","input_length":331,"output_length":218,"hash_ids":[3080077],"delay":2452.3} +{"session_id":"sess-a6af3decb0bc","input_length":6086,"output_length":159,"hash_ids":[3080078,3080079,3080080,3080081,3080082,3080083,3080084,3080085,3080086,3080087,3080088,3080089],"delay":845.3} +{"session_id":"sess-a6af3decb0bc","input_length":2973,"output_length":347,"hash_ids":[3080090,3080091,3080092,3080093,3080094,3080095],"delay":382.4} +{"session_id":"sess-a6af3decb0bc","input_length":8531,"output_length":960,"hash_ids":[3080096,3080097,3080098,3080099,3080100,3080101,3080102,3080103,3080104,3080105,3080106,3080107,3080108,3080109,3080110,3080111,3080112],"delay":1740.1} +{"session_id":"sess-a6af3decb0bc","input_length":732,"output_length":877,"hash_ids":[3080113,3080114],"delay":518.5} +{"session_id":"sess-a6af3decb0bc","input_length":1150,"output_length":122,"hash_ids":[3080115,3080116,3080117],"delay":186.7} +{"session_id":"sess-a6af3decb0bc","input_length":2184,"output_length":494,"hash_ids":[3080118,3080119,3080120,3080121,3080122],"delay":511.8} +{"session_id":"sess-a6af3decb0bc","input_length":1322,"output_length":140,"hash_ids":[3080123,3080124,3080125],"delay":425.2} +{"session_id":"sess-a6af3decb0bc","input_length":3139,"output_length":1940,"hash_ids":[3080126,3080127,3080128,3080129,3080130,3080131,3080132],"delay":1075.8} +{"session_id":"sess-a6af3decb0bc","input_length":553,"output_length":314,"hash_ids":[3080133,3080134],"delay":537.2} +{"session_id":"sess-a6af3decb0bc","input_length":3732,"output_length":411,"hash_ids":[3080135,3080136,3080137,3080138,3080139,3080140,3080141,3080142],"delay":792.6} +{"session_id":"sess-a6af3decb0bc","input_length":3959,"output_length":357,"hash_ids":[3080143,3080144,3080145,3080146,3080147,3080148,3080149,3080150],"delay":111.6} +{"session_id":"sess-a6af3decb0bc","input_length":668,"output_length":299,"hash_ids":[3080151,3080152],"delay":2071.3} +{"session_id":"sess-a6af3decb0bc","input_length":2450,"output_length":137,"hash_ids":[3080153,3080154,3080155,3080156,3080157],"delay":865.9} +{"session_id":"sess-a6af3decb0bc","input_length":709,"output_length":223,"hash_ids":[3080158,3080159],"delay":2082.0} +{"session_id":"sess-a6af3decb0bc","input_length":831,"output_length":370,"hash_ids":[3080160,3080161],"delay":506.3} +{"session_id":"sess-a6af3decb0bc","input_length":2712,"output_length":631,"hash_ids":[3080162,3080163,3080164,3080165,3080166,3080167],"delay":804.2} +{"session_id":"sess-a6af3decb0bc","input_length":939,"output_length":83,"hash_ids":[3080168,3080169],"delay":1395.5} +{"session_id":"sess-a6af3decb0bc","input_length":192,"output_length":197,"hash_ids":[3080170],"delay":449.8} +{"session_id":"sess-a6af3decb0bc","input_length":2050,"output_length":70,"hash_ids":[3080171,3080172,3080173,3080174,3080175],"delay":1081.6} +{"session_id":"sess-a6af3decb0bc","input_length":2773,"output_length":838,"hash_ids":[3080176,3080177,3080178,3080179,3080180,3080181],"delay":309.3} +{"session_id":"sess-a6af3decb0bc","input_length":611,"output_length":158,"hash_ids":[3080182,3080183],"delay":12366.9} +{"session_id":"sess-a6af3decb0bc","input_length":620,"output_length":50,"hash_ids":[3080184,3080185],"delay":688.6} +{"session_id":"sess-a6af3decb0bc","input_length":5730,"output_length":240,"hash_ids":[3080186,3080187,3080188,3080189,3080190,3080191,3080192,3080193,3080194,3080195,3080196,3080197],"delay":141.4} +{"session_id":"sess-a6af3decb0bc","input_length":830,"output_length":160,"hash_ids":[3080198,3080199],"delay":3685.2} +{"session_id":"sess-a6af3decb0bc","input_length":2661,"output_length":402,"hash_ids":[3080200,3080201,3080202,3080203,3080204,3080205],"delay":261.5} +{"session_id":"sess-d43a9e857050","input_length":55353,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3084063,3084064,3084065,3084066,3084067,3084068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d43a9e857050","input_length":593,"output_length":129,"hash_ids":[3084069,3084070],"delay":1363.7} +{"session_id":"sess-d43a9e857050","input_length":2893,"output_length":394,"hash_ids":[3084071,3084072,3084073,3084074,3084075,3084076],"delay":2136.2} +{"session_id":"sess-d43a9e857050","input_length":2766,"output_length":271,"hash_ids":[3084077,3084078,3084079,3084080,3084081,3084082],"delay":961.9} +{"session_id":"sess-d43a9e857050","input_length":4468,"output_length":44,"hash_ids":[3084083,3084084,3084085,3084086,3084087,3084088,3084089,3084090,3084091],"delay":653.2} +{"session_id":"sess-d43a9e857050","input_length":1200,"output_length":164,"hash_ids":[3084092,3084093,3084094],"delay":796.3} +{"session_id":"sess-d43a9e857050","input_length":1128,"output_length":721,"hash_ids":[3084095,3084096,3084097],"delay":262.2} +{"session_id":"sess-d43a9e857050","input_length":2898,"output_length":160,"hash_ids":[3084098,3084099,3084100,3084101,3084102,3084103],"delay":3670.1} +{"session_id":"sess-5e7a169ed732","input_length":54723,"output_length":990,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3088063,3088064,3088065,3088066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5e7a169ed732","input_length":1827,"output_length":318,"hash_ids":[3088067,3088068,3088069,3088070],"delay":901.5} +{"session_id":"sess-5e7a169ed732","input_length":1698,"output_length":82,"hash_ids":[3088071,3088072,3088073,3088074],"delay":6939.7} +{"session_id":"sess-5e7a169ed732","input_length":4243,"output_length":107,"hash_ids":[3088075,3088076,3088077,3088078,3088079,3088080,3088081,3088082,3088083],"delay":57994.8} +{"session_id":"sess-5e7a169ed732","input_length":2757,"output_length":62,"hash_ids":[3088084,3088085,3088086,3088087,3088088,3088089],"delay":5155.1} +{"session_id":"sess-5e7a169ed732","input_length":176,"output_length":539,"hash_ids":[3088090],"delay":553.2} +{"session_id":"sess-5e7a169ed732","input_length":902,"output_length":2992,"hash_ids":[3088091,3088092],"delay":632.8} +{"session_id":"sess-5e7a169ed732","input_length":392,"output_length":541,"hash_ids":[3088093],"delay":436.2} +{"session_id":"sess-5e7a169ed732","input_length":1914,"output_length":319,"hash_ids":[3088094,3088095,3088096,3088097],"delay":1415.0} +{"session_id":"sess-5e7a169ed732","input_length":1282,"output_length":152,"hash_ids":[3088098,3088099,3088100],"delay":933.4} +{"session_id":"sess-5e7a169ed732","input_length":1609,"output_length":391,"hash_ids":[3088101,3088102,3088103,3088104],"delay":853.5} +{"session_id":"sess-5e7a169ed732","input_length":3688,"output_length":95,"hash_ids":[3088105,3088106,3088107,3088108,3088109,3088110,3088111,3088112],"delay":3766.0} +{"session_id":"sess-5e7a169ed732","input_length":1280,"output_length":334,"hash_ids":[3088113,3088114,3088115],"delay":3160.2} +{"session_id":"sess-577e69d0ffca","input_length":65229,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,3092063,3092064,3092065,3092066,3092067,3092068,3092069,3092070,3092071,3092072,3092073,3092074,3092075,3092076,3092077,3092078,3092079,3092080,3092081,3092082,3092083,3092084,3092085,3092086,3092087],"timestamp":0.0,"group_id":13} +{"session_id":"sess-577e69d0ffca","input_length":3749,"output_length":421,"hash_ids":[3092088,3092089,3092090,3092091,3092092,3092093,3092094,3092095],"delay":1866.4} +{"session_id":"sess-577e69d0ffca","input_length":991,"output_length":443,"hash_ids":[3092096,3092097],"delay":2381.7} +{"session_id":"sess-577e69d0ffca","input_length":2871,"output_length":633,"hash_ids":[3092098,3092099,3092100,3092101,3092102,3092103],"delay":462.0} +{"session_id":"sess-577e69d0ffca","input_length":6049,"output_length":486,"hash_ids":[3092104,3092105,3092106,3092107,3092108,3092109,3092110,3092111,3092112,3092113,3092114,3092115],"delay":8262.6} +{"session_id":"sess-577e69d0ffca","input_length":1502,"output_length":189,"hash_ids":[3092116,3092117,3092118],"delay":374.5} +{"session_id":"sess-577e69d0ffca","input_length":2803,"output_length":45,"hash_ids":[3092119,3092120,3092121,3092122,3092123,3092124],"delay":696.0} +{"session_id":"sess-577e69d0ffca","input_length":1632,"output_length":204,"hash_ids":[3092125,3092126,3092127,3092128],"delay":900.3} +{"session_id":"sess-577e69d0ffca","input_length":586,"output_length":315,"hash_ids":[3092129,3092130],"delay":1293.2} +{"session_id":"sess-577e69d0ffca","input_length":2475,"output_length":444,"hash_ids":[3092131,3092132,3092133,3092134,3092135],"delay":809.7} +{"session_id":"sess-577e69d0ffca","input_length":579,"output_length":185,"hash_ids":[3092136,3092137],"delay":14656.8} +{"session_id":"sess-577e69d0ffca","input_length":3861,"output_length":2188,"hash_ids":[3092138,3092139,3092140,3092141,3092142,3092143,3092144,3092145],"delay":460.4} +{"session_id":"sess-577e69d0ffca","input_length":1356,"output_length":110,"hash_ids":[3092146,3092147,3092148],"delay":1990.9} +{"session_id":"sess-577e69d0ffca","input_length":1579,"output_length":841,"hash_ids":[3092149,3092150,3092151,3092152],"delay":8304.2} +{"session_id":"sess-577e69d0ffca","input_length":1073,"output_length":287,"hash_ids":[3092153,3092154,3092155],"delay":720.2} +{"session_id":"sess-577e69d0ffca","input_length":3385,"output_length":357,"hash_ids":[3092156,3092157,3092158,3092159,3092160,3092161,3092162],"delay":836.6} +{"session_id":"sess-577e69d0ffca","input_length":3421,"output_length":115,"hash_ids":[3092163,3092164,3092165,3092166,3092167,3092168,3092169],"delay":321.5} +{"session_id":"sess-577e69d0ffca","input_length":6701,"output_length":114,"hash_ids":[3092170,3092171,3092172,3092173,3092174,3092175,3092176,3092177,3092178,3092179,3092180,3092181,3092182,3092183],"delay":3309.1} +{"session_id":"sess-577e69d0ffca","input_length":464,"output_length":115,"hash_ids":[3092184],"delay":340.7} +{"session_id":"sess-577e69d0ffca","input_length":262,"output_length":944,"hash_ids":[3092185],"delay":555.3} +{"session_id":"sess-577e69d0ffca","input_length":6300,"output_length":187,"hash_ids":[3092186,3092187,3092188,3092189,3092190,3092191,3092192,3092193,3092194,3092195,3092196,3092197,3092198],"delay":9544.3} +{"session_id":"sess-577e69d0ffca","input_length":301,"output_length":201,"hash_ids":[3092199],"delay":444.7} +{"session_id":"sess-577e69d0ffca","input_length":736,"output_length":471,"hash_ids":[3092200,3092201],"delay":1021.9} +{"session_id":"sess-577e69d0ffca","input_length":752,"output_length":213,"hash_ids":[3092202,3092203],"delay":364.7} +{"session_id":"sess-1bc07babf520","input_length":54704,"output_length":385,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,3096063,3096064,3096065,3096066],"timestamp":0.0,"group_id":31} +{"session_id":"sess-1bc07babf520","input_length":1834,"output_length":407,"hash_ids":[3096067,3096068,3096069,3096070],"delay":3883.4} +{"session_id":"sess-1bc07babf520","input_length":1460,"output_length":114,"hash_ids":[3096071,3096072,3096073],"delay":9070.0} +{"session_id":"sess-1bc07babf520","input_length":697,"output_length":191,"hash_ids":[3096074,3096075],"delay":2982.0} +{"session_id":"sess-1bc07babf520","input_length":6849,"output_length":129,"hash_ids":[3096076,3096077,3096078,3096079,3096080,3096081,3096082,3096083,3096084,3096085,3096086,3096087,3096088,3096089],"delay":296.7} +{"session_id":"sess-1bc07babf520","input_length":921,"output_length":577,"hash_ids":[3096090,3096091],"delay":624.8} +{"session_id":"sess-1bc07babf520","input_length":627,"output_length":301,"hash_ids":[3096092,3096093],"delay":381.1} +{"session_id":"sess-1bc07babf520","input_length":1931,"output_length":416,"hash_ids":[3096094,3096095,3096096,3096097],"delay":6771.4} +{"session_id":"sess-1bc07babf520","input_length":1600,"output_length":575,"hash_ids":[3096098,3096099,3096100,3096101],"delay":972.5} +{"session_id":"sess-1bc07babf520","input_length":4947,"output_length":1262,"hash_ids":[3096102,3096103,3096104,3096105,3096106,3096107,3096108,3096109,3096110,3096111],"delay":5520.9} +{"session_id":"sess-1bc07babf520","input_length":3408,"output_length":105,"hash_ids":[3096112,3096113,3096114,3096115,3096116,3096117,3096118],"delay":5665.0} +{"session_id":"sess-1bc07babf520","input_length":750,"output_length":124,"hash_ids":[3096119,3096120],"delay":635.7} +{"session_id":"sess-1bc07babf520","input_length":1521,"output_length":384,"hash_ids":[3096121,3096122,3096123],"delay":1752.2} +{"session_id":"sess-1bc07babf520","input_length":712,"output_length":134,"hash_ids":[3096124,3096125],"delay":129.9} +{"session_id":"sess-1bc07babf520","input_length":844,"output_length":642,"hash_ids":[3096126,3096127],"delay":9717.6} +{"session_id":"sess-1bc07babf520","input_length":2685,"output_length":351,"hash_ids":[3096128,3096129,3096130,3096131,3096132,3096133],"delay":304.8} +{"session_id":"sess-1bc07babf520","input_length":281,"output_length":320,"hash_ids":[3096134],"delay":10592.7} +{"session_id":"sess-1bc07babf520","input_length":2618,"output_length":86,"hash_ids":[3096135,3096136,3096137,3096138,3096139,3096140],"delay":406.5} +{"session_id":"sess-1bc07babf520","input_length":1083,"output_length":323,"hash_ids":[3096141,3096142,3096143],"delay":711.1} +{"session_id":"sess-1bc07babf520","input_length":2378,"output_length":1940,"hash_ids":[3096144,3096145,3096146,3096147,3096148],"delay":16981.0} +{"session_id":"sess-1bc07babf520","input_length":389,"output_length":74,"hash_ids":[3096149],"delay":1016.3} +{"session_id":"sess-1bc07babf520","input_length":3203,"output_length":297,"hash_ids":[3096150,3096151,3096152,3096153,3096154,3096155,3096156],"delay":504.4} +{"session_id":"sess-1bc07babf520","input_length":425,"output_length":124,"hash_ids":[3096157],"delay":2757.0} +{"session_id":"sess-1bc07babf520","input_length":529,"output_length":161,"hash_ids":[3096158,3096159],"delay":429.5} +{"session_id":"sess-1bc07babf520","input_length":1803,"output_length":689,"hash_ids":[3096160,3096161,3096162,3096163],"delay":1298.7} +{"session_id":"sess-1bc07babf520","input_length":1002,"output_length":445,"hash_ids":[3096164,3096165],"delay":1640.8} +{"session_id":"sess-1bc07babf520","input_length":852,"output_length":196,"hash_ids":[3096166,3096167],"delay":446.6} +{"session_id":"sess-1bc07babf520","input_length":4896,"output_length":956,"hash_ids":[3096168,3096169,3096170,3096171,3096172,3096173,3096174,3096175,3096176,3096177],"delay":2034.3} +{"session_id":"sess-1bc07babf520","input_length":470,"output_length":413,"hash_ids":[3096178],"delay":1402.8} +{"session_id":"sess-1bc07babf520","input_length":1308,"output_length":1077,"hash_ids":[3096179,3096180,3096181],"delay":5235.7} +{"session_id":"sess-1bc07babf520","input_length":9563,"output_length":428,"hash_ids":[3096182,3096183,3096184,3096185,3096186,3096187,3096188,3096189,3096190,3096191,3096192,3096193,3096194,3096195,3096196,3096197,3096198,3096199,3096200],"delay":1395.9} +{"session_id":"sess-8ca29fe1d92e","input_length":68071,"output_length":493,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3100063,3100064,3100065,3100066,3100067,3100068,3100069,3100070,3100071,3100072,3100073,3100074,3100075,3100076,3100077,3100078,3100079,3100080,3100081,3100082,3100083,3100084,3100085,3100086,3100087,3100088,3100089,3100090,3100091,3100092],"timestamp":0.0,"group_id":6} +{"session_id":"sess-8ca29fe1d92e","input_length":3308,"output_length":395,"hash_ids":[3100093,3100094,3100095,3100096,3100097,3100098,3100099],"delay":18687.2} +{"session_id":"sess-8ca29fe1d92e","input_length":4666,"output_length":423,"hash_ids":[3100100,3100101,3100102,3100103,3100104,3100105,3100106,3100107,3100108,3100109],"delay":5459.9} +{"session_id":"sess-8ca29fe1d92e","input_length":402,"output_length":124,"hash_ids":[3100110],"delay":601.9} +{"session_id":"sess-8ca29fe1d92e","input_length":1463,"output_length":464,"hash_ids":[3100111,3100112,3100113],"delay":2455.8} +{"session_id":"sess-8ca29fe1d92e","input_length":341,"output_length":235,"hash_ids":[3100114],"delay":525.4} +{"session_id":"sess-8ca29fe1d92e","input_length":551,"output_length":64,"hash_ids":[3100115,3100116],"delay":2305.0} +{"session_id":"sess-8ca29fe1d92e","input_length":727,"output_length":303,"hash_ids":[3100117,3100118],"delay":12454.1} +{"session_id":"sess-8ca29fe1d92e","input_length":3015,"output_length":259,"hash_ids":[3100119,3100120,3100121,3100122,3100123,3100124],"delay":477.7} +{"session_id":"sess-8ca29fe1d92e","input_length":2758,"output_length":69,"hash_ids":[3100125,3100126,3100127,3100128,3100129,3100130],"delay":421.0} +{"session_id":"sess-8ca29fe1d92e","input_length":1865,"output_length":181,"hash_ids":[3100131,3100132,3100133,3100134],"delay":10353.9} +{"session_id":"sess-8ca29fe1d92e","input_length":2371,"output_length":138,"hash_ids":[3100135,3100136,3100137,3100138,3100139],"delay":421.6} +{"session_id":"sess-8ca29fe1d92e","input_length":917,"output_length":80,"hash_ids":[3100140,3100141],"delay":1556.3} +{"session_id":"sess-8ca29fe1d92e","input_length":1508,"output_length":195,"hash_ids":[3100142,3100143,3100144],"delay":5567.0} +{"session_id":"sess-8ca29fe1d92e","input_length":1121,"output_length":324,"hash_ids":[3100145,3100146,3100147],"delay":1564.7} +{"session_id":"sess-8ca29fe1d92e","input_length":2326,"output_length":152,"hash_ids":[3100148,3100149,3100150,3100151,3100152],"delay":409.2} +{"session_id":"sess-8ca29fe1d92e","input_length":4846,"output_length":668,"hash_ids":[3100153,3100154,3100155,3100156,3100157,3100158,3100159,3100160,3100161,3100162],"delay":11560.2} +{"session_id":"sess-8ca29fe1d92e","input_length":421,"output_length":302,"hash_ids":[3100163],"delay":1687.4} +{"session_id":"sess-8ca29fe1d92e","input_length":616,"output_length":708,"hash_ids":[3100164,3100165],"delay":8194.1} +{"session_id":"sess-8ca29fe1d92e","input_length":1710,"output_length":797,"hash_ids":[3100166,3100167,3100168,3100169],"delay":24143.0} +{"session_id":"sess-ed46acff4dc1","input_length":53227,"output_length":1049,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3104063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ed46acff4dc1","input_length":567,"output_length":318,"hash_ids":[3104064,3104065],"delay":3709.7} +{"session_id":"sess-a0210cc95b03","input_length":56197,"output_length":507,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3108063,3108064,3108065,3108066,3108067,3108068,3108069],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a0210cc95b03","input_length":1206,"output_length":2494,"hash_ids":[3108070,3108071,3108072],"delay":2814.5} +{"session_id":"sess-a0210cc95b03","input_length":4353,"output_length":53,"hash_ids":[3108073,3108074,3108075,3108076,3108077,3108078,3108079,3108080,3108081],"delay":14882.3} +{"session_id":"sess-a0210cc95b03","input_length":2267,"output_length":314,"hash_ids":[3108082,3108083,3108084,3108085,3108086],"delay":1860.6} +{"session_id":"sess-a0210cc95b03","input_length":1527,"output_length":305,"hash_ids":[3108087,3108088,3108089],"delay":41490.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":53942,"output_length":365,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,3112063,3112064,3112065],"timestamp":0.0,"group_id":36} +{"session_id":"sess-9ecaeb1afd6c","input_length":1715,"output_length":250,"hash_ids":[3112066,3112067,3112068,3112069],"delay":30900.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":2056,"output_length":2055,"hash_ids":[3112070,3112071,3112072,3112073,3112074],"delay":402.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":525,"output_length":48,"hash_ids":[3112075,3112076],"delay":1100.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":3208,"output_length":140,"hash_ids":[3112077,3112078,3112079,3112080,3112081,3112082,3112083],"delay":588.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":7499,"output_length":193,"hash_ids":[3112084,3112085,3112086,3112087,3112088,3112089,3112090,3112091,3112092,3112093,3112094,3112095,3112096,3112097,3112098],"delay":890.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":752,"output_length":381,"hash_ids":[3112099,3112100],"delay":3121.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":975,"output_length":328,"hash_ids":[3112101,3112102],"delay":13369.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":2078,"output_length":799,"hash_ids":[3112103,3112104,3112105,3112106,3112107],"delay":3851.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":274,"output_length":157,"hash_ids":[3112108],"delay":1082.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":199,"output_length":481,"hash_ids":[3112109],"delay":477.4} +{"session_id":"sess-9ecaeb1afd6c","input_length":235,"output_length":68,"hash_ids":[3112110],"delay":668.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":706,"output_length":196,"hash_ids":[3112111,3112112],"delay":4897.1} +{"session_id":"sess-9ecaeb1afd6c","input_length":714,"output_length":521,"hash_ids":[3112113,3112114],"delay":1004.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":1804,"output_length":80,"hash_ids":[3112115,3112116,3112117,3112118],"delay":17752.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":991,"output_length":422,"hash_ids":[3112119,3112120],"delay":2356.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":1408,"output_length":1765,"hash_ids":[3112121,3112122,3112123],"delay":830.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":3251,"output_length":202,"hash_ids":[3112124,3112125,3112126,3112127,3112128,3112129,3112130],"delay":22525.1} +{"session_id":"sess-9ecaeb1afd6c","input_length":987,"output_length":245,"hash_ids":[3112131,3112132],"delay":471.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":844,"output_length":556,"hash_ids":[3112133,3112134],"delay":2473.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":1543,"output_length":258,"hash_ids":[3112135,3112136,3112137,3112138],"delay":1708.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":2070,"output_length":174,"hash_ids":[3112139,3112140,3112141,3112142,3112143],"delay":273.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":790,"output_length":527,"hash_ids":[3112144,3112145],"delay":1116.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":984,"output_length":142,"hash_ids":[3112146,3112147],"delay":1298.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":654,"output_length":642,"hash_ids":[3112148,3112149],"delay":20839.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":1215,"output_length":191,"hash_ids":[3112150,3112151,3112152],"delay":843.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":4198,"output_length":390,"hash_ids":[3112153,3112154,3112155,3112156,3112157,3112158,3112159,3112160,3112161],"delay":978.4} +{"session_id":"sess-9ecaeb1afd6c","input_length":682,"output_length":268,"hash_ids":[3112162,3112163],"delay":315.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":1573,"output_length":361,"hash_ids":[3112164,3112165,3112166,3112167],"delay":37532.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":4456,"output_length":1111,"hash_ids":[3112168,3112169,3112170,3112171,3112172,3112173,3112174,3112175,3112176],"delay":12553.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":1481,"output_length":258,"hash_ids":[3112177,3112178,3112179],"delay":340.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":2322,"output_length":54,"hash_ids":[3112180,3112181,3112182,3112183,3112184],"delay":185.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":2051,"output_length":49,"hash_ids":[3112185,3112186,3112187,3112188,3112189],"delay":4174.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":659,"output_length":258,"hash_ids":[3112190,3112191],"delay":4168.4} +{"session_id":"sess-9ecaeb1afd6c","input_length":1742,"output_length":676,"hash_ids":[3112192,3112193,3112194,3112195],"delay":190.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":1709,"output_length":1088,"hash_ids":[3112196,3112197,3112198,3112199],"delay":1804.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":788,"output_length":839,"hash_ids":[3112200,3112201],"delay":7420.7} +{"session_id":"sess-a7eb27b48cc5","input_length":53650,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3116063,3116064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a7eb27b48cc5","input_length":250,"output_length":1511,"hash_ids":[3116065],"delay":2501.8} +{"session_id":"sess-a7eb27b48cc5","input_length":1167,"output_length":130,"hash_ids":[3116066,3116067,3116068],"delay":1019.6} +{"session_id":"sess-a7eb27b48cc5","input_length":901,"output_length":704,"hash_ids":[3116069,3116070],"delay":36384.5} +{"session_id":"sess-a7eb27b48cc5","input_length":399,"output_length":884,"hash_ids":[3116071],"delay":249.6} +{"session_id":"sess-a7eb27b48cc5","input_length":1499,"output_length":459,"hash_ids":[3116072,3116073,3116074],"delay":232.4} +{"session_id":"sess-a7eb27b48cc5","input_length":605,"output_length":507,"hash_ids":[3116075,3116076],"delay":6978.0} +{"session_id":"sess-a7eb27b48cc5","input_length":7366,"output_length":99,"hash_ids":[3116077,3116078,3116079,3116080,3116081,3116082,3116083,3116084,3116085,3116086,3116087,3116088,3116089,3116090,3116091],"delay":69787.8} +{"session_id":"sess-a7eb27b48cc5","input_length":4467,"output_length":693,"hash_ids":[3116092,3116093,3116094,3116095,3116096,3116097,3116098,3116099,3116100],"delay":5293.9} +{"session_id":"sess-a7eb27b48cc5","input_length":4037,"output_length":147,"hash_ids":[3116101,3116102,3116103,3116104,3116105,3116106,3116107,3116108],"delay":6051.4} +{"session_id":"sess-a7eb27b48cc5","input_length":192,"output_length":2557,"hash_ids":[3116109],"delay":4341.3} +{"session_id":"sess-a7eb27b48cc5","input_length":681,"output_length":166,"hash_ids":[3116110,3116111],"delay":24566.6} +{"session_id":"sess-a7eb27b48cc5","input_length":4620,"output_length":523,"hash_ids":[3116112,3116113,3116114,3116115,3116116,3116117,3116118,3116119,3116120,3116121],"delay":828.3} +{"session_id":"sess-a7eb27b48cc5","input_length":1557,"output_length":181,"hash_ids":[3116122,3116123,3116124,3116125],"delay":8582.6} +{"session_id":"sess-a7eb27b48cc5","input_length":732,"output_length":48,"hash_ids":[3116126,3116127],"delay":1693.9} +{"session_id":"sess-a7eb27b48cc5","input_length":4042,"output_length":148,"hash_ids":[3116128,3116129,3116130,3116131,3116132,3116133,3116134,3116135],"delay":3958.1} +{"session_id":"sess-714f91a33278","input_length":53293,"output_length":1316,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,3120063,3120064],"timestamp":0.0,"group_id":9} +{"session_id":"sess-714f91a33278","input_length":1317,"output_length":1069,"hash_ids":[3120065,3120066,3120067],"delay":389.0} +{"session_id":"sess-714f91a33278","input_length":5936,"output_length":390,"hash_ids":[3120068,3120069,3120070,3120071,3120072,3120073,3120074,3120075,3120076,3120077,3120078,3120079],"delay":1567.5} +{"session_id":"sess-714f91a33278","input_length":2017,"output_length":54,"hash_ids":[3120080,3120081,3120082,3120083],"delay":14233.6} +{"session_id":"sess-714f91a33278","input_length":2223,"output_length":92,"hash_ids":[3120084,3120085,3120086,3120087,3120088],"delay":1355.4} +{"session_id":"sess-714f91a33278","input_length":7211,"output_length":1424,"hash_ids":[3120089,3120090,3120091,3120092,3120093,3120094,3120095,3120096,3120097,3120098,3120099,3120100,3120101,3120102,3120103],"delay":966.0} +{"session_id":"sess-714f91a33278","input_length":4821,"output_length":86,"hash_ids":[3120104,3120105,3120106,3120107,3120108,3120109,3120110,3120111,3120112,3120113],"delay":4545.2} +{"session_id":"sess-714f91a33278","input_length":2184,"output_length":160,"hash_ids":[3120114,3120115,3120116,3120117,3120118],"delay":14812.6} +{"session_id":"sess-714f91a33278","input_length":683,"output_length":411,"hash_ids":[3120119,3120120],"delay":27688.2} +{"session_id":"sess-714f91a33278","input_length":2216,"output_length":119,"hash_ids":[3120121,3120122,3120123,3120124,3120125],"delay":10251.2} +{"session_id":"sess-714f91a33278","input_length":7601,"output_length":113,"hash_ids":[3120126,3120127,3120128,3120129,3120130,3120131,3120132,3120133,3120134,3120135,3120136,3120137,3120138,3120139,3120140],"delay":141.2} +{"session_id":"sess-714f91a33278","input_length":2553,"output_length":334,"hash_ids":[3120141,3120142,3120143,3120144,3120145],"delay":7272.1} +{"session_id":"sess-714f91a33278","input_length":3110,"output_length":330,"hash_ids":[3120146,3120147,3120148,3120149,3120150,3120151,3120152],"delay":1140.8} +{"session_id":"sess-714f91a33278","input_length":291,"output_length":431,"hash_ids":[3120153],"delay":522.1} +{"session_id":"sess-714f91a33278","input_length":2596,"output_length":207,"hash_ids":[3120154,3120155,3120156,3120157,3120158,3120159],"delay":561.9} +{"session_id":"sess-714f91a33278","input_length":2649,"output_length":60,"hash_ids":[3120160,3120161,3120162,3120163,3120164,3120165],"delay":440.3} +{"session_id":"sess-714f91a33278","input_length":1123,"output_length":46,"hash_ids":[3120166,3120167,3120168],"delay":7505.4} +{"session_id":"sess-596db2369d21","input_length":53947,"output_length":606,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3124063,3124064,3124065],"timestamp":0.0,"group_id":3} +{"session_id":"sess-596db2369d21","input_length":1783,"output_length":1009,"hash_ids":[3124066,3124067,3124068,3124069],"delay":2977.9} +{"session_id":"sess-596db2369d21","input_length":632,"output_length":61,"hash_ids":[3124070,3124071],"delay":1042.6} +{"session_id":"sess-596db2369d21","input_length":3850,"output_length":168,"hash_ids":[3124072,3124073,3124074,3124075,3124076,3124077,3124078,3124079],"delay":520.0} +{"session_id":"sess-596db2369d21","input_length":526,"output_length":41,"hash_ids":[3124080,3124081],"delay":775.8} +{"session_id":"sess-596db2369d21","input_length":2853,"output_length":866,"hash_ids":[3124082,3124083,3124084,3124085,3124086,3124087],"delay":2965.2} +{"session_id":"sess-596db2369d21","input_length":2398,"output_length":530,"hash_ids":[3124088,3124089,3124090,3124091,3124092],"delay":434.0} +{"session_id":"sess-596db2369d21","input_length":373,"output_length":409,"hash_ids":[3124093],"delay":471.8} +{"session_id":"sess-596db2369d21","input_length":2740,"output_length":1501,"hash_ids":[3124094,3124095,3124096,3124097,3124098,3124099],"delay":2322.5} +{"session_id":"sess-596db2369d21","input_length":1658,"output_length":285,"hash_ids":[3124100,3124101,3124102,3124103],"delay":166.3} +{"session_id":"sess-596db2369d21","input_length":1522,"output_length":632,"hash_ids":[3124104,3124105,3124106],"delay":4855.5} +{"session_id":"sess-596db2369d21","input_length":6546,"output_length":85,"hash_ids":[3124107,3124108,3124109,3124110,3124111,3124112,3124113,3124114,3124115,3124116,3124117,3124118,3124119],"delay":1257.7} +{"session_id":"sess-596db2369d21","input_length":751,"output_length":211,"hash_ids":[3124120,3124121],"delay":319.9} +{"session_id":"sess-596db2369d21","input_length":2448,"output_length":1399,"hash_ids":[3124122,3124123,3124124,3124125,3124126],"delay":10502.3} +{"session_id":"sess-5d152991d249","input_length":56546,"output_length":585,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,3128063,3128064,3128065,3128066,3128067,3128068,3128069,3128070],"timestamp":0.0,"group_id":7} +{"session_id":"sess-5d152991d249","input_length":865,"output_length":342,"hash_ids":[3128071,3128072],"delay":561.0} +{"session_id":"sess-5d152991d249","input_length":577,"output_length":230,"hash_ids":[3128073,3128074],"delay":1038.0} +{"session_id":"sess-5d152991d249","input_length":3170,"output_length":163,"hash_ids":[3128075,3128076,3128077,3128078,3128079,3128080,3128081],"delay":18574.6} +{"session_id":"sess-5d152991d249","input_length":1011,"output_length":49,"hash_ids":[3128082,3128083],"delay":533.1} +{"session_id":"sess-5d152991d249","input_length":5216,"output_length":85,"hash_ids":[3128084,3128085,3128086,3128087,3128088,3128089,3128090,3128091,3128092,3128093,3128094],"delay":445.3} +{"session_id":"sess-b0177513ac5f","input_length":58885,"output_length":80,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3132063,3132064,3132065,3132066,3132067,3132068,3132069,3132070,3132071,3132072,3132073,3132074,3132075],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b0177513ac5f","input_length":842,"output_length":996,"hash_ids":[3132076,3132077],"delay":26296.3} +{"session_id":"sess-b0177513ac5f","input_length":4394,"output_length":397,"hash_ids":[3132078,3132079,3132080,3132081,3132082,3132083,3132084,3132085,3132086],"delay":65360.2} +{"session_id":"sess-b0177513ac5f","input_length":1706,"output_length":334,"hash_ids":[3132087,3132088,3132089,3132090],"delay":524.3} +{"session_id":"sess-b0177513ac5f","input_length":5641,"output_length":134,"hash_ids":[3132091,3132092,3132093,3132094,3132095,3132096,3132097,3132098,3132099,3132100,3132101,3132102],"delay":1218.0} +{"session_id":"sess-b0177513ac5f","input_length":2165,"output_length":336,"hash_ids":[3132103,3132104,3132105,3132106,3132107],"delay":2641.5} +{"session_id":"sess-b0177513ac5f","input_length":8301,"output_length":145,"hash_ids":[3132108,3132109,3132110,3132111,3132112,3132113,3132114,3132115,3132116,3132117,3132118,3132119,3132120,3132121,3132122,3132123,3132124],"delay":347.2} +{"session_id":"sess-b0177513ac5f","input_length":956,"output_length":676,"hash_ids":[3132125,3132126],"delay":1531.0} +{"session_id":"sess-b0177513ac5f","input_length":1706,"output_length":144,"hash_ids":[3132127,3132128,3132129,3132130],"delay":13255.2} +{"session_id":"sess-b0177513ac5f","input_length":430,"output_length":50,"hash_ids":[3132131],"delay":1664.2} +{"session_id":"sess-b0177513ac5f","input_length":846,"output_length":761,"hash_ids":[3132132,3132133],"delay":3870.7} +{"session_id":"sess-b0177513ac5f","input_length":728,"output_length":335,"hash_ids":[3132134,3132135],"delay":2394.2} +{"session_id":"sess-b0177513ac5f","input_length":7457,"output_length":79,"hash_ids":[3132136,3132137,3132138,3132139,3132140,3132141,3132142,3132143,3132144,3132145,3132146,3132147,3132148,3132149,3132150],"delay":1321.6} +{"session_id":"sess-b0177513ac5f","input_length":963,"output_length":757,"hash_ids":[3132151,3132152],"delay":1420.5} +{"session_id":"sess-b0177513ac5f","input_length":1039,"output_length":649,"hash_ids":[3132153,3132154,3132155],"delay":1129.2} +{"session_id":"sess-b0177513ac5f","input_length":731,"output_length":128,"hash_ids":[3132156,3132157],"delay":8679.0} +{"session_id":"sess-b0177513ac5f","input_length":206,"output_length":355,"hash_ids":[3132158],"delay":5316.6} +{"session_id":"sess-b0177513ac5f","input_length":3286,"output_length":172,"hash_ids":[3132159,3132160,3132161,3132162,3132163,3132164,3132165],"delay":2064.5} +{"session_id":"sess-b0177513ac5f","input_length":1152,"output_length":231,"hash_ids":[3132166,3132167,3132168],"delay":1405.9} +{"session_id":"sess-b0177513ac5f","input_length":4954,"output_length":110,"hash_ids":[3132169,3132170,3132171,3132172,3132173,3132174,3132175,3132176,3132177,3132178],"delay":516.7} +{"session_id":"sess-b0177513ac5f","input_length":3511,"output_length":1230,"hash_ids":[3132179,3132180,3132181,3132182,3132183,3132184,3132185],"delay":264.0} +{"session_id":"sess-b0177513ac5f","input_length":987,"output_length":215,"hash_ids":[3132186,3132187],"delay":406.3} +{"session_id":"sess-b0177513ac5f","input_length":4050,"output_length":80,"hash_ids":[3132188,3132189,3132190,3132191,3132192,3132193,3132194,3132195],"delay":117.7} +{"session_id":"sess-b0177513ac5f","input_length":6665,"output_length":283,"hash_ids":[3132196,3132197,3132198,3132199,3132200,3132201,3132202,3132203,3132204,3132205,3132206,3132207,3132208,3132209],"delay":334.6} +{"session_id":"sess-40f98cffb6b3","input_length":57829,"output_length":774,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3136063,3136064,3136065,3136066,3136067,3136068,3136069,3136070,3136071,3136072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-40f98cffb6b3","input_length":979,"output_length":121,"hash_ids":[3136073,3136074],"delay":1694.8} +{"session_id":"sess-40f98cffb6b3","input_length":282,"output_length":208,"hash_ids":[3136075],"delay":432.3} +{"session_id":"sess-40f98cffb6b3","input_length":1493,"output_length":867,"hash_ids":[3136076,3136077,3136078],"delay":5603.3} +{"session_id":"sess-40f98cffb6b3","input_length":4332,"output_length":251,"hash_ids":[3136079,3136080,3136081,3136082,3136083,3136084,3136085,3136086,3136087],"delay":340.9} +{"session_id":"sess-40f98cffb6b3","input_length":1837,"output_length":1034,"hash_ids":[3136088,3136089,3136090,3136091],"delay":718.3} +{"session_id":"sess-40f98cffb6b3","input_length":5639,"output_length":154,"hash_ids":[3136092,3136093,3136094,3136095,3136096,3136097,3136098,3136099,3136100,3136101,3136102,3136103],"delay":2584.2} +{"session_id":"sess-40f98cffb6b3","input_length":1037,"output_length":78,"hash_ids":[3136104,3136105,3136106],"delay":3443.0} +{"session_id":"sess-40f98cffb6b3","input_length":2863,"output_length":181,"hash_ids":[3136107,3136108,3136109,3136110,3136111,3136112],"delay":320.5} +{"session_id":"sess-40f98cffb6b3","input_length":2267,"output_length":329,"hash_ids":[3136113,3136114,3136115,3136116,3136117],"delay":2311.0} +{"session_id":"sess-40f98cffb6b3","input_length":8985,"output_length":194,"hash_ids":[3136118,3136119,3136120,3136121,3136122,3136123,3136124,3136125,3136126,3136127,3136128,3136129,3136130,3136131,3136132,3136133,3136134,3136135],"delay":1355.5} +{"session_id":"sess-40f98cffb6b3","input_length":3219,"output_length":956,"hash_ids":[3136136,3136137,3136138,3136139,3136140,3136141,3136142],"delay":368.4} +{"session_id":"sess-40f98cffb6b3","input_length":1483,"output_length":219,"hash_ids":[3136143,3136144,3136145],"delay":5170.5} +{"session_id":"sess-40f98cffb6b3","input_length":422,"output_length":144,"hash_ids":[3136146],"delay":331.4} +{"session_id":"sess-40f98cffb6b3","input_length":2736,"output_length":268,"hash_ids":[3136147,3136148,3136149,3136150,3136151,3136152],"delay":7447.0} +{"session_id":"sess-40f98cffb6b3","input_length":900,"output_length":206,"hash_ids":[3136153,3136154],"delay":1508.0} +{"session_id":"sess-40f98cffb6b3","input_length":5003,"output_length":85,"hash_ids":[3136155,3136156,3136157,3136158,3136159,3136160,3136161,3136162,3136163,3136164],"delay":1492.2} +{"session_id":"sess-40f98cffb6b3","input_length":3588,"output_length":359,"hash_ids":[3136165,3136166,3136167,3136168,3136169,3136170,3136171,3136172],"delay":12425.4} +{"session_id":"sess-40f98cffb6b3","input_length":975,"output_length":808,"hash_ids":[3136173,3136174],"delay":216.0} +{"session_id":"sess-40f98cffb6b3","input_length":2237,"output_length":221,"hash_ids":[3136175,3136176,3136177,3136178,3136179],"delay":273.4} +{"session_id":"sess-40f98cffb6b3","input_length":4878,"output_length":741,"hash_ids":[3136180,3136181,3136182,3136183,3136184,3136185,3136186,3136187,3136188,3136189],"delay":483.4} +{"session_id":"sess-40f98cffb6b3","input_length":577,"output_length":885,"hash_ids":[3136190,3136191],"delay":1693.7} +{"session_id":"sess-40f98cffb6b3","input_length":577,"output_length":303,"hash_ids":[3136192,3136193],"delay":13674.9} +{"session_id":"sess-40f98cffb6b3","input_length":2401,"output_length":214,"hash_ids":[3136194,3136195,3136196,3136197,3136198],"delay":404.5} +{"session_id":"sess-40f98cffb6b3","input_length":192,"output_length":461,"hash_ids":[3136199],"delay":6018.3} +{"session_id":"sess-9299ffd5c70e","input_length":66667,"output_length":779,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,3140063,3140064,3140065,3140066,3140067,3140068,3140069,3140070,3140071,3140072,3140073,3140074,3140075,3140076,3140077,3140078,3140079,3140080,3140081,3140082,3140083,3140084,3140085,3140086,3140087,3140088,3140089,3140090],"timestamp":0.0,"group_id":10} +{"session_id":"sess-9299ffd5c70e","input_length":1329,"output_length":41,"hash_ids":[3140091,3140092,3140093],"delay":6039.2} +{"session_id":"sess-9299ffd5c70e","input_length":3603,"output_length":789,"hash_ids":[3140094,3140095,3140096,3140097,3140098,3140099,3140100,3140101],"delay":1198.9} +{"session_id":"sess-9299ffd5c70e","input_length":5071,"output_length":94,"hash_ids":[3140102,3140103,3140104,3140105,3140106,3140107,3140108,3140109,3140110,3140111],"delay":267.6} +{"session_id":"sess-9299ffd5c70e","input_length":2203,"output_length":1172,"hash_ids":[3140112,3140113,3140114,3140115,3140116],"delay":5172.0} +{"session_id":"sess-9299ffd5c70e","input_length":8441,"output_length":1492,"hash_ids":[3140117,3140118,3140119,3140120,3140121,3140122,3140123,3140124,3140125,3140126,3140127,3140128,3140129,3140130,3140131,3140132,3140133],"delay":3825.8} +{"session_id":"sess-9299ffd5c70e","input_length":4540,"output_length":495,"hash_ids":[3140134,3140135,3140136,3140137,3140138,3140139,3140140,3140141,3140142],"delay":1943.4} +{"session_id":"sess-9299ffd5c70e","input_length":2661,"output_length":1521,"hash_ids":[3140143,3140144,3140145,3140146,3140147,3140148],"delay":18876.0} +{"session_id":"sess-9299ffd5c70e","input_length":3040,"output_length":860,"hash_ids":[3140149,3140150,3140151,3140152,3140153,3140154],"delay":779.4} +{"session_id":"sess-9299ffd5c70e","input_length":1632,"output_length":678,"hash_ids":[3140155,3140156,3140157,3140158],"delay":1879.1} +{"session_id":"sess-9299ffd5c70e","input_length":677,"output_length":651,"hash_ids":[3140159,3140160],"delay":1167.6} +{"session_id":"sess-9299ffd5c70e","input_length":655,"output_length":177,"hash_ids":[3140161,3140162],"delay":2216.8} +{"session_id":"sess-9299ffd5c70e","input_length":471,"output_length":627,"hash_ids":[3140163],"delay":652.9} +{"session_id":"sess-9299ffd5c70e","input_length":486,"output_length":738,"hash_ids":[3140164],"delay":307.8} +{"session_id":"sess-9299ffd5c70e","input_length":734,"output_length":190,"hash_ids":[3140165,3140166],"delay":5769.4} +{"session_id":"sess-9299ffd5c70e","input_length":2678,"output_length":455,"hash_ids":[3140167,3140168,3140169,3140170,3140171,3140172],"delay":1655.4} +{"session_id":"sess-9299ffd5c70e","input_length":3186,"output_length":205,"hash_ids":[3140173,3140174,3140175,3140176,3140177,3140178,3140179],"delay":210.2} +{"session_id":"sess-9299ffd5c70e","input_length":895,"output_length":81,"hash_ids":[3140180,3140181],"delay":2584.0} +{"session_id":"sess-9299ffd5c70e","input_length":275,"output_length":1386,"hash_ids":[3140182],"delay":1592.7} +{"session_id":"sess-9299ffd5c70e","input_length":2667,"output_length":730,"hash_ids":[3140183,3140184,3140185,3140186,3140187,3140188],"delay":669.1} +{"session_id":"sess-9299ffd5c70e","input_length":318,"output_length":948,"hash_ids":[3140189],"delay":17450.1} +{"session_id":"sess-9299ffd5c70e","input_length":1869,"output_length":150,"hash_ids":[3140190,3140191,3140192,3140193],"delay":310.9} +{"session_id":"sess-8d78afe0ff0a","input_length":54156,"output_length":46,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3144063,3144064,3144065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8d78afe0ff0a","input_length":5519,"output_length":556,"hash_ids":[3144066,3144067,3144068,3144069,3144070,3144071,3144072,3144073,3144074,3144075,3144076],"delay":2498.4} +{"session_id":"sess-8d78afe0ff0a","input_length":2891,"output_length":429,"hash_ids":[3144077,3144078,3144079,3144080,3144081,3144082],"delay":815.8} +{"session_id":"sess-8d78afe0ff0a","input_length":5997,"output_length":208,"hash_ids":[3144083,3144084,3144085,3144086,3144087,3144088,3144089,3144090,3144091,3144092,3144093,3144094],"delay":5803.6} +{"session_id":"sess-8d78afe0ff0a","input_length":475,"output_length":2251,"hash_ids":[3144095],"delay":32343.4} +{"session_id":"sess-8d78afe0ff0a","input_length":2405,"output_length":202,"hash_ids":[3144096,3144097,3144098,3144099,3144100],"delay":28280.3} +{"session_id":"sess-8d78afe0ff0a","input_length":889,"output_length":647,"hash_ids":[3144101,3144102],"delay":631.7} +{"session_id":"sess-8d78afe0ff0a","input_length":724,"output_length":262,"hash_ids":[3144103,3144104],"delay":803.1} +{"session_id":"sess-8d78afe0ff0a","input_length":367,"output_length":162,"hash_ids":[3144105],"delay":390.8} +{"session_id":"sess-8a1e9d3ccff9","input_length":55031,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,3148063,3148064,3148065,3148066,3148067],"timestamp":0.0,"group_id":24} +{"session_id":"sess-8a1e9d3ccff9","input_length":508,"output_length":641,"hash_ids":[3148068],"delay":2909.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":760,"output_length":346,"hash_ids":[3148069,3148070],"delay":3030.7} +{"session_id":"sess-8a1e9d3ccff9","input_length":5759,"output_length":298,"hash_ids":[3148071,3148072,3148073,3148074,3148075,3148076,3148077,3148078,3148079,3148080,3148081,3148082],"delay":23138.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":9858,"output_length":1059,"hash_ids":[3148083,3148084,3148085,3148086,3148087,3148088,3148089,3148090,3148091,3148092,3148093,3148094,3148095,3148096,3148097,3148098,3148099,3148100,3148101,3148102],"delay":297.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":1288,"output_length":370,"hash_ids":[3148103,3148104,3148105],"delay":1514.8} +{"session_id":"sess-8a1e9d3ccff9","input_length":8166,"output_length":520,"hash_ids":[3148106,3148107,3148108,3148109,3148110,3148111,3148112,3148113,3148114,3148115,3148116,3148117,3148118,3148119,3148120,3148121],"delay":586.2} +{"session_id":"sess-8a1e9d3ccff9","input_length":4248,"output_length":98,"hash_ids":[3148122,3148123,3148124,3148125,3148126,3148127,3148128,3148129,3148130],"delay":499.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":2192,"output_length":78,"hash_ids":[3148131,3148132,3148133,3148134,3148135],"delay":1542.3} +{"session_id":"sess-8a1e9d3ccff9","input_length":5217,"output_length":204,"hash_ids":[3148136,3148137,3148138,3148139,3148140,3148141,3148142,3148143,3148144,3148145,3148146],"delay":27766.0} +{"session_id":"sess-8a1e9d3ccff9","input_length":1966,"output_length":204,"hash_ids":[3148147,3148148,3148149,3148150],"delay":223.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":8976,"output_length":174,"hash_ids":[3148151,3148152,3148153,3148154,3148155,3148156,3148157,3148158,3148159,3148160,3148161,3148162,3148163,3148164,3148165,3148166,3148167,3148168],"delay":868.6} +{"session_id":"sess-8a1e9d3ccff9","input_length":591,"output_length":1201,"hash_ids":[3148169,3148170],"delay":5817.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":2693,"output_length":251,"hash_ids":[3148171,3148172,3148173,3148174,3148175,3148176],"delay":148.8} +{"session_id":"sess-8a1e9d3ccff9","input_length":2603,"output_length":317,"hash_ids":[3148177,3148178,3148179,3148180,3148181,3148182],"delay":901.9} +{"session_id":"sess-8a1e9d3ccff9","input_length":1987,"output_length":586,"hash_ids":[3148183,3148184,3148185,3148186],"delay":1206.8} +{"session_id":"sess-8a1e9d3ccff9","input_length":2135,"output_length":69,"hash_ids":[3148187,3148188,3148189,3148190,3148191],"delay":466.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":3689,"output_length":509,"hash_ids":[3148192,3148193,3148194,3148195,3148196,3148197,3148198,3148199],"delay":1738.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":564,"output_length":136,"hash_ids":[3148200,3148201],"delay":2362.6} +{"session_id":"sess-8a1e9d3ccff9","input_length":424,"output_length":215,"hash_ids":[3148202],"delay":7053.9} +{"session_id":"sess-6121bdf0b238","input_length":56896,"output_length":250,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3152063,3152064,3152065,3152066,3152067,3152068,3152069,3152070,3152071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6121bdf0b238","input_length":8424,"output_length":84,"hash_ids":[3152072,3152073,3152074,3152075,3152076,3152077,3152078,3152079,3152080,3152081,3152082,3152083,3152084,3152085,3152086,3152087,3152088],"delay":837.6} +{"session_id":"sess-6121bdf0b238","input_length":1830,"output_length":307,"hash_ids":[3152089,3152090,3152091,3152092],"delay":2031.4} +{"session_id":"sess-6121bdf0b238","input_length":2853,"output_length":166,"hash_ids":[3152093,3152094,3152095,3152096,3152097,3152098],"delay":29848.8} +{"session_id":"sess-6121bdf0b238","input_length":2501,"output_length":613,"hash_ids":[3152099,3152100,3152101,3152102,3152103],"delay":17363.9} +{"session_id":"sess-6121bdf0b238","input_length":3949,"output_length":365,"hash_ids":[3152104,3152105,3152106,3152107,3152108,3152109,3152110,3152111],"delay":1468.0} +{"session_id":"sess-6121bdf0b238","input_length":2500,"output_length":352,"hash_ids":[3152112,3152113,3152114,3152115,3152116],"delay":581.2} +{"session_id":"sess-6121bdf0b238","input_length":7585,"output_length":71,"hash_ids":[3152117,3152118,3152119,3152120,3152121,3152122,3152123,3152124,3152125,3152126,3152127,3152128,3152129,3152130,3152131],"delay":670.9} +{"session_id":"sess-6121bdf0b238","input_length":347,"output_length":33,"hash_ids":[3152132],"delay":6005.3} +{"session_id":"sess-6121bdf0b238","input_length":4884,"output_length":640,"hash_ids":[3152133,3152134,3152135,3152136,3152137,3152138,3152139,3152140,3152141,3152142],"delay":3058.3} +{"session_id":"sess-6121bdf0b238","input_length":931,"output_length":119,"hash_ids":[3152143,3152144],"delay":624.5} +{"session_id":"sess-6121bdf0b238","input_length":5718,"output_length":842,"hash_ids":[3152145,3152146,3152147,3152148,3152149,3152150,3152151,3152152,3152153,3152154,3152155,3152156],"delay":1045.6} +{"session_id":"sess-6121bdf0b238","input_length":1848,"output_length":171,"hash_ids":[3152157,3152158,3152159,3152160],"delay":1042.0} +{"session_id":"sess-6121bdf0b238","input_length":983,"output_length":656,"hash_ids":[3152161,3152162],"delay":3634.7} +{"session_id":"sess-6121bdf0b238","input_length":723,"output_length":108,"hash_ids":[3152163,3152164],"delay":308.2} +{"session_id":"sess-6121bdf0b238","input_length":863,"output_length":732,"hash_ids":[3152165,3152166],"delay":681.4} +{"session_id":"sess-6121bdf0b238","input_length":5623,"output_length":737,"hash_ids":[3152167,3152168,3152169,3152170,3152171,3152172,3152173,3152174,3152175,3152176,3152177],"delay":499.2} +{"session_id":"sess-6121bdf0b238","input_length":508,"output_length":944,"hash_ids":[3152178],"delay":2688.9} +{"session_id":"sess-6121bdf0b238","input_length":1234,"output_length":421,"hash_ids":[3152179,3152180,3152181],"delay":12633.6} +{"session_id":"sess-719abde92ac6","input_length":53486,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3156063,3156064],"timestamp":0.0,"group_id":4} +{"session_id":"sess-719abde92ac6","input_length":2042,"output_length":645,"hash_ids":[3156065,3156066,3156067,3156068],"delay":1180.1} +{"session_id":"sess-719abde92ac6","input_length":2716,"output_length":58,"hash_ids":[3156069,3156070,3156071,3156072,3156073,3156074],"delay":13380.9} +{"session_id":"sess-719abde92ac6","input_length":5850,"output_length":98,"hash_ids":[3156075,3156076,3156077,3156078,3156079,3156080,3156081,3156082,3156083,3156084,3156085,3156086],"delay":2018.8} +{"session_id":"sess-719abde92ac6","input_length":3490,"output_length":97,"hash_ids":[3156087,3156088,3156089,3156090,3156091,3156092,3156093],"delay":1204.2} +{"session_id":"sess-719abde92ac6","input_length":4175,"output_length":129,"hash_ids":[3156094,3156095,3156096,3156097,3156098,3156099,3156100,3156101,3156102],"delay":1380.3} +{"session_id":"sess-719abde92ac6","input_length":297,"output_length":457,"hash_ids":[3156103],"delay":650.1} +{"session_id":"sess-719abde92ac6","input_length":3229,"output_length":629,"hash_ids":[3156104,3156105,3156106,3156107,3156108,3156109,3156110],"delay":6652.3} +{"session_id":"sess-719abde92ac6","input_length":6524,"output_length":53,"hash_ids":[3156111,3156112,3156113,3156114,3156115,3156116,3156117,3156118,3156119,3156120,3156121,3156122,3156123],"delay":1130.4} +{"session_id":"sess-719abde92ac6","input_length":1996,"output_length":325,"hash_ids":[3156124,3156125,3156126,3156127],"delay":698.7} +{"session_id":"sess-719abde92ac6","input_length":4653,"output_length":433,"hash_ids":[3156128,3156129,3156130,3156131,3156132,3156133,3156134,3156135,3156136,3156137],"delay":12226.0} +{"session_id":"sess-4c172fc0ab40","input_length":59711,"output_length":677,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3160063,3160064,3160065,3160066,3160067,3160068,3160069,3160070,3160071,3160072,3160073,3160074,3160075,3160076],"timestamp":0.0,"group_id":2} +{"session_id":"sess-4c172fc0ab40","input_length":1585,"output_length":30,"hash_ids":[3160077,3160078,3160079,3160080],"delay":525.7} +{"session_id":"sess-4c172fc0ab40","input_length":321,"output_length":1075,"hash_ids":[3160081],"delay":632.0} +{"session_id":"sess-4c172fc0ab40","input_length":539,"output_length":182,"hash_ids":[3160082,3160083],"delay":3575.5} +{"session_id":"sess-4c172fc0ab40","input_length":973,"output_length":131,"hash_ids":[3160084,3160085],"delay":8829.5} +{"session_id":"sess-4c172fc0ab40","input_length":4602,"output_length":55,"hash_ids":[3160086,3160087,3160088,3160089,3160090,3160091,3160092,3160093,3160094],"delay":1013.4} +{"session_id":"sess-4c172fc0ab40","input_length":1875,"output_length":409,"hash_ids":[3160095,3160096,3160097,3160098],"delay":166.7} +{"session_id":"sess-4c172fc0ab40","input_length":2693,"output_length":279,"hash_ids":[3160099,3160100,3160101,3160102,3160103,3160104],"delay":945.4} +{"session_id":"sess-4c172fc0ab40","input_length":6427,"output_length":340,"hash_ids":[3160105,3160106,3160107,3160108,3160109,3160110,3160111,3160112,3160113,3160114,3160115,3160116,3160117],"delay":544.5} +{"session_id":"sess-4c172fc0ab40","input_length":1196,"output_length":506,"hash_ids":[3160118,3160119,3160120],"delay":20340.5} +{"session_id":"sess-4c172fc0ab40","input_length":3224,"output_length":228,"hash_ids":[3160121,3160122,3160123,3160124,3160125,3160126,3160127],"delay":1294.3} +{"session_id":"sess-4c172fc0ab40","input_length":754,"output_length":410,"hash_ids":[3160128,3160129],"delay":1339.5} +{"session_id":"sess-4c172fc0ab40","input_length":1526,"output_length":95,"hash_ids":[3160130,3160131,3160132],"delay":481.5} +{"session_id":"sess-4c172fc0ab40","input_length":1050,"output_length":1379,"hash_ids":[3160133,3160134,3160135],"delay":489.3} +{"session_id":"sess-4c172fc0ab40","input_length":9932,"output_length":652,"hash_ids":[3160136,3160137,3160138,3160139,3160140,3160141,3160142,3160143,3160144,3160145,3160146,3160147,3160148,3160149,3160150,3160151,3160152,3160153,3160154,3160155],"delay":6838.3} +{"session_id":"sess-4c172fc0ab40","input_length":1211,"output_length":135,"hash_ids":[3160156,3160157,3160158],"delay":314.7} +{"session_id":"sess-4c172fc0ab40","input_length":378,"output_length":44,"hash_ids":[3160159],"delay":3782.8} +{"session_id":"sess-ce4989d9d274","input_length":55217,"output_length":413,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3164063,3164064,3164065,3164066,3164067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ce4989d9d274","input_length":5710,"output_length":75,"hash_ids":[3164068,3164069,3164070,3164071,3164072,3164073,3164074,3164075,3164076,3164077,3164078,3164079],"delay":35451.1} +{"session_id":"sess-ce4989d9d274","input_length":8868,"output_length":266,"hash_ids":[3164080,3164081,3164082,3164083,3164084,3164085,3164086,3164087,3164088,3164089,3164090,3164091,3164092,3164093,3164094,3164095,3164096,3164097],"delay":205.3} +{"session_id":"sess-ce4989d9d274","input_length":5309,"output_length":79,"hash_ids":[3164098,3164099,3164100,3164101,3164102,3164103,3164104,3164105,3164106,3164107,3164108],"delay":2292.3} +{"session_id":"sess-ce4989d9d274","input_length":607,"output_length":550,"hash_ids":[3164109,3164110],"delay":423.5} +{"session_id":"sess-ce4989d9d274","input_length":686,"output_length":30,"hash_ids":[3164111,3164112],"delay":63279.3} +{"session_id":"sess-ce4989d9d274","input_length":2593,"output_length":115,"hash_ids":[3164113,3164114,3164115,3164116,3164117,3164118],"delay":181.6} +{"session_id":"sess-ce4989d9d274","input_length":3525,"output_length":145,"hash_ids":[3164119,3164120,3164121,3164122,3164123,3164124,3164125],"delay":5778.8} +{"session_id":"sess-ce4989d9d274","input_length":5045,"output_length":32,"hash_ids":[3164126,3164127,3164128,3164129,3164130,3164131,3164132,3164133,3164134,3164135],"delay":3630.0} +{"session_id":"sess-ce4989d9d274","input_length":2294,"output_length":428,"hash_ids":[3164136,3164137,3164138,3164139,3164140],"delay":1046.5} +{"session_id":"sess-ce4989d9d274","input_length":2688,"output_length":2630,"hash_ids":[3164141,3164142,3164143,3164144,3164145,3164146],"delay":3504.9} +{"session_id":"sess-ce4989d9d274","input_length":7890,"output_length":343,"hash_ids":[3164147,3164148,3164149,3164150,3164151,3164152,3164153,3164154,3164155,3164156,3164157,3164158,3164159,3164160,3164161,3164162],"delay":2996.4} +{"session_id":"sess-ce4989d9d274","input_length":7906,"output_length":648,"hash_ids":[3164163,3164164,3164165,3164166,3164167,3164168,3164169,3164170,3164171,3164172,3164173,3164174,3164175,3164176,3164177,3164178],"delay":9536.5} +{"session_id":"sess-ce4989d9d274","input_length":1031,"output_length":148,"hash_ids":[3164179,3164180,3164181],"delay":740.7} +{"session_id":"sess-ce4989d9d274","input_length":1658,"output_length":175,"hash_ids":[3164182,3164183,3164184,3164185],"delay":1280.1} +{"session_id":"sess-ce4989d9d274","input_length":987,"output_length":134,"hash_ids":[3164186,3164187],"delay":17769.4} +{"session_id":"sess-ce4989d9d274","input_length":5489,"output_length":293,"hash_ids":[3164188,3164189,3164190,3164191,3164192,3164193,3164194,3164195,3164196,3164197,3164198],"delay":144.1} +{"session_id":"sess-6080cd197d62","input_length":57139,"output_length":93,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3168063,3168064,3168065,3168066,3168067,3168068,3168069,3168070,3168071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fd8578008ea6","input_length":81163,"output_length":750,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3172063,3172064,3172065,3172066,3172067,3172068,3172069,3172070,3172071,3172072,3172073,3172074,3172075,3172076,3172077,3172078,3172079,3172080,3172081,3172082,3172083,3172084,3172085,3172086,3172087,3172088,3172089,3172090,3172091,3172092,3172093,3172094,3172095,3172096,3172097,3172098,3172099,3172100,3172101,3172102,3172103,3172104,3172105,3172106,3172107,3172108,3172109,3172110,3172111,3172112,3172113,3172114,3172115,3172116,3172117,3172118],"timestamp":0.0,"group_id":4} +{"session_id":"sess-fd8578008ea6","input_length":2219,"output_length":671,"hash_ids":[3172119,3172120,3172121,3172122,3172123],"delay":1207.1} +{"session_id":"sess-fd8578008ea6","input_length":807,"output_length":1420,"hash_ids":[3172124,3172125],"delay":350.9} +{"session_id":"sess-fd8578008ea6","input_length":671,"output_length":338,"hash_ids":[3172126,3172127],"delay":2288.5} +{"session_id":"sess-fd8578008ea6","input_length":4499,"output_length":677,"hash_ids":[3172128,3172129,3172130,3172131,3172132,3172133,3172134,3172135,3172136],"delay":4366.2} +{"session_id":"sess-fd8578008ea6","input_length":3143,"output_length":101,"hash_ids":[3172137,3172138,3172139,3172140,3172141,3172142,3172143],"delay":724.4} +{"session_id":"sess-fd8578008ea6","input_length":4725,"output_length":474,"hash_ids":[3172144,3172145,3172146,3172147,3172148,3172149,3172150,3172151,3172152,3172153],"delay":368.4} +{"session_id":"sess-fd8578008ea6","input_length":1239,"output_length":50,"hash_ids":[3172154,3172155,3172156],"delay":15023.8} +{"session_id":"sess-fd8578008ea6","input_length":1133,"output_length":730,"hash_ids":[3172157,3172158,3172159],"delay":728.8} +{"session_id":"sess-fd8578008ea6","input_length":2315,"output_length":541,"hash_ids":[3172160,3172161,3172162,3172163,3172164],"delay":1829.6} +{"session_id":"sess-fd8578008ea6","input_length":386,"output_length":254,"hash_ids":[3172165],"delay":279.1} +{"session_id":"sess-955acc60d547","input_length":53262,"output_length":139,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3176063,3176064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-955acc60d547","input_length":1675,"output_length":303,"hash_ids":[3176065,3176066,3176067,3176068],"delay":10289.2} +{"session_id":"sess-955acc60d547","input_length":616,"output_length":357,"hash_ids":[3176069,3176070],"delay":10642.3} +{"session_id":"sess-955acc60d547","input_length":596,"output_length":636,"hash_ids":[3176071,3176072],"delay":359.1} +{"session_id":"sess-955acc60d547","input_length":4221,"output_length":417,"hash_ids":[3176073,3176074,3176075,3176076,3176077,3176078,3176079,3176080,3176081],"delay":1248.0} +{"session_id":"sess-955acc60d547","input_length":7526,"output_length":1265,"hash_ids":[3176082,3176083,3176084,3176085,3176086,3176087,3176088,3176089,3176090,3176091,3176092,3176093,3176094,3176095,3176096],"delay":1152.1} +{"session_id":"sess-955acc60d547","input_length":652,"output_length":484,"hash_ids":[3176097,3176098],"delay":3284.2} +{"session_id":"sess-955acc60d547","input_length":289,"output_length":131,"hash_ids":[3176099],"delay":418.6} +{"session_id":"sess-955acc60d547","input_length":4701,"output_length":1721,"hash_ids":[3176100,3176101,3176102,3176103,3176104,3176105,3176106,3176107,3176108,3176109],"delay":495.5} +{"session_id":"sess-955acc60d547","input_length":1259,"output_length":353,"hash_ids":[3176110,3176111,3176112],"delay":3017.9} +{"session_id":"sess-955acc60d547","input_length":7721,"output_length":468,"hash_ids":[3176113,3176114,3176115,3176116,3176117,3176118,3176119,3176120,3176121,3176122,3176123,3176124,3176125,3176126,3176127,3176128],"delay":770.6} +{"session_id":"sess-955acc60d547","input_length":760,"output_length":142,"hash_ids":[3176129,3176130],"delay":1675.4} +{"session_id":"sess-955acc60d547","input_length":3044,"output_length":106,"hash_ids":[3176131,3176132,3176133,3176134,3176135,3176136],"delay":980.4} +{"session_id":"sess-955acc60d547","input_length":9770,"output_length":616,"hash_ids":[3176137,3176138,3176139,3176140,3176141,3176142,3176143,3176144,3176145,3176146,3176147,3176148,3176149,3176150,3176151,3176152,3176153,3176154,3176155,3176156],"delay":1793.4} +{"session_id":"sess-955acc60d547","input_length":5400,"output_length":266,"hash_ids":[3176157,3176158,3176159,3176160,3176161,3176162,3176163,3176164,3176165,3176166,3176167],"delay":18046.0} +{"session_id":"sess-955acc60d547","input_length":1772,"output_length":263,"hash_ids":[3176168,3176169,3176170,3176171],"delay":291.7} +{"session_id":"sess-955acc60d547","input_length":4179,"output_length":191,"hash_ids":[3176172,3176173,3176174,3176175,3176176,3176177,3176178,3176179,3176180],"delay":578.2} +{"session_id":"sess-955acc60d547","input_length":1930,"output_length":1088,"hash_ids":[3176181,3176182,3176183,3176184],"delay":12231.3} +{"session_id":"sess-955acc60d547","input_length":688,"output_length":241,"hash_ids":[3176185,3176186],"delay":2458.5} +{"session_id":"sess-955acc60d547","input_length":160,"output_length":70,"hash_ids":[3176187],"delay":658.9} +{"session_id":"sess-955acc60d547","input_length":4880,"output_length":381,"hash_ids":[3176188,3176189,3176190,3176191,3176192,3176193,3176194,3176195,3176196,3176197],"delay":6255.8} +{"session_id":"sess-955acc60d547","input_length":2360,"output_length":93,"hash_ids":[3176198,3176199,3176200,3176201,3176202],"delay":2911.1} +{"session_id":"sess-955acc60d547","input_length":1916,"output_length":204,"hash_ids":[3176203,3176204,3176205,3176206],"delay":328.6} +{"session_id":"sess-79d8e677da92","input_length":55467,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3180063,3180064,3180065,3180066,3180067,3180068],"timestamp":0.0,"group_id":4} +{"session_id":"sess-79d8e677da92","input_length":1197,"output_length":1253,"hash_ids":[3180069,3180070,3180071],"delay":1724.6} +{"session_id":"sess-79d8e677da92","input_length":2454,"output_length":289,"hash_ids":[3180072,3180073,3180074,3180075,3180076],"delay":1608.4} +{"session_id":"sess-79d8e677da92","input_length":4109,"output_length":529,"hash_ids":[3180077,3180078,3180079,3180080,3180081,3180082,3180083,3180084,3180085],"delay":3119.7} +{"session_id":"sess-79d8e677da92","input_length":1568,"output_length":268,"hash_ids":[3180086,3180087,3180088,3180089],"delay":44188.6} +{"session_id":"sess-79d8e677da92","input_length":2657,"output_length":97,"hash_ids":[3180090,3180091,3180092,3180093,3180094,3180095],"delay":1027.7} +{"session_id":"sess-79d8e677da92","input_length":6059,"output_length":97,"hash_ids":[3180096,3180097,3180098,3180099,3180100,3180101,3180102,3180103,3180104,3180105,3180106,3180107],"delay":2006.9} +{"session_id":"sess-79d8e677da92","input_length":152,"output_length":30,"hash_ids":[3180108],"delay":9412.4} +{"session_id":"sess-79d8e677da92","input_length":315,"output_length":1284,"hash_ids":[3180109],"delay":1917.3} +{"session_id":"sess-79d8e677da92","input_length":915,"output_length":1492,"hash_ids":[3180110,3180111],"delay":831.3} +{"session_id":"sess-79d8e677da92","input_length":1642,"output_length":372,"hash_ids":[3180112,3180113,3180114,3180115],"delay":1858.1} +{"session_id":"sess-79d8e677da92","input_length":1587,"output_length":96,"hash_ids":[3180116,3180117,3180118,3180119],"delay":3514.6} +{"session_id":"sess-d6dbaf4138ee","input_length":61450,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,3184063,3184064,3184065,3184066,3184067,3184068,3184069,3184070,3184071,3184072,3184073,3184074,3184075,3184076,3184077,3184078,3184079,3184080],"timestamp":0.0,"group_id":47} +{"session_id":"sess-d6dbaf4138ee","input_length":2555,"output_length":748,"hash_ids":[3184081,3184082,3184083,3184084,3184085],"delay":1172.4} +{"session_id":"sess-d6dbaf4138ee","input_length":3278,"output_length":96,"hash_ids":[3184086,3184087,3184088,3184089,3184090,3184091,3184092],"delay":709.3} +{"session_id":"sess-d6dbaf4138ee","input_length":387,"output_length":297,"hash_ids":[3184093],"delay":944.9} +{"session_id":"sess-d6dbaf4138ee","input_length":2649,"output_length":204,"hash_ids":[3184094,3184095,3184096,3184097,3184098,3184099],"delay":571.2} +{"session_id":"sess-d6dbaf4138ee","input_length":1432,"output_length":501,"hash_ids":[3184100,3184101,3184102],"delay":1141.1} +{"session_id":"sess-d6dbaf4138ee","input_length":1543,"output_length":853,"hash_ids":[3184103,3184104,3184105,3184106],"delay":1098.4} +{"session_id":"sess-d6dbaf4138ee","input_length":1423,"output_length":705,"hash_ids":[3184107,3184108,3184109],"delay":4003.0} +{"session_id":"sess-bb38bc3bc6b8","input_length":62875,"output_length":2733,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3188063,3188064,3188065,3188066,3188067,3188068,3188069,3188070,3188071,3188072,3188073,3188074,3188075,3188076,3188077,3188078,3188079,3188080,3188081,3188082],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bb38bc3bc6b8","input_length":5183,"output_length":686,"hash_ids":[3188083,3188084,3188085,3188086,3188087,3188088,3188089,3188090,3188091,3188092,3188093],"delay":15618.7} +{"session_id":"sess-bb38bc3bc6b8","input_length":2306,"output_length":308,"hash_ids":[3188094,3188095,3188096,3188097,3188098],"delay":4434.8} +{"session_id":"sess-bb38bc3bc6b8","input_length":453,"output_length":375,"hash_ids":[3188099],"delay":8974.8} +{"session_id":"sess-bb38bc3bc6b8","input_length":1008,"output_length":131,"hash_ids":[3188100,3188101],"delay":9046.2} +{"session_id":"sess-bb38bc3bc6b8","input_length":2541,"output_length":68,"hash_ids":[3188102,3188103,3188104,3188105,3188106],"delay":166.8} +{"session_id":"sess-bb38bc3bc6b8","input_length":197,"output_length":754,"hash_ids":[3188107],"delay":835.1} +{"session_id":"sess-bb38bc3bc6b8","input_length":2286,"output_length":1109,"hash_ids":[3188108,3188109,3188110,3188111,3188112],"delay":39133.9} +{"session_id":"sess-bb38bc3bc6b8","input_length":2921,"output_length":50,"hash_ids":[3188113,3188114,3188115,3188116,3188117,3188118],"delay":380.7} +{"session_id":"sess-bb38bc3bc6b8","input_length":7191,"output_length":172,"hash_ids":[3188119,3188120,3188121,3188122,3188123,3188124,3188125,3188126,3188127,3188128,3188129,3188130,3188131,3188132,3188133],"delay":11861.2} +{"session_id":"sess-c171c9d62c74","input_length":64029,"output_length":110,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3192063,3192064,3192065,3192066,3192067,3192068,3192069,3192070,3192071,3192072,3192073,3192074,3192075,3192076,3192077,3192078,3192079,3192080,3192081,3192082,3192083,3192084,3192085],"timestamp":0.0,"group_id":2} +{"session_id":"sess-c171c9d62c74","input_length":1629,"output_length":914,"hash_ids":[3192086,3192087,3192088,3192089],"delay":827.7} +{"session_id":"sess-c171c9d62c74","input_length":3487,"output_length":30,"hash_ids":[3192090,3192091,3192092,3192093,3192094,3192095,3192096],"delay":2751.6} +{"session_id":"sess-c171c9d62c74","input_length":5760,"output_length":128,"hash_ids":[3192097,3192098,3192099,3192100,3192101,3192102,3192103,3192104,3192105,3192106,3192107,3192108],"delay":348.1} +{"session_id":"sess-c171c9d62c74","input_length":687,"output_length":439,"hash_ids":[3192109,3192110],"delay":1512.3} +{"session_id":"sess-c171c9d62c74","input_length":1646,"output_length":217,"hash_ids":[3192111,3192112,3192113,3192114],"delay":1520.6} +{"session_id":"sess-c171c9d62c74","input_length":4562,"output_length":327,"hash_ids":[3192115,3192116,3192117,3192118,3192119,3192120,3192121,3192122,3192123],"delay":772.2} +{"session_id":"sess-c171c9d62c74","input_length":1583,"output_length":672,"hash_ids":[3192124,3192125,3192126,3192127],"delay":11604.0} +{"session_id":"sess-c171c9d62c74","input_length":6558,"output_length":283,"hash_ids":[3192128,3192129,3192130,3192131,3192132,3192133,3192134,3192135,3192136,3192137,3192138,3192139,3192140],"delay":4419.9} +{"session_id":"sess-c171c9d62c74","input_length":1861,"output_length":1678,"hash_ids":[3192141,3192142,3192143,3192144],"delay":339.0} +{"session_id":"sess-c171c9d62c74","input_length":5610,"output_length":677,"hash_ids":[3192145,3192146,3192147,3192148,3192149,3192150,3192151,3192152,3192153,3192154,3192155],"delay":337.3} +{"session_id":"sess-c171c9d62c74","input_length":1305,"output_length":894,"hash_ids":[3192156,3192157,3192158],"delay":536.6} +{"session_id":"sess-c171c9d62c74","input_length":2882,"output_length":113,"hash_ids":[3192159,3192160,3192161,3192162,3192163,3192164],"delay":860.1} +{"session_id":"sess-c171c9d62c74","input_length":716,"output_length":421,"hash_ids":[3192165,3192166],"delay":5551.7} +{"session_id":"sess-c171c9d62c74","input_length":159,"output_length":376,"hash_ids":[3192167],"delay":180.7} +{"session_id":"sess-c171c9d62c74","input_length":429,"output_length":333,"hash_ids":[3192168],"delay":886.2} +{"session_id":"sess-c171c9d62c74","input_length":806,"output_length":36,"hash_ids":[3192169,3192170],"delay":163.8} +{"session_id":"sess-c171c9d62c74","input_length":1199,"output_length":328,"hash_ids":[3192171,3192172,3192173],"delay":3028.5} +{"session_id":"sess-c171c9d62c74","input_length":1716,"output_length":87,"hash_ids":[3192174,3192175,3192176,3192177],"delay":668.4} +{"session_id":"sess-c171c9d62c74","input_length":1283,"output_length":166,"hash_ids":[3192178,3192179,3192180],"delay":253.8} +{"session_id":"sess-c171c9d62c74","input_length":685,"output_length":57,"hash_ids":[3192181,3192182],"delay":1254.7} +{"session_id":"sess-c171c9d62c74","input_length":3178,"output_length":191,"hash_ids":[3192183,3192184,3192185,3192186,3192187,3192188,3192189],"delay":739.8} +{"session_id":"sess-c171c9d62c74","input_length":4132,"output_length":108,"hash_ids":[3192190,3192191,3192192,3192193,3192194,3192195,3192196,3192197,3192198],"delay":356.5} +{"session_id":"sess-c171c9d62c74","input_length":2601,"output_length":464,"hash_ids":[3192199,3192200,3192201,3192202,3192203,3192204],"delay":3268.4} +{"session_id":"sess-c171c9d62c74","input_length":1064,"output_length":487,"hash_ids":[3192205,3192206,3192207],"delay":15254.0} +{"session_id":"sess-c171c9d62c74","input_length":610,"output_length":1025,"hash_ids":[3192208,3192209],"delay":426.3} +{"session_id":"sess-71709b52e421","input_length":69000,"output_length":181,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3196063,3196064,3196065,3196066,3196067,3196068,3196069,3196070,3196071,3196072,3196073,3196074,3196075,3196076,3196077,3196078,3196079,3196080,3196081,3196082,3196083,3196084,3196085,3196086,3196087,3196088,3196089,3196090,3196091,3196092,3196093,3196094],"timestamp":0.0,"group_id":0} +{"session_id":"sess-71709b52e421","input_length":227,"output_length":75,"hash_ids":[3196095],"delay":264.3} +{"session_id":"sess-71709b52e421","input_length":4635,"output_length":355,"hash_ids":[3196096,3196097,3196098,3196099,3196100,3196101,3196102,3196103,3196104,3196105],"delay":1008.1} +{"session_id":"sess-71709b52e421","input_length":3632,"output_length":718,"hash_ids":[3196106,3196107,3196108,3196109,3196110,3196111,3196112,3196113],"delay":1807.5} +{"session_id":"sess-71709b52e421","input_length":2389,"output_length":757,"hash_ids":[3196114,3196115,3196116,3196117,3196118],"delay":38169.1} +{"session_id":"sess-71709b52e421","input_length":3348,"output_length":67,"hash_ids":[3196119,3196120,3196121,3196122,3196123,3196124,3196125],"delay":23001.2} +{"session_id":"sess-71709b52e421","input_length":509,"output_length":270,"hash_ids":[3196126],"delay":639.3} +{"session_id":"sess-71709b52e421","input_length":2936,"output_length":79,"hash_ids":[3196127,3196128,3196129,3196130,3196131,3196132],"delay":1726.5} +{"session_id":"sess-71709b52e421","input_length":2720,"output_length":633,"hash_ids":[3196133,3196134,3196135,3196136,3196137,3196138],"delay":1805.2} +{"session_id":"sess-71709b52e421","input_length":6145,"output_length":920,"hash_ids":[3196139,3196140,3196141,3196142,3196143,3196144,3196145,3196146,3196147,3196148,3196149,3196150,3196151],"delay":1230.0} +{"session_id":"sess-71709b52e421","input_length":6223,"output_length":207,"hash_ids":[3196152,3196153,3196154,3196155,3196156,3196157,3196158,3196159,3196160,3196161,3196162,3196163,3196164],"delay":3304.9} +{"session_id":"sess-71709b52e421","input_length":637,"output_length":145,"hash_ids":[3196165,3196166],"delay":254.7} +{"session_id":"sess-71709b52e421","input_length":115,"output_length":127,"hash_ids":[3196167],"delay":490.2} +{"session_id":"sess-71709b52e421","input_length":6659,"output_length":132,"hash_ids":[3196168,3196169,3196170,3196171,3196172,3196173,3196174,3196175,3196176,3196177,3196178,3196179,3196180,3196181],"delay":615.7} +{"session_id":"sess-71709b52e421","input_length":291,"output_length":519,"hash_ids":[3196182],"delay":466.0} +{"session_id":"sess-71709b52e421","input_length":9963,"output_length":286,"hash_ids":[3196183,3196184,3196185,3196186,3196187,3196188,3196189,3196190,3196191,3196192,3196193,3196194,3196195,3196196,3196197,3196198,3196199,3196200,3196201,3196202],"delay":749.3} +{"session_id":"sess-ec7a426ea4eb","input_length":54129,"output_length":144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,3200063,3200064,3200065],"timestamp":0.0,"group_id":14} +{"session_id":"sess-ec7a426ea4eb","input_length":2809,"output_length":301,"hash_ids":[3200066,3200067,3200068,3200069,3200070,3200071],"delay":4131.4} +{"session_id":"sess-ec7a426ea4eb","input_length":5180,"output_length":124,"hash_ids":[3200072,3200073,3200074,3200075,3200076,3200077,3200078,3200079,3200080,3200081,3200082],"delay":9791.8} +{"session_id":"sess-ec7a426ea4eb","input_length":758,"output_length":389,"hash_ids":[3200083,3200084],"delay":5475.9} +{"session_id":"sess-ec7a426ea4eb","input_length":886,"output_length":1406,"hash_ids":[3200085,3200086],"delay":1723.6} +{"session_id":"sess-ec7a426ea4eb","input_length":507,"output_length":86,"hash_ids":[3200087],"delay":3061.1} +{"session_id":"sess-ec7a426ea4eb","input_length":441,"output_length":531,"hash_ids":[3200088],"delay":60989.8} +{"session_id":"sess-ec7a426ea4eb","input_length":719,"output_length":611,"hash_ids":[3200089,3200090],"delay":7040.8} +{"session_id":"sess-ec7a426ea4eb","input_length":278,"output_length":192,"hash_ids":[3200091],"delay":538.6} +{"session_id":"sess-ec7a426ea4eb","input_length":1970,"output_length":675,"hash_ids":[3200092,3200093,3200094,3200095],"delay":1714.5} +{"session_id":"sess-ec7a426ea4eb","input_length":2243,"output_length":462,"hash_ids":[3200096,3200097,3200098,3200099,3200100],"delay":1220.1} +{"session_id":"sess-ec7a426ea4eb","input_length":877,"output_length":602,"hash_ids":[3200101,3200102],"delay":5181.9} +{"session_id":"sess-ec7a426ea4eb","input_length":910,"output_length":259,"hash_ids":[3200103,3200104],"delay":45614.4} +{"session_id":"sess-ec7a426ea4eb","input_length":3057,"output_length":173,"hash_ids":[3200105,3200106,3200107,3200108,3200109,3200110],"delay":590.1} +{"session_id":"sess-ec7a426ea4eb","input_length":264,"output_length":228,"hash_ids":[3200111],"delay":26873.4} +{"session_id":"sess-ec7a426ea4eb","input_length":7428,"output_length":277,"hash_ids":[3200112,3200113,3200114,3200115,3200116,3200117,3200118,3200119,3200120,3200121,3200122,3200123,3200124,3200125,3200126],"delay":8639.7} +{"session_id":"sess-ec7a426ea4eb","input_length":3683,"output_length":113,"hash_ids":[3200127,3200128,3200129,3200130,3200131,3200132,3200133,3200134],"delay":153.7} +{"session_id":"sess-ec7a426ea4eb","input_length":1489,"output_length":273,"hash_ids":[3200135,3200136,3200137],"delay":454.8} +{"session_id":"sess-ec7a426ea4eb","input_length":309,"output_length":167,"hash_ids":[3200138],"delay":1662.6} +{"session_id":"sess-ec7a426ea4eb","input_length":2079,"output_length":285,"hash_ids":[3200139,3200140,3200141,3200142,3200143],"delay":7104.5} +{"session_id":"sess-ec7a426ea4eb","input_length":936,"output_length":74,"hash_ids":[3200144,3200145],"delay":2317.4} +{"session_id":"sess-ec7a426ea4eb","input_length":2439,"output_length":285,"hash_ids":[3200146,3200147,3200148,3200149,3200150],"delay":836.3} +{"session_id":"sess-ec7a426ea4eb","input_length":722,"output_length":52,"hash_ids":[3200151,3200152],"delay":10455.2} +{"session_id":"sess-a8c6b1834495","input_length":57062,"output_length":579,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3204063,3204064,3204065,3204066,3204067,3204068,3204069,3204070,3204071],"timestamp":0.0,"group_id":6} +{"session_id":"sess-a8c6b1834495","input_length":1831,"output_length":195,"hash_ids":[3204072,3204073,3204074,3204075],"delay":1769.6} +{"session_id":"sess-a8c6b1834495","input_length":4284,"output_length":899,"hash_ids":[3204076,3204077,3204078,3204079,3204080,3204081,3204082,3204083,3204084],"delay":2572.8} +{"session_id":"sess-a8c6b1834495","input_length":3979,"output_length":99,"hash_ids":[3204085,3204086,3204087,3204088,3204089,3204090,3204091,3204092],"delay":2391.4} +{"session_id":"sess-a8c6b1834495","input_length":3576,"output_length":312,"hash_ids":[3204093,3204094,3204095,3204096,3204097,3204098,3204099],"delay":2156.1} +{"session_id":"sess-a8c6b1834495","input_length":735,"output_length":435,"hash_ids":[3204100,3204101],"delay":391.1} +{"session_id":"sess-a8c6b1834495","input_length":2892,"output_length":275,"hash_ids":[3204102,3204103,3204104,3204105,3204106,3204107],"delay":600.4} +{"session_id":"sess-a8c6b1834495","input_length":2772,"output_length":190,"hash_ids":[3204108,3204109,3204110,3204111,3204112,3204113],"delay":1149.7} +{"session_id":"sess-a8c6b1834495","input_length":7424,"output_length":250,"hash_ids":[3204114,3204115,3204116,3204117,3204118,3204119,3204120,3204121,3204122,3204123,3204124,3204125,3204126,3204127,3204128],"delay":627.4} +{"session_id":"sess-a8c6b1834495","input_length":1969,"output_length":164,"hash_ids":[3204129,3204130,3204131,3204132],"delay":17597.2} +{"session_id":"sess-a8c6b1834495","input_length":4753,"output_length":435,"hash_ids":[3204133,3204134,3204135,3204136,3204137,3204138,3204139,3204140,3204141,3204142],"delay":3433.7} +{"session_id":"sess-a8c6b1834495","input_length":1494,"output_length":220,"hash_ids":[3204143,3204144,3204145],"delay":4901.6} +{"session_id":"sess-a8c6b1834495","input_length":2359,"output_length":256,"hash_ids":[3204146,3204147,3204148,3204149,3204150],"delay":772.9} +{"session_id":"sess-a8c6b1834495","input_length":276,"output_length":461,"hash_ids":[3204151],"delay":678.2} +{"session_id":"sess-a8c6b1834495","input_length":1989,"output_length":1236,"hash_ids":[3204152,3204153,3204154,3204155],"delay":2591.0} +{"session_id":"sess-a8c6b1834495","input_length":2474,"output_length":214,"hash_ids":[3204156,3204157,3204158,3204159,3204160],"delay":1887.6} +{"session_id":"sess-a8c6b1834495","input_length":259,"output_length":532,"hash_ids":[3204161],"delay":387.7} +{"session_id":"sess-a8c6b1834495","input_length":2802,"output_length":284,"hash_ids":[3204162,3204163,3204164,3204165,3204166,3204167],"delay":1262.4} +{"session_id":"sess-d65f08d5124b","input_length":53161,"output_length":220,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,3208063],"timestamp":0.0,"group_id":45} +{"session_id":"sess-d65f08d5124b","input_length":1293,"output_length":946,"hash_ids":[3208064,3208065,3208066],"delay":1608.2} +{"session_id":"sess-d65f08d5124b","input_length":3631,"output_length":157,"hash_ids":[3208067,3208068,3208069,3208070,3208071,3208072,3208073,3208074],"delay":2084.6} +{"session_id":"sess-d65f08d5124b","input_length":7738,"output_length":41,"hash_ids":[3208075,3208076,3208077,3208078,3208079,3208080,3208081,3208082,3208083,3208084,3208085,3208086,3208087,3208088,3208089,3208090],"delay":349.4} +{"session_id":"sess-d65f08d5124b","input_length":6037,"output_length":231,"hash_ids":[3208091,3208092,3208093,3208094,3208095,3208096,3208097,3208098,3208099,3208100,3208101,3208102],"delay":267.3} +{"session_id":"sess-d65f08d5124b","input_length":320,"output_length":52,"hash_ids":[3208103],"delay":44127.6} +{"session_id":"sess-d65f08d5124b","input_length":2775,"output_length":192,"hash_ids":[3208104,3208105,3208106,3208107,3208108,3208109],"delay":468.8} +{"session_id":"sess-dfc859011a94","input_length":69732,"output_length":1151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3212063,3212064,3212065,3212066,3212067,3212068,3212069,3212070,3212071,3212072,3212073,3212074,3212075,3212076,3212077,3212078,3212079,3212080,3212081,3212082,3212083,3212084,3212085,3212086,3212087,3212088,3212089,3212090,3212091,3212092,3212093,3212094,3212095,3212096],"timestamp":0.0,"group_id":1} +{"session_id":"sess-dfc859011a94","input_length":235,"output_length":133,"hash_ids":[3212097],"delay":940.2} +{"session_id":"sess-dfc859011a94","input_length":2833,"output_length":834,"hash_ids":[3212098,3212099,3212100,3212101,3212102,3212103],"delay":1071.6} +{"session_id":"sess-dfc859011a94","input_length":1820,"output_length":292,"hash_ids":[3212104,3212105,3212106,3212107],"delay":422.3} +{"session_id":"sess-dfc859011a94","input_length":530,"output_length":118,"hash_ids":[3212108,3212109],"delay":16016.9} +{"session_id":"sess-dfc859011a94","input_length":622,"output_length":339,"hash_ids":[3212110,3212111],"delay":867.8} +{"session_id":"sess-dfc859011a94","input_length":586,"output_length":1809,"hash_ids":[3212112,3212113],"delay":2248.9} +{"session_id":"sess-dfc859011a94","input_length":5766,"output_length":335,"hash_ids":[3212114,3212115,3212116,3212117,3212118,3212119,3212120,3212121,3212122,3212123,3212124,3212125],"delay":869.0} +{"session_id":"sess-dfc859011a94","input_length":860,"output_length":236,"hash_ids":[3212126,3212127],"delay":573.0} +{"session_id":"sess-0f23ee5313e2","input_length":53928,"output_length":302,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3216063,3216064,3216065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0f23ee5313e2","input_length":270,"output_length":127,"hash_ids":[3216066],"delay":982.1} +{"session_id":"sess-0f23ee5313e2","input_length":2770,"output_length":505,"hash_ids":[3216067,3216068,3216069,3216070,3216071,3216072],"delay":811.7} +{"session_id":"sess-0f23ee5313e2","input_length":2841,"output_length":238,"hash_ids":[3216073,3216074,3216075,3216076,3216077,3216078],"delay":1077.4} +{"session_id":"sess-275c3b2d27a5","input_length":61233,"output_length":432,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3220063,3220064,3220065,3220066,3220067,3220068,3220069,3220070,3220071,3220072,3220073,3220074,3220075,3220076,3220077,3220078,3220079],"timestamp":0.0,"group_id":0} +{"session_id":"sess-275c3b2d27a5","input_length":6292,"output_length":109,"hash_ids":[3220080,3220081,3220082,3220083,3220084,3220085,3220086,3220087,3220088,3220089,3220090,3220091,3220092],"delay":1742.4} +{"session_id":"sess-275c3b2d27a5","input_length":4740,"output_length":102,"hash_ids":[3220093,3220094,3220095,3220096,3220097,3220098,3220099,3220100,3220101,3220102],"delay":1039.9} +{"session_id":"sess-275c3b2d27a5","input_length":555,"output_length":69,"hash_ids":[3220103,3220104],"delay":1591.3} +{"session_id":"sess-275c3b2d27a5","input_length":3078,"output_length":566,"hash_ids":[3220105,3220106,3220107,3220108,3220109,3220110,3220111],"delay":4780.0} +{"session_id":"sess-1e5c393f4a8f","input_length":52946,"output_length":165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3224063],"timestamp":0.0,"group_id":4} +{"session_id":"sess-1e5c393f4a8f","input_length":3883,"output_length":2246,"hash_ids":[3224064,3224065,3224066,3224067,3224068,3224069,3224070,3224071],"delay":431.7} +{"session_id":"sess-1e5c393f4a8f","input_length":3871,"output_length":115,"hash_ids":[3224072,3224073,3224074,3224075,3224076,3224077,3224078,3224079],"delay":5441.2} +{"session_id":"sess-1e5c393f4a8f","input_length":5276,"output_length":50,"hash_ids":[3224080,3224081,3224082,3224083,3224084,3224085,3224086,3224087,3224088,3224089,3224090],"delay":3824.5} +{"session_id":"sess-1e5c393f4a8f","input_length":2091,"output_length":319,"hash_ids":[3224091,3224092,3224093,3224094,3224095],"delay":921.7} +{"session_id":"sess-1e5c393f4a8f","input_length":747,"output_length":122,"hash_ids":[3224096,3224097],"delay":444.4} +{"session_id":"sess-1e5c393f4a8f","input_length":1993,"output_length":334,"hash_ids":[3224098,3224099,3224100,3224101],"delay":5360.0} +{"session_id":"sess-1e5c393f4a8f","input_length":704,"output_length":47,"hash_ids":[3224102,3224103],"delay":573.0} +{"session_id":"sess-1e5c393f4a8f","input_length":815,"output_length":893,"hash_ids":[3224104,3224105],"delay":343.7} +{"session_id":"sess-1e5c393f4a8f","input_length":634,"output_length":71,"hash_ids":[3224106,3224107],"delay":976.5} +{"session_id":"sess-1e5c393f4a8f","input_length":1734,"output_length":168,"hash_ids":[3224108,3224109,3224110,3224111],"delay":2047.5} +{"session_id":"sess-1e5c393f4a8f","input_length":248,"output_length":362,"hash_ids":[3224112],"delay":5278.5} +{"session_id":"sess-1e5c393f4a8f","input_length":1702,"output_length":1543,"hash_ids":[3224113,3224114,3224115,3224116],"delay":4291.4} +{"session_id":"sess-1e5c393f4a8f","input_length":1606,"output_length":1482,"hash_ids":[3224117,3224118,3224119,3224120],"delay":13011.7} +{"session_id":"sess-1e5c393f4a8f","input_length":2036,"output_length":196,"hash_ids":[3224121,3224122,3224123,3224124],"delay":890.5} +{"session_id":"sess-1e5c393f4a8f","input_length":926,"output_length":166,"hash_ids":[3224125,3224126],"delay":3208.8} +{"session_id":"sess-1e5c393f4a8f","input_length":663,"output_length":238,"hash_ids":[3224127,3224128],"delay":39846.3} +{"session_id":"sess-3dd07e287651","input_length":55310,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,3228063,3228064,3228065,3228066,3228067,3228068],"timestamp":0.0,"group_id":45} +{"session_id":"sess-3dd07e287651","input_length":308,"output_length":353,"hash_ids":[3228069],"delay":1121.8} +{"session_id":"sess-3dd07e287651","input_length":2892,"output_length":169,"hash_ids":[3228070,3228071,3228072,3228073,3228074,3228075],"delay":2699.4} +{"session_id":"sess-3dd07e287651","input_length":469,"output_length":421,"hash_ids":[3228076],"delay":1082.2} +{"session_id":"sess-3dd07e287651","input_length":1612,"output_length":187,"hash_ids":[3228077,3228078,3228079,3228080],"delay":372.7} +{"session_id":"sess-3dd07e287651","input_length":1799,"output_length":264,"hash_ids":[3228081,3228082,3228083,3228084],"delay":1466.4} +{"session_id":"sess-3dd07e287651","input_length":1814,"output_length":222,"hash_ids":[3228085,3228086,3228087,3228088],"delay":15850.2} +{"session_id":"sess-3dd07e287651","input_length":581,"output_length":332,"hash_ids":[3228089,3228090],"delay":4047.8} +{"session_id":"sess-3dd07e287651","input_length":482,"output_length":363,"hash_ids":[3228091],"delay":1159.1} +{"session_id":"sess-3dd07e287651","input_length":2086,"output_length":84,"hash_ids":[3228092,3228093,3228094,3228095,3228096],"delay":2274.2} +{"session_id":"sess-3dd07e287651","input_length":3756,"output_length":82,"hash_ids":[3228097,3228098,3228099,3228100,3228101,3228102,3228103,3228104],"delay":400.3} +{"session_id":"sess-3dd07e287651","input_length":489,"output_length":243,"hash_ids":[3228105],"delay":37893.4} +{"session_id":"sess-c90f0f4b613c","input_length":55406,"output_length":334,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3232063,3232064,3232065,3232066,3232067,3232068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c90f0f4b613c","input_length":862,"output_length":628,"hash_ids":[3232069,3232070],"delay":2455.7} +{"session_id":"sess-c90f0f4b613c","input_length":1531,"output_length":318,"hash_ids":[3232071,3232072,3232073],"delay":245.0} +{"session_id":"sess-c90f0f4b613c","input_length":587,"output_length":1821,"hash_ids":[3232074,3232075],"delay":1003.9} +{"session_id":"sess-c90f0f4b613c","input_length":957,"output_length":399,"hash_ids":[3232076,3232077],"delay":1600.8} +{"session_id":"sess-c90f0f4b613c","input_length":810,"output_length":129,"hash_ids":[3232078,3232079],"delay":536.9} +{"session_id":"sess-c90f0f4b613c","input_length":1874,"output_length":228,"hash_ids":[3232080,3232081,3232082,3232083],"delay":522.7} +{"session_id":"sess-c90f0f4b613c","input_length":580,"output_length":131,"hash_ids":[3232084,3232085],"delay":799.7} +{"session_id":"sess-c90f0f4b613c","input_length":1642,"output_length":218,"hash_ids":[3232086,3232087,3232088,3232089],"delay":833.4} +{"session_id":"sess-c90f0f4b613c","input_length":1141,"output_length":269,"hash_ids":[3232090,3232091,3232092],"delay":1025.0} +{"session_id":"sess-c90f0f4b613c","input_length":9108,"output_length":1741,"hash_ids":[3232093,3232094,3232095,3232096,3232097,3232098,3232099,3232100,3232101,3232102,3232103,3232104,3232105,3232106,3232107,3232108,3232109,3232110],"delay":14511.7} +{"session_id":"sess-c90f0f4b613c","input_length":3278,"output_length":324,"hash_ids":[3232111,3232112,3232113,3232114,3232115,3232116,3232117],"delay":30482.6} +{"session_id":"sess-c90f0f4b613c","input_length":390,"output_length":178,"hash_ids":[3232118],"delay":459.6} +{"session_id":"sess-c90f0f4b613c","input_length":3539,"output_length":300,"hash_ids":[3232119,3232120,3232121,3232122,3232123,3232124,3232125],"delay":952.9} +{"session_id":"sess-c90f0f4b613c","input_length":1857,"output_length":514,"hash_ids":[3232126,3232127,3232128,3232129],"delay":3032.1} +{"session_id":"sess-c90f0f4b613c","input_length":2187,"output_length":985,"hash_ids":[3232130,3232131,3232132,3232133,3232134],"delay":15160.5} +{"session_id":"sess-c90f0f4b613c","input_length":963,"output_length":2975,"hash_ids":[3232135,3232136],"delay":3488.1} +{"session_id":"sess-c90f0f4b613c","input_length":857,"output_length":234,"hash_ids":[3232137,3232138],"delay":1391.7} +{"session_id":"sess-c90f0f4b613c","input_length":830,"output_length":38,"hash_ids":[3232139,3232140],"delay":2404.3} +{"session_id":"sess-c90f0f4b613c","input_length":3896,"output_length":730,"hash_ids":[3232141,3232142,3232143,3232144,3232145,3232146,3232147,3232148],"delay":846.6} +{"session_id":"sess-c90f0f4b613c","input_length":654,"output_length":2322,"hash_ids":[3232149,3232150],"delay":445.6} +{"session_id":"sess-c90f0f4b613c","input_length":6676,"output_length":1441,"hash_ids":[3232151,3232152,3232153,3232154,3232155,3232156,3232157,3232158,3232159,3232160,3232161,3232162,3232163,3232164],"delay":4875.4} +{"session_id":"sess-c90f0f4b613c","input_length":169,"output_length":141,"hash_ids":[3232165],"delay":836.6} +{"session_id":"sess-c90f0f4b613c","input_length":1146,"output_length":166,"hash_ids":[3232166,3232167,3232168],"delay":17654.2} +{"session_id":"sess-c90f0f4b613c","input_length":3865,"output_length":167,"hash_ids":[3232169,3232170,3232171,3232172,3232173,3232174,3232175,3232176],"delay":312.4} +{"session_id":"sess-2ae018ea169b","input_length":60889,"output_length":259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,3236063,3236064,3236065,3236066,3236067,3236068,3236069,3236070,3236071,3236072,3236073,3236074,3236075,3236076,3236077,3236078],"timestamp":0.0,"group_id":13} +{"session_id":"sess-2ae018ea169b","input_length":3243,"output_length":328,"hash_ids":[3236079,3236080,3236081,3236082,3236083,3236084,3236085],"delay":7603.5} +{"session_id":"sess-2ae018ea169b","input_length":359,"output_length":170,"hash_ids":[3236086],"delay":1847.9} +{"session_id":"sess-2ae018ea169b","input_length":3994,"output_length":277,"hash_ids":[3236087,3236088,3236089,3236090,3236091,3236092,3236093,3236094],"delay":1068.1} +{"session_id":"sess-2ae018ea169b","input_length":6141,"output_length":178,"hash_ids":[3236095,3236096,3236097,3236098,3236099,3236100,3236101,3236102,3236103,3236104,3236105,3236106],"delay":2507.7} +{"session_id":"sess-2ae018ea169b","input_length":4268,"output_length":131,"hash_ids":[3236107,3236108,3236109,3236110,3236111,3236112,3236113,3236114,3236115],"delay":1312.2} +{"session_id":"sess-2ae018ea169b","input_length":3674,"output_length":231,"hash_ids":[3236116,3236117,3236118,3236119,3236120,3236121,3236122,3236123],"delay":738.5} +{"session_id":"sess-2ae018ea169b","input_length":1461,"output_length":1371,"hash_ids":[3236124,3236125,3236126],"delay":1164.1} +{"session_id":"sess-2ae018ea169b","input_length":834,"output_length":337,"hash_ids":[3236127,3236128],"delay":2519.2} +{"session_id":"sess-664e358e0b07","input_length":55706,"output_length":330,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3240063,3240064,3240065,3240066,3240067,3240068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-664e358e0b07","input_length":543,"output_length":59,"hash_ids":[3240069,3240070],"delay":749.4} +{"session_id":"sess-664e358e0b07","input_length":319,"output_length":385,"hash_ids":[3240071],"delay":6162.2} +{"session_id":"sess-664e358e0b07","input_length":9569,"output_length":2074,"hash_ids":[3240072,3240073,3240074,3240075,3240076,3240077,3240078,3240079,3240080,3240081,3240082,3240083,3240084,3240085,3240086,3240087,3240088,3240089,3240090],"delay":2072.1} +{"session_id":"sess-664e358e0b07","input_length":2464,"output_length":506,"hash_ids":[3240091,3240092,3240093,3240094,3240095],"delay":596.5} +{"session_id":"sess-664e358e0b07","input_length":8917,"output_length":142,"hash_ids":[3240096,3240097,3240098,3240099,3240100,3240101,3240102,3240103,3240104,3240105,3240106,3240107,3240108,3240109,3240110,3240111,3240112,3240113],"delay":1014.1} +{"session_id":"sess-664e358e0b07","input_length":7038,"output_length":426,"hash_ids":[3240114,3240115,3240116,3240117,3240118,3240119,3240120,3240121,3240122,3240123,3240124,3240125,3240126,3240127],"delay":1139.1} +{"session_id":"sess-664e358e0b07","input_length":1765,"output_length":647,"hash_ids":[3240128,3240129,3240130,3240131],"delay":11680.4} +{"session_id":"sess-664e358e0b07","input_length":89,"output_length":1090,"hash_ids":[3240132],"delay":1144.7} +{"session_id":"sess-664e358e0b07","input_length":1391,"output_length":252,"hash_ids":[3240133,3240134,3240135],"delay":569.0} +{"session_id":"sess-664e358e0b07","input_length":741,"output_length":294,"hash_ids":[3240136,3240137],"delay":1353.8} +{"session_id":"sess-664e358e0b07","input_length":4202,"output_length":95,"hash_ids":[3240138,3240139,3240140,3240141,3240142,3240143,3240144,3240145,3240146],"delay":1032.5} +{"session_id":"sess-664e358e0b07","input_length":1819,"output_length":631,"hash_ids":[3240147,3240148,3240149,3240150],"delay":27594.8} +{"session_id":"sess-664e358e0b07","input_length":6072,"output_length":196,"hash_ids":[3240151,3240152,3240153,3240154,3240155,3240156,3240157,3240158,3240159,3240160,3240161,3240162],"delay":926.0} +{"session_id":"sess-664e358e0b07","input_length":7146,"output_length":904,"hash_ids":[3240163,3240164,3240165,3240166,3240167,3240168,3240169,3240170,3240171,3240172,3240173,3240174,3240175,3240176],"delay":10390.7} +{"session_id":"sess-664e358e0b07","input_length":1398,"output_length":123,"hash_ids":[3240177,3240178,3240179],"delay":59.0} +{"session_id":"sess-664e358e0b07","input_length":1206,"output_length":743,"hash_ids":[3240180,3240181,3240182],"delay":1004.7} +{"session_id":"sess-664e358e0b07","input_length":1815,"output_length":309,"hash_ids":[3240183,3240184,3240185,3240186],"delay":1713.8} +{"session_id":"sess-664e358e0b07","input_length":5687,"output_length":771,"hash_ids":[3240187,3240188,3240189,3240190,3240191,3240192,3240193,3240194,3240195,3240196,3240197,3240198],"delay":96.4} +{"session_id":"sess-664e358e0b07","input_length":1405,"output_length":122,"hash_ids":[3240199,3240200,3240201],"delay":988.8} +{"session_id":"sess-664e358e0b07","input_length":96,"output_length":30,"hash_ids":[3240202],"delay":85.0} +{"session_id":"sess-664e358e0b07","input_length":1499,"output_length":63,"hash_ids":[3240203,3240204,3240205],"delay":935.5} +{"session_id":"sess-f3acc94cd1a2","input_length":62116,"output_length":688,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,3244063,3244064,3244065,3244066,3244067,3244068,3244069,3244070,3244071,3244072,3244073,3244074,3244075,3244076,3244077,3244078,3244079,3244080,3244081],"timestamp":0.0,"group_id":36} +{"session_id":"sess-f3acc94cd1a2","input_length":2630,"output_length":1288,"hash_ids":[3244082,3244083,3244084,3244085,3244086,3244087],"delay":903.3} +{"session_id":"sess-f3acc94cd1a2","input_length":2517,"output_length":86,"hash_ids":[3244088,3244089,3244090,3244091,3244092],"delay":6329.5} +{"session_id":"sess-f3acc94cd1a2","input_length":7608,"output_length":160,"hash_ids":[3244093,3244094,3244095,3244096,3244097,3244098,3244099,3244100,3244101,3244102,3244103,3244104,3244105,3244106,3244107],"delay":570.8} +{"session_id":"sess-f3acc94cd1a2","input_length":3995,"output_length":49,"hash_ids":[3244108,3244109,3244110,3244111,3244112,3244113,3244114,3244115],"delay":15157.7} +{"session_id":"sess-f3acc94cd1a2","input_length":1708,"output_length":628,"hash_ids":[3244116,3244117,3244118,3244119],"delay":28881.2} +{"session_id":"sess-f3acc94cd1a2","input_length":356,"output_length":609,"hash_ids":[3244120],"delay":18842.8} +{"session_id":"sess-f3acc94cd1a2","input_length":2964,"output_length":742,"hash_ids":[3244121,3244122,3244123,3244124,3244125,3244126],"delay":882.0} +{"session_id":"sess-f3acc94cd1a2","input_length":574,"output_length":81,"hash_ids":[3244127,3244128],"delay":25861.7} +{"session_id":"sess-f3acc94cd1a2","input_length":1599,"output_length":395,"hash_ids":[3244129,3244130,3244131,3244132],"delay":1640.5} +{"session_id":"sess-f3acc94cd1a2","input_length":7628,"output_length":267,"hash_ids":[3244133,3244134,3244135,3244136,3244137,3244138,3244139,3244140,3244141,3244142,3244143,3244144,3244145,3244146,3244147],"delay":1058.3} +{"session_id":"sess-f3acc94cd1a2","input_length":2334,"output_length":131,"hash_ids":[3244148,3244149,3244150,3244151,3244152],"delay":994.6} +{"session_id":"sess-f3acc94cd1a2","input_length":846,"output_length":451,"hash_ids":[3244153,3244154],"delay":737.5} +{"session_id":"sess-f3acc94cd1a2","input_length":698,"output_length":31,"hash_ids":[3244155,3244156],"delay":924.0} +{"session_id":"sess-f3acc94cd1a2","input_length":2741,"output_length":204,"hash_ids":[3244157,3244158,3244159,3244160,3244161,3244162],"delay":705.4} +{"session_id":"sess-f3acc94cd1a2","input_length":2775,"output_length":163,"hash_ids":[3244163,3244164,3244165,3244166,3244167,3244168],"delay":2229.4} +{"session_id":"sess-f3acc94cd1a2","input_length":717,"output_length":259,"hash_ids":[3244169,3244170],"delay":275.7} +{"session_id":"sess-f3acc94cd1a2","input_length":889,"output_length":2619,"hash_ids":[3244171,3244172],"delay":1105.1} +{"session_id":"sess-f3acc94cd1a2","input_length":1425,"output_length":147,"hash_ids":[3244173,3244174,3244175],"delay":1047.7} +{"session_id":"sess-f3acc94cd1a2","input_length":2088,"output_length":553,"hash_ids":[3244176,3244177,3244178,3244179,3244180],"delay":205.2} +{"session_id":"sess-f3acc94cd1a2","input_length":2128,"output_length":137,"hash_ids":[3244181,3244182,3244183,3244184,3244185],"delay":956.3} +{"session_id":"sess-f3acc94cd1a2","input_length":3763,"output_length":503,"hash_ids":[3244186,3244187,3244188,3244189,3244190,3244191,3244192,3244193],"delay":17591.3} +{"session_id":"sess-f3acc94cd1a2","input_length":259,"output_length":1074,"hash_ids":[3244194],"delay":1001.9} +{"session_id":"sess-f3acc94cd1a2","input_length":3477,"output_length":418,"hash_ids":[3244195,3244196,3244197,3244198,3244199,3244200,3244201],"delay":1897.2} +{"session_id":"sess-f3acc94cd1a2","input_length":228,"output_length":128,"hash_ids":[3244202],"delay":378.0} +{"session_id":"sess-f6445c8fe35d","input_length":54669,"output_length":216,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3248063,3248064,3248065,3248066],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f6445c8fe35d","input_length":210,"output_length":386,"hash_ids":[3248067],"delay":1426.2} +{"session_id":"sess-f6445c8fe35d","input_length":7444,"output_length":728,"hash_ids":[3248068,3248069,3248070,3248071,3248072,3248073,3248074,3248075,3248076,3248077,3248078,3248079,3248080,3248081,3248082],"delay":16725.2} +{"session_id":"sess-f6445c8fe35d","input_length":751,"output_length":159,"hash_ids":[3248083,3248084],"delay":4204.3} +{"session_id":"sess-f6445c8fe35d","input_length":1457,"output_length":654,"hash_ids":[3248085,3248086,3248087],"delay":441.7} +{"session_id":"sess-f6445c8fe35d","input_length":5077,"output_length":111,"hash_ids":[3248088,3248089,3248090,3248091,3248092,3248093,3248094,3248095,3248096,3248097],"delay":840.1} +{"session_id":"sess-f6445c8fe35d","input_length":1528,"output_length":912,"hash_ids":[3248098,3248099,3248100],"delay":177.4} +{"session_id":"sess-f6445c8fe35d","input_length":3413,"output_length":170,"hash_ids":[3248101,3248102,3248103,3248104,3248105,3248106,3248107],"delay":11808.1} +{"session_id":"sess-f6445c8fe35d","input_length":3001,"output_length":373,"hash_ids":[3248108,3248109,3248110,3248111,3248112,3248113],"delay":763.6} +{"session_id":"sess-f6445c8fe35d","input_length":618,"output_length":1172,"hash_ids":[3248114,3248115],"delay":1926.3} +{"session_id":"sess-f6445c8fe35d","input_length":4721,"output_length":399,"hash_ids":[3248116,3248117,3248118,3248119,3248120,3248121,3248122,3248123,3248124,3248125],"delay":8569.1} +{"session_id":"sess-f6445c8fe35d","input_length":88,"output_length":2062,"hash_ids":[3248126],"delay":1242.1} +{"session_id":"sess-f6445c8fe35d","input_length":169,"output_length":1873,"hash_ids":[3248127],"delay":690.0} +{"session_id":"sess-f6445c8fe35d","input_length":372,"output_length":135,"hash_ids":[3248128],"delay":2858.9} +{"session_id":"sess-f6445c8fe35d","input_length":415,"output_length":210,"hash_ids":[3248129],"delay":1886.1} +{"session_id":"sess-f6445c8fe35d","input_length":6459,"output_length":1225,"hash_ids":[3248130,3248131,3248132,3248133,3248134,3248135,3248136,3248137,3248138,3248139,3248140,3248141,3248142],"delay":397.8} +{"session_id":"sess-f6445c8fe35d","input_length":3159,"output_length":584,"hash_ids":[3248143,3248144,3248145,3248146,3248147,3248148,3248149],"delay":15012.5} +{"session_id":"sess-f6445c8fe35d","input_length":1605,"output_length":326,"hash_ids":[3248150,3248151,3248152,3248153],"delay":9065.3} +{"session_id":"sess-f6445c8fe35d","input_length":240,"output_length":715,"hash_ids":[3248154],"delay":3672.4} +{"session_id":"sess-f6445c8fe35d","input_length":3270,"output_length":256,"hash_ids":[3248155,3248156,3248157,3248158,3248159,3248160,3248161],"delay":197.6} +{"session_id":"sess-f6445c8fe35d","input_length":673,"output_length":684,"hash_ids":[3248162,3248163],"delay":1383.2} +{"session_id":"sess-f6445c8fe35d","input_length":2901,"output_length":229,"hash_ids":[3248164,3248165,3248166,3248167,3248168,3248169],"delay":183.6} +{"session_id":"sess-f6445c8fe35d","input_length":7561,"output_length":403,"hash_ids":[3248170,3248171,3248172,3248173,3248174,3248175,3248176,3248177,3248178,3248179,3248180,3248181,3248182,3248183,3248184],"delay":245.7} +{"session_id":"sess-f6445c8fe35d","input_length":3358,"output_length":36,"hash_ids":[3248185,3248186,3248187,3248188,3248189,3248190,3248191],"delay":79.0} +{"session_id":"sess-cf36cd1a160b","input_length":55060,"output_length":1036,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3252063,3252064,3252065,3252066,3252067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cf36cd1a160b","input_length":2304,"output_length":789,"hash_ids":[3252068,3252069,3252070,3252071,3252072],"delay":1116.2} +{"session_id":"sess-cf36cd1a160b","input_length":2512,"output_length":1003,"hash_ids":[3252073,3252074,3252075,3252076,3252077],"delay":641.4} +{"session_id":"sess-cf36cd1a160b","input_length":4078,"output_length":976,"hash_ids":[3252078,3252079,3252080,3252081,3252082,3252083,3252084,3252085],"delay":8107.2} +{"session_id":"sess-d528486ee2f0","input_length":54156,"output_length":2034,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3256063,3256064,3256065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-d528486ee2f0","input_length":1094,"output_length":563,"hash_ids":[3256066,3256067,3256068],"delay":1064.3} +{"session_id":"sess-d528486ee2f0","input_length":6569,"output_length":325,"hash_ids":[3256069,3256070,3256071,3256072,3256073,3256074,3256075,3256076,3256077,3256078,3256079,3256080,3256081],"delay":858.7} +{"session_id":"sess-d528486ee2f0","input_length":727,"output_length":647,"hash_ids":[3256082,3256083],"delay":2539.6} +{"session_id":"sess-d528486ee2f0","input_length":2636,"output_length":36,"hash_ids":[3256084,3256085,3256086,3256087,3256088,3256089],"delay":1050.7} +{"session_id":"sess-d528486ee2f0","input_length":1457,"output_length":552,"hash_ids":[3256090,3256091,3256092],"delay":21454.9} +{"session_id":"sess-d528486ee2f0","input_length":2155,"output_length":77,"hash_ids":[3256093,3256094,3256095,3256096,3256097],"delay":586.7} +{"session_id":"sess-d528486ee2f0","input_length":544,"output_length":271,"hash_ids":[3256098,3256099],"delay":380.7} +{"session_id":"sess-d528486ee2f0","input_length":2020,"output_length":130,"hash_ids":[3256100,3256101,3256102,3256103],"delay":21822.4} +{"session_id":"sess-d528486ee2f0","input_length":2573,"output_length":683,"hash_ids":[3256104,3256105,3256106,3256107,3256108,3256109],"delay":140.5} +{"session_id":"sess-d528486ee2f0","input_length":1160,"output_length":939,"hash_ids":[3256110,3256111,3256112],"delay":1105.6} +{"session_id":"sess-d528486ee2f0","input_length":991,"output_length":132,"hash_ids":[3256113,3256114],"delay":192.9} +{"session_id":"sess-d528486ee2f0","input_length":757,"output_length":243,"hash_ids":[3256115,3256116],"delay":249.9} +{"session_id":"sess-d528486ee2f0","input_length":817,"output_length":1657,"hash_ids":[3256117,3256118],"delay":1464.3} +{"session_id":"sess-d528486ee2f0","input_length":5032,"output_length":164,"hash_ids":[3256119,3256120,3256121,3256122,3256123,3256124,3256125,3256126,3256127,3256128],"delay":1946.4} +{"session_id":"sess-d528486ee2f0","input_length":400,"output_length":139,"hash_ids":[3256129],"delay":891.0} +{"session_id":"sess-d528486ee2f0","input_length":8070,"output_length":219,"hash_ids":[3256130,3256131,3256132,3256133,3256134,3256135,3256136,3256137,3256138,3256139,3256140,3256141,3256142,3256143,3256144,3256145],"delay":1121.9} +{"session_id":"sess-d528486ee2f0","input_length":2118,"output_length":827,"hash_ids":[3256146,3256147,3256148,3256149,3256150],"delay":647.5} +{"session_id":"sess-d528486ee2f0","input_length":314,"output_length":264,"hash_ids":[3256151],"delay":3581.7} +{"session_id":"sess-d528486ee2f0","input_length":1742,"output_length":38,"hash_ids":[3256152,3256153,3256154,3256155],"delay":2499.0} +{"session_id":"sess-d528486ee2f0","input_length":2170,"output_length":752,"hash_ids":[3256156,3256157,3256158,3256159,3256160],"delay":384.5} +{"session_id":"sess-d528486ee2f0","input_length":467,"output_length":721,"hash_ids":[3256161],"delay":135.8} +{"session_id":"sess-d528486ee2f0","input_length":1264,"output_length":527,"hash_ids":[3256162,3256163,3256164],"delay":1154.7} +{"session_id":"sess-d528486ee2f0","input_length":3560,"output_length":246,"hash_ids":[3256165,3256166,3256167,3256168,3256169,3256170,3256171],"delay":235.3} +{"session_id":"sess-d528486ee2f0","input_length":4112,"output_length":478,"hash_ids":[3256172,3256173,3256174,3256175,3256176,3256177,3256178,3256179,3256180],"delay":1042.5} +{"session_id":"sess-d528486ee2f0","input_length":2653,"output_length":237,"hash_ids":[3256181,3256182,3256183,3256184,3256185,3256186],"delay":1865.4} +{"session_id":"sess-d528486ee2f0","input_length":1582,"output_length":167,"hash_ids":[3256187,3256188,3256189,3256190],"delay":460.9} +{"session_id":"sess-3a4db0cca772","input_length":55861,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3260063,3260064,3260065,3260066,3260067,3260068,3260069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3a4db0cca772","input_length":4656,"output_length":127,"hash_ids":[3260070,3260071,3260072,3260073,3260074,3260075,3260076,3260077,3260078,3260079],"delay":9803.2} +{"session_id":"sess-3a4db0cca772","input_length":642,"output_length":93,"hash_ids":[3260080,3260081],"delay":2162.0} +{"session_id":"sess-3a4db0cca772","input_length":8125,"output_length":1369,"hash_ids":[3260082,3260083,3260084,3260085,3260086,3260087,3260088,3260089,3260090,3260091,3260092,3260093,3260094,3260095,3260096,3260097],"delay":890.7} +{"session_id":"sess-3a4db0cca772","input_length":5032,"output_length":392,"hash_ids":[3260098,3260099,3260100,3260101,3260102,3260103,3260104,3260105,3260106,3260107],"delay":355.1} +{"session_id":"sess-9b4ddf9f14d8","input_length":55276,"output_length":1085,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,3264063,3264064,3264065,3264066,3264067],"timestamp":0.0,"group_id":9} +{"session_id":"sess-9b4ddf9f14d8","input_length":1336,"output_length":69,"hash_ids":[3264068,3264069,3264070],"delay":38001.8} +{"session_id":"sess-9b4ddf9f14d8","input_length":3499,"output_length":170,"hash_ids":[3264071,3264072,3264073,3264074,3264075,3264076,3264077],"delay":5704.7} +{"session_id":"sess-9b4ddf9f14d8","input_length":225,"output_length":36,"hash_ids":[3264078],"delay":747.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":1676,"output_length":821,"hash_ids":[3264079,3264080,3264081,3264082],"delay":824.0} +{"session_id":"sess-9b4ddf9f14d8","input_length":944,"output_length":2258,"hash_ids":[3264083,3264084],"delay":438.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":2773,"output_length":308,"hash_ids":[3264085,3264086,3264087,3264088,3264089,3264090],"delay":3570.8} +{"session_id":"sess-9b4ddf9f14d8","input_length":904,"output_length":210,"hash_ids":[3264091,3264092],"delay":972.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":3247,"output_length":728,"hash_ids":[3264093,3264094,3264095,3264096,3264097,3264098,3264099],"delay":2934.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":1080,"output_length":484,"hash_ids":[3264100,3264101,3264102],"delay":828.7} +{"session_id":"sess-9b4ddf9f14d8","input_length":2646,"output_length":211,"hash_ids":[3264103,3264104,3264105,3264106,3264107,3264108],"delay":17232.2} +{"session_id":"sess-9b4ddf9f14d8","input_length":7879,"output_length":152,"hash_ids":[3264109,3264110,3264111,3264112,3264113,3264114,3264115,3264116,3264117,3264118,3264119,3264120,3264121,3264122,3264123,3264124],"delay":2683.6} +{"session_id":"sess-9b4ddf9f14d8","input_length":5936,"output_length":131,"hash_ids":[3264125,3264126,3264127,3264128,3264129,3264130,3264131,3264132,3264133,3264134,3264135,3264136],"delay":283.9} +{"session_id":"sess-9b4ddf9f14d8","input_length":1217,"output_length":457,"hash_ids":[3264137,3264138,3264139],"delay":286.9} +{"session_id":"sess-9b4ddf9f14d8","input_length":1828,"output_length":152,"hash_ids":[3264140,3264141,3264142,3264143],"delay":288.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":1866,"output_length":119,"hash_ids":[3264144,3264145,3264146,3264147],"delay":816.2} +{"session_id":"sess-9b4ddf9f14d8","input_length":280,"output_length":825,"hash_ids":[3264148],"delay":1188.2} +{"session_id":"sess-9b4ddf9f14d8","input_length":1932,"output_length":178,"hash_ids":[3264149,3264150,3264151,3264152],"delay":642.7} +{"session_id":"sess-9b4ddf9f14d8","input_length":646,"output_length":1022,"hash_ids":[3264153,3264154],"delay":368.3} +{"session_id":"sess-9b4ddf9f14d8","input_length":3928,"output_length":94,"hash_ids":[3264155,3264156,3264157,3264158,3264159,3264160,3264161,3264162],"delay":1030.0} +{"session_id":"sess-9b4ddf9f14d8","input_length":2522,"output_length":245,"hash_ids":[3264163,3264164,3264165,3264166,3264167],"delay":5507.6} +{"session_id":"sess-9b4ddf9f14d8","input_length":172,"output_length":919,"hash_ids":[3264168],"delay":693.0} +{"session_id":"sess-9b4ddf9f14d8","input_length":5285,"output_length":30,"hash_ids":[3264169,3264170,3264171,3264172,3264173,3264174,3264175,3264176,3264177,3264178,3264179],"delay":4602.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":387,"output_length":308,"hash_ids":[3264180],"delay":10230.6} +{"session_id":"sess-9b4ddf9f14d8","input_length":3634,"output_length":333,"hash_ids":[3264181,3264182,3264183,3264184,3264185,3264186,3264187,3264188],"delay":7597.4} +{"session_id":"sess-9b4ddf9f14d8","input_length":6959,"output_length":742,"hash_ids":[3264189,3264190,3264191,3264192,3264193,3264194,3264195,3264196,3264197,3264198,3264199,3264200,3264201,3264202],"delay":1799.5} +{"session_id":"sess-2c7787618cda","input_length":63331,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3268063,3268064,3268065,3268066,3268067,3268068,3268069,3268070,3268071,3268072,3268073,3268074,3268075,3268076,3268077,3268078,3268079,3268080,3268081,3268082,3268083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2c7787618cda","input_length":325,"output_length":279,"hash_ids":[3268084],"delay":994.5} +{"session_id":"sess-2c7787618cda","input_length":4061,"output_length":560,"hash_ids":[3268085,3268086,3268087,3268088,3268089,3268090,3268091,3268092],"delay":2205.6} +{"session_id":"sess-2c7787618cda","input_length":2213,"output_length":199,"hash_ids":[3268093,3268094,3268095,3268096,3268097],"delay":1582.1} +{"session_id":"sess-2c7787618cda","input_length":3348,"output_length":399,"hash_ids":[3268098,3268099,3268100,3268101,3268102,3268103,3268104],"delay":1046.2} +{"session_id":"sess-2c7787618cda","input_length":608,"output_length":2389,"hash_ids":[3268105,3268106],"delay":9250.9} +{"session_id":"sess-2c7787618cda","input_length":2278,"output_length":370,"hash_ids":[3268107,3268108,3268109,3268110,3268111],"delay":35368.8} +{"session_id":"sess-2c7787618cda","input_length":467,"output_length":185,"hash_ids":[3268112],"delay":25663.7} +{"session_id":"sess-2c7787618cda","input_length":199,"output_length":461,"hash_ids":[3268113],"delay":3406.4} +{"session_id":"sess-2c7787618cda","input_length":3949,"output_length":366,"hash_ids":[3268114,3268115,3268116,3268117,3268118,3268119,3268120,3268121],"delay":538.2} +{"session_id":"sess-2c7787618cda","input_length":1172,"output_length":142,"hash_ids":[3268122,3268123,3268124],"delay":6847.7} +{"session_id":"sess-2c7787618cda","input_length":562,"output_length":66,"hash_ids":[3268125,3268126],"delay":1735.2} +{"session_id":"sess-2c7787618cda","input_length":3221,"output_length":169,"hash_ids":[3268127,3268128,3268129,3268130,3268131,3268132,3268133],"delay":1313.2} +{"session_id":"sess-2c7787618cda","input_length":4325,"output_length":277,"hash_ids":[3268134,3268135,3268136,3268137,3268138,3268139,3268140,3268141,3268142],"delay":10188.3} +{"session_id":"sess-2c7787618cda","input_length":2024,"output_length":467,"hash_ids":[3268143,3268144,3268145,3268146],"delay":3477.1} +{"session_id":"sess-2c7787618cda","input_length":7150,"output_length":474,"hash_ids":[3268147,3268148,3268149,3268150,3268151,3268152,3268153,3268154,3268155,3268156,3268157,3268158,3268159,3268160],"delay":1315.2} +{"session_id":"sess-2c7787618cda","input_length":259,"output_length":1032,"hash_ids":[3268161],"delay":386.5} +{"session_id":"sess-2c7787618cda","input_length":661,"output_length":525,"hash_ids":[3268162,3268163],"delay":236.9} +{"session_id":"sess-2c7787618cda","input_length":394,"output_length":1268,"hash_ids":[3268164],"delay":469.6} +{"session_id":"sess-2c7787618cda","input_length":861,"output_length":352,"hash_ids":[3268165,3268166],"delay":652.8} +{"session_id":"sess-2c7787618cda","input_length":8018,"output_length":132,"hash_ids":[3268167,3268168,3268169,3268170,3268171,3268172,3268173,3268174,3268175,3268176,3268177,3268178,3268179,3268180,3268181,3268182],"delay":6911.9} +{"session_id":"sess-2c7787618cda","input_length":2520,"output_length":93,"hash_ids":[3268183,3268184,3268185,3268186,3268187],"delay":505.7} +{"session_id":"sess-2c7787618cda","input_length":2036,"output_length":1012,"hash_ids":[3268188,3268189,3268190,3268191],"delay":7679.2} +{"session_id":"sess-2c7787618cda","input_length":785,"output_length":576,"hash_ids":[3268192,3268193],"delay":242.9} +{"session_id":"sess-4c25684a78e5","input_length":57339,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3272063,3272064,3272065,3272066,3272067,3272068,3272069,3272070,3272071],"timestamp":0.0,"group_id":11} +{"session_id":"sess-4c25684a78e5","input_length":2635,"output_length":347,"hash_ids":[3272072,3272073,3272074,3272075,3272076,3272077],"delay":72086.3} +{"session_id":"sess-4c25684a78e5","input_length":1670,"output_length":86,"hash_ids":[3272078,3272079,3272080,3272081],"delay":537.7} +{"session_id":"sess-4c25684a78e5","input_length":856,"output_length":1312,"hash_ids":[3272082,3272083],"delay":202.7} +{"session_id":"sess-4c25684a78e5","input_length":3317,"output_length":623,"hash_ids":[3272084,3272085,3272086,3272087,3272088,3272089,3272090],"delay":17498.0} +{"session_id":"sess-4c25684a78e5","input_length":592,"output_length":721,"hash_ids":[3272091,3272092],"delay":736.3} +{"session_id":"sess-4c25684a78e5","input_length":4601,"output_length":371,"hash_ids":[3272093,3272094,3272095,3272096,3272097,3272098,3272099,3272100,3272101],"delay":545.7} +{"session_id":"sess-4c25684a78e5","input_length":1852,"output_length":124,"hash_ids":[3272102,3272103,3272104,3272105],"delay":13040.8} +{"session_id":"sess-4c25684a78e5","input_length":3506,"output_length":116,"hash_ids":[3272106,3272107,3272108,3272109,3272110,3272111,3272112],"delay":1009.3} +{"session_id":"sess-4c25684a78e5","input_length":4873,"output_length":149,"hash_ids":[3272113,3272114,3272115,3272116,3272117,3272118,3272119,3272120,3272121,3272122],"delay":931.9} +{"session_id":"sess-4c25684a78e5","input_length":3691,"output_length":570,"hash_ids":[3272123,3272124,3272125,3272126,3272127,3272128,3272129,3272130],"delay":656.0} +{"session_id":"sess-4c25684a78e5","input_length":5323,"output_length":58,"hash_ids":[3272131,3272132,3272133,3272134,3272135,3272136,3272137,3272138,3272139,3272140,3272141],"delay":7998.6} +{"session_id":"sess-4c25684a78e5","input_length":643,"output_length":69,"hash_ids":[3272142,3272143],"delay":347.3} +{"session_id":"sess-4c25684a78e5","input_length":1871,"output_length":404,"hash_ids":[3272144,3272145,3272146,3272147],"delay":502.3} +{"session_id":"sess-4c25684a78e5","input_length":1204,"output_length":185,"hash_ids":[3272148,3272149,3272150],"delay":29671.3} +{"session_id":"sess-4c25684a78e5","input_length":1306,"output_length":737,"hash_ids":[3272151,3272152,3272153],"delay":2211.0} +{"session_id":"sess-4c25684a78e5","input_length":7233,"output_length":523,"hash_ids":[3272154,3272155,3272156,3272157,3272158,3272159,3272160,3272161,3272162,3272163,3272164,3272165,3272166,3272167,3272168],"delay":8933.1} +{"session_id":"sess-4c25684a78e5","input_length":1043,"output_length":311,"hash_ids":[3272169,3272170,3272171],"delay":648.5} +{"session_id":"sess-4c25684a78e5","input_length":2341,"output_length":272,"hash_ids":[3272172,3272173,3272174,3272175,3272176],"delay":9994.4} +{"session_id":"sess-4c25684a78e5","input_length":424,"output_length":137,"hash_ids":[3272177],"delay":1900.9} +{"session_id":"sess-4c25684a78e5","input_length":563,"output_length":253,"hash_ids":[3272178,3272179],"delay":643.9} +{"session_id":"sess-4c25684a78e5","input_length":612,"output_length":204,"hash_ids":[3272180,3272181],"delay":22701.7} +{"session_id":"sess-392a003b94e3","input_length":54831,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3276063,3276064,3276065,3276066,3276067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-392a003b94e3","input_length":3130,"output_length":592,"hash_ids":[3276068,3276069,3276070,3276071,3276072,3276073,3276074],"delay":18246.2} +{"session_id":"sess-a61957c274aa","input_length":52995,"output_length":1395,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3280063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a61957c274aa","input_length":1112,"output_length":2357,"hash_ids":[3280064,3280065,3280066],"delay":690.3} +{"session_id":"sess-a61957c274aa","input_length":1937,"output_length":63,"hash_ids":[3280067,3280068,3280069,3280070],"delay":1181.1} +{"session_id":"sess-a61957c274aa","input_length":1132,"output_length":661,"hash_ids":[3280071,3280072,3280073],"delay":719.5} +{"session_id":"sess-a61957c274aa","input_length":3727,"output_length":510,"hash_ids":[3280074,3280075,3280076,3280077,3280078,3280079,3280080,3280081],"delay":18725.7} +{"session_id":"sess-a61957c274aa","input_length":2646,"output_length":1248,"hash_ids":[3280082,3280083,3280084,3280085,3280086,3280087],"delay":1407.2} +{"session_id":"sess-a61957c274aa","input_length":3827,"output_length":415,"hash_ids":[3280088,3280089,3280090,3280091,3280092,3280093,3280094,3280095],"delay":2888.9} +{"session_id":"sess-a61957c274aa","input_length":757,"output_length":263,"hash_ids":[3280096,3280097],"delay":236.1} +{"session_id":"sess-a61957c274aa","input_length":1135,"output_length":690,"hash_ids":[3280098,3280099,3280100],"delay":2713.9} +{"session_id":"sess-a61957c274aa","input_length":2437,"output_length":437,"hash_ids":[3280101,3280102,3280103,3280104,3280105],"delay":693.7} +{"session_id":"sess-a61957c274aa","input_length":3885,"output_length":543,"hash_ids":[3280106,3280107,3280108,3280109,3280110,3280111,3280112,3280113],"delay":1368.3} +{"session_id":"sess-a61957c274aa","input_length":5798,"output_length":378,"hash_ids":[3280114,3280115,3280116,3280117,3280118,3280119,3280120,3280121,3280122,3280123,3280124,3280125],"delay":193.8} +{"session_id":"sess-a61957c274aa","input_length":1204,"output_length":33,"hash_ids":[3280126,3280127,3280128],"delay":649.9} +{"session_id":"sess-a61957c274aa","input_length":574,"output_length":102,"hash_ids":[3280129,3280130],"delay":325.9} +{"session_id":"sess-a61957c274aa","input_length":3670,"output_length":285,"hash_ids":[3280131,3280132,3280133,3280134,3280135,3280136,3280137,3280138],"delay":19150.4} +{"session_id":"sess-a61957c274aa","input_length":7598,"output_length":60,"hash_ids":[3280139,3280140,3280141,3280142,3280143,3280144,3280145,3280146,3280147,3280148,3280149,3280150,3280151,3280152,3280153],"delay":8445.0} +{"session_id":"sess-a61957c274aa","input_length":1304,"output_length":598,"hash_ids":[3280154,3280155,3280156],"delay":1588.9} +{"session_id":"sess-a61957c274aa","input_length":6550,"output_length":82,"hash_ids":[3280157,3280158,3280159,3280160,3280161,3280162,3280163,3280164,3280165,3280166,3280167,3280168,3280169],"delay":123.2} +{"session_id":"sess-a61957c274aa","input_length":7573,"output_length":431,"hash_ids":[3280170,3280171,3280172,3280173,3280174,3280175,3280176,3280177,3280178,3280179,3280180,3280181,3280182,3280183,3280184],"delay":468.8} +{"session_id":"sess-a61957c274aa","input_length":4278,"output_length":205,"hash_ids":[3280185,3280186,3280187,3280188,3280189,3280190,3280191,3280192,3280193],"delay":407.2} +{"session_id":"sess-a61957c274aa","input_length":2116,"output_length":42,"hash_ids":[3280194,3280195,3280196,3280197,3280198],"delay":12225.8} +{"session_id":"sess-dd31e198432f","input_length":55168,"output_length":230,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,3284063,3284064,3284065,3284066,3284067],"timestamp":0.0,"group_id":42} +{"session_id":"sess-dd31e198432f","input_length":539,"output_length":76,"hash_ids":[3284068,3284069],"delay":8522.1} +{"session_id":"sess-dd31e198432f","input_length":664,"output_length":285,"hash_ids":[3284070,3284071],"delay":186.4} +{"session_id":"sess-dd31e198432f","input_length":7132,"output_length":899,"hash_ids":[3284072,3284073,3284074,3284075,3284076,3284077,3284078,3284079,3284080,3284081,3284082,3284083,3284084,3284085],"delay":17311.1} +{"session_id":"sess-dd31e198432f","input_length":437,"output_length":1248,"hash_ids":[3284086],"delay":26815.6} +{"session_id":"sess-dd31e198432f","input_length":699,"output_length":1341,"hash_ids":[3284087,3284088],"delay":21124.6} +{"session_id":"sess-dd31e198432f","input_length":3403,"output_length":967,"hash_ids":[3284089,3284090,3284091,3284092,3284093,3284094,3284095],"delay":17042.6} +{"session_id":"sess-dd31e198432f","input_length":1475,"output_length":132,"hash_ids":[3284096,3284097,3284098],"delay":1255.6} +{"session_id":"sess-dd31e198432f","input_length":3219,"output_length":481,"hash_ids":[3284099,3284100,3284101,3284102,3284103,3284104,3284105],"delay":2144.5} +{"session_id":"sess-dd31e198432f","input_length":9494,"output_length":131,"hash_ids":[3284106,3284107,3284108,3284109,3284110,3284111,3284112,3284113,3284114,3284115,3284116,3284117,3284118,3284119,3284120,3284121,3284122,3284123,3284124],"delay":880.8} +{"session_id":"sess-dd31e198432f","input_length":1315,"output_length":69,"hash_ids":[3284125,3284126,3284127],"delay":341.4} +{"session_id":"sess-dd31e198432f","input_length":337,"output_length":566,"hash_ids":[3284128],"delay":18470.8} +{"session_id":"sess-dd31e198432f","input_length":5394,"output_length":342,"hash_ids":[3284129,3284130,3284131,3284132,3284133,3284134,3284135,3284136,3284137,3284138,3284139],"delay":672.4} +{"session_id":"sess-dd31e198432f","input_length":3404,"output_length":302,"hash_ids":[3284140,3284141,3284142,3284143,3284144,3284145,3284146],"delay":1224.9} +{"session_id":"sess-dd31e198432f","input_length":1993,"output_length":262,"hash_ids":[3284147,3284148,3284149,3284150],"delay":14879.3} +{"session_id":"sess-11054e6a12bd","input_length":58310,"output_length":134,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3288063,3288064,3288065,3288066,3288067,3288068,3288069,3288070,3288071,3288072,3288073],"timestamp":0.0,"group_id":1} +{"session_id":"sess-11054e6a12bd","input_length":4236,"output_length":115,"hash_ids":[3288074,3288075,3288076,3288077,3288078,3288079,3288080,3288081,3288082],"delay":1986.8} +{"session_id":"sess-11054e6a12bd","input_length":763,"output_length":410,"hash_ids":[3288083,3288084],"delay":19488.7} +{"session_id":"sess-11054e6a12bd","input_length":528,"output_length":721,"hash_ids":[3288085,3288086],"delay":12981.6} +{"session_id":"sess-11054e6a12bd","input_length":7237,"output_length":160,"hash_ids":[3288087,3288088,3288089,3288090,3288091,3288092,3288093,3288094,3288095,3288096,3288097,3288098,3288099,3288100,3288101],"delay":26307.8} +{"session_id":"sess-11054e6a12bd","input_length":5048,"output_length":313,"hash_ids":[3288102,3288103,3288104,3288105,3288106,3288107,3288108,3288109,3288110,3288111],"delay":2247.2} +{"session_id":"sess-11054e6a12bd","input_length":475,"output_length":411,"hash_ids":[3288112],"delay":117.5} +{"session_id":"sess-11054e6a12bd","input_length":2723,"output_length":487,"hash_ids":[3288113,3288114,3288115,3288116,3288117,3288118],"delay":7264.1} +{"session_id":"sess-11054e6a12bd","input_length":2560,"output_length":774,"hash_ids":[3288119,3288120,3288121,3288122,3288123],"delay":3452.8} +{"session_id":"sess-11054e6a12bd","input_length":1321,"output_length":791,"hash_ids":[3288124,3288125,3288126],"delay":43175.6} +{"session_id":"sess-11054e6a12bd","input_length":4911,"output_length":360,"hash_ids":[3288127,3288128,3288129,3288130,3288131,3288132,3288133,3288134,3288135,3288136],"delay":1155.2} +{"session_id":"sess-11054e6a12bd","input_length":299,"output_length":446,"hash_ids":[3288137],"delay":246.7} +{"session_id":"sess-11054e6a12bd","input_length":1415,"output_length":77,"hash_ids":[3288138,3288139,3288140],"delay":1828.9} +{"session_id":"sess-11054e6a12bd","input_length":167,"output_length":714,"hash_ids":[3288141],"delay":3447.4} +{"session_id":"sess-83fd113a9209","input_length":74417,"output_length":286,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3292063,3292064,3292065,3292066,3292067,3292068,3292069,3292070,3292071,3292072,3292073,3292074,3292075,3292076,3292077,3292078,3292079,3292080,3292081,3292082,3292083,3292084,3292085,3292086,3292087,3292088,3292089,3292090,3292091,3292092,3292093,3292094,3292095,3292096,3292097,3292098,3292099,3292100,3292101,3292102,3292103,3292104,3292105],"timestamp":0.0,"group_id":1} +{"session_id":"sess-83fd113a9209","input_length":4816,"output_length":51,"hash_ids":[3292106,3292107,3292108,3292109,3292110,3292111,3292112,3292113,3292114,3292115],"delay":4048.5} +{"session_id":"sess-83fd113a9209","input_length":1205,"output_length":218,"hash_ids":[3292116,3292117,3292118],"delay":17999.6} +{"session_id":"sess-83fd113a9209","input_length":187,"output_length":2504,"hash_ids":[3292119],"delay":9793.2} +{"session_id":"sess-83fd113a9209","input_length":369,"output_length":135,"hash_ids":[3292120],"delay":6633.4} +{"session_id":"sess-83fd113a9209","input_length":666,"output_length":301,"hash_ids":[3292121,3292122],"delay":1204.0} +{"session_id":"sess-83fd113a9209","input_length":454,"output_length":236,"hash_ids":[3292123],"delay":20060.8} +{"session_id":"sess-447a7c9b9ed4","input_length":53303,"output_length":510,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3296063,3296064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-447a7c9b9ed4","input_length":1532,"output_length":369,"hash_ids":[3296065,3296066,3296067],"delay":46043.4} +{"session_id":"sess-447a7c9b9ed4","input_length":6032,"output_length":289,"hash_ids":[3296068,3296069,3296070,3296071,3296072,3296073,3296074,3296075,3296076,3296077,3296078,3296079],"delay":16859.9} +{"session_id":"sess-447a7c9b9ed4","input_length":4295,"output_length":254,"hash_ids":[3296080,3296081,3296082,3296083,3296084,3296085,3296086,3296087,3296088],"delay":6001.1} +{"session_id":"sess-447a7c9b9ed4","input_length":457,"output_length":152,"hash_ids":[3296089],"delay":33491.0} +{"session_id":"sess-447a7c9b9ed4","input_length":1485,"output_length":367,"hash_ids":[3296090,3296091,3296092],"delay":11564.7} +{"session_id":"sess-447a7c9b9ed4","input_length":3192,"output_length":376,"hash_ids":[3296093,3296094,3296095,3296096,3296097,3296098,3296099],"delay":865.3} +{"session_id":"sess-447a7c9b9ed4","input_length":1422,"output_length":202,"hash_ids":[3296100,3296101,3296102],"delay":468.8} +{"session_id":"sess-447a7c9b9ed4","input_length":4699,"output_length":326,"hash_ids":[3296103,3296104,3296105,3296106,3296107,3296108,3296109,3296110,3296111,3296112],"delay":646.4} +{"session_id":"sess-447a7c9b9ed4","input_length":1730,"output_length":273,"hash_ids":[3296113,3296114,3296115,3296116],"delay":563.5} +{"session_id":"sess-447a7c9b9ed4","input_length":3082,"output_length":954,"hash_ids":[3296117,3296118,3296119,3296120,3296121,3296122,3296123],"delay":477.5} +{"session_id":"sess-447a7c9b9ed4","input_length":3838,"output_length":200,"hash_ids":[3296124,3296125,3296126,3296127,3296128,3296129,3296130,3296131],"delay":10399.7} +{"session_id":"sess-447a7c9b9ed4","input_length":949,"output_length":296,"hash_ids":[3296132,3296133],"delay":773.4} +{"session_id":"sess-447a7c9b9ed4","input_length":403,"output_length":221,"hash_ids":[3296134],"delay":9139.9} +{"session_id":"sess-447a7c9b9ed4","input_length":703,"output_length":265,"hash_ids":[3296135,3296136],"delay":187.0} +{"session_id":"sess-447a7c9b9ed4","input_length":659,"output_length":731,"hash_ids":[3296137,3296138],"delay":2347.2} +{"session_id":"sess-447a7c9b9ed4","input_length":1557,"output_length":665,"hash_ids":[3296139,3296140,3296141,3296142],"delay":906.6} +{"session_id":"sess-447a7c9b9ed4","input_length":654,"output_length":799,"hash_ids":[3296143,3296144],"delay":404.1} +{"session_id":"sess-447a7c9b9ed4","input_length":1853,"output_length":318,"hash_ids":[3296145,3296146,3296147,3296148],"delay":715.4} +{"session_id":"sess-447a7c9b9ed4","input_length":1947,"output_length":257,"hash_ids":[3296149,3296150,3296151,3296152],"delay":16340.2} +{"session_id":"sess-447a7c9b9ed4","input_length":2009,"output_length":659,"hash_ids":[3296153,3296154,3296155,3296156],"delay":368.0} +{"session_id":"sess-447a7c9b9ed4","input_length":5945,"output_length":459,"hash_ids":[3296157,3296158,3296159,3296160,3296161,3296162,3296163,3296164,3296165,3296166,3296167,3296168],"delay":1139.5} +{"session_id":"sess-447a7c9b9ed4","input_length":5758,"output_length":674,"hash_ids":[3296169,3296170,3296171,3296172,3296173,3296174,3296175,3296176,3296177,3296178,3296179,3296180],"delay":17576.6} +{"session_id":"sess-68a4bf6d91df","input_length":56703,"output_length":2578,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3300063,3300064,3300065,3300066,3300067,3300068,3300069,3300070],"timestamp":0.0,"group_id":3} +{"session_id":"sess-68a4bf6d91df","input_length":1186,"output_length":190,"hash_ids":[3300071,3300072,3300073],"delay":342.0} +{"session_id":"sess-68a4bf6d91df","input_length":2140,"output_length":184,"hash_ids":[3300074,3300075,3300076,3300077,3300078],"delay":1123.6} +{"session_id":"sess-68a4bf6d91df","input_length":5209,"output_length":621,"hash_ids":[3300079,3300080,3300081,3300082,3300083,3300084,3300085,3300086,3300087,3300088,3300089],"delay":688.4} +{"session_id":"sess-68a4bf6d91df","input_length":645,"output_length":85,"hash_ids":[3300090,3300091],"delay":843.8} +{"session_id":"sess-68a4bf6d91df","input_length":4799,"output_length":226,"hash_ids":[3300092,3300093,3300094,3300095,3300096,3300097,3300098,3300099,3300100,3300101],"delay":1620.1} +{"session_id":"sess-68a4bf6d91df","input_length":104,"output_length":295,"hash_ids":[3300102],"delay":7198.8} +{"session_id":"sess-68a4bf6d91df","input_length":3161,"output_length":263,"hash_ids":[3300103,3300104,3300105,3300106,3300107,3300108,3300109],"delay":1919.7} +{"session_id":"sess-68a4bf6d91df","input_length":2807,"output_length":517,"hash_ids":[3300110,3300111,3300112,3300113,3300114,3300115],"delay":519.6} +{"session_id":"sess-68a4bf6d91df","input_length":909,"output_length":176,"hash_ids":[3300116,3300117],"delay":18702.0} +{"session_id":"sess-68a4bf6d91df","input_length":8634,"output_length":453,"hash_ids":[3300118,3300119,3300120,3300121,3300122,3300123,3300124,3300125,3300126,3300127,3300128,3300129,3300130,3300131,3300132,3300133,3300134],"delay":245.1} +{"session_id":"sess-68a4bf6d91df","input_length":2284,"output_length":210,"hash_ids":[3300135,3300136,3300137,3300138,3300139],"delay":375.3} +{"session_id":"sess-68a4bf6d91df","input_length":2652,"output_length":371,"hash_ids":[3300140,3300141,3300142,3300143,3300144,3300145],"delay":431.2} +{"session_id":"sess-68a4bf6d91df","input_length":181,"output_length":215,"hash_ids":[3300146],"delay":990.4} +{"session_id":"sess-68a4bf6d91df","input_length":1294,"output_length":184,"hash_ids":[3300147,3300148,3300149],"delay":689.1} +{"session_id":"sess-68a4bf6d91df","input_length":963,"output_length":91,"hash_ids":[3300150,3300151],"delay":2729.5} +{"session_id":"sess-68a4bf6d91df","input_length":4592,"output_length":81,"hash_ids":[3300152,3300153,3300154,3300155,3300156,3300157,3300158,3300159,3300160],"delay":898.5} +{"session_id":"sess-68a4bf6d91df","input_length":7528,"output_length":2851,"hash_ids":[3300161,3300162,3300163,3300164,3300165,3300166,3300167,3300168,3300169,3300170,3300171,3300172,3300173,3300174,3300175],"delay":612.3} +{"session_id":"sess-68a4bf6d91df","input_length":642,"output_length":637,"hash_ids":[3300176,3300177],"delay":220.2} +{"session_id":"sess-68a4bf6d91df","input_length":936,"output_length":111,"hash_ids":[3300178,3300179],"delay":2839.8} +{"session_id":"sess-68a4bf6d91df","input_length":752,"output_length":613,"hash_ids":[3300180,3300181],"delay":511.2} +{"session_id":"sess-68a4bf6d91df","input_length":5009,"output_length":896,"hash_ids":[3300182,3300183,3300184,3300185,3300186,3300187,3300188,3300189,3300190,3300191],"delay":20879.3} +{"session_id":"sess-68a4bf6d91df","input_length":3408,"output_length":53,"hash_ids":[3300192,3300193,3300194,3300195,3300196,3300197,3300198],"delay":9285.0} +{"session_id":"sess-68a4bf6d91df","input_length":1721,"output_length":1926,"hash_ids":[3300199,3300200,3300201,3300202],"delay":1466.3} +{"session_id":"sess-320436bf9cad","input_length":54351,"output_length":212,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3304063,3304064,3304065,3304066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-320436bf9cad","input_length":408,"output_length":164,"hash_ids":[3304067],"delay":1658.3} +{"session_id":"sess-320436bf9cad","input_length":9026,"output_length":245,"hash_ids":[3304068,3304069,3304070,3304071,3304072,3304073,3304074,3304075,3304076,3304077,3304078,3304079,3304080,3304081,3304082,3304083,3304084,3304085],"delay":819.7} +{"session_id":"sess-320436bf9cad","input_length":1345,"output_length":2201,"hash_ids":[3304086,3304087,3304088],"delay":2471.2} +{"session_id":"sess-320436bf9cad","input_length":2122,"output_length":1506,"hash_ids":[3304089,3304090,3304091,3304092,3304093],"delay":834.6} +{"session_id":"sess-320436bf9cad","input_length":3166,"output_length":138,"hash_ids":[3304094,3304095,3304096,3304097,3304098,3304099,3304100],"delay":1548.8} +{"session_id":"sess-320436bf9cad","input_length":1116,"output_length":162,"hash_ids":[3304101,3304102,3304103],"delay":716.7} +{"session_id":"sess-320436bf9cad","input_length":741,"output_length":612,"hash_ids":[3304104,3304105],"delay":835.4} +{"session_id":"sess-320436bf9cad","input_length":1574,"output_length":433,"hash_ids":[3304106,3304107,3304108,3304109],"delay":621.6} +{"session_id":"sess-320436bf9cad","input_length":7956,"output_length":310,"hash_ids":[3304110,3304111,3304112,3304113,3304114,3304115,3304116,3304117,3304118,3304119,3304120,3304121,3304122,3304123,3304124,3304125],"delay":610.6} +{"session_id":"sess-320436bf9cad","input_length":373,"output_length":228,"hash_ids":[3304126],"delay":848.5} +{"session_id":"sess-320436bf9cad","input_length":2377,"output_length":48,"hash_ids":[3304127,3304128,3304129,3304130,3304131],"delay":725.5} +{"session_id":"sess-320436bf9cad","input_length":4150,"output_length":110,"hash_ids":[3304132,3304133,3304134,3304135,3304136,3304137,3304138,3304139,3304140],"delay":203.2} +{"session_id":"sess-320436bf9cad","input_length":316,"output_length":731,"hash_ids":[3304141],"delay":193.3} +{"session_id":"sess-320436bf9cad","input_length":4904,"output_length":106,"hash_ids":[3304142,3304143,3304144,3304145,3304146,3304147,3304148,3304149,3304150,3304151],"delay":782.5} +{"session_id":"sess-320436bf9cad","input_length":4566,"output_length":212,"hash_ids":[3304152,3304153,3304154,3304155,3304156,3304157,3304158,3304159,3304160],"delay":305.5} +{"session_id":"sess-320436bf9cad","input_length":717,"output_length":644,"hash_ids":[3304161,3304162],"delay":592.5} +{"session_id":"sess-320436bf9cad","input_length":347,"output_length":69,"hash_ids":[3304163],"delay":534.1} +{"session_id":"sess-320436bf9cad","input_length":3969,"output_length":156,"hash_ids":[3304164,3304165,3304166,3304167,3304168,3304169,3304170,3304171],"delay":9079.3} +{"session_id":"sess-320436bf9cad","input_length":281,"output_length":42,"hash_ids":[3304172],"delay":17306.2} +{"session_id":"sess-320436bf9cad","input_length":5180,"output_length":47,"hash_ids":[3304173,3304174,3304175,3304176,3304177,3304178,3304179,3304180,3304181,3304182,3304183],"delay":147.4} +{"session_id":"sess-320436bf9cad","input_length":630,"output_length":807,"hash_ids":[3304184,3304185],"delay":2163.7} +{"session_id":"sess-320436bf9cad","input_length":7568,"output_length":388,"hash_ids":[3304186,3304187,3304188,3304189,3304190,3304191,3304192,3304193,3304194,3304195,3304196,3304197,3304198,3304199,3304200],"delay":8810.2} +{"session_id":"sess-43f0a45d8c47","input_length":53992,"output_length":638,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3308063,3308064,3308065],"timestamp":0.0,"group_id":6} +{"session_id":"sess-43f0a45d8c47","input_length":1377,"output_length":115,"hash_ids":[3308066,3308067,3308068],"delay":1513.5} +{"session_id":"sess-43f0a45d8c47","input_length":408,"output_length":112,"hash_ids":[3308069],"delay":803.0} +{"session_id":"sess-43f0a45d8c47","input_length":496,"output_length":646,"hash_ids":[3308070],"delay":7860.2} +{"session_id":"sess-43f0a45d8c47","input_length":2859,"output_length":35,"hash_ids":[3308071,3308072,3308073,3308074,3308075,3308076],"delay":830.8} +{"session_id":"sess-43f0a45d8c47","input_length":2761,"output_length":1083,"hash_ids":[3308077,3308078,3308079,3308080,3308081,3308082],"delay":885.3} +{"session_id":"sess-43f0a45d8c47","input_length":3443,"output_length":269,"hash_ids":[3308083,3308084,3308085,3308086,3308087,3308088,3308089],"delay":907.5} +{"session_id":"sess-43f0a45d8c47","input_length":1645,"output_length":112,"hash_ids":[3308090,3308091,3308092,3308093],"delay":572.5} +{"session_id":"sess-43f0a45d8c47","input_length":2477,"output_length":475,"hash_ids":[3308094,3308095,3308096,3308097,3308098],"delay":846.8} +{"session_id":"sess-43f0a45d8c47","input_length":1958,"output_length":415,"hash_ids":[3308099,3308100,3308101,3308102],"delay":952.8} +{"session_id":"sess-43f0a45d8c47","input_length":3340,"output_length":556,"hash_ids":[3308103,3308104,3308105,3308106,3308107,3308108,3308109],"delay":1135.7} +{"session_id":"sess-43f0a45d8c47","input_length":655,"output_length":2471,"hash_ids":[3308110,3308111],"delay":415.9} +{"session_id":"sess-43f0a45d8c47","input_length":3989,"output_length":159,"hash_ids":[3308112,3308113,3308114,3308115,3308116,3308117,3308118,3308119],"delay":13650.7} +{"session_id":"sess-43f0a45d8c47","input_length":2009,"output_length":207,"hash_ids":[3308120,3308121,3308122,3308123],"delay":401.7} +{"session_id":"sess-43f0a45d8c47","input_length":710,"output_length":609,"hash_ids":[3308124,3308125],"delay":449.4} +{"session_id":"sess-43f0a45d8c47","input_length":8363,"output_length":52,"hash_ids":[3308126,3308127,3308128,3308129,3308130,3308131,3308132,3308133,3308134,3308135,3308136,3308137,3308138,3308139,3308140,3308141,3308142],"delay":280.4} +{"session_id":"sess-43f0a45d8c47","input_length":2313,"output_length":1296,"hash_ids":[3308143,3308144,3308145,3308146,3308147],"delay":31189.1} +{"session_id":"sess-43f0a45d8c47","input_length":213,"output_length":127,"hash_ids":[3308148],"delay":1318.3} +{"session_id":"sess-43f0a45d8c47","input_length":1755,"output_length":752,"hash_ids":[3308149,3308150,3308151,3308152],"delay":9141.9} +{"session_id":"sess-43f0a45d8c47","input_length":2945,"output_length":49,"hash_ids":[3308153,3308154,3308155,3308156,3308157,3308158],"delay":8068.5} +{"session_id":"sess-43f0a45d8c47","input_length":1932,"output_length":911,"hash_ids":[3308159,3308160,3308161,3308162],"delay":976.1} +{"session_id":"sess-43f0a45d8c47","input_length":297,"output_length":175,"hash_ids":[3308163],"delay":382.8} +{"session_id":"sess-43f0a45d8c47","input_length":4557,"output_length":380,"hash_ids":[3308164,3308165,3308166,3308167,3308168,3308169,3308170,3308171,3308172],"delay":5229.4} +{"session_id":"sess-43f0a45d8c47","input_length":1565,"output_length":453,"hash_ids":[3308173,3308174,3308175,3308176],"delay":356.1} +{"session_id":"sess-43f0a45d8c47","input_length":3215,"output_length":108,"hash_ids":[3308177,3308178,3308179,3308180,3308181,3308182,3308183],"delay":336.6} +{"session_id":"sess-43f0a45d8c47","input_length":1775,"output_length":112,"hash_ids":[3308184,3308185,3308186,3308187],"delay":621.4} +{"session_id":"sess-43f0a45d8c47","input_length":951,"output_length":749,"hash_ids":[3308188,3308189],"delay":280.2} +{"session_id":"sess-43f0a45d8c47","input_length":870,"output_length":199,"hash_ids":[3308190,3308191],"delay":6058.4} +{"session_id":"sess-43f0a45d8c47","input_length":1478,"output_length":333,"hash_ids":[3308192,3308193,3308194],"delay":755.5} +{"session_id":"sess-43f0a45d8c47","input_length":1025,"output_length":947,"hash_ids":[3308195,3308196,3308197],"delay":317.7} +{"session_id":"sess-8d468501441a","input_length":56087,"output_length":455,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,3312063,3312064,3312065,3312066,3312067,3312068,3312069],"timestamp":0.0,"group_id":42} +{"session_id":"sess-8d468501441a","input_length":2292,"output_length":476,"hash_ids":[3312070,3312071,3312072,3312073,3312074],"delay":2649.9} +{"session_id":"sess-8d468501441a","input_length":1307,"output_length":242,"hash_ids":[3312075,3312076,3312077],"delay":373.6} +{"session_id":"sess-8d468501441a","input_length":4399,"output_length":157,"hash_ids":[3312078,3312079,3312080,3312081,3312082,3312083,3312084,3312085,3312086],"delay":1747.9} +{"session_id":"sess-8d468501441a","input_length":7741,"output_length":572,"hash_ids":[3312087,3312088,3312089,3312090,3312091,3312092,3312093,3312094,3312095,3312096,3312097,3312098,3312099,3312100,3312101,3312102],"delay":21439.8} +{"session_id":"sess-8d468501441a","input_length":5797,"output_length":322,"hash_ids":[3312103,3312104,3312105,3312106,3312107,3312108,3312109,3312110,3312111,3312112,3312113,3312114],"delay":266.4} +{"session_id":"sess-8d468501441a","input_length":9673,"output_length":2788,"hash_ids":[3312115,3312116,3312117,3312118,3312119,3312120,3312121,3312122,3312123,3312124,3312125,3312126,3312127,3312128,3312129,3312130,3312131,3312132,3312133],"delay":11742.9} +{"session_id":"sess-8d468501441a","input_length":8882,"output_length":199,"hash_ids":[3312134,3312135,3312136,3312137,3312138,3312139,3312140,3312141,3312142,3312143,3312144,3312145,3312146,3312147,3312148,3312149,3312150,3312151],"delay":10641.7} +{"session_id":"sess-8d468501441a","input_length":2491,"output_length":309,"hash_ids":[3312152,3312153,3312154,3312155,3312156],"delay":284.8} +{"session_id":"sess-8d468501441a","input_length":868,"output_length":1093,"hash_ids":[3312157,3312158],"delay":6627.5} +{"session_id":"sess-8d468501441a","input_length":614,"output_length":875,"hash_ids":[3312159,3312160],"delay":150.7} +{"session_id":"sess-8d468501441a","input_length":6394,"output_length":325,"hash_ids":[3312161,3312162,3312163,3312164,3312165,3312166,3312167,3312168,3312169,3312170,3312171,3312172,3312173],"delay":341.8} +{"session_id":"sess-8d468501441a","input_length":1425,"output_length":514,"hash_ids":[3312174,3312175,3312176],"delay":220.7} +{"session_id":"sess-8d468501441a","input_length":3072,"output_length":806,"hash_ids":[3312177,3312178,3312179,3312180,3312181,3312182],"delay":334.7} +{"session_id":"sess-8d468501441a","input_length":6438,"output_length":544,"hash_ids":[3312183,3312184,3312185,3312186,3312187,3312188,3312189,3312190,3312191,3312192,3312193,3312194,3312195],"delay":521.1} +{"session_id":"sess-8d468501441a","input_length":333,"output_length":102,"hash_ids":[3312196],"delay":917.7} +{"session_id":"sess-8d468501441a","input_length":628,"output_length":1110,"hash_ids":[3312197,3312198],"delay":1626.1} +{"session_id":"sess-8d468501441a","input_length":1565,"output_length":201,"hash_ids":[3312199,3312200,3312201,3312202],"delay":733.4} +{"session_id":"sess-f0af27b2efe4","input_length":60320,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3316063,3316064,3316065,3316066,3316067,3316068,3316069,3316070,3316071,3316072,3316073,3316074,3316075,3316076,3316077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f0af27b2efe4","input_length":9074,"output_length":304,"hash_ids":[3316078,3316079,3316080,3316081,3316082,3316083,3316084,3316085,3316086,3316087,3316088,3316089,3316090,3316091,3316092,3316093,3316094,3316095],"delay":1402.3} +{"session_id":"sess-f0af27b2efe4","input_length":439,"output_length":285,"hash_ids":[3316096],"delay":641.0} +{"session_id":"sess-f0af27b2efe4","input_length":2815,"output_length":138,"hash_ids":[3316097,3316098,3316099,3316100,3316101,3316102],"delay":724.5} +{"session_id":"sess-f0af27b2efe4","input_length":3042,"output_length":56,"hash_ids":[3316103,3316104,3316105,3316106,3316107,3316108],"delay":1464.7} +{"session_id":"sess-f0af27b2efe4","input_length":423,"output_length":570,"hash_ids":[3316109],"delay":470.7} +{"session_id":"sess-f0af27b2efe4","input_length":5835,"output_length":276,"hash_ids":[3316110,3316111,3316112,3316113,3316114,3316115,3316116,3316117,3316118,3316119,3316120,3316121],"delay":49316.8} +{"session_id":"sess-f0af27b2efe4","input_length":572,"output_length":317,"hash_ids":[3316122,3316123],"delay":456.5} +{"session_id":"sess-f0af27b2efe4","input_length":913,"output_length":812,"hash_ids":[3316124,3316125],"delay":1010.6} +{"session_id":"sess-f0af27b2efe4","input_length":561,"output_length":239,"hash_ids":[3316126,3316127],"delay":4503.4} +{"session_id":"sess-f0af27b2efe4","input_length":3949,"output_length":347,"hash_ids":[3316128,3316129,3316130,3316131,3316132,3316133,3316134,3316135],"delay":391.5} +{"session_id":"sess-f0af27b2efe4","input_length":1337,"output_length":394,"hash_ids":[3316136,3316137,3316138],"delay":350.2} +{"session_id":"sess-f0af27b2efe4","input_length":2826,"output_length":145,"hash_ids":[3316139,3316140,3316141,3316142,3316143,3316144],"delay":1030.5} +{"session_id":"sess-f0af27b2efe4","input_length":2649,"output_length":299,"hash_ids":[3316145,3316146,3316147,3316148,3316149,3316150],"delay":16044.8} +{"session_id":"sess-f0af27b2efe4","input_length":4429,"output_length":400,"hash_ids":[3316151,3316152,3316153,3316154,3316155,3316156,3316157,3316158,3316159],"delay":8061.9} +{"session_id":"sess-f0af27b2efe4","input_length":4802,"output_length":205,"hash_ids":[3316160,3316161,3316162,3316163,3316164,3316165,3316166,3316167,3316168,3316169],"delay":2569.0} +{"session_id":"sess-2d3f026d93dd","input_length":56239,"output_length":274,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3320063,3320064,3320065,3320066,3320067,3320068,3320069],"timestamp":0.0,"group_id":2} +{"session_id":"sess-0cef600343a4","input_length":54081,"output_length":339,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3324063,3324064,3324065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0cef600343a4","input_length":5205,"output_length":968,"hash_ids":[3324066,3324067,3324068,3324069,3324070,3324071,3324072,3324073,3324074,3324075,3324076],"delay":6068.1} +{"session_id":"sess-0cef600343a4","input_length":6088,"output_length":781,"hash_ids":[3324077,3324078,3324079,3324080,3324081,3324082,3324083,3324084,3324085,3324086,3324087,3324088],"delay":1807.2} +{"session_id":"sess-0cef600343a4","input_length":2043,"output_length":117,"hash_ids":[3324089,3324090,3324091,3324092],"delay":1008.9} +{"session_id":"sess-0cef600343a4","input_length":9273,"output_length":820,"hash_ids":[3324093,3324094,3324095,3324096,3324097,3324098,3324099,3324100,3324101,3324102,3324103,3324104,3324105,3324106,3324107,3324108,3324109,3324110,3324111],"delay":5197.7} +{"session_id":"sess-0cef600343a4","input_length":2233,"output_length":449,"hash_ids":[3324112,3324113,3324114,3324115,3324116],"delay":1511.3} +{"session_id":"sess-0cef600343a4","input_length":5295,"output_length":158,"hash_ids":[3324117,3324118,3324119,3324120,3324121,3324122,3324123,3324124,3324125,3324126,3324127],"delay":14400.2} +{"session_id":"sess-0cef600343a4","input_length":925,"output_length":347,"hash_ids":[3324128,3324129],"delay":431.8} +{"session_id":"sess-0cef600343a4","input_length":249,"output_length":72,"hash_ids":[3324130],"delay":1019.5} +{"session_id":"sess-0cef600343a4","input_length":1910,"output_length":531,"hash_ids":[3324131,3324132,3324133,3324134],"delay":814.7} +{"session_id":"sess-0cef600343a4","input_length":623,"output_length":291,"hash_ids":[3324135,3324136],"delay":1747.1} +{"session_id":"sess-0cef600343a4","input_length":4621,"output_length":156,"hash_ids":[3324137,3324138,3324139,3324140,3324141,3324142,3324143,3324144,3324145,3324146],"delay":389.8} +{"session_id":"sess-0cef600343a4","input_length":583,"output_length":284,"hash_ids":[3324147,3324148],"delay":9696.7} +{"session_id":"sess-0cef600343a4","input_length":4404,"output_length":616,"hash_ids":[3324149,3324150,3324151,3324152,3324153,3324154,3324155,3324156,3324157],"delay":528.6} +{"session_id":"sess-0cef600343a4","input_length":249,"output_length":123,"hash_ids":[3324158],"delay":1538.1} +{"session_id":"sess-0cef600343a4","input_length":189,"output_length":30,"hash_ids":[3324159],"delay":8175.5} +{"session_id":"sess-0cef600343a4","input_length":791,"output_length":47,"hash_ids":[3324160,3324161],"delay":1024.9} +{"session_id":"sess-0cef600343a4","input_length":1190,"output_length":282,"hash_ids":[3324162,3324163,3324164],"delay":1683.3} +{"session_id":"sess-975a3ec1e083","input_length":57241,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,3328063,3328064,3328065,3328066,3328067,3328068,3328069,3328070,3328071],"timestamp":0.0,"group_id":12} +{"session_id":"sess-975a3ec1e083","input_length":2017,"output_length":300,"hash_ids":[3328072,3328073,3328074,3328075],"delay":6828.1} +{"session_id":"sess-975a3ec1e083","input_length":3508,"output_length":246,"hash_ids":[3328076,3328077,3328078,3328079,3328080,3328081,3328082],"delay":18307.0} +{"session_id":"sess-975a3ec1e083","input_length":51,"output_length":2445,"hash_ids":[3328083],"delay":3450.3} +{"session_id":"sess-975a3ec1e083","input_length":439,"output_length":173,"hash_ids":[3328084],"delay":807.6} +{"session_id":"sess-975a3ec1e083","input_length":1780,"output_length":328,"hash_ids":[3328085,3328086,3328087,3328088],"delay":36180.3} +{"session_id":"sess-975a3ec1e083","input_length":4559,"output_length":1036,"hash_ids":[3328089,3328090,3328091,3328092,3328093,3328094,3328095,3328096,3328097],"delay":3464.1} +{"session_id":"sess-975a3ec1e083","input_length":644,"output_length":962,"hash_ids":[3328098,3328099],"delay":3584.5} +{"session_id":"sess-975a3ec1e083","input_length":1530,"output_length":248,"hash_ids":[3328100,3328101,3328102],"delay":1417.2} +{"session_id":"sess-975a3ec1e083","input_length":310,"output_length":2132,"hash_ids":[3328103],"delay":26527.3} +{"session_id":"sess-975a3ec1e083","input_length":2516,"output_length":200,"hash_ids":[3328104,3328105,3328106,3328107,3328108],"delay":11488.7} +{"session_id":"sess-975a3ec1e083","input_length":3475,"output_length":799,"hash_ids":[3328109,3328110,3328111,3328112,3328113,3328114,3328115],"delay":417.5} +{"session_id":"sess-975a3ec1e083","input_length":153,"output_length":50,"hash_ids":[3328116],"delay":1751.9} +{"session_id":"sess-975a3ec1e083","input_length":884,"output_length":219,"hash_ids":[3328117,3328118],"delay":174.1} +{"session_id":"sess-975a3ec1e083","input_length":3258,"output_length":957,"hash_ids":[3328119,3328120,3328121,3328122,3328123,3328124,3328125],"delay":11055.7} +{"session_id":"sess-975a3ec1e083","input_length":985,"output_length":235,"hash_ids":[3328126,3328127],"delay":485.2} +{"session_id":"sess-975a3ec1e083","input_length":1456,"output_length":1359,"hash_ids":[3328128,3328129,3328130],"delay":638.1} +{"session_id":"sess-975a3ec1e083","input_length":1059,"output_length":44,"hash_ids":[3328131,3328132,3328133],"delay":726.8} +{"session_id":"sess-975a3ec1e083","input_length":3414,"output_length":1299,"hash_ids":[3328134,3328135,3328136,3328137,3328138,3328139,3328140],"delay":1223.8} +{"session_id":"sess-975a3ec1e083","input_length":360,"output_length":140,"hash_ids":[3328141],"delay":544.2} +{"session_id":"sess-975a3ec1e083","input_length":2579,"output_length":685,"hash_ids":[3328142,3328143,3328144,3328145,3328146,3328147],"delay":305.7} +{"session_id":"sess-975a3ec1e083","input_length":431,"output_length":884,"hash_ids":[3328148],"delay":301.1} +{"session_id":"sess-975a3ec1e083","input_length":801,"output_length":231,"hash_ids":[3328149,3328150],"delay":29356.2} +{"session_id":"sess-dd8f62744d0d","input_length":54824,"output_length":1127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3332063,3332064,3332065,3332066,3332067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dd8f62744d0d","input_length":6232,"output_length":411,"hash_ids":[3332068,3332069,3332070,3332071,3332072,3332073,3332074,3332075,3332076,3332077,3332078,3332079,3332080],"delay":923.9} +{"session_id":"sess-dd8f62744d0d","input_length":1225,"output_length":260,"hash_ids":[3332081,3332082,3332083],"delay":584.1} +{"session_id":"sess-dd8f62744d0d","input_length":2456,"output_length":52,"hash_ids":[3332084,3332085,3332086,3332087,3332088],"delay":1998.4} +{"session_id":"sess-2fbc6f5aea6d","input_length":54078,"output_length":1826,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3336063,3336064,3336065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2fbc6f5aea6d","input_length":7636,"output_length":30,"hash_ids":[3336066,3336067,3336068,3336069,3336070,3336071,3336072,3336073,3336074,3336075,3336076,3336077,3336078,3336079,3336080],"delay":260.0} +{"session_id":"sess-2fbc6f5aea6d","input_length":411,"output_length":766,"hash_ids":[3336081],"delay":17972.0} +{"session_id":"sess-2fbc6f5aea6d","input_length":6687,"output_length":474,"hash_ids":[3336082,3336083,3336084,3336085,3336086,3336087,3336088,3336089,3336090,3336091,3336092,3336093,3336094,3336095],"delay":33563.8} +{"session_id":"sess-2fbc6f5aea6d","input_length":3465,"output_length":826,"hash_ids":[3336096,3336097,3336098,3336099,3336100,3336101,3336102],"delay":22801.9} +{"session_id":"sess-2fbc6f5aea6d","input_length":2869,"output_length":2021,"hash_ids":[3336103,3336104,3336105,3336106,3336107,3336108],"delay":902.3} +{"session_id":"sess-2fbc6f5aea6d","input_length":1814,"output_length":790,"hash_ids":[3336109,3336110,3336111,3336112],"delay":932.6} +{"session_id":"sess-2fbc6f5aea6d","input_length":4649,"output_length":1219,"hash_ids":[3336113,3336114,3336115,3336116,3336117,3336118,3336119,3336120,3336121,3336122],"delay":5161.5} +{"session_id":"sess-2fbc6f5aea6d","input_length":285,"output_length":534,"hash_ids":[3336123],"delay":29330.7} +{"session_id":"sess-2fbc6f5aea6d","input_length":1195,"output_length":105,"hash_ids":[3336124,3336125,3336126],"delay":898.8} +{"session_id":"sess-2fbc6f5aea6d","input_length":2911,"output_length":212,"hash_ids":[3336127,3336128,3336129,3336130,3336131,3336132],"delay":374.7} +{"session_id":"sess-2fbc6f5aea6d","input_length":656,"output_length":1128,"hash_ids":[3336133,3336134],"delay":836.2} +{"session_id":"sess-2fbc6f5aea6d","input_length":3197,"output_length":414,"hash_ids":[3336135,3336136,3336137,3336138,3336139,3336140,3336141],"delay":344.4} +{"session_id":"sess-2fbc6f5aea6d","input_length":319,"output_length":1047,"hash_ids":[3336142],"delay":10206.2} +{"session_id":"sess-2fbc6f5aea6d","input_length":841,"output_length":781,"hash_ids":[3336143,3336144],"delay":687.2} +{"session_id":"sess-2fbc6f5aea6d","input_length":830,"output_length":890,"hash_ids":[3336145,3336146],"delay":857.5} +{"session_id":"sess-2fbc6f5aea6d","input_length":8618,"output_length":127,"hash_ids":[3336147,3336148,3336149,3336150,3336151,3336152,3336153,3336154,3336155,3336156,3336157,3336158,3336159,3336160,3336161,3336162,3336163],"delay":1806.7} +{"session_id":"sess-2fbc6f5aea6d","input_length":3623,"output_length":393,"hash_ids":[3336164,3336165,3336166,3336167,3336168,3336169,3336170,3336171],"delay":3625.4} +{"session_id":"sess-2fbc6f5aea6d","input_length":1118,"output_length":308,"hash_ids":[3336172,3336173,3336174],"delay":753.6} +{"session_id":"sess-2fbc6f5aea6d","input_length":1461,"output_length":136,"hash_ids":[3336175,3336176,3336177],"delay":417.6} +{"session_id":"sess-2fbc6f5aea6d","input_length":6045,"output_length":121,"hash_ids":[3336178,3336179,3336180,3336181,3336182,3336183,3336184,3336185,3336186,3336187,3336188,3336189],"delay":612.2} +{"session_id":"sess-2fbc6f5aea6d","input_length":121,"output_length":220,"hash_ids":[3336190],"delay":519.5} +{"session_id":"sess-2fbc6f5aea6d","input_length":706,"output_length":44,"hash_ids":[3336191,3336192],"delay":644.3} +{"session_id":"sess-2fbc6f5aea6d","input_length":1236,"output_length":96,"hash_ids":[3336193,3336194,3336195],"delay":573.7} +{"session_id":"sess-7393590a9af0","input_length":68441,"output_length":231,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3340063,3340064,3340065,3340066,3340067,3340068,3340069,3340070,3340071,3340072,3340073,3340074,3340075,3340076,3340077,3340078,3340079,3340080,3340081,3340082,3340083,3340084,3340085,3340086,3340087,3340088,3340089,3340090,3340091,3340092,3340093],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7393590a9af0","input_length":3501,"output_length":60,"hash_ids":[3340094,3340095,3340096,3340097,3340098,3340099,3340100],"delay":1789.0} +{"session_id":"sess-7393590a9af0","input_length":5091,"output_length":160,"hash_ids":[3340101,3340102,3340103,3340104,3340105,3340106,3340107,3340108,3340109,3340110],"delay":22968.9} +{"session_id":"sess-7393590a9af0","input_length":321,"output_length":507,"hash_ids":[3340111],"delay":1616.5} +{"session_id":"sess-7393590a9af0","input_length":8603,"output_length":659,"hash_ids":[3340112,3340113,3340114,3340115,3340116,3340117,3340118,3340119,3340120,3340121,3340122,3340123,3340124,3340125,3340126,3340127,3340128],"delay":1825.6} +{"session_id":"sess-7393590a9af0","input_length":766,"output_length":2746,"hash_ids":[3340129,3340130],"delay":540.1} +{"session_id":"sess-7393590a9af0","input_length":766,"output_length":264,"hash_ids":[3340131,3340132],"delay":2385.6} +{"session_id":"sess-7393590a9af0","input_length":1567,"output_length":61,"hash_ids":[3340133,3340134,3340135,3340136],"delay":626.7} +{"session_id":"sess-e941050da266","input_length":77469,"output_length":2161,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3344063,3344064,3344065,3344066,3344067,3344068,3344069,3344070,3344071,3344072,3344073,3344074,3344075,3344076,3344077,3344078,3344079,3344080,3344081,3344082,3344083,3344084,3344085,3344086,3344087,3344088,3344089,3344090,3344091,3344092,3344093,3344094,3344095,3344096,3344097,3344098,3344099,3344100,3344101,3344102,3344103,3344104,3344105,3344106,3344107,3344108,3344109,3344110,3344111],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e941050da266","input_length":1825,"output_length":1154,"hash_ids":[3344112,3344113,3344114,3344115],"delay":873.6} +{"session_id":"sess-e941050da266","input_length":130,"output_length":416,"hash_ids":[3344116],"delay":16894.4} +{"session_id":"sess-eb321235ece6","input_length":56873,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,3348063,3348064,3348065,3348066,3348067,3348068,3348069,3348070,3348071],"timestamp":0.0,"group_id":43} +{"session_id":"sess-eb321235ece6","input_length":855,"output_length":73,"hash_ids":[3348072,3348073],"delay":809.8} +{"session_id":"sess-eb321235ece6","input_length":4333,"output_length":326,"hash_ids":[3348074,3348075,3348076,3348077,3348078,3348079,3348080,3348081,3348082],"delay":383.0} +{"session_id":"sess-eb321235ece6","input_length":6982,"output_length":138,"hash_ids":[3348083,3348084,3348085,3348086,3348087,3348088,3348089,3348090,3348091,3348092,3348093,3348094,3348095,3348096],"delay":167.9} +{"session_id":"sess-eb321235ece6","input_length":5494,"output_length":110,"hash_ids":[3348097,3348098,3348099,3348100,3348101,3348102,3348103,3348104,3348105,3348106,3348107],"delay":23751.7} +{"session_id":"sess-eb321235ece6","input_length":2832,"output_length":428,"hash_ids":[3348108,3348109,3348110,3348111,3348112,3348113],"delay":136.9} +{"session_id":"sess-eb321235ece6","input_length":1254,"output_length":2205,"hash_ids":[3348114,3348115,3348116],"delay":1044.0} +{"session_id":"sess-eb321235ece6","input_length":812,"output_length":116,"hash_ids":[3348117,3348118],"delay":551.4} +{"session_id":"sess-eb321235ece6","input_length":4607,"output_length":229,"hash_ids":[3348119,3348120,3348121,3348122,3348123,3348124,3348125,3348126,3348127],"delay":1889.8} +{"session_id":"sess-eb321235ece6","input_length":4517,"output_length":30,"hash_ids":[3348128,3348129,3348130,3348131,3348132,3348133,3348134,3348135,3348136],"delay":728.9} +{"session_id":"sess-eb321235ece6","input_length":2552,"output_length":677,"hash_ids":[3348137,3348138,3348139,3348140,3348141],"delay":276.9} +{"session_id":"sess-eb321235ece6","input_length":3536,"output_length":904,"hash_ids":[3348142,3348143,3348144,3348145,3348146,3348147,3348148],"delay":8194.7} +{"session_id":"sess-eb321235ece6","input_length":2251,"output_length":1673,"hash_ids":[3348149,3348150,3348151,3348152,3348153],"delay":2536.2} +{"session_id":"sess-eb321235ece6","input_length":800,"output_length":142,"hash_ids":[3348154,3348155],"delay":2206.4} +{"session_id":"sess-eb321235ece6","input_length":5399,"output_length":147,"hash_ids":[3348156,3348157,3348158,3348159,3348160,3348161,3348162,3348163,3348164,3348165,3348166],"delay":557.5} +{"session_id":"sess-eb321235ece6","input_length":3990,"output_length":380,"hash_ids":[3348167,3348168,3348169,3348170,3348171,3348172,3348173,3348174],"delay":639.2} +{"session_id":"sess-eb321235ece6","input_length":1166,"output_length":787,"hash_ids":[3348175,3348176,3348177],"delay":747.3} +{"session_id":"sess-ff810579d949","input_length":63431,"output_length":620,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3352063,3352064,3352065,3352066,3352067,3352068,3352069,3352070,3352071,3352072,3352073,3352074,3352075,3352076,3352077,3352078,3352079,3352080,3352081,3352082,3352083],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff810579d949","input_length":235,"output_length":426,"hash_ids":[3352084],"delay":921.0} +{"session_id":"sess-ff810579d949","input_length":4261,"output_length":288,"hash_ids":[3352085,3352086,3352087,3352088,3352089,3352090,3352091,3352092,3352093],"delay":8152.6} +{"session_id":"sess-ff810579d949","input_length":7731,"output_length":227,"hash_ids":[3352094,3352095,3352096,3352097,3352098,3352099,3352100,3352101,3352102,3352103,3352104,3352105,3352106,3352107,3352108,3352109],"delay":1299.5} +{"session_id":"sess-ff810579d949","input_length":1829,"output_length":115,"hash_ids":[3352110,3352111,3352112,3352113],"delay":3016.6} +{"session_id":"sess-ff810579d949","input_length":405,"output_length":139,"hash_ids":[3352114],"delay":695.0} +{"session_id":"sess-ff810579d949","input_length":2252,"output_length":178,"hash_ids":[3352115,3352116,3352117,3352118,3352119],"delay":32496.7} +{"session_id":"sess-ff810579d949","input_length":991,"output_length":937,"hash_ids":[3352120,3352121],"delay":1454.8} +{"session_id":"sess-ff810579d949","input_length":1074,"output_length":660,"hash_ids":[3352122,3352123,3352124],"delay":3028.4} +{"session_id":"sess-ff810579d949","input_length":5086,"output_length":33,"hash_ids":[3352125,3352126,3352127,3352128,3352129,3352130,3352131,3352132,3352133,3352134],"delay":2003.8} +{"session_id":"sess-ff810579d949","input_length":316,"output_length":547,"hash_ids":[3352135],"delay":588.2} +{"session_id":"sess-ff810579d949","input_length":1638,"output_length":311,"hash_ids":[3352136,3352137,3352138,3352139],"delay":142.2} +{"session_id":"sess-ff810579d949","input_length":3737,"output_length":1752,"hash_ids":[3352140,3352141,3352142,3352143,3352144,3352145,3352146,3352147],"delay":22367.9} +{"session_id":"sess-ff810579d949","input_length":2438,"output_length":158,"hash_ids":[3352148,3352149,3352150,3352151,3352152],"delay":1293.4} +{"session_id":"sess-ff810579d949","input_length":1273,"output_length":327,"hash_ids":[3352153,3352154,3352155],"delay":681.0} +{"session_id":"sess-ff810579d949","input_length":6205,"output_length":2946,"hash_ids":[3352156,3352157,3352158,3352159,3352160,3352161,3352162,3352163,3352164,3352165,3352166,3352167,3352168],"delay":664.9} +{"session_id":"sess-ff810579d949","input_length":3750,"output_length":371,"hash_ids":[3352169,3352170,3352171,3352172,3352173,3352174,3352175,3352176],"delay":1091.2} +{"session_id":"sess-ff810579d949","input_length":1145,"output_length":208,"hash_ids":[3352177,3352178,3352179],"delay":1268.3} +{"session_id":"sess-ff810579d949","input_length":2041,"output_length":224,"hash_ids":[3352180,3352181,3352182,3352183],"delay":224.2} +{"session_id":"sess-ff810579d949","input_length":637,"output_length":48,"hash_ids":[3352184,3352185],"delay":281.7} +{"session_id":"sess-ff810579d949","input_length":859,"output_length":209,"hash_ids":[3352186,3352187],"delay":964.5} +{"session_id":"sess-ff810579d949","input_length":382,"output_length":786,"hash_ids":[3352188],"delay":451.5} +{"session_id":"sess-adc65004f986","input_length":54544,"output_length":667,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,3356063,3356064,3356065,3356066],"timestamp":0.0,"group_id":26} +{"session_id":"sess-adc65004f986","input_length":3202,"output_length":283,"hash_ids":[3356067,3356068,3356069,3356070,3356071,3356072,3356073],"delay":40482.7} +{"session_id":"sess-adc65004f986","input_length":4874,"output_length":374,"hash_ids":[3356074,3356075,3356076,3356077,3356078,3356079,3356080,3356081,3356082,3356083],"delay":2064.9} +{"session_id":"sess-a964dbd4f68f","input_length":54091,"output_length":944,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3360063,3360064,3360065],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a964dbd4f68f","input_length":6079,"output_length":693,"hash_ids":[3360066,3360067,3360068,3360069,3360070,3360071,3360072,3360073,3360074,3360075,3360076,3360077],"delay":4031.5} +{"session_id":"sess-a964dbd4f68f","input_length":1963,"output_length":122,"hash_ids":[3360078,3360079,3360080,3360081],"delay":5758.5} +{"session_id":"sess-a964dbd4f68f","input_length":5879,"output_length":122,"hash_ids":[3360082,3360083,3360084,3360085,3360086,3360087,3360088,3360089,3360090,3360091,3360092,3360093],"delay":590.8} +{"session_id":"sess-a964dbd4f68f","input_length":2658,"output_length":493,"hash_ids":[3360094,3360095,3360096,3360097,3360098,3360099],"delay":1048.0} +{"session_id":"sess-a964dbd4f68f","input_length":811,"output_length":302,"hash_ids":[3360100,3360101],"delay":308.6} +{"session_id":"sess-a964dbd4f68f","input_length":2054,"output_length":123,"hash_ids":[3360102,3360103,3360104,3360105,3360106],"delay":2294.7} +{"session_id":"sess-305a3cbca180","input_length":54739,"output_length":127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,3364063,3364064,3364065,3364066],"timestamp":0.0,"group_id":31} +{"session_id":"sess-a3f5a14885d9","input_length":54454,"output_length":1221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3368063,3368064,3368065,3368066],"timestamp":0.0,"group_id":3} +{"session_id":"sess-a3f5a14885d9","input_length":955,"output_length":125,"hash_ids":[3368067,3368068],"delay":2670.3} +{"session_id":"sess-a3f5a14885d9","input_length":84,"output_length":988,"hash_ids":[3368069],"delay":5855.0} +{"session_id":"sess-a3f5a14885d9","input_length":1386,"output_length":101,"hash_ids":[3368070,3368071,3368072],"delay":36221.2} +{"session_id":"sess-a3f5a14885d9","input_length":3200,"output_length":754,"hash_ids":[3368073,3368074,3368075,3368076,3368077,3368078,3368079],"delay":197.8} +{"session_id":"sess-a3f5a14885d9","input_length":1023,"output_length":33,"hash_ids":[3368080,3368081],"delay":585.5} +{"session_id":"sess-a3f5a14885d9","input_length":954,"output_length":278,"hash_ids":[3368082,3368083],"delay":3253.5} +{"session_id":"sess-a3f5a14885d9","input_length":3117,"output_length":285,"hash_ids":[3368084,3368085,3368086,3368087,3368088,3368089,3368090],"delay":475.5} +{"session_id":"sess-a3f5a14885d9","input_length":1221,"output_length":1211,"hash_ids":[3368091,3368092,3368093],"delay":835.0} +{"session_id":"sess-a3f5a14885d9","input_length":244,"output_length":187,"hash_ids":[3368094],"delay":1063.8} +{"session_id":"sess-a3f5a14885d9","input_length":491,"output_length":1935,"hash_ids":[3368095],"delay":7684.0} +{"session_id":"sess-a3f5a14885d9","input_length":268,"output_length":171,"hash_ids":[3368096],"delay":208.3} +{"session_id":"sess-a3f5a14885d9","input_length":287,"output_length":291,"hash_ids":[3368097],"delay":3120.0} +{"session_id":"sess-a3f5a14885d9","input_length":4344,"output_length":265,"hash_ids":[3368098,3368099,3368100,3368101,3368102,3368103,3368104,3368105,3368106],"delay":12724.3} +{"session_id":"sess-f70a621d3fec","input_length":61709,"output_length":317,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3372063,3372064,3372065,3372066,3372067,3372068,3372069,3372070,3372071,3372072,3372073,3372074,3372075,3372076,3372077,3372078,3372079,3372080],"timestamp":0.0,"group_id":19} +{"session_id":"sess-f70a621d3fec","input_length":2803,"output_length":2940,"hash_ids":[3372081,3372082,3372083,3372084,3372085,3372086],"delay":4181.0} +{"session_id":"sess-f70a621d3fec","input_length":5999,"output_length":1169,"hash_ids":[3372087,3372088,3372089,3372090,3372091,3372092,3372093,3372094,3372095,3372096,3372097,3372098],"delay":38103.1} +{"session_id":"sess-f70a621d3fec","input_length":2316,"output_length":196,"hash_ids":[3372099,3372100,3372101,3372102,3372103],"delay":1948.0} +{"session_id":"sess-f70a621d3fec","input_length":4540,"output_length":481,"hash_ids":[3372104,3372105,3372106,3372107,3372108,3372109,3372110,3372111,3372112],"delay":1063.0} +{"session_id":"sess-f70a621d3fec","input_length":1987,"output_length":121,"hash_ids":[3372113,3372114,3372115,3372116],"delay":15701.0} +{"session_id":"sess-f70a621d3fec","input_length":1037,"output_length":313,"hash_ids":[3372117,3372118,3372119],"delay":2142.0} +{"session_id":"sess-f70a621d3fec","input_length":120,"output_length":120,"hash_ids":[3372120],"delay":14749.2} +{"session_id":"sess-f70a621d3fec","input_length":610,"output_length":205,"hash_ids":[3372121,3372122],"delay":8372.3} +{"session_id":"sess-f70a621d3fec","input_length":987,"output_length":114,"hash_ids":[3372123,3372124],"delay":205.5} +{"session_id":"sess-f70a621d3fec","input_length":691,"output_length":152,"hash_ids":[3372125,3372126],"delay":9769.5} +{"session_id":"sess-f70a621d3fec","input_length":1137,"output_length":120,"hash_ids":[3372127,3372128,3372129],"delay":749.7} +{"session_id":"sess-f70a621d3fec","input_length":7826,"output_length":252,"hash_ids":[3372130,3372131,3372132,3372133,3372134,3372135,3372136,3372137,3372138,3372139,3372140,3372141,3372142,3372143,3372144,3372145],"delay":1842.8} +{"session_id":"sess-f70a621d3fec","input_length":1970,"output_length":30,"hash_ids":[3372146,3372147,3372148,3372149],"delay":1343.0} +{"session_id":"sess-f70a621d3fec","input_length":382,"output_length":353,"hash_ids":[3372150],"delay":410.1} +{"session_id":"sess-f70a621d3fec","input_length":1811,"output_length":36,"hash_ids":[3372151,3372152,3372153,3372154],"delay":935.1} +{"session_id":"sess-f70a621d3fec","input_length":4925,"output_length":1385,"hash_ids":[3372155,3372156,3372157,3372158,3372159,3372160,3372161,3372162,3372163,3372164],"delay":3892.3} +{"session_id":"sess-f70a621d3fec","input_length":241,"output_length":192,"hash_ids":[3372165],"delay":652.3} +{"session_id":"sess-f70a621d3fec","input_length":764,"output_length":1522,"hash_ids":[3372166,3372167],"delay":933.7} +{"session_id":"sess-f70a621d3fec","input_length":3948,"output_length":105,"hash_ids":[3372168,3372169,3372170,3372171,3372172,3372173,3372174,3372175],"delay":538.0} +{"session_id":"sess-f70a621d3fec","input_length":449,"output_length":210,"hash_ids":[3372176],"delay":4442.4} +{"session_id":"sess-f70a621d3fec","input_length":5158,"output_length":265,"hash_ids":[3372177,3372178,3372179,3372180,3372181,3372182,3372183,3372184,3372185,3372186,3372187],"delay":19278.2} +{"session_id":"sess-f70a621d3fec","input_length":1924,"output_length":189,"hash_ids":[3372188,3372189,3372190,3372191],"delay":22529.2} +{"session_id":"sess-f70a621d3fec","input_length":1211,"output_length":105,"hash_ids":[3372192,3372193,3372194],"delay":819.2} +{"session_id":"sess-f70a621d3fec","input_length":794,"output_length":549,"hash_ids":[3372195,3372196],"delay":625.1} +{"session_id":"sess-13ed5c07724b","input_length":57893,"output_length":112,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3376063,3376064,3376065,3376066,3376067,3376068,3376069,3376070,3376071,3376072,3376073],"timestamp":0.0,"group_id":16} +{"session_id":"sess-13ed5c07724b","input_length":4246,"output_length":30,"hash_ids":[3376074,3376075,3376076,3376077,3376078,3376079,3376080,3376081,3376082],"delay":51669.0} +{"session_id":"sess-13ed5c07724b","input_length":3530,"output_length":145,"hash_ids":[3376083,3376084,3376085,3376086,3376087,3376088,3376089],"delay":1466.3} +{"session_id":"sess-13ed5c07724b","input_length":2602,"output_length":87,"hash_ids":[3376090,3376091,3376092,3376093,3376094,3376095],"delay":1257.5} +{"session_id":"sess-13ed5c07724b","input_length":2252,"output_length":2707,"hash_ids":[3376096,3376097,3376098,3376099,3376100],"delay":24795.5} +{"session_id":"sess-13ed5c07724b","input_length":337,"output_length":194,"hash_ids":[3376101],"delay":483.3} +{"session_id":"sess-13ed5c07724b","input_length":917,"output_length":1197,"hash_ids":[3376102,3376103],"delay":352.0} +{"session_id":"sess-13ed5c07724b","input_length":629,"output_length":111,"hash_ids":[3376104,3376105],"delay":1371.4} +{"session_id":"sess-13ed5c07724b","input_length":5705,"output_length":307,"hash_ids":[3376106,3376107,3376108,3376109,3376110,3376111,3376112,3376113,3376114,3376115,3376116,3376117],"delay":35855.3} +{"session_id":"sess-13ed5c07724b","input_length":1880,"output_length":337,"hash_ids":[3376118,3376119,3376120,3376121],"delay":2155.4} +{"session_id":"sess-13ed5c07724b","input_length":662,"output_length":1025,"hash_ids":[3376122,3376123],"delay":6712.4} +{"session_id":"sess-3af80e952968","input_length":74876,"output_length":92,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3380063,3380064,3380065,3380066,3380067,3380068,3380069,3380070,3380071,3380072,3380073,3380074,3380075,3380076,3380077,3380078,3380079,3380080,3380081,3380082,3380083,3380084,3380085,3380086,3380087,3380088,3380089,3380090,3380091,3380092,3380093,3380094,3380095,3380096,3380097,3380098,3380099,3380100,3380101,3380102,3380103,3380104,3380105,3380106],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3af80e952968","input_length":4085,"output_length":98,"hash_ids":[3380107,3380108,3380109,3380110,3380111,3380112,3380113,3380114],"delay":981.3} +{"session_id":"sess-3af80e952968","input_length":1270,"output_length":324,"hash_ids":[3380115,3380116,3380117],"delay":3055.3} +{"session_id":"sess-984f83427a2d","input_length":55342,"output_length":424,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,3384063,3384064,3384065,3384066,3384067,3384068],"timestamp":0.0,"group_id":49} +{"session_id":"sess-984f83427a2d","input_length":349,"output_length":79,"hash_ids":[3384069],"delay":24016.3} +{"session_id":"sess-984f83427a2d","input_length":5406,"output_length":1893,"hash_ids":[3384070,3384071,3384072,3384073,3384074,3384075,3384076,3384077,3384078,3384079,3384080],"delay":720.6} +{"session_id":"sess-984f83427a2d","input_length":8948,"output_length":606,"hash_ids":[3384081,3384082,3384083,3384084,3384085,3384086,3384087,3384088,3384089,3384090,3384091,3384092,3384093,3384094,3384095,3384096,3384097,3384098],"delay":1638.8} +{"session_id":"sess-984f83427a2d","input_length":1796,"output_length":90,"hash_ids":[3384099,3384100,3384101,3384102],"delay":385.2} +{"session_id":"sess-984f83427a2d","input_length":1277,"output_length":134,"hash_ids":[3384103,3384104,3384105],"delay":494.7} +{"session_id":"sess-984f83427a2d","input_length":2129,"output_length":2682,"hash_ids":[3384106,3384107,3384108,3384109,3384110],"delay":665.1} +{"session_id":"sess-984f83427a2d","input_length":1944,"output_length":147,"hash_ids":[3384111,3384112,3384113,3384114],"delay":788.6} +{"session_id":"sess-984f83427a2d","input_length":3868,"output_length":80,"hash_ids":[3384115,3384116,3384117,3384118,3384119,3384120,3384121,3384122],"delay":1143.2} +{"session_id":"sess-984f83427a2d","input_length":1468,"output_length":123,"hash_ids":[3384123,3384124,3384125],"delay":465.1} +{"session_id":"sess-984f83427a2d","input_length":638,"output_length":231,"hash_ids":[3384126,3384127],"delay":1002.7} +{"session_id":"sess-984f83427a2d","input_length":344,"output_length":49,"hash_ids":[3384128],"delay":689.7} +{"session_id":"sess-984f83427a2d","input_length":4073,"output_length":1004,"hash_ids":[3384129,3384130,3384131,3384132,3384133,3384134,3384135,3384136],"delay":11243.4} +{"session_id":"sess-984f83427a2d","input_length":1317,"output_length":218,"hash_ids":[3384137,3384138,3384139],"delay":5326.0} +{"session_id":"sess-984f83427a2d","input_length":1668,"output_length":30,"hash_ids":[3384140,3384141,3384142,3384143],"delay":16832.6} +{"session_id":"sess-984f83427a2d","input_length":5157,"output_length":929,"hash_ids":[3384144,3384145,3384146,3384147,3384148,3384149,3384150,3384151,3384152,3384153,3384154],"delay":13171.6} +{"session_id":"sess-984f83427a2d","input_length":7635,"output_length":35,"hash_ids":[3384155,3384156,3384157,3384158,3384159,3384160,3384161,3384162,3384163,3384164,3384165,3384166,3384167,3384168,3384169],"delay":166.8} +{"session_id":"sess-984f83427a2d","input_length":216,"output_length":813,"hash_ids":[3384170],"delay":367.4} +{"session_id":"sess-984f83427a2d","input_length":5143,"output_length":145,"hash_ids":[3384171,3384172,3384173,3384174,3384175,3384176,3384177,3384178,3384179,3384180,3384181],"delay":1593.9} +{"session_id":"sess-984f83427a2d","input_length":2341,"output_length":919,"hash_ids":[3384182,3384183,3384184,3384185,3384186],"delay":1801.7} +{"session_id":"sess-984f83427a2d","input_length":1539,"output_length":148,"hash_ids":[3384187,3384188,3384189,3384190],"delay":3234.1} +{"session_id":"sess-90a7023ff401","input_length":58387,"output_length":1065,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3388063,3388064,3388065,3388066,3388067,3388068,3388069,3388070,3388071,3388072,3388073,3388074],"timestamp":0.0,"group_id":4} +{"session_id":"sess-90a7023ff401","input_length":4751,"output_length":216,"hash_ids":[3388075,3388076,3388077,3388078,3388079,3388080,3388081,3388082,3388083,3388084],"delay":2210.3} +{"session_id":"sess-90a7023ff401","input_length":3220,"output_length":113,"hash_ids":[3388085,3388086,3388087,3388088,3388089,3388090,3388091],"delay":419.4} +{"session_id":"sess-90a7023ff401","input_length":74,"output_length":411,"hash_ids":[3388092],"delay":396.2} +{"session_id":"sess-90a7023ff401","input_length":2538,"output_length":1302,"hash_ids":[3388093,3388094,3388095,3388096,3388097],"delay":1765.4} +{"session_id":"sess-90a7023ff401","input_length":515,"output_length":42,"hash_ids":[3388098,3388099],"delay":4984.1} +{"session_id":"sess-90a7023ff401","input_length":1163,"output_length":850,"hash_ids":[3388100,3388101,3388102],"delay":433.5} +{"session_id":"sess-90a7023ff401","input_length":2273,"output_length":1870,"hash_ids":[3388103,3388104,3388105,3388106,3388107],"delay":1094.0} +{"session_id":"sess-90a7023ff401","input_length":5806,"output_length":340,"hash_ids":[3388108,3388109,3388110,3388111,3388112,3388113,3388114,3388115,3388116,3388117,3388118,3388119],"delay":2572.1} +{"session_id":"sess-90a7023ff401","input_length":2203,"output_length":285,"hash_ids":[3388120,3388121,3388122,3388123,3388124],"delay":876.1} +{"session_id":"sess-90a7023ff401","input_length":833,"output_length":302,"hash_ids":[3388125,3388126],"delay":646.5} +{"session_id":"sess-90a7023ff401","input_length":3675,"output_length":1159,"hash_ids":[3388127,3388128,3388129,3388130,3388131,3388132,3388133,3388134],"delay":682.2} +{"session_id":"sess-90a7023ff401","input_length":1715,"output_length":371,"hash_ids":[3388135,3388136,3388137,3388138],"delay":1156.6} +{"session_id":"sess-90a7023ff401","input_length":7347,"output_length":1077,"hash_ids":[3388139,3388140,3388141,3388142,3388143,3388144,3388145,3388146,3388147,3388148,3388149,3388150,3388151,3388152,3388153],"delay":3405.4} +{"session_id":"sess-90a7023ff401","input_length":3040,"output_length":656,"hash_ids":[3388154,3388155,3388156,3388157,3388158,3388159],"delay":2828.4} +{"session_id":"sess-90a7023ff401","input_length":1463,"output_length":701,"hash_ids":[3388160,3388161,3388162],"delay":2420.2} +{"session_id":"sess-90a7023ff401","input_length":2913,"output_length":167,"hash_ids":[3388163,3388164,3388165,3388166,3388167,3388168],"delay":1383.7} +{"session_id":"sess-90a7023ff401","input_length":1050,"output_length":89,"hash_ids":[3388169,3388170,3388171],"delay":22337.5} +{"session_id":"sess-90a7023ff401","input_length":1218,"output_length":326,"hash_ids":[3388172,3388173,3388174],"delay":5842.0} +{"session_id":"sess-90a7023ff401","input_length":2271,"output_length":791,"hash_ids":[3388175,3388176,3388177,3388178,3388179],"delay":283.3} +{"session_id":"sess-90a7023ff401","input_length":3043,"output_length":308,"hash_ids":[3388180,3388181,3388182,3388183,3388184,3388185],"delay":332.9} +{"session_id":"sess-90a7023ff401","input_length":4298,"output_length":78,"hash_ids":[3388186,3388187,3388188,3388189,3388190,3388191,3388192,3388193,3388194],"delay":10973.2} +{"session_id":"sess-90a7023ff401","input_length":2003,"output_length":625,"hash_ids":[3388195,3388196,3388197,3388198],"delay":845.3} +{"session_id":"sess-c4a14c663e1a","input_length":60618,"output_length":515,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3392063,3392064,3392065,3392066,3392067,3392068,3392069,3392070,3392071,3392072,3392073,3392074,3392075,3392076,3392077,3392078],"timestamp":0.0,"group_id":1} +{"session_id":"sess-3a490dd78b64","input_length":55897,"output_length":117,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3396063,3396064,3396065,3396066,3396067,3396068,3396069],"timestamp":0.0,"group_id":11} +{"session_id":"sess-3a490dd78b64","input_length":3591,"output_length":702,"hash_ids":[3396070,3396071,3396072,3396073,3396074,3396075,3396076,3396077],"delay":2062.9} +{"session_id":"sess-3a490dd78b64","input_length":397,"output_length":223,"hash_ids":[3396078],"delay":881.8} +{"session_id":"sess-3a490dd78b64","input_length":1008,"output_length":941,"hash_ids":[3396079,3396080],"delay":1275.8} +{"session_id":"sess-3a490dd78b64","input_length":183,"output_length":613,"hash_ids":[3396081],"delay":1675.7} +{"session_id":"sess-3a490dd78b64","input_length":4349,"output_length":863,"hash_ids":[3396082,3396083,3396084,3396085,3396086,3396087,3396088,3396089,3396090],"delay":40579.5} +{"session_id":"sess-3a490dd78b64","input_length":854,"output_length":122,"hash_ids":[3396091,3396092],"delay":36379.8} +{"session_id":"sess-3a490dd78b64","input_length":2159,"output_length":322,"hash_ids":[3396093,3396094,3396095,3396096,3396097],"delay":3929.7} +{"session_id":"sess-3a490dd78b64","input_length":245,"output_length":365,"hash_ids":[3396098],"delay":702.9} +{"session_id":"sess-3a490dd78b64","input_length":1773,"output_length":201,"hash_ids":[3396099,3396100,3396101,3396102],"delay":2717.2} +{"session_id":"sess-3a490dd78b64","input_length":819,"output_length":317,"hash_ids":[3396103,3396104],"delay":6356.7} +{"session_id":"sess-3a490dd78b64","input_length":2652,"output_length":1212,"hash_ids":[3396105,3396106,3396107,3396108,3396109,3396110],"delay":2674.9} +{"session_id":"sess-3a490dd78b64","input_length":8172,"output_length":427,"hash_ids":[3396111,3396112,3396113,3396114,3396115,3396116,3396117,3396118,3396119,3396120,3396121,3396122,3396123,3396124,3396125,3396126],"delay":703.9} +{"session_id":"sess-3a490dd78b64","input_length":1139,"output_length":384,"hash_ids":[3396127,3396128,3396129],"delay":8896.5} +{"session_id":"sess-3a490dd78b64","input_length":1665,"output_length":467,"hash_ids":[3396130,3396131,3396132,3396133],"delay":727.3} +{"session_id":"sess-3a490dd78b64","input_length":699,"output_length":58,"hash_ids":[3396134,3396135],"delay":674.1} +{"session_id":"sess-3a490dd78b64","input_length":1227,"output_length":150,"hash_ids":[3396136,3396137,3396138],"delay":10532.5} +{"session_id":"sess-3a490dd78b64","input_length":4044,"output_length":770,"hash_ids":[3396139,3396140,3396141,3396142,3396143,3396144,3396145,3396146],"delay":2700.4} +{"session_id":"sess-3a490dd78b64","input_length":1534,"output_length":96,"hash_ids":[3396147,3396148,3396149],"delay":1912.8} +{"session_id":"sess-3a490dd78b64","input_length":1469,"output_length":826,"hash_ids":[3396150,3396151,3396152],"delay":427.8} +{"session_id":"sess-c65a5ea6d3af","input_length":54263,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3400063,3400064,3400065],"timestamp":0.0,"group_id":5} +{"session_id":"sess-c65a5ea6d3af","input_length":690,"output_length":277,"hash_ids":[3400066,3400067],"delay":624.8} +{"session_id":"sess-c65a5ea6d3af","input_length":754,"output_length":167,"hash_ids":[3400068,3400069],"delay":26479.2} +{"session_id":"sess-c65a5ea6d3af","input_length":6930,"output_length":675,"hash_ids":[3400070,3400071,3400072,3400073,3400074,3400075,3400076,3400077,3400078,3400079,3400080,3400081,3400082,3400083],"delay":19376.1} +{"session_id":"sess-c65a5ea6d3af","input_length":5318,"output_length":509,"hash_ids":[3400084,3400085,3400086,3400087,3400088,3400089,3400090,3400091,3400092,3400093,3400094],"delay":1724.6} +{"session_id":"sess-4b7b72f13389","input_length":63735,"output_length":622,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3404063,3404064,3404065,3404066,3404067,3404068,3404069,3404070,3404071,3404072,3404073,3404074,3404075,3404076,3404077,3404078,3404079,3404080,3404081,3404082,3404083,3404084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4b7b72f13389","input_length":302,"output_length":332,"hash_ids":[3404085],"delay":271.4} +{"session_id":"sess-4b7b72f13389","input_length":441,"output_length":476,"hash_ids":[3404086],"delay":9640.0} +{"session_id":"sess-4b7b72f13389","input_length":3916,"output_length":663,"hash_ids":[3404087,3404088,3404089,3404090,3404091,3404092,3404093,3404094],"delay":1271.5} +{"session_id":"sess-4b7b72f13389","input_length":1617,"output_length":560,"hash_ids":[3404095,3404096,3404097,3404098],"delay":27663.5} +{"session_id":"sess-4b7b72f13389","input_length":2175,"output_length":278,"hash_ids":[3404099,3404100,3404101,3404102,3404103],"delay":181.2} +{"session_id":"sess-4b7b72f13389","input_length":776,"output_length":636,"hash_ids":[3404104,3404105],"delay":1124.6} +{"session_id":"sess-4b7b72f13389","input_length":364,"output_length":30,"hash_ids":[3404106],"delay":22985.6} +{"session_id":"sess-4b7b72f13389","input_length":739,"output_length":242,"hash_ids":[3404107,3404108],"delay":803.4} +{"session_id":"sess-4b7b72f13389","input_length":2717,"output_length":1007,"hash_ids":[3404109,3404110,3404111,3404112,3404113,3404114],"delay":1769.8} +{"session_id":"sess-4b7b72f13389","input_length":1419,"output_length":58,"hash_ids":[3404115,3404116,3404117],"delay":13566.7} +{"session_id":"sess-4b7b72f13389","input_length":312,"output_length":141,"hash_ids":[3404118],"delay":50994.2} +{"session_id":"sess-4b7b72f13389","input_length":2374,"output_length":182,"hash_ids":[3404119,3404120,3404121,3404122,3404123],"delay":15826.2} +{"session_id":"sess-4b7b72f13389","input_length":2163,"output_length":206,"hash_ids":[3404124,3404125,3404126,3404127,3404128],"delay":8658.9} +{"session_id":"sess-b7b662d41e9b","input_length":58301,"output_length":695,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3408063,3408064,3408065,3408066,3408067,3408068,3408069,3408070,3408071,3408072,3408073],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b7b662d41e9b","input_length":499,"output_length":56,"hash_ids":[3408074],"delay":1164.1} +{"session_id":"sess-b7b662d41e9b","input_length":1262,"output_length":533,"hash_ids":[3408075,3408076,3408077],"delay":4188.4} +{"session_id":"sess-b7b662d41e9b","input_length":244,"output_length":202,"hash_ids":[3408078],"delay":476.3} +{"session_id":"sess-b7b662d41e9b","input_length":257,"output_length":468,"hash_ids":[3408079],"delay":510.7} +{"session_id":"sess-b7b662d41e9b","input_length":1975,"output_length":214,"hash_ids":[3408080,3408081,3408082,3408083],"delay":785.2} +{"session_id":"sess-b7b662d41e9b","input_length":603,"output_length":541,"hash_ids":[3408084,3408085],"delay":2490.6} +{"session_id":"sess-b7b662d41e9b","input_length":1646,"output_length":135,"hash_ids":[3408086,3408087,3408088,3408089],"delay":1135.0} +{"session_id":"sess-b7b662d41e9b","input_length":248,"output_length":74,"hash_ids":[3408090],"delay":1377.3} +{"session_id":"sess-b7b662d41e9b","input_length":1738,"output_length":818,"hash_ids":[3408091,3408092,3408093,3408094],"delay":451.3} +{"session_id":"sess-b7b662d41e9b","input_length":1614,"output_length":540,"hash_ids":[3408095,3408096,3408097,3408098],"delay":241.5} +{"session_id":"sess-b7b662d41e9b","input_length":164,"output_length":264,"hash_ids":[3408099],"delay":1411.9} +{"session_id":"sess-b7b662d41e9b","input_length":1048,"output_length":753,"hash_ids":[3408100,3408101,3408102],"delay":17238.0} +{"session_id":"sess-b7b662d41e9b","input_length":1076,"output_length":120,"hash_ids":[3408103,3408104,3408105],"delay":900.5} +{"session_id":"sess-b7b662d41e9b","input_length":979,"output_length":328,"hash_ids":[3408106,3408107],"delay":399.8} +{"session_id":"sess-b7b662d41e9b","input_length":5465,"output_length":121,"hash_ids":[3408108,3408109,3408110,3408111,3408112,3408113,3408114,3408115,3408116,3408117,3408118],"delay":2277.4} +{"session_id":"sess-07e162a1fb9c","input_length":52819,"output_length":52,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3412063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-07e162a1fb9c","input_length":1020,"output_length":156,"hash_ids":[3412064,3412065],"delay":603.9} +{"session_id":"sess-07e162a1fb9c","input_length":932,"output_length":455,"hash_ids":[3412066,3412067],"delay":967.2} +{"session_id":"sess-4471efb3208f","input_length":71725,"output_length":434,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3416063,3416064,3416065,3416066,3416067,3416068,3416069,3416070,3416071,3416072,3416073,3416074,3416075,3416076,3416077,3416078,3416079,3416080,3416081,3416082,3416083,3416084,3416085,3416086,3416087,3416088,3416089,3416090,3416091,3416092,3416093,3416094,3416095,3416096,3416097,3416098,3416099,3416100],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4471efb3208f","input_length":2536,"output_length":779,"hash_ids":[3416101,3416102,3416103,3416104,3416105],"delay":382.5} +{"session_id":"sess-4471efb3208f","input_length":5290,"output_length":296,"hash_ids":[3416106,3416107,3416108,3416109,3416110,3416111,3416112,3416113,3416114,3416115,3416116],"delay":431.5} +{"session_id":"sess-4471efb3208f","input_length":2951,"output_length":116,"hash_ids":[3416117,3416118,3416119,3416120,3416121,3416122],"delay":24382.7} +{"session_id":"sess-4471efb3208f","input_length":879,"output_length":121,"hash_ids":[3416123,3416124],"delay":44040.0} +{"session_id":"sess-4471efb3208f","input_length":74,"output_length":217,"hash_ids":[3416125],"delay":4136.4} +{"session_id":"sess-4471efb3208f","input_length":3740,"output_length":180,"hash_ids":[3416126,3416127,3416128,3416129,3416130,3416131,3416132,3416133],"delay":3886.6} +{"session_id":"sess-4471efb3208f","input_length":2561,"output_length":932,"hash_ids":[3416134,3416135,3416136,3416137,3416138,3416139],"delay":577.6} +{"session_id":"sess-4471efb3208f","input_length":1995,"output_length":264,"hash_ids":[3416140,3416141,3416142,3416143],"delay":260.9} +{"session_id":"sess-4471efb3208f","input_length":2512,"output_length":209,"hash_ids":[3416144,3416145,3416146,3416147,3416148],"delay":265.0} +{"session_id":"sess-4471efb3208f","input_length":2184,"output_length":906,"hash_ids":[3416149,3416150,3416151,3416152,3416153],"delay":6267.0} +{"session_id":"sess-4471efb3208f","input_length":4622,"output_length":177,"hash_ids":[3416154,3416155,3416156,3416157,3416158,3416159,3416160,3416161,3416162,3416163],"delay":1479.6} +{"session_id":"sess-4471efb3208f","input_length":359,"output_length":392,"hash_ids":[3416164],"delay":960.9} +{"session_id":"sess-4471efb3208f","input_length":2419,"output_length":207,"hash_ids":[3416165,3416166,3416167,3416168,3416169],"delay":377.9} +{"session_id":"sess-4471efb3208f","input_length":1308,"output_length":362,"hash_ids":[3416170,3416171,3416172],"delay":1298.9} +{"session_id":"sess-4471efb3208f","input_length":7779,"output_length":256,"hash_ids":[3416173,3416174,3416175,3416176,3416177,3416178,3416179,3416180,3416181,3416182,3416183,3416184,3416185,3416186,3416187,3416188],"delay":658.4} +{"session_id":"sess-4471efb3208f","input_length":2090,"output_length":195,"hash_ids":[3416189,3416190,3416191,3416192,3416193],"delay":384.0} +{"session_id":"sess-4471efb3208f","input_length":907,"output_length":500,"hash_ids":[3416194,3416195],"delay":120.3} +{"session_id":"sess-4471efb3208f","input_length":1746,"output_length":536,"hash_ids":[3416196,3416197,3416198,3416199],"delay":720.1} +{"session_id":"sess-4471efb3208f","input_length":2226,"output_length":62,"hash_ids":[3416200,3416201,3416202,3416203,3416204],"delay":1136.6} +{"session_id":"sess-4471efb3208f","input_length":966,"output_length":142,"hash_ids":[3416205,3416206],"delay":447.8} +{"session_id":"sess-cf36c2f8fe79","input_length":54587,"output_length":504,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3420063,3420064,3420065,3420066],"timestamp":0.0,"group_id":2} +{"session_id":"sess-cf36c2f8fe79","input_length":2667,"output_length":204,"hash_ids":[3420067,3420068,3420069,3420070,3420071,3420072],"delay":1922.7} +{"session_id":"sess-cf36c2f8fe79","input_length":1978,"output_length":255,"hash_ids":[3420073,3420074,3420075,3420076],"delay":2528.3} +{"session_id":"sess-cf36c2f8fe79","input_length":1395,"output_length":1642,"hash_ids":[3420077,3420078,3420079],"delay":1809.4} +{"session_id":"sess-cf36c2f8fe79","input_length":6533,"output_length":142,"hash_ids":[3420080,3420081,3420082,3420083,3420084,3420085,3420086,3420087,3420088,3420089,3420090,3420091,3420092],"delay":18919.1} +{"session_id":"sess-cf36c2f8fe79","input_length":4958,"output_length":238,"hash_ids":[3420093,3420094,3420095,3420096,3420097,3420098,3420099,3420100,3420101,3420102],"delay":875.0} +{"session_id":"sess-cf36c2f8fe79","input_length":2892,"output_length":133,"hash_ids":[3420103,3420104,3420105,3420106,3420107,3420108],"delay":749.4} +{"session_id":"sess-cf36c2f8fe79","input_length":1115,"output_length":97,"hash_ids":[3420109,3420110,3420111],"delay":21410.0} +{"session_id":"sess-cf36c2f8fe79","input_length":632,"output_length":76,"hash_ids":[3420112,3420113],"delay":1354.4} +{"session_id":"sess-cf36c2f8fe79","input_length":3572,"output_length":105,"hash_ids":[3420114,3420115,3420116,3420117,3420118,3420119,3420120],"delay":257.5} +{"session_id":"sess-cf36c2f8fe79","input_length":6157,"output_length":53,"hash_ids":[3420121,3420122,3420123,3420124,3420125,3420126,3420127,3420128,3420129,3420130,3420131,3420132,3420133],"delay":456.8} +{"session_id":"sess-cf36c2f8fe79","input_length":654,"output_length":400,"hash_ids":[3420134,3420135],"delay":617.0} +{"session_id":"sess-cf36c2f8fe79","input_length":725,"output_length":192,"hash_ids":[3420136,3420137],"delay":4205.0} +{"session_id":"sess-cf36c2f8fe79","input_length":453,"output_length":268,"hash_ids":[3420138],"delay":909.2} +{"session_id":"sess-cf36c2f8fe79","input_length":4219,"output_length":838,"hash_ids":[3420139,3420140,3420141,3420142,3420143,3420144,3420145,3420146,3420147],"delay":25619.7} +{"session_id":"sess-cf36c2f8fe79","input_length":1562,"output_length":220,"hash_ids":[3420148,3420149,3420150,3420151],"delay":2228.9} +{"session_id":"sess-cf36c2f8fe79","input_length":622,"output_length":452,"hash_ids":[3420152,3420153],"delay":585.6} +{"session_id":"sess-cf36c2f8fe79","input_length":8024,"output_length":783,"hash_ids":[3420154,3420155,3420156,3420157,3420158,3420159,3420160,3420161,3420162,3420163,3420164,3420165,3420166,3420167,3420168,3420169],"delay":302.8} +{"session_id":"sess-cf36c2f8fe79","input_length":7802,"output_length":90,"hash_ids":[3420170,3420171,3420172,3420173,3420174,3420175,3420176,3420177,3420178,3420179,3420180,3420181,3420182,3420183,3420184,3420185],"delay":192.2} +{"session_id":"sess-cf36c2f8fe79","input_length":979,"output_length":30,"hash_ids":[3420186,3420187],"delay":1088.0} +{"session_id":"sess-cf36c2f8fe79","input_length":3132,"output_length":943,"hash_ids":[3420188,3420189,3420190,3420191,3420192,3420193,3420194],"delay":16841.1} +{"session_id":"sess-cf36c2f8fe79","input_length":410,"output_length":521,"hash_ids":[3420195],"delay":373.6} +{"session_id":"sess-9242e5333a38","input_length":64669,"output_length":229,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3424063,3424064,3424065,3424066,3424067,3424068,3424069,3424070,3424071,3424072,3424073,3424074,3424075,3424076,3424077,3424078,3424079,3424080,3424081,3424082,3424083,3424084,3424085,3424086],"timestamp":0.0,"group_id":11} +{"session_id":"sess-9242e5333a38","input_length":907,"output_length":516,"hash_ids":[3424087,3424088],"delay":409.0} +{"session_id":"sess-9242e5333a38","input_length":782,"output_length":105,"hash_ids":[3424089,3424090],"delay":2034.7} +{"session_id":"sess-9242e5333a38","input_length":3271,"output_length":2672,"hash_ids":[3424091,3424092,3424093,3424094,3424095,3424096,3424097],"delay":2093.9} +{"session_id":"sess-9242e5333a38","input_length":4914,"output_length":732,"hash_ids":[3424098,3424099,3424100,3424101,3424102,3424103,3424104,3424105,3424106,3424107],"delay":7863.3} +{"session_id":"sess-9242e5333a38","input_length":2233,"output_length":1849,"hash_ids":[3424108,3424109,3424110,3424111,3424112],"delay":12469.4} +{"session_id":"sess-9242e5333a38","input_length":4319,"output_length":732,"hash_ids":[3424113,3424114,3424115,3424116,3424117,3424118,3424119,3424120,3424121],"delay":713.4} +{"session_id":"sess-9242e5333a38","input_length":3797,"output_length":55,"hash_ids":[3424122,3424123,3424124,3424125,3424126,3424127,3424128,3424129],"delay":463.2} +{"session_id":"sess-9242e5333a38","input_length":39,"output_length":236,"hash_ids":[3424130],"delay":589.2} +{"session_id":"sess-9242e5333a38","input_length":1500,"output_length":1133,"hash_ids":[3424131,3424132,3424133],"delay":582.1} +{"session_id":"sess-9242e5333a38","input_length":3624,"output_length":869,"hash_ids":[3424134,3424135,3424136,3424137,3424138,3424139,3424140,3424141],"delay":538.9} +{"session_id":"sess-9242e5333a38","input_length":230,"output_length":128,"hash_ids":[3424142],"delay":379.4} +{"session_id":"sess-9242e5333a38","input_length":1276,"output_length":77,"hash_ids":[3424143,3424144,3424145],"delay":433.4} +{"session_id":"sess-9242e5333a38","input_length":881,"output_length":244,"hash_ids":[3424146,3424147],"delay":133.5} +{"session_id":"sess-9242e5333a38","input_length":1123,"output_length":279,"hash_ids":[3424148,3424149,3424150],"delay":29909.2} +{"session_id":"sess-9242e5333a38","input_length":1096,"output_length":565,"hash_ids":[3424151,3424152,3424153],"delay":21478.6} +{"session_id":"sess-9242e5333a38","input_length":3295,"output_length":88,"hash_ids":[3424154,3424155,3424156,3424157,3424158,3424159,3424160],"delay":592.4} +{"session_id":"sess-9242e5333a38","input_length":2321,"output_length":574,"hash_ids":[3424161,3424162,3424163,3424164,3424165],"delay":446.2} +{"session_id":"sess-9242e5333a38","input_length":2377,"output_length":100,"hash_ids":[3424166,3424167,3424168,3424169,3424170],"delay":2880.8} +{"session_id":"sess-9242e5333a38","input_length":4339,"output_length":690,"hash_ids":[3424171,3424172,3424173,3424174,3424175,3424176,3424177,3424178,3424179],"delay":17259.0} +{"session_id":"sess-9242e5333a38","input_length":5067,"output_length":1998,"hash_ids":[3424180,3424181,3424182,3424183,3424184,3424185,3424186,3424187,3424188,3424189],"delay":91.7} +{"session_id":"sess-9242e5333a38","input_length":3504,"output_length":245,"hash_ids":[3424190,3424191,3424192,3424193,3424194,3424195,3424196],"delay":528.3} +{"session_id":"sess-058cebcaedbe","input_length":81783,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3428063,3428064,3428065,3428066,3428067,3428068,3428069,3428070,3428071,3428072,3428073,3428074,3428075,3428076,3428077,3428078,3428079,3428080,3428081,3428082,3428083,3428084,3428085,3428086,3428087,3428088,3428089,3428090,3428091,3428092,3428093,3428094,3428095,3428096,3428097,3428098,3428099,3428100,3428101,3428102,3428103,3428104,3428105,3428106,3428107,3428108,3428109,3428110,3428111,3428112,3428113,3428114,3428115,3428116,3428117,3428118,3428119],"timestamp":0.0,"group_id":0} +{"session_id":"sess-058cebcaedbe","input_length":7787,"output_length":102,"hash_ids":[3428120,3428121,3428122,3428123,3428124,3428125,3428126,3428127,3428128,3428129,3428130,3428131,3428132,3428133,3428134,3428135],"delay":8664.2} +{"session_id":"sess-058cebcaedbe","input_length":1033,"output_length":216,"hash_ids":[3428136,3428137,3428138],"delay":711.5} +{"session_id":"sess-058cebcaedbe","input_length":594,"output_length":173,"hash_ids":[3428139,3428140],"delay":376.7} +{"session_id":"sess-0a76dbfa12cb","input_length":59252,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3432063,3432064,3432065,3432066,3432067,3432068,3432069,3432070,3432071,3432072,3432073,3432074,3432075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0a76dbfa12cb","input_length":696,"output_length":1588,"hash_ids":[3432076,3432077],"delay":10288.6} +{"session_id":"sess-0a76dbfa12cb","input_length":4207,"output_length":123,"hash_ids":[3432078,3432079,3432080,3432081,3432082,3432083,3432084,3432085,3432086],"delay":940.2} +{"session_id":"sess-0a76dbfa12cb","input_length":1258,"output_length":359,"hash_ids":[3432087,3432088,3432089],"delay":7820.9} +{"session_id":"sess-0a76dbfa12cb","input_length":395,"output_length":900,"hash_ids":[3432090],"delay":1295.9} +{"session_id":"sess-0a76dbfa12cb","input_length":2178,"output_length":412,"hash_ids":[3432091,3432092,3432093,3432094,3432095],"delay":362.1} +{"session_id":"sess-0a76dbfa12cb","input_length":510,"output_length":61,"hash_ids":[3432096],"delay":495.6} +{"session_id":"sess-0a76dbfa12cb","input_length":533,"output_length":148,"hash_ids":[3432097,3432098],"delay":1918.3} +{"session_id":"sess-0a76dbfa12cb","input_length":8272,"output_length":80,"hash_ids":[3432099,3432100,3432101,3432102,3432103,3432104,3432105,3432106,3432107,3432108,3432109,3432110,3432111,3432112,3432113,3432114,3432115],"delay":5121.7} +{"session_id":"sess-f9ce21582475","input_length":81055,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,3436063,3436064,3436065,3436066,3436067,3436068,3436069,3436070,3436071,3436072,3436073,3436074,3436075,3436076,3436077,3436078,3436079,3436080,3436081,3436082,3436083,3436084,3436085,3436086,3436087,3436088,3436089,3436090,3436091,3436092,3436093,3436094,3436095,3436096,3436097,3436098,3436099,3436100,3436101,3436102,3436103,3436104,3436105,3436106,3436107,3436108,3436109,3436110,3436111,3436112,3436113,3436114,3436115,3436116,3436117,3436118],"timestamp":0.0,"group_id":31} +{"session_id":"sess-f9ce21582475","input_length":1255,"output_length":30,"hash_ids":[3436119,3436120,3436121],"delay":3302.4} +{"session_id":"sess-f9ce21582475","input_length":1165,"output_length":512,"hash_ids":[3436122,3436123,3436124],"delay":838.5} +{"session_id":"sess-f9ce21582475","input_length":899,"output_length":283,"hash_ids":[3436125,3436126],"delay":339.5} +{"session_id":"sess-f9ce21582475","input_length":374,"output_length":53,"hash_ids":[3436127],"delay":10478.0} +{"session_id":"sess-f9ce21582475","input_length":3153,"output_length":199,"hash_ids":[3436128,3436129,3436130,3436131,3436132,3436133,3436134],"delay":1757.3} +{"session_id":"sess-179bca1179e1","input_length":53149,"output_length":93,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3440063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-179bca1179e1","input_length":1081,"output_length":71,"hash_ids":[3440064,3440065,3440066],"delay":191.3} +{"session_id":"sess-179bca1179e1","input_length":2367,"output_length":200,"hash_ids":[3440067,3440068,3440069,3440070,3440071],"delay":1593.4} +{"session_id":"sess-179bca1179e1","input_length":140,"output_length":161,"hash_ids":[3440072],"delay":5476.9} +{"session_id":"sess-179bca1179e1","input_length":2059,"output_length":236,"hash_ids":[3440073,3440074,3440075,3440076,3440077],"delay":1226.6} +{"session_id":"sess-179bca1179e1","input_length":353,"output_length":162,"hash_ids":[3440078],"delay":792.6} +{"session_id":"sess-179bca1179e1","input_length":5264,"output_length":658,"hash_ids":[3440079,3440080,3440081,3440082,3440083,3440084,3440085,3440086,3440087,3440088,3440089],"delay":26713.1} +{"session_id":"sess-179bca1179e1","input_length":467,"output_length":989,"hash_ids":[3440090],"delay":1878.1} +{"session_id":"sess-179bca1179e1","input_length":1076,"output_length":321,"hash_ids":[3440091,3440092,3440093],"delay":532.1} +{"session_id":"sess-179bca1179e1","input_length":658,"output_length":47,"hash_ids":[3440094,3440095],"delay":2782.2} +{"session_id":"sess-179bca1179e1","input_length":1569,"output_length":295,"hash_ids":[3440096,3440097,3440098,3440099],"delay":1389.4} +{"session_id":"sess-179bca1179e1","input_length":4219,"output_length":100,"hash_ids":[3440100,3440101,3440102,3440103,3440104,3440105,3440106,3440107,3440108],"delay":9554.0} +{"session_id":"sess-179bca1179e1","input_length":4364,"output_length":353,"hash_ids":[3440109,3440110,3440111,3440112,3440113,3440114,3440115,3440116,3440117],"delay":46607.9} +{"session_id":"sess-179bca1179e1","input_length":3507,"output_length":52,"hash_ids":[3440118,3440119,3440120,3440121,3440122,3440123,3440124],"delay":1411.4} +{"session_id":"sess-179bca1179e1","input_length":2299,"output_length":627,"hash_ids":[3440125,3440126,3440127,3440128,3440129],"delay":1683.3} +{"session_id":"sess-179bca1179e1","input_length":1702,"output_length":144,"hash_ids":[3440130,3440131,3440132,3440133],"delay":446.4} +{"session_id":"sess-179bca1179e1","input_length":8874,"output_length":204,"hash_ids":[3440134,3440135,3440136,3440137,3440138,3440139,3440140,3440141,3440142,3440143,3440144,3440145,3440146,3440147,3440148,3440149,3440150,3440151],"delay":3075.8} +{"session_id":"sess-179bca1179e1","input_length":9297,"output_length":440,"hash_ids":[3440152,3440153,3440154,3440155,3440156,3440157,3440158,3440159,3440160,3440161,3440162,3440163,3440164,3440165,3440166,3440167,3440168,3440169,3440170],"delay":396.9} +{"session_id":"sess-179bca1179e1","input_length":4843,"output_length":554,"hash_ids":[3440171,3440172,3440173,3440174,3440175,3440176,3440177,3440178,3440179,3440180],"delay":481.0} +{"session_id":"sess-179bca1179e1","input_length":3268,"output_length":578,"hash_ids":[3440181,3440182,3440183,3440184,3440185,3440186,3440187],"delay":250.1} +{"session_id":"sess-179bca1179e1","input_length":231,"output_length":992,"hash_ids":[3440188],"delay":570.1} +{"session_id":"sess-179bca1179e1","input_length":4737,"output_length":240,"hash_ids":[3440189,3440190,3440191,3440192,3440193,3440194,3440195,3440196,3440197,3440198],"delay":394.0} +{"session_id":"sess-179bca1179e1","input_length":3015,"output_length":241,"hash_ids":[3440199,3440200,3440201,3440202,3440203,3440204],"delay":3590.1} +{"session_id":"sess-179bca1179e1","input_length":323,"output_length":459,"hash_ids":[3440205],"delay":1434.8} +{"session_id":"sess-179bca1179e1","input_length":345,"output_length":293,"hash_ids":[3440206],"delay":803.5} +{"session_id":"sess-dedf68ed0b7d","input_length":63923,"output_length":213,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3444063,3444064,3444065,3444066,3444067,3444068,3444069,3444070,3444071,3444072,3444073,3444074,3444075,3444076,3444077,3444078,3444079,3444080,3444081,3444082,3444083,3444084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dedf68ed0b7d","input_length":1894,"output_length":1012,"hash_ids":[3444085,3444086,3444087,3444088],"delay":1229.9} +{"session_id":"sess-dedf68ed0b7d","input_length":5350,"output_length":220,"hash_ids":[3444089,3444090,3444091,3444092,3444093,3444094,3444095,3444096,3444097,3444098,3444099],"delay":3431.0} +{"session_id":"sess-dedf68ed0b7d","input_length":1161,"output_length":243,"hash_ids":[3444100,3444101,3444102],"delay":2307.6} +{"session_id":"sess-dedf68ed0b7d","input_length":1340,"output_length":255,"hash_ids":[3444103,3444104,3444105],"delay":3007.0} +{"session_id":"sess-6786974e09d6","input_length":81421,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3448063,3448064,3448065,3448066,3448067,3448068,3448069,3448070,3448071,3448072,3448073,3448074,3448075,3448076,3448077,3448078,3448079,3448080,3448081,3448082,3448083,3448084,3448085,3448086,3448087,3448088,3448089,3448090,3448091,3448092,3448093,3448094,3448095,3448096,3448097,3448098,3448099,3448100,3448101,3448102,3448103,3448104,3448105,3448106,3448107,3448108,3448109,3448110,3448111,3448112,3448113,3448114,3448115,3448116,3448117,3448118,3448119],"timestamp":0.0,"group_id":6} +{"session_id":"sess-6786974e09d6","input_length":1981,"output_length":162,"hash_ids":[3448120,3448121,3448122,3448123],"delay":1682.6} +{"session_id":"sess-6786974e09d6","input_length":348,"output_length":92,"hash_ids":[3448124],"delay":3195.3} +{"session_id":"sess-6786974e09d6","input_length":4290,"output_length":154,"hash_ids":[3448125,3448126,3448127,3448128,3448129,3448130,3448131,3448132,3448133],"delay":190.0} +{"session_id":"sess-6786974e09d6","input_length":4934,"output_length":63,"hash_ids":[3448134,3448135,3448136,3448137,3448138,3448139,3448140,3448141,3448142,3448143],"delay":15090.2} +{"session_id":"sess-6786974e09d6","input_length":997,"output_length":255,"hash_ids":[3448144,3448145],"delay":254.5} +{"session_id":"sess-6786974e09d6","input_length":1260,"output_length":174,"hash_ids":[3448146,3448147,3448148],"delay":13701.8} +{"session_id":"sess-b79988541678","input_length":74440,"output_length":179,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3452063,3452064,3452065,3452066,3452067,3452068,3452069,3452070,3452071,3452072,3452073,3452074,3452075,3452076,3452077,3452078,3452079,3452080,3452081,3452082,3452083,3452084,3452085,3452086,3452087,3452088,3452089,3452090,3452091,3452092,3452093,3452094,3452095,3452096,3452097,3452098,3452099,3452100,3452101,3452102,3452103,3452104,3452105],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b79988541678","input_length":2058,"output_length":505,"hash_ids":[3452106,3452107,3452108,3452109,3452110],"delay":25674.4} +{"session_id":"sess-b79988541678","input_length":335,"output_length":98,"hash_ids":[3452111],"delay":1355.4} +{"session_id":"sess-b79988541678","input_length":1830,"output_length":86,"hash_ids":[3452112,3452113,3452114,3452115],"delay":663.1} +{"session_id":"sess-b79988541678","input_length":2308,"output_length":100,"hash_ids":[3452116,3452117,3452118,3452119,3452120],"delay":778.2} +{"session_id":"sess-b79988541678","input_length":3077,"output_length":1394,"hash_ids":[3452121,3452122,3452123,3452124,3452125,3452126,3452127],"delay":348.9} +{"session_id":"sess-b79988541678","input_length":1136,"output_length":493,"hash_ids":[3452128,3452129,3452130],"delay":361.0} +{"session_id":"sess-b79988541678","input_length":976,"output_length":236,"hash_ids":[3452131,3452132],"delay":43457.4} +{"session_id":"sess-b79988541678","input_length":2758,"output_length":158,"hash_ids":[3452133,3452134,3452135,3452136,3452137,3452138],"delay":668.4} +{"session_id":"sess-b79988541678","input_length":1802,"output_length":481,"hash_ids":[3452139,3452140,3452141,3452142],"delay":276.9} +{"session_id":"sess-b79988541678","input_length":6049,"output_length":464,"hash_ids":[3452143,3452144,3452145,3452146,3452147,3452148,3452149,3452150,3452151,3452152,3452153,3452154],"delay":7264.9} +{"session_id":"sess-b79988541678","input_length":1335,"output_length":283,"hash_ids":[3452155,3452156,3452157],"delay":7415.2} +{"session_id":"sess-b79988541678","input_length":4541,"output_length":813,"hash_ids":[3452158,3452159,3452160,3452161,3452162,3452163,3452164,3452165,3452166],"delay":590.7} +{"session_id":"sess-b79988541678","input_length":3115,"output_length":944,"hash_ids":[3452167,3452168,3452169,3452170,3452171,3452172,3452173],"delay":12079.0} +{"session_id":"sess-b79988541678","input_length":2837,"output_length":31,"hash_ids":[3452174,3452175,3452176,3452177,3452178,3452179],"delay":20953.6} +{"session_id":"sess-b79988541678","input_length":512,"output_length":37,"hash_ids":[3452180],"delay":267.8} +{"session_id":"sess-b79988541678","input_length":6417,"output_length":58,"hash_ids":[3452181,3452182,3452183,3452184,3452185,3452186,3452187,3452188,3452189,3452190,3452191,3452192,3452193],"delay":364.9} +{"session_id":"sess-b79988541678","input_length":7867,"output_length":1210,"hash_ids":[3452194,3452195,3452196,3452197,3452198,3452199,3452200,3452201,3452202,3452203,3452204,3452205,3452206,3452207,3452208,3452209],"delay":667.4} +{"session_id":"sess-82b95f9941e9","input_length":58414,"output_length":319,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3456063,3456064,3456065,3456066,3456067,3456068,3456069,3456070,3456071,3456072,3456073,3456074],"timestamp":0.0,"group_id":3} +{"session_id":"sess-82b95f9941e9","input_length":622,"output_length":417,"hash_ids":[3456075,3456076],"delay":657.3} +{"session_id":"sess-82b95f9941e9","input_length":3084,"output_length":268,"hash_ids":[3456077,3456078,3456079,3456080,3456081,3456082,3456083],"delay":32852.1} +{"session_id":"sess-82b95f9941e9","input_length":5341,"output_length":1026,"hash_ids":[3456084,3456085,3456086,3456087,3456088,3456089,3456090,3456091,3456092,3456093,3456094],"delay":8664.3} +{"session_id":"sess-82b95f9941e9","input_length":6045,"output_length":315,"hash_ids":[3456095,3456096,3456097,3456098,3456099,3456100,3456101,3456102,3456103,3456104,3456105,3456106],"delay":743.4} +{"session_id":"sess-82b95f9941e9","input_length":4102,"output_length":153,"hash_ids":[3456107,3456108,3456109,3456110,3456111,3456112,3456113,3456114,3456115],"delay":14163.1} +{"session_id":"sess-82b95f9941e9","input_length":626,"output_length":196,"hash_ids":[3456116,3456117],"delay":1108.8} +{"session_id":"sess-82b95f9941e9","input_length":3546,"output_length":136,"hash_ids":[3456118,3456119,3456120,3456121,3456122,3456123,3456124],"delay":248.5} +{"session_id":"sess-82b95f9941e9","input_length":965,"output_length":112,"hash_ids":[3456125,3456126],"delay":1544.2} +{"session_id":"sess-82b95f9941e9","input_length":1054,"output_length":279,"hash_ids":[3456127,3456128,3456129],"delay":7469.1} +{"session_id":"sess-82b95f9941e9","input_length":590,"output_length":255,"hash_ids":[3456130,3456131],"delay":489.7} +{"session_id":"sess-82b95f9941e9","input_length":2560,"output_length":322,"hash_ids":[3456132,3456133,3456134,3456135,3456136],"delay":683.9} +{"session_id":"sess-82b95f9941e9","input_length":405,"output_length":173,"hash_ids":[3456137],"delay":1115.9} +{"session_id":"sess-82b95f9941e9","input_length":5936,"output_length":1083,"hash_ids":[3456138,3456139,3456140,3456141,3456142,3456143,3456144,3456145,3456146,3456147,3456148,3456149],"delay":9768.7} +{"session_id":"sess-11d973c08133","input_length":58659,"output_length":32,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3460063,3460064,3460065,3460066,3460067,3460068,3460069,3460070,3460071,3460072,3460073,3460074],"timestamp":0.0,"group_id":0} +{"session_id":"sess-11d973c08133","input_length":871,"output_length":352,"hash_ids":[3460075,3460076],"delay":1742.8} +{"session_id":"sess-11d973c08133","input_length":413,"output_length":30,"hash_ids":[3460077],"delay":433.6} +{"session_id":"sess-11d973c08133","input_length":7255,"output_length":272,"hash_ids":[3460078,3460079,3460080,3460081,3460082,3460083,3460084,3460085,3460086,3460087,3460088,3460089,3460090,3460091,3460092],"delay":630.0} +{"session_id":"sess-11d973c08133","input_length":368,"output_length":114,"hash_ids":[3460093],"delay":5557.6} +{"session_id":"sess-11d973c08133","input_length":1625,"output_length":120,"hash_ids":[3460094,3460095,3460096,3460097],"delay":394.4} +{"session_id":"sess-11d973c08133","input_length":125,"output_length":63,"hash_ids":[3460098],"delay":1244.8} +{"session_id":"sess-11d973c08133","input_length":1705,"output_length":149,"hash_ids":[3460099,3460100,3460101,3460102],"delay":4534.9} +{"session_id":"sess-11d973c08133","input_length":1947,"output_length":397,"hash_ids":[3460103,3460104,3460105,3460106],"delay":2176.4} +{"session_id":"sess-11d973c08133","input_length":6505,"output_length":2194,"hash_ids":[3460107,3460108,3460109,3460110,3460111,3460112,3460113,3460114,3460115,3460116,3460117,3460118,3460119],"delay":1216.8} +{"session_id":"sess-11d973c08133","input_length":4464,"output_length":30,"hash_ids":[3460120,3460121,3460122,3460123,3460124,3460125,3460126,3460127,3460128],"delay":12947.5} +{"session_id":"sess-62bd41b135cb","input_length":56028,"output_length":565,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3464063,3464064,3464065,3464066,3464067,3464068,3464069],"timestamp":0.0,"group_id":1} +{"session_id":"sess-62bd41b135cb","input_length":895,"output_length":122,"hash_ids":[3464070,3464071],"delay":1018.9} +{"session_id":"sess-62bd41b135cb","input_length":828,"output_length":440,"hash_ids":[3464072,3464073],"delay":831.1} +{"session_id":"sess-62bd41b135cb","input_length":3767,"output_length":2115,"hash_ids":[3464074,3464075,3464076,3464077,3464078,3464079,3464080,3464081],"delay":2475.9} +{"session_id":"sess-62bd41b135cb","input_length":3816,"output_length":1284,"hash_ids":[3464082,3464083,3464084,3464085,3464086,3464087,3464088,3464089],"delay":1972.6} +{"session_id":"sess-62bd41b135cb","input_length":512,"output_length":80,"hash_ids":[3464090],"delay":1450.0} +{"session_id":"sess-62bd41b135cb","input_length":8057,"output_length":162,"hash_ids":[3464091,3464092,3464093,3464094,3464095,3464096,3464097,3464098,3464099,3464100,3464101,3464102,3464103,3464104,3464105,3464106],"delay":2667.5} +{"session_id":"sess-62bd41b135cb","input_length":1266,"output_length":49,"hash_ids":[3464107,3464108,3464109],"delay":863.8} +{"session_id":"sess-62bd41b135cb","input_length":2068,"output_length":596,"hash_ids":[3464110,3464111,3464112,3464113,3464114],"delay":835.1} +{"session_id":"sess-62bd41b135cb","input_length":321,"output_length":1029,"hash_ids":[3464115],"delay":1585.9} +{"session_id":"sess-62bd41b135cb","input_length":874,"output_length":208,"hash_ids":[3464116,3464117],"delay":400.1} +{"session_id":"sess-62bd41b135cb","input_length":1633,"output_length":156,"hash_ids":[3464118,3464119,3464120,3464121],"delay":9441.5} +{"session_id":"sess-62bd41b135cb","input_length":2546,"output_length":2553,"hash_ids":[3464122,3464123,3464124,3464125,3464126],"delay":594.2} +{"session_id":"sess-62bd41b135cb","input_length":706,"output_length":219,"hash_ids":[3464127,3464128],"delay":652.3} +{"session_id":"sess-62bd41b135cb","input_length":3053,"output_length":47,"hash_ids":[3464129,3464130,3464131,3464132,3464133,3464134],"delay":1251.6} +{"session_id":"sess-62bd41b135cb","input_length":962,"output_length":176,"hash_ids":[3464135,3464136],"delay":15588.8} +{"session_id":"sess-62bd41b135cb","input_length":3309,"output_length":334,"hash_ids":[3464137,3464138,3464139,3464140,3464141,3464142,3464143],"delay":1076.7} +{"session_id":"sess-62bd41b135cb","input_length":2059,"output_length":1413,"hash_ids":[3464144,3464145,3464146,3464147,3464148],"delay":12183.9} +{"session_id":"sess-62bd41b135cb","input_length":5974,"output_length":157,"hash_ids":[3464149,3464150,3464151,3464152,3464153,3464154,3464155,3464156,3464157,3464158,3464159,3464160],"delay":338.3} +{"session_id":"sess-62bd41b135cb","input_length":888,"output_length":62,"hash_ids":[3464161,3464162],"delay":12207.0} +{"session_id":"sess-62bd41b135cb","input_length":5485,"output_length":30,"hash_ids":[3464163,3464164,3464165,3464166,3464167,3464168,3464169,3464170,3464171,3464172,3464173],"delay":1992.1} +{"session_id":"sess-62bd41b135cb","input_length":270,"output_length":902,"hash_ids":[3464174],"delay":274.6} +{"session_id":"sess-62bd41b135cb","input_length":927,"output_length":249,"hash_ids":[3464175,3464176],"delay":7833.9} +{"session_id":"sess-62bd41b135cb","input_length":1771,"output_length":110,"hash_ids":[3464177,3464178,3464179,3464180],"delay":4579.7} +{"session_id":"sess-62bd41b135cb","input_length":1459,"output_length":2263,"hash_ids":[3464181,3464182,3464183],"delay":239.7} +{"session_id":"sess-17c76350cbd2","input_length":70285,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3468063,3468064,3468065,3468066,3468067,3468068,3468069,3468070,3468071,3468072,3468073,3468074,3468075,3468076,3468077,3468078,3468079,3468080,3468081,3468082,3468083,3468084,3468085,3468086,3468087,3468088,3468089,3468090,3468091,3468092,3468093,3468094,3468095,3468096,3468097],"timestamp":0.0,"group_id":11} +{"session_id":"sess-17c76350cbd2","input_length":260,"output_length":527,"hash_ids":[3468098],"delay":912.9} +{"session_id":"sess-17c76350cbd2","input_length":2737,"output_length":1239,"hash_ids":[3468099,3468100,3468101,3468102,3468103,3468104],"delay":991.5} +{"session_id":"sess-17c76350cbd2","input_length":1656,"output_length":627,"hash_ids":[3468105,3468106,3468107,3468108],"delay":799.4} +{"session_id":"sess-17c76350cbd2","input_length":271,"output_length":82,"hash_ids":[3468109],"delay":7555.6} +{"session_id":"sess-17c76350cbd2","input_length":7755,"output_length":268,"hash_ids":[3468110,3468111,3468112,3468113,3468114,3468115,3468116,3468117,3468118,3468119,3468120,3468121,3468122,3468123,3468124,3468125],"delay":37349.8} +{"session_id":"sess-17c76350cbd2","input_length":2675,"output_length":1078,"hash_ids":[3468126,3468127,3468128,3468129,3468130,3468131],"delay":934.1} +{"session_id":"sess-17c76350cbd2","input_length":474,"output_length":325,"hash_ids":[3468132],"delay":8488.8} +{"session_id":"sess-e6c1b9f7ce48","input_length":80314,"output_length":626,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,3472063,3472064,3472065,3472066,3472067,3472068,3472069,3472070,3472071,3472072,3472073,3472074,3472075,3472076,3472077,3472078,3472079,3472080,3472081,3472082,3472083,3472084,3472085,3472086,3472087,3472088,3472089,3472090,3472091,3472092,3472093,3472094,3472095,3472096,3472097,3472098,3472099,3472100,3472101,3472102,3472103,3472104,3472105,3472106,3472107,3472108,3472109,3472110,3472111,3472112,3472113,3472114,3472115,3472116],"timestamp":0.0,"group_id":20} +{"session_id":"sess-e6c1b9f7ce48","input_length":2280,"output_length":565,"hash_ids":[3472117,3472118,3472119,3472120,3472121],"delay":5879.0} +{"session_id":"sess-e6c1b9f7ce48","input_length":555,"output_length":1103,"hash_ids":[3472122,3472123],"delay":4830.2} +{"session_id":"sess-e6c1b9f7ce48","input_length":114,"output_length":494,"hash_ids":[3472124],"delay":431.9} +{"session_id":"sess-e6c1b9f7ce48","input_length":6991,"output_length":925,"hash_ids":[3472125,3472126,3472127,3472128,3472129,3472130,3472131,3472132,3472133,3472134,3472135,3472136,3472137,3472138],"delay":25095.6} +{"session_id":"sess-e6c1b9f7ce48","input_length":903,"output_length":318,"hash_ids":[3472139,3472140],"delay":607.4} +{"session_id":"sess-e6c1b9f7ce48","input_length":4884,"output_length":2404,"hash_ids":[3472141,3472142,3472143,3472144,3472145,3472146,3472147,3472148,3472149,3472150],"delay":1806.1} +{"session_id":"sess-e6c1b9f7ce48","input_length":933,"output_length":969,"hash_ids":[3472151,3472152],"delay":5257.7} +{"session_id":"sess-e6c1b9f7ce48","input_length":606,"output_length":150,"hash_ids":[3472153,3472154],"delay":6511.2} +{"session_id":"sess-e6c1b9f7ce48","input_length":1187,"output_length":2631,"hash_ids":[3472155,3472156,3472157],"delay":741.4} +{"session_id":"sess-e6c1b9f7ce48","input_length":2558,"output_length":321,"hash_ids":[3472158,3472159,3472160,3472161,3472162],"delay":532.3} +{"session_id":"sess-e6c1b9f7ce48","input_length":75,"output_length":239,"hash_ids":[3472163],"delay":532.3} +{"session_id":"sess-e6c1b9f7ce48","input_length":1411,"output_length":95,"hash_ids":[3472164,3472165,3472166],"delay":14422.5} +{"session_id":"sess-e6c1b9f7ce48","input_length":243,"output_length":1617,"hash_ids":[3472167],"delay":205.1} +{"session_id":"sess-e6c1b9f7ce48","input_length":1583,"output_length":194,"hash_ids":[3472168,3472169,3472170,3472171],"delay":308.4} +{"session_id":"sess-e6c1b9f7ce48","input_length":1985,"output_length":330,"hash_ids":[3472172,3472173,3472174,3472175],"delay":381.4} +{"session_id":"sess-e6c1b9f7ce48","input_length":5125,"output_length":138,"hash_ids":[3472176,3472177,3472178,3472179,3472180,3472181,3472182,3472183,3472184,3472185,3472186],"delay":1207.3} +{"session_id":"sess-e6c1b9f7ce48","input_length":568,"output_length":86,"hash_ids":[3472187,3472188],"delay":416.1} +{"session_id":"sess-e6c1b9f7ce48","input_length":469,"output_length":377,"hash_ids":[3472189],"delay":429.3} +{"session_id":"sess-e6c1b9f7ce48","input_length":3198,"output_length":79,"hash_ids":[3472190,3472191,3472192,3472193,3472194,3472195,3472196],"delay":451.1} +{"session_id":"sess-f40c368f5b34","input_length":57323,"output_length":292,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3476063,3476064,3476065,3476066,3476067,3476068,3476069,3476070,3476071],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f40c368f5b34","input_length":618,"output_length":395,"hash_ids":[3476072,3476073],"delay":17671.3} +{"session_id":"sess-ddca660b070c","input_length":55678,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3480063,3480064,3480065,3480066,3480067,3480068],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ddca660b070c","input_length":7167,"output_length":191,"hash_ids":[3480069,3480070,3480071,3480072,3480073,3480074,3480075,3480076,3480077,3480078,3480079,3480080,3480081,3480082],"delay":1943.9} +{"session_id":"sess-ddca660b070c","input_length":437,"output_length":357,"hash_ids":[3480083],"delay":1376.8} +{"session_id":"sess-ddca660b070c","input_length":477,"output_length":193,"hash_ids":[3480084],"delay":739.6} +{"session_id":"sess-ddca660b070c","input_length":5933,"output_length":343,"hash_ids":[3480085,3480086,3480087,3480088,3480089,3480090,3480091,3480092,3480093,3480094,3480095,3480096],"delay":1318.5} +{"session_id":"sess-ddca660b070c","input_length":1367,"output_length":462,"hash_ids":[3480097,3480098,3480099],"delay":1377.3} +{"session_id":"sess-ddca660b070c","input_length":3343,"output_length":348,"hash_ids":[3480100,3480101,3480102,3480103,3480104,3480105,3480106],"delay":19124.8} +{"session_id":"sess-ddca660b070c","input_length":4459,"output_length":219,"hash_ids":[3480107,3480108,3480109,3480110,3480111,3480112,3480113,3480114,3480115],"delay":2375.0} +{"session_id":"sess-ddca660b070c","input_length":3607,"output_length":471,"hash_ids":[3480116,3480117,3480118,3480119,3480120,3480121,3480122,3480123],"delay":10055.2} +{"session_id":"sess-ddca660b070c","input_length":2367,"output_length":1263,"hash_ids":[3480124,3480125,3480126,3480127,3480128],"delay":2541.3} +{"session_id":"sess-ddca660b070c","input_length":2191,"output_length":111,"hash_ids":[3480129,3480130,3480131,3480132,3480133],"delay":510.9} +{"session_id":"sess-ddca660b070c","input_length":222,"output_length":856,"hash_ids":[3480134],"delay":568.2} +{"session_id":"sess-ddca660b070c","input_length":3341,"output_length":2700,"hash_ids":[3480135,3480136,3480137,3480138,3480139,3480140,3480141],"delay":144.8} +{"session_id":"sess-ddca660b070c","input_length":1007,"output_length":733,"hash_ids":[3480142,3480143],"delay":851.9} +{"session_id":"sess-6b4907dd5487","input_length":52487,"output_length":2263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702],"timestamp":0.0,"group_id":23} +{"session_id":"sess-6b4907dd5487","input_length":3468,"output_length":585,"hash_ids":[3480144,3480145,3480146,3480147,3480148,3480149,3480150],"delay":784.2} +{"session_id":"sess-6b4907dd5487","input_length":1573,"output_length":95,"hash_ids":[3480151,3480152,3480153,3480154],"delay":2082.6} +{"session_id":"sess-6b4907dd5487","input_length":1304,"output_length":426,"hash_ids":[3480155,3480156,3480157],"delay":1423.3} +{"session_id":"sess-6b4907dd5487","input_length":3437,"output_length":1289,"hash_ids":[3480158,3480159,3480160,3480161,3480162,3480163,3480164],"delay":701.5} +{"session_id":"sess-6b4907dd5487","input_length":3299,"output_length":290,"hash_ids":[3480165,3480166,3480167,3480168,3480169,3480170,3480171],"delay":6750.1} +{"session_id":"sess-6b4907dd5487","input_length":739,"output_length":54,"hash_ids":[3480172,3480173],"delay":1823.7} +{"session_id":"sess-6b4907dd5487","input_length":4020,"output_length":245,"hash_ids":[3480174,3480175,3480176,3480177,3480178,3480179,3480180,3480181],"delay":775.2} +{"session_id":"sess-6b4907dd5487","input_length":2935,"output_length":221,"hash_ids":[3480182,3480183,3480184,3480185,3480186,3480187],"delay":10595.4} +{"session_id":"sess-6b4907dd5487","input_length":2404,"output_length":1262,"hash_ids":[3480188,3480189,3480190,3480191,3480192],"delay":712.8} +{"session_id":"sess-6b4907dd5487","input_length":1774,"output_length":787,"hash_ids":[3480193,3480194,3480195,3480196],"delay":50723.1} +{"session_id":"sess-6b4907dd5487","input_length":7819,"output_length":113,"hash_ids":[3480197,3480198,3480199,3480200,3480201,3480202,3480203,3480204,3480205,3480206,3480207,3480208,3480209,3480210,3480211,3480212],"delay":19753.8} +{"session_id":"sess-6b4907dd5487","input_length":1514,"output_length":625,"hash_ids":[3480213,3480214,3480215],"delay":656.6} +{"session_id":"sess-6b4907dd5487","input_length":1181,"output_length":1037,"hash_ids":[3480216,3480217,3480218],"delay":1462.7} +{"session_id":"sess-6b4907dd5487","input_length":1288,"output_length":525,"hash_ids":[3480219,3480220,3480221],"delay":137.5} +{"session_id":"sess-6b4907dd5487","input_length":722,"output_length":176,"hash_ids":[3480222,3480223],"delay":15188.4} +{"session_id":"sess-6b4907dd5487","input_length":2745,"output_length":405,"hash_ids":[3480224,3480225,3480226,3480227,3480228,3480229],"delay":579.5} +{"session_id":"sess-6b4907dd5487","input_length":245,"output_length":883,"hash_ids":[3480230],"delay":5045.8} +{"session_id":"sess-6b4907dd5487","input_length":5275,"output_length":352,"hash_ids":[3480231,3480232,3480233,3480234,3480235,3480236,3480237,3480238,3480239,3480240,3480241],"delay":244.7} +{"session_id":"sess-6b4907dd5487","input_length":9912,"output_length":1097,"hash_ids":[3480242,3480243,3480244,3480245,3480246,3480247,3480248,3480249,3480250,3480251,3480252,3480253,3480254,3480255,3480256,3480257,3480258,3480259,3480260,3480261],"delay":1030.1} +{"session_id":"sess-6b4907dd5487","input_length":4699,"output_length":282,"hash_ids":[3480262,3480263,3480264,3480265,3480266,3480267,3480268,3480269,3480270,3480271],"delay":532.1} +{"session_id":"sess-6b4907dd5487","input_length":1543,"output_length":886,"hash_ids":[3480272,3480273,3480274,3480275],"delay":396.9} +{"session_id":"sess-1f07cb3a7fd4","input_length":52745,"output_length":793,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,3488063],"timestamp":0.0,"group_id":46} +{"session_id":"sess-1f07cb3a7fd4","input_length":1269,"output_length":557,"hash_ids":[3488064,3488065,3488066],"delay":402.2} +{"session_id":"sess-1f07cb3a7fd4","input_length":1392,"output_length":1206,"hash_ids":[3488067,3488068,3488069],"delay":636.6} +{"session_id":"sess-1f07cb3a7fd4","input_length":3180,"output_length":269,"hash_ids":[3488070,3488071,3488072,3488073,3488074,3488075,3488076],"delay":600.6} +{"session_id":"sess-1f07cb3a7fd4","input_length":4570,"output_length":902,"hash_ids":[3488077,3488078,3488079,3488080,3488081,3488082,3488083,3488084,3488085],"delay":9228.7} +{"session_id":"sess-1f07cb3a7fd4","input_length":5897,"output_length":233,"hash_ids":[3488086,3488087,3488088,3488089,3488090,3488091,3488092,3488093,3488094,3488095,3488096,3488097],"delay":2069.5} +{"session_id":"sess-1f07cb3a7fd4","input_length":6371,"output_length":230,"hash_ids":[3488098,3488099,3488100,3488101,3488102,3488103,3488104,3488105,3488106,3488107,3488108,3488109,3488110],"delay":790.0} +{"session_id":"sess-8f06e45b417f","input_length":64550,"output_length":157,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3492063,3492064,3492065,3492066,3492067,3492068,3492069,3492070,3492071,3492072,3492073,3492074,3492075,3492076,3492077,3492078,3492079,3492080,3492081,3492082,3492083,3492084,3492085,3492086],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8f06e45b417f","input_length":429,"output_length":203,"hash_ids":[3492087],"delay":692.2} +{"session_id":"sess-8f06e45b417f","input_length":4186,"output_length":563,"hash_ids":[3492088,3492089,3492090,3492091,3492092,3492093,3492094,3492095,3492096],"delay":5033.3} +{"session_id":"sess-8f06e45b417f","input_length":1996,"output_length":801,"hash_ids":[3492097,3492098,3492099,3492100],"delay":1034.3} +{"session_id":"sess-8f06e45b417f","input_length":145,"output_length":695,"hash_ids":[3492101],"delay":22827.8} +{"session_id":"sess-8f06e45b417f","input_length":3153,"output_length":52,"hash_ids":[3492102,3492103,3492104,3492105,3492106,3492107,3492108],"delay":1004.1} +{"session_id":"sess-8f06e45b417f","input_length":2054,"output_length":1312,"hash_ids":[3492109,3492110,3492111,3492112,3492113],"delay":1587.4} +{"session_id":"sess-8f06e45b417f","input_length":2872,"output_length":415,"hash_ids":[3492114,3492115,3492116,3492117,3492118,3492119],"delay":503.5} +{"session_id":"sess-8f06e45b417f","input_length":4361,"output_length":160,"hash_ids":[3492120,3492121,3492122,3492123,3492124,3492125,3492126,3492127,3492128],"delay":279.0} +{"session_id":"sess-8f06e45b417f","input_length":2659,"output_length":1977,"hash_ids":[3492129,3492130,3492131,3492132,3492133,3492134],"delay":716.0} +{"session_id":"sess-8f06e45b417f","input_length":4778,"output_length":58,"hash_ids":[3492135,3492136,3492137,3492138,3492139,3492140,3492141,3492142,3492143,3492144],"delay":1579.5} +{"session_id":"sess-8f06e45b417f","input_length":8120,"output_length":93,"hash_ids":[3492145,3492146,3492147,3492148,3492149,3492150,3492151,3492152,3492153,3492154,3492155,3492156,3492157,3492158,3492159,3492160],"delay":398.2} +{"session_id":"sess-8f06e45b417f","input_length":951,"output_length":548,"hash_ids":[3492161,3492162],"delay":4449.2} +{"session_id":"sess-8f06e45b417f","input_length":764,"output_length":232,"hash_ids":[3492163,3492164],"delay":366.4} +{"session_id":"sess-8f06e45b417f","input_length":2021,"output_length":261,"hash_ids":[3492165,3492166,3492167,3492168],"delay":3808.3} +{"session_id":"sess-8f06e45b417f","input_length":1892,"output_length":60,"hash_ids":[3492169,3492170,3492171,3492172],"delay":15254.2} +{"session_id":"sess-75f46961fd75","input_length":65451,"output_length":1379,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,3496063,3496064,3496065,3496066,3496067,3496068,3496069,3496070,3496071,3496072,3496073,3496074,3496075,3496076,3496077,3496078,3496079,3496080,3496081,3496082,3496083,3496084,3496085,3496086,3496087],"timestamp":0.0,"group_id":22} +{"session_id":"sess-75f46961fd75","input_length":4062,"output_length":136,"hash_ids":[3496088,3496089,3496090,3496091,3496092,3496093,3496094,3496095],"delay":775.4} +{"session_id":"sess-75f46961fd75","input_length":7308,"output_length":390,"hash_ids":[3496096,3496097,3496098,3496099,3496100,3496101,3496102,3496103,3496104,3496105,3496106,3496107,3496108,3496109,3496110],"delay":3436.9} +{"session_id":"sess-75f46961fd75","input_length":1736,"output_length":528,"hash_ids":[3496111,3496112,3496113,3496114],"delay":24652.0} +{"session_id":"sess-75f46961fd75","input_length":432,"output_length":416,"hash_ids":[3496115],"delay":1972.0} +{"session_id":"sess-75f46961fd75","input_length":3508,"output_length":442,"hash_ids":[3496116,3496117,3496118,3496119,3496120,3496121,3496122],"delay":200.8} +{"session_id":"sess-75f46961fd75","input_length":676,"output_length":228,"hash_ids":[3496123,3496124],"delay":309.2} +{"session_id":"sess-75f46961fd75","input_length":360,"output_length":126,"hash_ids":[3496125],"delay":453.0} +{"session_id":"sess-75f46961fd75","input_length":3229,"output_length":382,"hash_ids":[3496126,3496127,3496128,3496129,3496130,3496131,3496132],"delay":6053.3} +{"session_id":"sess-75f46961fd75","input_length":1446,"output_length":83,"hash_ids":[3496133,3496134,3496135],"delay":9402.5} +{"session_id":"sess-75f46961fd75","input_length":245,"output_length":250,"hash_ids":[3496136],"delay":778.8} +{"session_id":"sess-75f46961fd75","input_length":702,"output_length":567,"hash_ids":[3496137,3496138],"delay":437.9} +{"session_id":"sess-75f46961fd75","input_length":793,"output_length":316,"hash_ids":[3496139,3496140],"delay":25530.8} +{"session_id":"sess-75f46961fd75","input_length":1754,"output_length":353,"hash_ids":[3496141,3496142,3496143,3496144],"delay":485.0} +{"session_id":"sess-75f46961fd75","input_length":9283,"output_length":483,"hash_ids":[3496145,3496146,3496147,3496148,3496149,3496150,3496151,3496152,3496153,3496154,3496155,3496156,3496157,3496158,3496159,3496160,3496161,3496162,3496163],"delay":10534.1} +{"session_id":"sess-75f46961fd75","input_length":2004,"output_length":243,"hash_ids":[3496164,3496165,3496166,3496167],"delay":6970.7} +{"session_id":"sess-75f46961fd75","input_length":674,"output_length":103,"hash_ids":[3496168,3496169],"delay":543.0} +{"session_id":"sess-75f46961fd75","input_length":2380,"output_length":174,"hash_ids":[3496170,3496171,3496172,3496173,3496174],"delay":65.5} +{"session_id":"sess-75f46961fd75","input_length":9707,"output_length":317,"hash_ids":[3496175,3496176,3496177,3496178,3496179,3496180,3496181,3496182,3496183,3496184,3496185,3496186,3496187,3496188,3496189,3496190,3496191,3496192,3496193],"delay":973.0} +{"session_id":"sess-b3f9b3875353","input_length":53229,"output_length":453,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3500063],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b3f9b3875353","input_length":465,"output_length":1854,"hash_ids":[3500064],"delay":1741.7} +{"session_id":"sess-b3f9b3875353","input_length":1148,"output_length":280,"hash_ids":[3500065,3500066,3500067],"delay":1080.1} +{"session_id":"sess-b3f9b3875353","input_length":2061,"output_length":365,"hash_ids":[3500068,3500069,3500070,3500071,3500072],"delay":733.5} +{"session_id":"sess-feaf6c575319","input_length":56238,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3504063,3504064,3504065,3504066,3504067,3504068,3504069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-feaf6c575319","input_length":1590,"output_length":958,"hash_ids":[3504070,3504071,3504072,3504073],"delay":4020.8} +{"session_id":"sess-feaf6c575319","input_length":4268,"output_length":150,"hash_ids":[3504074,3504075,3504076,3504077,3504078,3504079,3504080,3504081,3504082],"delay":1629.2} +{"session_id":"sess-feaf6c575319","input_length":2204,"output_length":116,"hash_ids":[3504083,3504084,3504085,3504086,3504087],"delay":2307.2} +{"session_id":"sess-feaf6c575319","input_length":324,"output_length":534,"hash_ids":[3504088],"delay":516.4} +{"session_id":"sess-feaf6c575319","input_length":3328,"output_length":907,"hash_ids":[3504089,3504090,3504091,3504092,3504093,3504094,3504095],"delay":882.5} +{"session_id":"sess-feaf6c575319","input_length":583,"output_length":61,"hash_ids":[3504096,3504097],"delay":319.3} +{"session_id":"sess-feaf6c575319","input_length":1373,"output_length":147,"hash_ids":[3504098,3504099,3504100],"delay":4765.4} +{"session_id":"sess-feaf6c575319","input_length":3354,"output_length":490,"hash_ids":[3504101,3504102,3504103,3504104,3504105,3504106,3504107],"delay":1586.0} +{"session_id":"sess-feaf6c575319","input_length":1065,"output_length":227,"hash_ids":[3504108,3504109,3504110],"delay":516.2} +{"session_id":"sess-feaf6c575319","input_length":235,"output_length":81,"hash_ids":[3504111],"delay":13734.3} +{"session_id":"sess-feaf6c575319","input_length":419,"output_length":403,"hash_ids":[3504112],"delay":7677.2} +{"session_id":"sess-feaf6c575319","input_length":939,"output_length":672,"hash_ids":[3504113,3504114],"delay":3087.6} +{"session_id":"sess-feaf6c575319","input_length":578,"output_length":40,"hash_ids":[3504115,3504116],"delay":1123.6} +{"session_id":"sess-feaf6c575319","input_length":528,"output_length":95,"hash_ids":[3504117,3504118],"delay":13203.6} +{"session_id":"sess-feaf6c575319","input_length":2832,"output_length":718,"hash_ids":[3504119,3504120,3504121,3504122,3504123,3504124],"delay":390.5} +{"session_id":"sess-feaf6c575319","input_length":4402,"output_length":894,"hash_ids":[3504125,3504126,3504127,3504128,3504129,3504130,3504131,3504132,3504133],"delay":331.1} +{"session_id":"sess-feaf6c575319","input_length":1706,"output_length":1049,"hash_ids":[3504134,3504135,3504136,3504137],"delay":10452.7} +{"session_id":"sess-feaf6c575319","input_length":2912,"output_length":329,"hash_ids":[3504138,3504139,3504140,3504141,3504142,3504143],"delay":537.0} +{"session_id":"sess-feaf6c575319","input_length":4524,"output_length":261,"hash_ids":[3504144,3504145,3504146,3504147,3504148,3504149,3504150,3504151,3504152],"delay":14137.5} +{"session_id":"sess-feaf6c575319","input_length":224,"output_length":1064,"hash_ids":[3504153],"delay":752.4} +{"session_id":"sess-feaf6c575319","input_length":1358,"output_length":499,"hash_ids":[3504154,3504155,3504156],"delay":1003.1} +{"session_id":"sess-feaf6c575319","input_length":2539,"output_length":390,"hash_ids":[3504157,3504158,3504159,3504160,3504161],"delay":1167.1} +{"session_id":"sess-feaf6c575319","input_length":3693,"output_length":527,"hash_ids":[3504162,3504163,3504164,3504165,3504166,3504167,3504168,3504169],"delay":10511.4} +{"session_id":"sess-feaf6c575319","input_length":150,"output_length":758,"hash_ids":[3504170],"delay":1444.6} +{"session_id":"sess-feaf6c575319","input_length":3039,"output_length":436,"hash_ids":[3504171,3504172,3504173,3504174,3504175,3504176],"delay":435.0} +{"session_id":"sess-feaf6c575319","input_length":1445,"output_length":500,"hash_ids":[3504177,3504178,3504179],"delay":1129.4} +{"session_id":"sess-feaf6c575319","input_length":2364,"output_length":62,"hash_ids":[3504180,3504181,3504182,3504183,3504184],"delay":1275.4} +{"session_id":"sess-feaf6c575319","input_length":1274,"output_length":255,"hash_ids":[3504185,3504186,3504187],"delay":237.4} +{"session_id":"sess-feaf6c575319","input_length":887,"output_length":744,"hash_ids":[3504188,3504189],"delay":2520.7} +{"session_id":"sess-feaf6c575319","input_length":3132,"output_length":345,"hash_ids":[3504190,3504191,3504192,3504193,3504194,3504195,3504196],"delay":747.8} +{"session_id":"sess-feaf6c575319","input_length":332,"output_length":328,"hash_ids":[3504197],"delay":603.4} +{"session_id":"sess-feaf6c575319","input_length":1568,"output_length":432,"hash_ids":[3504198,3504199,3504200,3504201],"delay":3398.6} +{"session_id":"sess-feaf6c575319","input_length":992,"output_length":103,"hash_ids":[3504202,3504203],"delay":1145.2} +{"session_id":"sess-9f5a27eb0052","input_length":61003,"output_length":175,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3508063,3508064,3508065,3508066,3508067,3508068,3508069,3508070,3508071,3508072,3508073,3508074,3508075,3508076,3508077,3508078,3508079],"timestamp":0.0,"group_id":5} +{"session_id":"sess-9f5a27eb0052","input_length":3747,"output_length":681,"hash_ids":[3508080,3508081,3508082,3508083,3508084,3508085,3508086,3508087],"delay":2336.6} +{"session_id":"sess-9f5a27eb0052","input_length":832,"output_length":1539,"hash_ids":[3508088,3508089],"delay":2028.7} +{"session_id":"sess-9f5a27eb0052","input_length":271,"output_length":291,"hash_ids":[3508090],"delay":12016.7} +{"session_id":"sess-9f5a27eb0052","input_length":2258,"output_length":558,"hash_ids":[3508091,3508092,3508093,3508094,3508095],"delay":68576.4} +{"session_id":"sess-9f5a27eb0052","input_length":5171,"output_length":394,"hash_ids":[3508096,3508097,3508098,3508099,3508100,3508101,3508102,3508103,3508104,3508105,3508106],"delay":890.0} +{"session_id":"sess-9f5a27eb0052","input_length":3128,"output_length":310,"hash_ids":[3508107,3508108,3508109,3508110,3508111,3508112,3508113],"delay":1021.3} +{"session_id":"sess-9f5a27eb0052","input_length":5023,"output_length":362,"hash_ids":[3508114,3508115,3508116,3508117,3508118,3508119,3508120,3508121,3508122,3508123],"delay":7287.6} +{"session_id":"sess-9f5a27eb0052","input_length":2861,"output_length":244,"hash_ids":[3508124,3508125,3508126,3508127,3508128,3508129],"delay":467.6} +{"session_id":"sess-9f5a27eb0052","input_length":4008,"output_length":411,"hash_ids":[3508130,3508131,3508132,3508133,3508134,3508135,3508136,3508137],"delay":1968.5} +{"session_id":"sess-9f5a27eb0052","input_length":3022,"output_length":121,"hash_ids":[3508138,3508139,3508140,3508141,3508142,3508143],"delay":1070.7} +{"session_id":"sess-9f5a27eb0052","input_length":1073,"output_length":788,"hash_ids":[3508144,3508145,3508146],"delay":140.4} +{"session_id":"sess-9f5a27eb0052","input_length":3834,"output_length":30,"hash_ids":[3508147,3508148,3508149,3508150,3508151,3508152,3508153,3508154],"delay":1065.5} +{"session_id":"sess-9f5a27eb0052","input_length":866,"output_length":30,"hash_ids":[3508155,3508156],"delay":628.8} +{"session_id":"sess-32daf5d2656d","input_length":61617,"output_length":204,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3512063,3512064,3512065,3512066,3512067,3512068,3512069,3512070,3512071,3512072,3512073,3512074,3512075,3512076,3512077,3512078,3512079,3512080],"timestamp":0.0,"group_id":1} +{"session_id":"sess-32daf5d2656d","input_length":278,"output_length":218,"hash_ids":[3512081],"delay":435.4} +{"session_id":"sess-32daf5d2656d","input_length":2446,"output_length":1147,"hash_ids":[3512082,3512083,3512084,3512085,3512086],"delay":818.4} +{"session_id":"sess-32daf5d2656d","input_length":367,"output_length":357,"hash_ids":[3512087],"delay":2627.3} +{"session_id":"sess-32daf5d2656d","input_length":267,"output_length":121,"hash_ids":[3512088],"delay":232.6} +{"session_id":"sess-32daf5d2656d","input_length":1470,"output_length":597,"hash_ids":[3512089,3512090,3512091],"delay":554.1} +{"session_id":"sess-32daf5d2656d","input_length":2273,"output_length":744,"hash_ids":[3512092,3512093,3512094,3512095,3512096],"delay":18841.6} +{"session_id":"sess-32daf5d2656d","input_length":2732,"output_length":61,"hash_ids":[3512097,3512098,3512099,3512100,3512101,3512102],"delay":5280.2} +{"session_id":"sess-32daf5d2656d","input_length":1864,"output_length":241,"hash_ids":[3512103,3512104,3512105,3512106],"delay":82.3} +{"session_id":"sess-32daf5d2656d","input_length":1853,"output_length":715,"hash_ids":[3512107,3512108,3512109,3512110],"delay":239.5} +{"session_id":"sess-32daf5d2656d","input_length":156,"output_length":535,"hash_ids":[3512111],"delay":390.9} +{"session_id":"sess-32daf5d2656d","input_length":891,"output_length":147,"hash_ids":[3512112,3512113],"delay":1155.8} +{"session_id":"sess-32daf5d2656d","input_length":3040,"output_length":135,"hash_ids":[3512114,3512115,3512116,3512117,3512118,3512119],"delay":554.9} +{"session_id":"sess-32daf5d2656d","input_length":1852,"output_length":228,"hash_ids":[3512120,3512121,3512122,3512123],"delay":17912.9} +{"session_id":"sess-32daf5d2656d","input_length":2018,"output_length":111,"hash_ids":[3512124,3512125,3512126,3512127],"delay":1089.1} +{"session_id":"sess-32daf5d2656d","input_length":1706,"output_length":47,"hash_ids":[3512128,3512129,3512130,3512131],"delay":224.3} +{"session_id":"sess-32daf5d2656d","input_length":4299,"output_length":226,"hash_ids":[3512132,3512133,3512134,3512135,3512136,3512137,3512138,3512139,3512140],"delay":26899.3} +{"session_id":"sess-32daf5d2656d","input_length":3237,"output_length":1781,"hash_ids":[3512141,3512142,3512143,3512144,3512145,3512146,3512147],"delay":1378.6} +{"session_id":"sess-32daf5d2656d","input_length":992,"output_length":352,"hash_ids":[3512148,3512149],"delay":2172.9} +{"session_id":"sess-32daf5d2656d","input_length":736,"output_length":312,"hash_ids":[3512150,3512151],"delay":638.7} +{"session_id":"sess-32daf5d2656d","input_length":7197,"output_length":257,"hash_ids":[3512152,3512153,3512154,3512155,3512156,3512157,3512158,3512159,3512160,3512161,3512162,3512163,3512164,3512165,3512166],"delay":934.6} +{"session_id":"sess-32daf5d2656d","input_length":900,"output_length":321,"hash_ids":[3512167,3512168],"delay":403.9} +{"session_id":"sess-32daf5d2656d","input_length":2224,"output_length":135,"hash_ids":[3512169,3512170,3512171,3512172,3512173],"delay":12436.4} +{"session_id":"sess-32daf5d2656d","input_length":2897,"output_length":112,"hash_ids":[3512174,3512175,3512176,3512177,3512178,3512179],"delay":415.3} +{"session_id":"sess-ef3feec38f2b","input_length":52125,"output_length":163,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ef3feec38f2b","input_length":788,"output_length":917,"hash_ids":[3512180,3512181],"delay":470.5} +{"session_id":"sess-ef3feec38f2b","input_length":2860,"output_length":239,"hash_ids":[3512182,3512183,3512184,3512185,3512186,3512187],"delay":3433.8} +{"session_id":"sess-ef3feec38f2b","input_length":2945,"output_length":832,"hash_ids":[3512188,3512189,3512190,3512191,3512192,3512193],"delay":472.8} +{"session_id":"sess-ef3feec38f2b","input_length":1909,"output_length":267,"hash_ids":[3512194,3512195,3512196,3512197],"delay":3369.9} +{"session_id":"sess-ef3feec38f2b","input_length":600,"output_length":1064,"hash_ids":[3512198,3512199],"delay":649.8} +{"session_id":"sess-ef3feec38f2b","input_length":2254,"output_length":722,"hash_ids":[3512200,3512201,3512202,3512203,3512204],"delay":820.9} +{"session_id":"sess-ef3feec38f2b","input_length":3516,"output_length":662,"hash_ids":[3512205,3512206,3512207,3512208,3512209,3512210,3512211],"delay":718.6} +{"session_id":"sess-ef3feec38f2b","input_length":2733,"output_length":114,"hash_ids":[3512212,3512213,3512214,3512215,3512216,3512217],"delay":15208.0} +{"session_id":"sess-ef3feec38f2b","input_length":724,"output_length":161,"hash_ids":[3512218,3512219],"delay":2028.2} +{"session_id":"sess-ef3feec38f2b","input_length":573,"output_length":406,"hash_ids":[3512220,3512221],"delay":827.0} +{"session_id":"sess-ef3feec38f2b","input_length":7641,"output_length":158,"hash_ids":[3512222,3512223,3512224,3512225,3512226,3512227,3512228,3512229,3512230,3512231,3512232,3512233,3512234,3512235,3512236],"delay":505.4} +{"session_id":"sess-a83b7143b944","input_length":69032,"output_length":101,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3520063,3520064,3520065,3520066,3520067,3520068,3520069,3520070,3520071,3520072,3520073,3520074,3520075,3520076,3520077,3520078,3520079,3520080,3520081,3520082,3520083,3520084,3520085,3520086,3520087,3520088,3520089,3520090,3520091,3520092,3520093,3520094],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a83b7143b944","input_length":5022,"output_length":102,"hash_ids":[3520095,3520096,3520097,3520098,3520099,3520100,3520101,3520102,3520103,3520104],"delay":13682.0} +{"session_id":"sess-a83b7143b944","input_length":5242,"output_length":1448,"hash_ids":[3520105,3520106,3520107,3520108,3520109,3520110,3520111,3520112,3520113,3520114,3520115],"delay":55075.0} +{"session_id":"sess-a83b7143b944","input_length":213,"output_length":657,"hash_ids":[3520116],"delay":788.0} +{"session_id":"sess-a83b7143b944","input_length":498,"output_length":131,"hash_ids":[3520117],"delay":18557.6} +{"session_id":"sess-a83b7143b944","input_length":4086,"output_length":451,"hash_ids":[3520118,3520119,3520120,3520121,3520122,3520123,3520124,3520125],"delay":39422.1} +{"session_id":"sess-a83b7143b944","input_length":1776,"output_length":162,"hash_ids":[3520126,3520127,3520128,3520129],"delay":21753.6} +{"session_id":"sess-a83b7143b944","input_length":2893,"output_length":130,"hash_ids":[3520130,3520131,3520132,3520133,3520134,3520135],"delay":4918.6} +{"session_id":"sess-a83b7143b944","input_length":807,"output_length":63,"hash_ids":[3520136,3520137],"delay":485.1} +{"session_id":"sess-a83b7143b944","input_length":1213,"output_length":215,"hash_ids":[3520138,3520139,3520140],"delay":330.0} +{"session_id":"sess-068612e15211","input_length":60773,"output_length":209,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3524063,3524064,3524065,3524066,3524067,3524068,3524069,3524070,3524071,3524072,3524073,3524074,3524075,3524076,3524077,3524078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-068612e15211","input_length":356,"output_length":306,"hash_ids":[3524079],"delay":42507.1} +{"session_id":"sess-068612e15211","input_length":1065,"output_length":819,"hash_ids":[3524080,3524081,3524082],"delay":629.8} +{"session_id":"sess-068612e15211","input_length":6235,"output_length":374,"hash_ids":[3524083,3524084,3524085,3524086,3524087,3524088,3524089,3524090,3524091,3524092,3524093,3524094,3524095],"delay":7090.2} +{"session_id":"sess-08e1f1f2369c","input_length":57048,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,3528063,3528064,3528065,3528066,3528067,3528068,3528069,3528070,3528071],"timestamp":0.0,"group_id":14} +{"session_id":"sess-08e1f1f2369c","input_length":803,"output_length":875,"hash_ids":[3528072,3528073],"delay":889.5} +{"session_id":"sess-08e1f1f2369c","input_length":592,"output_length":336,"hash_ids":[3528074,3528075],"delay":5258.3} +{"session_id":"sess-08e1f1f2369c","input_length":444,"output_length":48,"hash_ids":[3528076],"delay":863.9} +{"session_id":"sess-08e1f1f2369c","input_length":658,"output_length":84,"hash_ids":[3528077,3528078],"delay":27801.0} +{"session_id":"sess-08e1f1f2369c","input_length":2993,"output_length":561,"hash_ids":[3528079,3528080,3528081,3528082,3528083,3528084],"delay":971.4} +{"session_id":"sess-08e1f1f2369c","input_length":966,"output_length":417,"hash_ids":[3528085,3528086],"delay":29444.3} +{"session_id":"sess-08e1f1f2369c","input_length":1441,"output_length":956,"hash_ids":[3528087,3528088,3528089],"delay":1052.0} +{"session_id":"sess-08e1f1f2369c","input_length":7018,"output_length":223,"hash_ids":[3528090,3528091,3528092,3528093,3528094,3528095,3528096,3528097,3528098,3528099,3528100,3528101,3528102,3528103],"delay":673.1} +{"session_id":"sess-08e1f1f2369c","input_length":623,"output_length":115,"hash_ids":[3528104,3528105],"delay":3198.5} +{"session_id":"sess-08e1f1f2369c","input_length":2204,"output_length":43,"hash_ids":[3528106,3528107,3528108,3528109,3528110],"delay":1524.1} +{"session_id":"sess-08e1f1f2369c","input_length":3183,"output_length":619,"hash_ids":[3528111,3528112,3528113,3528114,3528115,3528116,3528117],"delay":635.7} +{"session_id":"sess-08e1f1f2369c","input_length":1535,"output_length":104,"hash_ids":[3528118,3528119,3528120],"delay":1812.8} +{"session_id":"sess-08e1f1f2369c","input_length":5555,"output_length":488,"hash_ids":[3528121,3528122,3528123,3528124,3528125,3528126,3528127,3528128,3528129,3528130,3528131],"delay":19320.4} +{"session_id":"sess-08e1f1f2369c","input_length":343,"output_length":375,"hash_ids":[3528132],"delay":260.6} +{"session_id":"sess-08e1f1f2369c","input_length":2307,"output_length":246,"hash_ids":[3528133,3528134,3528135,3528136,3528137],"delay":12335.4} +{"session_id":"sess-08e1f1f2369c","input_length":4203,"output_length":240,"hash_ids":[3528138,3528139,3528140,3528141,3528142,3528143,3528144,3528145,3528146],"delay":24813.7} +{"session_id":"sess-08e1f1f2369c","input_length":285,"output_length":946,"hash_ids":[3528147],"delay":518.9} +{"session_id":"sess-08e1f1f2369c","input_length":3028,"output_length":163,"hash_ids":[3528148,3528149,3528150,3528151,3528152,3528153],"delay":2666.8} +{"session_id":"sess-08e1f1f2369c","input_length":3279,"output_length":432,"hash_ids":[3528154,3528155,3528156,3528157,3528158,3528159,3528160],"delay":296.3} +{"session_id":"sess-08e1f1f2369c","input_length":2122,"output_length":629,"hash_ids":[3528161,3528162,3528163,3528164,3528165],"delay":42359.4} +{"session_id":"sess-08e1f1f2369c","input_length":2243,"output_length":516,"hash_ids":[3528166,3528167,3528168,3528169,3528170],"delay":727.4} +{"session_id":"sess-08e1f1f2369c","input_length":510,"output_length":288,"hash_ids":[3528171],"delay":2472.7} +{"session_id":"sess-08e1f1f2369c","input_length":362,"output_length":409,"hash_ids":[3528172],"delay":220.7} +{"session_id":"sess-08e1f1f2369c","input_length":1062,"output_length":320,"hash_ids":[3528173,3528174,3528175],"delay":1141.4} +{"session_id":"sess-08e1f1f2369c","input_length":3932,"output_length":115,"hash_ids":[3528176,3528177,3528178,3528179,3528180,3528181,3528182,3528183],"delay":7258.6} +{"session_id":"sess-08e1f1f2369c","input_length":7242,"output_length":475,"hash_ids":[3528184,3528185,3528186,3528187,3528188,3528189,3528190,3528191,3528192,3528193,3528194,3528195,3528196,3528197,3528198],"delay":9743.5} +{"session_id":"sess-08e1f1f2369c","input_length":1082,"output_length":271,"hash_ids":[3528199,3528200,3528201],"delay":185.0} +{"session_id":"sess-08e1f1f2369c","input_length":790,"output_length":61,"hash_ids":[3528202,3528203],"delay":6774.6} +{"session_id":"sess-2a9974e5fff6","input_length":55135,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,3532063,3532064,3532065,3532066,3532067],"timestamp":0.0,"group_id":39} +{"session_id":"sess-2a9974e5fff6","input_length":1191,"output_length":252,"hash_ids":[3532068,3532069,3532070],"delay":1288.9} +{"session_id":"sess-2a9974e5fff6","input_length":749,"output_length":443,"hash_ids":[3532071,3532072],"delay":8999.5} +{"session_id":"sess-2a9974e5fff6","input_length":4452,"output_length":234,"hash_ids":[3532073,3532074,3532075,3532076,3532077,3532078,3532079,3532080,3532081],"delay":1338.9} +{"session_id":"sess-2a9974e5fff6","input_length":3052,"output_length":102,"hash_ids":[3532082,3532083,3532084,3532085,3532086,3532087],"delay":2149.0} +{"session_id":"sess-2a9974e5fff6","input_length":2523,"output_length":958,"hash_ids":[3532088,3532089,3532090,3532091,3532092],"delay":302.8} +{"session_id":"sess-2a9974e5fff6","input_length":1620,"output_length":121,"hash_ids":[3532093,3532094,3532095,3532096],"delay":192.9} +{"session_id":"sess-2a9974e5fff6","input_length":1232,"output_length":467,"hash_ids":[3532097,3532098,3532099],"delay":1310.9} +{"session_id":"sess-2a9974e5fff6","input_length":1406,"output_length":401,"hash_ids":[3532100,3532101,3532102],"delay":2000.9} +{"session_id":"sess-2a9974e5fff6","input_length":2687,"output_length":82,"hash_ids":[3532103,3532104,3532105,3532106,3532107,3532108],"delay":6031.3} +{"session_id":"sess-2a9974e5fff6","input_length":1254,"output_length":294,"hash_ids":[3532109,3532110,3532111],"delay":363.5} +{"session_id":"sess-2a9974e5fff6","input_length":1457,"output_length":86,"hash_ids":[3532112,3532113,3532114],"delay":27887.0} +{"session_id":"sess-2a9974e5fff6","input_length":2844,"output_length":100,"hash_ids":[3532115,3532116,3532117,3532118,3532119,3532120],"delay":2024.1} +{"session_id":"sess-2a9974e5fff6","input_length":3077,"output_length":265,"hash_ids":[3532121,3532122,3532123,3532124,3532125,3532126,3532127],"delay":180.5} +{"session_id":"sess-2a9974e5fff6","input_length":908,"output_length":654,"hash_ids":[3532128,3532129],"delay":1140.0} +{"session_id":"sess-2a9974e5fff6","input_length":2201,"output_length":833,"hash_ids":[3532130,3532131,3532132,3532133,3532134],"delay":14048.0} +{"session_id":"sess-2a9974e5fff6","input_length":382,"output_length":778,"hash_ids":[3532135],"delay":1084.6} +{"session_id":"sess-2a9974e5fff6","input_length":2113,"output_length":676,"hash_ids":[3532136,3532137,3532138,3532139,3532140],"delay":20638.0} +{"session_id":"sess-2a9974e5fff6","input_length":1909,"output_length":68,"hash_ids":[3532141,3532142,3532143,3532144],"delay":1485.7} +{"session_id":"sess-2a9974e5fff6","input_length":6718,"output_length":330,"hash_ids":[3532145,3532146,3532147,3532148,3532149,3532150,3532151,3532152,3532153,3532154,3532155,3532156,3532157,3532158],"delay":5460.3} +{"session_id":"sess-2a9974e5fff6","input_length":1457,"output_length":427,"hash_ids":[3532159,3532160,3532161],"delay":2608.8} +{"session_id":"sess-2a9974e5fff6","input_length":1754,"output_length":737,"hash_ids":[3532162,3532163,3532164,3532165],"delay":349.1} +{"session_id":"sess-2a9974e5fff6","input_length":1524,"output_length":806,"hash_ids":[3532166,3532167,3532168],"delay":6041.8} +{"session_id":"sess-2a9974e5fff6","input_length":1025,"output_length":882,"hash_ids":[3532169,3532170,3532171],"delay":392.7} +{"session_id":"sess-2a9974e5fff6","input_length":1426,"output_length":329,"hash_ids":[3532172,3532173,3532174],"delay":14283.9} +{"session_id":"sess-2a9974e5fff6","input_length":1111,"output_length":45,"hash_ids":[3532175,3532176,3532177],"delay":415.8} +{"session_id":"sess-2a9974e5fff6","input_length":433,"output_length":771,"hash_ids":[3532178],"delay":655.6} +{"session_id":"sess-2a9974e5fff6","input_length":1861,"output_length":374,"hash_ids":[3532179,3532180,3532181,3532182],"delay":5721.6} +{"session_id":"sess-2a9974e5fff6","input_length":4176,"output_length":127,"hash_ids":[3532183,3532184,3532185,3532186,3532187,3532188,3532189,3532190,3532191],"delay":326.5} +{"session_id":"sess-2a9974e5fff6","input_length":3660,"output_length":54,"hash_ids":[3532192,3532193,3532194,3532195,3532196,3532197,3532198,3532199],"delay":504.5} +{"session_id":"sess-2a9974e5fff6","input_length":3367,"output_length":1941,"hash_ids":[3532200,3532201,3532202,3532203,3532204,3532205,3532206],"delay":656.7} +{"session_id":"sess-dacaf33b9f8e","input_length":54778,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,3536063,3536064,3536065,3536066],"timestamp":0.0,"group_id":30} +{"session_id":"sess-dacaf33b9f8e","input_length":3439,"output_length":1358,"hash_ids":[3536067,3536068,3536069,3536070,3536071,3536072,3536073],"delay":17040.7} +{"session_id":"sess-dacaf33b9f8e","input_length":1001,"output_length":214,"hash_ids":[3536074,3536075],"delay":972.3} +{"session_id":"sess-dacaf33b9f8e","input_length":292,"output_length":46,"hash_ids":[3536076],"delay":1604.0} +{"session_id":"sess-dacaf33b9f8e","input_length":3700,"output_length":70,"hash_ids":[3536077,3536078,3536079,3536080,3536081,3536082,3536083,3536084],"delay":20864.1} +{"session_id":"sess-dacaf33b9f8e","input_length":212,"output_length":1124,"hash_ids":[3536085],"delay":456.9} +{"session_id":"sess-dacaf33b9f8e","input_length":2930,"output_length":87,"hash_ids":[3536086,3536087,3536088,3536089,3536090,3536091],"delay":27418.2} +{"session_id":"sess-dacaf33b9f8e","input_length":2214,"output_length":208,"hash_ids":[3536092,3536093,3536094,3536095,3536096],"delay":1140.7} +{"session_id":"sess-dacaf33b9f8e","input_length":2756,"output_length":251,"hash_ids":[3536097,3536098,3536099,3536100,3536101,3536102],"delay":1519.4} +{"session_id":"sess-dacaf33b9f8e","input_length":2211,"output_length":745,"hash_ids":[3536103,3536104,3536105,3536106,3536107],"delay":1766.3} +{"session_id":"sess-dacaf33b9f8e","input_length":8889,"output_length":237,"hash_ids":[3536108,3536109,3536110,3536111,3536112,3536113,3536114,3536115,3536116,3536117,3536118,3536119,3536120,3536121,3536122,3536123,3536124,3536125],"delay":18677.2} +{"session_id":"sess-dacaf33b9f8e","input_length":428,"output_length":124,"hash_ids":[3536126],"delay":4627.9} +{"session_id":"sess-dacaf33b9f8e","input_length":567,"output_length":302,"hash_ids":[3536127,3536128],"delay":799.8} +{"session_id":"sess-dacaf33b9f8e","input_length":3115,"output_length":86,"hash_ids":[3536129,3536130,3536131,3536132,3536133,3536134,3536135],"delay":465.5} +{"session_id":"sess-dacaf33b9f8e","input_length":1419,"output_length":112,"hash_ids":[3536136,3536137,3536138],"delay":1683.3} +{"session_id":"sess-dacaf33b9f8e","input_length":2182,"output_length":174,"hash_ids":[3536139,3536140,3536141,3536142,3536143],"delay":6849.1} +{"session_id":"sess-dacaf33b9f8e","input_length":3499,"output_length":1165,"hash_ids":[3536144,3536145,3536146,3536147,3536148,3536149,3536150],"delay":7207.2} +{"session_id":"sess-dacaf33b9f8e","input_length":3078,"output_length":555,"hash_ids":[3536151,3536152,3536153,3536154,3536155,3536156,3536157],"delay":6483.6} +{"session_id":"sess-dacaf33b9f8e","input_length":420,"output_length":331,"hash_ids":[3536158],"delay":608.2} +{"session_id":"sess-dacaf33b9f8e","input_length":708,"output_length":457,"hash_ids":[3536159,3536160],"delay":864.5} +{"session_id":"sess-87d3740780f2","input_length":61329,"output_length":540,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,3540063,3540064,3540065,3540066,3540067,3540068,3540069,3540070,3540071,3540072,3540073,3540074,3540075,3540076,3540077,3540078,3540079],"timestamp":0.0,"group_id":10} +{"session_id":"sess-87d3740780f2","input_length":3069,"output_length":1040,"hash_ids":[3540080,3540081,3540082,3540083,3540084,3540085],"delay":609.3} +{"session_id":"sess-87d3740780f2","input_length":996,"output_length":1145,"hash_ids":[3540086,3540087],"delay":2653.0} +{"session_id":"sess-87d3740780f2","input_length":3980,"output_length":298,"hash_ids":[3540088,3540089,3540090,3540091,3540092,3540093,3540094,3540095],"delay":562.8} +{"session_id":"sess-87d3740780f2","input_length":1226,"output_length":561,"hash_ids":[3540096,3540097,3540098],"delay":755.3} +{"session_id":"sess-87d3740780f2","input_length":2451,"output_length":56,"hash_ids":[3540099,3540100,3540101,3540102,3540103],"delay":1691.4} +{"session_id":"sess-87d3740780f2","input_length":1086,"output_length":162,"hash_ids":[3540104,3540105,3540106],"delay":626.6} +{"session_id":"sess-87d3740780f2","input_length":2788,"output_length":635,"hash_ids":[3540107,3540108,3540109,3540110,3540111,3540112],"delay":988.9} +{"session_id":"sess-87d3740780f2","input_length":2502,"output_length":161,"hash_ids":[3540113,3540114,3540115,3540116,3540117],"delay":6655.6} +{"session_id":"sess-87d3740780f2","input_length":2043,"output_length":135,"hash_ids":[3540118,3540119,3540120,3540121],"delay":17541.5} +{"session_id":"sess-87d3740780f2","input_length":3351,"output_length":399,"hash_ids":[3540122,3540123,3540124,3540125,3540126,3540127,3540128],"delay":20512.9} +{"session_id":"sess-87d3740780f2","input_length":4645,"output_length":286,"hash_ids":[3540129,3540130,3540131,3540132,3540133,3540134,3540135,3540136,3540137,3540138],"delay":15734.9} +{"session_id":"sess-87d3740780f2","input_length":8431,"output_length":183,"hash_ids":[3540139,3540140,3540141,3540142,3540143,3540144,3540145,3540146,3540147,3540148,3540149,3540150,3540151,3540152,3540153,3540154,3540155],"delay":2888.4} +{"session_id":"sess-87d3740780f2","input_length":6719,"output_length":136,"hash_ids":[3540156,3540157,3540158,3540159,3540160,3540161,3540162,3540163,3540164,3540165,3540166,3540167,3540168,3540169],"delay":928.9} +{"session_id":"sess-87d3740780f2","input_length":6595,"output_length":721,"hash_ids":[3540170,3540171,3540172,3540173,3540174,3540175,3540176,3540177,3540178,3540179,3540180,3540181,3540182],"delay":11983.2} +{"session_id":"sess-87d3740780f2","input_length":1169,"output_length":67,"hash_ids":[3540183,3540184,3540185],"delay":332.5} +{"session_id":"sess-87d3740780f2","input_length":2139,"output_length":209,"hash_ids":[3540186,3540187,3540188,3540189,3540190],"delay":2119.9} +{"session_id":"sess-87d3740780f2","input_length":1285,"output_length":63,"hash_ids":[3540191,3540192,3540193],"delay":2610.5} +{"session_id":"sess-87d3740780f2","input_length":1145,"output_length":140,"hash_ids":[3540194,3540195,3540196],"delay":652.2} +{"session_id":"sess-87d3740780f2","input_length":231,"output_length":122,"hash_ids":[3540197],"delay":210.9} +{"session_id":"sess-87d3740780f2","input_length":965,"output_length":85,"hash_ids":[3540198,3540199],"delay":379.8} +{"session_id":"sess-87d3740780f2","input_length":2197,"output_length":103,"hash_ids":[3540200,3540201,3540202,3540203,3540204],"delay":5520.9} +{"session_id":"sess-ca73a771e212","input_length":53120,"output_length":713,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3544063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ca73a771e212","input_length":2000,"output_length":448,"hash_ids":[3544064,3544065,3544066,3544067],"delay":7837.5} +{"session_id":"sess-ca73a771e212","input_length":1862,"output_length":62,"hash_ids":[3544068,3544069,3544070,3544071],"delay":449.4} +{"session_id":"sess-ca73a771e212","input_length":530,"output_length":308,"hash_ids":[3544072,3544073],"delay":36883.5} +{"session_id":"sess-ca73a771e212","input_length":570,"output_length":378,"hash_ids":[3544074,3544075],"delay":311.6} +{"session_id":"sess-ca73a771e212","input_length":7722,"output_length":46,"hash_ids":[3544076,3544077,3544078,3544079,3544080,3544081,3544082,3544083,3544084,3544085,3544086,3544087,3544088,3544089,3544090,3544091],"delay":578.3} +{"session_id":"sess-ca73a771e212","input_length":1362,"output_length":515,"hash_ids":[3544092,3544093,3544094],"delay":6656.4} +{"session_id":"sess-ca73a771e212","input_length":3663,"output_length":394,"hash_ids":[3544095,3544096,3544097,3544098,3544099,3544100,3544101,3544102],"delay":1085.8} +{"session_id":"sess-ca73a771e212","input_length":2015,"output_length":2074,"hash_ids":[3544103,3544104,3544105,3544106],"delay":18576.6} +{"session_id":"sess-ca73a771e212","input_length":2250,"output_length":1149,"hash_ids":[3544107,3544108,3544109,3544110,3544111],"delay":819.2} +{"session_id":"sess-ca73a771e212","input_length":1789,"output_length":402,"hash_ids":[3544112,3544113,3544114,3544115],"delay":308.2} +{"session_id":"sess-ca73a771e212","input_length":751,"output_length":668,"hash_ids":[3544116,3544117],"delay":569.2} +{"session_id":"sess-ca73a771e212","input_length":7340,"output_length":116,"hash_ids":[3544118,3544119,3544120,3544121,3544122,3544123,3544124,3544125,3544126,3544127,3544128,3544129,3544130,3544131,3544132],"delay":2141.3} +{"session_id":"sess-ca73a771e212","input_length":1851,"output_length":303,"hash_ids":[3544133,3544134,3544135,3544136],"delay":1223.9} +{"session_id":"sess-ca73a771e212","input_length":4443,"output_length":42,"hash_ids":[3544137,3544138,3544139,3544140,3544141,3544142,3544143,3544144,3544145],"delay":454.7} +{"session_id":"sess-ca73a771e212","input_length":4086,"output_length":169,"hash_ids":[3544146,3544147,3544148,3544149,3544150,3544151,3544152,3544153],"delay":1275.1} +{"session_id":"sess-ca73a771e212","input_length":578,"output_length":112,"hash_ids":[3544154,3544155],"delay":76.3} +{"session_id":"sess-ca73a771e212","input_length":71,"output_length":120,"hash_ids":[3544156],"delay":545.3} +{"session_id":"sess-ca73a771e212","input_length":3185,"output_length":1077,"hash_ids":[3544157,3544158,3544159,3544160,3544161,3544162,3544163],"delay":3114.0} +{"session_id":"sess-ca73a771e212","input_length":3477,"output_length":357,"hash_ids":[3544164,3544165,3544166,3544167,3544168,3544169,3544170],"delay":294.9} +{"session_id":"sess-ca73a771e212","input_length":1887,"output_length":157,"hash_ids":[3544171,3544172,3544173,3544174],"delay":16835.5} +{"session_id":"sess-ca73a771e212","input_length":1204,"output_length":604,"hash_ids":[3544175,3544176,3544177],"delay":872.1} +{"session_id":"sess-8ff63d041fbd","input_length":53131,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3548063],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8ff63d041fbd","input_length":7056,"output_length":135,"hash_ids":[3548064,3548065,3548066,3548067,3548068,3548069,3548070,3548071,3548072,3548073,3548074,3548075,3548076,3548077],"delay":1012.2} +{"session_id":"sess-8ff63d041fbd","input_length":463,"output_length":189,"hash_ids":[3548078],"delay":1356.6} +{"session_id":"sess-8ff63d041fbd","input_length":438,"output_length":83,"hash_ids":[3548079],"delay":222.2} +{"session_id":"sess-8ff63d041fbd","input_length":2746,"output_length":283,"hash_ids":[3548080,3548081,3548082,3548083,3548084,3548085],"delay":975.7} +{"session_id":"sess-8ff63d041fbd","input_length":1097,"output_length":188,"hash_ids":[3548086,3548087,3548088],"delay":11825.3} +{"session_id":"sess-8ff63d041fbd","input_length":1871,"output_length":755,"hash_ids":[3548089,3548090,3548091,3548092],"delay":1104.1} +{"session_id":"sess-8ff63d041fbd","input_length":3613,"output_length":373,"hash_ids":[3548093,3548094,3548095,3548096,3548097,3548098,3548099,3548100],"delay":31130.4} +{"session_id":"sess-8ff63d041fbd","input_length":6142,"output_length":787,"hash_ids":[3548101,3548102,3548103,3548104,3548105,3548106,3548107,3548108,3548109,3548110,3548111,3548112],"delay":971.6} +{"session_id":"sess-8ff63d041fbd","input_length":134,"output_length":318,"hash_ids":[3548113],"delay":25958.2} +{"session_id":"sess-8ff63d041fbd","input_length":4917,"output_length":133,"hash_ids":[3548114,3548115,3548116,3548117,3548118,3548119,3548120,3548121,3548122,3548123],"delay":667.6} +{"session_id":"sess-8ff63d041fbd","input_length":574,"output_length":353,"hash_ids":[3548124,3548125],"delay":3473.6} +{"session_id":"sess-8ff63d041fbd","input_length":5071,"output_length":316,"hash_ids":[3548126,3548127,3548128,3548129,3548130,3548131,3548132,3548133,3548134,3548135],"delay":525.4} +{"session_id":"sess-8ff63d041fbd","input_length":526,"output_length":649,"hash_ids":[3548136,3548137],"delay":1096.9} +{"session_id":"sess-8ff63d041fbd","input_length":3355,"output_length":356,"hash_ids":[3548138,3548139,3548140,3548141,3548142,3548143,3548144],"delay":1286.2} +{"session_id":"sess-8ff63d041fbd","input_length":1638,"output_length":388,"hash_ids":[3548145,3548146,3548147,3548148],"delay":302.1} +{"session_id":"sess-8ff63d041fbd","input_length":2601,"output_length":434,"hash_ids":[3548149,3548150,3548151,3548152,3548153,3548154],"delay":568.6} +{"session_id":"sess-8ff63d041fbd","input_length":803,"output_length":298,"hash_ids":[3548155,3548156],"delay":154.9} +{"session_id":"sess-8ff63d041fbd","input_length":3045,"output_length":286,"hash_ids":[3548157,3548158,3548159,3548160,3548161,3548162],"delay":4976.2} +{"session_id":"sess-8ff63d041fbd","input_length":4476,"output_length":112,"hash_ids":[3548163,3548164,3548165,3548166,3548167,3548168,3548169,3548170,3548171],"delay":636.0} +{"session_id":"sess-8ff63d041fbd","input_length":6049,"output_length":57,"hash_ids":[3548172,3548173,3548174,3548175,3548176,3548177,3548178,3548179,3548180,3548181,3548182,3548183],"delay":760.8} +{"session_id":"sess-8ff63d041fbd","input_length":1014,"output_length":2555,"hash_ids":[3548184,3548185],"delay":1052.9} +{"session_id":"sess-8ff63d041fbd","input_length":1285,"output_length":143,"hash_ids":[3548186,3548187,3548188],"delay":9440.0} +{"session_id":"sess-8ff63d041fbd","input_length":3868,"output_length":177,"hash_ids":[3548189,3548190,3548191,3548192,3548193,3548194,3548195,3548196],"delay":288.0} +{"session_id":"sess-8ff63d041fbd","input_length":1025,"output_length":796,"hash_ids":[3548197,3548198,3548199],"delay":255.2} +{"session_id":"sess-8ff63d041fbd","input_length":339,"output_length":394,"hash_ids":[3548200],"delay":247.4} +{"session_id":"sess-8ff63d041fbd","input_length":763,"output_length":393,"hash_ids":[3548201,3548202],"delay":265.1} +{"session_id":"sess-8ff63d041fbd","input_length":548,"output_length":595,"hash_ids":[3548203,3548204],"delay":368.9} +{"session_id":"sess-86cadd2bece4","input_length":55268,"output_length":423,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,3552063,3552064,3552065,3552066,3552067],"timestamp":0.0,"group_id":33} +{"session_id":"sess-86cadd2bece4","input_length":1667,"output_length":520,"hash_ids":[3552068,3552069,3552070,3552071],"delay":1344.6} +{"session_id":"sess-86cadd2bece4","input_length":594,"output_length":1012,"hash_ids":[3552072,3552073],"delay":724.4} +{"session_id":"sess-86cadd2bece4","input_length":3261,"output_length":196,"hash_ids":[3552074,3552075,3552076,3552077,3552078,3552079,3552080],"delay":1113.3} +{"session_id":"sess-86cadd2bece4","input_length":1087,"output_length":1065,"hash_ids":[3552081,3552082,3552083],"delay":1630.7} +{"session_id":"sess-86cadd2bece4","input_length":4791,"output_length":266,"hash_ids":[3552084,3552085,3552086,3552087,3552088,3552089,3552090,3552091,3552092,3552093],"delay":38941.7} +{"session_id":"sess-86cadd2bece4","input_length":1625,"output_length":1323,"hash_ids":[3552094,3552095,3552096,3552097],"delay":839.3} +{"session_id":"sess-86cadd2bece4","input_length":755,"output_length":296,"hash_ids":[3552098,3552099],"delay":828.1} +{"session_id":"sess-86cadd2bece4","input_length":4619,"output_length":220,"hash_ids":[3552100,3552101,3552102,3552103,3552104,3552105,3552106,3552107,3552108,3552109],"delay":725.4} +{"session_id":"sess-86cadd2bece4","input_length":1777,"output_length":219,"hash_ids":[3552110,3552111,3552112,3552113],"delay":5171.2} +{"session_id":"sess-86cadd2bece4","input_length":3548,"output_length":518,"hash_ids":[3552114,3552115,3552116,3552117,3552118,3552119,3552120],"delay":581.6} +{"session_id":"sess-86cadd2bece4","input_length":3000,"output_length":79,"hash_ids":[3552121,3552122,3552123,3552124,3552125,3552126],"delay":167.1} +{"session_id":"sess-86cadd2bece4","input_length":964,"output_length":939,"hash_ids":[3552127,3552128],"delay":1631.2} +{"session_id":"sess-86cadd2bece4","input_length":1991,"output_length":424,"hash_ids":[3552129,3552130,3552131,3552132],"delay":12502.5} +{"session_id":"sess-86cadd2bece4","input_length":6168,"output_length":188,"hash_ids":[3552133,3552134,3552135,3552136,3552137,3552138,3552139,3552140,3552141,3552142,3552143,3552144,3552145],"delay":428.6} +{"session_id":"sess-86cadd2bece4","input_length":1010,"output_length":488,"hash_ids":[3552146,3552147],"delay":232.5} +{"session_id":"sess-86cadd2bece4","input_length":5485,"output_length":638,"hash_ids":[3552148,3552149,3552150,3552151,3552152,3552153,3552154,3552155,3552156,3552157,3552158],"delay":3206.5} +{"session_id":"sess-86cadd2bece4","input_length":1888,"output_length":304,"hash_ids":[3552159,3552160,3552161,3552162],"delay":3491.8} +{"session_id":"sess-86cadd2bece4","input_length":1561,"output_length":627,"hash_ids":[3552163,3552164,3552165,3552166],"delay":446.4} +{"session_id":"sess-86cadd2bece4","input_length":1270,"output_length":272,"hash_ids":[3552167,3552168,3552169],"delay":671.8} +{"session_id":"sess-86cadd2bece4","input_length":1013,"output_length":129,"hash_ids":[3552170,3552171],"delay":808.5} +{"session_id":"sess-86cadd2bece4","input_length":1221,"output_length":61,"hash_ids":[3552172,3552173,3552174],"delay":27440.0} +{"session_id":"sess-86cadd2bece4","input_length":3162,"output_length":46,"hash_ids":[3552175,3552176,3552177,3552178,3552179,3552180,3552181],"delay":4171.9} +{"session_id":"sess-86cadd2bece4","input_length":370,"output_length":189,"hash_ids":[3552182],"delay":358.4} +{"session_id":"sess-86cadd2bece4","input_length":2828,"output_length":1256,"hash_ids":[3552183,3552184,3552185,3552186,3552187,3552188],"delay":580.4} +{"session_id":"sess-86cadd2bece4","input_length":2609,"output_length":1049,"hash_ids":[3552189,3552190,3552191,3552192,3552193,3552194],"delay":94.2} +{"session_id":"sess-86cadd2bece4","input_length":3165,"output_length":108,"hash_ids":[3552195,3552196,3552197,3552198,3552199,3552200,3552201],"delay":275.8} +{"session_id":"sess-be0971c373f1","input_length":75155,"output_length":613,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3556063,3556064,3556065,3556066,3556067,3556068,3556069,3556070,3556071,3556072,3556073,3556074,3556075,3556076,3556077,3556078,3556079,3556080,3556081,3556082,3556083,3556084,3556085,3556086,3556087,3556088,3556089,3556090,3556091,3556092,3556093,3556094,3556095,3556096,3556097,3556098,3556099,3556100,3556101,3556102,3556103,3556104,3556105,3556106],"timestamp":0.0,"group_id":0} +{"session_id":"sess-be0971c373f1","input_length":1134,"output_length":172,"hash_ids":[3556107,3556108,3556109],"delay":6314.7} +{"session_id":"sess-be0971c373f1","input_length":2763,"output_length":461,"hash_ids":[3556110,3556111,3556112,3556113,3556114,3556115],"delay":23082.3} +{"session_id":"sess-be0971c373f1","input_length":1256,"output_length":189,"hash_ids":[3556116,3556117,3556118],"delay":517.0} +{"session_id":"sess-be0971c373f1","input_length":757,"output_length":262,"hash_ids":[3556119,3556120],"delay":1002.0} +{"session_id":"sess-be0971c373f1","input_length":9394,"output_length":318,"hash_ids":[3556121,3556122,3556123,3556124,3556125,3556126,3556127,3556128,3556129,3556130,3556131,3556132,3556133,3556134,3556135,3556136,3556137,3556138,3556139],"delay":27576.2} +{"session_id":"sess-be0971c373f1","input_length":1355,"output_length":75,"hash_ids":[3556140,3556141,3556142],"delay":7756.9} +{"session_id":"sess-be0971c373f1","input_length":4828,"output_length":420,"hash_ids":[3556143,3556144,3556145,3556146,3556147,3556148,3556149,3556150,3556151,3556152],"delay":1246.0} +{"session_id":"sess-be0971c373f1","input_length":739,"output_length":212,"hash_ids":[3556153,3556154],"delay":914.4} +{"session_id":"sess-be0971c373f1","input_length":2122,"output_length":95,"hash_ids":[3556155,3556156,3556157,3556158,3556159],"delay":1185.9} +{"session_id":"sess-be0971c373f1","input_length":1167,"output_length":204,"hash_ids":[3556160,3556161,3556162],"delay":294.5} +{"session_id":"sess-be0971c373f1","input_length":251,"output_length":220,"hash_ids":[3556163],"delay":299.8} +{"session_id":"sess-be0971c373f1","input_length":189,"output_length":445,"hash_ids":[3556164],"delay":865.9} +{"session_id":"sess-be0971c373f1","input_length":3503,"output_length":93,"hash_ids":[3556165,3556166,3556167,3556168,3556169,3556170,3556171],"delay":321.9} +{"session_id":"sess-be0971c373f1","input_length":2048,"output_length":76,"hash_ids":[3556172,3556173,3556174,3556175],"delay":3643.5} +{"session_id":"sess-be0971c373f1","input_length":4454,"output_length":801,"hash_ids":[3556176,3556177,3556178,3556179,3556180,3556181,3556182,3556183,3556184],"delay":286.0} +{"session_id":"sess-be0971c373f1","input_length":352,"output_length":277,"hash_ids":[3556185],"delay":422.6} +{"session_id":"sess-be0971c373f1","input_length":2912,"output_length":138,"hash_ids":[3556186,3556187,3556188,3556189,3556190,3556191],"delay":1380.1} +{"session_id":"sess-be0971c373f1","input_length":5723,"output_length":1034,"hash_ids":[3556192,3556193,3556194,3556195,3556196,3556197,3556198,3556199,3556200,3556201,3556202,3556203],"delay":862.8} +{"session_id":"sess-be0971c373f1","input_length":1742,"output_length":465,"hash_ids":[3556204,3556205,3556206,3556207],"delay":9573.8} +{"session_id":"sess-be0971c373f1","input_length":133,"output_length":195,"hash_ids":[3556208],"delay":1643.3} +{"session_id":"sess-4e349f5b0fd2","input_length":57603,"output_length":211,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3560063,3560064,3560065,3560066,3560067,3560068,3560069,3560070,3560071,3560072],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4e349f5b0fd2","input_length":2877,"output_length":306,"hash_ids":[3560073,3560074,3560075,3560076,3560077,3560078],"delay":481.6} +{"session_id":"sess-4e349f5b0fd2","input_length":2818,"output_length":1751,"hash_ids":[3560079,3560080,3560081,3560082,3560083,3560084],"delay":845.3} +{"session_id":"sess-4e349f5b0fd2","input_length":2570,"output_length":862,"hash_ids":[3560085,3560086,3560087,3560088,3560089,3560090],"delay":42104.6} +{"session_id":"sess-4e349f5b0fd2","input_length":309,"output_length":113,"hash_ids":[3560091],"delay":1772.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":54845,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3564063,3564064,3564065,3564066,3564067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4ad9bdc1ed41","input_length":834,"output_length":687,"hash_ids":[3564068,3564069],"delay":5031.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":90,"output_length":31,"hash_ids":[3564070],"delay":1523.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":1463,"output_length":75,"hash_ids":[3564071,3564072,3564073],"delay":5995.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":4877,"output_length":445,"hash_ids":[3564074,3564075,3564076,3564077,3564078,3564079,3564080,3564081,3564082,3564083],"delay":491.7} +{"session_id":"sess-4ad9bdc1ed41","input_length":3341,"output_length":112,"hash_ids":[3564084,3564085,3564086,3564087,3564088,3564089,3564090],"delay":20719.2} +{"session_id":"sess-4ad9bdc1ed41","input_length":563,"output_length":30,"hash_ids":[3564091,3564092],"delay":1357.7} +{"session_id":"sess-4ad9bdc1ed41","input_length":792,"output_length":167,"hash_ids":[3564093,3564094],"delay":40814.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":731,"output_length":50,"hash_ids":[3564095,3564096],"delay":328.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":901,"output_length":1453,"hash_ids":[3564097,3564098],"delay":2097.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":5422,"output_length":1499,"hash_ids":[3564099,3564100,3564101,3564102,3564103,3564104,3564105,3564106,3564107,3564108,3564109],"delay":20916.2} +{"session_id":"sess-4ad9bdc1ed41","input_length":3712,"output_length":999,"hash_ids":[3564110,3564111,3564112,3564113,3564114,3564115,3564116,3564117],"delay":8204.7} +{"session_id":"sess-4ad9bdc1ed41","input_length":2916,"output_length":77,"hash_ids":[3564118,3564119,3564120,3564121,3564122,3564123],"delay":1857.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":1306,"output_length":284,"hash_ids":[3564124,3564125,3564126],"delay":318.3} +{"session_id":"sess-4ad9bdc1ed41","input_length":551,"output_length":171,"hash_ids":[3564127,3564128],"delay":476.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":3951,"output_length":278,"hash_ids":[3564129,3564130,3564131,3564132,3564133,3564134,3564135,3564136],"delay":1644.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":1265,"output_length":953,"hash_ids":[3564137,3564138,3564139],"delay":21921.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":669,"output_length":131,"hash_ids":[3564140,3564141],"delay":262.1} +{"session_id":"sess-4ad9bdc1ed41","input_length":214,"output_length":82,"hash_ids":[3564142],"delay":4591.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":1793,"output_length":236,"hash_ids":[3564143,3564144,3564145,3564146],"delay":781.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":801,"output_length":692,"hash_ids":[3564147,3564148],"delay":414.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":9649,"output_length":82,"hash_ids":[3564149,3564150,3564151,3564152,3564153,3564154,3564155,3564156,3564157,3564158,3564159,3564160,3564161,3564162,3564163,3564164,3564165,3564166,3564167],"delay":613.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":1051,"output_length":108,"hash_ids":[3564168,3564169,3564170],"delay":526.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":5175,"output_length":336,"hash_ids":[3564171,3564172,3564173,3564174,3564175,3564176,3564177,3564178,3564179,3564180,3564181],"delay":1198.3} +{"session_id":"sess-4ad9bdc1ed41","input_length":5012,"output_length":194,"hash_ids":[3564182,3564183,3564184,3564185,3564186,3564187,3564188,3564189,3564190,3564191],"delay":306.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":1094,"output_length":65,"hash_ids":[3564192,3564193,3564194],"delay":408.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":2069,"output_length":64,"hash_ids":[3564195,3564196,3564197,3564198,3564199],"delay":3471.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":551,"output_length":58,"hash_ids":[3564200,3564201],"delay":491.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":941,"output_length":399,"hash_ids":[3564202,3564203],"delay":15328.6} +{"session_id":"sess-e27db0f03771","input_length":53198,"output_length":588,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3568063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e27db0f03771","input_length":931,"output_length":619,"hash_ids":[3568064,3568065],"delay":269.9} +{"session_id":"sess-e27db0f03771","input_length":557,"output_length":735,"hash_ids":[3568066,3568067],"delay":1301.5} +{"session_id":"sess-e27db0f03771","input_length":412,"output_length":184,"hash_ids":[3568068],"delay":4744.7} +{"session_id":"sess-e27db0f03771","input_length":2297,"output_length":126,"hash_ids":[3568069,3568070,3568071,3568072,3568073],"delay":10346.0} +{"session_id":"sess-e27db0f03771","input_length":289,"output_length":197,"hash_ids":[3568074],"delay":5659.5} +{"session_id":"sess-e27db0f03771","input_length":859,"output_length":730,"hash_ids":[3568075,3568076],"delay":24026.9} +{"session_id":"sess-e27db0f03771","input_length":3420,"output_length":1099,"hash_ids":[3568077,3568078,3568079,3568080,3568081,3568082,3568083],"delay":1359.9} +{"session_id":"sess-e27db0f03771","input_length":2288,"output_length":979,"hash_ids":[3568084,3568085,3568086,3568087,3568088],"delay":215.8} +{"session_id":"sess-e27db0f03771","input_length":2022,"output_length":594,"hash_ids":[3568089,3568090,3568091,3568092],"delay":222.9} +{"session_id":"sess-e27db0f03771","input_length":9236,"output_length":676,"hash_ids":[3568093,3568094,3568095,3568096,3568097,3568098,3568099,3568100,3568101,3568102,3568103,3568104,3568105,3568106,3568107,3568108,3568109,3568110,3568111],"delay":1383.6} +{"session_id":"sess-e27db0f03771","input_length":650,"output_length":210,"hash_ids":[3568112,3568113],"delay":18799.2} +{"session_id":"sess-e27db0f03771","input_length":3888,"output_length":30,"hash_ids":[3568114,3568115,3568116,3568117,3568118,3568119,3568120,3568121],"delay":2779.4} +{"session_id":"sess-e27db0f03771","input_length":2171,"output_length":173,"hash_ids":[3568122,3568123,3568124,3568125,3568126],"delay":292.2} +{"session_id":"sess-e27db0f03771","input_length":2152,"output_length":1005,"hash_ids":[3568127,3568128,3568129,3568130,3568131],"delay":4678.9} +{"session_id":"sess-e27db0f03771","input_length":2636,"output_length":391,"hash_ids":[3568132,3568133,3568134,3568135,3568136,3568137],"delay":178.5} +{"session_id":"sess-e27db0f03771","input_length":124,"output_length":238,"hash_ids":[3568138],"delay":1404.8} +{"session_id":"sess-e27db0f03771","input_length":5216,"output_length":75,"hash_ids":[3568139,3568140,3568141,3568142,3568143,3568144,3568145,3568146,3568147,3568148,3568149],"delay":307.8} +{"session_id":"sess-e27db0f03771","input_length":339,"output_length":566,"hash_ids":[3568150],"delay":162.8} +{"session_id":"sess-e27db0f03771","input_length":949,"output_length":197,"hash_ids":[3568151,3568152],"delay":508.4} +{"session_id":"sess-e27db0f03771","input_length":236,"output_length":671,"hash_ids":[3568153],"delay":1274.1} +{"session_id":"sess-e27db0f03771","input_length":5865,"output_length":1979,"hash_ids":[3568154,3568155,3568156,3568157,3568158,3568159,3568160,3568161,3568162,3568163,3568164,3568165],"delay":12529.9} +{"session_id":"sess-e27db0f03771","input_length":955,"output_length":1158,"hash_ids":[3568166,3568167],"delay":5532.8} +{"session_id":"sess-e27db0f03771","input_length":1570,"output_length":176,"hash_ids":[3568168,3568169,3568170,3568171],"delay":248.1} +{"session_id":"sess-e27db0f03771","input_length":619,"output_length":490,"hash_ids":[3568172,3568173],"delay":14007.5} +{"session_id":"sess-e27db0f03771","input_length":1998,"output_length":362,"hash_ids":[3568174,3568175,3568176,3568177],"delay":534.4} +{"session_id":"sess-e27db0f03771","input_length":3668,"output_length":67,"hash_ids":[3568178,3568179,3568180,3568181,3568182,3568183,3568184,3568185],"delay":210.2} +{"session_id":"sess-e27db0f03771","input_length":1564,"output_length":103,"hash_ids":[3568186,3568187,3568188,3568189],"delay":402.6} +{"session_id":"sess-e27db0f03771","input_length":2445,"output_length":237,"hash_ids":[3568190,3568191,3568192,3568193,3568194],"delay":1812.7} +{"session_id":"sess-e27db0f03771","input_length":365,"output_length":656,"hash_ids":[3568195],"delay":1285.3} +{"session_id":"sess-1689b55d0d64","input_length":55008,"output_length":859,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3572063,3572064,3572065,3572066,3572067],"timestamp":0.0,"group_id":2} +{"session_id":"sess-1689b55d0d64","input_length":2366,"output_length":497,"hash_ids":[3572068,3572069,3572070,3572071,3572072],"delay":7061.5} +{"session_id":"sess-1689b55d0d64","input_length":3227,"output_length":168,"hash_ids":[3572073,3572074,3572075,3572076,3572077,3572078,3572079],"delay":3441.0} +{"session_id":"sess-1689b55d0d64","input_length":305,"output_length":180,"hash_ids":[3572080],"delay":1995.6} +{"session_id":"sess-1689b55d0d64","input_length":7130,"output_length":1158,"hash_ids":[3572081,3572082,3572083,3572084,3572085,3572086,3572087,3572088,3572089,3572090,3572091,3572092,3572093,3572094],"delay":24489.9} +{"session_id":"sess-1689b55d0d64","input_length":772,"output_length":436,"hash_ids":[3572095,3572096],"delay":462.8} +{"session_id":"sess-1689b55d0d64","input_length":563,"output_length":865,"hash_ids":[3572097,3572098],"delay":1336.5} +{"session_id":"sess-1689b55d0d64","input_length":3872,"output_length":150,"hash_ids":[3572099,3572100,3572101,3572102,3572103,3572104,3572105,3572106],"delay":1781.7} +{"session_id":"sess-1689b55d0d64","input_length":8653,"output_length":1092,"hash_ids":[3572107,3572108,3572109,3572110,3572111,3572112,3572113,3572114,3572115,3572116,3572117,3572118,3572119,3572120,3572121,3572122,3572123],"delay":26524.6} +{"session_id":"sess-d0505354cfba","input_length":53895,"output_length":47,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3576063,3576064,3576065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d0505354cfba","input_length":2928,"output_length":890,"hash_ids":[3576066,3576067,3576068,3576069,3576070,3576071],"delay":3784.5} +{"session_id":"sess-d0505354cfba","input_length":1267,"output_length":414,"hash_ids":[3576072,3576073,3576074],"delay":441.4} +{"session_id":"sess-d0505354cfba","input_length":1460,"output_length":59,"hash_ids":[3576075,3576076,3576077],"delay":1032.3} +{"session_id":"sess-d0505354cfba","input_length":513,"output_length":2137,"hash_ids":[3576078,3576079],"delay":860.5} +{"session_id":"sess-d0505354cfba","input_length":864,"output_length":107,"hash_ids":[3576080,3576081],"delay":1509.5} +{"session_id":"sess-d0505354cfba","input_length":3497,"output_length":68,"hash_ids":[3576082,3576083,3576084,3576085,3576086,3576087,3576088],"delay":250.5} +{"session_id":"sess-d0505354cfba","input_length":2145,"output_length":1013,"hash_ids":[3576089,3576090,3576091,3576092,3576093],"delay":732.1} +{"session_id":"sess-d0505354cfba","input_length":290,"output_length":1283,"hash_ids":[3576094],"delay":1924.6} +{"session_id":"sess-d0505354cfba","input_length":2139,"output_length":283,"hash_ids":[3576095,3576096,3576097,3576098,3576099],"delay":20420.4} +{"session_id":"sess-d0505354cfba","input_length":1908,"output_length":473,"hash_ids":[3576100,3576101,3576102,3576103],"delay":4470.7} +{"session_id":"sess-d0505354cfba","input_length":4619,"output_length":261,"hash_ids":[3576104,3576105,3576106,3576107,3576108,3576109,3576110,3576111,3576112,3576113],"delay":2057.4} +{"session_id":"sess-d0505354cfba","input_length":545,"output_length":590,"hash_ids":[3576114,3576115],"delay":23833.2} +{"session_id":"sess-d0505354cfba","input_length":2727,"output_length":364,"hash_ids":[3576116,3576117,3576118,3576119,3576120,3576121],"delay":10270.2} +{"session_id":"sess-d0505354cfba","input_length":7362,"output_length":795,"hash_ids":[3576122,3576123,3576124,3576125,3576126,3576127,3576128,3576129,3576130,3576131,3576132,3576133,3576134,3576135,3576136],"delay":630.8} +{"session_id":"sess-d0505354cfba","input_length":489,"output_length":392,"hash_ids":[3576137],"delay":406.0} +{"session_id":"sess-d0505354cfba","input_length":852,"output_length":188,"hash_ids":[3576138,3576139],"delay":350.5} +{"session_id":"sess-d0505354cfba","input_length":2927,"output_length":196,"hash_ids":[3576140,3576141,3576142,3576143,3576144,3576145],"delay":4481.8} +{"session_id":"sess-d0505354cfba","input_length":978,"output_length":414,"hash_ids":[3576146,3576147],"delay":1425.4} +{"session_id":"sess-d0505354cfba","input_length":1767,"output_length":1237,"hash_ids":[3576148,3576149,3576150,3576151],"delay":1146.4} +{"session_id":"sess-d0505354cfba","input_length":2112,"output_length":273,"hash_ids":[3576152,3576153,3576154,3576155,3576156],"delay":899.2} +{"session_id":"sess-d0505354cfba","input_length":599,"output_length":329,"hash_ids":[3576157,3576158],"delay":713.3} +{"session_id":"sess-d0505354cfba","input_length":2473,"output_length":205,"hash_ids":[3576159,3576160,3576161,3576162,3576163],"delay":446.1} +{"session_id":"sess-d0505354cfba","input_length":2102,"output_length":153,"hash_ids":[3576164,3576165,3576166,3576167,3576168],"delay":534.6} +{"session_id":"sess-d0505354cfba","input_length":3500,"output_length":553,"hash_ids":[3576169,3576170,3576171,3576172,3576173,3576174,3576175],"delay":8966.2} +{"session_id":"sess-d0505354cfba","input_length":1541,"output_length":553,"hash_ids":[3576176,3576177,3576178,3576179],"delay":5875.4} +{"session_id":"sess-d0505354cfba","input_length":785,"output_length":401,"hash_ids":[3576180,3576181],"delay":1054.6} +{"session_id":"sess-d0505354cfba","input_length":2532,"output_length":999,"hash_ids":[3576182,3576183,3576184,3576185,3576186],"delay":30907.4} +{"session_id":"sess-781e352496ee","input_length":53810,"output_length":406,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3580063,3580064,3580065],"timestamp":0.0,"group_id":2} +{"session_id":"sess-781e352496ee","input_length":2783,"output_length":119,"hash_ids":[3580066,3580067,3580068,3580069,3580070,3580071],"delay":1975.9} +{"session_id":"sess-781e352496ee","input_length":1139,"output_length":102,"hash_ids":[3580072,3580073,3580074],"delay":583.0} +{"session_id":"sess-781e352496ee","input_length":3711,"output_length":1083,"hash_ids":[3580075,3580076,3580077,3580078,3580079,3580080,3580081,3580082],"delay":474.5} +{"session_id":"sess-781e352496ee","input_length":3669,"output_length":725,"hash_ids":[3580083,3580084,3580085,3580086,3580087,3580088,3580089,3580090],"delay":941.1} +{"session_id":"sess-781e352496ee","input_length":522,"output_length":1506,"hash_ids":[3580091,3580092],"delay":13346.0} +{"session_id":"sess-6d22a0becd03","input_length":56899,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,3584063,3584064,3584065,3584066,3584067,3584068,3584069,3584070,3584071],"timestamp":0.0,"group_id":14} +{"session_id":"sess-6d22a0becd03","input_length":1730,"output_length":42,"hash_ids":[3584072,3584073,3584074,3584075],"delay":893.1} +{"session_id":"sess-6d22a0becd03","input_length":768,"output_length":341,"hash_ids":[3584076,3584077],"delay":3119.6} +{"session_id":"sess-6d22a0becd03","input_length":3130,"output_length":679,"hash_ids":[3584078,3584079,3584080,3584081,3584082,3584083,3584084],"delay":1198.3} +{"session_id":"sess-6d22a0becd03","input_length":2054,"output_length":101,"hash_ids":[3584085,3584086,3584087,3584088,3584089],"delay":14157.1} +{"session_id":"sess-6d22a0becd03","input_length":262,"output_length":175,"hash_ids":[3584090],"delay":830.6} +{"session_id":"sess-6d22a0becd03","input_length":949,"output_length":400,"hash_ids":[3584091,3584092],"delay":11933.4} +{"session_id":"sess-6d22a0becd03","input_length":4393,"output_length":880,"hash_ids":[3584093,3584094,3584095,3584096,3584097,3584098,3584099,3584100,3584101],"delay":1659.8} +{"session_id":"sess-6d22a0becd03","input_length":592,"output_length":85,"hash_ids":[3584102,3584103],"delay":340.2} +{"session_id":"sess-6d22a0becd03","input_length":2306,"output_length":236,"hash_ids":[3584104,3584105,3584106,3584107,3584108],"delay":492.4} +{"session_id":"sess-6d22a0becd03","input_length":3398,"output_length":133,"hash_ids":[3584109,3584110,3584111,3584112,3584113,3584114,3584115],"delay":881.5} +{"session_id":"sess-6d22a0becd03","input_length":4247,"output_length":309,"hash_ids":[3584116,3584117,3584118,3584119,3584120,3584121,3584122,3584123,3584124],"delay":2614.5} +{"session_id":"sess-6d22a0becd03","input_length":670,"output_length":297,"hash_ids":[3584125,3584126],"delay":437.4} +{"session_id":"sess-6d22a0becd03","input_length":441,"output_length":208,"hash_ids":[3584127],"delay":1220.9} +{"session_id":"sess-6d22a0becd03","input_length":1338,"output_length":203,"hash_ids":[3584128,3584129,3584130],"delay":1511.2} +{"session_id":"sess-6d22a0becd03","input_length":646,"output_length":53,"hash_ids":[3584131,3584132],"delay":825.6} +{"session_id":"sess-9df9cb1c7b85","input_length":61914,"output_length":150,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3588063,3588064,3588065,3588066,3588067,3588068,3588069,3588070,3588071,3588072,3588073,3588074,3588075,3588076,3588077,3588078,3588079,3588080],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9df9cb1c7b85","input_length":6787,"output_length":452,"hash_ids":[3588081,3588082,3588083,3588084,3588085,3588086,3588087,3588088,3588089,3588090,3588091,3588092,3588093,3588094],"delay":2577.4} +{"session_id":"sess-9df9cb1c7b85","input_length":2434,"output_length":195,"hash_ids":[3588095,3588096,3588097,3588098,3588099],"delay":2423.0} +{"session_id":"sess-9df9cb1c7b85","input_length":8706,"output_length":42,"hash_ids":[3588100,3588101,3588102,3588103,3588104,3588105,3588106,3588107,3588108,3588109,3588110,3588111,3588112,3588113,3588114,3588115,3588116,3588117],"delay":11965.2} +{"session_id":"sess-9df9cb1c7b85","input_length":8137,"output_length":151,"hash_ids":[3588118,3588119,3588120,3588121,3588122,3588123,3588124,3588125,3588126,3588127,3588128,3588129,3588130,3588131,3588132,3588133],"delay":384.1} +{"session_id":"sess-9df9cb1c7b85","input_length":1922,"output_length":557,"hash_ids":[3588134,3588135,3588136,3588137],"delay":13657.3} +{"session_id":"sess-9df9cb1c7b85","input_length":639,"output_length":284,"hash_ids":[3588138,3588139],"delay":3784.0} +{"session_id":"sess-9df9cb1c7b85","input_length":890,"output_length":1648,"hash_ids":[3588140,3588141],"delay":1430.6} +{"session_id":"sess-9df9cb1c7b85","input_length":1260,"output_length":250,"hash_ids":[3588142,3588143,3588144],"delay":823.7} +{"session_id":"sess-9df9cb1c7b85","input_length":9176,"output_length":361,"hash_ids":[3588145,3588146,3588147,3588148,3588149,3588150,3588151,3588152,3588153,3588154,3588155,3588156,3588157,3588158,3588159,3588160,3588161,3588162],"delay":220.5} +{"session_id":"sess-9df9cb1c7b85","input_length":2004,"output_length":2211,"hash_ids":[3588163,3588164,3588165,3588166],"delay":2118.8} +{"session_id":"sess-9df9cb1c7b85","input_length":5205,"output_length":202,"hash_ids":[3588167,3588168,3588169,3588170,3588171,3588172,3588173,3588174,3588175,3588176,3588177],"delay":2593.2} +{"session_id":"sess-9df9cb1c7b85","input_length":1355,"output_length":67,"hash_ids":[3588178,3588179,3588180],"delay":1798.7} +{"session_id":"sess-31f3b2e10ada","input_length":67709,"output_length":577,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3592063,3592064,3592065,3592066,3592067,3592068,3592069,3592070,3592071,3592072,3592073,3592074,3592075,3592076,3592077,3592078,3592079,3592080,3592081,3592082,3592083,3592084,3592085,3592086,3592087,3592088,3592089,3592090,3592091,3592092],"timestamp":0.0,"group_id":1} +{"session_id":"sess-31f3b2e10ada","input_length":780,"output_length":170,"hash_ids":[3592093,3592094],"delay":2028.7} +{"session_id":"sess-31f3b2e10ada","input_length":2994,"output_length":196,"hash_ids":[3592095,3592096,3592097,3592098,3592099,3592100],"delay":5321.6} +{"session_id":"sess-31f3b2e10ada","input_length":1215,"output_length":239,"hash_ids":[3592101,3592102,3592103],"delay":585.6} +{"session_id":"sess-31f3b2e10ada","input_length":475,"output_length":1610,"hash_ids":[3592104],"delay":2814.6} +{"session_id":"sess-31f3b2e10ada","input_length":689,"output_length":53,"hash_ids":[3592105,3592106],"delay":4426.8} +{"session_id":"sess-31f3b2e10ada","input_length":4348,"output_length":316,"hash_ids":[3592107,3592108,3592109,3592110,3592111,3592112,3592113,3592114,3592115],"delay":1157.1} +{"session_id":"sess-31f3b2e10ada","input_length":936,"output_length":192,"hash_ids":[3592116,3592117],"delay":28953.5} +{"session_id":"sess-466f3447a537","input_length":70092,"output_length":218,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3596063,3596064,3596065,3596066,3596067,3596068,3596069,3596070,3596071,3596072,3596073,3596074,3596075,3596076,3596077,3596078,3596079,3596080,3596081,3596082,3596083,3596084,3596085,3596086,3596087,3596088,3596089,3596090,3596091,3596092,3596093,3596094,3596095,3596096],"timestamp":0.0,"group_id":0} +{"session_id":"sess-466f3447a537","input_length":1507,"output_length":277,"hash_ids":[3596097,3596098,3596099],"delay":6473.0} +{"session_id":"sess-466f3447a537","input_length":328,"output_length":451,"hash_ids":[3596100],"delay":7839.6} +{"session_id":"sess-466f3447a537","input_length":7861,"output_length":2354,"hash_ids":[3596101,3596102,3596103,3596104,3596105,3596106,3596107,3596108,3596109,3596110,3596111,3596112,3596113,3596114,3596115,3596116],"delay":18059.6} +{"session_id":"sess-466f3447a537","input_length":860,"output_length":254,"hash_ids":[3596117,3596118],"delay":354.4} +{"session_id":"sess-466f3447a537","input_length":719,"output_length":519,"hash_ids":[3596119,3596120],"delay":1100.7} +{"session_id":"sess-466f3447a537","input_length":543,"output_length":30,"hash_ids":[3596121,3596122],"delay":316.0} +{"session_id":"sess-466f3447a537","input_length":1661,"output_length":239,"hash_ids":[3596123,3596124,3596125,3596126],"delay":14325.2} +{"session_id":"sess-466f3447a537","input_length":800,"output_length":169,"hash_ids":[3596127,3596128],"delay":1538.3} +{"session_id":"sess-466f3447a537","input_length":3829,"output_length":1061,"hash_ids":[3596129,3596130,3596131,3596132,3596133,3596134,3596135,3596136],"delay":811.0} +{"session_id":"sess-466f3447a537","input_length":140,"output_length":904,"hash_ids":[3596137],"delay":657.7} +{"session_id":"sess-466f3447a537","input_length":337,"output_length":135,"hash_ids":[3596138],"delay":2149.6} +{"session_id":"sess-466f3447a537","input_length":3477,"output_length":136,"hash_ids":[3596139,3596140,3596141,3596142,3596143,3596144,3596145],"delay":268.4} +{"session_id":"sess-466f3447a537","input_length":849,"output_length":595,"hash_ids":[3596146,3596147],"delay":377.6} +{"session_id":"sess-466f3447a537","input_length":1938,"output_length":658,"hash_ids":[3596148,3596149,3596150,3596151],"delay":3522.3} +{"session_id":"sess-466f3447a537","input_length":2761,"output_length":230,"hash_ids":[3596152,3596153,3596154,3596155,3596156,3596157],"delay":958.1} +{"session_id":"sess-466f3447a537","input_length":672,"output_length":686,"hash_ids":[3596158,3596159],"delay":3229.5} +{"session_id":"sess-466f3447a537","input_length":2750,"output_length":537,"hash_ids":[3596160,3596161,3596162,3596163,3596164,3596165],"delay":326.2} +{"session_id":"sess-466f3447a537","input_length":3599,"output_length":269,"hash_ids":[3596166,3596167,3596168,3596169,3596170,3596171,3596172,3596173],"delay":1131.9} +{"session_id":"sess-466f3447a537","input_length":1780,"output_length":423,"hash_ids":[3596174,3596175,3596176,3596177],"delay":660.1} +{"session_id":"sess-466f3447a537","input_length":237,"output_length":2559,"hash_ids":[3596178],"delay":9727.1} +{"session_id":"sess-466f3447a537","input_length":507,"output_length":199,"hash_ids":[3596179],"delay":5826.5} +{"session_id":"sess-466f3447a537","input_length":4246,"output_length":46,"hash_ids":[3596180,3596181,3596182,3596183,3596184,3596185,3596186,3596187,3596188],"delay":513.4} +{"session_id":"sess-79be1acbae2d","input_length":56300,"output_length":201,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3600063,3600064,3600065,3600066,3600067,3600068,3600069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-79be1acbae2d","input_length":8562,"output_length":254,"hash_ids":[3600070,3600071,3600072,3600073,3600074,3600075,3600076,3600077,3600078,3600079,3600080,3600081,3600082,3600083,3600084,3600085,3600086],"delay":921.2} +{"session_id":"sess-79be1acbae2d","input_length":7102,"output_length":666,"hash_ids":[3600087,3600088,3600089,3600090,3600091,3600092,3600093,3600094,3600095,3600096,3600097,3600098,3600099,3600100],"delay":487.9} +{"session_id":"sess-79be1acbae2d","input_length":4017,"output_length":164,"hash_ids":[3600101,3600102,3600103,3600104,3600105,3600106,3600107,3600108],"delay":412.5} +{"session_id":"sess-79be1acbae2d","input_length":2719,"output_length":678,"hash_ids":[3600109,3600110,3600111,3600112,3600113,3600114],"delay":344.7} +{"session_id":"sess-79be1acbae2d","input_length":7453,"output_length":60,"hash_ids":[3600115,3600116,3600117,3600118,3600119,3600120,3600121,3600122,3600123,3600124,3600125,3600126,3600127,3600128,3600129],"delay":20907.9} +{"session_id":"sess-6ca538a0c16c","input_length":53111,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3604063],"timestamp":0.0,"group_id":11} +{"session_id":"sess-6ca538a0c16c","input_length":4032,"output_length":76,"hash_ids":[3604064,3604065,3604066,3604067,3604068,3604069,3604070,3604071],"delay":21365.0} +{"session_id":"sess-6ca538a0c16c","input_length":785,"output_length":69,"hash_ids":[3604072,3604073],"delay":561.3} +{"session_id":"sess-6ca538a0c16c","input_length":5752,"output_length":842,"hash_ids":[3604074,3604075,3604076,3604077,3604078,3604079,3604080,3604081,3604082,3604083,3604084,3604085],"delay":863.0} +{"session_id":"sess-6ca538a0c16c","input_length":3698,"output_length":595,"hash_ids":[3604086,3604087,3604088,3604089,3604090,3604091,3604092,3604093],"delay":1351.2} +{"session_id":"sess-6ca538a0c16c","input_length":4605,"output_length":81,"hash_ids":[3604094,3604095,3604096,3604097,3604098,3604099,3604100,3604101,3604102],"delay":1764.3} +{"session_id":"sess-6ca538a0c16c","input_length":4315,"output_length":108,"hash_ids":[3604103,3604104,3604105,3604106,3604107,3604108,3604109,3604110,3604111],"delay":34477.0} +{"session_id":"sess-6ca538a0c16c","input_length":1873,"output_length":389,"hash_ids":[3604112,3604113,3604114,3604115],"delay":428.1} +{"session_id":"sess-6ca538a0c16c","input_length":358,"output_length":254,"hash_ids":[3604116],"delay":994.8} +{"session_id":"sess-6ca538a0c16c","input_length":1980,"output_length":321,"hash_ids":[3604117,3604118,3604119,3604120],"delay":32574.5} +{"session_id":"sess-6ca538a0c16c","input_length":2947,"output_length":75,"hash_ids":[3604121,3604122,3604123,3604124,3604125,3604126],"delay":886.6} +{"session_id":"sess-6ca538a0c16c","input_length":185,"output_length":188,"hash_ids":[3604127],"delay":684.1} +{"session_id":"sess-6ca538a0c16c","input_length":574,"output_length":2454,"hash_ids":[3604128,3604129],"delay":23346.5} +{"session_id":"sess-6ca538a0c16c","input_length":706,"output_length":1216,"hash_ids":[3604130,3604131],"delay":2804.6} +{"session_id":"sess-6ca538a0c16c","input_length":236,"output_length":134,"hash_ids":[3604132],"delay":708.1} +{"session_id":"sess-6ca538a0c16c","input_length":806,"output_length":264,"hash_ids":[3604133,3604134],"delay":1199.8} +{"session_id":"sess-6ca538a0c16c","input_length":414,"output_length":854,"hash_ids":[3604135],"delay":1274.9} +{"session_id":"sess-6ca538a0c16c","input_length":8650,"output_length":352,"hash_ids":[3604136,3604137,3604138,3604139,3604140,3604141,3604142,3604143,3604144,3604145,3604146,3604147,3604148,3604149,3604150,3604151,3604152],"delay":465.6} +{"session_id":"sess-6ca538a0c16c","input_length":347,"output_length":128,"hash_ids":[3604153],"delay":527.5} +{"session_id":"sess-6ca538a0c16c","input_length":4106,"output_length":163,"hash_ids":[3604154,3604155,3604156,3604157,3604158,3604159,3604160,3604161,3604162],"delay":730.4} +{"session_id":"sess-2180e124bd0a","input_length":53820,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3608063,3608064,3608065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2180e124bd0a","input_length":1582,"output_length":192,"hash_ids":[3608066,3608067,3608068,3608069],"delay":7427.7} +{"session_id":"sess-2180e124bd0a","input_length":1611,"output_length":137,"hash_ids":[3608070,3608071,3608072,3608073],"delay":20219.9} +{"session_id":"sess-2a5b39e39344","input_length":54273,"output_length":477,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3612063,3612064,3612065,3612066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2a5b39e39344","input_length":1380,"output_length":285,"hash_ids":[3612067,3612068,3612069],"delay":481.5} +{"session_id":"sess-2a5b39e39344","input_length":784,"output_length":92,"hash_ids":[3612070,3612071],"delay":3407.4} +{"session_id":"sess-2a5b39e39344","input_length":5086,"output_length":2394,"hash_ids":[3612072,3612073,3612074,3612075,3612076,3612077,3612078,3612079,3612080,3612081],"delay":2352.2} +{"session_id":"sess-2a5b39e39344","input_length":2004,"output_length":99,"hash_ids":[3612082,3612083,3612084,3612085],"delay":1971.1} +{"session_id":"sess-2a5b39e39344","input_length":4377,"output_length":101,"hash_ids":[3612086,3612087,3612088,3612089,3612090,3612091,3612092,3612093,3612094],"delay":815.2} +{"session_id":"sess-62a5e7c2991d","input_length":57230,"output_length":885,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3616063,3616064,3616065,3616066,3616067,3616068,3616069,3616070,3616071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-62a5e7c2991d","input_length":727,"output_length":1030,"hash_ids":[3616072,3616073],"delay":1002.8} +{"session_id":"sess-62a5e7c2991d","input_length":857,"output_length":73,"hash_ids":[3616074,3616075],"delay":1008.6} +{"session_id":"sess-62a5e7c2991d","input_length":301,"output_length":514,"hash_ids":[3616076],"delay":3519.1} +{"session_id":"sess-62a5e7c2991d","input_length":1391,"output_length":1036,"hash_ids":[3616077,3616078,3616079],"delay":9779.3} +{"session_id":"sess-62a5e7c2991d","input_length":963,"output_length":74,"hash_ids":[3616080,3616081],"delay":14964.7} +{"session_id":"sess-62a5e7c2991d","input_length":1619,"output_length":172,"hash_ids":[3616082,3616083,3616084,3616085],"delay":3113.6} +{"session_id":"sess-62a5e7c2991d","input_length":472,"output_length":161,"hash_ids":[3616086],"delay":3231.2} +{"session_id":"sess-62a5e7c2991d","input_length":6032,"output_length":1554,"hash_ids":[3616087,3616088,3616089,3616090,3616091,3616092,3616093,3616094,3616095,3616096,3616097,3616098],"delay":1550.3} +{"session_id":"sess-62a5e7c2991d","input_length":3963,"output_length":964,"hash_ids":[3616099,3616100,3616101,3616102,3616103,3616104,3616105,3616106],"delay":21536.2} +{"session_id":"sess-62a5e7c2991d","input_length":268,"output_length":181,"hash_ids":[3616107],"delay":4354.5} +{"session_id":"sess-62a5e7c2991d","input_length":1222,"output_length":455,"hash_ids":[3616108,3616109,3616110],"delay":643.7} +{"session_id":"sess-62a5e7c2991d","input_length":3550,"output_length":88,"hash_ids":[3616111,3616112,3616113,3616114,3616115,3616116,3616117],"delay":18402.6} +{"session_id":"sess-62a5e7c2991d","input_length":1037,"output_length":2256,"hash_ids":[3616118,3616119,3616120],"delay":816.8} +{"session_id":"sess-62a5e7c2991d","input_length":1187,"output_length":618,"hash_ids":[3616121,3616122,3616123],"delay":8854.8} +{"session_id":"sess-62a5e7c2991d","input_length":706,"output_length":236,"hash_ids":[3616124,3616125],"delay":15385.8} +{"session_id":"sess-62a5e7c2991d","input_length":6823,"output_length":192,"hash_ids":[3616126,3616127,3616128,3616129,3616130,3616131,3616132,3616133,3616134,3616135,3616136,3616137,3616138,3616139],"delay":1788.0} +{"session_id":"sess-62a5e7c2991d","input_length":6336,"output_length":1191,"hash_ids":[3616140,3616141,3616142,3616143,3616144,3616145,3616146,3616147,3616148,3616149,3616150,3616151,3616152],"delay":1991.9} +{"session_id":"sess-62a5e7c2991d","input_length":251,"output_length":211,"hash_ids":[3616153],"delay":627.4} +{"session_id":"sess-62a5e7c2991d","input_length":581,"output_length":346,"hash_ids":[3616154,3616155],"delay":1635.5} +{"session_id":"sess-62a5e7c2991d","input_length":1032,"output_length":61,"hash_ids":[3616156,3616157,3616158],"delay":212.7} +{"session_id":"sess-62a5e7c2991d","input_length":1597,"output_length":119,"hash_ids":[3616159,3616160,3616161,3616162],"delay":850.1} +{"session_id":"sess-62a5e7c2991d","input_length":2450,"output_length":106,"hash_ids":[3616163,3616164,3616165,3616166,3616167],"delay":574.3} +{"session_id":"sess-62a5e7c2991d","input_length":957,"output_length":51,"hash_ids":[3616168,3616169],"delay":286.6} +{"session_id":"sess-42ff00a8175c","input_length":52307,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302],"timestamp":0.0,"group_id":6} +{"session_id":"sess-42ff00a8175c","input_length":1380,"output_length":631,"hash_ids":[3616170,3616171,3616172],"delay":9835.9} +{"session_id":"sess-42ff00a8175c","input_length":6681,"output_length":660,"hash_ids":[3616173,3616174,3616175,3616176,3616177,3616178,3616179,3616180,3616181,3616182,3616183,3616184,3616185,3616186],"delay":4354.3} +{"session_id":"sess-42ff00a8175c","input_length":1474,"output_length":421,"hash_ids":[3616187,3616188,3616189],"delay":546.5} +{"session_id":"sess-42ff00a8175c","input_length":6993,"output_length":96,"hash_ids":[3616190,3616191,3616192,3616193,3616194,3616195,3616196,3616197,3616198,3616199,3616200,3616201,3616202,3616203],"delay":2545.8} +{"session_id":"sess-42ff00a8175c","input_length":1874,"output_length":104,"hash_ids":[3616204,3616205,3616206,3616207],"delay":568.2} +{"session_id":"sess-6d847c05006c","input_length":59130,"output_length":416,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3624063,3624064,3624065,3624066,3624067,3624068,3624069,3624070,3624071,3624072,3624073,3624074,3624075],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6d847c05006c","input_length":183,"output_length":175,"hash_ids":[3624076],"delay":2063.6} +{"session_id":"sess-6d847c05006c","input_length":4242,"output_length":456,"hash_ids":[3624077,3624078,3624079,3624080,3624081,3624082,3624083,3624084,3624085],"delay":1301.3} +{"session_id":"sess-6d847c05006c","input_length":2032,"output_length":566,"hash_ids":[3624086,3624087,3624088,3624089],"delay":490.3} +{"session_id":"sess-6d847c05006c","input_length":3112,"output_length":534,"hash_ids":[3624090,3624091,3624092,3624093,3624094,3624095,3624096],"delay":240.1} +{"session_id":"sess-6d847c05006c","input_length":3104,"output_length":437,"hash_ids":[3624097,3624098,3624099,3624100,3624101,3624102,3624103],"delay":5231.7} +{"session_id":"sess-6d847c05006c","input_length":8840,"output_length":51,"hash_ids":[3624104,3624105,3624106,3624107,3624108,3624109,3624110,3624111,3624112,3624113,3624114,3624115,3624116,3624117,3624118,3624119,3624120,3624121],"delay":525.9} +{"session_id":"sess-6d847c05006c","input_length":2602,"output_length":190,"hash_ids":[3624122,3624123,3624124,3624125,3624126,3624127],"delay":209.0} +{"session_id":"sess-6d847c05006c","input_length":7639,"output_length":528,"hash_ids":[3624128,3624129,3624130,3624131,3624132,3624133,3624134,3624135,3624136,3624137,3624138,3624139,3624140,3624141,3624142],"delay":1001.9} +{"session_id":"sess-6d847c05006c","input_length":1555,"output_length":612,"hash_ids":[3624143,3624144,3624145,3624146],"delay":215.1} +{"session_id":"sess-6d847c05006c","input_length":1320,"output_length":161,"hash_ids":[3624147,3624148,3624149],"delay":26298.7} +{"session_id":"sess-6d847c05006c","input_length":528,"output_length":2481,"hash_ids":[3624150,3624151],"delay":2188.4} +{"session_id":"sess-6d847c05006c","input_length":150,"output_length":153,"hash_ids":[3624152],"delay":1041.0} +{"session_id":"sess-6d847c05006c","input_length":2004,"output_length":742,"hash_ids":[3624153,3624154,3624155,3624156],"delay":678.3} +{"session_id":"sess-6d847c05006c","input_length":3287,"output_length":195,"hash_ids":[3624157,3624158,3624159,3624160,3624161,3624162,3624163],"delay":13556.7} +{"session_id":"sess-6d847c05006c","input_length":6561,"output_length":88,"hash_ids":[3624164,3624165,3624166,3624167,3624168,3624169,3624170,3624171,3624172,3624173,3624174,3624175,3624176],"delay":10650.2} +{"session_id":"sess-6d847c05006c","input_length":389,"output_length":1474,"hash_ids":[3624177],"delay":203.1} +{"session_id":"sess-6d847c05006c","input_length":1800,"output_length":333,"hash_ids":[3624178,3624179,3624180,3624181],"delay":563.1} +{"session_id":"sess-6d847c05006c","input_length":313,"output_length":54,"hash_ids":[3624182],"delay":1438.8} +{"session_id":"sess-6d847c05006c","input_length":174,"output_length":703,"hash_ids":[3624183],"delay":237.0} +{"session_id":"sess-6d847c05006c","input_length":2508,"output_length":441,"hash_ids":[3624184,3624185,3624186,3624187,3624188],"delay":1669.3} +{"session_id":"sess-6d847c05006c","input_length":7955,"output_length":352,"hash_ids":[3624189,3624190,3624191,3624192,3624193,3624194,3624195,3624196,3624197,3624198,3624199,3624200,3624201,3624202,3624203,3624204],"delay":195.5} +{"session_id":"sess-24a77cf10417","input_length":56548,"output_length":246,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3628063,3628064,3628065,3628066,3628067,3628068,3628069,3628070],"timestamp":0.0,"group_id":0} +{"session_id":"sess-24a77cf10417","input_length":1906,"output_length":187,"hash_ids":[3628071,3628072,3628073,3628074],"delay":2358.3} +{"session_id":"sess-24a77cf10417","input_length":1150,"output_length":70,"hash_ids":[3628075,3628076,3628077],"delay":1090.2} +{"session_id":"sess-24a77cf10417","input_length":2422,"output_length":664,"hash_ids":[3628078,3628079,3628080,3628081,3628082],"delay":702.5} +{"session_id":"sess-24a77cf10417","input_length":6748,"output_length":461,"hash_ids":[3628083,3628084,3628085,3628086,3628087,3628088,3628089,3628090,3628091,3628092,3628093,3628094,3628095,3628096],"delay":267.8} +{"session_id":"sess-24a77cf10417","input_length":1193,"output_length":178,"hash_ids":[3628097,3628098,3628099],"delay":851.3} +{"session_id":"sess-24a77cf10417","input_length":669,"output_length":30,"hash_ids":[3628100,3628101],"delay":380.5} +{"session_id":"sess-24a77cf10417","input_length":175,"output_length":1946,"hash_ids":[3628102],"delay":10556.2} +{"session_id":"sess-24a77cf10417","input_length":1987,"output_length":303,"hash_ids":[3628103,3628104,3628105,3628106],"delay":1115.9} +{"session_id":"sess-0d98624e08f7","input_length":59584,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3632063,3632064,3632065,3632066,3632067,3632068,3632069,3632070,3632071,3632072,3632073,3632074,3632075,3632076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0d98624e08f7","input_length":5012,"output_length":185,"hash_ids":[3632077,3632078,3632079,3632080,3632081,3632082,3632083,3632084,3632085,3632086],"delay":382.5} +{"session_id":"sess-0d98624e08f7","input_length":3186,"output_length":213,"hash_ids":[3632087,3632088,3632089,3632090,3632091,3632092,3632093],"delay":368.4} +{"session_id":"sess-0d98624e08f7","input_length":7796,"output_length":113,"hash_ids":[3632094,3632095,3632096,3632097,3632098,3632099,3632100,3632101,3632102,3632103,3632104,3632105,3632106,3632107,3632108,3632109],"delay":1502.7} +{"session_id":"sess-0d98624e08f7","input_length":2011,"output_length":134,"hash_ids":[3632110,3632111,3632112,3632113],"delay":2548.7} +{"session_id":"sess-0d98624e08f7","input_length":5705,"output_length":362,"hash_ids":[3632114,3632115,3632116,3632117,3632118,3632119,3632120,3632121,3632122,3632123,3632124,3632125],"delay":13677.8} +{"session_id":"sess-0d98624e08f7","input_length":1836,"output_length":287,"hash_ids":[3632126,3632127,3632128,3632129],"delay":264.0} +{"session_id":"sess-0d98624e08f7","input_length":990,"output_length":196,"hash_ids":[3632130,3632131],"delay":2375.5} +{"session_id":"sess-0d98624e08f7","input_length":1311,"output_length":964,"hash_ids":[3632132,3632133,3632134],"delay":242.6} +{"session_id":"sess-0d98624e08f7","input_length":4972,"output_length":942,"hash_ids":[3632135,3632136,3632137,3632138,3632139,3632140,3632141,3632142,3632143,3632144],"delay":13919.7} +{"session_id":"sess-0d98624e08f7","input_length":1181,"output_length":507,"hash_ids":[3632145,3632146,3632147],"delay":451.1} +{"session_id":"sess-0d98624e08f7","input_length":3771,"output_length":108,"hash_ids":[3632148,3632149,3632150,3632151,3632152,3632153,3632154,3632155],"delay":985.2} +{"session_id":"sess-0d98624e08f7","input_length":968,"output_length":186,"hash_ids":[3632156,3632157],"delay":2521.8} +{"session_id":"sess-0d98624e08f7","input_length":4202,"output_length":230,"hash_ids":[3632158,3632159,3632160,3632161,3632162,3632163,3632164,3632165,3632166],"delay":1410.0} +{"session_id":"sess-0d98624e08f7","input_length":6774,"output_length":48,"hash_ids":[3632167,3632168,3632169,3632170,3632171,3632172,3632173,3632174,3632175,3632176,3632177,3632178,3632179,3632180],"delay":327.1} +{"session_id":"sess-0d98624e08f7","input_length":3766,"output_length":536,"hash_ids":[3632181,3632182,3632183,3632184,3632185,3632186,3632187,3632188],"delay":526.5} +{"session_id":"sess-0d98624e08f7","input_length":1936,"output_length":151,"hash_ids":[3632189,3632190,3632191,3632192],"delay":189.9} +{"session_id":"sess-0d98624e08f7","input_length":1671,"output_length":257,"hash_ids":[3632193,3632194,3632195,3632196],"delay":1839.2} +{"session_id":"sess-0d98624e08f7","input_length":244,"output_length":222,"hash_ids":[3632197],"delay":647.5} +{"session_id":"sess-0d98624e08f7","input_length":2114,"output_length":163,"hash_ids":[3632198,3632199,3632200,3632201,3632202],"delay":364.4} +{"session_id":"sess-0d98624e08f7","input_length":188,"output_length":189,"hash_ids":[3632203],"delay":560.9} +{"session_id":"sess-0d98624e08f7","input_length":1746,"output_length":1174,"hash_ids":[3632204,3632205,3632206,3632207],"delay":216.8} +{"session_id":"sess-0d98624e08f7","input_length":2534,"output_length":109,"hash_ids":[3632208,3632209,3632210,3632211,3632212],"delay":123.8} +{"session_id":"sess-6c7ac89f1425","input_length":54905,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3636063,3636064,3636065,3636066,3636067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6c7ac89f1425","input_length":5355,"output_length":1843,"hash_ids":[3636068,3636069,3636070,3636071,3636072,3636073,3636074,3636075,3636076,3636077,3636078],"delay":285.8} +{"session_id":"sess-6c7ac89f1425","input_length":3720,"output_length":84,"hash_ids":[3636079,3636080,3636081,3636082,3636083,3636084,3636085,3636086],"delay":516.2} +{"session_id":"sess-6c7ac89f1425","input_length":4453,"output_length":159,"hash_ids":[3636087,3636088,3636089,3636090,3636091,3636092,3636093,3636094,3636095],"delay":1297.8} +{"session_id":"sess-6c7ac89f1425","input_length":3526,"output_length":70,"hash_ids":[3636096,3636097,3636098,3636099,3636100,3636101,3636102],"delay":3232.9} +{"session_id":"sess-6c7ac89f1425","input_length":747,"output_length":77,"hash_ids":[3636103,3636104],"delay":439.7} +{"session_id":"sess-6c7ac89f1425","input_length":1509,"output_length":268,"hash_ids":[3636105,3636106,3636107],"delay":55982.3} +{"session_id":"sess-6c7ac89f1425","input_length":481,"output_length":171,"hash_ids":[3636108],"delay":326.3} +{"session_id":"sess-6c7ac89f1425","input_length":270,"output_length":823,"hash_ids":[3636109],"delay":26166.0} +{"session_id":"sess-6c7ac89f1425","input_length":1616,"output_length":783,"hash_ids":[3636110,3636111,3636112,3636113],"delay":633.3} +{"session_id":"sess-6c7ac89f1425","input_length":809,"output_length":197,"hash_ids":[3636114,3636115],"delay":251.1} +{"session_id":"sess-6c7ac89f1425","input_length":7344,"output_length":288,"hash_ids":[3636116,3636117,3636118,3636119,3636120,3636121,3636122,3636123,3636124,3636125,3636126,3636127,3636128,3636129,3636130],"delay":846.5} +{"session_id":"sess-6c7ac89f1425","input_length":949,"output_length":240,"hash_ids":[3636131,3636132],"delay":410.7} +{"session_id":"sess-6c7ac89f1425","input_length":3721,"output_length":77,"hash_ids":[3636133,3636134,3636135,3636136,3636137,3636138,3636139,3636140],"delay":557.4} +{"session_id":"sess-6c7ac89f1425","input_length":6656,"output_length":116,"hash_ids":[3636141,3636142,3636143,3636144,3636145,3636146,3636147,3636148,3636149,3636150,3636151,3636152,3636153],"delay":447.7} +{"session_id":"sess-6c7ac89f1425","input_length":1189,"output_length":94,"hash_ids":[3636154,3636155,3636156],"delay":350.3} +{"session_id":"sess-6c7ac89f1425","input_length":4182,"output_length":203,"hash_ids":[3636157,3636158,3636159,3636160,3636161,3636162,3636163,3636164,3636165],"delay":11777.4} +{"session_id":"sess-6c7ac89f1425","input_length":652,"output_length":181,"hash_ids":[3636166,3636167],"delay":2337.5} +{"session_id":"sess-6c7ac89f1425","input_length":1429,"output_length":92,"hash_ids":[3636168,3636169,3636170],"delay":1188.9} +{"session_id":"sess-6c7ac89f1425","input_length":2677,"output_length":242,"hash_ids":[3636171,3636172,3636173,3636174,3636175,3636176],"delay":1096.0} +{"session_id":"sess-6c7ac89f1425","input_length":4610,"output_length":1859,"hash_ids":[3636177,3636178,3636179,3636180,3636181,3636182,3636183,3636184,3636185,3636186],"delay":744.4} +{"session_id":"sess-6c7ac89f1425","input_length":3267,"output_length":1635,"hash_ids":[3636187,3636188,3636189,3636190,3636191,3636192,3636193],"delay":268.8} +{"session_id":"sess-6c7ac89f1425","input_length":820,"output_length":30,"hash_ids":[3636194,3636195],"delay":1733.2} +{"session_id":"sess-2cdb65d94d4d","input_length":62480,"output_length":375,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,3640063,3640064,3640065,3640066,3640067,3640068,3640069,3640070,3640071,3640072,3640073,3640074,3640075,3640076,3640077,3640078,3640079,3640080,3640081,3640082],"timestamp":0.0,"group_id":7} +{"session_id":"sess-2cdb65d94d4d","input_length":1588,"output_length":99,"hash_ids":[3640083,3640084,3640085,3640086],"delay":1617.6} +{"session_id":"sess-2cdb65d94d4d","input_length":8905,"output_length":601,"hash_ids":[3640087,3640088,3640089,3640090,3640091,3640092,3640093,3640094,3640095,3640096,3640097,3640098,3640099,3640100,3640101,3640102,3640103,3640104],"delay":2092.8} +{"session_id":"sess-2cdb65d94d4d","input_length":6798,"output_length":349,"hash_ids":[3640105,3640106,3640107,3640108,3640109,3640110,3640111,3640112,3640113,3640114,3640115,3640116,3640117,3640118],"delay":5090.1} +{"session_id":"sess-2cdb65d94d4d","input_length":3131,"output_length":242,"hash_ids":[3640119,3640120,3640121,3640122,3640123,3640124,3640125],"delay":2312.0} +{"session_id":"sess-2cdb65d94d4d","input_length":1920,"output_length":77,"hash_ids":[3640126,3640127,3640128,3640129],"delay":850.2} +{"session_id":"sess-2cdb65d94d4d","input_length":1682,"output_length":260,"hash_ids":[3640130,3640131,3640132,3640133],"delay":668.9} +{"session_id":"sess-504d390686d8","input_length":55121,"output_length":239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,3644063,3644064,3644065,3644066,3644067],"timestamp":0.0,"group_id":21} +{"session_id":"sess-504d390686d8","input_length":1114,"output_length":109,"hash_ids":[3644068,3644069,3644070],"delay":728.5} +{"session_id":"sess-504d390686d8","input_length":3082,"output_length":154,"hash_ids":[3644071,3644072,3644073,3644074,3644075,3644076,3644077],"delay":447.7} +{"session_id":"sess-504d390686d8","input_length":1817,"output_length":495,"hash_ids":[3644078,3644079,3644080,3644081],"delay":572.7} +{"session_id":"sess-504d390686d8","input_length":1510,"output_length":528,"hash_ids":[3644082,3644083,3644084],"delay":1076.5} +{"session_id":"sess-504d390686d8","input_length":6913,"output_length":579,"hash_ids":[3644085,3644086,3644087,3644088,3644089,3644090,3644091,3644092,3644093,3644094,3644095,3644096,3644097,3644098],"delay":2279.7} +{"session_id":"sess-504d390686d8","input_length":725,"output_length":526,"hash_ids":[3644099,3644100],"delay":1100.6} +{"session_id":"sess-504d390686d8","input_length":701,"output_length":30,"hash_ids":[3644101,3644102],"delay":1447.2} +{"session_id":"sess-504d390686d8","input_length":779,"output_length":319,"hash_ids":[3644103,3644104],"delay":453.8} +{"session_id":"sess-504d390686d8","input_length":852,"output_length":343,"hash_ids":[3644105,3644106],"delay":1181.6} +{"session_id":"sess-504d390686d8","input_length":8226,"output_length":146,"hash_ids":[3644107,3644108,3644109,3644110,3644111,3644112,3644113,3644114,3644115,3644116,3644117,3644118,3644119,3644120,3644121,3644122,3644123],"delay":4819.9} +{"session_id":"sess-504d390686d8","input_length":2154,"output_length":53,"hash_ids":[3644124,3644125,3644126,3644127,3644128],"delay":5856.9} +{"session_id":"sess-504d390686d8","input_length":674,"output_length":442,"hash_ids":[3644129,3644130],"delay":531.8} +{"session_id":"sess-504d390686d8","input_length":5035,"output_length":1347,"hash_ids":[3644131,3644132,3644133,3644134,3644135,3644136,3644137,3644138,3644139,3644140],"delay":434.3} +{"session_id":"sess-f6a20b67acba","input_length":69249,"output_length":639,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3648063,3648064,3648065,3648066,3648067,3648068,3648069,3648070,3648071,3648072,3648073,3648074,3648075,3648076,3648077,3648078,3648079,3648080,3648081,3648082,3648083,3648084,3648085,3648086,3648087,3648088,3648089,3648090,3648091,3648092,3648093,3648094,3648095],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f6a20b67acba","input_length":2015,"output_length":483,"hash_ids":[3648096,3648097,3648098,3648099],"delay":1111.6} +{"session_id":"sess-f6a20b67acba","input_length":1680,"output_length":193,"hash_ids":[3648100,3648101,3648102,3648103],"delay":2750.3} +{"session_id":"sess-f6a20b67acba","input_length":1063,"output_length":78,"hash_ids":[3648104,3648105,3648106],"delay":14100.0} +{"session_id":"sess-f6a20b67acba","input_length":991,"output_length":128,"hash_ids":[3648107,3648108],"delay":6028.8} +{"session_id":"sess-f6a20b67acba","input_length":701,"output_length":397,"hash_ids":[3648109,3648110],"delay":866.0} +{"session_id":"sess-f6a20b67acba","input_length":2499,"output_length":364,"hash_ids":[3648111,3648112,3648113,3648114,3648115],"delay":1909.8} +{"session_id":"sess-f6a20b67acba","input_length":445,"output_length":179,"hash_ids":[3648116],"delay":4123.3} +{"session_id":"sess-f6a20b67acba","input_length":1476,"output_length":1728,"hash_ids":[3648117,3648118,3648119],"delay":11035.6} +{"session_id":"sess-f6a20b67acba","input_length":9983,"output_length":225,"hash_ids":[3648120,3648121,3648122,3648123,3648124,3648125,3648126,3648127,3648128,3648129,3648130,3648131,3648132,3648133,3648134,3648135,3648136,3648137,3648138,3648139],"delay":2742.4} +{"session_id":"sess-f6a20b67acba","input_length":6158,"output_length":665,"hash_ids":[3648140,3648141,3648142,3648143,3648144,3648145,3648146,3648147,3648148,3648149,3648150,3648151,3648152],"delay":1381.1} +{"session_id":"sess-f6a20b67acba","input_length":897,"output_length":687,"hash_ids":[3648153,3648154],"delay":303.4} +{"session_id":"sess-f6a20b67acba","input_length":7589,"output_length":303,"hash_ids":[3648155,3648156,3648157,3648158,3648159,3648160,3648161,3648162,3648163,3648164,3648165,3648166,3648167,3648168,3648169],"delay":2449.6} +{"session_id":"sess-f6a20b67acba","input_length":285,"output_length":297,"hash_ids":[3648170],"delay":1154.3} +{"session_id":"sess-85a06c26fa0b","input_length":57547,"output_length":808,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3652063,3652064,3652065,3652066,3652067,3652068,3652069,3652070,3652071,3652072],"timestamp":0.0,"group_id":1} +{"session_id":"sess-85a06c26fa0b","input_length":1299,"output_length":64,"hash_ids":[3652073,3652074,3652075],"delay":1809.8} +{"session_id":"sess-85a06c26fa0b","input_length":1893,"output_length":85,"hash_ids":[3652076,3652077,3652078,3652079],"delay":10528.9} +{"session_id":"sess-85a06c26fa0b","input_length":1575,"output_length":484,"hash_ids":[3652080,3652081,3652082,3652083],"delay":543.2} +{"session_id":"sess-85a06c26fa0b","input_length":966,"output_length":177,"hash_ids":[3652084,3652085],"delay":270.8} +{"session_id":"sess-85a06c26fa0b","input_length":4470,"output_length":97,"hash_ids":[3652086,3652087,3652088,3652089,3652090,3652091,3652092,3652093,3652094],"delay":3164.5} +{"session_id":"sess-85a06c26fa0b","input_length":336,"output_length":605,"hash_ids":[3652095],"delay":1698.0} +{"session_id":"sess-85a06c26fa0b","input_length":649,"output_length":554,"hash_ids":[3652096,3652097],"delay":447.0} +{"session_id":"sess-85a06c26fa0b","input_length":2259,"output_length":320,"hash_ids":[3652098,3652099,3652100,3652101,3652102],"delay":684.4} +{"session_id":"sess-85a06c26fa0b","input_length":554,"output_length":506,"hash_ids":[3652103,3652104],"delay":1287.8} +{"session_id":"sess-85a06c26fa0b","input_length":3895,"output_length":1142,"hash_ids":[3652105,3652106,3652107,3652108,3652109,3652110,3652111,3652112],"delay":1213.4} +{"session_id":"sess-85a06c26fa0b","input_length":5834,"output_length":264,"hash_ids":[3652113,3652114,3652115,3652116,3652117,3652118,3652119,3652120,3652121,3652122,3652123,3652124],"delay":51611.1} +{"session_id":"sess-85a06c26fa0b","input_length":5732,"output_length":154,"hash_ids":[3652125,3652126,3652127,3652128,3652129,3652130,3652131,3652132,3652133,3652134,3652135,3652136],"delay":1890.1} +{"session_id":"sess-85a06c26fa0b","input_length":389,"output_length":133,"hash_ids":[3652137],"delay":319.9} +{"session_id":"sess-85a06c26fa0b","input_length":1003,"output_length":174,"hash_ids":[3652138,3652139],"delay":839.8} +{"session_id":"sess-85a06c26fa0b","input_length":3087,"output_length":316,"hash_ids":[3652140,3652141,3652142,3652143,3652144,3652145,3652146],"delay":6316.9} +{"session_id":"sess-85a06c26fa0b","input_length":653,"output_length":2578,"hash_ids":[3652147,3652148],"delay":1171.9} +{"session_id":"sess-85a06c26fa0b","input_length":1827,"output_length":80,"hash_ids":[3652149,3652150,3652151,3652152],"delay":3225.3} +{"session_id":"sess-85a06c26fa0b","input_length":2873,"output_length":293,"hash_ids":[3652153,3652154,3652155,3652156,3652157,3652158],"delay":891.9} +{"session_id":"sess-85a06c26fa0b","input_length":1218,"output_length":282,"hash_ids":[3652159,3652160,3652161],"delay":552.7} +{"session_id":"sess-85a06c26fa0b","input_length":1517,"output_length":286,"hash_ids":[3652162,3652163,3652164],"delay":13333.3} +{"session_id":"sess-85a06c26fa0b","input_length":114,"output_length":329,"hash_ids":[3652165],"delay":824.4} +{"session_id":"sess-85a06c26fa0b","input_length":1469,"output_length":72,"hash_ids":[3652166,3652167,3652168],"delay":692.0} +{"session_id":"sess-85a06c26fa0b","input_length":4960,"output_length":76,"hash_ids":[3652169,3652170,3652171,3652172,3652173,3652174,3652175,3652176,3652177,3652178],"delay":1432.8} +{"session_id":"sess-85a06c26fa0b","input_length":4477,"output_length":185,"hash_ids":[3652179,3652180,3652181,3652182,3652183,3652184,3652185,3652186,3652187],"delay":1114.2} +{"session_id":"sess-85a06c26fa0b","input_length":240,"output_length":95,"hash_ids":[3652188],"delay":272.4} +{"session_id":"sess-85a06c26fa0b","input_length":7084,"output_length":1012,"hash_ids":[3652189,3652190,3652191,3652192,3652193,3652194,3652195,3652196,3652197,3652198,3652199,3652200,3652201,3652202],"delay":254.5} +{"session_id":"sess-85a06c26fa0b","input_length":291,"output_length":117,"hash_ids":[3652203],"delay":217.7} +{"session_id":"sess-a47eb87c0bba","input_length":66303,"output_length":376,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3656063,3656064,3656065,3656066,3656067,3656068,3656069,3656070,3656071,3656072,3656073,3656074,3656075,3656076,3656077,3656078,3656079,3656080,3656081,3656082,3656083,3656084,3656085,3656086,3656087,3656088,3656089],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a47eb87c0bba","input_length":2209,"output_length":330,"hash_ids":[3656090,3656091,3656092,3656093,3656094],"delay":15540.5} +{"session_id":"sess-a47eb87c0bba","input_length":987,"output_length":1043,"hash_ids":[3656095,3656096],"delay":1374.9} +{"session_id":"sess-a47eb87c0bba","input_length":219,"output_length":313,"hash_ids":[3656097],"delay":1088.1} +{"session_id":"sess-f6749925824e","input_length":69098,"output_length":226,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3660063,3660064,3660065,3660066,3660067,3660068,3660069,3660070,3660071,3660072,3660073,3660074,3660075,3660076,3660077,3660078,3660079,3660080,3660081,3660082,3660083,3660084,3660085,3660086,3660087,3660088,3660089,3660090,3660091,3660092,3660093,3660094],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f6749925824e","input_length":220,"output_length":218,"hash_ids":[3660095],"delay":864.5} +{"session_id":"sess-f6749925824e","input_length":3652,"output_length":852,"hash_ids":[3660096,3660097,3660098,3660099,3660100,3660101,3660102,3660103],"delay":8329.1} +{"session_id":"sess-f6749925824e","input_length":1763,"output_length":1568,"hash_ids":[3660104,3660105,3660106,3660107],"delay":1132.2} +{"session_id":"sess-f6749925824e","input_length":1728,"output_length":180,"hash_ids":[3660108,3660109,3660110,3660111],"delay":51971.7} +{"session_id":"sess-f6749925824e","input_length":3142,"output_length":754,"hash_ids":[3660112,3660113,3660114,3660115,3660116,3660117,3660118],"delay":600.8} +{"session_id":"sess-5661e355eb8c","input_length":55940,"output_length":456,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3664063,3664064,3664065,3664066,3664067,3664068,3664069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5661e355eb8c","input_length":6905,"output_length":2459,"hash_ids":[3664070,3664071,3664072,3664073,3664074,3664075,3664076,3664077,3664078,3664079,3664080,3664081,3664082,3664083],"delay":43006.5} +{"session_id":"sess-5661e355eb8c","input_length":3518,"output_length":1002,"hash_ids":[3664084,3664085,3664086,3664087,3664088,3664089,3664090],"delay":18940.8} +{"session_id":"sess-5661e355eb8c","input_length":789,"output_length":545,"hash_ids":[3664091,3664092],"delay":4207.7} +{"session_id":"sess-5661e355eb8c","input_length":1945,"output_length":363,"hash_ids":[3664093,3664094,3664095,3664096],"delay":3170.7} +{"session_id":"sess-5661e355eb8c","input_length":460,"output_length":61,"hash_ids":[3664097],"delay":348.6} +{"session_id":"sess-5661e355eb8c","input_length":6239,"output_length":192,"hash_ids":[3664098,3664099,3664100,3664101,3664102,3664103,3664104,3664105,3664106,3664107,3664108,3664109,3664110],"delay":749.1} +{"session_id":"sess-5661e355eb8c","input_length":1151,"output_length":63,"hash_ids":[3664111,3664112,3664113],"delay":5306.6} +{"session_id":"sess-5661e355eb8c","input_length":710,"output_length":81,"hash_ids":[3664114,3664115],"delay":243.5} +{"session_id":"sess-5661e355eb8c","input_length":1544,"output_length":317,"hash_ids":[3664116,3664117,3664118,3664119],"delay":5024.6} +{"session_id":"sess-5661e355eb8c","input_length":3966,"output_length":264,"hash_ids":[3664120,3664121,3664122,3664123,3664124,3664125,3664126,3664127],"delay":977.2} +{"session_id":"sess-5661e355eb8c","input_length":1718,"output_length":230,"hash_ids":[3664128,3664129,3664130,3664131],"delay":10214.0} +{"session_id":"sess-5661e355eb8c","input_length":223,"output_length":576,"hash_ids":[3664132],"delay":2564.1} +{"session_id":"sess-5661e355eb8c","input_length":328,"output_length":375,"hash_ids":[3664133],"delay":22505.4} +{"session_id":"sess-5661e355eb8c","input_length":1097,"output_length":914,"hash_ids":[3664134,3664135,3664136],"delay":554.3} +{"session_id":"sess-5661e355eb8c","input_length":1167,"output_length":189,"hash_ids":[3664137,3664138,3664139],"delay":2649.8} +{"session_id":"sess-5661e355eb8c","input_length":606,"output_length":416,"hash_ids":[3664140,3664141],"delay":12028.7} +{"session_id":"sess-5661e355eb8c","input_length":1219,"output_length":72,"hash_ids":[3664142,3664143,3664144],"delay":662.6} +{"session_id":"sess-5661e355eb8c","input_length":382,"output_length":35,"hash_ids":[3664145],"delay":30395.9} +{"session_id":"sess-5661e355eb8c","input_length":1406,"output_length":202,"hash_ids":[3664146,3664147,3664148],"delay":26283.0} +{"session_id":"sess-5661e355eb8c","input_length":1898,"output_length":458,"hash_ids":[3664149,3664150,3664151,3664152],"delay":700.6} +{"session_id":"sess-5661e355eb8c","input_length":9733,"output_length":1703,"hash_ids":[3664153,3664154,3664155,3664156,3664157,3664158,3664159,3664160,3664161,3664162,3664163,3664164,3664165,3664166,3664167,3664168,3664169,3664170,3664171,3664172],"delay":992.7} +{"session_id":"sess-5661e355eb8c","input_length":954,"output_length":355,"hash_ids":[3664173,3664174],"delay":179.9} +{"session_id":"sess-5661e355eb8c","input_length":1217,"output_length":353,"hash_ids":[3664175,3664176,3664177],"delay":510.4} +{"session_id":"sess-5661e355eb8c","input_length":1109,"output_length":62,"hash_ids":[3664178,3664179,3664180],"delay":370.4} +{"session_id":"sess-5661e355eb8c","input_length":538,"output_length":278,"hash_ids":[3664181,3664182],"delay":296.2} +{"session_id":"sess-5661e355eb8c","input_length":907,"output_length":596,"hash_ids":[3664183,3664184],"delay":543.4} +{"session_id":"sess-5661e355eb8c","input_length":1300,"output_length":967,"hash_ids":[3664185,3664186,3664187],"delay":2477.7} +{"session_id":"sess-5661e355eb8c","input_length":7525,"output_length":1107,"hash_ids":[3664188,3664189,3664190,3664191,3664192,3664193,3664194,3664195,3664196,3664197,3664198,3664199,3664200,3664201,3664202],"delay":438.5} +{"session_id":"sess-520c170181d0","input_length":53980,"output_length":239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3668063,3668064,3668065],"timestamp":0.0,"group_id":2} +{"session_id":"sess-520c170181d0","input_length":1425,"output_length":2722,"hash_ids":[3668066,3668067,3668068],"delay":3381.7} +{"session_id":"sess-520c170181d0","input_length":598,"output_length":585,"hash_ids":[3668069,3668070],"delay":656.6} +{"session_id":"sess-520c170181d0","input_length":5552,"output_length":298,"hash_ids":[3668071,3668072,3668073,3668074,3668075,3668076,3668077,3668078,3668079,3668080,3668081],"delay":13666.7} +{"session_id":"sess-520c170181d0","input_length":4414,"output_length":162,"hash_ids":[3668082,3668083,3668084,3668085,3668086,3668087,3668088,3668089,3668090],"delay":669.1} +{"session_id":"sess-520c170181d0","input_length":427,"output_length":164,"hash_ids":[3668091],"delay":10838.2} +{"session_id":"sess-520c170181d0","input_length":872,"output_length":264,"hash_ids":[3668092,3668093],"delay":914.5} +{"session_id":"sess-520c170181d0","input_length":3439,"output_length":257,"hash_ids":[3668094,3668095,3668096,3668097,3668098,3668099,3668100],"delay":29140.5} +{"session_id":"sess-520c170181d0","input_length":2002,"output_length":39,"hash_ids":[3668101,3668102,3668103,3668104],"delay":6463.6} +{"session_id":"sess-520c170181d0","input_length":2746,"output_length":46,"hash_ids":[3668105,3668106,3668107,3668108,3668109,3668110],"delay":8116.6} +{"session_id":"sess-520c170181d0","input_length":1556,"output_length":226,"hash_ids":[3668111,3668112,3668113,3668114],"delay":1090.3} +{"session_id":"sess-520c170181d0","input_length":698,"output_length":1140,"hash_ids":[3668115,3668116],"delay":1070.6} +{"session_id":"sess-520c170181d0","input_length":323,"output_length":92,"hash_ids":[3668117],"delay":718.0} +{"session_id":"sess-520c170181d0","input_length":932,"output_length":503,"hash_ids":[3668118,3668119],"delay":933.9} +{"session_id":"sess-520c170181d0","input_length":7769,"output_length":1354,"hash_ids":[3668120,3668121,3668122,3668123,3668124,3668125,3668126,3668127,3668128,3668129,3668130,3668131,3668132,3668133,3668134,3668135],"delay":1362.1} +{"session_id":"sess-520c170181d0","input_length":1870,"output_length":389,"hash_ids":[3668136,3668137,3668138,3668139],"delay":1925.9} +{"session_id":"sess-520c170181d0","input_length":5872,"output_length":613,"hash_ids":[3668140,3668141,3668142,3668143,3668144,3668145,3668146,3668147,3668148,3668149,3668150,3668151],"delay":815.3} +{"session_id":"sess-520c170181d0","input_length":7208,"output_length":30,"hash_ids":[3668152,3668153,3668154,3668155,3668156,3668157,3668158,3668159,3668160,3668161,3668162,3668163,3668164,3668165,3668166],"delay":668.2} +{"session_id":"sess-520c170181d0","input_length":369,"output_length":619,"hash_ids":[3668167],"delay":799.8} +{"session_id":"sess-520c170181d0","input_length":1050,"output_length":1237,"hash_ids":[3668168,3668169,3668170],"delay":10958.0} +{"session_id":"sess-520c170181d0","input_length":3420,"output_length":1389,"hash_ids":[3668171,3668172,3668173,3668174,3668175,3668176,3668177],"delay":754.6} +{"session_id":"sess-520c170181d0","input_length":1511,"output_length":1088,"hash_ids":[3668178,3668179,3668180],"delay":589.9} +{"session_id":"sess-520c170181d0","input_length":1437,"output_length":1046,"hash_ids":[3668181,3668182,3668183],"delay":689.8} +{"session_id":"sess-520c170181d0","input_length":1880,"output_length":1375,"hash_ids":[3668184,3668185,3668186,3668187],"delay":321.7} +{"session_id":"sess-520c170181d0","input_length":502,"output_length":284,"hash_ids":[3668188],"delay":9898.0} +{"session_id":"sess-520c170181d0","input_length":1406,"output_length":2980,"hash_ids":[3668189,3668190,3668191],"delay":704.2} +{"session_id":"sess-6ffa4bb12a17","input_length":62523,"output_length":552,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,3672063,3672064,3672065,3672066,3672067,3672068,3672069,3672070,3672071,3672072,3672073,3672074,3672075,3672076,3672077,3672078,3672079,3672080,3672081,3672082],"timestamp":0.0,"group_id":7} +{"session_id":"sess-6ffa4bb12a17","input_length":1334,"output_length":45,"hash_ids":[3672083,3672084,3672085],"delay":473.3} +{"session_id":"sess-6ffa4bb12a17","input_length":2651,"output_length":288,"hash_ids":[3672086,3672087,3672088,3672089,3672090,3672091],"delay":32372.3} +{"session_id":"sess-6ffa4bb12a17","input_length":4127,"output_length":286,"hash_ids":[3672092,3672093,3672094,3672095,3672096,3672097,3672098,3672099,3672100],"delay":6073.5} +{"session_id":"sess-09c4e0b036fb","input_length":55386,"output_length":450,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,3676063,3676064,3676065,3676066,3676067,3676068],"timestamp":0.0,"group_id":8} +{"session_id":"sess-eaed9f4d451c","input_length":54718,"output_length":209,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,3680063,3680064,3680065,3680066],"timestamp":0.0,"group_id":11} +{"session_id":"sess-eaed9f4d451c","input_length":696,"output_length":824,"hash_ids":[3680067,3680068],"delay":13736.7} +{"session_id":"sess-eaed9f4d451c","input_length":1976,"output_length":362,"hash_ids":[3680069,3680070,3680071,3680072],"delay":720.0} +{"session_id":"sess-eaed9f4d451c","input_length":508,"output_length":1309,"hash_ids":[3680073],"delay":15739.8} +{"session_id":"sess-eaed9f4d451c","input_length":1545,"output_length":468,"hash_ids":[3680074,3680075,3680076,3680077],"delay":951.5} +{"session_id":"sess-eaed9f4d451c","input_length":3957,"output_length":103,"hash_ids":[3680078,3680079,3680080,3680081,3680082,3680083,3680084,3680085],"delay":42719.5} +{"session_id":"sess-eaed9f4d451c","input_length":3562,"output_length":284,"hash_ids":[3680086,3680087,3680088,3680089,3680090,3680091,3680092],"delay":337.1} +{"session_id":"sess-eaed9f4d451c","input_length":4167,"output_length":1275,"hash_ids":[3680093,3680094,3680095,3680096,3680097,3680098,3680099,3680100,3680101],"delay":1159.5} +{"session_id":"sess-eaed9f4d451c","input_length":944,"output_length":334,"hash_ids":[3680102,3680103],"delay":589.9} +{"session_id":"sess-eaed9f4d451c","input_length":2110,"output_length":156,"hash_ids":[3680104,3680105,3680106,3680107,3680108],"delay":931.3} +{"session_id":"sess-eaed9f4d451c","input_length":757,"output_length":201,"hash_ids":[3680109,3680110],"delay":342.9} +{"session_id":"sess-eaed9f4d451c","input_length":2846,"output_length":176,"hash_ids":[3680111,3680112,3680113,3680114,3680115,3680116],"delay":2033.5} +{"session_id":"sess-eaed9f4d451c","input_length":2947,"output_length":1181,"hash_ids":[3680117,3680118,3680119,3680120,3680121,3680122],"delay":420.4} +{"session_id":"sess-eaed9f4d451c","input_length":6480,"output_length":766,"hash_ids":[3680123,3680124,3680125,3680126,3680127,3680128,3680129,3680130,3680131,3680132,3680133,3680134,3680135],"delay":22995.0} +{"session_id":"sess-eaed9f4d451c","input_length":2562,"output_length":129,"hash_ids":[3680136,3680137,3680138,3680139,3680140,3680141],"delay":627.6} +{"session_id":"sess-eaed9f4d451c","input_length":2598,"output_length":246,"hash_ids":[3680142,3680143,3680144,3680145,3680146,3680147],"delay":11903.7} +{"session_id":"sess-eaed9f4d451c","input_length":2207,"output_length":493,"hash_ids":[3680148,3680149,3680150,3680151,3680152],"delay":2196.5} +{"session_id":"sess-eaed9f4d451c","input_length":5937,"output_length":667,"hash_ids":[3680153,3680154,3680155,3680156,3680157,3680158,3680159,3680160,3680161,3680162,3680163,3680164],"delay":21741.1} +{"session_id":"sess-eaed9f4d451c","input_length":544,"output_length":863,"hash_ids":[3680165,3680166],"delay":16381.0} +{"session_id":"sess-eaed9f4d451c","input_length":2478,"output_length":974,"hash_ids":[3680167,3680168,3680169,3680170,3680171],"delay":750.8} +{"session_id":"sess-eaed9f4d451c","input_length":2699,"output_length":467,"hash_ids":[3680172,3680173,3680174,3680175,3680176,3680177],"delay":5860.3} +{"session_id":"sess-eaed9f4d451c","input_length":6323,"output_length":106,"hash_ids":[3680178,3680179,3680180,3680181,3680182,3680183,3680184,3680185,3680186,3680187,3680188,3680189,3680190],"delay":3725.7} +{"session_id":"sess-eaed9f4d451c","input_length":97,"output_length":142,"hash_ids":[3680191],"delay":811.6} +{"session_id":"sess-eaed9f4d451c","input_length":2023,"output_length":673,"hash_ids":[3680192,3680193,3680194,3680195],"delay":125.3} +{"session_id":"sess-de2c1e0154af","input_length":62592,"output_length":171,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3684063,3684064,3684065,3684066,3684067,3684068,3684069,3684070,3684071,3684072,3684073,3684074,3684075,3684076,3684077,3684078,3684079,3684080,3684081,3684082],"timestamp":0.0,"group_id":1} +{"session_id":"sess-de2c1e0154af","input_length":1712,"output_length":158,"hash_ids":[3684083,3684084,3684085,3684086],"delay":11252.0} +{"session_id":"sess-de2c1e0154af","input_length":4283,"output_length":287,"hash_ids":[3684087,3684088,3684089,3684090,3684091,3684092,3684093,3684094,3684095],"delay":901.3} +{"session_id":"sess-de2c1e0154af","input_length":1574,"output_length":167,"hash_ids":[3684096,3684097,3684098,3684099],"delay":3371.2} +{"session_id":"sess-de2c1e0154af","input_length":411,"output_length":1000,"hash_ids":[3684100],"delay":4425.1} +{"session_id":"sess-de2c1e0154af","input_length":2494,"output_length":139,"hash_ids":[3684101,3684102,3684103,3684104,3684105],"delay":2644.2} +{"session_id":"sess-de2c1e0154af","input_length":511,"output_length":80,"hash_ids":[3684106],"delay":32367.4} +{"session_id":"sess-de2c1e0154af","input_length":3436,"output_length":68,"hash_ids":[3684107,3684108,3684109,3684110,3684111,3684112,3684113],"delay":550.4} +{"session_id":"sess-de2c1e0154af","input_length":2833,"output_length":397,"hash_ids":[3684114,3684115,3684116,3684117,3684118,3684119],"delay":1491.0} +{"session_id":"sess-de2c1e0154af","input_length":2691,"output_length":254,"hash_ids":[3684120,3684121,3684122,3684123,3684124,3684125],"delay":7000.2} +{"session_id":"sess-de2c1e0154af","input_length":949,"output_length":1544,"hash_ids":[3684126,3684127],"delay":260.3} +{"session_id":"sess-de2c1e0154af","input_length":425,"output_length":204,"hash_ids":[3684128],"delay":587.3} +{"session_id":"sess-de2c1e0154af","input_length":2049,"output_length":174,"hash_ids":[3684129,3684130,3684131,3684132,3684133],"delay":1058.0} +{"session_id":"sess-de2c1e0154af","input_length":2848,"output_length":374,"hash_ids":[3684134,3684135,3684136,3684137,3684138,3684139],"delay":387.9} +{"session_id":"sess-de2c1e0154af","input_length":8493,"output_length":250,"hash_ids":[3684140,3684141,3684142,3684143,3684144,3684145,3684146,3684147,3684148,3684149,3684150,3684151,3684152,3684153,3684154,3684155,3684156],"delay":13592.0} +{"session_id":"sess-de2c1e0154af","input_length":1288,"output_length":101,"hash_ids":[3684157,3684158,3684159],"delay":979.3} +{"session_id":"sess-de2c1e0154af","input_length":7690,"output_length":612,"hash_ids":[3684160,3684161,3684162,3684163,3684164,3684165,3684166,3684167,3684168,3684169,3684170,3684171,3684172,3684173,3684174,3684175],"delay":2473.6} +{"session_id":"sess-de2c1e0154af","input_length":3054,"output_length":318,"hash_ids":[3684176,3684177,3684178,3684179,3684180,3684181],"delay":1329.0} +{"session_id":"sess-de2c1e0154af","input_length":664,"output_length":96,"hash_ids":[3684182,3684183],"delay":4834.8} +{"session_id":"sess-de2c1e0154af","input_length":2581,"output_length":101,"hash_ids":[3684184,3684185,3684186,3684187,3684188,3684189],"delay":427.2} +{"session_id":"sess-de2c1e0154af","input_length":1306,"output_length":73,"hash_ids":[3684190,3684191,3684192],"delay":181.8} +{"session_id":"sess-de2c1e0154af","input_length":631,"output_length":214,"hash_ids":[3684193,3684194],"delay":1284.7} +{"session_id":"sess-de2c1e0154af","input_length":1353,"output_length":47,"hash_ids":[3684195,3684196,3684197],"delay":17014.5} +{"session_id":"sess-de2c1e0154af","input_length":422,"output_length":243,"hash_ids":[3684198],"delay":1998.8} +{"session_id":"sess-de2c1e0154af","input_length":582,"output_length":251,"hash_ids":[3684199,3684200],"delay":919.6} +{"session_id":"sess-de2c1e0154af","input_length":1487,"output_length":796,"hash_ids":[3684201,3684202,3684203],"delay":950.6} +{"session_id":"sess-de2c1e0154af","input_length":1245,"output_length":47,"hash_ids":[3684204,3684205,3684206],"delay":409.3} +{"session_id":"sess-de2c1e0154af","input_length":591,"output_length":199,"hash_ids":[3684207,3684208],"delay":1769.8} +{"session_id":"sess-de2c1e0154af","input_length":435,"output_length":382,"hash_ids":[3684209],"delay":734.0} +{"session_id":"sess-0572481498ed","input_length":52908,"output_length":208,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3688063],"timestamp":0.0,"group_id":3} +{"session_id":"sess-0572481498ed","input_length":762,"output_length":413,"hash_ids":[3688064,3688065],"delay":15938.9} +{"session_id":"sess-0572481498ed","input_length":2758,"output_length":106,"hash_ids":[3688066,3688067,3688068,3688069,3688070,3688071],"delay":73487.4} +{"session_id":"sess-0572481498ed","input_length":2232,"output_length":419,"hash_ids":[3688072,3688073,3688074,3688075,3688076],"delay":472.6} +{"session_id":"sess-0572481498ed","input_length":2651,"output_length":231,"hash_ids":[3688077,3688078,3688079,3688080,3688081,3688082],"delay":254.8} +{"session_id":"sess-0572481498ed","input_length":507,"output_length":85,"hash_ids":[3688083],"delay":1984.7} +{"session_id":"sess-0572481498ed","input_length":859,"output_length":262,"hash_ids":[3688084,3688085],"delay":2056.2} +{"session_id":"sess-0572481498ed","input_length":1377,"output_length":714,"hash_ids":[3688086,3688087,3688088],"delay":1926.0} +{"session_id":"sess-0572481498ed","input_length":1151,"output_length":248,"hash_ids":[3688089,3688090,3688091],"delay":12225.5} +{"session_id":"sess-0572481498ed","input_length":805,"output_length":781,"hash_ids":[3688092,3688093],"delay":1715.1} +{"session_id":"sess-0572481498ed","input_length":2497,"output_length":309,"hash_ids":[3688094,3688095,3688096,3688097,3688098],"delay":365.7} +{"session_id":"sess-0572481498ed","input_length":855,"output_length":115,"hash_ids":[3688099,3688100],"delay":1419.5} +{"session_id":"sess-0572481498ed","input_length":4814,"output_length":43,"hash_ids":[3688101,3688102,3688103,3688104,3688105,3688106,3688107,3688108,3688109,3688110],"delay":1063.2} +{"session_id":"sess-0572481498ed","input_length":1136,"output_length":91,"hash_ids":[3688111,3688112,3688113],"delay":62039.7} +{"session_id":"sess-0572481498ed","input_length":3313,"output_length":1140,"hash_ids":[3688114,3688115,3688116,3688117,3688118,3688119,3688120],"delay":1189.8} +{"session_id":"sess-0572481498ed","input_length":908,"output_length":1293,"hash_ids":[3688121,3688122],"delay":57217.8} +{"session_id":"sess-0572481498ed","input_length":772,"output_length":324,"hash_ids":[3688123,3688124],"delay":7180.1} +{"session_id":"sess-0572481498ed","input_length":1477,"output_length":952,"hash_ids":[3688125,3688126,3688127],"delay":7524.4} +{"session_id":"sess-0572481498ed","input_length":1126,"output_length":148,"hash_ids":[3688128,3688129,3688130],"delay":550.5} +{"session_id":"sess-0572481498ed","input_length":567,"output_length":128,"hash_ids":[3688131,3688132],"delay":598.4} +{"session_id":"sess-0572481498ed","input_length":607,"output_length":341,"hash_ids":[3688133,3688134],"delay":617.5} +{"session_id":"sess-0572481498ed","input_length":1022,"output_length":51,"hash_ids":[3688135,3688136],"delay":8490.1} +{"session_id":"sess-21a8fa063d84","input_length":53862,"output_length":622,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,3692063,3692064,3692065],"timestamp":0.0,"group_id":44} +{"session_id":"sess-21a8fa063d84","input_length":3019,"output_length":182,"hash_ids":[3692066,3692067,3692068,3692069,3692070,3692071],"delay":1781.4} +{"session_id":"sess-21a8fa063d84","input_length":1969,"output_length":324,"hash_ids":[3692072,3692073,3692074,3692075],"delay":2311.7} +{"session_id":"sess-21a8fa063d84","input_length":1336,"output_length":52,"hash_ids":[3692076,3692077,3692078],"delay":2808.7} +{"session_id":"sess-21a8fa063d84","input_length":340,"output_length":223,"hash_ids":[3692079],"delay":2388.9} +{"session_id":"sess-21a8fa063d84","input_length":582,"output_length":368,"hash_ids":[3692080,3692081],"delay":317.5} +{"session_id":"sess-21a8fa063d84","input_length":5953,"output_length":841,"hash_ids":[3692082,3692083,3692084,3692085,3692086,3692087,3692088,3692089,3692090,3692091,3692092,3692093],"delay":1956.9} +{"session_id":"sess-21a8fa063d84","input_length":1611,"output_length":30,"hash_ids":[3692094,3692095,3692096,3692097],"delay":2174.3} +{"session_id":"sess-21a8fa063d84","input_length":881,"output_length":44,"hash_ids":[3692098,3692099],"delay":3647.2} +{"session_id":"sess-21a8fa063d84","input_length":398,"output_length":98,"hash_ids":[3692100],"delay":1272.0} +{"session_id":"sess-21a8fa063d84","input_length":735,"output_length":442,"hash_ids":[3692101,3692102],"delay":412.5} +{"session_id":"sess-21a8fa063d84","input_length":4223,"output_length":108,"hash_ids":[3692103,3692104,3692105,3692106,3692107,3692108,3692109,3692110,3692111],"delay":3016.3} +{"session_id":"sess-21a8fa063d84","input_length":177,"output_length":209,"hash_ids":[3692112],"delay":611.4} +{"session_id":"sess-21a8fa063d84","input_length":5067,"output_length":99,"hash_ids":[3692113,3692114,3692115,3692116,3692117,3692118,3692119,3692120,3692121,3692122],"delay":1145.0} +{"session_id":"sess-21a8fa063d84","input_length":729,"output_length":695,"hash_ids":[3692123,3692124],"delay":47759.3} +{"session_id":"sess-6a1b8216f7aa","input_length":63116,"output_length":487,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3696063,3696064,3696065,3696066,3696067,3696068,3696069,3696070,3696071,3696072,3696073,3696074,3696075,3696076,3696077,3696078,3696079,3696080,3696081,3696082,3696083],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6a1b8216f7aa","input_length":131,"output_length":2635,"hash_ids":[3696084],"delay":1938.8} +{"session_id":"sess-6a1b8216f7aa","input_length":1811,"output_length":101,"hash_ids":[3696085,3696086,3696087,3696088],"delay":550.5} +{"session_id":"sess-6a1b8216f7aa","input_length":369,"output_length":177,"hash_ids":[3696089],"delay":1398.9} +{"session_id":"sess-6a1b8216f7aa","input_length":2812,"output_length":247,"hash_ids":[3696090,3696091,3696092,3696093,3696094,3696095],"delay":524.7} +{"session_id":"sess-6a1b8216f7aa","input_length":946,"output_length":281,"hash_ids":[3696096,3696097],"delay":727.4} +{"session_id":"sess-6a1b8216f7aa","input_length":1402,"output_length":269,"hash_ids":[3696098,3696099,3696100],"delay":530.5} +{"session_id":"sess-6a1b8216f7aa","input_length":1079,"output_length":346,"hash_ids":[3696101,3696102,3696103],"delay":13248.8} +{"session_id":"sess-6a1b8216f7aa","input_length":360,"output_length":431,"hash_ids":[3696104],"delay":2529.9} +{"session_id":"sess-6a1b8216f7aa","input_length":2060,"output_length":246,"hash_ids":[3696105,3696106,3696107,3696108,3696109],"delay":10594.1} +{"session_id":"sess-6a1b8216f7aa","input_length":116,"output_length":378,"hash_ids":[3696110],"delay":2253.1} +{"session_id":"sess-6a1b8216f7aa","input_length":1991,"output_length":182,"hash_ids":[3696111,3696112,3696113,3696114],"delay":973.6} +{"session_id":"sess-6a1b8216f7aa","input_length":1026,"output_length":215,"hash_ids":[3696115,3696116,3696117],"delay":12476.2} +{"session_id":"sess-6a1b8216f7aa","input_length":186,"output_length":455,"hash_ids":[3696118],"delay":707.2} +{"session_id":"sess-6a1b8216f7aa","input_length":2157,"output_length":120,"hash_ids":[3696119,3696120,3696121,3696122,3696123],"delay":297.9} +{"session_id":"sess-6a1b8216f7aa","input_length":1457,"output_length":104,"hash_ids":[3696124,3696125,3696126],"delay":921.0} +{"session_id":"sess-6a1b8216f7aa","input_length":496,"output_length":979,"hash_ids":[3696127],"delay":564.6} +{"session_id":"sess-6a1b8216f7aa","input_length":314,"output_length":160,"hash_ids":[3696128],"delay":11013.8} +{"session_id":"sess-6a1b8216f7aa","input_length":2144,"output_length":918,"hash_ids":[3696129,3696130,3696131,3696132,3696133],"delay":2190.8} +{"session_id":"sess-6a1b8216f7aa","input_length":4028,"output_length":95,"hash_ids":[3696134,3696135,3696136,3696137,3696138,3696139,3696140,3696141],"delay":16741.7} +{"session_id":"sess-6a1b8216f7aa","input_length":3596,"output_length":139,"hash_ids":[3696142,3696143,3696144,3696145,3696146,3696147,3696148,3696149],"delay":172.4} +{"session_id":"sess-6a1b8216f7aa","input_length":3312,"output_length":400,"hash_ids":[3696150,3696151,3696152,3696153,3696154,3696155,3696156],"delay":181.2} +{"session_id":"sess-6a1b8216f7aa","input_length":1205,"output_length":234,"hash_ids":[3696157,3696158,3696159],"delay":2381.3} +{"session_id":"sess-6a1b8216f7aa","input_length":4528,"output_length":784,"hash_ids":[3696160,3696161,3696162,3696163,3696164,3696165,3696166,3696167,3696168],"delay":967.7} +{"session_id":"sess-6a1b8216f7aa","input_length":6590,"output_length":290,"hash_ids":[3696169,3696170,3696171,3696172,3696173,3696174,3696175,3696176,3696177,3696178,3696179,3696180,3696181],"delay":5597.5} +{"session_id":"sess-6a1b8216f7aa","input_length":1999,"output_length":489,"hash_ids":[3696182,3696183,3696184,3696185],"delay":1177.6} +{"session_id":"sess-6a1b8216f7aa","input_length":890,"output_length":96,"hash_ids":[3696186,3696187],"delay":591.3} +{"session_id":"sess-6a1b8216f7aa","input_length":3581,"output_length":175,"hash_ids":[3696188,3696189,3696190,3696191,3696192,3696193,3696194],"delay":177.1} +{"session_id":"sess-5f80277eab7a","input_length":53411,"output_length":241,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3700063,3700064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5f80277eab7a","input_length":646,"output_length":477,"hash_ids":[3700065,3700066],"delay":789.2} +{"session_id":"sess-5f80277eab7a","input_length":4409,"output_length":792,"hash_ids":[3700067,3700068,3700069,3700070,3700071,3700072,3700073,3700074,3700075],"delay":611.6} +{"session_id":"sess-5f80277eab7a","input_length":2155,"output_length":808,"hash_ids":[3700076,3700077,3700078,3700079,3700080],"delay":55742.9} +{"session_id":"sess-5f80277eab7a","input_length":700,"output_length":383,"hash_ids":[3700081,3700082],"delay":300.3} +{"session_id":"sess-5f80277eab7a","input_length":610,"output_length":183,"hash_ids":[3700083,3700084],"delay":2221.8} +{"session_id":"sess-5f80277eab7a","input_length":1831,"output_length":393,"hash_ids":[3700085,3700086,3700087,3700088],"delay":37763.3} +{"session_id":"sess-5f80277eab7a","input_length":192,"output_length":524,"hash_ids":[3700089],"delay":1690.2} +{"session_id":"sess-5f80277eab7a","input_length":1292,"output_length":701,"hash_ids":[3700090,3700091,3700092],"delay":14469.5} +{"session_id":"sess-5f80277eab7a","input_length":5642,"output_length":293,"hash_ids":[3700093,3700094,3700095,3700096,3700097,3700098,3700099,3700100,3700101,3700102,3700103,3700104],"delay":645.5} +{"session_id":"sess-5f80277eab7a","input_length":5663,"output_length":711,"hash_ids":[3700105,3700106,3700107,3700108,3700109,3700110,3700111,3700112,3700113,3700114,3700115,3700116],"delay":504.5} +{"session_id":"sess-5f80277eab7a","input_length":3141,"output_length":350,"hash_ids":[3700117,3700118,3700119,3700120,3700121,3700122,3700123],"delay":2323.6} +{"session_id":"sess-5f80277eab7a","input_length":594,"output_length":1593,"hash_ids":[3700124,3700125],"delay":497.5} +{"session_id":"sess-5f80277eab7a","input_length":2858,"output_length":89,"hash_ids":[3700126,3700127,3700128,3700129,3700130,3700131],"delay":227.3} +{"session_id":"sess-5f80277eab7a","input_length":752,"output_length":548,"hash_ids":[3700132,3700133],"delay":1060.2} +{"session_id":"sess-5f80277eab7a","input_length":2063,"output_length":239,"hash_ids":[3700134,3700135,3700136,3700137,3700138],"delay":3301.7} +{"session_id":"sess-5f80277eab7a","input_length":2289,"output_length":2273,"hash_ids":[3700139,3700140,3700141,3700142,3700143],"delay":78.9} +{"session_id":"sess-5f80277eab7a","input_length":6220,"output_length":38,"hash_ids":[3700144,3700145,3700146,3700147,3700148,3700149,3700150,3700151,3700152,3700153,3700154,3700155,3700156],"delay":246.4} +{"session_id":"sess-5f80277eab7a","input_length":1052,"output_length":40,"hash_ids":[3700157,3700158,3700159],"delay":1635.4} +{"session_id":"sess-5f80277eab7a","input_length":537,"output_length":802,"hash_ids":[3700160,3700161],"delay":655.1} +{"session_id":"sess-5f80277eab7a","input_length":6771,"output_length":322,"hash_ids":[3700162,3700163,3700164,3700165,3700166,3700167,3700168,3700169,3700170,3700171,3700172,3700173,3700174,3700175],"delay":19937.2} +{"session_id":"sess-5f80277eab7a","input_length":849,"output_length":236,"hash_ids":[3700176,3700177],"delay":602.1} +{"session_id":"sess-5f80277eab7a","input_length":3972,"output_length":678,"hash_ids":[3700178,3700179,3700180,3700181,3700182,3700183,3700184,3700185],"delay":137.3} +{"session_id":"sess-5f80277eab7a","input_length":5623,"output_length":1907,"hash_ids":[3700186,3700187,3700188,3700189,3700190,3700191,3700192,3700193,3700194,3700195,3700196],"delay":3922.4} +{"session_id":"sess-5f80277eab7a","input_length":1708,"output_length":1365,"hash_ids":[3700197,3700198,3700199,3700200],"delay":569.2} +{"session_id":"sess-6119d20868a5","input_length":53562,"output_length":65,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3704063,3704064],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6119d20868a5","input_length":960,"output_length":318,"hash_ids":[3704065,3704066],"delay":12522.5} +{"session_id":"sess-6119d20868a5","input_length":5388,"output_length":511,"hash_ids":[3704067,3704068,3704069,3704070,3704071,3704072,3704073,3704074,3704075,3704076,3704077],"delay":43501.2} +{"session_id":"sess-6119d20868a5","input_length":3512,"output_length":164,"hash_ids":[3704078,3704079,3704080,3704081,3704082,3704083,3704084],"delay":403.3} +{"session_id":"sess-6119d20868a5","input_length":4645,"output_length":125,"hash_ids":[3704085,3704086,3704087,3704088,3704089,3704090,3704091,3704092,3704093,3704094],"delay":777.4} +{"session_id":"sess-d42805853da1","input_length":52198,"output_length":183,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d42805853da1","input_length":4981,"output_length":278,"hash_ids":[3704095,3704096,3704097,3704098,3704099,3704100,3704101,3704102,3704103,3704104],"delay":893.1} +{"session_id":"sess-d42805853da1","input_length":2078,"output_length":71,"hash_ids":[3704105,3704106,3704107,3704108,3704109],"delay":875.9} +{"session_id":"sess-d42805853da1","input_length":3534,"output_length":172,"hash_ids":[3704110,3704111,3704112,3704113,3704114,3704115,3704116],"delay":492.3} +{"session_id":"sess-d42805853da1","input_length":3175,"output_length":819,"hash_ids":[3704117,3704118,3704119,3704120,3704121,3704122,3704123],"delay":1283.3} +{"session_id":"sess-8e16f5fa4953","input_length":61747,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,3712063,3712064,3712065,3712066,3712067,3712068,3712069,3712070,3712071,3712072,3712073,3712074,3712075,3712076,3712077,3712078,3712079,3712080],"timestamp":0.0,"group_id":47} +{"session_id":"sess-8e16f5fa4953","input_length":8810,"output_length":400,"hash_ids":[3712081,3712082,3712083,3712084,3712085,3712086,3712087,3712088,3712089,3712090,3712091,3712092,3712093,3712094,3712095,3712096,3712097,3712098],"delay":4293.8} +{"session_id":"sess-8e16f5fa4953","input_length":2496,"output_length":760,"hash_ids":[3712099,3712100,3712101,3712102,3712103],"delay":6751.5} +{"session_id":"sess-8e16f5fa4953","input_length":2727,"output_length":535,"hash_ids":[3712104,3712105,3712106,3712107,3712108,3712109],"delay":2997.9} +{"session_id":"sess-8e16f5fa4953","input_length":4559,"output_length":245,"hash_ids":[3712110,3712111,3712112,3712113,3712114,3712115,3712116,3712117,3712118],"delay":337.6} +{"session_id":"sess-8e16f5fa4953","input_length":562,"output_length":98,"hash_ids":[3712119,3712120],"delay":3456.6} +{"session_id":"sess-8e16f5fa4953","input_length":577,"output_length":30,"hash_ids":[3712121,3712122],"delay":2495.2} +{"session_id":"sess-8e16f5fa4953","input_length":2693,"output_length":45,"hash_ids":[3712123,3712124,3712125,3712126,3712127,3712128],"delay":178.4} +{"session_id":"sess-8e16f5fa4953","input_length":3672,"output_length":240,"hash_ids":[3712129,3712130,3712131,3712132,3712133,3712134,3712135,3712136],"delay":840.4} +{"session_id":"sess-8e16f5fa4953","input_length":615,"output_length":1659,"hash_ids":[3712137,3712138],"delay":1531.7} +{"session_id":"sess-8e16f5fa4953","input_length":1587,"output_length":95,"hash_ids":[3712139,3712140,3712141,3712142],"delay":11814.6} +{"session_id":"sess-8e16f5fa4953","input_length":2389,"output_length":30,"hash_ids":[3712143,3712144,3712145,3712146,3712147],"delay":221.9} +{"session_id":"sess-8e16f5fa4953","input_length":612,"output_length":106,"hash_ids":[3712148,3712149],"delay":890.6} +{"session_id":"sess-8e16f5fa4953","input_length":2750,"output_length":1008,"hash_ids":[3712150,3712151,3712152,3712153,3712154,3712155],"delay":27961.7} +{"session_id":"sess-8e16f5fa4953","input_length":434,"output_length":287,"hash_ids":[3712156],"delay":1546.6} +{"session_id":"sess-8e16f5fa4953","input_length":2343,"output_length":1101,"hash_ids":[3712157,3712158,3712159,3712160,3712161],"delay":309.0} +{"session_id":"sess-8e16f5fa4953","input_length":3564,"output_length":975,"hash_ids":[3712162,3712163,3712164,3712165,3712166,3712167,3712168],"delay":360.4} +{"session_id":"sess-8e16f5fa4953","input_length":6979,"output_length":382,"hash_ids":[3712169,3712170,3712171,3712172,3712173,3712174,3712175,3712176,3712177,3712178,3712179,3712180,3712181,3712182],"delay":5475.1} +{"session_id":"sess-8e16f5fa4953","input_length":1732,"output_length":62,"hash_ids":[3712183,3712184,3712185,3712186],"delay":702.7} +{"session_id":"sess-8e16f5fa4953","input_length":1028,"output_length":1984,"hash_ids":[3712187,3712188,3712189],"delay":85.2} +{"session_id":"sess-8e16f5fa4953","input_length":1139,"output_length":1111,"hash_ids":[3712190,3712191,3712192],"delay":907.7} +{"session_id":"sess-8e16f5fa4953","input_length":525,"output_length":299,"hash_ids":[3712193,3712194],"delay":628.0} +{"session_id":"sess-8e16f5fa4953","input_length":1436,"output_length":714,"hash_ids":[3712195,3712196,3712197],"delay":23133.7} +{"session_id":"sess-8e16f5fa4953","input_length":1051,"output_length":122,"hash_ids":[3712198,3712199,3712200],"delay":95.3} +{"session_id":"sess-8e16f5fa4953","input_length":941,"output_length":802,"hash_ids":[3712201,3712202],"delay":96.7} +{"session_id":"sess-e0e83904a42f","input_length":70726,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,3716063,3716064,3716065,3716066,3716067,3716068,3716069,3716070,3716071,3716072,3716073,3716074,3716075,3716076,3716077,3716078,3716079,3716080,3716081,3716082,3716083,3716084,3716085,3716086,3716087,3716088,3716089,3716090,3716091,3716092,3716093,3716094,3716095,3716096,3716097,3716098],"timestamp":0.0,"group_id":35} +{"session_id":"sess-e0e83904a42f","input_length":36,"output_length":278,"hash_ids":[3716099],"delay":681.7} +{"session_id":"sess-e0e83904a42f","input_length":2702,"output_length":1106,"hash_ids":[3716100,3716101,3716102,3716103,3716104,3716105],"delay":1113.4} +{"session_id":"sess-e0e83904a42f","input_length":1117,"output_length":259,"hash_ids":[3716106,3716107,3716108],"delay":1221.3} +{"session_id":"sess-e0e83904a42f","input_length":1036,"output_length":815,"hash_ids":[3716109,3716110,3716111],"delay":233.7} +{"session_id":"sess-e0e83904a42f","input_length":3729,"output_length":57,"hash_ids":[3716112,3716113,3716114,3716115,3716116,3716117,3716118,3716119],"delay":319.9} +{"session_id":"sess-e0e83904a42f","input_length":3903,"output_length":325,"hash_ids":[3716120,3716121,3716122,3716123,3716124,3716125,3716126,3716127],"delay":1022.4} +{"session_id":"sess-e0e83904a42f","input_length":1839,"output_length":247,"hash_ids":[3716128,3716129,3716130,3716131],"delay":2954.0} +{"session_id":"sess-e0e83904a42f","input_length":4293,"output_length":742,"hash_ids":[3716132,3716133,3716134,3716135,3716136,3716137,3716138,3716139,3716140],"delay":923.9} +{"session_id":"sess-e0e83904a42f","input_length":6592,"output_length":178,"hash_ids":[3716141,3716142,3716143,3716144,3716145,3716146,3716147,3716148,3716149,3716150,3716151,3716152,3716153],"delay":176.5} +{"session_id":"sess-e0e83904a42f","input_length":1125,"output_length":30,"hash_ids":[3716154,3716155,3716156],"delay":482.9} +{"session_id":"sess-e0e83904a42f","input_length":4002,"output_length":149,"hash_ids":[3716157,3716158,3716159,3716160,3716161,3716162,3716163,3716164],"delay":632.6} +{"session_id":"sess-e0e83904a42f","input_length":3186,"output_length":243,"hash_ids":[3716165,3716166,3716167,3716168,3716169,3716170,3716171],"delay":584.9} +{"session_id":"sess-e0e83904a42f","input_length":1144,"output_length":521,"hash_ids":[3716172,3716173,3716174],"delay":17101.6} +{"session_id":"sess-e0e83904a42f","input_length":1961,"output_length":30,"hash_ids":[3716175,3716176,3716177,3716178],"delay":533.5} +{"session_id":"sess-e0e83904a42f","input_length":6676,"output_length":262,"hash_ids":[3716179,3716180,3716181,3716182,3716183,3716184,3716185,3716186,3716187,3716188,3716189,3716190,3716191,3716192],"delay":1378.5} +{"session_id":"sess-e0e83904a42f","input_length":5163,"output_length":244,"hash_ids":[3716193,3716194,3716195,3716196,3716197,3716198,3716199,3716200,3716201,3716202,3716203],"delay":1083.0} +{"session_id":"sess-e0e83904a42f","input_length":1509,"output_length":171,"hash_ids":[3716204,3716205,3716206],"delay":283.3} +{"session_id":"sess-e0e83904a42f","input_length":1308,"output_length":308,"hash_ids":[3716207,3716208,3716209],"delay":999.5} +{"session_id":"sess-e0e83904a42f","input_length":2747,"output_length":32,"hash_ids":[3716210,3716211,3716212,3716213,3716214,3716215],"delay":1389.9} +{"session_id":"sess-2af8b34c87be","input_length":55309,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3720063,3720064,3720065,3720066,3720067,3720068],"timestamp":0.0,"group_id":3} +{"session_id":"sess-2af8b34c87be","input_length":719,"output_length":1449,"hash_ids":[3720069,3720070],"delay":13612.1} +{"session_id":"sess-2af8b34c87be","input_length":3815,"output_length":282,"hash_ids":[3720071,3720072,3720073,3720074,3720075,3720076,3720077,3720078],"delay":2005.8} +{"session_id":"sess-2af8b34c87be","input_length":1037,"output_length":460,"hash_ids":[3720079,3720080,3720081],"delay":25594.3} +{"session_id":"sess-2af8b34c87be","input_length":2059,"output_length":375,"hash_ids":[3720082,3720083,3720084,3720085,3720086],"delay":570.7} +{"session_id":"sess-2af8b34c87be","input_length":2066,"output_length":83,"hash_ids":[3720087,3720088,3720089,3720090,3720091],"delay":1781.1} +{"session_id":"sess-2af8b34c87be","input_length":444,"output_length":64,"hash_ids":[3720092],"delay":2743.2} +{"session_id":"sess-2af8b34c87be","input_length":655,"output_length":494,"hash_ids":[3720093,3720094],"delay":764.2} +{"session_id":"sess-2af8b34c87be","input_length":6602,"output_length":538,"hash_ids":[3720095,3720096,3720097,3720098,3720099,3720100,3720101,3720102,3720103,3720104,3720105,3720106,3720107],"delay":988.7} +{"session_id":"sess-2af8b34c87be","input_length":977,"output_length":140,"hash_ids":[3720108,3720109],"delay":22965.8} +{"session_id":"sess-7bcaf3f9c33a","input_length":52805,"output_length":725,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,3724063],"timestamp":0.0,"group_id":31} +{"session_id":"sess-7bcaf3f9c33a","input_length":3440,"output_length":722,"hash_ids":[3724064,3724065,3724066,3724067,3724068,3724069,3724070],"delay":844.8} +{"session_id":"sess-7bcaf3f9c33a","input_length":732,"output_length":454,"hash_ids":[3724071,3724072],"delay":2811.9} +{"session_id":"sess-7bcaf3f9c33a","input_length":4399,"output_length":56,"hash_ids":[3724073,3724074,3724075,3724076,3724077,3724078,3724079,3724080,3724081],"delay":1346.6} +{"session_id":"sess-7bcaf3f9c33a","input_length":1353,"output_length":303,"hash_ids":[3724082,3724083,3724084],"delay":13520.2} +{"session_id":"sess-7bcaf3f9c33a","input_length":1169,"output_length":478,"hash_ids":[3724085,3724086,3724087],"delay":1078.5} +{"session_id":"sess-7bcaf3f9c33a","input_length":2879,"output_length":82,"hash_ids":[3724088,3724089,3724090,3724091,3724092,3724093],"delay":726.7} +{"session_id":"sess-7bcaf3f9c33a","input_length":395,"output_length":717,"hash_ids":[3724094],"delay":1525.3} +{"session_id":"sess-7bcaf3f9c33a","input_length":6776,"output_length":313,"hash_ids":[3724095,3724096,3724097,3724098,3724099,3724100,3724101,3724102,3724103,3724104,3724105,3724106,3724107,3724108],"delay":44834.3} +{"session_id":"sess-7bcaf3f9c33a","input_length":1134,"output_length":183,"hash_ids":[3724109,3724110,3724111],"delay":391.8} +{"session_id":"sess-7bcaf3f9c33a","input_length":1155,"output_length":1263,"hash_ids":[3724112,3724113,3724114],"delay":293.6} +{"session_id":"sess-a1b4db3e69a9","input_length":57230,"output_length":292,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3728063,3728064,3728065,3728066,3728067,3728068,3728069,3728070,3728071],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a1b4db3e69a9","input_length":3702,"output_length":141,"hash_ids":[3728072,3728073,3728074,3728075,3728076,3728077,3728078,3728079],"delay":1740.2} +{"session_id":"sess-a1b4db3e69a9","input_length":3312,"output_length":668,"hash_ids":[3728080,3728081,3728082,3728083,3728084,3728085,3728086],"delay":11720.1} +{"session_id":"sess-a1b4db3e69a9","input_length":2425,"output_length":271,"hash_ids":[3728087,3728088,3728089,3728090,3728091],"delay":971.8} +{"session_id":"sess-a1b4db3e69a9","input_length":1115,"output_length":411,"hash_ids":[3728092,3728093,3728094],"delay":853.5} +{"session_id":"sess-a1b4db3e69a9","input_length":4065,"output_length":186,"hash_ids":[3728095,3728096,3728097,3728098,3728099,3728100,3728101,3728102],"delay":3782.3} +{"session_id":"sess-a1b4db3e69a9","input_length":9167,"output_length":1393,"hash_ids":[3728103,3728104,3728105,3728106,3728107,3728108,3728109,3728110,3728111,3728112,3728113,3728114,3728115,3728116,3728117,3728118,3728119,3728120],"delay":607.8} +{"session_id":"sess-a1b4db3e69a9","input_length":2395,"output_length":104,"hash_ids":[3728121,3728122,3728123,3728124,3728125],"delay":1343.6} +{"session_id":"sess-1bfa400f424f","input_length":58153,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3732063,3732064,3732065,3732066,3732067,3732068,3732069,3732070,3732071,3732072,3732073],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1bfa400f424f","input_length":1755,"output_length":173,"hash_ids":[3732074,3732075,3732076,3732077],"delay":638.3} +{"session_id":"sess-1bfa400f424f","input_length":1476,"output_length":585,"hash_ids":[3732078,3732079,3732080],"delay":3591.9} +{"session_id":"sess-1bfa400f424f","input_length":680,"output_length":879,"hash_ids":[3732081,3732082],"delay":2487.0} +{"session_id":"sess-1bfa400f424f","input_length":8911,"output_length":227,"hash_ids":[3732083,3732084,3732085,3732086,3732087,3732088,3732089,3732090,3732091,3732092,3732093,3732094,3732095,3732096,3732097,3732098,3732099,3732100],"delay":1315.1} +{"session_id":"sess-1bfa400f424f","input_length":335,"output_length":875,"hash_ids":[3732101],"delay":580.5} +{"session_id":"sess-1bfa400f424f","input_length":3581,"output_length":576,"hash_ids":[3732102,3732103,3732104,3732105,3732106,3732107,3732108],"delay":7659.4} +{"session_id":"sess-1bfa400f424f","input_length":7641,"output_length":140,"hash_ids":[3732109,3732110,3732111,3732112,3732113,3732114,3732115,3732116,3732117,3732118,3732119,3732120,3732121,3732122,3732123],"delay":1173.7} +{"session_id":"sess-1bfa400f424f","input_length":212,"output_length":74,"hash_ids":[3732124],"delay":1222.4} +{"session_id":"sess-1bfa400f424f","input_length":1341,"output_length":107,"hash_ids":[3732125,3732126,3732127],"delay":281.6} +{"session_id":"sess-1bfa400f424f","input_length":812,"output_length":450,"hash_ids":[3732128,3732129],"delay":1839.1} +{"session_id":"sess-1bfa400f424f","input_length":1052,"output_length":385,"hash_ids":[3732130,3732131,3732132],"delay":871.3} +{"session_id":"sess-1bfa400f424f","input_length":1607,"output_length":78,"hash_ids":[3732133,3732134,3732135,3732136],"delay":1786.6} +{"session_id":"sess-1bfa400f424f","input_length":301,"output_length":1871,"hash_ids":[3732137],"delay":32811.0} +{"session_id":"sess-1bfa400f424f","input_length":1353,"output_length":60,"hash_ids":[3732138,3732139,3732140],"delay":3808.4} +{"session_id":"sess-1bfa400f424f","input_length":2951,"output_length":928,"hash_ids":[3732141,3732142,3732143,3732144,3732145,3732146],"delay":1282.2} +{"session_id":"sess-1bfa400f424f","input_length":2602,"output_length":439,"hash_ids":[3732147,3732148,3732149,3732150,3732151,3732152],"delay":455.2} +{"session_id":"sess-1bfa400f424f","input_length":1941,"output_length":186,"hash_ids":[3732153,3732154,3732155,3732156],"delay":4285.2} +{"session_id":"sess-1bfa400f424f","input_length":8498,"output_length":79,"hash_ids":[3732157,3732158,3732159,3732160,3732161,3732162,3732163,3732164,3732165,3732166,3732167,3732168,3732169,3732170,3732171,3732172,3732173],"delay":1358.5} +{"session_id":"sess-1bfa400f424f","input_length":1206,"output_length":1054,"hash_ids":[3732174,3732175,3732176],"delay":522.9} +{"session_id":"sess-1bfa400f424f","input_length":489,"output_length":960,"hash_ids":[3732177],"delay":337.3} +{"session_id":"sess-1bfa400f424f","input_length":8807,"output_length":706,"hash_ids":[3732178,3732179,3732180,3732181,3732182,3732183,3732184,3732185,3732186,3732187,3732188,3732189,3732190,3732191,3732192,3732193,3732194,3732195],"delay":682.4} +{"session_id":"sess-1bfa400f424f","input_length":1730,"output_length":302,"hash_ids":[3732196,3732197,3732198,3732199],"delay":312.3} +{"session_id":"sess-639bb0a32fa9","input_length":53817,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3736063,3736064,3736065],"timestamp":0.0,"group_id":3} +{"session_id":"sess-639bb0a32fa9","input_length":111,"output_length":62,"hash_ids":[3736066],"delay":338.8} +{"session_id":"sess-639bb0a32fa9","input_length":1589,"output_length":628,"hash_ids":[3736067,3736068,3736069,3736070],"delay":1099.6} +{"session_id":"sess-639bb0a32fa9","input_length":2008,"output_length":860,"hash_ids":[3736071,3736072,3736073,3736074],"delay":60939.6} +{"session_id":"sess-d07d352445f9","input_length":81752,"output_length":290,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3740063,3740064,3740065,3740066,3740067,3740068,3740069,3740070,3740071,3740072,3740073,3740074,3740075,3740076,3740077,3740078,3740079,3740080,3740081,3740082,3740083,3740084,3740085,3740086,3740087,3740088,3740089,3740090,3740091,3740092,3740093,3740094,3740095,3740096,3740097,3740098,3740099,3740100,3740101,3740102,3740103,3740104,3740105,3740106,3740107,3740108,3740109,3740110,3740111,3740112,3740113,3740114,3740115,3740116,3740117,3740118,3740119],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d07d352445f9","input_length":4512,"output_length":166,"hash_ids":[3740120,3740121,3740122,3740123,3740124,3740125,3740126,3740127,3740128],"delay":774.4} +{"session_id":"sess-d07d352445f9","input_length":5422,"output_length":513,"hash_ids":[3740129,3740130,3740131,3740132,3740133,3740134,3740135,3740136,3740137,3740138,3740139],"delay":129.3} +{"session_id":"sess-d07d352445f9","input_length":1824,"output_length":419,"hash_ids":[3740140,3740141,3740142,3740143],"delay":468.5} +{"session_id":"sess-d07d352445f9","input_length":3126,"output_length":67,"hash_ids":[3740144,3740145,3740146,3740147,3740148,3740149,3740150],"delay":37697.9} +{"session_id":"sess-d07d352445f9","input_length":159,"output_length":168,"hash_ids":[3740151],"delay":19935.2} +{"session_id":"sess-d07d352445f9","input_length":635,"output_length":704,"hash_ids":[3740152,3740153],"delay":30138.1} +{"session_id":"sess-d07d352445f9","input_length":2325,"output_length":306,"hash_ids":[3740154,3740155,3740156,3740157,3740158],"delay":742.8} +{"session_id":"sess-d07d352445f9","input_length":2155,"output_length":82,"hash_ids":[3740159,3740160,3740161,3740162,3740163],"delay":1286.1} +{"session_id":"sess-d07d352445f9","input_length":1190,"output_length":1967,"hash_ids":[3740164,3740165,3740166],"delay":677.1} +{"session_id":"sess-d07d352445f9","input_length":3242,"output_length":132,"hash_ids":[3740167,3740168,3740169,3740170,3740171,3740172,3740173],"delay":1331.7} +{"session_id":"sess-d07d352445f9","input_length":2387,"output_length":50,"hash_ids":[3740174,3740175,3740176,3740177,3740178],"delay":1452.4} +{"session_id":"sess-d07d352445f9","input_length":1044,"output_length":51,"hash_ids":[3740179,3740180,3740181],"delay":168.2} +{"session_id":"sess-d07d352445f9","input_length":3599,"output_length":1109,"hash_ids":[3740182,3740183,3740184,3740185,3740186,3740187,3740188,3740189],"delay":23890.1} +{"session_id":"sess-d07d352445f9","input_length":4895,"output_length":261,"hash_ids":[3740190,3740191,3740192,3740193,3740194,3740195,3740196,3740197,3740198,3740199],"delay":9322.7} +{"session_id":"sess-be7227c6371a","input_length":57435,"output_length":262,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3744063,3744064,3744065,3744066,3744067,3744068,3744069,3744070,3744071,3744072],"timestamp":0.0,"group_id":1} +{"session_id":"sess-be7227c6371a","input_length":520,"output_length":56,"hash_ids":[3744073,3744074],"delay":2005.6} +{"session_id":"sess-be7227c6371a","input_length":2432,"output_length":706,"hash_ids":[3744075,3744076,3744077,3744078,3744079],"delay":637.7} +{"session_id":"sess-be7227c6371a","input_length":6615,"output_length":288,"hash_ids":[3744080,3744081,3744082,3744083,3744084,3744085,3744086,3744087,3744088,3744089,3744090,3744091,3744092],"delay":54859.7} +{"session_id":"sess-be7227c6371a","input_length":5972,"output_length":157,"hash_ids":[3744093,3744094,3744095,3744096,3744097,3744098,3744099,3744100,3744101,3744102,3744103,3744104],"delay":1649.7} +{"session_id":"sess-be7227c6371a","input_length":3342,"output_length":202,"hash_ids":[3744105,3744106,3744107,3744108,3744109,3744110,3744111],"delay":765.6} +{"session_id":"sess-be7227c6371a","input_length":542,"output_length":528,"hash_ids":[3744112,3744113],"delay":923.2} +{"session_id":"sess-be7227c6371a","input_length":1776,"output_length":116,"hash_ids":[3744114,3744115,3744116,3744117],"delay":1123.3} +{"session_id":"sess-be7227c6371a","input_length":653,"output_length":1124,"hash_ids":[3744118,3744119],"delay":1926.4} +{"session_id":"sess-be7227c6371a","input_length":289,"output_length":404,"hash_ids":[3744120],"delay":283.8} +{"session_id":"sess-be7227c6371a","input_length":1420,"output_length":633,"hash_ids":[3744121,3744122,3744123],"delay":328.6} +{"session_id":"sess-be7227c6371a","input_length":42,"output_length":440,"hash_ids":[3744124],"delay":305.2} +{"session_id":"sess-be7227c6371a","input_length":2888,"output_length":972,"hash_ids":[3744125,3744126,3744127,3744128,3744129,3744130],"delay":1261.8} +{"session_id":"sess-be7227c6371a","input_length":466,"output_length":46,"hash_ids":[3744131],"delay":3402.3} +{"session_id":"sess-be7227c6371a","input_length":1668,"output_length":828,"hash_ids":[3744132,3744133,3744134,3744135],"delay":6983.4} +{"session_id":"sess-be7227c6371a","input_length":712,"output_length":115,"hash_ids":[3744136,3744137],"delay":9010.8} +{"session_id":"sess-be7227c6371a","input_length":447,"output_length":140,"hash_ids":[3744138],"delay":585.8} +{"session_id":"sess-be7227c6371a","input_length":2140,"output_length":284,"hash_ids":[3744139,3744140,3744141,3744142,3744143],"delay":671.0} +{"session_id":"sess-be7227c6371a","input_length":1939,"output_length":187,"hash_ids":[3744144,3744145,3744146,3744147],"delay":253.6} +{"session_id":"sess-be7227c6371a","input_length":6835,"output_length":830,"hash_ids":[3744148,3744149,3744150,3744151,3744152,3744153,3744154,3744155,3744156,3744157,3744158,3744159,3744160,3744161],"delay":1977.0} +{"session_id":"sess-be7227c6371a","input_length":1234,"output_length":424,"hash_ids":[3744162,3744163,3744164],"delay":463.1} +{"session_id":"sess-be7227c6371a","input_length":2391,"output_length":282,"hash_ids":[3744165,3744166,3744167,3744168,3744169],"delay":1523.6} +{"session_id":"sess-be7227c6371a","input_length":1586,"output_length":336,"hash_ids":[3744170,3744171,3744172,3744173],"delay":1390.3} +{"session_id":"sess-be7227c6371a","input_length":1612,"output_length":133,"hash_ids":[3744174,3744175,3744176,3744177],"delay":1092.6} +{"session_id":"sess-be7227c6371a","input_length":543,"output_length":312,"hash_ids":[3744178,3744179],"delay":726.0} +{"session_id":"sess-be7227c6371a","input_length":301,"output_length":401,"hash_ids":[3744180],"delay":765.7} +{"session_id":"sess-be7227c6371a","input_length":7592,"output_length":67,"hash_ids":[3744181,3744182,3744183,3744184,3744185,3744186,3744187,3744188,3744189,3744190,3744191,3744192,3744193,3744194,3744195],"delay":512.8} +{"session_id":"sess-be7227c6371a","input_length":5989,"output_length":910,"hash_ids":[3744196,3744197,3744198,3744199,3744200,3744201,3744202,3744203,3744204,3744205,3744206,3744207],"delay":4574.2} +{"session_id":"sess-caa6c50d7716","input_length":64418,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3748063,3748064,3748065,3748066,3748067,3748068,3748069,3748070,3748071,3748072,3748073,3748074,3748075,3748076,3748077,3748078,3748079,3748080,3748081,3748082,3748083,3748084,3748085],"timestamp":0.0,"group_id":0} +{"session_id":"sess-caa6c50d7716","input_length":1067,"output_length":2686,"hash_ids":[3748086,3748087,3748088],"delay":2578.3} +{"session_id":"sess-caa6c50d7716","input_length":1418,"output_length":409,"hash_ids":[3748089,3748090,3748091],"delay":39874.4} +{"session_id":"sess-caa6c50d7716","input_length":5683,"output_length":229,"hash_ids":[3748092,3748093,3748094,3748095,3748096,3748097,3748098,3748099,3748100,3748101,3748102,3748103],"delay":32684.4} +{"session_id":"sess-caa6c50d7716","input_length":1101,"output_length":197,"hash_ids":[3748104,3748105,3748106],"delay":16276.6} +{"session_id":"sess-caa6c50d7716","input_length":639,"output_length":128,"hash_ids":[3748107,3748108],"delay":3238.4} +{"session_id":"sess-caa6c50d7716","input_length":127,"output_length":114,"hash_ids":[3748109],"delay":1948.0} +{"session_id":"sess-caa6c50d7716","input_length":8277,"output_length":236,"hash_ids":[3748110,3748111,3748112,3748113,3748114,3748115,3748116,3748117,3748118,3748119,3748120,3748121,3748122,3748123,3748124,3748125,3748126],"delay":2992.7} +{"session_id":"sess-caa6c50d7716","input_length":3203,"output_length":78,"hash_ids":[3748127,3748128,3748129,3748130,3748131,3748132,3748133],"delay":202.7} +{"session_id":"sess-caa6c50d7716","input_length":4154,"output_length":359,"hash_ids":[3748134,3748135,3748136,3748137,3748138,3748139,3748140,3748141,3748142],"delay":2787.6} +{"session_id":"sess-caa6c50d7716","input_length":2325,"output_length":693,"hash_ids":[3748143,3748144,3748145,3748146,3748147],"delay":2651.4} +{"session_id":"sess-caa6c50d7716","input_length":2044,"output_length":365,"hash_ids":[3748148,3748149,3748150,3748151],"delay":17593.8} +{"session_id":"sess-caa6c50d7716","input_length":3905,"output_length":959,"hash_ids":[3748152,3748153,3748154,3748155,3748156,3748157,3748158,3748159],"delay":797.4} +{"session_id":"sess-caa6c50d7716","input_length":1688,"output_length":909,"hash_ids":[3748160,3748161,3748162,3748163],"delay":13502.4} +{"session_id":"sess-caa6c50d7716","input_length":4791,"output_length":301,"hash_ids":[3748164,3748165,3748166,3748167,3748168,3748169,3748170,3748171,3748172,3748173],"delay":682.7} +{"session_id":"sess-caa6c50d7716","input_length":2076,"output_length":148,"hash_ids":[3748174,3748175,3748176,3748177,3748178],"delay":538.5} +{"session_id":"sess-caa6c50d7716","input_length":3049,"output_length":31,"hash_ids":[3748179,3748180,3748181,3748182,3748183,3748184],"delay":2397.7} +{"session_id":"sess-caa6c50d7716","input_length":2436,"output_length":2899,"hash_ids":[3748185,3748186,3748187,3748188,3748189],"delay":2003.3} +{"session_id":"sess-caa6c50d7716","input_length":458,"output_length":254,"hash_ids":[3748190],"delay":2624.0} +{"session_id":"sess-caa6c50d7716","input_length":2685,"output_length":749,"hash_ids":[3748191,3748192,3748193,3748194,3748195,3748196],"delay":643.3} +{"session_id":"sess-caa6c50d7716","input_length":2917,"output_length":729,"hash_ids":[3748197,3748198,3748199,3748200,3748201,3748202],"delay":2286.5} +{"session_id":"sess-26bb5b53ecd1","input_length":52678,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302],"timestamp":0.0,"group_id":16} +{"session_id":"sess-26bb5b53ecd1","input_length":1806,"output_length":52,"hash_ids":[3748203,3748204,3748205,3748206],"delay":427.0} +{"session_id":"sess-26bb5b53ecd1","input_length":1495,"output_length":589,"hash_ids":[3748207,3748208,3748209],"delay":1466.9} +{"session_id":"sess-26bb5b53ecd1","input_length":9373,"output_length":2700,"hash_ids":[3748210,3748211,3748212,3748213,3748214,3748215,3748216,3748217,3748218,3748219,3748220,3748221,3748222,3748223,3748224,3748225,3748226,3748227,3748228],"delay":2075.1} +{"session_id":"sess-26bb5b53ecd1","input_length":1977,"output_length":163,"hash_ids":[3748229,3748230,3748231,3748232],"delay":908.0} +{"session_id":"sess-26bb5b53ecd1","input_length":5842,"output_length":149,"hash_ids":[3748233,3748234,3748235,3748236,3748237,3748238,3748239,3748240,3748241,3748242,3748243,3748244],"delay":1755.9} +{"session_id":"sess-26bb5b53ecd1","input_length":1052,"output_length":1322,"hash_ids":[3748245,3748246,3748247],"delay":40267.1} +{"session_id":"sess-26bb5b53ecd1","input_length":207,"output_length":466,"hash_ids":[3748248],"delay":163.5} +{"session_id":"sess-26bb5b53ecd1","input_length":1393,"output_length":140,"hash_ids":[3748249,3748250,3748251],"delay":3496.0} +{"session_id":"sess-26bb5b53ecd1","input_length":274,"output_length":1398,"hash_ids":[3748252],"delay":889.9} +{"session_id":"sess-26bb5b53ecd1","input_length":532,"output_length":44,"hash_ids":[3748253,3748254],"delay":35022.0} +{"session_id":"sess-26bb5b53ecd1","input_length":2212,"output_length":526,"hash_ids":[3748255,3748256,3748257,3748258,3748259],"delay":304.0} +{"session_id":"sess-26bb5b53ecd1","input_length":4768,"output_length":912,"hash_ids":[3748260,3748261,3748262,3748263,3748264,3748265,3748266,3748267,3748268,3748269],"delay":876.7} +{"session_id":"sess-26bb5b53ecd1","input_length":8348,"output_length":181,"hash_ids":[3748270,3748271,3748272,3748273,3748274,3748275,3748276,3748277,3748278,3748279,3748280,3748281,3748282,3748283,3748284,3748285,3748286],"delay":708.6} +{"session_id":"sess-26bb5b53ecd1","input_length":2421,"output_length":432,"hash_ids":[3748287,3748288,3748289,3748290,3748291],"delay":25073.5} +{"session_id":"sess-26bb5b53ecd1","input_length":2271,"output_length":157,"hash_ids":[3748292,3748293,3748294,3748295,3748296],"delay":584.3} +{"session_id":"sess-26bb5b53ecd1","input_length":1704,"output_length":30,"hash_ids":[3748297,3748298,3748299,3748300],"delay":3098.6} +{"session_id":"sess-26bb5b53ecd1","input_length":2782,"output_length":2588,"hash_ids":[3748301,3748302,3748303,3748304,3748305,3748306],"delay":323.6} +{"session_id":"sess-26bb5b53ecd1","input_length":994,"output_length":1560,"hash_ids":[3748307,3748308],"delay":2115.4} +{"session_id":"sess-26bb5b53ecd1","input_length":2604,"output_length":2538,"hash_ids":[3748309,3748310,3748311,3748312,3748313,3748314],"delay":1352.4} +{"session_id":"sess-13b26b7fe8fa","input_length":66643,"output_length":847,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3756063,3756064,3756065,3756066,3756067,3756068,3756069,3756070,3756071,3756072,3756073,3756074,3756075,3756076,3756077,3756078,3756079,3756080,3756081,3756082,3756083,3756084,3756085,3756086,3756087,3756088,3756089,3756090],"timestamp":0.0,"group_id":0} +{"session_id":"sess-13b26b7fe8fa","input_length":2861,"output_length":56,"hash_ids":[3756091,3756092,3756093,3756094,3756095,3756096],"delay":1150.4} +{"session_id":"sess-13b26b7fe8fa","input_length":8119,"output_length":59,"hash_ids":[3756097,3756098,3756099,3756100,3756101,3756102,3756103,3756104,3756105,3756106,3756107,3756108,3756109,3756110,3756111,3756112],"delay":366.1} +{"session_id":"sess-13b26b7fe8fa","input_length":2031,"output_length":146,"hash_ids":[3756113,3756114,3756115,3756116],"delay":1164.5} +{"session_id":"sess-13b26b7fe8fa","input_length":762,"output_length":183,"hash_ids":[3756117,3756118],"delay":1678.8} +{"session_id":"sess-13b26b7fe8fa","input_length":2553,"output_length":656,"hash_ids":[3756119,3756120,3756121,3756122,3756123],"delay":792.5} +{"session_id":"sess-13b26b7fe8fa","input_length":8517,"output_length":69,"hash_ids":[3756124,3756125,3756126,3756127,3756128,3756129,3756130,3756131,3756132,3756133,3756134,3756135,3756136,3756137,3756138,3756139,3756140],"delay":1220.7} +{"session_id":"sess-13b26b7fe8fa","input_length":8304,"output_length":32,"hash_ids":[3756141,3756142,3756143,3756144,3756145,3756146,3756147,3756148,3756149,3756150,3756151,3756152,3756153,3756154,3756155,3756156,3756157],"delay":355.0} +{"session_id":"sess-13b26b7fe8fa","input_length":8231,"output_length":495,"hash_ids":[3756158,3756159,3756160,3756161,3756162,3756163,3756164,3756165,3756166,3756167,3756168,3756169,3756170,3756171,3756172,3756173,3756174],"delay":190.9} +{"session_id":"sess-13b26b7fe8fa","input_length":916,"output_length":306,"hash_ids":[3756175,3756176],"delay":4037.6} +{"session_id":"sess-13b26b7fe8fa","input_length":4327,"output_length":1023,"hash_ids":[3756177,3756178,3756179,3756180,3756181,3756182,3756183,3756184,3756185],"delay":405.3} +{"session_id":"sess-13b26b7fe8fa","input_length":502,"output_length":128,"hash_ids":[3756186],"delay":391.6} +{"session_id":"sess-13b26b7fe8fa","input_length":7265,"output_length":32,"hash_ids":[3756187,3756188,3756189,3756190,3756191,3756192,3756193,3756194,3756195,3756196,3756197,3756198,3756199,3756200,3756201],"delay":708.0} +{"session_id":"sess-d56d355b595e","input_length":52890,"output_length":242,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,3760063],"timestamp":0.0,"group_id":10} +{"session_id":"sess-d56d355b595e","input_length":2952,"output_length":652,"hash_ids":[3760064,3760065,3760066,3760067,3760068,3760069],"delay":1034.9} +{"session_id":"sess-d56d355b595e","input_length":2658,"output_length":192,"hash_ids":[3760070,3760071,3760072,3760073,3760074,3760075],"delay":330.0} +{"session_id":"sess-d56d355b595e","input_length":535,"output_length":1854,"hash_ids":[3760076,3760077],"delay":1668.1} +{"session_id":"sess-d56d355b595e","input_length":3248,"output_length":1188,"hash_ids":[3760078,3760079,3760080,3760081,3760082,3760083,3760084],"delay":1560.4} +{"session_id":"sess-d56d355b595e","input_length":368,"output_length":45,"hash_ids":[3760085],"delay":1470.0} +{"session_id":"sess-d56d355b595e","input_length":485,"output_length":321,"hash_ids":[3760086],"delay":1105.8} +{"session_id":"sess-d56d355b595e","input_length":2284,"output_length":1243,"hash_ids":[3760087,3760088,3760089,3760090,3760091],"delay":1478.6} +{"session_id":"sess-d56d355b595e","input_length":3391,"output_length":142,"hash_ids":[3760092,3760093,3760094,3760095,3760096,3760097,3760098],"delay":630.7} +{"session_id":"sess-d56d355b595e","input_length":1168,"output_length":121,"hash_ids":[3760099,3760100,3760101],"delay":185.0} +{"session_id":"sess-d56d355b595e","input_length":617,"output_length":34,"hash_ids":[3760102,3760103],"delay":6665.8} +{"session_id":"sess-d56d355b595e","input_length":551,"output_length":596,"hash_ids":[3760104,3760105],"delay":1539.6} +{"session_id":"sess-d56d355b595e","input_length":2315,"output_length":99,"hash_ids":[3760106,3760107,3760108,3760109,3760110],"delay":545.2} +{"session_id":"sess-d56d355b595e","input_length":3796,"output_length":695,"hash_ids":[3760111,3760112,3760113,3760114,3760115,3760116,3760117,3760118],"delay":2059.2} +{"session_id":"sess-d56d355b595e","input_length":1193,"output_length":476,"hash_ids":[3760119,3760120,3760121],"delay":6071.3} +{"session_id":"sess-d56d355b595e","input_length":2163,"output_length":47,"hash_ids":[3760122,3760123,3760124,3760125,3760126],"delay":6111.7} +{"session_id":"sess-d56d355b595e","input_length":9506,"output_length":270,"hash_ids":[3760127,3760128,3760129,3760130,3760131,3760132,3760133,3760134,3760135,3760136,3760137,3760138,3760139,3760140,3760141,3760142,3760143,3760144,3760145],"delay":155.2} +{"session_id":"sess-d56d355b595e","input_length":9817,"output_length":247,"hash_ids":[3760146,3760147,3760148,3760149,3760150,3760151,3760152,3760153,3760154,3760155,3760156,3760157,3760158,3760159,3760160,3760161,3760162,3760163,3760164,3760165],"delay":5265.7} +{"session_id":"sess-d56d355b595e","input_length":5595,"output_length":2755,"hash_ids":[3760166,3760167,3760168,3760169,3760170,3760171,3760172,3760173,3760174,3760175,3760176],"delay":336.9} +{"session_id":"sess-d56d355b595e","input_length":385,"output_length":51,"hash_ids":[3760177],"delay":715.1} +{"session_id":"sess-d56d355b595e","input_length":9278,"output_length":48,"hash_ids":[3760178,3760179,3760180,3760181,3760182,3760183,3760184,3760185,3760186,3760187,3760188,3760189,3760190,3760191,3760192,3760193,3760194,3760195,3760196],"delay":5497.2} +{"session_id":"sess-d56d355b595e","input_length":392,"output_length":275,"hash_ids":[3760197],"delay":4470.1} +{"session_id":"sess-d56d355b595e","input_length":1565,"output_length":696,"hash_ids":[3760198,3760199,3760200,3760201],"delay":1052.3} +{"session_id":"sess-d56d355b595e","input_length":1123,"output_length":71,"hash_ids":[3760202,3760203,3760204],"delay":44.6} +{"session_id":"sess-6cd06178ee10","input_length":65740,"output_length":688,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3764063,3764064,3764065,3764066,3764067,3764068,3764069,3764070,3764071,3764072,3764073,3764074,3764075,3764076,3764077,3764078,3764079,3764080,3764081,3764082,3764083,3764084,3764085,3764086,3764087,3764088],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6cd06178ee10","input_length":328,"output_length":233,"hash_ids":[3764089],"delay":22688.4} +{"session_id":"sess-10a70f62069a","input_length":57586,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3768063,3768064,3768065,3768066,3768067,3768068,3768069,3768070,3768071,3768072],"timestamp":0.0,"group_id":0} +{"session_id":"sess-10a70f62069a","input_length":622,"output_length":363,"hash_ids":[3768073,3768074],"delay":9088.0} +{"session_id":"sess-10a70f62069a","input_length":2266,"output_length":89,"hash_ids":[3768075,3768076,3768077,3768078,3768079],"delay":25850.7} +{"session_id":"sess-10a70f62069a","input_length":1422,"output_length":129,"hash_ids":[3768080,3768081,3768082],"delay":1596.7} +{"session_id":"sess-10a70f62069a","input_length":6338,"output_length":144,"hash_ids":[3768083,3768084,3768085,3768086,3768087,3768088,3768089,3768090,3768091,3768092,3768093,3768094,3768095],"delay":1575.9} +{"session_id":"sess-10a70f62069a","input_length":1119,"output_length":353,"hash_ids":[3768096,3768097,3768098],"delay":1361.1} +{"session_id":"sess-10a70f62069a","input_length":865,"output_length":422,"hash_ids":[3768099,3768100],"delay":302.6} +{"session_id":"sess-10a70f62069a","input_length":1814,"output_length":96,"hash_ids":[3768101,3768102,3768103,3768104],"delay":456.4} +{"session_id":"sess-10a70f62069a","input_length":1365,"output_length":566,"hash_ids":[3768105,3768106,3768107],"delay":838.9} +{"session_id":"sess-10a70f62069a","input_length":1185,"output_length":418,"hash_ids":[3768108,3768109,3768110],"delay":1038.3} +{"session_id":"sess-10a70f62069a","input_length":490,"output_length":358,"hash_ids":[3768111],"delay":1445.3} +{"session_id":"sess-10a70f62069a","input_length":164,"output_length":100,"hash_ids":[3768112],"delay":252.8} +{"session_id":"sess-10a70f62069a","input_length":130,"output_length":809,"hash_ids":[3768113],"delay":631.0} +{"session_id":"sess-10a70f62069a","input_length":2378,"output_length":77,"hash_ids":[3768114,3768115,3768116,3768117,3768118],"delay":34645.0} +{"session_id":"sess-10a70f62069a","input_length":4695,"output_length":187,"hash_ids":[3768119,3768120,3768121,3768122,3768123,3768124,3768125,3768126,3768127,3768128],"delay":2152.8} +{"session_id":"sess-10a70f62069a","input_length":3686,"output_length":30,"hash_ids":[3768129,3768130,3768131,3768132,3768133,3768134,3768135,3768136],"delay":13096.6} +{"session_id":"sess-10a70f62069a","input_length":223,"output_length":974,"hash_ids":[3768137],"delay":558.2} +{"session_id":"sess-10a70f62069a","input_length":2863,"output_length":187,"hash_ids":[3768138,3768139,3768140,3768141,3768142,3768143],"delay":11057.7} +{"session_id":"sess-10a70f62069a","input_length":3262,"output_length":1276,"hash_ids":[3768144,3768145,3768146,3768147,3768148,3768149,3768150],"delay":115.3} +{"session_id":"sess-10a70f62069a","input_length":1387,"output_length":169,"hash_ids":[3768151,3768152,3768153],"delay":6774.9} +{"session_id":"sess-10a70f62069a","input_length":4469,"output_length":275,"hash_ids":[3768154,3768155,3768156,3768157,3768158,3768159,3768160,3768161,3768162],"delay":29135.5} +{"session_id":"sess-10a70f62069a","input_length":349,"output_length":150,"hash_ids":[3768163],"delay":538.4} +{"session_id":"sess-10a70f62069a","input_length":5532,"output_length":200,"hash_ids":[3768164,3768165,3768166,3768167,3768168,3768169,3768170,3768171,3768172,3768173,3768174],"delay":67.9} +{"session_id":"sess-10a70f62069a","input_length":6011,"output_length":78,"hash_ids":[3768175,3768176,3768177,3768178,3768179,3768180,3768181,3768182,3768183,3768184,3768185,3768186],"delay":1249.2} +{"session_id":"sess-10a70f62069a","input_length":183,"output_length":425,"hash_ids":[3768187],"delay":603.1} +{"session_id":"sess-10a70f62069a","input_length":272,"output_length":674,"hash_ids":[3768188],"delay":13127.3} +{"session_id":"sess-10a70f62069a","input_length":2428,"output_length":363,"hash_ids":[3768189,3768190,3768191,3768192,3768193],"delay":3036.5} +{"session_id":"sess-10a70f62069a","input_length":2337,"output_length":1676,"hash_ids":[3768194,3768195,3768196,3768197,3768198],"delay":546.6} +{"session_id":"sess-10a70f62069a","input_length":3452,"output_length":56,"hash_ids":[3768199,3768200,3768201,3768202,3768203,3768204,3768205],"delay":243.2} +{"session_id":"sess-10a70f62069a","input_length":591,"output_length":461,"hash_ids":[3768206,3768207],"delay":441.1} +{"session_id":"sess-9b979a64f9cf","input_length":54815,"output_length":50,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,3772063,3772064,3772065,3772066,3772067],"timestamp":0.0,"group_id":7} +{"session_id":"sess-9b979a64f9cf","input_length":575,"output_length":1260,"hash_ids":[3772068,3772069],"delay":2001.2} +{"session_id":"sess-9b979a64f9cf","input_length":1402,"output_length":735,"hash_ids":[3772070,3772071,3772072],"delay":2705.9} +{"session_id":"sess-9b979a64f9cf","input_length":1659,"output_length":443,"hash_ids":[3772073,3772074,3772075,3772076],"delay":1891.0} +{"session_id":"sess-9b979a64f9cf","input_length":1369,"output_length":191,"hash_ids":[3772077,3772078,3772079],"delay":429.8} +{"session_id":"sess-7dbedd3d6dde","input_length":53758,"output_length":380,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3776063,3776064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7dbedd3d6dde","input_length":8805,"output_length":2445,"hash_ids":[3776065,3776066,3776067,3776068,3776069,3776070,3776071,3776072,3776073,3776074,3776075,3776076,3776077,3776078,3776079,3776080,3776081,3776082],"delay":415.9} +{"session_id":"sess-7dbedd3d6dde","input_length":2380,"output_length":112,"hash_ids":[3776083,3776084,3776085,3776086,3776087],"delay":794.7} +{"session_id":"sess-7dbedd3d6dde","input_length":491,"output_length":83,"hash_ids":[3776088],"delay":175.2} +{"session_id":"sess-7dbedd3d6dde","input_length":4848,"output_length":95,"hash_ids":[3776089,3776090,3776091,3776092,3776093,3776094,3776095,3776096,3776097,3776098],"delay":16379.4} +{"session_id":"sess-7dbedd3d6dde","input_length":3564,"output_length":278,"hash_ids":[3776099,3776100,3776101,3776102,3776103,3776104,3776105],"delay":595.2} +{"session_id":"sess-7dbedd3d6dde","input_length":419,"output_length":454,"hash_ids":[3776106],"delay":733.1} +{"session_id":"sess-7dbedd3d6dde","input_length":4368,"output_length":334,"hash_ids":[3776107,3776108,3776109,3776110,3776111,3776112,3776113,3776114,3776115],"delay":31919.5} +{"session_id":"sess-7dbedd3d6dde","input_length":267,"output_length":216,"hash_ids":[3776116],"delay":327.6} +{"session_id":"sess-7dbedd3d6dde","input_length":1173,"output_length":1861,"hash_ids":[3776117,3776118,3776119],"delay":42419.2} +{"session_id":"sess-7dbedd3d6dde","input_length":2080,"output_length":1389,"hash_ids":[3776120,3776121,3776122,3776123,3776124],"delay":980.2} +{"session_id":"sess-7dbedd3d6dde","input_length":1116,"output_length":422,"hash_ids":[3776125,3776126,3776127],"delay":327.5} +{"session_id":"sess-7dbedd3d6dde","input_length":351,"output_length":400,"hash_ids":[3776128],"delay":601.5} +{"session_id":"sess-7dbedd3d6dde","input_length":349,"output_length":45,"hash_ids":[3776129],"delay":6772.7} +{"session_id":"sess-7dbedd3d6dde","input_length":145,"output_length":370,"hash_ids":[3776130],"delay":1135.7} +{"session_id":"sess-7dbedd3d6dde","input_length":3271,"output_length":64,"hash_ids":[3776131,3776132,3776133,3776134,3776135,3776136,3776137],"delay":371.3} +{"session_id":"sess-7dbedd3d6dde","input_length":1909,"output_length":310,"hash_ids":[3776138,3776139,3776140,3776141],"delay":316.4} +{"session_id":"sess-7dbedd3d6dde","input_length":3322,"output_length":182,"hash_ids":[3776142,3776143,3776144,3776145,3776146,3776147,3776148],"delay":279.8} +{"session_id":"sess-7dbedd3d6dde","input_length":4454,"output_length":273,"hash_ids":[3776149,3776150,3776151,3776152,3776153,3776154,3776155,3776156,3776157],"delay":734.3} +{"session_id":"sess-7dbedd3d6dde","input_length":1834,"output_length":458,"hash_ids":[3776158,3776159,3776160,3776161],"delay":780.5} +{"session_id":"sess-7dbedd3d6dde","input_length":1752,"output_length":820,"hash_ids":[3776162,3776163,3776164,3776165],"delay":77.0} +{"session_id":"sess-7dbedd3d6dde","input_length":723,"output_length":349,"hash_ids":[3776166,3776167],"delay":652.1} +{"session_id":"sess-7dbedd3d6dde","input_length":2983,"output_length":2849,"hash_ids":[3776168,3776169,3776170,3776171,3776172,3776173],"delay":823.2} +{"session_id":"sess-7dbedd3d6dde","input_length":1526,"output_length":912,"hash_ids":[3776174,3776175,3776176],"delay":3607.9} +{"session_id":"sess-7dbedd3d6dde","input_length":1548,"output_length":2042,"hash_ids":[3776177,3776178,3776179,3776180],"delay":20627.6} +{"session_id":"sess-7dbedd3d6dde","input_length":1900,"output_length":246,"hash_ids":[3776181,3776182,3776183,3776184],"delay":8764.2} +{"session_id":"sess-7dbedd3d6dde","input_length":1247,"output_length":674,"hash_ids":[3776185,3776186,3776187],"delay":3145.4} +{"session_id":"sess-54f7fe99dd08","input_length":57771,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3780063,3780064,3780065,3780066,3780067,3780068,3780069,3780070,3780071,3780072],"timestamp":0.0,"group_id":1} +{"session_id":"sess-54f7fe99dd08","input_length":7280,"output_length":434,"hash_ids":[3780073,3780074,3780075,3780076,3780077,3780078,3780079,3780080,3780081,3780082,3780083,3780084,3780085,3780086,3780087],"delay":472.5} +{"session_id":"sess-54f7fe99dd08","input_length":299,"output_length":117,"hash_ids":[3780088],"delay":1704.3} +{"session_id":"sess-54f7fe99dd08","input_length":808,"output_length":895,"hash_ids":[3780089,3780090],"delay":469.9} +{"session_id":"sess-54f7fe99dd08","input_length":2769,"output_length":374,"hash_ids":[3780091,3780092,3780093,3780094,3780095,3780096],"delay":491.2} +{"session_id":"sess-54f7fe99dd08","input_length":7783,"output_length":257,"hash_ids":[3780097,3780098,3780099,3780100,3780101,3780102,3780103,3780104,3780105,3780106,3780107,3780108,3780109,3780110,3780111,3780112],"delay":544.9} +{"session_id":"sess-54f7fe99dd08","input_length":1342,"output_length":153,"hash_ids":[3780113,3780114,3780115],"delay":8596.4} +{"session_id":"sess-54f7fe99dd08","input_length":1763,"output_length":275,"hash_ids":[3780116,3780117,3780118,3780119],"delay":2403.6} +{"session_id":"sess-71a0b65d0d10","input_length":61065,"output_length":109,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3784063,3784064,3784065,3784066,3784067,3784068,3784069,3784070,3784071,3784072,3784073,3784074,3784075,3784076,3784077,3784078,3784079],"timestamp":0.0,"group_id":3} +{"session_id":"sess-71a0b65d0d10","input_length":3232,"output_length":934,"hash_ids":[3784080,3784081,3784082,3784083,3784084,3784085,3784086],"delay":847.4} +{"session_id":"sess-71a0b65d0d10","input_length":4357,"output_length":141,"hash_ids":[3784087,3784088,3784089,3784090,3784091,3784092,3784093,3784094,3784095],"delay":1061.2} +{"session_id":"sess-71a0b65d0d10","input_length":3411,"output_length":399,"hash_ids":[3784096,3784097,3784098,3784099,3784100,3784101,3784102],"delay":24031.8} +{"session_id":"sess-71a0b65d0d10","input_length":2019,"output_length":147,"hash_ids":[3784103,3784104,3784105,3784106],"delay":1389.6} +{"session_id":"sess-71a0b65d0d10","input_length":6161,"output_length":73,"hash_ids":[3784107,3784108,3784109,3784110,3784111,3784112,3784113,3784114,3784115,3784116,3784117,3784118,3784119],"delay":788.4} +{"session_id":"sess-71a0b65d0d10","input_length":38,"output_length":145,"hash_ids":[3784120],"delay":24114.4} +{"session_id":"sess-71a0b65d0d10","input_length":1015,"output_length":855,"hash_ids":[3784121,3784122],"delay":4263.6} +{"session_id":"sess-71a0b65d0d10","input_length":6150,"output_length":264,"hash_ids":[3784123,3784124,3784125,3784126,3784127,3784128,3784129,3784130,3784131,3784132,3784133,3784134,3784135],"delay":1874.8} +{"session_id":"sess-71a0b65d0d10","input_length":840,"output_length":460,"hash_ids":[3784136,3784137],"delay":738.5} +{"session_id":"sess-71a0b65d0d10","input_length":1814,"output_length":196,"hash_ids":[3784138,3784139,3784140,3784141],"delay":727.3} +{"session_id":"sess-71a0b65d0d10","input_length":5875,"output_length":386,"hash_ids":[3784142,3784143,3784144,3784145,3784146,3784147,3784148,3784149,3784150,3784151,3784152,3784153],"delay":31046.4} +{"session_id":"sess-71a0b65d0d10","input_length":8026,"output_length":435,"hash_ids":[3784154,3784155,3784156,3784157,3784158,3784159,3784160,3784161,3784162,3784163,3784164,3784165,3784166,3784167,3784168,3784169],"delay":448.2} +{"session_id":"sess-71a0b65d0d10","input_length":8495,"output_length":30,"hash_ids":[3784170,3784171,3784172,3784173,3784174,3784175,3784176,3784177,3784178,3784179,3784180,3784181,3784182,3784183,3784184,3784185,3784186],"delay":468.7} +{"session_id":"sess-71a0b65d0d10","input_length":492,"output_length":1147,"hash_ids":[3784187],"delay":366.5} +{"session_id":"sess-71a0b65d0d10","input_length":615,"output_length":389,"hash_ids":[3784188,3784189],"delay":612.5} +{"session_id":"sess-71a0b65d0d10","input_length":1693,"output_length":751,"hash_ids":[3784190,3784191,3784192,3784193],"delay":203.2} +{"session_id":"sess-71a0b65d0d10","input_length":2731,"output_length":37,"hash_ids":[3784194,3784195,3784196,3784197,3784198,3784199],"delay":917.7} +{"session_id":"sess-71a0b65d0d10","input_length":901,"output_length":386,"hash_ids":[3784200,3784201],"delay":189.3} +{"session_id":"sess-71a0b65d0d10","input_length":2223,"output_length":838,"hash_ids":[3784202,3784203,3784204,3784205,3784206],"delay":755.1} +{"session_id":"sess-71a0b65d0d10","input_length":1440,"output_length":2375,"hash_ids":[3784207,3784208,3784209],"delay":741.4} +{"session_id":"sess-67a4f454a4da","input_length":52779,"output_length":339,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,3788063],"timestamp":0.0,"group_id":24} +{"session_id":"sess-67a4f454a4da","input_length":3766,"output_length":537,"hash_ids":[3788064,3788065,3788066,3788067,3788068,3788069,3788070,3788071],"delay":76301.8} +{"session_id":"sess-67a4f454a4da","input_length":1415,"output_length":394,"hash_ids":[3788072,3788073,3788074],"delay":707.2} +{"session_id":"sess-67a4f454a4da","input_length":4840,"output_length":848,"hash_ids":[3788075,3788076,3788077,3788078,3788079,3788080,3788081,3788082,3788083,3788084],"delay":1740.0} +{"session_id":"sess-67a4f454a4da","input_length":345,"output_length":667,"hash_ids":[3788085],"delay":2635.6} +{"session_id":"sess-67a4f454a4da","input_length":1129,"output_length":59,"hash_ids":[3788086,3788087,3788088],"delay":3587.4} +{"session_id":"sess-67a4f454a4da","input_length":2811,"output_length":1192,"hash_ids":[3788089,3788090,3788091,3788092,3788093,3788094],"delay":36271.6} +{"session_id":"sess-67a4f454a4da","input_length":2294,"output_length":481,"hash_ids":[3788095,3788096,3788097,3788098,3788099],"delay":17275.0} +{"session_id":"sess-67a4f454a4da","input_length":2351,"output_length":652,"hash_ids":[3788100,3788101,3788102,3788103,3788104],"delay":193.2} +{"session_id":"sess-67a4f454a4da","input_length":459,"output_length":127,"hash_ids":[3788105],"delay":533.3} +{"session_id":"sess-67a4f454a4da","input_length":2653,"output_length":399,"hash_ids":[3788106,3788107,3788108,3788109,3788110,3788111],"delay":1070.7} +{"session_id":"sess-67a4f454a4da","input_length":959,"output_length":424,"hash_ids":[3788112,3788113],"delay":25508.9} +{"session_id":"sess-67a4f454a4da","input_length":1122,"output_length":195,"hash_ids":[3788114,3788115,3788116],"delay":151.2} +{"session_id":"sess-67a4f454a4da","input_length":8984,"output_length":164,"hash_ids":[3788117,3788118,3788119,3788120,3788121,3788122,3788123,3788124,3788125,3788126,3788127,3788128,3788129,3788130,3788131,3788132,3788133,3788134],"delay":708.9} +{"session_id":"sess-67a4f454a4da","input_length":7232,"output_length":1746,"hash_ids":[3788135,3788136,3788137,3788138,3788139,3788140,3788141,3788142,3788143,3788144,3788145,3788146,3788147,3788148,3788149],"delay":17545.8} +{"session_id":"sess-67a4f454a4da","input_length":418,"output_length":324,"hash_ids":[3788150],"delay":447.6} +{"session_id":"sess-67a4f454a4da","input_length":6706,"output_length":2036,"hash_ids":[3788151,3788152,3788153,3788154,3788155,3788156,3788157,3788158,3788159,3788160,3788161,3788162,3788163,3788164],"delay":1056.3} +{"session_id":"sess-67a4f454a4da","input_length":2279,"output_length":417,"hash_ids":[3788165,3788166,3788167,3788168,3788169],"delay":886.6} +{"session_id":"sess-67a4f454a4da","input_length":194,"output_length":109,"hash_ids":[3788170],"delay":3455.7} +{"session_id":"sess-67a4f454a4da","input_length":4156,"output_length":274,"hash_ids":[3788171,3788172,3788173,3788174,3788175,3788176,3788177,3788178,3788179],"delay":689.9} +{"session_id":"sess-67a4f454a4da","input_length":2959,"output_length":471,"hash_ids":[3788180,3788181,3788182,3788183,3788184,3788185],"delay":1053.0} +{"session_id":"sess-67a4f454a4da","input_length":6732,"output_length":344,"hash_ids":[3788186,3788187,3788188,3788189,3788190,3788191,3788192,3788193,3788194,3788195,3788196,3788197,3788198,3788199],"delay":600.8} +{"session_id":"sess-67a4f454a4da","input_length":2059,"output_length":283,"hash_ids":[3788200,3788201,3788202,3788203,3788204],"delay":403.2} +{"session_id":"sess-4c3c5e9b0d05","input_length":53152,"output_length":265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3792063],"timestamp":0.0,"group_id":2} +{"session_id":"sess-4c3c5e9b0d05","input_length":273,"output_length":156,"hash_ids":[3792064],"delay":482.0} +{"session_id":"sess-4c3c5e9b0d05","input_length":8355,"output_length":119,"hash_ids":[3792065,3792066,3792067,3792068,3792069,3792070,3792071,3792072,3792073,3792074,3792075,3792076,3792077,3792078,3792079,3792080,3792081],"delay":40483.1} +{"session_id":"sess-4c3c5e9b0d05","input_length":4750,"output_length":95,"hash_ids":[3792082,3792083,3792084,3792085,3792086,3792087,3792088,3792089,3792090,3792091],"delay":22622.4} +{"session_id":"sess-4c3c5e9b0d05","input_length":456,"output_length":1073,"hash_ids":[3792092],"delay":1022.6} +{"session_id":"sess-4c3c5e9b0d05","input_length":1384,"output_length":216,"hash_ids":[3792093,3792094,3792095],"delay":1837.6} +{"session_id":"sess-4c3c5e9b0d05","input_length":4463,"output_length":113,"hash_ids":[3792096,3792097,3792098,3792099,3792100,3792101,3792102,3792103,3792104],"delay":1748.4} +{"session_id":"sess-4c3c5e9b0d05","input_length":189,"output_length":917,"hash_ids":[3792105],"delay":657.0} +{"session_id":"sess-4c3c5e9b0d05","input_length":2044,"output_length":439,"hash_ids":[3792106,3792107,3792108,3792109],"delay":2374.1} +{"session_id":"sess-4c3c5e9b0d05","input_length":774,"output_length":115,"hash_ids":[3792110,3792111],"delay":9832.4} +{"session_id":"sess-4c3c5e9b0d05","input_length":965,"output_length":133,"hash_ids":[3792112,3792113],"delay":239.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":1792,"output_length":239,"hash_ids":[3792114,3792115,3792116,3792117],"delay":20918.3} +{"session_id":"sess-4c3c5e9b0d05","input_length":6456,"output_length":54,"hash_ids":[3792118,3792119,3792120,3792121,3792122,3792123,3792124,3792125,3792126,3792127,3792128,3792129,3792130],"delay":1901.5} +{"session_id":"sess-4c3c5e9b0d05","input_length":2955,"output_length":88,"hash_ids":[3792131,3792132,3792133,3792134,3792135,3792136],"delay":38738.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":350,"output_length":355,"hash_ids":[3792137],"delay":1617.9} +{"session_id":"sess-4c3c5e9b0d05","input_length":1861,"output_length":278,"hash_ids":[3792138,3792139,3792140,3792141],"delay":4681.9} +{"session_id":"sess-4c3c5e9b0d05","input_length":2752,"output_length":1310,"hash_ids":[3792142,3792143,3792144,3792145,3792146,3792147],"delay":428.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":2299,"output_length":427,"hash_ids":[3792148,3792149,3792150,3792151,3792152],"delay":349.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":2435,"output_length":57,"hash_ids":[3792153,3792154,3792155,3792156,3792157],"delay":1304.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":5047,"output_length":587,"hash_ids":[3792158,3792159,3792160,3792161,3792162,3792163,3792164,3792165,3792166,3792167],"delay":616.2} +{"session_id":"sess-4c3c5e9b0d05","input_length":6757,"output_length":541,"hash_ids":[3792168,3792169,3792170,3792171,3792172,3792173,3792174,3792175,3792176,3792177,3792178,3792179,3792180,3792181],"delay":660.8} +{"session_id":"sess-4c3c5e9b0d05","input_length":251,"output_length":1195,"hash_ids":[3792182],"delay":5640.6} +{"session_id":"sess-4c3c5e9b0d05","input_length":377,"output_length":151,"hash_ids":[3792183],"delay":260.2} +{"session_id":"sess-4c3c5e9b0d05","input_length":1097,"output_length":367,"hash_ids":[3792184,3792185,3792186],"delay":593.6} +{"session_id":"sess-4c3c5e9b0d05","input_length":6848,"output_length":1254,"hash_ids":[3792187,3792188,3792189,3792190,3792191,3792192,3792193,3792194,3792195,3792196,3792197,3792198,3792199,3792200],"delay":382.4} +{"session_id":"sess-4c3c5e9b0d05","input_length":398,"output_length":85,"hash_ids":[3792201],"delay":3003.4} +{"session_id":"sess-4c3c5e9b0d05","input_length":566,"output_length":177,"hash_ids":[3792202,3792203],"delay":458.5} +{"session_id":"sess-4c3c5e9b0d05","input_length":161,"output_length":234,"hash_ids":[3792204],"delay":10919.6} +{"session_id":"sess-3c4fea87e363","input_length":62479,"output_length":133,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3796063,3796064,3796065,3796066,3796067,3796068,3796069,3796070,3796071,3796072,3796073,3796074,3796075,3796076,3796077,3796078,3796079,3796080,3796081,3796082],"timestamp":0.0,"group_id":5} +{"session_id":"sess-3c4fea87e363","input_length":6663,"output_length":380,"hash_ids":[3796083,3796084,3796085,3796086,3796087,3796088,3796089,3796090,3796091,3796092,3796093,3796094,3796095,3796096],"delay":551.2} +{"session_id":"sess-3c4fea87e363","input_length":1279,"output_length":362,"hash_ids":[3796097,3796098,3796099],"delay":914.4} +{"session_id":"sess-3c4fea87e363","input_length":1537,"output_length":424,"hash_ids":[3796100,3796101,3796102,3796103],"delay":2070.4} +{"session_id":"sess-3c4fea87e363","input_length":3828,"output_length":381,"hash_ids":[3796104,3796105,3796106,3796107,3796108,3796109,3796110,3796111],"delay":1099.0} +{"session_id":"sess-3c4fea87e363","input_length":1282,"output_length":625,"hash_ids":[3796112,3796113,3796114],"delay":218.4} +{"session_id":"sess-3c4fea87e363","input_length":912,"output_length":133,"hash_ids":[3796115,3796116],"delay":2404.9} +{"session_id":"sess-3c4fea87e363","input_length":1096,"output_length":203,"hash_ids":[3796117,3796118,3796119],"delay":505.2} +{"session_id":"sess-3c4fea87e363","input_length":2065,"output_length":2055,"hash_ids":[3796120,3796121,3796122,3796123,3796124],"delay":808.8} +{"session_id":"sess-3c4fea87e363","input_length":1549,"output_length":1174,"hash_ids":[3796125,3796126,3796127,3796128],"delay":38240.5} +{"session_id":"sess-3c4fea87e363","input_length":9382,"output_length":157,"hash_ids":[3796129,3796130,3796131,3796132,3796133,3796134,3796135,3796136,3796137,3796138,3796139,3796140,3796141,3796142,3796143,3796144,3796145,3796146,3796147],"delay":9424.4} +{"session_id":"sess-3c4fea87e363","input_length":1148,"output_length":98,"hash_ids":[3796148,3796149,3796150],"delay":592.9} +{"session_id":"sess-3c4fea87e363","input_length":421,"output_length":116,"hash_ids":[3796151],"delay":592.6} +{"session_id":"sess-3c4fea87e363","input_length":5313,"output_length":959,"hash_ids":[3796152,3796153,3796154,3796155,3796156,3796157,3796158,3796159,3796160,3796161,3796162],"delay":855.4} +{"session_id":"sess-3c4fea87e363","input_length":2713,"output_length":274,"hash_ids":[3796163,3796164,3796165,3796166,3796167,3796168],"delay":1534.1} +{"session_id":"sess-3c4fea87e363","input_length":3850,"output_length":681,"hash_ids":[3796169,3796170,3796171,3796172,3796173,3796174,3796175,3796176],"delay":146.8} +{"session_id":"sess-3c4fea87e363","input_length":265,"output_length":53,"hash_ids":[3796177],"delay":250.4} +{"session_id":"sess-3c4fea87e363","input_length":185,"output_length":988,"hash_ids":[3796178],"delay":14968.1} +{"session_id":"sess-3c4fea87e363","input_length":375,"output_length":408,"hash_ids":[3796179],"delay":7359.9} +{"session_id":"sess-3c4fea87e363","input_length":8669,"output_length":108,"hash_ids":[3796180,3796181,3796182,3796183,3796184,3796185,3796186,3796187,3796188,3796189,3796190,3796191,3796192,3796193,3796194,3796195,3796196],"delay":2092.7} +{"session_id":"sess-3c4fea87e363","input_length":593,"output_length":442,"hash_ids":[3796197,3796198],"delay":409.9} +{"session_id":"sess-601800134186","input_length":58046,"output_length":239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3800063,3800064,3800065,3800066,3800067,3800068,3800069,3800070,3800071,3800072,3800073],"timestamp":0.0,"group_id":5} +{"session_id":"sess-601800134186","input_length":2803,"output_length":823,"hash_ids":[3800074,3800075,3800076,3800077,3800078,3800079],"delay":9891.0} +{"session_id":"sess-601800134186","input_length":901,"output_length":848,"hash_ids":[3800080,3800081],"delay":13481.8} +{"session_id":"sess-601800134186","input_length":1682,"output_length":87,"hash_ids":[3800082,3800083,3800084,3800085],"delay":2827.2} +{"session_id":"sess-601800134186","input_length":2017,"output_length":216,"hash_ids":[3800086,3800087,3800088,3800089],"delay":2071.4} +{"session_id":"sess-601800134186","input_length":4524,"output_length":47,"hash_ids":[3800090,3800091,3800092,3800093,3800094,3800095,3800096,3800097,3800098],"delay":647.6} +{"session_id":"sess-601800134186","input_length":606,"output_length":291,"hash_ids":[3800099,3800100],"delay":3904.4} +{"session_id":"sess-601800134186","input_length":4587,"output_length":193,"hash_ids":[3800101,3800102,3800103,3800104,3800105,3800106,3800107,3800108,3800109],"delay":7364.8} +{"session_id":"sess-601800134186","input_length":6726,"output_length":542,"hash_ids":[3800110,3800111,3800112,3800113,3800114,3800115,3800116,3800117,3800118,3800119,3800120,3800121,3800122,3800123],"delay":2643.6} +{"session_id":"sess-601800134186","input_length":243,"output_length":406,"hash_ids":[3800124],"delay":348.0} +{"session_id":"sess-601800134186","input_length":1960,"output_length":299,"hash_ids":[3800125,3800126,3800127,3800128],"delay":1365.0} +{"session_id":"sess-601800134186","input_length":539,"output_length":352,"hash_ids":[3800129,3800130],"delay":2931.6} +{"session_id":"sess-601800134186","input_length":5757,"output_length":101,"hash_ids":[3800131,3800132,3800133,3800134,3800135,3800136,3800137,3800138,3800139,3800140,3800141,3800142],"delay":1541.4} +{"session_id":"sess-601800134186","input_length":1911,"output_length":800,"hash_ids":[3800143,3800144,3800145,3800146],"delay":8829.4} +{"session_id":"sess-601800134186","input_length":2353,"output_length":46,"hash_ids":[3800147,3800148,3800149,3800150,3800151],"delay":1598.8} +{"session_id":"sess-601800134186","input_length":482,"output_length":30,"hash_ids":[3800152],"delay":11098.8} +{"session_id":"sess-601800134186","input_length":1184,"output_length":660,"hash_ids":[3800153,3800154,3800155],"delay":373.7} +{"session_id":"sess-601800134186","input_length":1329,"output_length":107,"hash_ids":[3800156,3800157,3800158],"delay":2080.1} +{"session_id":"sess-601800134186","input_length":517,"output_length":531,"hash_ids":[3800159,3800160],"delay":7538.8} +{"session_id":"sess-601800134186","input_length":3574,"output_length":152,"hash_ids":[3800161,3800162,3800163,3800164,3800165,3800166,3800167],"delay":331.0} +{"session_id":"sess-601800134186","input_length":3419,"output_length":100,"hash_ids":[3800168,3800169,3800170,3800171,3800172,3800173,3800174],"delay":11793.9} +{"session_id":"sess-601800134186","input_length":844,"output_length":362,"hash_ids":[3800175,3800176],"delay":613.9} +{"session_id":"sess-601800134186","input_length":5487,"output_length":94,"hash_ids":[3800177,3800178,3800179,3800180,3800181,3800182,3800183,3800184,3800185,3800186,3800187],"delay":1297.6} +{"session_id":"sess-601800134186","input_length":6485,"output_length":842,"hash_ids":[3800188,3800189,3800190,3800191,3800192,3800193,3800194,3800195,3800196,3800197,3800198,3800199,3800200],"delay":9599.5} +{"session_id":"sess-601800134186","input_length":2462,"output_length":33,"hash_ids":[3800201,3800202,3800203,3800204,3800205],"delay":539.3} +{"session_id":"sess-7669946adeab","input_length":55100,"output_length":226,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3804063,3804064,3804065,3804066,3804067],"timestamp":0.0,"group_id":5} +{"session_id":"sess-7669946adeab","input_length":1192,"output_length":670,"hash_ids":[3804068,3804069,3804070],"delay":39588.5} +{"session_id":"sess-7669946adeab","input_length":1910,"output_length":44,"hash_ids":[3804071,3804072,3804073,3804074],"delay":2504.5} +{"session_id":"sess-7669946adeab","input_length":1477,"output_length":583,"hash_ids":[3804075,3804076,3804077],"delay":43884.0} +{"session_id":"sess-7669946adeab","input_length":1444,"output_length":748,"hash_ids":[3804078,3804079,3804080],"delay":16529.8} +{"session_id":"sess-7669946adeab","input_length":1068,"output_length":1859,"hash_ids":[3804081,3804082,3804083],"delay":9020.6} +{"session_id":"sess-7669946adeab","input_length":3507,"output_length":321,"hash_ids":[3804084,3804085,3804086,3804087,3804088,3804089,3804090],"delay":8328.1} +{"session_id":"sess-7669946adeab","input_length":2291,"output_length":363,"hash_ids":[3804091,3804092,3804093,3804094,3804095],"delay":379.3} +{"session_id":"sess-7669946adeab","input_length":1681,"output_length":511,"hash_ids":[3804096,3804097,3804098,3804099],"delay":2158.8} +{"session_id":"sess-7669946adeab","input_length":880,"output_length":287,"hash_ids":[3804100,3804101],"delay":608.6} +{"session_id":"sess-7669946adeab","input_length":1433,"output_length":269,"hash_ids":[3804102,3804103,3804104],"delay":759.8} +{"session_id":"sess-7669946adeab","input_length":6154,"output_length":1486,"hash_ids":[3804105,3804106,3804107,3804108,3804109,3804110,3804111,3804112,3804113,3804114,3804115,3804116,3804117],"delay":9015.6} +{"session_id":"sess-7669946adeab","input_length":152,"output_length":981,"hash_ids":[3804118],"delay":1164.0} +{"session_id":"sess-7669946adeab","input_length":601,"output_length":557,"hash_ids":[3804119,3804120],"delay":279.1} +{"session_id":"sess-7669946adeab","input_length":8679,"output_length":112,"hash_ids":[3804121,3804122,3804123,3804124,3804125,3804126,3804127,3804128,3804129,3804130,3804131,3804132,3804133,3804134,3804135,3804136,3804137],"delay":1033.1} +{"session_id":"sess-7669946adeab","input_length":524,"output_length":192,"hash_ids":[3804138,3804139],"delay":2885.6} +{"session_id":"sess-7669946adeab","input_length":3127,"output_length":916,"hash_ids":[3804140,3804141,3804142,3804143,3804144,3804145,3804146],"delay":773.8} +{"session_id":"sess-7669946adeab","input_length":766,"output_length":715,"hash_ids":[3804147,3804148],"delay":1179.9} +{"session_id":"sess-7669946adeab","input_length":217,"output_length":359,"hash_ids":[3804149],"delay":543.6} +{"session_id":"sess-7669946adeab","input_length":3130,"output_length":1155,"hash_ids":[3804150,3804151,3804152,3804153,3804154,3804155,3804156],"delay":979.3} +{"session_id":"sess-7669946adeab","input_length":2054,"output_length":116,"hash_ids":[3804157,3804158,3804159,3804160,3804161],"delay":6936.1} +{"session_id":"sess-c2f3231de71c","input_length":56252,"output_length":345,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3808063,3808064,3808065,3808066,3808067,3808068,3808069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c2f3231de71c","input_length":2033,"output_length":278,"hash_ids":[3808070,3808071,3808072,3808073],"delay":2032.6} +{"session_id":"sess-c2f3231de71c","input_length":2592,"output_length":1151,"hash_ids":[3808074,3808075,3808076,3808077,3808078,3808079],"delay":309.1} +{"session_id":"sess-c2f3231de71c","input_length":1136,"output_length":115,"hash_ids":[3808080,3808081,3808082],"delay":3071.2} +{"session_id":"sess-c2f3231de71c","input_length":3919,"output_length":118,"hash_ids":[3808083,3808084,3808085,3808086,3808087,3808088,3808089,3808090],"delay":768.3} +{"session_id":"sess-c2f3231de71c","input_length":1168,"output_length":293,"hash_ids":[3808091,3808092,3808093],"delay":319.2} +{"session_id":"sess-c2f3231de71c","input_length":807,"output_length":76,"hash_ids":[3808094,3808095],"delay":1046.2} +{"session_id":"sess-c2f3231de71c","input_length":2314,"output_length":126,"hash_ids":[3808096,3808097,3808098,3808099,3808100],"delay":39097.3} +{"session_id":"sess-c2f3231de71c","input_length":2784,"output_length":322,"hash_ids":[3808101,3808102,3808103,3808104,3808105,3808106],"delay":81.3} +{"session_id":"sess-c2f3231de71c","input_length":2027,"output_length":133,"hash_ids":[3808107,3808108,3808109,3808110],"delay":1159.1} +{"session_id":"sess-c2f3231de71c","input_length":3034,"output_length":114,"hash_ids":[3808111,3808112,3808113,3808114,3808115,3808116],"delay":22555.4} +{"session_id":"sess-c2f3231de71c","input_length":6016,"output_length":683,"hash_ids":[3808117,3808118,3808119,3808120,3808121,3808122,3808123,3808124,3808125,3808126,3808127,3808128],"delay":1533.2} +{"session_id":"sess-c2f3231de71c","input_length":1593,"output_length":232,"hash_ids":[3808129,3808130,3808131,3808132],"delay":872.7} +{"session_id":"sess-e017e9e81f1e","input_length":54329,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3812063,3812064,3812065,3812066],"timestamp":0.0,"group_id":4} +{"session_id":"sess-e017e9e81f1e","input_length":1527,"output_length":291,"hash_ids":[3812067,3812068,3812069],"delay":23183.5} +{"session_id":"sess-e017e9e81f1e","input_length":410,"output_length":371,"hash_ids":[3812070],"delay":34048.9} +{"session_id":"sess-e017e9e81f1e","input_length":5122,"output_length":74,"hash_ids":[3812071,3812072,3812073,3812074,3812075,3812076,3812077,3812078,3812079,3812080,3812081],"delay":1901.3} +{"session_id":"sess-e017e9e81f1e","input_length":844,"output_length":387,"hash_ids":[3812082,3812083],"delay":18668.8} +{"session_id":"sess-e017e9e81f1e","input_length":4848,"output_length":80,"hash_ids":[3812084,3812085,3812086,3812087,3812088,3812089,3812090,3812091,3812092,3812093],"delay":900.8} +{"session_id":"sess-e017e9e81f1e","input_length":1998,"output_length":540,"hash_ids":[3812094,3812095,3812096,3812097],"delay":1057.7} +{"session_id":"sess-e017e9e81f1e","input_length":1272,"output_length":160,"hash_ids":[3812098,3812099,3812100],"delay":1555.2} +{"session_id":"sess-e017e9e81f1e","input_length":1034,"output_length":311,"hash_ids":[3812101,3812102,3812103],"delay":928.0} +{"session_id":"sess-f34474d10c3a","input_length":56197,"output_length":1833,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3816063,3816064,3816065,3816066,3816067,3816068,3816069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f34474d10c3a","input_length":633,"output_length":63,"hash_ids":[3816070,3816071],"delay":28416.0} +{"session_id":"sess-f34474d10c3a","input_length":3263,"output_length":392,"hash_ids":[3816072,3816073,3816074,3816075,3816076,3816077,3816078],"delay":39057.5} +{"session_id":"sess-f34474d10c3a","input_length":293,"output_length":1868,"hash_ids":[3816079],"delay":431.2} +{"session_id":"sess-f34474d10c3a","input_length":1714,"output_length":485,"hash_ids":[3816080,3816081,3816082,3816083],"delay":1442.4} +{"session_id":"sess-f34474d10c3a","input_length":6395,"output_length":292,"hash_ids":[3816084,3816085,3816086,3816087,3816088,3816089,3816090,3816091,3816092,3816093,3816094,3816095,3816096],"delay":1148.2} +{"session_id":"sess-f34474d10c3a","input_length":3608,"output_length":427,"hash_ids":[3816097,3816098,3816099,3816100,3816101,3816102,3816103,3816104],"delay":4029.9} +{"session_id":"sess-f34474d10c3a","input_length":5822,"output_length":1348,"hash_ids":[3816105,3816106,3816107,3816108,3816109,3816110,3816111,3816112,3816113,3816114,3816115,3816116],"delay":1017.4} +{"session_id":"sess-f34474d10c3a","input_length":976,"output_length":91,"hash_ids":[3816117,3816118],"delay":643.1} +{"session_id":"sess-f34474d10c3a","input_length":1628,"output_length":1192,"hash_ids":[3816119,3816120,3816121,3816122],"delay":486.4} +{"session_id":"sess-f34474d10c3a","input_length":593,"output_length":109,"hash_ids":[3816123,3816124],"delay":20989.4} +{"session_id":"sess-f34474d10c3a","input_length":2758,"output_length":2283,"hash_ids":[3816125,3816126,3816127,3816128,3816129,3816130],"delay":1715.6} +{"session_id":"sess-f34474d10c3a","input_length":4430,"output_length":1105,"hash_ids":[3816131,3816132,3816133,3816134,3816135,3816136,3816137,3816138,3816139],"delay":13847.0} +{"session_id":"sess-f34474d10c3a","input_length":6124,"output_length":1221,"hash_ids":[3816140,3816141,3816142,3816143,3816144,3816145,3816146,3816147,3816148,3816149,3816150,3816151],"delay":10142.9} +{"session_id":"sess-f34474d10c3a","input_length":2301,"output_length":380,"hash_ids":[3816152,3816153,3816154,3816155,3816156],"delay":1594.3} +{"session_id":"sess-f34474d10c3a","input_length":7521,"output_length":527,"hash_ids":[3816157,3816158,3816159,3816160,3816161,3816162,3816163,3816164,3816165,3816166,3816167,3816168,3816169,3816170,3816171],"delay":641.8} +{"session_id":"sess-f34474d10c3a","input_length":4265,"output_length":178,"hash_ids":[3816172,3816173,3816174,3816175,3816176,3816177,3816178,3816179,3816180],"delay":1064.0} +{"session_id":"sess-f34474d10c3a","input_length":2207,"output_length":107,"hash_ids":[3816181,3816182,3816183,3816184,3816185],"delay":556.1} +{"session_id":"sess-f34474d10c3a","input_length":6066,"output_length":111,"hash_ids":[3816186,3816187,3816188,3816189,3816190,3816191,3816192,3816193,3816194,3816195,3816196,3816197],"delay":4551.1} +{"session_id":"sess-68cfc4b86186","input_length":77993,"output_length":45,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3820063,3820064,3820065,3820066,3820067,3820068,3820069,3820070,3820071,3820072,3820073,3820074,3820075,3820076,3820077,3820078,3820079,3820080,3820081,3820082,3820083,3820084,3820085,3820086,3820087,3820088,3820089,3820090,3820091,3820092,3820093,3820094,3820095,3820096,3820097,3820098,3820099,3820100,3820101,3820102,3820103,3820104,3820105,3820106,3820107,3820108,3820109,3820110,3820111,3820112],"timestamp":0.0,"group_id":18} +{"session_id":"sess-68cfc4b86186","input_length":303,"output_length":248,"hash_ids":[3820113],"delay":2536.3} +{"session_id":"sess-68cfc4b86186","input_length":3378,"output_length":184,"hash_ids":[3820114,3820115,3820116,3820117,3820118,3820119,3820120],"delay":1006.8} +{"session_id":"sess-68cfc4b86186","input_length":3028,"output_length":1776,"hash_ids":[3820121,3820122,3820123,3820124,3820125,3820126],"delay":764.3} +{"session_id":"sess-68cfc4b86186","input_length":1417,"output_length":285,"hash_ids":[3820127,3820128,3820129],"delay":1091.8} +{"session_id":"sess-68cfc4b86186","input_length":1963,"output_length":131,"hash_ids":[3820130,3820131,3820132,3820133],"delay":415.2} +{"session_id":"sess-160fdd71d406","input_length":72360,"output_length":1854,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3824063,3824064,3824065,3824066,3824067,3824068,3824069,3824070,3824071,3824072,3824073,3824074,3824075,3824076,3824077,3824078,3824079,3824080,3824081,3824082,3824083,3824084,3824085,3824086,3824087,3824088,3824089,3824090,3824091,3824092,3824093,3824094,3824095,3824096,3824097,3824098,3824099,3824100,3824101],"timestamp":0.0,"group_id":18} +{"session_id":"sess-160fdd71d406","input_length":3427,"output_length":1764,"hash_ids":[3824102,3824103,3824104,3824105,3824106,3824107,3824108],"delay":2533.9} +{"session_id":"sess-2f2987502f89","input_length":58774,"output_length":33,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3828063,3828064,3828065,3828066,3828067,3828068,3828069,3828070,3828071,3828072,3828073,3828074],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2f2987502f89","input_length":717,"output_length":149,"hash_ids":[3828075,3828076],"delay":49785.7} +{"session_id":"sess-2f2987502f89","input_length":1841,"output_length":126,"hash_ids":[3828077,3828078,3828079,3828080],"delay":1356.2} +{"session_id":"sess-2f2987502f89","input_length":1309,"output_length":908,"hash_ids":[3828081,3828082,3828083],"delay":1468.7} +{"session_id":"sess-2f2987502f89","input_length":4885,"output_length":250,"hash_ids":[3828084,3828085,3828086,3828087,3828088,3828089,3828090,3828091,3828092,3828093],"delay":11982.0} +{"session_id":"sess-2f2987502f89","input_length":2239,"output_length":250,"hash_ids":[3828094,3828095,3828096,3828097,3828098],"delay":349.2} +{"session_id":"sess-2f2987502f89","input_length":1316,"output_length":144,"hash_ids":[3828099,3828100,3828101],"delay":8729.7} +{"session_id":"sess-2f2987502f89","input_length":2095,"output_length":255,"hash_ids":[3828102,3828103,3828104,3828105,3828106],"delay":5301.4} +{"session_id":"sess-2f2987502f89","input_length":1099,"output_length":30,"hash_ids":[3828107,3828108,3828109],"delay":35126.5} +{"session_id":"sess-2f2987502f89","input_length":8579,"output_length":108,"hash_ids":[3828110,3828111,3828112,3828113,3828114,3828115,3828116,3828117,3828118,3828119,3828120,3828121,3828122,3828123,3828124,3828125,3828126],"delay":3914.1} +{"session_id":"sess-2f2987502f89","input_length":519,"output_length":627,"hash_ids":[3828127,3828128],"delay":1558.5} +{"session_id":"sess-2f2987502f89","input_length":2374,"output_length":1361,"hash_ids":[3828129,3828130,3828131,3828132,3828133],"delay":131.0} +{"session_id":"sess-2f2987502f89","input_length":433,"output_length":295,"hash_ids":[3828134],"delay":31681.1} +{"session_id":"sess-2f2987502f89","input_length":909,"output_length":1236,"hash_ids":[3828135,3828136],"delay":136.1} +{"session_id":"sess-2f2987502f89","input_length":790,"output_length":322,"hash_ids":[3828137,3828138],"delay":966.2} +{"session_id":"sess-2f2987502f89","input_length":5914,"output_length":355,"hash_ids":[3828139,3828140,3828141,3828142,3828143,3828144,3828145,3828146,3828147,3828148,3828149,3828150],"delay":372.6} +{"session_id":"sess-2f2987502f89","input_length":638,"output_length":75,"hash_ids":[3828151,3828152],"delay":2566.4} +{"session_id":"sess-2f2987502f89","input_length":4378,"output_length":389,"hash_ids":[3828153,3828154,3828155,3828156,3828157,3828158,3828159,3828160,3828161],"delay":1201.7} +{"session_id":"sess-2f2987502f89","input_length":1648,"output_length":88,"hash_ids":[3828162,3828163,3828164,3828165],"delay":25379.1} +{"session_id":"sess-2f2987502f89","input_length":1639,"output_length":303,"hash_ids":[3828166,3828167,3828168,3828169],"delay":1755.9} +{"session_id":"sess-2f2987502f89","input_length":893,"output_length":110,"hash_ids":[3828170,3828171],"delay":333.8} +{"session_id":"sess-2f2987502f89","input_length":114,"output_length":880,"hash_ids":[3828172],"delay":694.2} +{"session_id":"sess-2f2987502f89","input_length":509,"output_length":714,"hash_ids":[3828173],"delay":753.4} +{"session_id":"sess-2f2987502f89","input_length":1365,"output_length":103,"hash_ids":[3828174,3828175,3828176],"delay":478.3} +{"session_id":"sess-2f2987502f89","input_length":910,"output_length":503,"hash_ids":[3828177,3828178],"delay":1042.5} +{"session_id":"sess-2f2987502f89","input_length":911,"output_length":1255,"hash_ids":[3828179,3828180],"delay":1114.5} +{"session_id":"sess-2f2987502f89","input_length":3416,"output_length":398,"hash_ids":[3828181,3828182,3828183,3828184,3828185,3828186,3828187],"delay":406.4} +{"session_id":"sess-2f2987502f89","input_length":3153,"output_length":160,"hash_ids":[3828188,3828189,3828190,3828191,3828192,3828193,3828194],"delay":1776.5} +{"session_id":"sess-2f2987502f89","input_length":1501,"output_length":41,"hash_ids":[3828195,3828196,3828197],"delay":205.7} +{"session_id":"sess-2f2987502f89","input_length":3582,"output_length":325,"hash_ids":[3828198,3828199,3828200,3828201,3828202,3828203,3828204],"delay":6171.0} +{"session_id":"sess-910f468790e7","input_length":71786,"output_length":628,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3832063,3832064,3832065,3832066,3832067,3832068,3832069,3832070,3832071,3832072,3832073,3832074,3832075,3832076,3832077,3832078,3832079,3832080,3832081,3832082,3832083,3832084,3832085,3832086,3832087,3832088,3832089,3832090,3832091,3832092,3832093,3832094,3832095,3832096,3832097,3832098,3832099,3832100],"timestamp":0.0,"group_id":2} +{"session_id":"sess-910f468790e7","input_length":357,"output_length":126,"hash_ids":[3832101],"delay":2078.6} +{"session_id":"sess-910f468790e7","input_length":1836,"output_length":358,"hash_ids":[3832102,3832103,3832104,3832105],"delay":2144.5} +{"session_id":"sess-910f468790e7","input_length":4434,"output_length":61,"hash_ids":[3832106,3832107,3832108,3832109,3832110,3832111,3832112,3832113,3832114],"delay":271.5} +{"session_id":"sess-910f468790e7","input_length":752,"output_length":345,"hash_ids":[3832115,3832116],"delay":1619.4} +{"session_id":"sess-910f468790e7","input_length":1758,"output_length":173,"hash_ids":[3832117,3832118,3832119,3832120],"delay":659.8} +{"session_id":"sess-910f468790e7","input_length":1426,"output_length":175,"hash_ids":[3832121,3832122,3832123],"delay":956.5} +{"session_id":"sess-910f468790e7","input_length":1097,"output_length":126,"hash_ids":[3832124,3832125,3832126],"delay":1540.3} +{"session_id":"sess-910f468790e7","input_length":1151,"output_length":166,"hash_ids":[3832127,3832128,3832129],"delay":1431.0} +{"session_id":"sess-910f468790e7","input_length":3602,"output_length":503,"hash_ids":[3832130,3832131,3832132,3832133,3832134,3832135,3832136,3832137],"delay":1278.6} +{"session_id":"sess-da8d79c32bdf","input_length":61078,"output_length":579,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,3836063,3836064,3836065,3836066,3836067,3836068,3836069,3836070,3836071,3836072,3836073,3836074,3836075,3836076,3836077,3836078,3836079],"timestamp":0.0,"group_id":13} +{"session_id":"sess-da8d79c32bdf","input_length":2327,"output_length":806,"hash_ids":[3836080,3836081,3836082,3836083,3836084],"delay":5404.7} +{"session_id":"sess-da8d79c32bdf","input_length":6854,"output_length":88,"hash_ids":[3836085,3836086,3836087,3836088,3836089,3836090,3836091,3836092,3836093,3836094,3836095,3836096,3836097,3836098],"delay":10530.1} +{"session_id":"sess-da8d79c32bdf","input_length":4250,"output_length":124,"hash_ids":[3836099,3836100,3836101,3836102,3836103,3836104,3836105,3836106,3836107],"delay":1161.2} +{"session_id":"sess-da8d79c32bdf","input_length":598,"output_length":432,"hash_ids":[3836108,3836109],"delay":179.7} +{"session_id":"sess-da8d79c32bdf","input_length":8540,"output_length":59,"hash_ids":[3836110,3836111,3836112,3836113,3836114,3836115,3836116,3836117,3836118,3836119,3836120,3836121,3836122,3836123,3836124,3836125,3836126],"delay":1158.6} +{"session_id":"sess-da8d79c32bdf","input_length":2792,"output_length":77,"hash_ids":[3836127,3836128,3836129,3836130,3836131,3836132],"delay":4899.9} +{"session_id":"sess-da8d79c32bdf","input_length":1529,"output_length":825,"hash_ids":[3836133,3836134,3836135],"delay":1342.8} +{"session_id":"sess-da8d79c32bdf","input_length":546,"output_length":81,"hash_ids":[3836136,3836137],"delay":12510.0} +{"session_id":"sess-da8d79c32bdf","input_length":3058,"output_length":65,"hash_ids":[3836138,3836139,3836140,3836141,3836142,3836143],"delay":166.9} +{"session_id":"sess-da8d79c32bdf","input_length":1719,"output_length":419,"hash_ids":[3836144,3836145,3836146,3836147],"delay":12400.9} +{"session_id":"sess-da8d79c32bdf","input_length":509,"output_length":187,"hash_ids":[3836148],"delay":509.1} +{"session_id":"sess-da8d79c32bdf","input_length":7777,"output_length":1346,"hash_ids":[3836149,3836150,3836151,3836152,3836153,3836154,3836155,3836156,3836157,3836158,3836159,3836160,3836161,3836162,3836163,3836164],"delay":722.5} +{"session_id":"sess-da8d79c32bdf","input_length":2649,"output_length":183,"hash_ids":[3836165,3836166,3836167,3836168,3836169,3836170],"delay":1557.5} +{"session_id":"sess-da8d79c32bdf","input_length":4446,"output_length":282,"hash_ids":[3836171,3836172,3836173,3836174,3836175,3836176,3836177,3836178,3836179],"delay":647.7} +{"session_id":"sess-da8d79c32bdf","input_length":2044,"output_length":174,"hash_ids":[3836180,3836181,3836182,3836183],"delay":760.6} +{"session_id":"sess-da8d79c32bdf","input_length":545,"output_length":246,"hash_ids":[3836184,3836185],"delay":482.7} +{"session_id":"sess-da8d79c32bdf","input_length":3892,"output_length":1939,"hash_ids":[3836186,3836187,3836188,3836189,3836190,3836191,3836192,3836193],"delay":791.2} +{"session_id":"sess-da8d79c32bdf","input_length":1343,"output_length":310,"hash_ids":[3836194,3836195,3836196],"delay":381.3} +{"session_id":"sess-da8d79c32bdf","input_length":750,"output_length":798,"hash_ids":[3836197,3836198],"delay":8656.7} +{"session_id":"sess-da8d79c32bdf","input_length":3969,"output_length":162,"hash_ids":[3836199,3836200,3836201,3836202,3836203,3836204,3836205,3836206],"delay":176.7} +{"session_id":"sess-da8d79c32bdf","input_length":273,"output_length":749,"hash_ids":[3836207],"delay":151.3} +{"session_id":"sess-c51b0eb97836","input_length":61579,"output_length":135,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3840063,3840064,3840065,3840066,3840067,3840068,3840069,3840070,3840071,3840072,3840073,3840074,3840075,3840076,3840077,3840078,3840079,3840080],"timestamp":0.0,"group_id":6} +{"session_id":"sess-c51b0eb97836","input_length":4190,"output_length":1500,"hash_ids":[3840081,3840082,3840083,3840084,3840085,3840086,3840087,3840088,3840089],"delay":1869.5} +{"session_id":"sess-c51b0eb97836","input_length":5892,"output_length":383,"hash_ids":[3840090,3840091,3840092,3840093,3840094,3840095,3840096,3840097,3840098,3840099,3840100,3840101],"delay":1704.8} +{"session_id":"sess-c51b0eb97836","input_length":894,"output_length":854,"hash_ids":[3840102,3840103],"delay":63032.9} +{"session_id":"sess-c51b0eb97836","input_length":1260,"output_length":373,"hash_ids":[3840104,3840105,3840106],"delay":415.7} +{"session_id":"sess-c51b0eb97836","input_length":7101,"output_length":224,"hash_ids":[3840107,3840108,3840109,3840110,3840111,3840112,3840113,3840114,3840115,3840116,3840117,3840118,3840119,3840120],"delay":52111.7} +{"session_id":"sess-c51b0eb97836","input_length":1374,"output_length":218,"hash_ids":[3840121,3840122,3840123],"delay":1275.2} +{"session_id":"sess-c51b0eb97836","input_length":8050,"output_length":684,"hash_ids":[3840124,3840125,3840126,3840127,3840128,3840129,3840130,3840131,3840132,3840133,3840134,3840135,3840136,3840137,3840138,3840139],"delay":52969.7} +{"session_id":"sess-c51b0eb97836","input_length":286,"output_length":1020,"hash_ids":[3840140],"delay":826.6} +{"session_id":"sess-c51b0eb97836","input_length":8537,"output_length":706,"hash_ids":[3840141,3840142,3840143,3840144,3840145,3840146,3840147,3840148,3840149,3840150,3840151,3840152,3840153,3840154,3840155,3840156,3840157],"delay":863.3} +{"session_id":"sess-c51b0eb97836","input_length":3098,"output_length":82,"hash_ids":[3840158,3840159,3840160,3840161,3840162,3840163,3840164],"delay":340.0} +{"session_id":"sess-c51b0eb97836","input_length":2307,"output_length":30,"hash_ids":[3840165,3840166,3840167,3840168,3840169],"delay":7234.8} +{"session_id":"sess-c51b0eb97836","input_length":1592,"output_length":113,"hash_ids":[3840170,3840171,3840172,3840173],"delay":560.4} +{"session_id":"sess-c51b0eb97836","input_length":1756,"output_length":30,"hash_ids":[3840174,3840175,3840176,3840177],"delay":5087.5} +{"session_id":"sess-c51b0eb97836","input_length":763,"output_length":46,"hash_ids":[3840178,3840179],"delay":7214.0} +{"session_id":"sess-c51b0eb97836","input_length":1793,"output_length":1078,"hash_ids":[3840180,3840181,3840182,3840183],"delay":339.8} +{"session_id":"sess-c51b0eb97836","input_length":1449,"output_length":51,"hash_ids":[3840184,3840185,3840186],"delay":10203.7} +{"session_id":"sess-c51b0eb97836","input_length":515,"output_length":125,"hash_ids":[3840187,3840188],"delay":1056.5} +{"session_id":"sess-c51b0eb97836","input_length":813,"output_length":240,"hash_ids":[3840189,3840190],"delay":20963.8} +{"session_id":"sess-c51b0eb97836","input_length":9924,"output_length":249,"hash_ids":[3840191,3840192,3840193,3840194,3840195,3840196,3840197,3840198,3840199,3840200,3840201,3840202,3840203,3840204,3840205,3840206,3840207,3840208,3840209,3840210],"delay":750.9} +{"session_id":"sess-8371b2f20a6f","input_length":57035,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3844063,3844064,3844065,3844066,3844067,3844068,3844069,3844070,3844071],"timestamp":0.0,"group_id":3} +{"session_id":"sess-8371b2f20a6f","input_length":268,"output_length":1006,"hash_ids":[3844072],"delay":1834.6} +{"session_id":"sess-8371b2f20a6f","input_length":4067,"output_length":264,"hash_ids":[3844073,3844074,3844075,3844076,3844077,3844078,3844079,3844080],"delay":1020.3} +{"session_id":"sess-8371b2f20a6f","input_length":2481,"output_length":202,"hash_ids":[3844081,3844082,3844083,3844084,3844085],"delay":43452.7} +{"session_id":"sess-8371b2f20a6f","input_length":603,"output_length":819,"hash_ids":[3844086,3844087],"delay":100.7} +{"session_id":"sess-8371b2f20a6f","input_length":477,"output_length":68,"hash_ids":[3844088],"delay":2032.5} +{"session_id":"sess-8371b2f20a6f","input_length":526,"output_length":321,"hash_ids":[3844089,3844090],"delay":2162.9} +{"session_id":"sess-8371b2f20a6f","input_length":438,"output_length":229,"hash_ids":[3844091],"delay":1029.0} +{"session_id":"sess-8371b2f20a6f","input_length":1505,"output_length":333,"hash_ids":[3844092,3844093,3844094],"delay":2931.0} +{"session_id":"sess-8371b2f20a6f","input_length":685,"output_length":102,"hash_ids":[3844095,3844096],"delay":823.3} +{"session_id":"sess-8371b2f20a6f","input_length":789,"output_length":614,"hash_ids":[3844097,3844098],"delay":6173.1} +{"session_id":"sess-8371b2f20a6f","input_length":576,"output_length":255,"hash_ids":[3844099,3844100],"delay":43286.2} +{"session_id":"sess-8371b2f20a6f","input_length":3291,"output_length":53,"hash_ids":[3844101,3844102,3844103,3844104,3844105,3844106,3844107],"delay":1510.8} +{"session_id":"sess-8371b2f20a6f","input_length":489,"output_length":190,"hash_ids":[3844108],"delay":1870.7} +{"session_id":"sess-8371b2f20a6f","input_length":1009,"output_length":2451,"hash_ids":[3844109,3844110],"delay":1239.6} +{"session_id":"sess-8371b2f20a6f","input_length":1450,"output_length":1005,"hash_ids":[3844111,3844112,3844113],"delay":3918.7} +{"session_id":"sess-8371b2f20a6f","input_length":756,"output_length":402,"hash_ids":[3844114,3844115],"delay":4282.8} +{"session_id":"sess-8371b2f20a6f","input_length":3192,"output_length":427,"hash_ids":[3844116,3844117,3844118,3844119,3844120,3844121,3844122],"delay":14625.7} +{"session_id":"sess-77c4bde7fca8","input_length":54618,"output_length":281,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3848063,3848064,3848065,3848066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-77c4bde7fca8","input_length":4066,"output_length":114,"hash_ids":[3848067,3848068,3848069,3848070,3848071,3848072,3848073,3848074],"delay":1148.1} +{"session_id":"sess-77c4bde7fca8","input_length":327,"output_length":772,"hash_ids":[3848075],"delay":2259.6} +{"session_id":"sess-a4e17554eec4","input_length":59380,"output_length":204,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3852063,3852064,3852065,3852066,3852067,3852068,3852069,3852070,3852071,3852072,3852073,3852074,3852075],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a4e17554eec4","input_length":1118,"output_length":662,"hash_ids":[3852076,3852077,3852078],"delay":3720.1} +{"session_id":"sess-a4e17554eec4","input_length":3091,"output_length":277,"hash_ids":[3852079,3852080,3852081,3852082,3852083,3852084,3852085],"delay":929.1} +{"session_id":"sess-a4e17554eec4","input_length":715,"output_length":198,"hash_ids":[3852086,3852087],"delay":36864.4} +{"session_id":"sess-a4e17554eec4","input_length":4505,"output_length":133,"hash_ids":[3852088,3852089,3852090,3852091,3852092,3852093,3852094,3852095,3852096],"delay":11361.5} +{"session_id":"sess-a4e17554eec4","input_length":2545,"output_length":180,"hash_ids":[3852097,3852098,3852099,3852100,3852101],"delay":2816.9} +{"session_id":"sess-a4e17554eec4","input_length":301,"output_length":114,"hash_ids":[3852102],"delay":1036.3} +{"session_id":"sess-a4e17554eec4","input_length":2410,"output_length":135,"hash_ids":[3852103,3852104,3852105,3852106,3852107],"delay":1233.5} +{"session_id":"sess-a4e17554eec4","input_length":4291,"output_length":316,"hash_ids":[3852108,3852109,3852110,3852111,3852112,3852113,3852114,3852115,3852116],"delay":1774.7} +{"session_id":"sess-a4e17554eec4","input_length":3999,"output_length":285,"hash_ids":[3852117,3852118,3852119,3852120,3852121,3852122,3852123,3852124],"delay":13943.3} +{"session_id":"sess-a4e17554eec4","input_length":2367,"output_length":70,"hash_ids":[3852125,3852126,3852127,3852128,3852129],"delay":765.7} +{"session_id":"sess-a4e17554eec4","input_length":1662,"output_length":291,"hash_ids":[3852130,3852131,3852132,3852133],"delay":27109.1} +{"session_id":"sess-a4e17554eec4","input_length":1634,"output_length":370,"hash_ids":[3852134,3852135,3852136,3852137],"delay":2292.5} +{"session_id":"sess-a4e17554eec4","input_length":6262,"output_length":30,"hash_ids":[3852138,3852139,3852140,3852141,3852142,3852143,3852144,3852145,3852146,3852147,3852148,3852149,3852150],"delay":4743.7} +{"session_id":"sess-a4e17554eec4","input_length":406,"output_length":530,"hash_ids":[3852151],"delay":1936.6} +{"session_id":"sess-a4e17554eec4","input_length":7224,"output_length":357,"hash_ids":[3852152,3852153,3852154,3852155,3852156,3852157,3852158,3852159,3852160,3852161,3852162,3852163,3852164,3852165,3852166],"delay":331.6} +{"session_id":"sess-a4e17554eec4","input_length":6339,"output_length":111,"hash_ids":[3852167,3852168,3852169,3852170,3852171,3852172,3852173,3852174,3852175,3852176,3852177,3852178,3852179],"delay":886.0} +{"session_id":"sess-a4e17554eec4","input_length":545,"output_length":711,"hash_ids":[3852180,3852181],"delay":547.6} +{"session_id":"sess-a4e17554eec4","input_length":1371,"output_length":179,"hash_ids":[3852182,3852183,3852184],"delay":210.8} +{"session_id":"sess-a4e17554eec4","input_length":1112,"output_length":54,"hash_ids":[3852185,3852186,3852187],"delay":25999.2} +{"session_id":"sess-a4e17554eec4","input_length":739,"output_length":229,"hash_ids":[3852188,3852189],"delay":2292.8} +{"session_id":"sess-a4e17554eec4","input_length":582,"output_length":165,"hash_ids":[3852190,3852191],"delay":932.1} +{"session_id":"sess-a4e17554eec4","input_length":1363,"output_length":334,"hash_ids":[3852192,3852193,3852194],"delay":693.7} +{"session_id":"sess-a4e17554eec4","input_length":9031,"output_length":176,"hash_ids":[3852195,3852196,3852197,3852198,3852199,3852200,3852201,3852202,3852203,3852204,3852205,3852206,3852207,3852208,3852209,3852210,3852211,3852212],"delay":408.0} +{"session_id":"sess-1d10ff610c51","input_length":60436,"output_length":68,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3856063,3856064,3856065,3856066,3856067,3856068,3856069,3856070,3856071,3856072,3856073,3856074,3856075,3856076,3856077,3856078],"timestamp":0.0,"group_id":2} +{"session_id":"sess-1d10ff610c51","input_length":777,"output_length":295,"hash_ids":[3856079,3856080],"delay":2706.4} +{"session_id":"sess-1d10ff610c51","input_length":1521,"output_length":351,"hash_ids":[3856081,3856082,3856083],"delay":7407.1} +{"session_id":"sess-1d10ff610c51","input_length":1183,"output_length":923,"hash_ids":[3856084,3856085,3856086],"delay":11977.2} +{"session_id":"sess-1d10ff610c51","input_length":2407,"output_length":40,"hash_ids":[3856087,3856088,3856089,3856090,3856091],"delay":414.9} +{"session_id":"sess-1d10ff610c51","input_length":6328,"output_length":256,"hash_ids":[3856092,3856093,3856094,3856095,3856096,3856097,3856098,3856099,3856100,3856101,3856102,3856103,3856104],"delay":1359.6} +{"session_id":"sess-1d10ff610c51","input_length":2591,"output_length":119,"hash_ids":[3856105,3856106,3856107,3856108,3856109,3856110],"delay":1068.2} +{"session_id":"sess-1d10ff610c51","input_length":637,"output_length":1203,"hash_ids":[3856111,3856112],"delay":37453.1} +{"session_id":"sess-885b7827bbf1","input_length":55051,"output_length":222,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,3860063,3860064,3860065,3860066,3860067],"timestamp":0.0,"group_id":38} +{"session_id":"sess-885b7827bbf1","input_length":311,"output_length":181,"hash_ids":[3860068],"delay":4660.6} +{"session_id":"sess-885b7827bbf1","input_length":5969,"output_length":863,"hash_ids":[3860069,3860070,3860071,3860072,3860073,3860074,3860075,3860076,3860077,3860078,3860079,3860080],"delay":4180.7} +{"session_id":"sess-885b7827bbf1","input_length":1203,"output_length":593,"hash_ids":[3860081,3860082,3860083],"delay":26376.4} +{"session_id":"sess-885b7827bbf1","input_length":5737,"output_length":60,"hash_ids":[3860084,3860085,3860086,3860087,3860088,3860089,3860090,3860091,3860092,3860093,3860094,3860095],"delay":17422.5} +{"session_id":"sess-885b7827bbf1","input_length":856,"output_length":125,"hash_ids":[3860096,3860097],"delay":790.8} +{"session_id":"sess-3814c1f49d48","input_length":53802,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3864063,3864064,3864065],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3814c1f49d48","input_length":356,"output_length":193,"hash_ids":[3864066],"delay":14871.0} +{"session_id":"sess-3814c1f49d48","input_length":1022,"output_length":120,"hash_ids":[3864067,3864068],"delay":601.8} +{"session_id":"sess-3814c1f49d48","input_length":1216,"output_length":1335,"hash_ids":[3864069,3864070,3864071],"delay":22129.7} +{"session_id":"sess-3814c1f49d48","input_length":945,"output_length":424,"hash_ids":[3864072,3864073],"delay":1393.9} +{"session_id":"sess-3814c1f49d48","input_length":2884,"output_length":240,"hash_ids":[3864074,3864075,3864076,3864077,3864078,3864079],"delay":399.1} +{"session_id":"sess-3814c1f49d48","input_length":2703,"output_length":50,"hash_ids":[3864080,3864081,3864082,3864083,3864084,3864085],"delay":1169.8} +{"session_id":"sess-3814c1f49d48","input_length":794,"output_length":378,"hash_ids":[3864086,3864087],"delay":1322.6} +{"session_id":"sess-3814c1f49d48","input_length":1184,"output_length":576,"hash_ids":[3864088,3864089,3864090],"delay":22585.5} +{"session_id":"sess-3814c1f49d48","input_length":2444,"output_length":265,"hash_ids":[3864091,3864092,3864093,3864094,3864095],"delay":6768.4} +{"session_id":"sess-3814c1f49d48","input_length":742,"output_length":1060,"hash_ids":[3864096,3864097],"delay":1015.7} +{"session_id":"sess-3814c1f49d48","input_length":2950,"output_length":956,"hash_ids":[3864098,3864099,3864100,3864101,3864102,3864103],"delay":1298.1} +{"session_id":"sess-3814c1f49d48","input_length":448,"output_length":250,"hash_ids":[3864104],"delay":15704.7} +{"session_id":"sess-3814c1f49d48","input_length":8113,"output_length":75,"hash_ids":[3864105,3864106,3864107,3864108,3864109,3864110,3864111,3864112,3864113,3864114,3864115,3864116,3864117,3864118,3864119,3864120],"delay":3517.3} +{"session_id":"sess-3814c1f49d48","input_length":5773,"output_length":379,"hash_ids":[3864121,3864122,3864123,3864124,3864125,3864126,3864127,3864128,3864129,3864130,3864131,3864132],"delay":479.2} +{"session_id":"sess-3814c1f49d48","input_length":2231,"output_length":219,"hash_ids":[3864133,3864134,3864135,3864136,3864137],"delay":138.2} +{"session_id":"sess-3814c1f49d48","input_length":1145,"output_length":71,"hash_ids":[3864138,3864139,3864140],"delay":444.9} +{"session_id":"sess-3814c1f49d48","input_length":1029,"output_length":450,"hash_ids":[3864141,3864142,3864143],"delay":33963.3} +{"session_id":"sess-3814c1f49d48","input_length":1815,"output_length":695,"hash_ids":[3864144,3864145,3864146,3864147],"delay":218.2} +{"session_id":"sess-3814c1f49d48","input_length":1220,"output_length":96,"hash_ids":[3864148,3864149,3864150],"delay":2013.5} +{"session_id":"sess-3814c1f49d48","input_length":5962,"output_length":1237,"hash_ids":[3864151,3864152,3864153,3864154,3864155,3864156,3864157,3864158,3864159,3864160,3864161,3864162],"delay":776.9} +{"session_id":"sess-3814c1f49d48","input_length":987,"output_length":224,"hash_ids":[3864163,3864164],"delay":3444.7} +{"session_id":"sess-3814c1f49d48","input_length":2246,"output_length":58,"hash_ids":[3864165,3864166,3864167,3864168,3864169],"delay":736.1} +{"session_id":"sess-3814c1f49d48","input_length":1766,"output_length":270,"hash_ids":[3864170,3864171,3864172,3864173],"delay":2181.3} +{"session_id":"sess-8540daedc520","input_length":59989,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3868063,3868064,3868065,3868066,3868067,3868068,3868069,3868070,3868071,3868072,3868073,3868074,3868075,3868076,3868077],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8540daedc520","input_length":344,"output_length":1851,"hash_ids":[3868078],"delay":4358.8} +{"session_id":"sess-8540daedc520","input_length":1070,"output_length":691,"hash_ids":[3868079,3868080,3868081],"delay":244.3} +{"session_id":"sess-8540daedc520","input_length":4530,"output_length":402,"hash_ids":[3868082,3868083,3868084,3868085,3868086,3868087,3868088,3868089,3868090],"delay":20159.1} +{"session_id":"sess-8540daedc520","input_length":3997,"output_length":122,"hash_ids":[3868091,3868092,3868093,3868094,3868095,3868096,3868097,3868098],"delay":16633.0} +{"session_id":"sess-8540daedc520","input_length":950,"output_length":390,"hash_ids":[3868099,3868100],"delay":1600.2} +{"session_id":"sess-8540daedc520","input_length":350,"output_length":668,"hash_ids":[3868101],"delay":62490.0} +{"session_id":"sess-8540daedc520","input_length":1027,"output_length":86,"hash_ids":[3868102,3868103,3868104],"delay":256.4} +{"session_id":"sess-8540daedc520","input_length":1048,"output_length":271,"hash_ids":[3868105,3868106,3868107],"delay":1367.2} +{"session_id":"sess-8540daedc520","input_length":632,"output_length":480,"hash_ids":[3868108,3868109],"delay":1638.5} +{"session_id":"sess-c0567ed0e41f","input_length":53542,"output_length":781,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,3872063,3872064],"timestamp":0.0,"group_id":28} +{"session_id":"sess-c0567ed0e41f","input_length":5512,"output_length":168,"hash_ids":[3872065,3872066,3872067,3872068,3872069,3872070,3872071,3872072,3872073,3872074,3872075],"delay":16979.5} +{"session_id":"sess-c0567ed0e41f","input_length":1175,"output_length":615,"hash_ids":[3872076,3872077,3872078],"delay":604.5} +{"session_id":"sess-c0567ed0e41f","input_length":201,"output_length":110,"hash_ids":[3872079],"delay":41053.2} +{"session_id":"sess-c0567ed0e41f","input_length":657,"output_length":123,"hash_ids":[3872080,3872081],"delay":1628.0} +{"session_id":"sess-0a76ff5a2974","input_length":55223,"output_length":351,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,3876063,3876064,3876065,3876066,3876067],"timestamp":0.0,"group_id":2} +{"session_id":"sess-0a76ff5a2974","input_length":104,"output_length":76,"hash_ids":[3876068],"delay":730.6} +{"session_id":"sess-0a76ff5a2974","input_length":8247,"output_length":219,"hash_ids":[3876069,3876070,3876071,3876072,3876073,3876074,3876075,3876076,3876077,3876078,3876079,3876080,3876081,3876082,3876083,3876084,3876085],"delay":11279.2} +{"session_id":"sess-0a76ff5a2974","input_length":9006,"output_length":339,"hash_ids":[3876086,3876087,3876088,3876089,3876090,3876091,3876092,3876093,3876094,3876095,3876096,3876097,3876098,3876099,3876100,3876101,3876102,3876103],"delay":1679.2} +{"session_id":"sess-0a76ff5a2974","input_length":1421,"output_length":373,"hash_ids":[3876104,3876105,3876106],"delay":3001.2} +{"session_id":"sess-0a76ff5a2974","input_length":913,"output_length":59,"hash_ids":[3876107,3876108],"delay":606.2} +{"session_id":"sess-0a76ff5a2974","input_length":2654,"output_length":370,"hash_ids":[3876109,3876110,3876111,3876112,3876113,3876114],"delay":269.1} +{"session_id":"sess-0a76ff5a2974","input_length":625,"output_length":172,"hash_ids":[3876115,3876116],"delay":29142.9} +{"session_id":"sess-0a76ff5a2974","input_length":1135,"output_length":188,"hash_ids":[3876117,3876118,3876119],"delay":967.8} +{"session_id":"sess-0a76ff5a2974","input_length":5247,"output_length":252,"hash_ids":[3876120,3876121,3876122,3876123,3876124,3876125,3876126,3876127,3876128,3876129,3876130],"delay":1937.3} +{"session_id":"sess-0a76ff5a2974","input_length":655,"output_length":567,"hash_ids":[3876131,3876132],"delay":4183.1} +{"session_id":"sess-0a76ff5a2974","input_length":2043,"output_length":647,"hash_ids":[3876133,3876134,3876135,3876136],"delay":3255.6} +{"session_id":"sess-0a76ff5a2974","input_length":923,"output_length":1646,"hash_ids":[3876137,3876138],"delay":4308.0} +{"session_id":"sess-0a76ff5a2974","input_length":3397,"output_length":395,"hash_ids":[3876139,3876140,3876141,3876142,3876143,3876144,3876145],"delay":26877.5} +{"session_id":"sess-ce3ca435bf81","input_length":54620,"output_length":403,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3880063,3880064,3880065,3880066],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ce3ca435bf81","input_length":305,"output_length":240,"hash_ids":[3880067],"delay":2259.6} +{"session_id":"sess-ce3ca435bf81","input_length":2985,"output_length":301,"hash_ids":[3880068,3880069,3880070,3880071,3880072,3880073],"delay":309.6} +{"session_id":"sess-ce3ca435bf81","input_length":4746,"output_length":126,"hash_ids":[3880074,3880075,3880076,3880077,3880078,3880079,3880080,3880081,3880082,3880083],"delay":1454.7} +{"session_id":"sess-ce3ca435bf81","input_length":309,"output_length":1901,"hash_ids":[3880084],"delay":766.6} +{"session_id":"sess-ce3ca435bf81","input_length":334,"output_length":189,"hash_ids":[3880085],"delay":759.4} +{"session_id":"sess-ce3ca435bf81","input_length":922,"output_length":498,"hash_ids":[3880086,3880087],"delay":804.6} +{"session_id":"sess-ce3ca435bf81","input_length":1540,"output_length":799,"hash_ids":[3880088,3880089,3880090,3880091],"delay":1613.4} +{"session_id":"sess-ce3ca435bf81","input_length":4220,"output_length":72,"hash_ids":[3880092,3880093,3880094,3880095,3880096,3880097,3880098,3880099,3880100],"delay":7672.9} +{"session_id":"sess-ce3ca435bf81","input_length":5834,"output_length":344,"hash_ids":[3880101,3880102,3880103,3880104,3880105,3880106,3880107,3880108,3880109,3880110,3880111,3880112],"delay":390.0} +{"session_id":"sess-ce3ca435bf81","input_length":3464,"output_length":338,"hash_ids":[3880113,3880114,3880115,3880116,3880117,3880118,3880119],"delay":290.5} +{"session_id":"sess-ce3ca435bf81","input_length":1577,"output_length":624,"hash_ids":[3880120,3880121,3880122,3880123],"delay":8220.6} +{"session_id":"sess-ce3ca435bf81","input_length":386,"output_length":95,"hash_ids":[3880124],"delay":1714.4} +{"session_id":"sess-ce3ca435bf81","input_length":2820,"output_length":758,"hash_ids":[3880125,3880126,3880127,3880128,3880129,3880130],"delay":1473.8} +{"session_id":"sess-ce3ca435bf81","input_length":7062,"output_length":330,"hash_ids":[3880131,3880132,3880133,3880134,3880135,3880136,3880137,3880138,3880139,3880140,3880141,3880142,3880143,3880144],"delay":1573.6} +{"session_id":"sess-ce3ca435bf81","input_length":1532,"output_length":1051,"hash_ids":[3880145,3880146,3880147],"delay":1532.9} +{"session_id":"sess-ce3ca435bf81","input_length":1526,"output_length":809,"hash_ids":[3880148,3880149,3880150],"delay":2498.4} +{"session_id":"sess-ce3ca435bf81","input_length":2423,"output_length":321,"hash_ids":[3880151,3880152,3880153,3880154,3880155],"delay":2517.7} +{"session_id":"sess-ecf48bbad081","input_length":57276,"output_length":150,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3884063,3884064,3884065,3884066,3884067,3884068,3884069,3884070,3884071],"timestamp":0.0,"group_id":5} +{"session_id":"sess-ecf48bbad081","input_length":900,"output_length":84,"hash_ids":[3884072,3884073],"delay":4187.9} +{"session_id":"sess-ecf48bbad081","input_length":887,"output_length":42,"hash_ids":[3884074,3884075],"delay":20503.9} +{"session_id":"sess-ecf48bbad081","input_length":934,"output_length":285,"hash_ids":[3884076,3884077],"delay":25814.5} +{"session_id":"sess-ecf48bbad081","input_length":4775,"output_length":237,"hash_ids":[3884078,3884079,3884080,3884081,3884082,3884083,3884084,3884085,3884086,3884087],"delay":7950.5} +{"session_id":"sess-ecf48bbad081","input_length":637,"output_length":245,"hash_ids":[3884088,3884089],"delay":764.6} +{"session_id":"sess-ecf48bbad081","input_length":1223,"output_length":305,"hash_ids":[3884090,3884091,3884092],"delay":2097.7} +{"session_id":"sess-ecf48bbad081","input_length":600,"output_length":69,"hash_ids":[3884093,3884094],"delay":229.5} +{"session_id":"sess-ecf48bbad081","input_length":2484,"output_length":138,"hash_ids":[3884095,3884096,3884097,3884098,3884099],"delay":1011.8} +{"session_id":"sess-ecf48bbad081","input_length":2776,"output_length":289,"hash_ids":[3884100,3884101,3884102,3884103,3884104,3884105],"delay":1209.7} +{"session_id":"sess-ecf48bbad081","input_length":7402,"output_length":1540,"hash_ids":[3884106,3884107,3884108,3884109,3884110,3884111,3884112,3884113,3884114,3884115,3884116,3884117,3884118,3884119,3884120],"delay":450.0} +{"session_id":"sess-ecf48bbad081","input_length":530,"output_length":67,"hash_ids":[3884121,3884122],"delay":49235.1} +{"session_id":"sess-ecf48bbad081","input_length":1903,"output_length":119,"hash_ids":[3884123,3884124,3884125,3884126],"delay":3394.6} +{"session_id":"sess-ecf48bbad081","input_length":4030,"output_length":628,"hash_ids":[3884127,3884128,3884129,3884130,3884131,3884132,3884133,3884134],"delay":1347.8} +{"session_id":"sess-ecf48bbad081","input_length":766,"output_length":180,"hash_ids":[3884135,3884136],"delay":1241.5} +{"session_id":"sess-ecf48bbad081","input_length":527,"output_length":663,"hash_ids":[3884137,3884138],"delay":1435.6} +{"session_id":"sess-ecf48bbad081","input_length":2863,"output_length":210,"hash_ids":[3884139,3884140,3884141,3884142,3884143,3884144],"delay":575.4} +{"session_id":"sess-ecf48bbad081","input_length":9591,"output_length":247,"hash_ids":[3884145,3884146,3884147,3884148,3884149,3884150,3884151,3884152,3884153,3884154,3884155,3884156,3884157,3884158,3884159,3884160,3884161,3884162,3884163],"delay":2296.8} +{"session_id":"sess-ecf48bbad081","input_length":541,"output_length":171,"hash_ids":[3884164,3884165],"delay":361.9} +{"session_id":"sess-ecf48bbad081","input_length":315,"output_length":1293,"hash_ids":[3884166],"delay":1028.0} +{"session_id":"sess-ecf48bbad081","input_length":7416,"output_length":2962,"hash_ids":[3884167,3884168,3884169,3884170,3884171,3884172,3884173,3884174,3884175,3884176,3884177,3884178,3884179,3884180,3884181],"delay":543.0} +{"session_id":"sess-ecf48bbad081","input_length":3295,"output_length":116,"hash_ids":[3884182,3884183,3884184,3884185,3884186,3884187,3884188],"delay":250.4} +{"session_id":"sess-ecf48bbad081","input_length":2817,"output_length":763,"hash_ids":[3884189,3884190,3884191,3884192,3884193,3884194],"delay":577.7} +{"session_id":"sess-ecf48bbad081","input_length":577,"output_length":163,"hash_ids":[3884195,3884196],"delay":20072.0} +{"session_id":"sess-ecf48bbad081","input_length":2121,"output_length":499,"hash_ids":[3884197,3884198,3884199,3884200,3884201],"delay":120.1} +{"session_id":"sess-ecf48bbad081","input_length":1799,"output_length":564,"hash_ids":[3884202,3884203,3884204,3884205],"delay":84.2} +{"session_id":"sess-7edcf2cdbc9b","input_length":53196,"output_length":147,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3888063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7edcf2cdbc9b","input_length":3332,"output_length":650,"hash_ids":[3888064,3888065,3888066,3888067,3888068,3888069,3888070],"delay":626.5} +{"session_id":"sess-7edcf2cdbc9b","input_length":8868,"output_length":211,"hash_ids":[3888071,3888072,3888073,3888074,3888075,3888076,3888077,3888078,3888079,3888080,3888081,3888082,3888083,3888084,3888085,3888086,3888087,3888088],"delay":723.5} +{"session_id":"sess-7edcf2cdbc9b","input_length":326,"output_length":191,"hash_ids":[3888089],"delay":320.3} +{"session_id":"sess-7edcf2cdbc9b","input_length":1024,"output_length":1480,"hash_ids":[3888090,3888091],"delay":225.4} +{"session_id":"sess-7edcf2cdbc9b","input_length":80,"output_length":49,"hash_ids":[3888092],"delay":395.4} +{"session_id":"sess-7edcf2cdbc9b","input_length":2077,"output_length":211,"hash_ids":[3888093,3888094,3888095,3888096,3888097],"delay":51263.9} +{"session_id":"sess-7edcf2cdbc9b","input_length":2386,"output_length":108,"hash_ids":[3888098,3888099,3888100,3888101,3888102],"delay":946.4} +{"session_id":"sess-7edcf2cdbc9b","input_length":202,"output_length":620,"hash_ids":[3888103],"delay":1621.2} +{"session_id":"sess-7edcf2cdbc9b","input_length":3023,"output_length":797,"hash_ids":[3888104,3888105,3888106,3888107,3888108,3888109],"delay":1557.5} +{"session_id":"sess-7edcf2cdbc9b","input_length":1818,"output_length":45,"hash_ids":[3888110,3888111,3888112,3888113],"delay":2626.2} +{"session_id":"sess-7edcf2cdbc9b","input_length":1276,"output_length":587,"hash_ids":[3888114,3888115,3888116],"delay":274.3} +{"session_id":"sess-7edcf2cdbc9b","input_length":4065,"output_length":403,"hash_ids":[3888117,3888118,3888119,3888120,3888121,3888122,3888123,3888124],"delay":10192.5} +{"session_id":"sess-7edcf2cdbc9b","input_length":1215,"output_length":1182,"hash_ids":[3888125,3888126,3888127],"delay":446.5} +{"session_id":"sess-7edcf2cdbc9b","input_length":9872,"output_length":209,"hash_ids":[3888128,3888129,3888130,3888131,3888132,3888133,3888134,3888135,3888136,3888137,3888138,3888139,3888140,3888141,3888142,3888143,3888144,3888145,3888146,3888147],"delay":8188.8} +{"session_id":"sess-7edcf2cdbc9b","input_length":2761,"output_length":89,"hash_ids":[3888148,3888149,3888150,3888151,3888152,3888153],"delay":3068.6} +{"session_id":"sess-f7320b18384b","input_length":57775,"output_length":555,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,3892063,3892064,3892065,3892066,3892067,3892068,3892069,3892070,3892071,3892072],"timestamp":0.0,"group_id":30} +{"session_id":"sess-f7320b18384b","input_length":2030,"output_length":664,"hash_ids":[3892073,3892074,3892075,3892076],"delay":591.8} +{"session_id":"sess-f7320b18384b","input_length":2210,"output_length":381,"hash_ids":[3892077,3892078,3892079,3892080,3892081],"delay":9151.6} +{"session_id":"sess-f7320b18384b","input_length":1049,"output_length":1248,"hash_ids":[3892082,3892083,3892084],"delay":477.6} +{"session_id":"sess-f7320b18384b","input_length":7895,"output_length":53,"hash_ids":[3892085,3892086,3892087,3892088,3892089,3892090,3892091,3892092,3892093,3892094,3892095,3892096,3892097,3892098,3892099,3892100],"delay":2848.0} +{"session_id":"sess-f7320b18384b","input_length":7254,"output_length":125,"hash_ids":[3892101,3892102,3892103,3892104,3892105,3892106,3892107,3892108,3892109,3892110,3892111,3892112,3892113,3892114,3892115],"delay":493.0} +{"session_id":"sess-f7320b18384b","input_length":1732,"output_length":126,"hash_ids":[3892116,3892117,3892118,3892119],"delay":5200.8} +{"session_id":"sess-f7320b18384b","input_length":4003,"output_length":664,"hash_ids":[3892120,3892121,3892122,3892123,3892124,3892125,3892126,3892127],"delay":5522.5} +{"session_id":"sess-f7320b18384b","input_length":148,"output_length":382,"hash_ids":[3892128],"delay":493.6} +{"session_id":"sess-f7320b18384b","input_length":490,"output_length":64,"hash_ids":[3892129],"delay":383.5} +{"session_id":"sess-f7320b18384b","input_length":2614,"output_length":235,"hash_ids":[3892130,3892131,3892132,3892133,3892134,3892135],"delay":129.9} +{"session_id":"sess-f7320b18384b","input_length":915,"output_length":1538,"hash_ids":[3892136,3892137],"delay":48832.1} +{"session_id":"sess-f7320b18384b","input_length":113,"output_length":235,"hash_ids":[3892138],"delay":9740.7} +{"session_id":"sess-f7320b18384b","input_length":1900,"output_length":1370,"hash_ids":[3892139,3892140,3892141,3892142],"delay":426.7} +{"session_id":"sess-f7320b18384b","input_length":321,"output_length":1500,"hash_ids":[3892143],"delay":641.8} +{"session_id":"sess-f7320b18384b","input_length":934,"output_length":215,"hash_ids":[3892144,3892145],"delay":4213.0} +{"session_id":"sess-f7320b18384b","input_length":7093,"output_length":70,"hash_ids":[3892146,3892147,3892148,3892149,3892150,3892151,3892152,3892153,3892154,3892155,3892156,3892157,3892158,3892159],"delay":577.0} +{"session_id":"sess-f7320b18384b","input_length":1270,"output_length":232,"hash_ids":[3892160,3892161,3892162],"delay":390.5} +{"session_id":"sess-f7320b18384b","input_length":561,"output_length":293,"hash_ids":[3892163,3892164],"delay":936.9} +{"session_id":"sess-f7320b18384b","input_length":263,"output_length":152,"hash_ids":[3892165],"delay":824.2} +{"session_id":"sess-f7320b18384b","input_length":759,"output_length":85,"hash_ids":[3892166,3892167],"delay":3910.3} +{"session_id":"sess-f7320b18384b","input_length":1052,"output_length":240,"hash_ids":[3892168,3892169,3892170],"delay":2349.9} +{"session_id":"sess-f7320b18384b","input_length":782,"output_length":304,"hash_ids":[3892171,3892172],"delay":179.7} +{"session_id":"sess-f7320b18384b","input_length":517,"output_length":142,"hash_ids":[3892173,3892174],"delay":159.4} +{"session_id":"sess-f7320b18384b","input_length":3028,"output_length":302,"hash_ids":[3892175,3892176,3892177,3892178,3892179,3892180],"delay":3373.5} +{"session_id":"sess-f7320b18384b","input_length":933,"output_length":238,"hash_ids":[3892181,3892182],"delay":3740.0} +{"session_id":"sess-f7320b18384b","input_length":344,"output_length":1303,"hash_ids":[3892183],"delay":10171.9} +{"session_id":"sess-f7320b18384b","input_length":608,"output_length":226,"hash_ids":[3892184,3892185],"delay":747.6} +{"session_id":"sess-f7320b18384b","input_length":337,"output_length":136,"hash_ids":[3892186],"delay":1521.4} +{"session_id":"sess-f7320b18384b","input_length":1569,"output_length":438,"hash_ids":[3892187,3892188,3892189,3892190],"delay":1200.1} +{"session_id":"sess-85a422140e9c","input_length":53910,"output_length":590,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3896063,3896064,3896065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-85a422140e9c","input_length":438,"output_length":1366,"hash_ids":[3896066],"delay":31354.3} +{"session_id":"sess-85a422140e9c","input_length":1351,"output_length":262,"hash_ids":[3896067,3896068,3896069],"delay":1619.0} +{"session_id":"sess-85a422140e9c","input_length":5691,"output_length":103,"hash_ids":[3896070,3896071,3896072,3896073,3896074,3896075,3896076,3896077,3896078,3896079,3896080,3896081],"delay":666.2} +{"session_id":"sess-85a422140e9c","input_length":3226,"output_length":440,"hash_ids":[3896082,3896083,3896084,3896085,3896086,3896087,3896088],"delay":15097.5} +{"session_id":"sess-85a422140e9c","input_length":405,"output_length":135,"hash_ids":[3896089],"delay":14795.5} +{"session_id":"sess-85a422140e9c","input_length":1606,"output_length":303,"hash_ids":[3896090,3896091,3896092,3896093],"delay":231.2} +{"session_id":"sess-85a422140e9c","input_length":946,"output_length":1290,"hash_ids":[3896094,3896095],"delay":1060.1} +{"session_id":"sess-85a422140e9c","input_length":1430,"output_length":137,"hash_ids":[3896096,3896097,3896098],"delay":904.0} +{"session_id":"sess-85a422140e9c","input_length":2156,"output_length":182,"hash_ids":[3896099,3896100,3896101,3896102,3896103],"delay":568.6} +{"session_id":"sess-85a422140e9c","input_length":544,"output_length":76,"hash_ids":[3896104,3896105],"delay":8223.9} +{"session_id":"sess-85a422140e9c","input_length":520,"output_length":474,"hash_ids":[3896106,3896107],"delay":1449.1} +{"session_id":"sess-85a422140e9c","input_length":3926,"output_length":52,"hash_ids":[3896108,3896109,3896110,3896111,3896112,3896113,3896114,3896115],"delay":862.0} +{"session_id":"sess-85a422140e9c","input_length":6354,"output_length":430,"hash_ids":[3896116,3896117,3896118,3896119,3896120,3896121,3896122,3896123,3896124,3896125,3896126,3896127,3896128],"delay":1628.3} +{"session_id":"sess-85a422140e9c","input_length":4271,"output_length":82,"hash_ids":[3896129,3896130,3896131,3896132,3896133,3896134,3896135,3896136,3896137],"delay":157.3} +{"session_id":"sess-85a422140e9c","input_length":475,"output_length":1629,"hash_ids":[3896138],"delay":15492.9} +{"session_id":"sess-85a422140e9c","input_length":3371,"output_length":685,"hash_ids":[3896139,3896140,3896141,3896142,3896143,3896144,3896145],"delay":3659.4} +{"session_id":"sess-85a422140e9c","input_length":1647,"output_length":259,"hash_ids":[3896146,3896147,3896148,3896149],"delay":489.4} +{"session_id":"sess-85a422140e9c","input_length":1073,"output_length":346,"hash_ids":[3896150,3896151,3896152],"delay":669.8} +{"session_id":"sess-85a422140e9c","input_length":2421,"output_length":556,"hash_ids":[3896153,3896154,3896155,3896156,3896157],"delay":709.8} +{"session_id":"sess-85a422140e9c","input_length":4900,"output_length":185,"hash_ids":[3896158,3896159,3896160,3896161,3896162,3896163,3896164,3896165,3896166,3896167],"delay":1670.1} +{"session_id":"sess-85a422140e9c","input_length":759,"output_length":631,"hash_ids":[3896168,3896169],"delay":163.4} +{"session_id":"sess-85a422140e9c","input_length":1659,"output_length":61,"hash_ids":[3896170,3896171,3896172,3896173],"delay":286.5} +{"session_id":"sess-85a422140e9c","input_length":525,"output_length":302,"hash_ids":[3896174,3896175],"delay":3453.8} +{"session_id":"sess-85a422140e9c","input_length":385,"output_length":110,"hash_ids":[3896176],"delay":896.7} +{"session_id":"sess-85a422140e9c","input_length":1638,"output_length":150,"hash_ids":[3896177,3896178,3896179,3896180],"delay":4053.9} +{"session_id":"sess-85a422140e9c","input_length":4802,"output_length":109,"hash_ids":[3896181,3896182,3896183,3896184,3896185,3896186,3896187,3896188,3896189,3896190],"delay":585.3} +{"session_id":"sess-85a422140e9c","input_length":8386,"output_length":407,"hash_ids":[3896191,3896192,3896193,3896194,3896195,3896196,3896197,3896198,3896199,3896200,3896201,3896202,3896203,3896204,3896205,3896206,3896207],"delay":124.7} +{"session_id":"sess-0cd3d06f81ab","input_length":53652,"output_length":302,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3900063,3900064],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0cd3d06f81ab","input_length":6431,"output_length":627,"hash_ids":[3900065,3900066,3900067,3900068,3900069,3900070,3900071,3900072,3900073,3900074,3900075,3900076,3900077],"delay":297.3} +{"session_id":"sess-0cd3d06f81ab","input_length":1167,"output_length":103,"hash_ids":[3900078,3900079,3900080],"delay":6078.2} +{"session_id":"sess-0cd3d06f81ab","input_length":2384,"output_length":389,"hash_ids":[3900081,3900082,3900083,3900084,3900085],"delay":2768.9} +{"session_id":"sess-0cd3d06f81ab","input_length":5899,"output_length":186,"hash_ids":[3900086,3900087,3900088,3900089,3900090,3900091,3900092,3900093,3900094,3900095,3900096,3900097],"delay":1819.9} +{"session_id":"sess-0cd3d06f81ab","input_length":2373,"output_length":59,"hash_ids":[3900098,3900099,3900100,3900101,3900102],"delay":1464.1} +{"session_id":"sess-0cd3d06f81ab","input_length":1151,"output_length":98,"hash_ids":[3900103,3900104,3900105],"delay":16266.0} +{"session_id":"sess-0cd3d06f81ab","input_length":1247,"output_length":161,"hash_ids":[3900106,3900107,3900108],"delay":24159.4} +{"session_id":"sess-0cd3d06f81ab","input_length":1055,"output_length":233,"hash_ids":[3900109,3900110,3900111],"delay":13601.6} +{"session_id":"sess-0cd3d06f81ab","input_length":2261,"output_length":205,"hash_ids":[3900112,3900113,3900114,3900115,3900116],"delay":15622.8} +{"session_id":"sess-0cd3d06f81ab","input_length":2162,"output_length":163,"hash_ids":[3900117,3900118,3900119,3900120,3900121],"delay":824.3} +{"session_id":"sess-0cd3d06f81ab","input_length":1502,"output_length":110,"hash_ids":[3900122,3900123,3900124],"delay":4411.5} +{"session_id":"sess-0cd3d06f81ab","input_length":6861,"output_length":295,"hash_ids":[3900125,3900126,3900127,3900128,3900129,3900130,3900131,3900132,3900133,3900134,3900135,3900136,3900137,3900138],"delay":2804.2} +{"session_id":"sess-5f641acccd8f","input_length":58027,"output_length":1039,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,3904063,3904064,3904065,3904066,3904067,3904068,3904069,3904070,3904071,3904072,3904073],"timestamp":0.0,"group_id":10} +{"session_id":"sess-5f641acccd8f","input_length":2209,"output_length":825,"hash_ids":[3904074,3904075,3904076,3904077,3904078],"delay":16124.0} +{"session_id":"sess-5f641acccd8f","input_length":3140,"output_length":238,"hash_ids":[3904079,3904080,3904081,3904082,3904083,3904084,3904085],"delay":304.6} +{"session_id":"sess-5f641acccd8f","input_length":1909,"output_length":1032,"hash_ids":[3904086,3904087,3904088,3904089],"delay":25096.5} +{"session_id":"sess-5f641acccd8f","input_length":2544,"output_length":55,"hash_ids":[3904090,3904091,3904092,3904093,3904094],"delay":2293.8} +{"session_id":"sess-5f641acccd8f","input_length":1302,"output_length":1547,"hash_ids":[3904095,3904096,3904097],"delay":443.7} +{"session_id":"sess-5f641acccd8f","input_length":2319,"output_length":240,"hash_ids":[3904098,3904099,3904100,3904101,3904102],"delay":368.4} +{"session_id":"sess-5f641acccd8f","input_length":4204,"output_length":907,"hash_ids":[3904103,3904104,3904105,3904106,3904107,3904108,3904109,3904110,3904111],"delay":5362.6} +{"session_id":"sess-5f641acccd8f","input_length":1931,"output_length":82,"hash_ids":[3904112,3904113,3904114,3904115],"delay":4762.0} +{"session_id":"sess-5f641acccd8f","input_length":1928,"output_length":313,"hash_ids":[3904116,3904117,3904118,3904119],"delay":941.1} +{"session_id":"sess-7c9ca1c7f8a0","input_length":57551,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,3908063,3908064,3908065,3908066,3908067,3908068,3908069,3908070,3908071,3908072],"timestamp":0.0,"group_id":32} +{"session_id":"sess-7c9ca1c7f8a0","input_length":497,"output_length":91,"hash_ids":[3908073],"delay":43140.9} +{"session_id":"sess-7c9ca1c7f8a0","input_length":2246,"output_length":165,"hash_ids":[3908074,3908075,3908076,3908077,3908078],"delay":17363.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":3748,"output_length":257,"hash_ids":[3908079,3908080,3908081,3908082,3908083,3908084,3908085,3908086],"delay":322.8} +{"session_id":"sess-7c9ca1c7f8a0","input_length":7474,"output_length":83,"hash_ids":[3908087,3908088,3908089,3908090,3908091,3908092,3908093,3908094,3908095,3908096,3908097,3908098,3908099,3908100,3908101],"delay":35792.0} +{"session_id":"sess-7c9ca1c7f8a0","input_length":2804,"output_length":40,"hash_ids":[3908102,3908103,3908104,3908105,3908106,3908107],"delay":1728.6} +{"session_id":"sess-7c9ca1c7f8a0","input_length":3332,"output_length":285,"hash_ids":[3908108,3908109,3908110,3908111,3908112,3908113,3908114],"delay":965.7} +{"session_id":"sess-7c9ca1c7f8a0","input_length":2711,"output_length":675,"hash_ids":[3908115,3908116,3908117,3908118,3908119,3908120],"delay":400.7} +{"session_id":"sess-7c9ca1c7f8a0","input_length":5622,"output_length":268,"hash_ids":[3908121,3908122,3908123,3908124,3908125,3908126,3908127,3908128,3908129,3908130,3908131],"delay":1020.2} +{"session_id":"sess-7c9ca1c7f8a0","input_length":885,"output_length":483,"hash_ids":[3908132,3908133],"delay":825.9} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1521,"output_length":1624,"hash_ids":[3908134,3908135,3908136],"delay":16031.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1730,"output_length":1223,"hash_ids":[3908137,3908138,3908139,3908140],"delay":5534.6} +{"session_id":"sess-7c9ca1c7f8a0","input_length":6606,"output_length":51,"hash_ids":[3908141,3908142,3908143,3908144,3908145,3908146,3908147,3908148,3908149,3908150,3908151,3908152,3908153],"delay":12404.0} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1388,"output_length":656,"hash_ids":[3908154,3908155,3908156],"delay":673.0} +{"session_id":"sess-7c9ca1c7f8a0","input_length":3650,"output_length":1194,"hash_ids":[3908157,3908158,3908159,3908160,3908161,3908162,3908163,3908164],"delay":508.6} +{"session_id":"sess-021493e72978","input_length":53699,"output_length":311,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,3912063,3912064],"timestamp":0.0,"group_id":28} +{"session_id":"sess-021493e72978","input_length":5387,"output_length":183,"hash_ids":[3912065,3912066,3912067,3912068,3912069,3912070,3912071,3912072,3912073,3912074,3912075],"delay":870.1} +{"session_id":"sess-021493e72978","input_length":2041,"output_length":1569,"hash_ids":[3912076,3912077,3912078,3912079],"delay":12095.8} +{"session_id":"sess-021493e72978","input_length":6677,"output_length":129,"hash_ids":[3912080,3912081,3912082,3912083,3912084,3912085,3912086,3912087,3912088,3912089,3912090,3912091,3912092,3912093],"delay":5133.7} +{"session_id":"sess-021493e72978","input_length":4504,"output_length":52,"hash_ids":[3912094,3912095,3912096,3912097,3912098,3912099,3912100,3912101,3912102],"delay":8814.4} +{"session_id":"sess-021493e72978","input_length":9986,"output_length":208,"hash_ids":[3912103,3912104,3912105,3912106,3912107,3912108,3912109,3912110,3912111,3912112,3912113,3912114,3912115,3912116,3912117,3912118,3912119,3912120,3912121,3912122],"delay":2148.3} +{"session_id":"sess-021493e72978","input_length":2353,"output_length":134,"hash_ids":[3912123,3912124,3912125,3912126,3912127],"delay":333.2} +{"session_id":"sess-021493e72978","input_length":2146,"output_length":757,"hash_ids":[3912128,3912129,3912130,3912131,3912132],"delay":5261.1} +{"session_id":"sess-021493e72978","input_length":1237,"output_length":330,"hash_ids":[3912133,3912134,3912135],"delay":9015.0} +{"session_id":"sess-021493e72978","input_length":343,"output_length":242,"hash_ids":[3912136],"delay":428.5} +{"session_id":"sess-021493e72978","input_length":2286,"output_length":247,"hash_ids":[3912137,3912138,3912139,3912140,3912141],"delay":18663.4} +{"session_id":"sess-021493e72978","input_length":821,"output_length":147,"hash_ids":[3912142,3912143],"delay":10222.2} +{"session_id":"sess-021493e72978","input_length":1108,"output_length":338,"hash_ids":[3912144,3912145,3912146],"delay":1464.6} +{"session_id":"sess-d362a85b1dd8","input_length":66826,"output_length":576,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,3916063,3916064,3916065,3916066,3916067,3916068,3916069,3916070,3916071,3916072,3916073,3916074,3916075,3916076,3916077,3916078,3916079,3916080,3916081,3916082,3916083,3916084,3916085,3916086,3916087,3916088,3916089,3916090],"timestamp":0.0,"group_id":29} +{"session_id":"sess-d362a85b1dd8","input_length":1946,"output_length":686,"hash_ids":[3916091,3916092,3916093,3916094],"delay":37679.3} +{"session_id":"sess-d362a85b1dd8","input_length":2957,"output_length":68,"hash_ids":[3916095,3916096,3916097,3916098,3916099,3916100],"delay":12127.3} +{"session_id":"sess-d362a85b1dd8","input_length":9359,"output_length":1118,"hash_ids":[3916101,3916102,3916103,3916104,3916105,3916106,3916107,3916108,3916109,3916110,3916111,3916112,3916113,3916114,3916115,3916116,3916117,3916118,3916119],"delay":880.9} +{"session_id":"sess-d362a85b1dd8","input_length":3145,"output_length":84,"hash_ids":[3916120,3916121,3916122,3916123,3916124,3916125,3916126],"delay":2221.9} +{"session_id":"sess-d362a85b1dd8","input_length":3779,"output_length":401,"hash_ids":[3916127,3916128,3916129,3916130,3916131,3916132,3916133,3916134],"delay":185.2} +{"session_id":"sess-d362a85b1dd8","input_length":905,"output_length":216,"hash_ids":[3916135,3916136],"delay":1332.0} +{"session_id":"sess-d362a85b1dd8","input_length":985,"output_length":97,"hash_ids":[3916137,3916138],"delay":615.6} +{"session_id":"sess-d362a85b1dd8","input_length":6414,"output_length":268,"hash_ids":[3916139,3916140,3916141,3916142,3916143,3916144,3916145,3916146,3916147,3916148,3916149,3916150,3916151],"delay":375.1} +{"session_id":"sess-d362a85b1dd8","input_length":715,"output_length":222,"hash_ids":[3916152,3916153],"delay":11101.5} +{"session_id":"sess-d362a85b1dd8","input_length":4277,"output_length":54,"hash_ids":[3916154,3916155,3916156,3916157,3916158,3916159,3916160,3916161,3916162],"delay":1552.0} +{"session_id":"sess-d362a85b1dd8","input_length":468,"output_length":159,"hash_ids":[3916163],"delay":351.7} +{"session_id":"sess-d362a85b1dd8","input_length":1528,"output_length":1064,"hash_ids":[3916164,3916165,3916166],"delay":565.2} +{"session_id":"sess-d362a85b1dd8","input_length":1811,"output_length":156,"hash_ids":[3916167,3916168,3916169,3916170],"delay":2910.4} +{"session_id":"sess-88039895a788","input_length":56132,"output_length":247,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3920063,3920064,3920065,3920066,3920067,3920068,3920069],"timestamp":0.0,"group_id":5} +{"session_id":"sess-88039895a788","input_length":265,"output_length":655,"hash_ids":[3920070],"delay":1696.5} +{"session_id":"sess-88039895a788","input_length":282,"output_length":134,"hash_ids":[3920071],"delay":2381.0} +{"session_id":"sess-88039895a788","input_length":1120,"output_length":131,"hash_ids":[3920072,3920073,3920074],"delay":646.4} +{"session_id":"sess-88039895a788","input_length":1702,"output_length":519,"hash_ids":[3920075,3920076,3920077,3920078],"delay":32801.0} +{"session_id":"sess-88039895a788","input_length":2952,"output_length":392,"hash_ids":[3920079,3920080,3920081,3920082,3920083,3920084],"delay":4608.5} +{"session_id":"sess-88039895a788","input_length":4236,"output_length":203,"hash_ids":[3920085,3920086,3920087,3920088,3920089,3920090,3920091,3920092,3920093],"delay":1650.7} +{"session_id":"sess-88039895a788","input_length":1212,"output_length":776,"hash_ids":[3920094,3920095,3920096],"delay":278.3} +{"session_id":"sess-88039895a788","input_length":2894,"output_length":652,"hash_ids":[3920097,3920098,3920099,3920100,3920101,3920102],"delay":864.9} +{"session_id":"sess-88039895a788","input_length":376,"output_length":108,"hash_ids":[3920103],"delay":1287.4} +{"session_id":"sess-88039895a788","input_length":1852,"output_length":308,"hash_ids":[3920104,3920105,3920106,3920107],"delay":2718.6} +{"session_id":"sess-88039895a788","input_length":2023,"output_length":536,"hash_ids":[3920108,3920109,3920110,3920111],"delay":670.6} +{"session_id":"sess-88039895a788","input_length":2756,"output_length":312,"hash_ids":[3920112,3920113,3920114,3920115,3920116,3920117],"delay":14198.8} +{"session_id":"sess-88039895a788","input_length":887,"output_length":553,"hash_ids":[3920118,3920119],"delay":6726.8} +{"session_id":"sess-88039895a788","input_length":6566,"output_length":306,"hash_ids":[3920120,3920121,3920122,3920123,3920124,3920125,3920126,3920127,3920128,3920129,3920130,3920131,3920132],"delay":20529.5} +{"session_id":"sess-88039895a788","input_length":3966,"output_length":416,"hash_ids":[3920133,3920134,3920135,3920136,3920137,3920138,3920139,3920140],"delay":8871.7} +{"session_id":"sess-88039895a788","input_length":560,"output_length":1220,"hash_ids":[3920141,3920142],"delay":5664.9} +{"session_id":"sess-88039895a788","input_length":4118,"output_length":173,"hash_ids":[3920143,3920144,3920145,3920146,3920147,3920148,3920149,3920150,3920151],"delay":3702.3} +{"session_id":"sess-88039895a788","input_length":1320,"output_length":207,"hash_ids":[3920152,3920153,3920154],"delay":844.0} +{"session_id":"sess-88039895a788","input_length":1065,"output_length":325,"hash_ids":[3920155,3920156,3920157],"delay":274.0} +{"session_id":"sess-88039895a788","input_length":1142,"output_length":598,"hash_ids":[3920158,3920159,3920160],"delay":437.4} +{"session_id":"sess-88039895a788","input_length":521,"output_length":93,"hash_ids":[3920161,3920162],"delay":275.6} +{"session_id":"sess-88039895a788","input_length":9927,"output_length":73,"hash_ids":[3920163,3920164,3920165,3920166,3920167,3920168,3920169,3920170,3920171,3920172,3920173,3920174,3920175,3920176,3920177,3920178,3920179,3920180,3920181,3920182],"delay":2449.1} +{"session_id":"sess-88039895a788","input_length":993,"output_length":123,"hash_ids":[3920183,3920184],"delay":6244.6} +{"session_id":"sess-88039895a788","input_length":164,"output_length":2164,"hash_ids":[3920185],"delay":355.9} +{"session_id":"sess-88039895a788","input_length":2997,"output_length":664,"hash_ids":[3920186,3920187,3920188,3920189,3920190,3920191],"delay":72.1} +{"session_id":"sess-88039895a788","input_length":2266,"output_length":606,"hash_ids":[3920192,3920193,3920194,3920195,3920196],"delay":1017.5} +{"session_id":"sess-88039895a788","input_length":802,"output_length":42,"hash_ids":[3920197,3920198],"delay":226.5} +{"session_id":"sess-88039895a788","input_length":760,"output_length":165,"hash_ids":[3920199,3920200],"delay":266.0} +{"session_id":"sess-644a85e8ea23","input_length":53905,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3924063,3924064,3924065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-644a85e8ea23","input_length":1467,"output_length":2046,"hash_ids":[3924066,3924067,3924068],"delay":31195.1} +{"session_id":"sess-644a85e8ea23","input_length":771,"output_length":99,"hash_ids":[3924069,3924070],"delay":1895.3} +{"session_id":"sess-644a85e8ea23","input_length":1525,"output_length":233,"hash_ids":[3924071,3924072,3924073],"delay":14714.2} +{"session_id":"sess-644a85e8ea23","input_length":2137,"output_length":314,"hash_ids":[3924074,3924075,3924076,3924077,3924078],"delay":368.7} +{"session_id":"sess-644a85e8ea23","input_length":344,"output_length":297,"hash_ids":[3924079],"delay":6312.5} +{"session_id":"sess-644a85e8ea23","input_length":1503,"output_length":316,"hash_ids":[3924080,3924081,3924082],"delay":1227.3} +{"session_id":"sess-644a85e8ea23","input_length":544,"output_length":695,"hash_ids":[3924083,3924084],"delay":411.2} +{"session_id":"sess-644a85e8ea23","input_length":2112,"output_length":67,"hash_ids":[3924085,3924086,3924087,3924088,3924089],"delay":879.4} +{"session_id":"sess-644a85e8ea23","input_length":937,"output_length":46,"hash_ids":[3924090,3924091],"delay":54546.1} +{"session_id":"sess-644a85e8ea23","input_length":914,"output_length":218,"hash_ids":[3924092,3924093],"delay":8467.2} +{"session_id":"sess-644a85e8ea23","input_length":1207,"output_length":162,"hash_ids":[3924094,3924095,3924096],"delay":129.1} +{"session_id":"sess-644a85e8ea23","input_length":2744,"output_length":657,"hash_ids":[3924097,3924098,3924099,3924100,3924101,3924102],"delay":30565.9} +{"session_id":"sess-644a85e8ea23","input_length":9076,"output_length":961,"hash_ids":[3924103,3924104,3924105,3924106,3924107,3924108,3924109,3924110,3924111,3924112,3924113,3924114,3924115,3924116,3924117,3924118,3924119,3924120],"delay":601.6} +{"session_id":"sess-644a85e8ea23","input_length":1395,"output_length":131,"hash_ids":[3924121,3924122,3924123],"delay":375.5} +{"session_id":"sess-644a85e8ea23","input_length":837,"output_length":288,"hash_ids":[3924124,3924125],"delay":4817.5} +{"session_id":"sess-644a85e8ea23","input_length":4246,"output_length":193,"hash_ids":[3924126,3924127,3924128,3924129,3924130,3924131,3924132,3924133,3924134],"delay":705.6} +{"session_id":"sess-644a85e8ea23","input_length":959,"output_length":318,"hash_ids":[3924135,3924136],"delay":1831.7} +{"session_id":"sess-644a85e8ea23","input_length":6430,"output_length":149,"hash_ids":[3924137,3924138,3924139,3924140,3924141,3924142,3924143,3924144,3924145,3924146,3924147,3924148,3924149],"delay":1488.0} +{"session_id":"sess-644a85e8ea23","input_length":1943,"output_length":244,"hash_ids":[3924150,3924151,3924152,3924153],"delay":998.7} +{"session_id":"sess-644a85e8ea23","input_length":324,"output_length":58,"hash_ids":[3924154],"delay":360.5} +{"session_id":"sess-644a85e8ea23","input_length":1613,"output_length":98,"hash_ids":[3924155,3924156,3924157,3924158],"delay":12158.8} +{"session_id":"sess-644a85e8ea23","input_length":232,"output_length":167,"hash_ids":[3924159],"delay":837.5} +{"session_id":"sess-644a85e8ea23","input_length":3022,"output_length":188,"hash_ids":[3924160,3924161,3924162,3924163,3924164,3924165],"delay":190.1} +{"session_id":"sess-644a85e8ea23","input_length":1944,"output_length":85,"hash_ids":[3924166,3924167,3924168,3924169],"delay":347.0} +{"session_id":"sess-644a85e8ea23","input_length":760,"output_length":390,"hash_ids":[3924170,3924171],"delay":176.6} +{"session_id":"sess-644a85e8ea23","input_length":2345,"output_length":1163,"hash_ids":[3924172,3924173,3924174,3924175,3924176],"delay":355.2} +{"session_id":"sess-644a85e8ea23","input_length":673,"output_length":367,"hash_ids":[3924177,3924178],"delay":1781.3} +{"session_id":"sess-644a85e8ea23","input_length":1571,"output_length":238,"hash_ids":[3924179,3924180,3924181,3924182],"delay":13743.3} +{"session_id":"sess-644a85e8ea23","input_length":1783,"output_length":396,"hash_ids":[3924183,3924184,3924185,3924186],"delay":10177.2} +{"session_id":"sess-644a85e8ea23","input_length":2526,"output_length":177,"hash_ids":[3924187,3924188,3924189,3924190,3924191],"delay":465.9} +{"session_id":"sess-644a85e8ea23","input_length":1508,"output_length":179,"hash_ids":[3924192,3924193,3924194],"delay":880.9} +{"session_id":"sess-644a85e8ea23","input_length":1458,"output_length":688,"hash_ids":[3924195,3924196,3924197],"delay":1461.0} +{"session_id":"sess-644a85e8ea23","input_length":1130,"output_length":404,"hash_ids":[3924198,3924199,3924200],"delay":1955.4} +{"session_id":"sess-644a85e8ea23","input_length":2363,"output_length":862,"hash_ids":[3924201,3924202,3924203,3924204,3924205],"delay":239.0} +{"session_id":"sess-c825ba0f6f80","input_length":56600,"output_length":115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3928063,3928064,3928065,3928066,3928067,3928068,3928069,3928070],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c825ba0f6f80","input_length":252,"output_length":247,"hash_ids":[3928071],"delay":608.8} +{"session_id":"sess-c825ba0f6f80","input_length":3401,"output_length":34,"hash_ids":[3928072,3928073,3928074,3928075,3928076,3928077,3928078],"delay":1182.7} +{"session_id":"sess-c825ba0f6f80","input_length":4583,"output_length":988,"hash_ids":[3928079,3928080,3928081,3928082,3928083,3928084,3928085,3928086,3928087],"delay":2325.8} +{"session_id":"sess-c825ba0f6f80","input_length":244,"output_length":405,"hash_ids":[3928088],"delay":15372.3} +{"session_id":"sess-c825ba0f6f80","input_length":305,"output_length":107,"hash_ids":[3928089],"delay":249.7} +{"session_id":"sess-c825ba0f6f80","input_length":1535,"output_length":228,"hash_ids":[3928090,3928091,3928092],"delay":14217.2} +{"session_id":"sess-c825ba0f6f80","input_length":2512,"output_length":94,"hash_ids":[3928093,3928094,3928095,3928096,3928097],"delay":850.3} +{"session_id":"sess-c825ba0f6f80","input_length":122,"output_length":132,"hash_ids":[3928098],"delay":234.8} +{"session_id":"sess-c825ba0f6f80","input_length":1027,"output_length":299,"hash_ids":[3928099,3928100,3928101],"delay":875.3} +{"session_id":"sess-c825ba0f6f80","input_length":1583,"output_length":397,"hash_ids":[3928102,3928103,3928104,3928105],"delay":3954.5} +{"session_id":"sess-c825ba0f6f80","input_length":6334,"output_length":252,"hash_ids":[3928106,3928107,3928108,3928109,3928110,3928111,3928112,3928113,3928114,3928115,3928116,3928117,3928118],"delay":7663.0} +{"session_id":"sess-c825ba0f6f80","input_length":613,"output_length":846,"hash_ids":[3928119,3928120],"delay":306.0} +{"session_id":"sess-c825ba0f6f80","input_length":669,"output_length":287,"hash_ids":[3928121,3928122],"delay":584.5} +{"session_id":"sess-c825ba0f6f80","input_length":1404,"output_length":368,"hash_ids":[3928123,3928124,3928125],"delay":1883.9} +{"session_id":"sess-c825ba0f6f80","input_length":609,"output_length":207,"hash_ids":[3928126,3928127],"delay":3846.7} +{"session_id":"sess-c825ba0f6f80","input_length":5259,"output_length":691,"hash_ids":[3928128,3928129,3928130,3928131,3928132,3928133,3928134,3928135,3928136,3928137,3928138],"delay":3477.9} +{"session_id":"sess-c825ba0f6f80","input_length":802,"output_length":113,"hash_ids":[3928139,3928140],"delay":1237.6} +{"session_id":"sess-c825ba0f6f80","input_length":801,"output_length":192,"hash_ids":[3928141,3928142],"delay":1623.4} +{"session_id":"sess-c825ba0f6f80","input_length":668,"output_length":124,"hash_ids":[3928143,3928144],"delay":765.7} +{"session_id":"sess-c825ba0f6f80","input_length":3576,"output_length":444,"hash_ids":[3928145,3928146,3928147,3928148,3928149,3928150,3928151],"delay":4364.8} +{"session_id":"sess-c825ba0f6f80","input_length":9987,"output_length":127,"hash_ids":[3928152,3928153,3928154,3928155,3928156,3928157,3928158,3928159,3928160,3928161,3928162,3928163,3928164,3928165,3928166,3928167,3928168,3928169,3928170,3928171],"delay":1248.1} +{"session_id":"sess-c825ba0f6f80","input_length":1457,"output_length":370,"hash_ids":[3928172,3928173,3928174],"delay":191.9} +{"session_id":"sess-c825ba0f6f80","input_length":7621,"output_length":264,"hash_ids":[3928175,3928176,3928177,3928178,3928179,3928180,3928181,3928182,3928183,3928184,3928185,3928186,3928187,3928188,3928189],"delay":83.8} +{"session_id":"sess-c825ba0f6f80","input_length":1899,"output_length":30,"hash_ids":[3928190,3928191,3928192,3928193],"delay":1348.0} +{"session_id":"sess-c825ba0f6f80","input_length":1910,"output_length":53,"hash_ids":[3928194,3928195,3928196,3928197],"delay":507.3} +{"session_id":"sess-c825ba0f6f80","input_length":1447,"output_length":817,"hash_ids":[3928198,3928199,3928200],"delay":793.1} +{"session_id":"sess-1bc6ef05184c","input_length":52588,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102],"timestamp":0.0,"group_id":40} +{"session_id":"sess-1bc6ef05184c","input_length":6095,"output_length":1416,"hash_ids":[3928201,3928202,3928203,3928204,3928205,3928206,3928207,3928208,3928209,3928210,3928211,3928212],"delay":1180.1} +{"session_id":"sess-1bc6ef05184c","input_length":3819,"output_length":379,"hash_ids":[3928213,3928214,3928215,3928216,3928217,3928218,3928219,3928220],"delay":668.8} +{"session_id":"sess-1bc6ef05184c","input_length":579,"output_length":1088,"hash_ids":[3928221,3928222],"delay":754.2} +{"session_id":"sess-1bc6ef05184c","input_length":2659,"output_length":175,"hash_ids":[3928223,3928224,3928225,3928226,3928227,3928228],"delay":3292.0} +{"session_id":"sess-1bc6ef05184c","input_length":723,"output_length":434,"hash_ids":[3928229,3928230],"delay":1004.4} +{"session_id":"sess-1bc6ef05184c","input_length":2525,"output_length":261,"hash_ids":[3928231,3928232,3928233,3928234,3928235],"delay":3412.1} +{"session_id":"sess-1bc6ef05184c","input_length":3408,"output_length":184,"hash_ids":[3928236,3928237,3928238,3928239,3928240,3928241,3928242],"delay":604.3} +{"session_id":"sess-1bc6ef05184c","input_length":4313,"output_length":974,"hash_ids":[3928243,3928244,3928245,3928246,3928247,3928248,3928249,3928250,3928251],"delay":51684.5} +{"session_id":"sess-1bc6ef05184c","input_length":2866,"output_length":36,"hash_ids":[3928252,3928253,3928254,3928255,3928256,3928257],"delay":579.7} +{"session_id":"sess-1bc6ef05184c","input_length":5304,"output_length":889,"hash_ids":[3928258,3928259,3928260,3928261,3928262,3928263,3928264,3928265,3928266,3928267,3928268],"delay":1861.4} +{"session_id":"sess-1bc6ef05184c","input_length":976,"output_length":30,"hash_ids":[3928269,3928270],"delay":1265.2} +{"session_id":"sess-1bc6ef05184c","input_length":816,"output_length":171,"hash_ids":[3928271,3928272],"delay":131.9} +{"session_id":"sess-1bc6ef05184c","input_length":3029,"output_length":283,"hash_ids":[3928273,3928274,3928275,3928276,3928277,3928278],"delay":464.3} +{"session_id":"sess-1bc6ef05184c","input_length":1074,"output_length":614,"hash_ids":[3928279,3928280,3928281],"delay":521.1} +{"session_id":"sess-1bc6ef05184c","input_length":655,"output_length":132,"hash_ids":[3928282,3928283],"delay":36838.5} +{"session_id":"sess-1bc6ef05184c","input_length":1228,"output_length":126,"hash_ids":[3928284,3928285,3928286],"delay":919.0} +{"session_id":"sess-1bc6ef05184c","input_length":9004,"output_length":692,"hash_ids":[3928287,3928288,3928289,3928290,3928291,3928292,3928293,3928294,3928295,3928296,3928297,3928298,3928299,3928300,3928301,3928302,3928303,3928304],"delay":1190.2} +{"session_id":"sess-1bc6ef05184c","input_length":551,"output_length":219,"hash_ids":[3928305,3928306],"delay":1423.7} +{"session_id":"sess-1bc6ef05184c","input_length":1765,"output_length":509,"hash_ids":[3928307,3928308,3928309,3928310],"delay":456.8} +{"session_id":"sess-1bc6ef05184c","input_length":1916,"output_length":891,"hash_ids":[3928311,3928312,3928313,3928314],"delay":1552.4} +{"session_id":"sess-1bc6ef05184c","input_length":6101,"output_length":59,"hash_ids":[3928315,3928316,3928317,3928318,3928319,3928320,3928321,3928322,3928323,3928324,3928325,3928326],"delay":4496.6} +{"session_id":"sess-1bc6ef05184c","input_length":331,"output_length":372,"hash_ids":[3928327],"delay":106.1} +{"session_id":"sess-1bc6ef05184c","input_length":767,"output_length":33,"hash_ids":[3928328,3928329],"delay":392.4} +{"session_id":"sess-1bc6ef05184c","input_length":1590,"output_length":1742,"hash_ids":[3928330,3928331,3928332,3928333],"delay":14222.2} +{"session_id":"sess-1bc6ef05184c","input_length":1109,"output_length":151,"hash_ids":[3928334,3928335,3928336],"delay":11921.7} +{"session_id":"sess-a239aaa3d2ed","input_length":58218,"output_length":2246,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3936063,3936064,3936065,3936066,3936067,3936068,3936069,3936070,3936071,3936072,3936073],"timestamp":0.0,"group_id":3} +{"session_id":"sess-a239aaa3d2ed","input_length":942,"output_length":178,"hash_ids":[3936074,3936075],"delay":52159.4} +{"session_id":"sess-a239aaa3d2ed","input_length":2026,"output_length":316,"hash_ids":[3936076,3936077,3936078,3936079],"delay":1486.9} +{"session_id":"sess-a239aaa3d2ed","input_length":1166,"output_length":100,"hash_ids":[3936080,3936081,3936082],"delay":3600.0} +{"session_id":"sess-a239aaa3d2ed","input_length":4622,"output_length":127,"hash_ids":[3936083,3936084,3936085,3936086,3936087,3936088,3936089,3936090,3936091,3936092],"delay":949.9} +{"session_id":"sess-a239aaa3d2ed","input_length":1318,"output_length":276,"hash_ids":[3936093,3936094,3936095],"delay":189.6} +{"session_id":"sess-baa971c8257d","input_length":58130,"output_length":562,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3940063,3940064,3940065,3940066,3940067,3940068,3940069,3940070,3940071,3940072,3940073],"timestamp":0.0,"group_id":6} +{"session_id":"sess-baa971c8257d","input_length":8247,"output_length":649,"hash_ids":[3940074,3940075,3940076,3940077,3940078,3940079,3940080,3940081,3940082,3940083,3940084,3940085,3940086,3940087,3940088,3940089,3940090],"delay":2603.6} +{"session_id":"sess-baa971c8257d","input_length":392,"output_length":166,"hash_ids":[3940091],"delay":920.1} +{"session_id":"sess-baa971c8257d","input_length":1538,"output_length":63,"hash_ids":[3940092,3940093,3940094,3940095],"delay":830.2} +{"session_id":"sess-baa971c8257d","input_length":3340,"output_length":445,"hash_ids":[3940096,3940097,3940098,3940099,3940100,3940101,3940102],"delay":1421.4} +{"session_id":"sess-baa971c8257d","input_length":298,"output_length":331,"hash_ids":[3940103],"delay":2199.2} +{"session_id":"sess-baa971c8257d","input_length":483,"output_length":148,"hash_ids":[3940104],"delay":885.5} +{"session_id":"sess-baa971c8257d","input_length":547,"output_length":430,"hash_ids":[3940105,3940106],"delay":545.4} +{"session_id":"sess-baa971c8257d","input_length":4712,"output_length":827,"hash_ids":[3940107,3940108,3940109,3940110,3940111,3940112,3940113,3940114,3940115,3940116],"delay":12577.0} +{"session_id":"sess-baa971c8257d","input_length":299,"output_length":30,"hash_ids":[3940117],"delay":2606.1} +{"session_id":"sess-baa971c8257d","input_length":1931,"output_length":180,"hash_ids":[3940118,3940119,3940120,3940121],"delay":405.8} +{"session_id":"sess-baa971c8257d","input_length":1535,"output_length":598,"hash_ids":[3940122,3940123,3940124],"delay":1511.8} +{"session_id":"sess-baa971c8257d","input_length":2573,"output_length":97,"hash_ids":[3940125,3940126,3940127,3940128,3940129,3940130],"delay":14255.6} +{"session_id":"sess-baa971c8257d","input_length":681,"output_length":566,"hash_ids":[3940131,3940132],"delay":555.1} +{"session_id":"sess-baa971c8257d","input_length":680,"output_length":30,"hash_ids":[3940133,3940134],"delay":3805.6} +{"session_id":"sess-baa971c8257d","input_length":5140,"output_length":1032,"hash_ids":[3940135,3940136,3940137,3940138,3940139,3940140,3940141,3940142,3940143,3940144,3940145],"delay":470.6} +{"session_id":"sess-baa971c8257d","input_length":747,"output_length":370,"hash_ids":[3940146,3940147],"delay":357.4} +{"session_id":"sess-baa971c8257d","input_length":137,"output_length":443,"hash_ids":[3940148],"delay":2408.2} +{"session_id":"sess-baa971c8257d","input_length":441,"output_length":484,"hash_ids":[3940149],"delay":1124.3} +{"session_id":"sess-baa971c8257d","input_length":905,"output_length":155,"hash_ids":[3940150,3940151],"delay":754.3} +{"session_id":"sess-baa971c8257d","input_length":942,"output_length":94,"hash_ids":[3940152,3940153],"delay":377.4} +{"session_id":"sess-baa971c8257d","input_length":5775,"output_length":608,"hash_ids":[3940154,3940155,3940156,3940157,3940158,3940159,3940160,3940161,3940162,3940163,3940164,3940165],"delay":2593.7} +{"session_id":"sess-baa971c8257d","input_length":2189,"output_length":411,"hash_ids":[3940166,3940167,3940168,3940169,3940170],"delay":351.3} +{"session_id":"sess-baa971c8257d","input_length":852,"output_length":382,"hash_ids":[3940171,3940172],"delay":11558.3} +{"session_id":"sess-baa971c8257d","input_length":9159,"output_length":371,"hash_ids":[3940173,3940174,3940175,3940176,3940177,3940178,3940179,3940180,3940181,3940182,3940183,3940184,3940185,3940186,3940187,3940188,3940189,3940190],"delay":640.1} +{"session_id":"sess-baa971c8257d","input_length":1672,"output_length":629,"hash_ids":[3940191,3940192,3940193,3940194],"delay":150.0} +{"session_id":"sess-baa971c8257d","input_length":1973,"output_length":330,"hash_ids":[3940195,3940196,3940197,3940198],"delay":181.2} +{"session_id":"sess-ec62e6204bd0","input_length":54503,"output_length":629,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3944063,3944064,3944065,3944066],"timestamp":0.0,"group_id":19} +{"session_id":"sess-ec62e6204bd0","input_length":1672,"output_length":310,"hash_ids":[3944067,3944068,3944069,3944070],"delay":821.8} +{"session_id":"sess-4be81567de3e","input_length":54200,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3948063,3948064,3948065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4be81567de3e","input_length":431,"output_length":844,"hash_ids":[3948066],"delay":5973.9} +{"session_id":"sess-4be81567de3e","input_length":2404,"output_length":1014,"hash_ids":[3948067,3948068,3948069,3948070,3948071],"delay":23761.3} +{"session_id":"sess-4be81567de3e","input_length":2476,"output_length":2227,"hash_ids":[3948072,3948073,3948074,3948075,3948076],"delay":503.5} +{"session_id":"sess-4be81567de3e","input_length":2194,"output_length":35,"hash_ids":[3948077,3948078,3948079,3948080,3948081],"delay":859.5} +{"session_id":"sess-4be81567de3e","input_length":566,"output_length":73,"hash_ids":[3948082,3948083],"delay":11224.5} +{"session_id":"sess-4be81567de3e","input_length":4227,"output_length":581,"hash_ids":[3948084,3948085,3948086,3948087,3948088,3948089,3948090,3948091,3948092],"delay":24904.6} +{"session_id":"sess-4be81567de3e","input_length":8433,"output_length":319,"hash_ids":[3948093,3948094,3948095,3948096,3948097,3948098,3948099,3948100,3948101,3948102,3948103,3948104,3948105,3948106,3948107,3948108,3948109],"delay":692.2} +{"session_id":"sess-4be81567de3e","input_length":832,"output_length":297,"hash_ids":[3948110,3948111],"delay":11689.7} +{"session_id":"sess-4be81567de3e","input_length":294,"output_length":90,"hash_ids":[3948112],"delay":1068.9} +{"session_id":"sess-4be81567de3e","input_length":297,"output_length":374,"hash_ids":[3948113],"delay":1280.2} +{"session_id":"sess-17cf2fe6a707","input_length":56739,"output_length":381,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3952063,3952064,3952065,3952066,3952067,3952068,3952069,3952070],"timestamp":0.0,"group_id":4} +{"session_id":"sess-17cf2fe6a707","input_length":2212,"output_length":457,"hash_ids":[3952071,3952072,3952073,3952074,3952075],"delay":477.6} +{"session_id":"sess-17cf2fe6a707","input_length":169,"output_length":207,"hash_ids":[3952076],"delay":13148.4} +{"session_id":"sess-17cf2fe6a707","input_length":3878,"output_length":157,"hash_ids":[3952077,3952078,3952079,3952080,3952081,3952082,3952083,3952084],"delay":4133.1} +{"session_id":"sess-17cf2fe6a707","input_length":774,"output_length":201,"hash_ids":[3952085,3952086],"delay":29135.4} +{"session_id":"sess-17cf2fe6a707","input_length":6630,"output_length":90,"hash_ids":[3952087,3952088,3952089,3952090,3952091,3952092,3952093,3952094,3952095,3952096,3952097,3952098,3952099],"delay":2220.0} +{"session_id":"sess-17cf2fe6a707","input_length":2950,"output_length":650,"hash_ids":[3952100,3952101,3952102,3952103,3952104,3952105],"delay":15176.4} +{"session_id":"sess-17cf2fe6a707","input_length":253,"output_length":129,"hash_ids":[3952106],"delay":707.3} +{"session_id":"sess-17cf2fe6a707","input_length":2433,"output_length":306,"hash_ids":[3952107,3952108,3952109,3952110,3952111],"delay":7849.1} +{"session_id":"sess-cf940d7bd57e","input_length":53596,"output_length":1239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,3956063,3956064],"timestamp":0.0,"group_id":36} +{"session_id":"sess-cf940d7bd57e","input_length":597,"output_length":2672,"hash_ids":[3956065,3956066],"delay":1134.8} +{"session_id":"sess-cf940d7bd57e","input_length":4776,"output_length":183,"hash_ids":[3956067,3956068,3956069,3956070,3956071,3956072,3956073,3956074,3956075,3956076],"delay":695.0} +{"session_id":"sess-cf940d7bd57e","input_length":2248,"output_length":51,"hash_ids":[3956077,3956078,3956079,3956080,3956081],"delay":3760.5} +{"session_id":"sess-cf940d7bd57e","input_length":3323,"output_length":160,"hash_ids":[3956082,3956083,3956084,3956085,3956086,3956087,3956088],"delay":61819.6} +{"session_id":"sess-cf940d7bd57e","input_length":7141,"output_length":219,"hash_ids":[3956089,3956090,3956091,3956092,3956093,3956094,3956095,3956096,3956097,3956098,3956099,3956100,3956101,3956102],"delay":12344.7} +{"session_id":"sess-cf940d7bd57e","input_length":1094,"output_length":51,"hash_ids":[3956103,3956104,3956105],"delay":13761.2} +{"session_id":"sess-cf940d7bd57e","input_length":1074,"output_length":341,"hash_ids":[3956106,3956107,3956108],"delay":658.8} +{"session_id":"sess-cf940d7bd57e","input_length":942,"output_length":240,"hash_ids":[3956109,3956110],"delay":1427.3} +{"session_id":"sess-cf940d7bd57e","input_length":6667,"output_length":179,"hash_ids":[3956111,3956112,3956113,3956114,3956115,3956116,3956117,3956118,3956119,3956120,3956121,3956122,3956123,3956124],"delay":343.6} +{"session_id":"sess-cf940d7bd57e","input_length":7277,"output_length":168,"hash_ids":[3956125,3956126,3956127,3956128,3956129,3956130,3956131,3956132,3956133,3956134,3956135,3956136,3956137,3956138,3956139],"delay":7341.6} +{"session_id":"sess-cf940d7bd57e","input_length":5503,"output_length":131,"hash_ids":[3956140,3956141,3956142,3956143,3956144,3956145,3956146,3956147,3956148,3956149,3956150],"delay":1003.3} +{"session_id":"sess-cf940d7bd57e","input_length":3137,"output_length":30,"hash_ids":[3956151,3956152,3956153,3956154,3956155,3956156,3956157],"delay":275.7} +{"session_id":"sess-cf940d7bd57e","input_length":1981,"output_length":235,"hash_ids":[3956158,3956159,3956160,3956161],"delay":19334.7} +{"session_id":"sess-cf940d7bd57e","input_length":1077,"output_length":918,"hash_ids":[3956162,3956163,3956164],"delay":863.3} +{"session_id":"sess-cf940d7bd57e","input_length":993,"output_length":436,"hash_ids":[3956165,3956166],"delay":36628.6} +{"session_id":"sess-cf940d7bd57e","input_length":835,"output_length":114,"hash_ids":[3956167,3956168],"delay":661.9} +{"session_id":"sess-cf940d7bd57e","input_length":483,"output_length":411,"hash_ids":[3956169],"delay":85.5} +{"session_id":"sess-cf940d7bd57e","input_length":687,"output_length":1019,"hash_ids":[3956170,3956171],"delay":952.9} +{"session_id":"sess-cf940d7bd57e","input_length":1440,"output_length":39,"hash_ids":[3956172,3956173,3956174],"delay":2332.9} +{"session_id":"sess-cf940d7bd57e","input_length":3736,"output_length":1136,"hash_ids":[3956175,3956176,3956177,3956178,3956179,3956180,3956181,3956182],"delay":963.9} +{"session_id":"sess-cf940d7bd57e","input_length":575,"output_length":426,"hash_ids":[3956183,3956184],"delay":1634.0} +{"session_id":"sess-cf940d7bd57e","input_length":539,"output_length":58,"hash_ids":[3956185,3956186],"delay":596.0} +{"session_id":"sess-cf940d7bd57e","input_length":743,"output_length":147,"hash_ids":[3956187,3956188],"delay":542.4} +{"session_id":"sess-cf940d7bd57e","input_length":3579,"output_length":2558,"hash_ids":[3956189,3956190,3956191,3956192,3956193,3956194,3956195],"delay":252.8} +{"session_id":"sess-cf940d7bd57e","input_length":559,"output_length":441,"hash_ids":[3956196,3956197],"delay":304.3} +{"session_id":"sess-eb79f639ba21","input_length":60400,"output_length":101,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,3960063,3960064,3960065,3960066,3960067,3960068,3960069,3960070,3960071,3960072,3960073,3960074,3960075,3960076,3960077],"timestamp":0.0,"group_id":6} +{"session_id":"sess-eb79f639ba21","input_length":1225,"output_length":475,"hash_ids":[3960078,3960079,3960080],"delay":1715.1} +{"session_id":"sess-eb79f639ba21","input_length":591,"output_length":182,"hash_ids":[3960081,3960082],"delay":475.8} +{"session_id":"sess-eb79f639ba21","input_length":1265,"output_length":204,"hash_ids":[3960083,3960084,3960085],"delay":541.8} +{"session_id":"sess-eb79f639ba21","input_length":2294,"output_length":236,"hash_ids":[3960086,3960087,3960088,3960089,3960090],"delay":1000.7} +{"session_id":"sess-eb79f639ba21","input_length":4143,"output_length":1560,"hash_ids":[3960091,3960092,3960093,3960094,3960095,3960096,3960097,3960098,3960099],"delay":762.1} +{"session_id":"sess-eb79f639ba21","input_length":3205,"output_length":291,"hash_ids":[3960100,3960101,3960102,3960103,3960104,3960105,3960106],"delay":20432.0} +{"session_id":"sess-eb79f639ba21","input_length":6269,"output_length":204,"hash_ids":[3960107,3960108,3960109,3960110,3960111,3960112,3960113,3960114,3960115,3960116,3960117,3960118,3960119],"delay":998.0} +{"session_id":"sess-eb79f639ba21","input_length":247,"output_length":307,"hash_ids":[3960120],"delay":7589.4} +{"session_id":"sess-eb79f639ba21","input_length":6189,"output_length":61,"hash_ids":[3960121,3960122,3960123,3960124,3960125,3960126,3960127,3960128,3960129,3960130,3960131,3960132,3960133],"delay":851.7} +{"session_id":"sess-eb79f639ba21","input_length":709,"output_length":228,"hash_ids":[3960134,3960135],"delay":612.2} +{"session_id":"sess-eb79f639ba21","input_length":600,"output_length":1395,"hash_ids":[3960136,3960137],"delay":1028.7} +{"session_id":"sess-eb79f639ba21","input_length":481,"output_length":639,"hash_ids":[3960138],"delay":195.7} +{"session_id":"sess-eb79f639ba21","input_length":3866,"output_length":1841,"hash_ids":[3960139,3960140,3960141,3960142,3960143,3960144,3960145,3960146],"delay":10534.7} +{"session_id":"sess-eb79f639ba21","input_length":6315,"output_length":125,"hash_ids":[3960147,3960148,3960149,3960150,3960151,3960152,3960153,3960154,3960155,3960156,3960157,3960158,3960159],"delay":1199.0} +{"session_id":"sess-eb79f639ba21","input_length":2064,"output_length":185,"hash_ids":[3960160,3960161,3960162,3960163,3960164],"delay":758.6} +{"session_id":"sess-eb79f639ba21","input_length":353,"output_length":259,"hash_ids":[3960165],"delay":5528.2} +{"session_id":"sess-eb79f639ba21","input_length":4086,"output_length":173,"hash_ids":[3960166,3960167,3960168,3960169,3960170,3960171,3960172,3960173],"delay":162.8} +{"session_id":"sess-eb79f639ba21","input_length":745,"output_length":385,"hash_ids":[3960174,3960175],"delay":863.4} +{"session_id":"sess-4f1852dbca1a","input_length":74229,"output_length":79,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3964063,3964064,3964065,3964066,3964067,3964068,3964069,3964070,3964071,3964072,3964073,3964074,3964075,3964076,3964077,3964078,3964079,3964080,3964081,3964082,3964083,3964084,3964085,3964086,3964087,3964088,3964089,3964090,3964091,3964092,3964093,3964094,3964095,3964096,3964097,3964098,3964099,3964100,3964101,3964102,3964103,3964104],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4f1852dbca1a","input_length":1115,"output_length":951,"hash_ids":[3964105,3964106,3964107],"delay":259.5} +{"session_id":"sess-4f1852dbca1a","input_length":1856,"output_length":291,"hash_ids":[3964108,3964109,3964110,3964111],"delay":17129.4} +{"session_id":"sess-4f1852dbca1a","input_length":2896,"output_length":1424,"hash_ids":[3964112,3964113,3964114,3964115,3964116,3964117],"delay":44338.6} +{"session_id":"sess-4f1852dbca1a","input_length":3985,"output_length":2877,"hash_ids":[3964118,3964119,3964120,3964121,3964122,3964123,3964124,3964125],"delay":3742.0} +{"session_id":"sess-4f1852dbca1a","input_length":891,"output_length":395,"hash_ids":[3964126,3964127],"delay":3981.8} +{"session_id":"sess-4f1852dbca1a","input_length":4408,"output_length":616,"hash_ids":[3964128,3964129,3964130,3964131,3964132,3964133,3964134,3964135,3964136],"delay":734.0} +{"session_id":"sess-4f1852dbca1a","input_length":3452,"output_length":930,"hash_ids":[3964137,3964138,3964139,3964140,3964141,3964142,3964143],"delay":735.0} +{"session_id":"sess-8cf863a9b30f","input_length":55826,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,3968063,3968064,3968065,3968066,3968067,3968068,3968069],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8cf863a9b30f","input_length":871,"output_length":42,"hash_ids":[3968070,3968071],"delay":480.7} +{"session_id":"sess-8cf863a9b30f","input_length":313,"output_length":195,"hash_ids":[3968072],"delay":648.2} +{"session_id":"sess-8cf863a9b30f","input_length":1244,"output_length":981,"hash_ids":[3968073,3968074,3968075],"delay":917.0} +{"session_id":"sess-8cf863a9b30f","input_length":2041,"output_length":392,"hash_ids":[3968076,3968077,3968078,3968079],"delay":996.4} +{"session_id":"sess-8cf863a9b30f","input_length":2078,"output_length":1507,"hash_ids":[3968080,3968081,3968082,3968083,3968084],"delay":1715.2} +{"session_id":"sess-8cf863a9b30f","input_length":3042,"output_length":97,"hash_ids":[3968085,3968086,3968087,3968088,3968089,3968090],"delay":578.4} +{"session_id":"sess-8cf863a9b30f","input_length":2681,"output_length":418,"hash_ids":[3968091,3968092,3968093,3968094,3968095,3968096],"delay":15633.7} +{"session_id":"sess-8cf863a9b30f","input_length":2155,"output_length":64,"hash_ids":[3968097,3968098,3968099,3968100,3968101],"delay":977.7} +{"session_id":"sess-8cf863a9b30f","input_length":2164,"output_length":431,"hash_ids":[3968102,3968103,3968104,3968105,3968106],"delay":616.0} +{"session_id":"sess-8cf863a9b30f","input_length":872,"output_length":102,"hash_ids":[3968107,3968108],"delay":795.8} +{"session_id":"sess-8cf863a9b30f","input_length":4763,"output_length":174,"hash_ids":[3968109,3968110,3968111,3968112,3968113,3968114,3968115,3968116,3968117,3968118],"delay":18943.1} +{"session_id":"sess-8cf863a9b30f","input_length":976,"output_length":606,"hash_ids":[3968119,3968120],"delay":2293.8} +{"session_id":"sess-affaaece7484","input_length":57422,"output_length":1429,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3972063,3972064,3972065,3972066,3972067,3972068,3972069,3972070,3972071,3972072],"timestamp":0.0,"group_id":17} +{"session_id":"sess-affaaece7484","input_length":2391,"output_length":240,"hash_ids":[3972073,3972074,3972075,3972076,3972077],"delay":501.9} +{"session_id":"sess-affaaece7484","input_length":1519,"output_length":318,"hash_ids":[3972078,3972079,3972080],"delay":7368.6} +{"session_id":"sess-affaaece7484","input_length":3441,"output_length":2180,"hash_ids":[3972081,3972082,3972083,3972084,3972085,3972086,3972087],"delay":780.9} +{"session_id":"sess-affaaece7484","input_length":3863,"output_length":283,"hash_ids":[3972088,3972089,3972090,3972091,3972092,3972093,3972094,3972095],"delay":331.4} +{"session_id":"sess-affaaece7484","input_length":1793,"output_length":138,"hash_ids":[3972096,3972097,3972098,3972099],"delay":1119.5} +{"session_id":"sess-affaaece7484","input_length":2690,"output_length":558,"hash_ids":[3972100,3972101,3972102,3972103,3972104,3972105],"delay":359.8} +{"session_id":"sess-affaaece7484","input_length":330,"output_length":268,"hash_ids":[3972106],"delay":1656.8} +{"session_id":"sess-affaaece7484","input_length":932,"output_length":2177,"hash_ids":[3972107,3972108],"delay":28307.4} +{"session_id":"sess-affaaece7484","input_length":1274,"output_length":219,"hash_ids":[3972109,3972110,3972111],"delay":799.6} +{"session_id":"sess-affaaece7484","input_length":1862,"output_length":612,"hash_ids":[3972112,3972113,3972114,3972115],"delay":4074.3} +{"session_id":"sess-affaaece7484","input_length":4307,"output_length":347,"hash_ids":[3972116,3972117,3972118,3972119,3972120,3972121,3972122,3972123,3972124],"delay":627.5} +{"session_id":"sess-affaaece7484","input_length":2147,"output_length":720,"hash_ids":[3972125,3972126,3972127,3972128,3972129],"delay":178.2} +{"session_id":"sess-affaaece7484","input_length":1460,"output_length":2199,"hash_ids":[3972130,3972131,3972132],"delay":989.9} +{"session_id":"sess-affaaece7484","input_length":716,"output_length":990,"hash_ids":[3972133,3972134],"delay":840.3} +{"session_id":"sess-affaaece7484","input_length":3676,"output_length":163,"hash_ids":[3972135,3972136,3972137,3972138,3972139,3972140,3972141,3972142],"delay":322.0} +{"session_id":"sess-affaaece7484","input_length":2528,"output_length":200,"hash_ids":[3972143,3972144,3972145,3972146,3972147],"delay":267.4} +{"session_id":"sess-affaaece7484","input_length":6842,"output_length":837,"hash_ids":[3972148,3972149,3972150,3972151,3972152,3972153,3972154,3972155,3972156,3972157,3972158,3972159,3972160,3972161],"delay":1043.9} +{"session_id":"sess-affaaece7484","input_length":2420,"output_length":384,"hash_ids":[3972162,3972163,3972164,3972165,3972166],"delay":690.9} +{"session_id":"sess-affaaece7484","input_length":994,"output_length":1653,"hash_ids":[3972167,3972168],"delay":3898.4} +{"session_id":"sess-affaaece7484","input_length":1324,"output_length":107,"hash_ids":[3972169,3972170,3972171],"delay":176.6} +{"session_id":"sess-affaaece7484","input_length":4266,"output_length":733,"hash_ids":[3972172,3972173,3972174,3972175,3972176,3972177,3972178,3972179,3972180],"delay":948.6} +{"session_id":"sess-affaaece7484","input_length":2069,"output_length":218,"hash_ids":[3972181,3972182,3972183,3972184,3972185],"delay":1877.8} +{"session_id":"sess-69464a557e01","input_length":68604,"output_length":2296,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,3976063,3976064,3976065,3976066,3976067,3976068,3976069,3976070,3976071,3976072,3976073,3976074,3976075,3976076,3976077,3976078,3976079,3976080,3976081,3976082,3976083,3976084,3976085,3976086,3976087,3976088,3976089,3976090,3976091,3976092,3976093],"timestamp":0.0,"group_id":5} +{"session_id":"sess-69464a557e01","input_length":3942,"output_length":1049,"hash_ids":[3976094,3976095,3976096,3976097,3976098,3976099,3976100,3976101],"delay":37527.0} +{"session_id":"sess-69464a557e01","input_length":6168,"output_length":586,"hash_ids":[3976102,3976103,3976104,3976105,3976106,3976107,3976108,3976109,3976110,3976111,3976112,3976113,3976114],"delay":842.5} +{"session_id":"sess-69464a557e01","input_length":612,"output_length":1171,"hash_ids":[3976115,3976116],"delay":28291.9} +{"session_id":"sess-69464a557e01","input_length":1653,"output_length":144,"hash_ids":[3976117,3976118,3976119,3976120],"delay":2233.0} +{"session_id":"sess-69464a557e01","input_length":4615,"output_length":2554,"hash_ids":[3976121,3976122,3976123,3976124,3976125,3976126,3976127,3976128,3976129,3976130],"delay":854.1} +{"session_id":"sess-69464a557e01","input_length":1933,"output_length":596,"hash_ids":[3976131,3976132,3976133,3976134],"delay":4661.0} +{"session_id":"sess-69464a557e01","input_length":3185,"output_length":929,"hash_ids":[3976135,3976136,3976137,3976138,3976139,3976140,3976141],"delay":266.2} +{"session_id":"sess-69464a557e01","input_length":3278,"output_length":107,"hash_ids":[3976142,3976143,3976144,3976145,3976146,3976147,3976148],"delay":1406.7} +{"session_id":"sess-69464a557e01","input_length":5371,"output_length":192,"hash_ids":[3976149,3976150,3976151,3976152,3976153,3976154,3976155,3976156,3976157,3976158,3976159],"delay":242.3} +{"session_id":"sess-69464a557e01","input_length":5303,"output_length":1382,"hash_ids":[3976160,3976161,3976162,3976163,3976164,3976165,3976166,3976167,3976168,3976169,3976170],"delay":831.6} +{"session_id":"sess-a11234e1446e","input_length":52427,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702],"timestamp":0.0,"group_id":23} +{"session_id":"sess-a11234e1446e","input_length":1279,"output_length":112,"hash_ids":[3976171,3976172,3976173],"delay":4163.7} +{"session_id":"sess-a11234e1446e","input_length":1103,"output_length":224,"hash_ids":[3976174,3976175,3976176],"delay":37643.5} +{"session_id":"sess-a11234e1446e","input_length":2007,"output_length":108,"hash_ids":[3976177,3976178,3976179,3976180],"delay":34021.5} +{"session_id":"sess-a11234e1446e","input_length":3484,"output_length":260,"hash_ids":[3976181,3976182,3976183,3976184,3976185,3976186,3976187],"delay":31008.2} +{"session_id":"sess-a11234e1446e","input_length":2517,"output_length":1195,"hash_ids":[3976188,3976189,3976190,3976191,3976192],"delay":1305.1} +{"session_id":"sess-a11234e1446e","input_length":406,"output_length":159,"hash_ids":[3976193],"delay":710.5} +{"session_id":"sess-a11234e1446e","input_length":3845,"output_length":163,"hash_ids":[3976194,3976195,3976196,3976197,3976198,3976199,3976200,3976201],"delay":1484.2} +{"session_id":"sess-a11234e1446e","input_length":3921,"output_length":191,"hash_ids":[3976202,3976203,3976204,3976205,3976206,3976207,3976208,3976209],"delay":1569.3} +{"session_id":"sess-a11234e1446e","input_length":478,"output_length":64,"hash_ids":[3976210],"delay":3757.8} +{"session_id":"sess-a11234e1446e","input_length":684,"output_length":381,"hash_ids":[3976211,3976212],"delay":626.4} +{"session_id":"sess-a11234e1446e","input_length":1391,"output_length":150,"hash_ids":[3976213,3976214,3976215],"delay":532.5} +{"session_id":"sess-a11234e1446e","input_length":1823,"output_length":70,"hash_ids":[3976216,3976217,3976218,3976219],"delay":865.1} +{"session_id":"sess-a11234e1446e","input_length":2088,"output_length":159,"hash_ids":[3976220,3976221,3976222,3976223,3976224],"delay":606.8} +{"session_id":"sess-a11234e1446e","input_length":4082,"output_length":127,"hash_ids":[3976225,3976226,3976227,3976228,3976229,3976230,3976231,3976232],"delay":28452.3} +{"session_id":"sess-a11234e1446e","input_length":389,"output_length":406,"hash_ids":[3976233],"delay":2445.5} +{"session_id":"sess-a11234e1446e","input_length":5868,"output_length":246,"hash_ids":[3976234,3976235,3976236,3976237,3976238,3976239,3976240,3976241,3976242,3976243,3976244,3976245],"delay":2306.3} +{"session_id":"sess-a11234e1446e","input_length":695,"output_length":142,"hash_ids":[3976246,3976247],"delay":422.5} +{"session_id":"sess-a11234e1446e","input_length":2560,"output_length":1032,"hash_ids":[3976248,3976249,3976250,3976251,3976252],"delay":2740.3} +{"session_id":"sess-a11234e1446e","input_length":8734,"output_length":141,"hash_ids":[3976253,3976254,3976255,3976256,3976257,3976258,3976259,3976260,3976261,3976262,3976263,3976264,3976265,3976266,3976267,3976268,3976269,3976270],"delay":1414.1} +{"session_id":"sess-a11234e1446e","input_length":2243,"output_length":38,"hash_ids":[3976271,3976272,3976273,3976274,3976275],"delay":416.1} +{"session_id":"sess-a11234e1446e","input_length":1863,"output_length":318,"hash_ids":[3976276,3976277,3976278,3976279],"delay":36315.5} +{"session_id":"sess-a11234e1446e","input_length":90,"output_length":1672,"hash_ids":[3976280],"delay":7924.2} +{"session_id":"sess-a11234e1446e","input_length":1022,"output_length":503,"hash_ids":[3976281,3976282],"delay":1896.8} +{"session_id":"sess-a11234e1446e","input_length":145,"output_length":236,"hash_ids":[3976283],"delay":735.2} +{"session_id":"sess-a11234e1446e","input_length":311,"output_length":261,"hash_ids":[3976284],"delay":12245.3} +{"session_id":"sess-a11234e1446e","input_length":3712,"output_length":248,"hash_ids":[3976285,3976286,3976287,3976288,3976289,3976290,3976291,3976292],"delay":19504.4} +{"session_id":"sess-a11234e1446e","input_length":1149,"output_length":422,"hash_ids":[3976293,3976294,3976295],"delay":1006.3} +{"session_id":"sess-a11234e1446e","input_length":1430,"output_length":424,"hash_ids":[3976296,3976297,3976298],"delay":13600.3} +{"session_id":"sess-a11234e1446e","input_length":2762,"output_length":64,"hash_ids":[3976299,3976300,3976301,3976302,3976303,3976304],"delay":456.3} +{"session_id":"sess-a11234e1446e","input_length":1502,"output_length":204,"hash_ids":[3976305,3976306,3976307],"delay":15146.7} +{"session_id":"sess-a11234e1446e","input_length":300,"output_length":2363,"hash_ids":[3976308],"delay":685.4} +{"session_id":"sess-f3610e0a4ebc","input_length":58781,"output_length":1338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,3984063,3984064,3984065,3984066,3984067,3984068,3984069,3984070,3984071,3984072,3984073,3984074],"timestamp":0.0,"group_id":23} +{"session_id":"sess-f3610e0a4ebc","input_length":1786,"output_length":177,"hash_ids":[3984075,3984076,3984077,3984078],"delay":1629.9} +{"session_id":"sess-f3610e0a4ebc","input_length":5209,"output_length":150,"hash_ids":[3984079,3984080,3984081,3984082,3984083,3984084,3984085,3984086,3984087,3984088,3984089],"delay":182.0} +{"session_id":"sess-f3610e0a4ebc","input_length":7238,"output_length":366,"hash_ids":[3984090,3984091,3984092,3984093,3984094,3984095,3984096,3984097,3984098,3984099,3984100,3984101,3984102,3984103,3984104],"delay":1615.4} +{"session_id":"sess-f3610e0a4ebc","input_length":4453,"output_length":957,"hash_ids":[3984105,3984106,3984107,3984108,3984109,3984110,3984111,3984112,3984113],"delay":992.8} +{"session_id":"sess-f3610e0a4ebc","input_length":1817,"output_length":423,"hash_ids":[3984114,3984115,3984116,3984117],"delay":442.1} +{"session_id":"sess-f3610e0a4ebc","input_length":3018,"output_length":312,"hash_ids":[3984118,3984119,3984120,3984121,3984122,3984123],"delay":3793.9} +{"session_id":"sess-f3610e0a4ebc","input_length":2553,"output_length":65,"hash_ids":[3984124,3984125,3984126,3984127,3984128],"delay":1293.3} +{"session_id":"sess-f3610e0a4ebc","input_length":782,"output_length":325,"hash_ids":[3984129,3984130],"delay":12696.9} +{"session_id":"sess-f3610e0a4ebc","input_length":1312,"output_length":732,"hash_ids":[3984131,3984132,3984133],"delay":1863.1} +{"session_id":"sess-f3610e0a4ebc","input_length":727,"output_length":124,"hash_ids":[3984134,3984135],"delay":1504.4} +{"session_id":"sess-f3610e0a4ebc","input_length":6039,"output_length":159,"hash_ids":[3984136,3984137,3984138,3984139,3984140,3984141,3984142,3984143,3984144,3984145,3984146,3984147],"delay":120.5} +{"session_id":"sess-f3610e0a4ebc","input_length":2573,"output_length":47,"hash_ids":[3984148,3984149,3984150,3984151,3984152,3984153],"delay":479.8} +{"session_id":"sess-f3610e0a4ebc","input_length":1055,"output_length":45,"hash_ids":[3984154,3984155,3984156],"delay":35971.9} +{"session_id":"sess-f3610e0a4ebc","input_length":8605,"output_length":158,"hash_ids":[3984157,3984158,3984159,3984160,3984161,3984162,3984163,3984164,3984165,3984166,3984167,3984168,3984169,3984170,3984171,3984172,3984173],"delay":7067.7} +{"session_id":"sess-f3610e0a4ebc","input_length":921,"output_length":198,"hash_ids":[3984174,3984175],"delay":1062.1} +{"session_id":"sess-f3610e0a4ebc","input_length":627,"output_length":226,"hash_ids":[3984176,3984177],"delay":1418.0} +{"session_id":"sess-f3610e0a4ebc","input_length":852,"output_length":631,"hash_ids":[3984178,3984179],"delay":1848.2} +{"session_id":"sess-f3610e0a4ebc","input_length":3669,"output_length":412,"hash_ids":[3984180,3984181,3984182,3984183,3984184,3984185,3984186,3984187],"delay":1068.9} +{"session_id":"sess-f3610e0a4ebc","input_length":224,"output_length":1113,"hash_ids":[3984188],"delay":967.6} +{"session_id":"sess-f3610e0a4ebc","input_length":2439,"output_length":272,"hash_ids":[3984189,3984190,3984191,3984192,3984193],"delay":537.0} +{"session_id":"sess-f3610e0a4ebc","input_length":548,"output_length":209,"hash_ids":[3984194,3984195],"delay":1047.0} +{"session_id":"sess-f3610e0a4ebc","input_length":2572,"output_length":134,"hash_ids":[3984196,3984197,3984198,3984199,3984200,3984201],"delay":259.2} +{"session_id":"sess-f3610e0a4ebc","input_length":1564,"output_length":78,"hash_ids":[3984202,3984203,3984204,3984205],"delay":25551.1} +{"session_id":"sess-f6762afba50d","input_length":53780,"output_length":974,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,3988063,3988064,3988065],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f6762afba50d","input_length":2594,"output_length":328,"hash_ids":[3988066,3988067,3988068,3988069,3988070,3988071],"delay":1753.3} +{"session_id":"sess-f6762afba50d","input_length":2508,"output_length":176,"hash_ids":[3988072,3988073,3988074,3988075,3988076],"delay":56001.9} +{"session_id":"sess-f6762afba50d","input_length":2799,"output_length":105,"hash_ids":[3988077,3988078,3988079,3988080,3988081,3988082],"delay":7418.0} +{"session_id":"sess-f6762afba50d","input_length":1916,"output_length":254,"hash_ids":[3988083,3988084,3988085,3988086],"delay":21242.3} +{"session_id":"sess-f6762afba50d","input_length":1206,"output_length":1239,"hash_ids":[3988087,3988088,3988089],"delay":1480.2} +{"session_id":"sess-f6762afba50d","input_length":275,"output_length":622,"hash_ids":[3988090],"delay":11916.8} +{"session_id":"sess-f6762afba50d","input_length":2144,"output_length":254,"hash_ids":[3988091,3988092,3988093,3988094,3988095],"delay":2892.7} +{"session_id":"sess-f6762afba50d","input_length":7607,"output_length":517,"hash_ids":[3988096,3988097,3988098,3988099,3988100,3988101,3988102,3988103,3988104,3988105,3988106,3988107,3988108,3988109,3988110],"delay":1628.6} +{"session_id":"sess-f6762afba50d","input_length":1699,"output_length":106,"hash_ids":[3988111,3988112,3988113,3988114],"delay":39900.3} +{"session_id":"sess-f6762afba50d","input_length":722,"output_length":1052,"hash_ids":[3988115,3988116],"delay":458.3} +{"session_id":"sess-f6762afba50d","input_length":2486,"output_length":259,"hash_ids":[3988117,3988118,3988119,3988120,3988121],"delay":450.4} +{"session_id":"sess-f6762afba50d","input_length":1368,"output_length":84,"hash_ids":[3988122,3988123,3988124],"delay":370.9} +{"session_id":"sess-f6762afba50d","input_length":3148,"output_length":445,"hash_ids":[3988125,3988126,3988127,3988128,3988129,3988130,3988131],"delay":629.6} +{"session_id":"sess-f6762afba50d","input_length":509,"output_length":1739,"hash_ids":[3988132],"delay":601.9} +{"session_id":"sess-f6762afba50d","input_length":3726,"output_length":476,"hash_ids":[3988133,3988134,3988135,3988136,3988137,3988138,3988139,3988140],"delay":291.2} +{"session_id":"sess-f6762afba50d","input_length":549,"output_length":489,"hash_ids":[3988141,3988142],"delay":164.6} +{"session_id":"sess-f6762afba50d","input_length":569,"output_length":959,"hash_ids":[3988143,3988144],"delay":972.1} +{"session_id":"sess-f6762afba50d","input_length":1204,"output_length":153,"hash_ids":[3988145,3988146,3988147],"delay":706.5} +{"session_id":"sess-f6762afba50d","input_length":318,"output_length":80,"hash_ids":[3988148],"delay":13771.9} +{"session_id":"sess-cb7620cb9032","input_length":54062,"output_length":303,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,3992063,3992064,3992065],"timestamp":0.0,"group_id":1} +{"session_id":"sess-cb7620cb9032","input_length":5644,"output_length":339,"hash_ids":[3992066,3992067,3992068,3992069,3992070,3992071,3992072,3992073,3992074,3992075,3992076,3992077],"delay":10686.9} +{"session_id":"sess-cb7620cb9032","input_length":1687,"output_length":160,"hash_ids":[3992078,3992079,3992080,3992081],"delay":6814.6} +{"session_id":"sess-cb7620cb9032","input_length":5419,"output_length":457,"hash_ids":[3992082,3992083,3992084,3992085,3992086,3992087,3992088,3992089,3992090,3992091,3992092],"delay":7501.3} +{"session_id":"sess-cb7620cb9032","input_length":6238,"output_length":367,"hash_ids":[3992093,3992094,3992095,3992096,3992097,3992098,3992099,3992100,3992101,3992102,3992103,3992104,3992105],"delay":2174.1} +{"session_id":"sess-cb7620cb9032","input_length":2348,"output_length":367,"hash_ids":[3992106,3992107,3992108,3992109,3992110],"delay":1607.6} +{"session_id":"sess-cb7620cb9032","input_length":3467,"output_length":55,"hash_ids":[3992111,3992112,3992113,3992114,3992115,3992116,3992117],"delay":3170.7} +{"session_id":"sess-cb7620cb9032","input_length":2992,"output_length":424,"hash_ids":[3992118,3992119,3992120,3992121,3992122,3992123],"delay":28911.4} +{"session_id":"sess-cb7620cb9032","input_length":3518,"output_length":272,"hash_ids":[3992124,3992125,3992126,3992127,3992128,3992129,3992130],"delay":446.6} +{"session_id":"sess-cb7620cb9032","input_length":450,"output_length":913,"hash_ids":[3992131],"delay":20355.1} +{"session_id":"sess-cb7620cb9032","input_length":546,"output_length":345,"hash_ids":[3992132,3992133],"delay":29765.3} +{"session_id":"sess-cb7620cb9032","input_length":641,"output_length":458,"hash_ids":[3992134,3992135],"delay":525.8} +{"session_id":"sess-cb7620cb9032","input_length":3022,"output_length":195,"hash_ids":[3992136,3992137,3992138,3992139,3992140,3992141],"delay":542.5} +{"session_id":"sess-cb7620cb9032","input_length":409,"output_length":278,"hash_ids":[3992142],"delay":1926.5} +{"session_id":"sess-cb7620cb9032","input_length":444,"output_length":80,"hash_ids":[3992143],"delay":524.0} +{"session_id":"sess-cb7620cb9032","input_length":391,"output_length":216,"hash_ids":[3992144],"delay":843.5} +{"session_id":"sess-cb7620cb9032","input_length":1758,"output_length":848,"hash_ids":[3992145,3992146,3992147,3992148],"delay":248.0} +{"session_id":"sess-cb7620cb9032","input_length":8924,"output_length":149,"hash_ids":[3992149,3992150,3992151,3992152,3992153,3992154,3992155,3992156,3992157,3992158,3992159,3992160,3992161,3992162,3992163,3992164,3992165,3992166],"delay":498.6} +{"session_id":"sess-cb7620cb9032","input_length":4059,"output_length":64,"hash_ids":[3992167,3992168,3992169,3992170,3992171,3992172,3992173,3992174],"delay":3978.9} +{"session_id":"sess-cb7620cb9032","input_length":1799,"output_length":983,"hash_ids":[3992175,3992176,3992177,3992178],"delay":1385.0} +{"session_id":"sess-cb7620cb9032","input_length":1730,"output_length":339,"hash_ids":[3992179,3992180,3992181,3992182],"delay":1733.2} +{"session_id":"sess-cb7620cb9032","input_length":2419,"output_length":33,"hash_ids":[3992183,3992184,3992185,3992186,3992187],"delay":732.9} +{"session_id":"sess-cb7620cb9032","input_length":1965,"output_length":448,"hash_ids":[3992188,3992189,3992190,3992191],"delay":17529.8} +{"session_id":"sess-cb7620cb9032","input_length":262,"output_length":428,"hash_ids":[3992192],"delay":25880.5} +{"session_id":"sess-cb7620cb9032","input_length":2654,"output_length":212,"hash_ids":[3992193,3992194,3992195,3992196,3992197,3992198],"delay":9261.8} +{"session_id":"sess-cb7620cb9032","input_length":2055,"output_length":309,"hash_ids":[3992199,3992200,3992201,3992202,3992203],"delay":511.5} +{"session_id":"sess-8fe7d8270f6d","input_length":53519,"output_length":1393,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,3996063,3996064],"timestamp":0.0,"group_id":3} +{"session_id":"sess-8fe7d8270f6d","input_length":1158,"output_length":317,"hash_ids":[3996065,3996066,3996067],"delay":40004.4} +{"session_id":"sess-8fe7d8270f6d","input_length":1025,"output_length":215,"hash_ids":[3996068,3996069,3996070],"delay":1461.0} +{"session_id":"sess-8fe7d8270f6d","input_length":157,"output_length":271,"hash_ids":[3996071],"delay":363.2} +{"session_id":"sess-8fe7d8270f6d","input_length":2397,"output_length":190,"hash_ids":[3996072,3996073,3996074,3996075,3996076],"delay":1406.6} +{"session_id":"sess-8fe7d8270f6d","input_length":457,"output_length":2757,"hash_ids":[3996077],"delay":36369.5} +{"session_id":"sess-8fe7d8270f6d","input_length":6230,"output_length":34,"hash_ids":[3996078,3996079,3996080,3996081,3996082,3996083,3996084,3996085,3996086,3996087,3996088,3996089,3996090],"delay":603.2} +{"session_id":"sess-8fe7d8270f6d","input_length":2099,"output_length":245,"hash_ids":[3996091,3996092,3996093,3996094,3996095],"delay":1046.4} +{"session_id":"sess-8fe7d8270f6d","input_length":121,"output_length":312,"hash_ids":[3996096],"delay":14333.4} +{"session_id":"sess-8fe7d8270f6d","input_length":3264,"output_length":476,"hash_ids":[3996097,3996098,3996099,3996100,3996101,3996102,3996103],"delay":701.0} +{"session_id":"sess-8fe7d8270f6d","input_length":1057,"output_length":140,"hash_ids":[3996104,3996105,3996106],"delay":3240.3} +{"session_id":"sess-8fe7d8270f6d","input_length":4542,"output_length":235,"hash_ids":[3996107,3996108,3996109,3996110,3996111,3996112,3996113,3996114,3996115],"delay":919.7} +{"session_id":"sess-8fe7d8270f6d","input_length":4660,"output_length":147,"hash_ids":[3996116,3996117,3996118,3996119,3996120,3996121,3996122,3996123,3996124,3996125],"delay":668.0} +{"session_id":"sess-8fe7d8270f6d","input_length":2148,"output_length":217,"hash_ids":[3996126,3996127,3996128,3996129,3996130],"delay":293.2} +{"session_id":"sess-8fe7d8270f6d","input_length":838,"output_length":194,"hash_ids":[3996131,3996132],"delay":383.7} +{"session_id":"sess-8fe7d8270f6d","input_length":2446,"output_length":281,"hash_ids":[3996133,3996134,3996135,3996136,3996137],"delay":1522.3} +{"session_id":"sess-0b467bbcc816","input_length":61792,"output_length":374,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,4000063,4000064,4000065,4000066,4000067,4000068,4000069,4000070,4000071,4000072,4000073,4000074,4000075,4000076,4000077,4000078,4000079,4000080],"timestamp":0.0,"group_id":17} +{"session_id":"sess-0b467bbcc816","input_length":9907,"output_length":227,"hash_ids":[4000081,4000082,4000083,4000084,4000085,4000086,4000087,4000088,4000089,4000090,4000091,4000092,4000093,4000094,4000095,4000096,4000097,4000098,4000099,4000100],"delay":1972.5} +{"session_id":"sess-0b467bbcc816","input_length":576,"output_length":103,"hash_ids":[4000101,4000102],"delay":42000.9} +{"session_id":"sess-0b467bbcc816","input_length":3534,"output_length":1078,"hash_ids":[4000103,4000104,4000105,4000106,4000107,4000108,4000109],"delay":14461.5} +{"session_id":"sess-0b467bbcc816","input_length":2650,"output_length":44,"hash_ids":[4000110,4000111,4000112,4000113,4000114,4000115],"delay":1389.8} +{"session_id":"sess-0b467bbcc816","input_length":7109,"output_length":98,"hash_ids":[4000116,4000117,4000118,4000119,4000120,4000121,4000122,4000123,4000124,4000125,4000126,4000127,4000128,4000129],"delay":2130.6} +{"session_id":"sess-0b467bbcc816","input_length":3031,"output_length":151,"hash_ids":[4000130,4000131,4000132,4000133,4000134,4000135],"delay":161.3} +{"session_id":"sess-0b467bbcc816","input_length":6648,"output_length":133,"hash_ids":[4000136,4000137,4000138,4000139,4000140,4000141,4000142,4000143,4000144,4000145,4000146,4000147,4000148],"delay":761.2} +{"session_id":"sess-0b467bbcc816","input_length":525,"output_length":736,"hash_ids":[4000149,4000150],"delay":1781.5} +{"session_id":"sess-0b467bbcc816","input_length":2115,"output_length":73,"hash_ids":[4000151,4000152,4000153,4000154,4000155],"delay":792.6} +{"session_id":"sess-0b467bbcc816","input_length":2410,"output_length":96,"hash_ids":[4000156,4000157,4000158,4000159,4000160],"delay":21449.4} +{"session_id":"sess-0b467bbcc816","input_length":2257,"output_length":43,"hash_ids":[4000161,4000162,4000163,4000164,4000165],"delay":1562.1} +{"session_id":"sess-0b467bbcc816","input_length":498,"output_length":103,"hash_ids":[4000166],"delay":316.0} +{"session_id":"sess-0b467bbcc816","input_length":1610,"output_length":283,"hash_ids":[4000167,4000168,4000169,4000170],"delay":11450.7} +{"session_id":"sess-0b467bbcc816","input_length":427,"output_length":572,"hash_ids":[4000171],"delay":1119.0} +{"session_id":"sess-0b467bbcc816","input_length":1572,"output_length":397,"hash_ids":[4000172,4000173,4000174,4000175],"delay":189.1} +{"session_id":"sess-0b467bbcc816","input_length":2243,"output_length":42,"hash_ids":[4000176,4000177,4000178,4000179,4000180],"delay":17811.4} +{"session_id":"sess-0b467bbcc816","input_length":999,"output_length":392,"hash_ids":[4000181,4000182],"delay":3851.6} +{"session_id":"sess-0b467bbcc816","input_length":350,"output_length":252,"hash_ids":[4000183],"delay":434.4} +{"session_id":"sess-0b467bbcc816","input_length":1145,"output_length":77,"hash_ids":[4000184,4000185,4000186],"delay":265.7} +{"session_id":"sess-0b467bbcc816","input_length":850,"output_length":100,"hash_ids":[4000187,4000188],"delay":285.1} +{"session_id":"sess-0b467bbcc816","input_length":5833,"output_length":214,"hash_ids":[4000189,4000190,4000191,4000192,4000193,4000194,4000195,4000196,4000197,4000198,4000199,4000200],"delay":412.5} +{"session_id":"sess-0b467bbcc816","input_length":3437,"output_length":1877,"hash_ids":[4000201,4000202,4000203,4000204,4000205,4000206,4000207],"delay":321.8} +{"session_id":"sess-0b467bbcc816","input_length":1634,"output_length":308,"hash_ids":[4000208,4000209,4000210,4000211],"delay":5051.0} +{"session_id":"sess-7899399c29ee","input_length":54829,"output_length":158,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,4004063,4004064,4004065,4004066,4004067],"timestamp":0.0,"group_id":14} +{"session_id":"sess-7899399c29ee","input_length":2938,"output_length":187,"hash_ids":[4004068,4004069,4004070,4004071,4004072,4004073],"delay":2454.3} +{"session_id":"sess-7899399c29ee","input_length":3668,"output_length":575,"hash_ids":[4004074,4004075,4004076,4004077,4004078,4004079,4004080,4004081],"delay":9263.2} +{"session_id":"sess-7899399c29ee","input_length":1128,"output_length":225,"hash_ids":[4004082,4004083,4004084],"delay":551.7} +{"session_id":"sess-7899399c29ee","input_length":1153,"output_length":121,"hash_ids":[4004085,4004086,4004087],"delay":548.7} +{"session_id":"sess-7899399c29ee","input_length":1675,"output_length":295,"hash_ids":[4004088,4004089,4004090,4004091],"delay":1541.3} +{"session_id":"sess-7899399c29ee","input_length":1495,"output_length":98,"hash_ids":[4004092,4004093,4004094],"delay":7457.4} +{"session_id":"sess-7899399c29ee","input_length":670,"output_length":152,"hash_ids":[4004095,4004096],"delay":457.5} +{"session_id":"sess-7899399c29ee","input_length":4712,"output_length":379,"hash_ids":[4004097,4004098,4004099,4004100,4004101,4004102,4004103,4004104,4004105,4004106],"delay":2236.1} +{"session_id":"sess-7899399c29ee","input_length":402,"output_length":38,"hash_ids":[4004107],"delay":2671.2} +{"session_id":"sess-7899399c29ee","input_length":3065,"output_length":209,"hash_ids":[4004108,4004109,4004110,4004111,4004112,4004113],"delay":15763.4} +{"session_id":"sess-7899399c29ee","input_length":690,"output_length":208,"hash_ids":[4004114,4004115],"delay":1012.1} +{"session_id":"sess-7899399c29ee","input_length":1133,"output_length":119,"hash_ids":[4004116,4004117,4004118],"delay":12301.4} +{"session_id":"sess-7899399c29ee","input_length":1029,"output_length":115,"hash_ids":[4004119,4004120,4004121],"delay":2765.0} +{"session_id":"sess-7899399c29ee","input_length":6321,"output_length":683,"hash_ids":[4004122,4004123,4004124,4004125,4004126,4004127,4004128,4004129,4004130,4004131,4004132,4004133,4004134],"delay":3182.0} +{"session_id":"sess-7899399c29ee","input_length":3082,"output_length":566,"hash_ids":[4004135,4004136,4004137,4004138,4004139,4004140,4004141],"delay":3448.9} +{"session_id":"sess-7899399c29ee","input_length":1106,"output_length":350,"hash_ids":[4004142,4004143,4004144],"delay":1370.2} +{"session_id":"sess-7899399c29ee","input_length":5331,"output_length":123,"hash_ids":[4004145,4004146,4004147,4004148,4004149,4004150,4004151,4004152,4004153,4004154,4004155],"delay":2646.1} +{"session_id":"sess-7899399c29ee","input_length":1056,"output_length":308,"hash_ids":[4004156,4004157,4004158],"delay":1116.7} +{"session_id":"sess-7899399c29ee","input_length":4086,"output_length":245,"hash_ids":[4004159,4004160,4004161,4004162,4004163,4004164,4004165,4004166],"delay":1560.5} +{"session_id":"sess-7899399c29ee","input_length":1596,"output_length":1401,"hash_ids":[4004167,4004168,4004169,4004170],"delay":843.3} +{"session_id":"sess-7899399c29ee","input_length":719,"output_length":995,"hash_ids":[4004171,4004172],"delay":898.9} +{"session_id":"sess-7899399c29ee","input_length":1113,"output_length":110,"hash_ids":[4004173,4004174,4004175],"delay":305.7} +{"session_id":"sess-7899399c29ee","input_length":1975,"output_length":105,"hash_ids":[4004176,4004177,4004178,4004179],"delay":7283.9} +{"session_id":"sess-7899399c29ee","input_length":3937,"output_length":350,"hash_ids":[4004180,4004181,4004182,4004183,4004184,4004185,4004186,4004187],"delay":425.0} +{"session_id":"sess-7899399c29ee","input_length":2367,"output_length":127,"hash_ids":[4004188,4004189,4004190,4004191,4004192],"delay":11955.8} +{"session_id":"sess-7899399c29ee","input_length":739,"output_length":71,"hash_ids":[4004193,4004194],"delay":128.6} +{"session_id":"sess-7899399c29ee","input_length":3584,"output_length":239,"hash_ids":[4004195,4004196,4004197,4004198,4004199,4004200,4004201],"delay":192.9} +{"session_id":"sess-7899399c29ee","input_length":877,"output_length":356,"hash_ids":[4004202,4004203],"delay":544.2} +{"session_id":"sess-7899399c29ee","input_length":493,"output_length":237,"hash_ids":[4004204],"delay":63.9} +{"session_id":"sess-7899399c29ee","input_length":3725,"output_length":1450,"hash_ids":[4004205,4004206,4004207,4004208,4004209,4004210,4004211,4004212],"delay":246.6} +{"session_id":"sess-d11be39f3645","input_length":54698,"output_length":1243,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4008063,4008064,4008065,4008066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d11be39f3645","input_length":1462,"output_length":76,"hash_ids":[4008067,4008068,4008069],"delay":14363.7} +{"session_id":"sess-d11be39f3645","input_length":1137,"output_length":350,"hash_ids":[4008070,4008071,4008072],"delay":28664.8} +{"session_id":"sess-d11be39f3645","input_length":3228,"output_length":1204,"hash_ids":[4008073,4008074,4008075,4008076,4008077,4008078,4008079],"delay":874.5} +{"session_id":"sess-d11be39f3645","input_length":4792,"output_length":69,"hash_ids":[4008080,4008081,4008082,4008083,4008084,4008085,4008086,4008087,4008088,4008089],"delay":946.4} +{"session_id":"sess-d11be39f3645","input_length":1506,"output_length":364,"hash_ids":[4008090,4008091,4008092],"delay":2228.0} +{"session_id":"sess-d11be39f3645","input_length":957,"output_length":136,"hash_ids":[4008093,4008094],"delay":314.6} +{"session_id":"sess-d11be39f3645","input_length":1353,"output_length":640,"hash_ids":[4008095,4008096,4008097],"delay":969.0} +{"session_id":"sess-d11be39f3645","input_length":2182,"output_length":114,"hash_ids":[4008098,4008099,4008100,4008101,4008102],"delay":594.5} +{"session_id":"sess-d11be39f3645","input_length":231,"output_length":482,"hash_ids":[4008103],"delay":396.2} +{"session_id":"sess-d11be39f3645","input_length":5702,"output_length":452,"hash_ids":[4008104,4008105,4008106,4008107,4008108,4008109,4008110,4008111,4008112,4008113,4008114,4008115],"delay":13139.6} +{"session_id":"sess-d11be39f3645","input_length":1186,"output_length":284,"hash_ids":[4008116,4008117,4008118],"delay":899.0} +{"session_id":"sess-d11be39f3645","input_length":1670,"output_length":466,"hash_ids":[4008119,4008120,4008121,4008122],"delay":651.7} +{"session_id":"sess-d11be39f3645","input_length":623,"output_length":361,"hash_ids":[4008123,4008124],"delay":2800.0} +{"session_id":"sess-d11be39f3645","input_length":7493,"output_length":987,"hash_ids":[4008125,4008126,4008127,4008128,4008129,4008130,4008131,4008132,4008133,4008134,4008135,4008136,4008137,4008138,4008139],"delay":276.1} +{"session_id":"sess-d11be39f3645","input_length":3391,"output_length":429,"hash_ids":[4008140,4008141,4008142,4008143,4008144,4008145,4008146],"delay":13464.9} +{"session_id":"sess-d11be39f3645","input_length":346,"output_length":121,"hash_ids":[4008147],"delay":26959.2} +{"session_id":"sess-d11be39f3645","input_length":6920,"output_length":136,"hash_ids":[4008148,4008149,4008150,4008151,4008152,4008153,4008154,4008155,4008156,4008157,4008158,4008159,4008160,4008161],"delay":762.5} +{"session_id":"sess-23d42d33d8f2","input_length":55483,"output_length":122,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4012063,4012064,4012065,4012066,4012067,4012068],"timestamp":0.0,"group_id":0} +{"session_id":"sess-23d42d33d8f2","input_length":756,"output_length":933,"hash_ids":[4012069,4012070],"delay":12276.9} +{"session_id":"sess-23d42d33d8f2","input_length":553,"output_length":300,"hash_ids":[4012071,4012072],"delay":1327.9} +{"session_id":"sess-23d42d33d8f2","input_length":3311,"output_length":53,"hash_ids":[4012073,4012074,4012075,4012076,4012077,4012078,4012079],"delay":14047.3} +{"session_id":"sess-23d42d33d8f2","input_length":1622,"output_length":938,"hash_ids":[4012080,4012081,4012082,4012083],"delay":40325.9} +{"session_id":"sess-23d42d33d8f2","input_length":2005,"output_length":103,"hash_ids":[4012084,4012085,4012086,4012087],"delay":326.8} +{"session_id":"sess-23d42d33d8f2","input_length":877,"output_length":960,"hash_ids":[4012088,4012089],"delay":18954.2} +{"session_id":"sess-23d42d33d8f2","input_length":1690,"output_length":704,"hash_ids":[4012090,4012091,4012092,4012093],"delay":58057.1} +{"session_id":"sess-23d42d33d8f2","input_length":2837,"output_length":971,"hash_ids":[4012094,4012095,4012096,4012097,4012098,4012099],"delay":935.6} +{"session_id":"sess-23d42d33d8f2","input_length":3851,"output_length":134,"hash_ids":[4012100,4012101,4012102,4012103,4012104,4012105,4012106,4012107],"delay":481.8} +{"session_id":"sess-23d42d33d8f2","input_length":4478,"output_length":232,"hash_ids":[4012108,4012109,4012110,4012111,4012112,4012113,4012114,4012115,4012116],"delay":2213.1} +{"session_id":"sess-23d42d33d8f2","input_length":811,"output_length":240,"hash_ids":[4012117,4012118],"delay":10298.8} +{"session_id":"sess-23d42d33d8f2","input_length":1842,"output_length":1064,"hash_ids":[4012119,4012120,4012121,4012122],"delay":648.2} +{"session_id":"sess-23d42d33d8f2","input_length":1526,"output_length":122,"hash_ids":[4012123,4012124,4012125],"delay":613.7} +{"session_id":"sess-23d42d33d8f2","input_length":315,"output_length":71,"hash_ids":[4012126],"delay":1030.6} +{"session_id":"sess-23d42d33d8f2","input_length":2096,"output_length":484,"hash_ids":[4012127,4012128,4012129,4012130,4012131],"delay":704.5} +{"session_id":"sess-23d42d33d8f2","input_length":5493,"output_length":1251,"hash_ids":[4012132,4012133,4012134,4012135,4012136,4012137,4012138,4012139,4012140,4012141,4012142],"delay":959.4} +{"session_id":"sess-23d42d33d8f2","input_length":7066,"output_length":2271,"hash_ids":[4012143,4012144,4012145,4012146,4012147,4012148,4012149,4012150,4012151,4012152,4012153,4012154,4012155,4012156],"delay":1197.0} +{"session_id":"sess-2542a64336c9","input_length":54598,"output_length":918,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,4016063,4016064,4016065,4016066],"timestamp":0.0,"group_id":4} +{"session_id":"sess-2542a64336c9","input_length":836,"output_length":297,"hash_ids":[4016067,4016068],"delay":5733.6} +{"session_id":"sess-2542a64336c9","input_length":3315,"output_length":52,"hash_ids":[4016069,4016070,4016071,4016072,4016073,4016074,4016075],"delay":8639.1} +{"session_id":"sess-2542a64336c9","input_length":936,"output_length":617,"hash_ids":[4016076,4016077],"delay":258.1} +{"session_id":"sess-2542a64336c9","input_length":747,"output_length":176,"hash_ids":[4016078,4016079],"delay":1199.8} +{"session_id":"sess-2542a64336c9","input_length":9434,"output_length":681,"hash_ids":[4016080,4016081,4016082,4016083,4016084,4016085,4016086,4016087,4016088,4016089,4016090,4016091,4016092,4016093,4016094,4016095,4016096,4016097,4016098],"delay":5788.4} +{"session_id":"sess-2542a64336c9","input_length":801,"output_length":298,"hash_ids":[4016099,4016100],"delay":16577.5} +{"session_id":"sess-2542a64336c9","input_length":3980,"output_length":57,"hash_ids":[4016101,4016102,4016103,4016104,4016105,4016106,4016107,4016108],"delay":194.4} +{"session_id":"sess-2542a64336c9","input_length":2395,"output_length":245,"hash_ids":[4016109,4016110,4016111,4016112,4016113],"delay":2386.0} +{"session_id":"sess-2542a64336c9","input_length":4124,"output_length":266,"hash_ids":[4016114,4016115,4016116,4016117,4016118,4016119,4016120,4016121,4016122],"delay":2329.7} +{"session_id":"sess-2542a64336c9","input_length":448,"output_length":153,"hash_ids":[4016123],"delay":412.0} +{"session_id":"sess-2542a64336c9","input_length":242,"output_length":117,"hash_ids":[4016124],"delay":3437.1} +{"session_id":"sess-2542a64336c9","input_length":2847,"output_length":476,"hash_ids":[4016125,4016126,4016127,4016128,4016129,4016130],"delay":2541.9} +{"session_id":"sess-2542a64336c9","input_length":1313,"output_length":427,"hash_ids":[4016131,4016132,4016133],"delay":494.7} +{"session_id":"sess-e36facc228c6","input_length":63276,"output_length":515,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,4020063,4020064,4020065,4020066,4020067,4020068,4020069,4020070,4020071,4020072,4020073,4020074,4020075,4020076,4020077,4020078,4020079,4020080,4020081,4020082,4020083],"timestamp":0.0,"group_id":5} +{"session_id":"sess-e36facc228c6","input_length":292,"output_length":854,"hash_ids":[4020084],"delay":740.9} +{"session_id":"sess-e36facc228c6","input_length":6047,"output_length":65,"hash_ids":[4020085,4020086,4020087,4020088,4020089,4020090,4020091,4020092,4020093,4020094,4020095,4020096],"delay":927.3} +{"session_id":"sess-e36facc228c6","input_length":6802,"output_length":375,"hash_ids":[4020097,4020098,4020099,4020100,4020101,4020102,4020103,4020104,4020105,4020106,4020107,4020108,4020109,4020110],"delay":4190.0} +{"session_id":"sess-e36facc228c6","input_length":200,"output_length":158,"hash_ids":[4020111],"delay":1238.3} +{"session_id":"sess-e36facc228c6","input_length":359,"output_length":644,"hash_ids":[4020112],"delay":585.9} +{"session_id":"sess-e36facc228c6","input_length":1321,"output_length":167,"hash_ids":[4020113,4020114,4020115],"delay":7031.1} +{"session_id":"sess-e36facc228c6","input_length":851,"output_length":59,"hash_ids":[4020116,4020117],"delay":2985.3} +{"session_id":"sess-e36facc228c6","input_length":1115,"output_length":83,"hash_ids":[4020118,4020119,4020120],"delay":345.4} +{"session_id":"sess-e36facc228c6","input_length":1753,"output_length":64,"hash_ids":[4020121,4020122,4020123,4020124],"delay":6342.3} +{"session_id":"sess-e36facc228c6","input_length":3251,"output_length":919,"hash_ids":[4020125,4020126,4020127,4020128,4020129,4020130,4020131],"delay":26424.6} +{"session_id":"sess-e36facc228c6","input_length":6780,"output_length":441,"hash_ids":[4020132,4020133,4020134,4020135,4020136,4020137,4020138,4020139,4020140,4020141,4020142,4020143,4020144,4020145],"delay":2585.4} +{"session_id":"sess-e36facc228c6","input_length":3976,"output_length":205,"hash_ids":[4020146,4020147,4020148,4020149,4020150,4020151,4020152,4020153],"delay":18476.4} +{"session_id":"sess-e36facc228c6","input_length":849,"output_length":187,"hash_ids":[4020154,4020155],"delay":672.2} +{"session_id":"sess-e36facc228c6","input_length":275,"output_length":699,"hash_ids":[4020156],"delay":507.4} +{"session_id":"sess-e36facc228c6","input_length":4342,"output_length":164,"hash_ids":[4020157,4020158,4020159,4020160,4020161,4020162,4020163,4020164,4020165],"delay":617.8} +{"session_id":"sess-e36facc228c6","input_length":1781,"output_length":278,"hash_ids":[4020166,4020167,4020168,4020169],"delay":1317.4} +{"session_id":"sess-e36facc228c6","input_length":4180,"output_length":53,"hash_ids":[4020170,4020171,4020172,4020173,4020174,4020175,4020176,4020177,4020178],"delay":366.2} +{"session_id":"sess-e36facc228c6","input_length":244,"output_length":726,"hash_ids":[4020179],"delay":909.6} +{"session_id":"sess-e36facc228c6","input_length":1140,"output_length":339,"hash_ids":[4020180,4020181,4020182],"delay":6025.4} +{"session_id":"sess-e36facc228c6","input_length":188,"output_length":76,"hash_ids":[4020183],"delay":407.7} +{"session_id":"sess-a6e003e2106c","input_length":57853,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,4024063,4024064,4024065,4024066,4024067,4024068,4024069,4024070,4024071,4024072],"timestamp":0.0,"group_id":5} +{"session_id":"sess-a6e003e2106c","input_length":2383,"output_length":183,"hash_ids":[4024073,4024074,4024075,4024076,4024077],"delay":630.9} +{"session_id":"sess-a6e003e2106c","input_length":1398,"output_length":269,"hash_ids":[4024078,4024079,4024080],"delay":971.3} +{"session_id":"sess-a6e003e2106c","input_length":4975,"output_length":566,"hash_ids":[4024081,4024082,4024083,4024084,4024085,4024086,4024087,4024088,4024089,4024090],"delay":1069.9} +{"session_id":"sess-a6e003e2106c","input_length":992,"output_length":184,"hash_ids":[4024091,4024092],"delay":22451.9} +{"session_id":"sess-a6e003e2106c","input_length":349,"output_length":64,"hash_ids":[4024093],"delay":1406.1} +{"session_id":"sess-a6e003e2106c","input_length":4448,"output_length":42,"hash_ids":[4024094,4024095,4024096,4024097,4024098,4024099,4024100,4024101,4024102],"delay":3777.8} +{"session_id":"sess-a6e003e2106c","input_length":3372,"output_length":149,"hash_ids":[4024103,4024104,4024105,4024106,4024107,4024108,4024109],"delay":1410.7} +{"session_id":"sess-a6e003e2106c","input_length":775,"output_length":79,"hash_ids":[4024110,4024111],"delay":1945.1} +{"session_id":"sess-a6e003e2106c","input_length":992,"output_length":390,"hash_ids":[4024112,4024113],"delay":1083.1} +{"session_id":"sess-a6e003e2106c","input_length":3817,"output_length":161,"hash_ids":[4024114,4024115,4024116,4024117,4024118,4024119,4024120,4024121],"delay":2518.1} +{"session_id":"sess-a6e003e2106c","input_length":1375,"output_length":455,"hash_ids":[4024122,4024123,4024124],"delay":1423.0} +{"session_id":"sess-a6e003e2106c","input_length":1362,"output_length":651,"hash_ids":[4024125,4024126,4024127],"delay":2262.0} +{"session_id":"sess-a6e003e2106c","input_length":4002,"output_length":345,"hash_ids":[4024128,4024129,4024130,4024131,4024132,4024133,4024134,4024135],"delay":16985.5} +{"session_id":"sess-a6e003e2106c","input_length":7667,"output_length":243,"hash_ids":[4024136,4024137,4024138,4024139,4024140,4024141,4024142,4024143,4024144,4024145,4024146,4024147,4024148,4024149,4024150],"delay":10503.0} +{"session_id":"sess-a6e003e2106c","input_length":316,"output_length":483,"hash_ids":[4024151],"delay":982.4} +{"session_id":"sess-a6e003e2106c","input_length":491,"output_length":633,"hash_ids":[4024152],"delay":227.7} +{"session_id":"sess-a6e003e2106c","input_length":605,"output_length":135,"hash_ids":[4024153,4024154],"delay":20761.0} +{"session_id":"sess-a6e003e2106c","input_length":5775,"output_length":103,"hash_ids":[4024155,4024156,4024157,4024158,4024159,4024160,4024161,4024162,4024163,4024164,4024165,4024166],"delay":285.7} +{"session_id":"sess-a6e003e2106c","input_length":1278,"output_length":113,"hash_ids":[4024167,4024168,4024169],"delay":708.2} +{"session_id":"sess-a6e003e2106c","input_length":1904,"output_length":72,"hash_ids":[4024170,4024171,4024172,4024173],"delay":12912.6} +{"session_id":"sess-a6e003e2106c","input_length":7573,"output_length":767,"hash_ids":[4024174,4024175,4024176,4024177,4024178,4024179,4024180,4024181,4024182,4024183,4024184,4024185,4024186,4024187,4024188],"delay":333.2} +{"session_id":"sess-a6e003e2106c","input_length":1843,"output_length":186,"hash_ids":[4024189,4024190,4024191,4024192],"delay":591.3} +{"session_id":"sess-a6e003e2106c","input_length":465,"output_length":290,"hash_ids":[4024193],"delay":3063.4} +{"session_id":"sess-a6e003e2106c","input_length":983,"output_length":358,"hash_ids":[4024194,4024195],"delay":80.6} +{"session_id":"sess-a6e003e2106c","input_length":2733,"output_length":538,"hash_ids":[4024196,4024197,4024198,4024199,4024200,4024201],"delay":1742.8} +{"session_id":"sess-a6e003e2106c","input_length":1423,"output_length":95,"hash_ids":[4024202,4024203,4024204],"delay":1169.7} +{"session_id":"sess-71c507ea8d92","input_length":64437,"output_length":373,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,4028063,4028064,4028065,4028066,4028067,4028068,4028069,4028070,4028071,4028072,4028073,4028074,4028075,4028076,4028077,4028078,4028079,4028080,4028081,4028082,4028083,4028084,4028085],"timestamp":0.0,"group_id":6} +{"session_id":"sess-71c507ea8d92","input_length":1313,"output_length":925,"hash_ids":[4028086,4028087,4028088],"delay":486.1} +{"session_id":"sess-71c507ea8d92","input_length":7871,"output_length":93,"hash_ids":[4028089,4028090,4028091,4028092,4028093,4028094,4028095,4028096,4028097,4028098,4028099,4028100,4028101,4028102,4028103,4028104],"delay":1078.7} +{"session_id":"sess-71c507ea8d92","input_length":3201,"output_length":1237,"hash_ids":[4028105,4028106,4028107,4028108,4028109,4028110,4028111],"delay":1162.6} +{"session_id":"sess-71c507ea8d92","input_length":1868,"output_length":230,"hash_ids":[4028112,4028113,4028114,4028115],"delay":422.5} +{"session_id":"sess-71c507ea8d92","input_length":1667,"output_length":531,"hash_ids":[4028116,4028117,4028118,4028119],"delay":598.1} +{"session_id":"sess-34fdae3301d0","input_length":61446,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,4032063,4032064,4032065,4032066,4032067,4032068,4032069,4032070,4032071,4032072,4032073,4032074,4032075,4032076,4032077,4032078,4032079,4032080],"timestamp":0.0,"group_id":4} +{"session_id":"sess-34fdae3301d0","input_length":1759,"output_length":923,"hash_ids":[4032081,4032082,4032083,4032084],"delay":2231.1} +{"session_id":"sess-34fdae3301d0","input_length":4922,"output_length":141,"hash_ids":[4032085,4032086,4032087,4032088,4032089,4032090,4032091,4032092,4032093,4032094],"delay":789.2} +{"session_id":"sess-34fdae3301d0","input_length":1988,"output_length":595,"hash_ids":[4032095,4032096,4032097,4032098],"delay":1147.9} +{"session_id":"sess-34fdae3301d0","input_length":2052,"output_length":156,"hash_ids":[4032099,4032100,4032101,4032102,4032103],"delay":1074.1} +{"session_id":"sess-34fdae3301d0","input_length":1700,"output_length":1339,"hash_ids":[4032104,4032105,4032106,4032107],"delay":2606.3} +{"session_id":"sess-34fdae3301d0","input_length":160,"output_length":322,"hash_ids":[4032108],"delay":215.5} +{"session_id":"sess-34fdae3301d0","input_length":239,"output_length":49,"hash_ids":[4032109],"delay":1960.0} +{"session_id":"sess-34fdae3301d0","input_length":1179,"output_length":197,"hash_ids":[4032110,4032111,4032112],"delay":334.4} +{"session_id":"sess-34fdae3301d0","input_length":980,"output_length":197,"hash_ids":[4032113,4032114],"delay":991.2} +{"session_id":"sess-34fdae3301d0","input_length":2680,"output_length":218,"hash_ids":[4032115,4032116,4032117,4032118,4032119,4032120],"delay":1030.7} +{"session_id":"sess-34fdae3301d0","input_length":7021,"output_length":171,"hash_ids":[4032121,4032122,4032123,4032124,4032125,4032126,4032127,4032128,4032129,4032130,4032131,4032132,4032133,4032134],"delay":332.2} +{"session_id":"sess-34fdae3301d0","input_length":9386,"output_length":595,"hash_ids":[4032135,4032136,4032137,4032138,4032139,4032140,4032141,4032142,4032143,4032144,4032145,4032146,4032147,4032148,4032149,4032150,4032151,4032152,4032153],"delay":2147.8} +{"session_id":"sess-34fdae3301d0","input_length":449,"output_length":273,"hash_ids":[4032154],"delay":1854.3} +{"session_id":"sess-34fdae3301d0","input_length":3949,"output_length":413,"hash_ids":[4032155,4032156,4032157,4032158,4032159,4032160,4032161,4032162],"delay":518.8} +{"session_id":"sess-34fdae3301d0","input_length":361,"output_length":163,"hash_ids":[4032163],"delay":106.9} +{"session_id":"sess-34fdae3301d0","input_length":508,"output_length":281,"hash_ids":[4032164],"delay":1213.6} +{"session_id":"sess-34fdae3301d0","input_length":906,"output_length":1746,"hash_ids":[4032165,4032166],"delay":334.2} +{"session_id":"sess-34fdae3301d0","input_length":2029,"output_length":279,"hash_ids":[4032167,4032168,4032169,4032170],"delay":6388.2} +{"session_id":"sess-34fdae3301d0","input_length":2923,"output_length":664,"hash_ids":[4032171,4032172,4032173,4032174,4032175,4032176],"delay":6513.0} +{"session_id":"sess-34fdae3301d0","input_length":867,"output_length":460,"hash_ids":[4032177,4032178],"delay":719.7} +{"session_id":"sess-34fdae3301d0","input_length":595,"output_length":1848,"hash_ids":[4032179,4032180],"delay":423.8} +{"session_id":"sess-34fdae3301d0","input_length":1350,"output_length":212,"hash_ids":[4032181,4032182,4032183],"delay":119.8} +{"session_id":"sess-c3d9dc1b1ef7","input_length":70624,"output_length":642,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4036063,4036064,4036065,4036066,4036067,4036068,4036069,4036070,4036071,4036072,4036073,4036074,4036075,4036076,4036077,4036078,4036079,4036080,4036081,4036082,4036083,4036084,4036085,4036086,4036087,4036088,4036089,4036090,4036091,4036092,4036093,4036094,4036095,4036096,4036097],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c3d9dc1b1ef7","input_length":4335,"output_length":236,"hash_ids":[4036098,4036099,4036100,4036101,4036102,4036103,4036104,4036105,4036106],"delay":1060.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":5349,"output_length":75,"hash_ids":[4036107,4036108,4036109,4036110,4036111,4036112,4036113,4036114,4036115,4036116,4036117],"delay":686.7} +{"session_id":"sess-c3d9dc1b1ef7","input_length":349,"output_length":248,"hash_ids":[4036118],"delay":1177.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1460,"output_length":162,"hash_ids":[4036119,4036120,4036121],"delay":7314.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":641,"output_length":164,"hash_ids":[4036122,4036123],"delay":642.1} +{"session_id":"sess-c3d9dc1b1ef7","input_length":7166,"output_length":1185,"hash_ids":[4036124,4036125,4036126,4036127,4036128,4036129,4036130,4036131,4036132,4036133,4036134,4036135,4036136,4036137],"delay":227.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1038,"output_length":363,"hash_ids":[4036138,4036139,4036140],"delay":2225.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":3066,"output_length":332,"hash_ids":[4036141,4036142,4036143,4036144,4036145,4036146],"delay":350.8} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1640,"output_length":837,"hash_ids":[4036147,4036148,4036149,4036150],"delay":983.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":526,"output_length":669,"hash_ids":[4036151,4036152],"delay":15468.8} +{"session_id":"sess-c3d9dc1b1ef7","input_length":881,"output_length":214,"hash_ids":[4036153,4036154],"delay":1099.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2203,"output_length":32,"hash_ids":[4036155,4036156,4036157,4036158,4036159],"delay":296.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2455,"output_length":1874,"hash_ids":[4036160,4036161,4036162,4036163,4036164],"delay":259.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2073,"output_length":415,"hash_ids":[4036165,4036166,4036167,4036168,4036169],"delay":879.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":574,"output_length":175,"hash_ids":[4036170,4036171],"delay":867.4} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1115,"output_length":212,"hash_ids":[4036172,4036173,4036174],"delay":1612.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1268,"output_length":221,"hash_ids":[4036175,4036176,4036177],"delay":3615.1} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1158,"output_length":486,"hash_ids":[4036178,4036179,4036180],"delay":2115.0} +{"session_id":"sess-c3d9dc1b1ef7","input_length":9156,"output_length":495,"hash_ids":[4036181,4036182,4036183,4036184,4036185,4036186,4036187,4036188,4036189,4036190,4036191,4036192,4036193,4036194,4036195,4036196,4036197,4036198],"delay":1838.4} +{"session_id":"sess-c3d9dc1b1ef7","input_length":381,"output_length":643,"hash_ids":[4036199],"delay":694.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1782,"output_length":955,"hash_ids":[4036200,4036201,4036202,4036203],"delay":263.9} +{"session_id":"sess-5bbdd9112f4b","input_length":54925,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4040063,4040064,4040065,4040066,4040067],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5bbdd9112f4b","input_length":274,"output_length":965,"hash_ids":[4040068],"delay":196.1} +{"session_id":"sess-5bbdd9112f4b","input_length":1051,"output_length":512,"hash_ids":[4040069,4040070,4040071],"delay":2863.8} +{"session_id":"sess-5bbdd9112f4b","input_length":2334,"output_length":604,"hash_ids":[4040072,4040073,4040074,4040075,4040076],"delay":48708.9} +{"session_id":"sess-5bbdd9112f4b","input_length":836,"output_length":186,"hash_ids":[4040077,4040078],"delay":18306.9} +{"session_id":"sess-5bbdd9112f4b","input_length":5878,"output_length":705,"hash_ids":[4040079,4040080,4040081,4040082,4040083,4040084,4040085,4040086,4040087,4040088,4040089,4040090],"delay":5977.4} +{"session_id":"sess-5bbdd9112f4b","input_length":8883,"output_length":104,"hash_ids":[4040091,4040092,4040093,4040094,4040095,4040096,4040097,4040098,4040099,4040100,4040101,4040102,4040103,4040104,4040105,4040106,4040107,4040108],"delay":1196.1} +{"session_id":"sess-5bbdd9112f4b","input_length":1305,"output_length":384,"hash_ids":[4040109,4040110,4040111],"delay":5062.7} +{"session_id":"sess-5bbdd9112f4b","input_length":1025,"output_length":65,"hash_ids":[4040112,4040113,4040114],"delay":258.1} +{"session_id":"sess-5bbdd9112f4b","input_length":1046,"output_length":52,"hash_ids":[4040115,4040116,4040117],"delay":11951.8} +{"session_id":"sess-5bbdd9112f4b","input_length":2165,"output_length":193,"hash_ids":[4040118,4040119,4040120,4040121,4040122],"delay":913.0} +{"session_id":"sess-5bbdd9112f4b","input_length":5150,"output_length":1237,"hash_ids":[4040123,4040124,4040125,4040126,4040127,4040128,4040129,4040130,4040131,4040132,4040133],"delay":1447.6} +{"session_id":"sess-5bbdd9112f4b","input_length":5904,"output_length":676,"hash_ids":[4040134,4040135,4040136,4040137,4040138,4040139,4040140,4040141,4040142,4040143,4040144,4040145],"delay":2764.6} +{"session_id":"sess-5bbdd9112f4b","input_length":706,"output_length":603,"hash_ids":[4040146,4040147],"delay":1236.2} +{"session_id":"sess-5bbdd9112f4b","input_length":5937,"output_length":996,"hash_ids":[4040148,4040149,4040150,4040151,4040152,4040153,4040154,4040155,4040156,4040157,4040158,4040159],"delay":5725.1} +{"session_id":"sess-5bbdd9112f4b","input_length":1790,"output_length":330,"hash_ids":[4040160,4040161,4040162,4040163],"delay":364.2} +{"session_id":"sess-5bbdd9112f4b","input_length":5187,"output_length":1080,"hash_ids":[4040164,4040165,4040166,4040167,4040168,4040169,4040170,4040171,4040172,4040173,4040174],"delay":919.1} +{"session_id":"sess-5bbdd9112f4b","input_length":1053,"output_length":353,"hash_ids":[4040175,4040176,4040177],"delay":683.4} +{"session_id":"sess-5bbdd9112f4b","input_length":1050,"output_length":265,"hash_ids":[4040178,4040179,4040180],"delay":8877.3} +{"session_id":"sess-5bbdd9112f4b","input_length":3797,"output_length":662,"hash_ids":[4040181,4040182,4040183,4040184,4040185,4040186,4040187,4040188],"delay":5360.6} +{"session_id":"sess-5bbdd9112f4b","input_length":140,"output_length":124,"hash_ids":[4040189],"delay":142.7} +{"session_id":"sess-5bbdd9112f4b","input_length":1151,"output_length":133,"hash_ids":[4040190,4040191,4040192],"delay":1879.7} +{"session_id":"sess-5bbdd9112f4b","input_length":2533,"output_length":189,"hash_ids":[4040193,4040194,4040195,4040196,4040197],"delay":269.2} +{"session_id":"sess-5bbdd9112f4b","input_length":4342,"output_length":214,"hash_ids":[4040198,4040199,4040200,4040201,4040202,4040203,4040204,4040205,4040206],"delay":386.4} +{"session_id":"sess-43a1b803d52b","input_length":58547,"output_length":144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4044063,4044064,4044065,4044066,4044067,4044068,4044069,4044070,4044071,4044072,4044073,4044074],"timestamp":0.0,"group_id":0} +{"session_id":"sess-43a1b803d52b","input_length":382,"output_length":1275,"hash_ids":[4044075],"delay":1296.3} +{"session_id":"sess-43a1b803d52b","input_length":745,"output_length":320,"hash_ids":[4044076,4044077],"delay":1573.0} +{"session_id":"sess-43a1b803d52b","input_length":1804,"output_length":226,"hash_ids":[4044078,4044079,4044080,4044081],"delay":478.3} +{"session_id":"sess-43a1b803d52b","input_length":3472,"output_length":1215,"hash_ids":[4044082,4044083,4044084,4044085,4044086,4044087,4044088],"delay":3438.0} +{"session_id":"sess-43a1b803d52b","input_length":269,"output_length":221,"hash_ids":[4044089],"delay":775.6} +{"session_id":"sess-43a1b803d52b","input_length":5665,"output_length":291,"hash_ids":[4044090,4044091,4044092,4044093,4044094,4044095,4044096,4044097,4044098,4044099,4044100,4044101],"delay":1332.6} +{"session_id":"sess-43a1b803d52b","input_length":1665,"output_length":501,"hash_ids":[4044102,4044103,4044104,4044105],"delay":1470.4} +{"session_id":"sess-43a1b803d52b","input_length":496,"output_length":739,"hash_ids":[4044106],"delay":485.5} +{"session_id":"sess-43a1b803d52b","input_length":58,"output_length":202,"hash_ids":[4044107],"delay":642.8} +{"session_id":"sess-43a1b803d52b","input_length":8095,"output_length":269,"hash_ids":[4044108,4044109,4044110,4044111,4044112,4044113,4044114,4044115,4044116,4044117,4044118,4044119,4044120,4044121,4044122,4044123],"delay":1117.7} +{"session_id":"sess-43a1b803d52b","input_length":948,"output_length":305,"hash_ids":[4044124,4044125],"delay":9191.8} +{"session_id":"sess-43a1b803d52b","input_length":5239,"output_length":186,"hash_ids":[4044126,4044127,4044128,4044129,4044130,4044131,4044132,4044133,4044134,4044135,4044136],"delay":471.8} +{"session_id":"sess-43a1b803d52b","input_length":844,"output_length":222,"hash_ids":[4044137,4044138],"delay":634.5} +{"session_id":"sess-43a1b803d52b","input_length":942,"output_length":1237,"hash_ids":[4044139,4044140],"delay":585.0} +{"session_id":"sess-43a1b803d52b","input_length":5164,"output_length":1431,"hash_ids":[4044141,4044142,4044143,4044144,4044145,4044146,4044147,4044148,4044149,4044150,4044151],"delay":982.1} +{"session_id":"sess-43a1b803d52b","input_length":1417,"output_length":309,"hash_ids":[4044152,4044153,4044154],"delay":1075.9} +{"session_id":"sess-43a1b803d52b","input_length":405,"output_length":758,"hash_ids":[4044155],"delay":1694.7} +{"session_id":"sess-43a1b803d52b","input_length":2411,"output_length":225,"hash_ids":[4044156,4044157,4044158,4044159,4044160],"delay":2988.9} +{"session_id":"sess-43a1b803d52b","input_length":1310,"output_length":77,"hash_ids":[4044161,4044162,4044163],"delay":23940.2} +{"session_id":"sess-43a1b803d52b","input_length":2024,"output_length":499,"hash_ids":[4044164,4044165,4044166,4044167],"delay":871.1} +{"session_id":"sess-43a1b803d52b","input_length":2986,"output_length":122,"hash_ids":[4044168,4044169,4044170,4044171,4044172,4044173],"delay":521.7} +{"session_id":"sess-43a1b803d52b","input_length":444,"output_length":156,"hash_ids":[4044174],"delay":2339.7} +{"session_id":"sess-43a1b803d52b","input_length":229,"output_length":529,"hash_ids":[4044175],"delay":361.6} +{"session_id":"sess-43a1b803d52b","input_length":1554,"output_length":382,"hash_ids":[4044176,4044177,4044178,4044179],"delay":5097.0} +{"session_id":"sess-43a1b803d52b","input_length":3489,"output_length":396,"hash_ids":[4044180,4044181,4044182,4044183,4044184,4044185,4044186],"delay":241.6} +{"session_id":"sess-43a1b803d52b","input_length":3058,"output_length":49,"hash_ids":[4044187,4044188,4044189,4044190,4044191,4044192],"delay":5309.3} +{"session_id":"sess-43a1b803d52b","input_length":2077,"output_length":743,"hash_ids":[4044193,4044194,4044195,4044196,4044197],"delay":810.5} +{"session_id":"sess-43a1b803d52b","input_length":976,"output_length":106,"hash_ids":[4044198,4044199],"delay":463.0} +{"session_id":"sess-de7b64467c3c","input_length":65713,"output_length":182,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4048063,4048064,4048065,4048066,4048067,4048068,4048069,4048070,4048071,4048072,4048073,4048074,4048075,4048076,4048077,4048078,4048079,4048080,4048081,4048082,4048083,4048084,4048085,4048086,4048087,4048088],"timestamp":0.0,"group_id":0} +{"session_id":"sess-de7b64467c3c","input_length":302,"output_length":468,"hash_ids":[4048089],"delay":1455.9} +{"session_id":"sess-de7b64467c3c","input_length":248,"output_length":557,"hash_ids":[4048090],"delay":253.5} +{"session_id":"sess-de7b64467c3c","input_length":2937,"output_length":506,"hash_ids":[4048091,4048092,4048093,4048094,4048095,4048096],"delay":269.3} +{"session_id":"sess-de7b64467c3c","input_length":1577,"output_length":34,"hash_ids":[4048097,4048098,4048099,4048100],"delay":1426.3} +{"session_id":"sess-de7b64467c3c","input_length":1189,"output_length":91,"hash_ids":[4048101,4048102,4048103],"delay":425.0} +{"session_id":"sess-de7b64467c3c","input_length":213,"output_length":159,"hash_ids":[4048104],"delay":1834.0} +{"session_id":"sess-de7b64467c3c","input_length":4036,"output_length":315,"hash_ids":[4048105,4048106,4048107,4048108,4048109,4048110,4048111,4048112],"delay":555.2} +{"session_id":"sess-de7b64467c3c","input_length":4027,"output_length":515,"hash_ids":[4048113,4048114,4048115,4048116,4048117,4048118,4048119,4048120],"delay":1978.1} +{"session_id":"sess-de7b64467c3c","input_length":1486,"output_length":294,"hash_ids":[4048121,4048122,4048123],"delay":10641.5} +{"session_id":"sess-de7b64467c3c","input_length":3965,"output_length":170,"hash_ids":[4048124,4048125,4048126,4048127,4048128,4048129,4048130,4048131],"delay":615.7} +{"session_id":"sess-de7b64467c3c","input_length":3082,"output_length":166,"hash_ids":[4048132,4048133,4048134,4048135,4048136,4048137,4048138],"delay":7613.3} +{"session_id":"sess-de7b64467c3c","input_length":9203,"output_length":365,"hash_ids":[4048139,4048140,4048141,4048142,4048143,4048144,4048145,4048146,4048147,4048148,4048149,4048150,4048151,4048152,4048153,4048154,4048155,4048156],"delay":2356.8} +{"session_id":"sess-de7b64467c3c","input_length":3087,"output_length":2378,"hash_ids":[4048157,4048158,4048159,4048160,4048161,4048162,4048163],"delay":551.1} +{"session_id":"sess-de7b64467c3c","input_length":1469,"output_length":71,"hash_ids":[4048164,4048165,4048166],"delay":2174.0} +{"session_id":"sess-de7b64467c3c","input_length":4906,"output_length":470,"hash_ids":[4048167,4048168,4048169,4048170,4048171,4048172,4048173,4048174,4048175,4048176],"delay":5905.5} +{"session_id":"sess-de7b64467c3c","input_length":1983,"output_length":373,"hash_ids":[4048177,4048178,4048179,4048180],"delay":630.4} +{"session_id":"sess-de7b64467c3c","input_length":720,"output_length":200,"hash_ids":[4048181,4048182],"delay":141.7} +{"session_id":"sess-de7b64467c3c","input_length":1349,"output_length":228,"hash_ids":[4048183,4048184,4048185],"delay":2403.1} +{"session_id":"sess-de7b64467c3c","input_length":801,"output_length":162,"hash_ids":[4048186,4048187],"delay":1947.8} +{"session_id":"sess-de7b64467c3c","input_length":876,"output_length":243,"hash_ids":[4048188,4048189],"delay":456.1} +{"session_id":"sess-588937acdec0","input_length":54924,"output_length":195,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4052063,4052064,4052065,4052066,4052067],"timestamp":0.0,"group_id":0} +{"session_id":"sess-59ad67053187","input_length":60654,"output_length":545,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4056063,4056064,4056065,4056066,4056067,4056068,4056069,4056070,4056071,4056072,4056073,4056074,4056075,4056076,4056077,4056078],"timestamp":0.0,"group_id":0} +{"session_id":"sess-59ad67053187","input_length":564,"output_length":671,"hash_ids":[4056079,4056080],"delay":1334.1} +{"session_id":"sess-59ad67053187","input_length":3123,"output_length":280,"hash_ids":[4056081,4056082,4056083,4056084,4056085,4056086,4056087],"delay":719.3} +{"session_id":"sess-59ad67053187","input_length":6892,"output_length":65,"hash_ids":[4056088,4056089,4056090,4056091,4056092,4056093,4056094,4056095,4056096,4056097,4056098,4056099,4056100,4056101],"delay":381.8} +{"session_id":"sess-59ad67053187","input_length":759,"output_length":83,"hash_ids":[4056102,4056103],"delay":11562.2} +{"session_id":"sess-59ad67053187","input_length":7338,"output_length":780,"hash_ids":[4056104,4056105,4056106,4056107,4056108,4056109,4056110,4056111,4056112,4056113,4056114,4056115,4056116,4056117,4056118],"delay":2555.5} +{"session_id":"sess-59ad67053187","input_length":1190,"output_length":236,"hash_ids":[4056119,4056120,4056121],"delay":429.6} +{"session_id":"sess-59ad67053187","input_length":2636,"output_length":588,"hash_ids":[4056122,4056123,4056124,4056125,4056126,4056127],"delay":15006.1} +{"session_id":"sess-59ad67053187","input_length":1993,"output_length":116,"hash_ids":[4056128,4056129,4056130,4056131],"delay":371.2} +{"session_id":"sess-59ad67053187","input_length":1106,"output_length":185,"hash_ids":[4056132,4056133,4056134],"delay":29732.5} +{"session_id":"sess-59ad67053187","input_length":3290,"output_length":117,"hash_ids":[4056135,4056136,4056137,4056138,4056139,4056140,4056141],"delay":17000.1} +{"session_id":"sess-59ad67053187","input_length":564,"output_length":335,"hash_ids":[4056142,4056143],"delay":3894.0} +{"session_id":"sess-59ad67053187","input_length":943,"output_length":326,"hash_ids":[4056144,4056145],"delay":397.9} +{"session_id":"sess-59ad67053187","input_length":1355,"output_length":388,"hash_ids":[4056146,4056147,4056148],"delay":896.7} +{"session_id":"sess-eee06b86437b","input_length":60001,"output_length":1140,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4060063,4060064,4060065,4060066,4060067,4060068,4060069,4060070,4060071,4060072,4060073,4060074,4060075,4060076,4060077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-eee06b86437b","input_length":4024,"output_length":335,"hash_ids":[4060078,4060079,4060080,4060081,4060082,4060083,4060084,4060085],"delay":39851.7} +{"session_id":"sess-eee06b86437b","input_length":4019,"output_length":1098,"hash_ids":[4060086,4060087,4060088,4060089,4060090,4060091,4060092,4060093],"delay":1563.6} +{"session_id":"sess-eee06b86437b","input_length":4434,"output_length":345,"hash_ids":[4060094,4060095,4060096,4060097,4060098,4060099,4060100,4060101,4060102],"delay":603.6} +{"session_id":"sess-eee06b86437b","input_length":2158,"output_length":442,"hash_ids":[4060103,4060104,4060105,4060106,4060107],"delay":820.3} +{"session_id":"sess-eee06b86437b","input_length":7119,"output_length":94,"hash_ids":[4060108,4060109,4060110,4060111,4060112,4060113,4060114,4060115,4060116,4060117,4060118,4060119,4060120,4060121],"delay":4210.6} +{"session_id":"sess-eee06b86437b","input_length":273,"output_length":63,"hash_ids":[4060122],"delay":6512.7} +{"session_id":"sess-eee06b86437b","input_length":1253,"output_length":112,"hash_ids":[4060123,4060124,4060125],"delay":6017.6} +{"session_id":"sess-eee06b86437b","input_length":1120,"output_length":83,"hash_ids":[4060126,4060127,4060128],"delay":803.2} +{"session_id":"sess-eee06b86437b","input_length":1071,"output_length":651,"hash_ids":[4060129,4060130,4060131],"delay":549.5} +{"session_id":"sess-eee06b86437b","input_length":3171,"output_length":158,"hash_ids":[4060132,4060133,4060134,4060135,4060136,4060137,4060138],"delay":587.6} +{"session_id":"sess-eee06b86437b","input_length":195,"output_length":110,"hash_ids":[4060139],"delay":642.5} +{"session_id":"sess-eee06b86437b","input_length":652,"output_length":140,"hash_ids":[4060140,4060141],"delay":173.9} +{"session_id":"sess-eee06b86437b","input_length":454,"output_length":1199,"hash_ids":[4060142],"delay":724.5} +{"session_id":"sess-eee06b86437b","input_length":1132,"output_length":194,"hash_ids":[4060143,4060144,4060145],"delay":14215.0} +{"session_id":"sess-eee06b86437b","input_length":1190,"output_length":1309,"hash_ids":[4060146,4060147,4060148],"delay":709.7} +{"session_id":"sess-eee06b86437b","input_length":1155,"output_length":121,"hash_ids":[4060149,4060150,4060151],"delay":29334.8} +{"session_id":"sess-eee06b86437b","input_length":3162,"output_length":30,"hash_ids":[4060152,4060153,4060154,4060155,4060156,4060157,4060158],"delay":2755.9} +{"session_id":"sess-eee06b86437b","input_length":2371,"output_length":748,"hash_ids":[4060159,4060160,4060161,4060162,4060163],"delay":9654.0} +{"session_id":"sess-eee06b86437b","input_length":3717,"output_length":1090,"hash_ids":[4060164,4060165,4060166,4060167,4060168,4060169,4060170,4060171],"delay":289.7} +{"session_id":"sess-eee06b86437b","input_length":726,"output_length":94,"hash_ids":[4060172,4060173],"delay":463.0} +{"session_id":"sess-eee06b86437b","input_length":6413,"output_length":341,"hash_ids":[4060174,4060175,4060176,4060177,4060178,4060179,4060180,4060181,4060182,4060183,4060184,4060185,4060186],"delay":428.1} +{"session_id":"sess-eee06b86437b","input_length":5688,"output_length":347,"hash_ids":[4060187,4060188,4060189,4060190,4060191,4060192,4060193,4060194,4060195,4060196,4060197,4060198],"delay":295.0} +{"session_id":"sess-eee06b86437b","input_length":911,"output_length":214,"hash_ids":[4060199,4060200],"delay":427.7} +{"session_id":"sess-eee06b86437b","input_length":344,"output_length":89,"hash_ids":[4060201],"delay":104.9} +{"session_id":"sess-eee06b86437b","input_length":666,"output_length":41,"hash_ids":[4060202,4060203],"delay":174.2} +{"session_id":"sess-eee06b86437b","input_length":2292,"output_length":682,"hash_ids":[4060204,4060205,4060206,4060207,4060208],"delay":1167.3} +{"session_id":"sess-692c2210bd84","input_length":53123,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4064063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-692c2210bd84","input_length":6785,"output_length":94,"hash_ids":[4064064,4064065,4064066,4064067,4064068,4064069,4064070,4064071,4064072,4064073,4064074,4064075,4064076,4064077],"delay":664.0} +{"session_id":"sess-692c2210bd84","input_length":690,"output_length":259,"hash_ids":[4064078,4064079],"delay":15907.5} +{"session_id":"sess-692c2210bd84","input_length":998,"output_length":477,"hash_ids":[4064080,4064081],"delay":2224.4} +{"session_id":"sess-692c2210bd84","input_length":497,"output_length":1627,"hash_ids":[4064082],"delay":290.7} +{"session_id":"sess-692c2210bd84","input_length":848,"output_length":992,"hash_ids":[4064083,4064084],"delay":686.7} +{"session_id":"sess-692c2210bd84","input_length":1185,"output_length":62,"hash_ids":[4064085,4064086,4064087],"delay":994.4} +{"session_id":"sess-692c2210bd84","input_length":744,"output_length":679,"hash_ids":[4064088,4064089],"delay":519.7} +{"session_id":"sess-692c2210bd84","input_length":2163,"output_length":271,"hash_ids":[4064090,4064091,4064092,4064093,4064094],"delay":6569.0} +{"session_id":"sess-692c2210bd84","input_length":1031,"output_length":266,"hash_ids":[4064095,4064096,4064097],"delay":2070.0} +{"session_id":"sess-692c2210bd84","input_length":771,"output_length":595,"hash_ids":[4064098,4064099],"delay":1082.0} +{"session_id":"sess-692c2210bd84","input_length":1638,"output_length":54,"hash_ids":[4064100,4064101,4064102,4064103],"delay":14848.0} +{"session_id":"sess-692c2210bd84","input_length":5259,"output_length":98,"hash_ids":[4064104,4064105,4064106,4064107,4064108,4064109,4064110,4064111,4064112,4064113,4064114],"delay":16165.9} +{"session_id":"sess-692c2210bd84","input_length":3453,"output_length":581,"hash_ids":[4064115,4064116,4064117,4064118,4064119,4064120,4064121],"delay":219.3} +{"session_id":"sess-692c2210bd84","input_length":452,"output_length":902,"hash_ids":[4064122],"delay":410.7} +{"session_id":"sess-692c2210bd84","input_length":370,"output_length":197,"hash_ids":[4064123],"delay":41113.8} +{"session_id":"sess-692c2210bd84","input_length":1570,"output_length":510,"hash_ids":[4064124,4064125,4064126,4064127],"delay":1835.7} +{"session_id":"sess-692c2210bd84","input_length":3390,"output_length":591,"hash_ids":[4064128,4064129,4064130,4064131,4064132,4064133,4064134],"delay":766.1} +{"session_id":"sess-692c2210bd84","input_length":7131,"output_length":551,"hash_ids":[4064135,4064136,4064137,4064138,4064139,4064140,4064141,4064142,4064143,4064144,4064145,4064146,4064147,4064148],"delay":1412.2} +{"session_id":"sess-692c2210bd84","input_length":5824,"output_length":396,"hash_ids":[4064149,4064150,4064151,4064152,4064153,4064154,4064155,4064156,4064157,4064158,4064159,4064160],"delay":514.4} +{"session_id":"sess-9b63c20551cf","input_length":57220,"output_length":377,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4068063,4068064,4068065,4068066,4068067,4068068,4068069,4068070,4068071],"timestamp":0.0,"group_id":23} +{"session_id":"sess-9b63c20551cf","input_length":984,"output_length":289,"hash_ids":[4068072,4068073],"delay":1802.6} +{"session_id":"sess-9b63c20551cf","input_length":873,"output_length":643,"hash_ids":[4068074,4068075],"delay":1503.0} +{"session_id":"sess-9b63c20551cf","input_length":638,"output_length":748,"hash_ids":[4068076,4068077],"delay":38025.4} +{"session_id":"sess-9b63c20551cf","input_length":6544,"output_length":551,"hash_ids":[4068078,4068079,4068080,4068081,4068082,4068083,4068084,4068085,4068086,4068087,4068088,4068089,4068090],"delay":377.6} +{"session_id":"sess-9b63c20551cf","input_length":6774,"output_length":164,"hash_ids":[4068091,4068092,4068093,4068094,4068095,4068096,4068097,4068098,4068099,4068100,4068101,4068102,4068103,4068104],"delay":1500.6} +{"session_id":"sess-9b63c20551cf","input_length":1669,"output_length":159,"hash_ids":[4068105,4068106,4068107,4068108],"delay":973.5} +{"session_id":"sess-9b63c20551cf","input_length":2096,"output_length":139,"hash_ids":[4068109,4068110,4068111,4068112,4068113],"delay":7001.0} +{"session_id":"sess-9b63c20551cf","input_length":1712,"output_length":1366,"hash_ids":[4068114,4068115,4068116,4068117],"delay":5382.0} +{"session_id":"sess-f30e08c9a7b8","input_length":59229,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,4072063,4072064,4072065,4072066,4072067,4072068,4072069,4072070,4072071,4072072,4072073,4072074,4072075],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b64a86879087","input_length":53122,"output_length":2528,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,4076063],"timestamp":0.0,"group_id":4} +{"session_id":"sess-b64a86879087","input_length":2297,"output_length":449,"hash_ids":[4076064,4076065,4076066,4076067,4076068],"delay":150.2} +{"session_id":"sess-b64a86879087","input_length":903,"output_length":301,"hash_ids":[4076069,4076070],"delay":706.9} +{"session_id":"sess-b64a86879087","input_length":4256,"output_length":641,"hash_ids":[4076071,4076072,4076073,4076074,4076075,4076076,4076077,4076078,4076079],"delay":750.8} +{"session_id":"sess-b64a86879087","input_length":9826,"output_length":463,"hash_ids":[4076080,4076081,4076082,4076083,4076084,4076085,4076086,4076087,4076088,4076089,4076090,4076091,4076092,4076093,4076094,4076095,4076096,4076097,4076098,4076099],"delay":694.3} +{"session_id":"sess-b64a86879087","input_length":811,"output_length":903,"hash_ids":[4076100,4076101],"delay":792.5} +{"session_id":"sess-b64a86879087","input_length":2563,"output_length":1100,"hash_ids":[4076102,4076103,4076104,4076105,4076106,4076107],"delay":1723.8} +{"session_id":"sess-b64a86879087","input_length":1029,"output_length":346,"hash_ids":[4076108,4076109,4076110],"delay":1596.9} +{"session_id":"sess-b64a86879087","input_length":5666,"output_length":179,"hash_ids":[4076111,4076112,4076113,4076114,4076115,4076116,4076117,4076118,4076119,4076120,4076121,4076122],"delay":1297.9} +{"session_id":"sess-b64a86879087","input_length":9162,"output_length":447,"hash_ids":[4076123,4076124,4076125,4076126,4076127,4076128,4076129,4076130,4076131,4076132,4076133,4076134,4076135,4076136,4076137,4076138,4076139,4076140],"delay":732.8} +{"session_id":"sess-b64a86879087","input_length":5757,"output_length":46,"hash_ids":[4076141,4076142,4076143,4076144,4076145,4076146,4076147,4076148,4076149,4076150,4076151,4076152],"delay":635.4} +{"session_id":"sess-b64a86879087","input_length":6599,"output_length":756,"hash_ids":[4076153,4076154,4076155,4076156,4076157,4076158,4076159,4076160,4076161,4076162,4076163,4076164,4076165],"delay":333.1} +{"session_id":"sess-b64a86879087","input_length":6532,"output_length":114,"hash_ids":[4076166,4076167,4076168,4076169,4076170,4076171,4076172,4076173,4076174,4076175,4076176,4076177,4076178],"delay":562.2} +{"session_id":"sess-b64a86879087","input_length":272,"output_length":656,"hash_ids":[4076179],"delay":2763.6} +{"session_id":"sess-b64a86879087","input_length":8847,"output_length":108,"hash_ids":[4076180,4076181,4076182,4076183,4076184,4076185,4076186,4076187,4076188,4076189,4076190,4076191,4076192,4076193,4076194,4076195,4076196,4076197],"delay":10559.5} +{"session_id":"sess-b64a86879087","input_length":1585,"output_length":87,"hash_ids":[4076198,4076199,4076200,4076201],"delay":6096.3} +{"session_id":"sess-acce7a4bb4fb","input_length":60000,"output_length":1688,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4080063,4080064,4080065,4080066,4080067,4080068,4080069,4080070,4080071,4080072,4080073,4080074,4080075,4080076,4080077],"timestamp":0.0,"group_id":0} +{"session_id":"sess-acce7a4bb4fb","input_length":643,"output_length":1072,"hash_ids":[4080078,4080079],"delay":1764.5} +{"session_id":"sess-acce7a4bb4fb","input_length":1302,"output_length":75,"hash_ids":[4080080,4080081,4080082],"delay":937.4} +{"session_id":"sess-acce7a4bb4fb","input_length":7246,"output_length":81,"hash_ids":[4080083,4080084,4080085,4080086,4080087,4080088,4080089,4080090,4080091,4080092,4080093,4080094,4080095,4080096,4080097],"delay":1258.2} +{"session_id":"sess-acce7a4bb4fb","input_length":691,"output_length":245,"hash_ids":[4080098,4080099],"delay":971.0} +{"session_id":"sess-acce7a4bb4fb","input_length":588,"output_length":112,"hash_ids":[4080100,4080101],"delay":403.7} +{"session_id":"sess-acce7a4bb4fb","input_length":1298,"output_length":391,"hash_ids":[4080102,4080103,4080104],"delay":305.8} +{"session_id":"sess-acce7a4bb4fb","input_length":128,"output_length":1772,"hash_ids":[4080105],"delay":1164.6} +{"session_id":"sess-acce7a4bb4fb","input_length":510,"output_length":235,"hash_ids":[4080106],"delay":1248.7} +{"session_id":"sess-acce7a4bb4fb","input_length":2804,"output_length":539,"hash_ids":[4080107,4080108,4080109,4080110,4080111,4080112],"delay":832.0} +{"session_id":"sess-8ad65d308a3b","input_length":63581,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4084063,4084064,4084065,4084066,4084067,4084068,4084069,4084070,4084071,4084072,4084073,4084074,4084075,4084076,4084077,4084078,4084079,4084080,4084081,4084082,4084083,4084084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8ad65d308a3b","input_length":1102,"output_length":86,"hash_ids":[4084085,4084086,4084087],"delay":7119.5} +{"session_id":"sess-8ad65d308a3b","input_length":5171,"output_length":201,"hash_ids":[4084088,4084089,4084090,4084091,4084092,4084093,4084094,4084095,4084096,4084097,4084098],"delay":294.2} +{"session_id":"sess-8ad65d308a3b","input_length":4412,"output_length":182,"hash_ids":[4084099,4084100,4084101,4084102,4084103,4084104,4084105,4084106,4084107],"delay":122.3} +{"session_id":"sess-8ad65d308a3b","input_length":1349,"output_length":180,"hash_ids":[4084108,4084109,4084110],"delay":1187.2} +{"session_id":"sess-8ad65d308a3b","input_length":1334,"output_length":128,"hash_ids":[4084111,4084112,4084113],"delay":977.2} +{"session_id":"sess-8ad65d308a3b","input_length":3308,"output_length":30,"hash_ids":[4084114,4084115,4084116,4084117,4084118,4084119,4084120],"delay":3509.0} +{"session_id":"sess-8ad65d308a3b","input_length":3738,"output_length":436,"hash_ids":[4084121,4084122,4084123,4084124,4084125,4084126,4084127,4084128],"delay":389.3} +{"session_id":"sess-8ad65d308a3b","input_length":3456,"output_length":1484,"hash_ids":[4084129,4084130,4084131,4084132,4084133,4084134,4084135],"delay":217.0} +{"session_id":"sess-8ad65d308a3b","input_length":7647,"output_length":2558,"hash_ids":[4084136,4084137,4084138,4084139,4084140,4084141,4084142,4084143,4084144,4084145,4084146,4084147,4084148,4084149,4084150],"delay":2710.3} +{"session_id":"sess-8ad65d308a3b","input_length":420,"output_length":281,"hash_ids":[4084151],"delay":8798.1} +{"session_id":"sess-8ad65d308a3b","input_length":4851,"output_length":50,"hash_ids":[4084152,4084153,4084154,4084155,4084156,4084157,4084158,4084159,4084160,4084161],"delay":3434.2} +{"session_id":"sess-8ad65d308a3b","input_length":1421,"output_length":37,"hash_ids":[4084162,4084163,4084164],"delay":1994.5} +{"session_id":"sess-8ad65d308a3b","input_length":1324,"output_length":768,"hash_ids":[4084165,4084166,4084167],"delay":804.9} +{"session_id":"sess-8ad65d308a3b","input_length":1475,"output_length":269,"hash_ids":[4084168,4084169,4084170],"delay":333.9} +{"session_id":"sess-8ad65d308a3b","input_length":1708,"output_length":720,"hash_ids":[4084171,4084172,4084173,4084174],"delay":505.9} +{"session_id":"sess-a10c0964ee90","input_length":70396,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,4088063,4088064,4088065,4088066,4088067,4088068,4088069,4088070,4088071,4088072,4088073,4088074,4088075,4088076,4088077,4088078,4088079,4088080,4088081,4088082,4088083,4088084,4088085,4088086,4088087,4088088,4088089,4088090,4088091,4088092,4088093,4088094,4088095,4088096,4088097],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a10c0964ee90","input_length":2615,"output_length":150,"hash_ids":[4088098,4088099,4088100,4088101,4088102,4088103],"delay":1585.8} +{"session_id":"sess-a10c0964ee90","input_length":901,"output_length":338,"hash_ids":[4088104,4088105],"delay":487.3} +{"session_id":"sess-a10c0964ee90","input_length":315,"output_length":2481,"hash_ids":[4088106],"delay":745.2} +{"session_id":"sess-a10c0964ee90","input_length":3302,"output_length":53,"hash_ids":[4088107,4088108,4088109,4088110,4088111,4088112,4088113],"delay":14928.7} +{"session_id":"sess-a10c0964ee90","input_length":9154,"output_length":1171,"hash_ids":[4088114,4088115,4088116,4088117,4088118,4088119,4088120,4088121,4088122,4088123,4088124,4088125,4088126,4088127,4088128,4088129,4088130,4088131],"delay":4038.8} +{"session_id":"sess-a10c0964ee90","input_length":3531,"output_length":471,"hash_ids":[4088132,4088133,4088134,4088135,4088136,4088137,4088138],"delay":412.0} +{"session_id":"sess-a10c0964ee90","input_length":163,"output_length":734,"hash_ids":[4088139],"delay":8901.5} +{"session_id":"sess-a10c0964ee90","input_length":725,"output_length":94,"hash_ids":[4088140,4088141],"delay":1465.5} +{"session_id":"sess-a10c0964ee90","input_length":545,"output_length":195,"hash_ids":[4088142,4088143],"delay":498.1} +{"session_id":"sess-a10c0964ee90","input_length":1578,"output_length":248,"hash_ids":[4088144,4088145,4088146,4088147],"delay":505.7} +{"session_id":"sess-a10c0964ee90","input_length":4602,"output_length":992,"hash_ids":[4088148,4088149,4088150,4088151,4088152,4088153,4088154,4088155,4088156],"delay":714.7} +{"session_id":"sess-a10c0964ee90","input_length":2022,"output_length":551,"hash_ids":[4088157,4088158,4088159,4088160],"delay":241.6} +{"session_id":"sess-a10c0964ee90","input_length":879,"output_length":95,"hash_ids":[4088161,4088162],"delay":788.2} +{"session_id":"sess-a10c0964ee90","input_length":2268,"output_length":449,"hash_ids":[4088163,4088164,4088165,4088166,4088167],"delay":477.8} +{"session_id":"sess-a10c0964ee90","input_length":3519,"output_length":129,"hash_ids":[4088168,4088169,4088170,4088171,4088172,4088173,4088174],"delay":43.1} +{"session_id":"sess-a10c0964ee90","input_length":1400,"output_length":230,"hash_ids":[4088175,4088176,4088177],"delay":323.7} +{"session_id":"sess-99678f1b8bc9","input_length":66083,"output_length":408,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4092063,4092064,4092065,4092066,4092067,4092068,4092069,4092070,4092071,4092072,4092073,4092074,4092075,4092076,4092077,4092078,4092079,4092080,4092081,4092082,4092083,4092084,4092085,4092086,4092087,4092088,4092089],"timestamp":0.0,"group_id":0} +{"session_id":"sess-99678f1b8bc9","input_length":1250,"output_length":374,"hash_ids":[4092090,4092091,4092092],"delay":2908.7} +{"session_id":"sess-99678f1b8bc9","input_length":8697,"output_length":167,"hash_ids":[4092093,4092094,4092095,4092096,4092097,4092098,4092099,4092100,4092101,4092102,4092103,4092104,4092105,4092106,4092107,4092108,4092109],"delay":5198.8} +{"session_id":"sess-99678f1b8bc9","input_length":2143,"output_length":1568,"hash_ids":[4092110,4092111,4092112,4092113,4092114],"delay":14755.9} +{"session_id":"sess-99678f1b8bc9","input_length":8071,"output_length":1149,"hash_ids":[4092115,4092116,4092117,4092118,4092119,4092120,4092121,4092122,4092123,4092124,4092125,4092126,4092127,4092128,4092129,4092130],"delay":939.1} +{"session_id":"sess-99678f1b8bc9","input_length":490,"output_length":70,"hash_ids":[4092131],"delay":40023.2} +{"session_id":"sess-99678f1b8bc9","input_length":6077,"output_length":512,"hash_ids":[4092132,4092133,4092134,4092135,4092136,4092137,4092138,4092139,4092140,4092141,4092142,4092143],"delay":465.6} +{"session_id":"sess-99678f1b8bc9","input_length":3617,"output_length":72,"hash_ids":[4092144,4092145,4092146,4092147,4092148,4092149,4092150,4092151],"delay":4040.5} +{"session_id":"sess-99678f1b8bc9","input_length":3956,"output_length":107,"hash_ids":[4092152,4092153,4092154,4092155,4092156,4092157,4092158,4092159],"delay":121.4} +{"session_id":"sess-99678f1b8bc9","input_length":344,"output_length":824,"hash_ids":[4092160],"delay":19030.3} +{"session_id":"sess-99678f1b8bc9","input_length":6341,"output_length":595,"hash_ids":[4092161,4092162,4092163,4092164,4092165,4092166,4092167,4092168,4092169,4092170,4092171,4092172,4092173],"delay":210.9} +{"session_id":"sess-99678f1b8bc9","input_length":875,"output_length":277,"hash_ids":[4092174,4092175],"delay":181.2} +{"session_id":"sess-99678f1b8bc9","input_length":5560,"output_length":249,"hash_ids":[4092176,4092177,4092178,4092179,4092180,4092181,4092182,4092183,4092184,4092185,4092186],"delay":294.1} +{"session_id":"sess-99678f1b8bc9","input_length":1267,"output_length":679,"hash_ids":[4092187,4092188,4092189],"delay":171.1} +{"session_id":"sess-99678f1b8bc9","input_length":6269,"output_length":78,"hash_ids":[4092190,4092191,4092192,4092193,4092194,4092195,4092196,4092197,4092198,4092199,4092200,4092201,4092202],"delay":160.9} +{"session_id":"sess-7fa2e24d0f7d","input_length":55222,"output_length":897,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,4096063,4096064,4096065,4096066,4096067],"timestamp":0.0,"group_id":2} +{"session_id":"sess-7fa2e24d0f7d","input_length":2550,"output_length":488,"hash_ids":[4096068,4096069,4096070,4096071,4096072],"delay":5832.9} +{"session_id":"sess-7fa2e24d0f7d","input_length":1459,"output_length":319,"hash_ids":[4096073,4096074,4096075],"delay":8736.3} +{"session_id":"sess-7fa2e24d0f7d","input_length":1484,"output_length":320,"hash_ids":[4096076,4096077,4096078],"delay":16348.1} +{"session_id":"sess-7fa2e24d0f7d","input_length":4436,"output_length":50,"hash_ids":[4096079,4096080,4096081,4096082,4096083,4096084,4096085,4096086,4096087],"delay":576.6} +{"session_id":"sess-7fa2e24d0f7d","input_length":534,"output_length":633,"hash_ids":[4096088,4096089],"delay":925.0} +{"session_id":"sess-7fa2e24d0f7d","input_length":8814,"output_length":156,"hash_ids":[4096090,4096091,4096092,4096093,4096094,4096095,4096096,4096097,4096098,4096099,4096100,4096101,4096102,4096103,4096104,4096105,4096106,4096107],"delay":1518.3} +{"session_id":"sess-7fa2e24d0f7d","input_length":3761,"output_length":41,"hash_ids":[4096108,4096109,4096110,4096111,4096112,4096113,4096114,4096115],"delay":34035.0} +{"session_id":"sess-2c15af3f1668","input_length":67132,"output_length":1434,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,4100063,4100064,4100065,4100066,4100067,4100068,4100069,4100070,4100071,4100072,4100073,4100074,4100075,4100076,4100077,4100078,4100079,4100080,4100081,4100082,4100083,4100084,4100085,4100086,4100087,4100088,4100089,4100090,4100091],"timestamp":0.0,"group_id":3} +{"session_id":"sess-2c15af3f1668","input_length":240,"output_length":805,"hash_ids":[4100092],"delay":471.7} +{"session_id":"sess-2c15af3f1668","input_length":1456,"output_length":203,"hash_ids":[4100093,4100094,4100095],"delay":1499.4} +{"session_id":"sess-2c15af3f1668","input_length":1460,"output_length":323,"hash_ids":[4100096,4100097,4100098],"delay":926.6} +{"session_id":"sess-2c15af3f1668","input_length":514,"output_length":613,"hash_ids":[4100099,4100100],"delay":26635.4} +{"session_id":"sess-2c15af3f1668","input_length":1864,"output_length":248,"hash_ids":[4100101,4100102,4100103,4100104],"delay":1301.3} +{"session_id":"sess-2c15af3f1668","input_length":9107,"output_length":135,"hash_ids":[4100105,4100106,4100107,4100108,4100109,4100110,4100111,4100112,4100113,4100114,4100115,4100116,4100117,4100118,4100119,4100120,4100121,4100122],"delay":912.2} +{"session_id":"sess-2c15af3f1668","input_length":7872,"output_length":211,"hash_ids":[4100123,4100124,4100125,4100126,4100127,4100128,4100129,4100130,4100131,4100132,4100133,4100134,4100135,4100136,4100137,4100138],"delay":745.5} +{"session_id":"sess-2c15af3f1668","input_length":8716,"output_length":124,"hash_ids":[4100139,4100140,4100141,4100142,4100143,4100144,4100145,4100146,4100147,4100148,4100149,4100150,4100151,4100152,4100153,4100154,4100155,4100156],"delay":260.1} +{"session_id":"sess-2c15af3f1668","input_length":4549,"output_length":76,"hash_ids":[4100157,4100158,4100159,4100160,4100161,4100162,4100163,4100164,4100165],"delay":425.4} +{"session_id":"sess-2c15af3f1668","input_length":2604,"output_length":254,"hash_ids":[4100166,4100167,4100168,4100169,4100170,4100171],"delay":844.9} +{"session_id":"sess-2c15af3f1668","input_length":5886,"output_length":400,"hash_ids":[4100172,4100173,4100174,4100175,4100176,4100177,4100178,4100179,4100180,4100181,4100182,4100183],"delay":1059.1} +{"session_id":"sess-2c15af3f1668","input_length":1049,"output_length":315,"hash_ids":[4100184,4100185,4100186],"delay":336.4} +{"session_id":"sess-2c15af3f1668","input_length":1183,"output_length":2831,"hash_ids":[4100187,4100188,4100189],"delay":10307.0} +{"session_id":"sess-2c15af3f1668","input_length":1077,"output_length":347,"hash_ids":[4100190,4100191,4100192],"delay":4856.1} +{"session_id":"sess-2c15af3f1668","input_length":468,"output_length":335,"hash_ids":[4100193],"delay":1745.6} +{"session_id":"sess-2c15af3f1668","input_length":563,"output_length":92,"hash_ids":[4100194,4100195],"delay":7637.8} +{"session_id":"sess-babd4b9ed619","input_length":68482,"output_length":219,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4104063,4104064,4104065,4104066,4104067,4104068,4104069,4104070,4104071,4104072,4104073,4104074,4104075,4104076,4104077,4104078,4104079,4104080,4104081,4104082,4104083,4104084,4104085,4104086,4104087,4104088,4104089,4104090,4104091,4104092,4104093],"timestamp":0.0,"group_id":1} +{"session_id":"sess-babd4b9ed619","input_length":1858,"output_length":125,"hash_ids":[4104094,4104095,4104096,4104097],"delay":1885.8} +{"session_id":"sess-babd4b9ed619","input_length":292,"output_length":104,"hash_ids":[4104098],"delay":661.9} +{"session_id":"sess-7ec3997aa0da","input_length":54054,"output_length":228,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,4108063,4108064,4108065],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7ec3997aa0da","input_length":2724,"output_length":127,"hash_ids":[4108066,4108067,4108068,4108069,4108070,4108071],"delay":4734.7} +{"session_id":"sess-7ec3997aa0da","input_length":1745,"output_length":641,"hash_ids":[4108072,4108073,4108074,4108075],"delay":2514.0} +{"session_id":"sess-7ec3997aa0da","input_length":7513,"output_length":84,"hash_ids":[4108076,4108077,4108078,4108079,4108080,4108081,4108082,4108083,4108084,4108085,4108086,4108087,4108088,4108089,4108090],"delay":429.3} +{"session_id":"sess-7ec3997aa0da","input_length":637,"output_length":913,"hash_ids":[4108091,4108092],"delay":2411.2} +{"session_id":"sess-7ec3997aa0da","input_length":5295,"output_length":127,"hash_ids":[4108093,4108094,4108095,4108096,4108097,4108098,4108099,4108100,4108101,4108102,4108103],"delay":19673.5} +{"session_id":"sess-7ec3997aa0da","input_length":2654,"output_length":135,"hash_ids":[4108104,4108105,4108106,4108107,4108108,4108109],"delay":2781.9} +{"session_id":"sess-7ec3997aa0da","input_length":1080,"output_length":325,"hash_ids":[4108110,4108111,4108112],"delay":34591.6} +{"session_id":"sess-7ec3997aa0da","input_length":2435,"output_length":251,"hash_ids":[4108113,4108114,4108115,4108116,4108117],"delay":397.3} +{"session_id":"sess-7ec3997aa0da","input_length":4509,"output_length":1927,"hash_ids":[4108118,4108119,4108120,4108121,4108122,4108123,4108124,4108125,4108126],"delay":16754.8} +{"session_id":"sess-7ec3997aa0da","input_length":2929,"output_length":286,"hash_ids":[4108127,4108128,4108129,4108130,4108131,4108132],"delay":13923.6} +{"session_id":"sess-7ec3997aa0da","input_length":762,"output_length":706,"hash_ids":[4108133,4108134],"delay":2387.0} +{"session_id":"sess-7ec3997aa0da","input_length":3803,"output_length":401,"hash_ids":[4108135,4108136,4108137,4108138,4108139,4108140,4108141,4108142],"delay":14094.3} +{"session_id":"sess-7ec3997aa0da","input_length":3858,"output_length":1993,"hash_ids":[4108143,4108144,4108145,4108146,4108147,4108148,4108149,4108150],"delay":393.1} +{"session_id":"sess-7ec3997aa0da","input_length":2517,"output_length":299,"hash_ids":[4108151,4108152,4108153,4108154,4108155],"delay":3749.8} +{"session_id":"sess-7ec3997aa0da","input_length":481,"output_length":289,"hash_ids":[4108156],"delay":583.9} +{"session_id":"sess-7ec3997aa0da","input_length":6073,"output_length":395,"hash_ids":[4108157,4108158,4108159,4108160,4108161,4108162,4108163,4108164,4108165,4108166,4108167,4108168],"delay":590.4} +{"session_id":"sess-7ec3997aa0da","input_length":2126,"output_length":165,"hash_ids":[4108169,4108170,4108171,4108172,4108173],"delay":246.4} +{"session_id":"sess-7ec3997aa0da","input_length":928,"output_length":261,"hash_ids":[4108174,4108175],"delay":467.2} +{"session_id":"sess-7ec3997aa0da","input_length":913,"output_length":141,"hash_ids":[4108176,4108177],"delay":27427.2} +{"session_id":"sess-7ec3997aa0da","input_length":4889,"output_length":542,"hash_ids":[4108178,4108179,4108180,4108181,4108182,4108183,4108184,4108185,4108186,4108187],"delay":617.8} +{"session_id":"sess-7ec3997aa0da","input_length":109,"output_length":56,"hash_ids":[4108188],"delay":472.1} +{"session_id":"sess-7ec3997aa0da","input_length":536,"output_length":103,"hash_ids":[4108189,4108190],"delay":1125.4} +{"session_id":"sess-7ec3997aa0da","input_length":2687,"output_length":99,"hash_ids":[4108191,4108192,4108193,4108194,4108195,4108196],"delay":4268.2} +{"session_id":"sess-7ec3997aa0da","input_length":4319,"output_length":1470,"hash_ids":[4108197,4108198,4108199,4108200,4108201,4108202,4108203,4108204,4108205],"delay":2750.8} +{"session_id":"sess-14c2e32361df","input_length":54277,"output_length":193,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,4112063,4112064,4112065,4112066],"timestamp":0.0,"group_id":7} +{"session_id":"sess-14c2e32361df","input_length":1064,"output_length":177,"hash_ids":[4112067,4112068,4112069],"delay":594.3} +{"session_id":"sess-14c2e32361df","input_length":1304,"output_length":43,"hash_ids":[4112070,4112071,4112072],"delay":464.6} +{"session_id":"sess-14c2e32361df","input_length":5245,"output_length":1562,"hash_ids":[4112073,4112074,4112075,4112076,4112077,4112078,4112079,4112080,4112081,4112082,4112083],"delay":2513.4} +{"session_id":"sess-14c2e32361df","input_length":160,"output_length":1866,"hash_ids":[4112084],"delay":655.2} +{"session_id":"sess-14c2e32361df","input_length":1263,"output_length":131,"hash_ids":[4112085,4112086,4112087],"delay":885.8} +{"session_id":"sess-14c2e32361df","input_length":1008,"output_length":469,"hash_ids":[4112088,4112089],"delay":1165.5} +{"session_id":"sess-14c2e32361df","input_length":524,"output_length":121,"hash_ids":[4112090,4112091],"delay":3419.7} +{"session_id":"sess-14c2e32361df","input_length":2453,"output_length":496,"hash_ids":[4112092,4112093,4112094,4112095,4112096],"delay":2295.4} +{"session_id":"sess-14c2e32361df","input_length":2810,"output_length":465,"hash_ids":[4112097,4112098,4112099,4112100,4112101,4112102],"delay":796.6} +{"session_id":"sess-14c2e32361df","input_length":700,"output_length":338,"hash_ids":[4112103,4112104],"delay":1236.1} +{"session_id":"sess-14c2e32361df","input_length":1395,"output_length":277,"hash_ids":[4112105,4112106,4112107],"delay":1470.4} +{"session_id":"sess-14c2e32361df","input_length":5439,"output_length":184,"hash_ids":[4112108,4112109,4112110,4112111,4112112,4112113,4112114,4112115,4112116,4112117,4112118],"delay":1203.0} +{"session_id":"sess-14c2e32361df","input_length":3072,"output_length":523,"hash_ids":[4112119,4112120,4112121,4112122,4112123,4112124],"delay":1208.3} +{"session_id":"sess-14c2e32361df","input_length":846,"output_length":429,"hash_ids":[4112125,4112126],"delay":2263.0} +{"session_id":"sess-14c2e32361df","input_length":5289,"output_length":73,"hash_ids":[4112127,4112128,4112129,4112130,4112131,4112132,4112133,4112134,4112135,4112136,4112137],"delay":2000.5} +{"session_id":"sess-14c2e32361df","input_length":2941,"output_length":129,"hash_ids":[4112138,4112139,4112140,4112141,4112142,4112143],"delay":1779.9} +{"session_id":"sess-14c2e32361df","input_length":6673,"output_length":323,"hash_ids":[4112144,4112145,4112146,4112147,4112148,4112149,4112150,4112151,4112152,4112153,4112154,4112155,4112156,4112157],"delay":398.4} +{"session_id":"sess-14c2e32361df","input_length":1674,"output_length":287,"hash_ids":[4112158,4112159,4112160,4112161],"delay":1503.6} +{"session_id":"sess-14c2e32361df","input_length":811,"output_length":538,"hash_ids":[4112162,4112163],"delay":2108.7} +{"session_id":"sess-14c2e32361df","input_length":967,"output_length":962,"hash_ids":[4112164,4112165],"delay":4497.6} +{"session_id":"sess-14c2e32361df","input_length":665,"output_length":95,"hash_ids":[4112166,4112167],"delay":941.6} +{"session_id":"sess-14c2e32361df","input_length":8937,"output_length":208,"hash_ids":[4112168,4112169,4112170,4112171,4112172,4112173,4112174,4112175,4112176,4112177,4112178,4112179,4112180,4112181,4112182,4112183,4112184,4112185],"delay":9413.4} +{"session_id":"sess-14c2e32361df","input_length":1651,"output_length":249,"hash_ids":[4112186,4112187,4112188,4112189],"delay":247.2} +{"session_id":"sess-14c2e32361df","input_length":4750,"output_length":94,"hash_ids":[4112190,4112191,4112192,4112193,4112194,4112195,4112196,4112197,4112198,4112199],"delay":119.7} +{"session_id":"sess-14c2e32361df","input_length":2162,"output_length":114,"hash_ids":[4112200,4112201,4112202,4112203,4112204],"delay":3637.6} +{"session_id":"sess-11aaa89981a4","input_length":58167,"output_length":337,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,4116063,4116064,4116065,4116066,4116067,4116068,4116069,4116070,4116071,4116072,4116073],"timestamp":0.0,"group_id":38} +{"session_id":"sess-11aaa89981a4","input_length":6267,"output_length":1036,"hash_ids":[4116074,4116075,4116076,4116077,4116078,4116079,4116080,4116081,4116082,4116083,4116084,4116085,4116086],"delay":1125.1} +{"session_id":"sess-11aaa89981a4","input_length":4525,"output_length":227,"hash_ids":[4116087,4116088,4116089,4116090,4116091,4116092,4116093,4116094,4116095],"delay":1627.2} +{"session_id":"sess-11aaa89981a4","input_length":1743,"output_length":559,"hash_ids":[4116096,4116097,4116098,4116099],"delay":1065.7} +{"session_id":"sess-11aaa89981a4","input_length":1462,"output_length":91,"hash_ids":[4116100,4116101,4116102],"delay":156.1} +{"session_id":"sess-11aaa89981a4","input_length":1330,"output_length":152,"hash_ids":[4116103,4116104,4116105],"delay":2692.3} +{"session_id":"sess-11aaa89981a4","input_length":402,"output_length":100,"hash_ids":[4116106],"delay":318.0} +{"session_id":"sess-11aaa89981a4","input_length":160,"output_length":87,"hash_ids":[4116107],"delay":1117.1} +{"session_id":"sess-11aaa89981a4","input_length":2073,"output_length":720,"hash_ids":[4116108,4116109,4116110,4116111,4116112],"delay":1553.3} +{"session_id":"sess-11aaa89981a4","input_length":348,"output_length":30,"hash_ids":[4116113],"delay":2082.7} +{"session_id":"sess-11aaa89981a4","input_length":1081,"output_length":336,"hash_ids":[4116114,4116115,4116116],"delay":639.2} +{"session_id":"sess-11aaa89981a4","input_length":773,"output_length":470,"hash_ids":[4116117,4116118],"delay":689.9} +{"session_id":"sess-11aaa89981a4","input_length":287,"output_length":64,"hash_ids":[4116119],"delay":8750.0} +{"session_id":"sess-11aaa89981a4","input_length":8153,"output_length":887,"hash_ids":[4116120,4116121,4116122,4116123,4116124,4116125,4116126,4116127,4116128,4116129,4116130,4116131,4116132,4116133,4116134,4116135],"delay":445.2} +{"session_id":"sess-11aaa89981a4","input_length":1498,"output_length":41,"hash_ids":[4116136,4116137,4116138],"delay":3845.9} +{"session_id":"sess-11aaa89981a4","input_length":4967,"output_length":70,"hash_ids":[4116139,4116140,4116141,4116142,4116143,4116144,4116145,4116146,4116147,4116148],"delay":1144.8} +{"session_id":"sess-11aaa89981a4","input_length":1830,"output_length":290,"hash_ids":[4116149,4116150,4116151,4116152],"delay":8400.2} +{"session_id":"sess-11aaa89981a4","input_length":1958,"output_length":221,"hash_ids":[4116153,4116154,4116155,4116156],"delay":2284.2} +{"session_id":"sess-11aaa89981a4","input_length":1095,"output_length":624,"hash_ids":[4116157,4116158,4116159],"delay":734.3} +{"session_id":"sess-11aaa89981a4","input_length":3910,"output_length":146,"hash_ids":[4116160,4116161,4116162,4116163,4116164,4116165,4116166,4116167],"delay":639.7} +{"session_id":"sess-11aaa89981a4","input_length":1062,"output_length":284,"hash_ids":[4116168,4116169,4116170],"delay":436.5} +{"session_id":"sess-11aaa89981a4","input_length":3441,"output_length":1545,"hash_ids":[4116171,4116172,4116173,4116174,4116175,4116176,4116177],"delay":802.5} +{"session_id":"sess-11aaa89981a4","input_length":8965,"output_length":1606,"hash_ids":[4116178,4116179,4116180,4116181,4116182,4116183,4116184,4116185,4116186,4116187,4116188,4116189,4116190,4116191,4116192,4116193,4116194,4116195],"delay":10174.6} +{"session_id":"sess-11aaa89981a4","input_length":1073,"output_length":80,"hash_ids":[4116196,4116197,4116198],"delay":568.1} +{"session_id":"sess-11aaa89981a4","input_length":3085,"output_length":370,"hash_ids":[4116199,4116200,4116201,4116202,4116203,4116204,4116205],"delay":862.1} +{"session_id":"sess-82ab3f22520b","input_length":52841,"output_length":1265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4120063],"timestamp":0.0,"group_id":0} +{"session_id":"sess-82ab3f22520b","input_length":3152,"output_length":250,"hash_ids":[4120064,4120065,4120066,4120067,4120068,4120069,4120070],"delay":835.4} +{"session_id":"sess-82ab3f22520b","input_length":3561,"output_length":71,"hash_ids":[4120071,4120072,4120073,4120074,4120075,4120076,4120077],"delay":32440.8} +{"session_id":"sess-82ab3f22520b","input_length":1632,"output_length":220,"hash_ids":[4120078,4120079,4120080,4120081],"delay":2281.1} +{"session_id":"sess-82ab3f22520b","input_length":1288,"output_length":81,"hash_ids":[4120082,4120083,4120084],"delay":2934.6} +{"session_id":"sess-82ab3f22520b","input_length":1139,"output_length":936,"hash_ids":[4120085,4120086,4120087],"delay":3240.3} +{"session_id":"sess-82ab3f22520b","input_length":1073,"output_length":164,"hash_ids":[4120088,4120089,4120090],"delay":439.3} +{"session_id":"sess-82ab3f22520b","input_length":820,"output_length":254,"hash_ids":[4120091,4120092],"delay":434.5} +{"session_id":"sess-82ab3f22520b","input_length":1128,"output_length":548,"hash_ids":[4120093,4120094,4120095],"delay":481.0} +{"session_id":"sess-82ab3f22520b","input_length":4463,"output_length":118,"hash_ids":[4120096,4120097,4120098,4120099,4120100,4120101,4120102,4120103,4120104],"delay":403.9} +{"session_id":"sess-82ab3f22520b","input_length":1435,"output_length":368,"hash_ids":[4120105,4120106,4120107],"delay":8127.2} +{"session_id":"sess-82ab3f22520b","input_length":1806,"output_length":121,"hash_ids":[4120108,4120109,4120110,4120111],"delay":3877.0} +{"session_id":"sess-82ab3f22520b","input_length":6044,"output_length":115,"hash_ids":[4120112,4120113,4120114,4120115,4120116,4120117,4120118,4120119,4120120,4120121,4120122,4120123],"delay":11189.8} +{"session_id":"sess-82ab3f22520b","input_length":2876,"output_length":77,"hash_ids":[4120124,4120125,4120126,4120127,4120128,4120129],"delay":721.0} +{"session_id":"sess-82ab3f22520b","input_length":5791,"output_length":2735,"hash_ids":[4120130,4120131,4120132,4120133,4120134,4120135,4120136,4120137,4120138,4120139,4120140,4120141],"delay":976.1} +{"session_id":"sess-82ab3f22520b","input_length":2538,"output_length":208,"hash_ids":[4120142,4120143,4120144,4120145,4120146],"delay":11274.6} +{"session_id":"sess-82ab3f22520b","input_length":3452,"output_length":781,"hash_ids":[4120147,4120148,4120149,4120150,4120151,4120152,4120153],"delay":489.6} +{"session_id":"sess-82ab3f22520b","input_length":1659,"output_length":660,"hash_ids":[4120154,4120155,4120156,4120157],"delay":5977.7} +{"session_id":"sess-82ab3f22520b","input_length":1532,"output_length":764,"hash_ids":[4120158,4120159,4120160],"delay":201.3} +{"session_id":"sess-82ab3f22520b","input_length":6314,"output_length":63,"hash_ids":[4120161,4120162,4120163,4120164,4120165,4120166,4120167,4120168,4120169,4120170,4120171,4120172,4120173],"delay":12211.2} +{"session_id":"sess-82ab3f22520b","input_length":4119,"output_length":627,"hash_ids":[4120174,4120175,4120176,4120177,4120178,4120179,4120180,4120181,4120182],"delay":143.5} +{"session_id":"sess-82ab3f22520b","input_length":4025,"output_length":2689,"hash_ids":[4120183,4120184,4120185,4120186,4120187,4120188,4120189,4120190],"delay":1072.4} +{"session_id":"sess-7f34527a9ba2","input_length":53433,"output_length":302,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,4124063,4124064],"timestamp":0.0,"group_id":39} +{"session_id":"sess-7f34527a9ba2","input_length":1950,"output_length":565,"hash_ids":[4124065,4124066,4124067,4124068],"delay":2325.7} +{"session_id":"sess-7f34527a9ba2","input_length":3872,"output_length":447,"hash_ids":[4124069,4124070,4124071,4124072,4124073,4124074,4124075,4124076],"delay":559.2} +{"session_id":"sess-7f34527a9ba2","input_length":1499,"output_length":209,"hash_ids":[4124077,4124078,4124079],"delay":6504.1} +{"session_id":"sess-e3e20ab96a10","input_length":59443,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4128063,4128064,4128065,4128066,4128067,4128068,4128069,4128070,4128071,4128072,4128073,4128074,4128075,4128076],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e3e20ab96a10","input_length":515,"output_length":532,"hash_ids":[4128077,4128078],"delay":1349.6} +{"session_id":"sess-e3e20ab96a10","input_length":2398,"output_length":343,"hash_ids":[4128079,4128080,4128081,4128082,4128083],"delay":15939.1} +{"session_id":"sess-e3e20ab96a10","input_length":1641,"output_length":1305,"hash_ids":[4128084,4128085,4128086,4128087],"delay":34680.0} +{"session_id":"sess-e3e20ab96a10","input_length":2130,"output_length":584,"hash_ids":[4128088,4128089,4128090,4128091,4128092],"delay":478.9} +{"session_id":"sess-e3e20ab96a10","input_length":879,"output_length":538,"hash_ids":[4128093,4128094],"delay":19498.1} +{"session_id":"sess-e3e20ab96a10","input_length":1355,"output_length":922,"hash_ids":[4128095,4128096,4128097],"delay":3122.1} +{"session_id":"sess-e3e20ab96a10","input_length":1709,"output_length":357,"hash_ids":[4128098,4128099,4128100,4128101],"delay":16861.9} +{"session_id":"sess-e3e20ab96a10","input_length":4111,"output_length":79,"hash_ids":[4128102,4128103,4128104,4128105,4128106,4128107,4128108,4128109,4128110],"delay":382.3} +{"session_id":"sess-e3e20ab96a10","input_length":687,"output_length":144,"hash_ids":[4128111,4128112],"delay":4992.1} +{"session_id":"sess-e3e20ab96a10","input_length":1839,"output_length":234,"hash_ids":[4128113,4128114,4128115,4128116],"delay":1030.0} +{"session_id":"sess-e3e20ab96a10","input_length":7261,"output_length":62,"hash_ids":[4128117,4128118,4128119,4128120,4128121,4128122,4128123,4128124,4128125,4128126,4128127,4128128,4128129,4128130,4128131],"delay":1463.7} +{"session_id":"sess-e3e20ab96a10","input_length":3164,"output_length":615,"hash_ids":[4128132,4128133,4128134,4128135,4128136,4128137,4128138],"delay":690.6} +{"session_id":"sess-e3e20ab96a10","input_length":344,"output_length":141,"hash_ids":[4128139],"delay":1132.9} +{"session_id":"sess-e3e20ab96a10","input_length":5588,"output_length":266,"hash_ids":[4128140,4128141,4128142,4128143,4128144,4128145,4128146,4128147,4128148,4128149,4128150],"delay":557.8} +{"session_id":"sess-e3e20ab96a10","input_length":6670,"output_length":432,"hash_ids":[4128151,4128152,4128153,4128154,4128155,4128156,4128157,4128158,4128159,4128160,4128161,4128162,4128163,4128164],"delay":741.8} +{"session_id":"sess-e3e20ab96a10","input_length":4366,"output_length":2235,"hash_ids":[4128165,4128166,4128167,4128168,4128169,4128170,4128171,4128172,4128173],"delay":2891.8} +{"session_id":"sess-e3e20ab96a10","input_length":453,"output_length":231,"hash_ids":[4128174],"delay":277.2} +{"session_id":"sess-e3e20ab96a10","input_length":727,"output_length":669,"hash_ids":[4128175,4128176],"delay":374.0} +{"session_id":"sess-e3e20ab96a10","input_length":6843,"output_length":765,"hash_ids":[4128177,4128178,4128179,4128180,4128181,4128182,4128183,4128184,4128185,4128186,4128187,4128188,4128189,4128190],"delay":211.7} +{"session_id":"sess-e3e20ab96a10","input_length":438,"output_length":205,"hash_ids":[4128191],"delay":7008.1} +{"session_id":"sess-e3e20ab96a10","input_length":2483,"output_length":418,"hash_ids":[4128192,4128193,4128194,4128195,4128196],"delay":308.9} +{"session_id":"sess-6bfe75b6a467","input_length":58706,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4132063,4132064,4132065,4132066,4132067,4132068,4132069,4132070,4132071,4132072,4132073,4132074],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6bfe75b6a467","input_length":1692,"output_length":190,"hash_ids":[4132075,4132076,4132077,4132078],"delay":47870.7} +{"session_id":"sess-6bfe75b6a467","input_length":6401,"output_length":106,"hash_ids":[4132079,4132080,4132081,4132082,4132083,4132084,4132085,4132086,4132087,4132088,4132089,4132090,4132091],"delay":734.8} +{"session_id":"sess-6bfe75b6a467","input_length":2170,"output_length":262,"hash_ids":[4132092,4132093,4132094,4132095,4132096],"delay":995.3} +{"session_id":"sess-6bfe75b6a467","input_length":933,"output_length":347,"hash_ids":[4132097,4132098],"delay":23795.3} +{"session_id":"sess-6bfe75b6a467","input_length":629,"output_length":473,"hash_ids":[4132099,4132100],"delay":345.1} +{"session_id":"sess-6bfe75b6a467","input_length":7889,"output_length":217,"hash_ids":[4132101,4132102,4132103,4132104,4132105,4132106,4132107,4132108,4132109,4132110,4132111,4132112,4132113,4132114,4132115,4132116],"delay":354.8} +{"session_id":"sess-352e4ddb9b8f","input_length":52330,"output_length":197,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302],"timestamp":0.0,"group_id":1} +{"session_id":"sess-352e4ddb9b8f","input_length":4346,"output_length":64,"hash_ids":[4132117,4132118,4132119,4132120,4132121,4132122,4132123,4132124,4132125],"delay":1390.0} +{"session_id":"sess-352e4ddb9b8f","input_length":4432,"output_length":321,"hash_ids":[4132126,4132127,4132128,4132129,4132130,4132131,4132132,4132133,4132134],"delay":26125.9} +{"session_id":"sess-352e4ddb9b8f","input_length":1052,"output_length":330,"hash_ids":[4132135,4132136,4132137],"delay":2157.9} +{"session_id":"sess-352e4ddb9b8f","input_length":1552,"output_length":450,"hash_ids":[4132138,4132139,4132140,4132141],"delay":195.5} +{"session_id":"sess-352e4ddb9b8f","input_length":5006,"output_length":421,"hash_ids":[4132142,4132143,4132144,4132145,4132146,4132147,4132148,4132149,4132150,4132151],"delay":1807.8} +{"session_id":"sess-352e4ddb9b8f","input_length":929,"output_length":152,"hash_ids":[4132152,4132153],"delay":1431.5} +{"session_id":"sess-352e4ddb9b8f","input_length":8813,"output_length":708,"hash_ids":[4132154,4132155,4132156,4132157,4132158,4132159,4132160,4132161,4132162,4132163,4132164,4132165,4132166,4132167,4132168,4132169,4132170,4132171],"delay":34549.2} +{"session_id":"sess-352e4ddb9b8f","input_length":101,"output_length":85,"hash_ids":[4132172],"delay":284.6} +{"session_id":"sess-352e4ddb9b8f","input_length":2772,"output_length":263,"hash_ids":[4132173,4132174,4132175,4132176,4132177,4132178],"delay":2910.9} +{"session_id":"sess-352e4ddb9b8f","input_length":115,"output_length":193,"hash_ids":[4132179],"delay":492.9} +{"session_id":"sess-352e4ddb9b8f","input_length":840,"output_length":61,"hash_ids":[4132180,4132181],"delay":1505.3} +{"session_id":"sess-352e4ddb9b8f","input_length":1498,"output_length":274,"hash_ids":[4132182,4132183,4132184],"delay":4487.6} +{"session_id":"sess-352e4ddb9b8f","input_length":1160,"output_length":114,"hash_ids":[4132185,4132186,4132187],"delay":813.1} +{"session_id":"sess-352e4ddb9b8f","input_length":6144,"output_length":266,"hash_ids":[4132188,4132189,4132190,4132191,4132192,4132193,4132194,4132195,4132196,4132197,4132198,4132199],"delay":908.4} +{"session_id":"sess-352e4ddb9b8f","input_length":907,"output_length":76,"hash_ids":[4132200,4132201],"delay":859.3} +{"session_id":"sess-352e4ddb9b8f","input_length":1348,"output_length":119,"hash_ids":[4132202,4132203,4132204],"delay":25709.0} +{"session_id":"sess-352e4ddb9b8f","input_length":3101,"output_length":135,"hash_ids":[4132205,4132206,4132207,4132208,4132209,4132210,4132211],"delay":13559.0} +{"session_id":"sess-352e4ddb9b8f","input_length":1289,"output_length":258,"hash_ids":[4132212,4132213,4132214],"delay":696.8} +{"session_id":"sess-352e4ddb9b8f","input_length":1005,"output_length":292,"hash_ids":[4132215,4132216],"delay":291.1} +{"session_id":"sess-352e4ddb9b8f","input_length":6946,"output_length":74,"hash_ids":[4132217,4132218,4132219,4132220,4132221,4132222,4132223,4132224,4132225,4132226,4132227,4132228,4132229,4132230],"delay":1306.1} +{"session_id":"sess-352e4ddb9b8f","input_length":1067,"output_length":426,"hash_ids":[4132231,4132232,4132233],"delay":639.5} +{"session_id":"sess-352e4ddb9b8f","input_length":1934,"output_length":521,"hash_ids":[4132234,4132235,4132236,4132237],"delay":564.9} +{"session_id":"sess-352e4ddb9b8f","input_length":1393,"output_length":229,"hash_ids":[4132238,4132239,4132240],"delay":8329.4} +{"session_id":"sess-352e4ddb9b8f","input_length":1195,"output_length":388,"hash_ids":[4132241,4132242,4132243],"delay":6480.3} +{"session_id":"sess-352e4ddb9b8f","input_length":755,"output_length":524,"hash_ids":[4132244,4132245],"delay":906.4} +{"session_id":"sess-25029f2c0242","input_length":58745,"output_length":534,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,4140063,4140064,4140065,4140066,4140067,4140068,4140069,4140070,4140071,4140072,4140073,4140074],"timestamp":0.0,"group_id":15} +{"session_id":"sess-25029f2c0242","input_length":3984,"output_length":393,"hash_ids":[4140075,4140076,4140077,4140078,4140079,4140080,4140081,4140082],"delay":885.7} +{"session_id":"sess-25029f2c0242","input_length":7810,"output_length":753,"hash_ids":[4140083,4140084,4140085,4140086,4140087,4140088,4140089,4140090,4140091,4140092,4140093,4140094,4140095,4140096,4140097,4140098],"delay":5755.8} +{"session_id":"sess-25029f2c0242","input_length":943,"output_length":1321,"hash_ids":[4140099,4140100],"delay":25510.4} +{"session_id":"sess-f5baeef88073","input_length":74543,"output_length":349,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4144063,4144064,4144065,4144066,4144067,4144068,4144069,4144070,4144071,4144072,4144073,4144074,4144075,4144076,4144077,4144078,4144079,4144080,4144081,4144082,4144083,4144084,4144085,4144086,4144087,4144088,4144089,4144090,4144091,4144092,4144093,4144094,4144095,4144096,4144097,4144098,4144099,4144100,4144101,4144102,4144103,4144104,4144105],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f5baeef88073","input_length":5880,"output_length":289,"hash_ids":[4144106,4144107,4144108,4144109,4144110,4144111,4144112,4144113,4144114,4144115,4144116,4144117],"delay":2910.4} +{"session_id":"sess-f5baeef88073","input_length":821,"output_length":101,"hash_ids":[4144118,4144119],"delay":1744.6} +{"session_id":"sess-f5baeef88073","input_length":3780,"output_length":1038,"hash_ids":[4144120,4144121,4144122,4144123,4144124,4144125,4144126,4144127],"delay":39527.8} +{"session_id":"sess-f5baeef88073","input_length":553,"output_length":300,"hash_ids":[4144128,4144129],"delay":1392.9} +{"session_id":"sess-f5baeef88073","input_length":1961,"output_length":485,"hash_ids":[4144130,4144131,4144132,4144133],"delay":294.5} +{"session_id":"sess-f5baeef88073","input_length":3287,"output_length":200,"hash_ids":[4144134,4144135,4144136,4144137,4144138,4144139,4144140],"delay":674.6} +{"session_id":"sess-f5baeef88073","input_length":1093,"output_length":138,"hash_ids":[4144141,4144142,4144143],"delay":2110.0} +{"session_id":"sess-f5baeef88073","input_length":171,"output_length":372,"hash_ids":[4144144],"delay":3651.9} +{"session_id":"sess-f5baeef88073","input_length":1916,"output_length":2051,"hash_ids":[4144145,4144146,4144147,4144148],"delay":339.3} +{"session_id":"sess-f5baeef88073","input_length":1930,"output_length":110,"hash_ids":[4144149,4144150,4144151,4144152],"delay":1076.0} +{"session_id":"sess-f5baeef88073","input_length":2287,"output_length":231,"hash_ids":[4144153,4144154,4144155,4144156,4144157],"delay":5408.6} +{"session_id":"sess-f5baeef88073","input_length":8368,"output_length":299,"hash_ids":[4144158,4144159,4144160,4144161,4144162,4144163,4144164,4144165,4144166,4144167,4144168,4144169,4144170,4144171,4144172,4144173,4144174],"delay":452.3} +{"session_id":"sess-f5baeef88073","input_length":7547,"output_length":187,"hash_ids":[4144175,4144176,4144177,4144178,4144179,4144180,4144181,4144182,4144183,4144184,4144185,4144186,4144187,4144188,4144189],"delay":4016.3} +{"session_id":"sess-f5baeef88073","input_length":3285,"output_length":460,"hash_ids":[4144190,4144191,4144192,4144193,4144194,4144195,4144196],"delay":655.3} +{"session_id":"sess-f5baeef88073","input_length":2907,"output_length":61,"hash_ids":[4144197,4144198,4144199,4144200,4144201,4144202],"delay":605.1} +{"session_id":"sess-f5baeef88073","input_length":190,"output_length":2393,"hash_ids":[4144203],"delay":276.2} +{"session_id":"sess-f5baeef88073","input_length":1272,"output_length":2140,"hash_ids":[4144204,4144205,4144206],"delay":3156.8} +{"session_id":"sess-6b414417dbc7","input_length":67733,"output_length":239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4148063,4148064,4148065,4148066,4148067,4148068,4148069,4148070,4148071,4148072,4148073,4148074,4148075,4148076,4148077,4148078,4148079,4148080,4148081,4148082,4148083,4148084,4148085,4148086,4148087,4148088,4148089,4148090,4148091,4148092],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6b414417dbc7","input_length":1860,"output_length":190,"hash_ids":[4148093,4148094,4148095,4148096],"delay":374.4} +{"session_id":"sess-6b414417dbc7","input_length":3061,"output_length":228,"hash_ids":[4148097,4148098,4148099,4148100,4148101,4148102],"delay":2384.9} +{"session_id":"sess-6b414417dbc7","input_length":2966,"output_length":37,"hash_ids":[4148103,4148104,4148105,4148106,4148107,4148108],"delay":573.3} +{"session_id":"sess-6b414417dbc7","input_length":1839,"output_length":461,"hash_ids":[4148109,4148110,4148111,4148112],"delay":6306.9} +{"session_id":"sess-6b414417dbc7","input_length":1266,"output_length":1344,"hash_ids":[4148113,4148114,4148115],"delay":13393.7} +{"session_id":"sess-6b414417dbc7","input_length":3682,"output_length":63,"hash_ids":[4148116,4148117,4148118,4148119,4148120,4148121,4148122,4148123],"delay":24587.9} +{"session_id":"sess-98f130ba5dd8","input_length":53499,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,4152063,4152064],"timestamp":0.0,"group_id":13} +{"session_id":"sess-98f130ba5dd8","input_length":2261,"output_length":350,"hash_ids":[4152065,4152066,4152067,4152068,4152069],"delay":692.9} +{"session_id":"sess-98f130ba5dd8","input_length":5683,"output_length":577,"hash_ids":[4152070,4152071,4152072,4152073,4152074,4152075,4152076,4152077,4152078,4152079,4152080,4152081],"delay":503.9} +{"session_id":"sess-98f130ba5dd8","input_length":1658,"output_length":374,"hash_ids":[4152082,4152083,4152084,4152085],"delay":4130.1} +{"session_id":"sess-98f130ba5dd8","input_length":2413,"output_length":977,"hash_ids":[4152086,4152087,4152088,4152089,4152090],"delay":1954.8} +{"session_id":"sess-98f130ba5dd8","input_length":2514,"output_length":163,"hash_ids":[4152091,4152092,4152093,4152094,4152095],"delay":33005.9} +{"session_id":"sess-98f130ba5dd8","input_length":2943,"output_length":241,"hash_ids":[4152096,4152097,4152098,4152099,4152100,4152101],"delay":5379.7} +{"session_id":"sess-98f130ba5dd8","input_length":920,"output_length":538,"hash_ids":[4152102,4152103],"delay":1311.8} +{"session_id":"sess-98f130ba5dd8","input_length":3068,"output_length":499,"hash_ids":[4152104,4152105,4152106,4152107,4152108,4152109],"delay":11263.4} +{"session_id":"sess-98f130ba5dd8","input_length":1084,"output_length":544,"hash_ids":[4152110,4152111,4152112],"delay":712.7} +{"session_id":"sess-98f130ba5dd8","input_length":6709,"output_length":1062,"hash_ids":[4152113,4152114,4152115,4152116,4152117,4152118,4152119,4152120,4152121,4152122,4152123,4152124,4152125,4152126],"delay":775.7} +{"session_id":"sess-98f130ba5dd8","input_length":1671,"output_length":74,"hash_ids":[4152127,4152128,4152129,4152130],"delay":1281.7} +{"session_id":"sess-98f130ba5dd8","input_length":488,"output_length":400,"hash_ids":[4152131],"delay":583.0} +{"session_id":"sess-98f130ba5dd8","input_length":1334,"output_length":800,"hash_ids":[4152132,4152133,4152134],"delay":12521.2} +{"session_id":"sess-98f130ba5dd8","input_length":992,"output_length":152,"hash_ids":[4152135,4152136],"delay":447.1} +{"session_id":"sess-5202de6c2fc0","input_length":73073,"output_length":271,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,4156063,4156064,4156065,4156066,4156067,4156068,4156069,4156070,4156071,4156072,4156073,4156074,4156075,4156076,4156077,4156078,4156079,4156080,4156081,4156082,4156083,4156084,4156085,4156086,4156087,4156088,4156089,4156090,4156091,4156092,4156093,4156094,4156095,4156096,4156097,4156098,4156099,4156100,4156101,4156102],"timestamp":0.0,"group_id":5} +{"session_id":"sess-5202de6c2fc0","input_length":872,"output_length":188,"hash_ids":[4156103,4156104],"delay":8468.4} +{"session_id":"sess-5202de6c2fc0","input_length":127,"output_length":1056,"hash_ids":[4156105],"delay":745.2} +{"session_id":"sess-5202de6c2fc0","input_length":1550,"output_length":35,"hash_ids":[4156106,4156107,4156108,4156109],"delay":843.1} +{"session_id":"sess-5202de6c2fc0","input_length":5588,"output_length":164,"hash_ids":[4156110,4156111,4156112,4156113,4156114,4156115,4156116,4156117,4156118,4156119,4156120],"delay":3558.7} +{"session_id":"sess-5202de6c2fc0","input_length":794,"output_length":264,"hash_ids":[4156121,4156122],"delay":530.9} +{"session_id":"sess-5202de6c2fc0","input_length":477,"output_length":1093,"hash_ids":[4156123],"delay":2408.6} +{"session_id":"sess-5202de6c2fc0","input_length":2668,"output_length":425,"hash_ids":[4156124,4156125,4156126,4156127,4156128,4156129],"delay":1267.2} +{"session_id":"sess-5202de6c2fc0","input_length":802,"output_length":622,"hash_ids":[4156130,4156131],"delay":8431.9} +{"session_id":"sess-5202de6c2fc0","input_length":847,"output_length":76,"hash_ids":[4156132,4156133],"delay":1052.1} +{"session_id":"sess-5202de6c2fc0","input_length":4525,"output_length":640,"hash_ids":[4156134,4156135,4156136,4156137,4156138,4156139,4156140,4156141,4156142],"delay":8062.6} +{"session_id":"sess-5202de6c2fc0","input_length":936,"output_length":91,"hash_ids":[4156143,4156144],"delay":29873.4} +{"session_id":"sess-5202de6c2fc0","input_length":2563,"output_length":30,"hash_ids":[4156145,4156146,4156147,4156148,4156149,4156150],"delay":841.6} +{"session_id":"sess-5202de6c2fc0","input_length":4872,"output_length":1285,"hash_ids":[4156151,4156152,4156153,4156154,4156155,4156156,4156157,4156158,4156159,4156160],"delay":179.5} +{"session_id":"sess-5202de6c2fc0","input_length":7536,"output_length":88,"hash_ids":[4156161,4156162,4156163,4156164,4156165,4156166,4156167,4156168,4156169,4156170,4156171,4156172,4156173,4156174,4156175],"delay":337.0} +{"session_id":"sess-5202de6c2fc0","input_length":1314,"output_length":423,"hash_ids":[4156176,4156177,4156178],"delay":7904.3} +{"session_id":"sess-5202de6c2fc0","input_length":773,"output_length":759,"hash_ids":[4156179,4156180],"delay":3298.2} +{"session_id":"sess-5202de6c2fc0","input_length":775,"output_length":492,"hash_ids":[4156181,4156182],"delay":239.9} +{"session_id":"sess-5202de6c2fc0","input_length":230,"output_length":50,"hash_ids":[4156183],"delay":1347.6} +{"session_id":"sess-5202de6c2fc0","input_length":547,"output_length":311,"hash_ids":[4156184,4156185],"delay":289.8} +{"session_id":"sess-5202de6c2fc0","input_length":4165,"output_length":319,"hash_ids":[4156186,4156187,4156188,4156189,4156190,4156191,4156192,4156193,4156194],"delay":925.1} +{"session_id":"sess-5202de6c2fc0","input_length":3080,"output_length":30,"hash_ids":[4156195,4156196,4156197,4156198,4156199,4156200,4156201],"delay":1151.6} +{"session_id":"sess-428a1f997d7e","input_length":55641,"output_length":764,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,4160063,4160064,4160065,4160066,4160067,4160068],"timestamp":0.0,"group_id":2} +{"session_id":"sess-428a1f997d7e","input_length":1873,"output_length":111,"hash_ids":[4160069,4160070,4160071,4160072],"delay":1075.8} +{"session_id":"sess-428a1f997d7e","input_length":2254,"output_length":396,"hash_ids":[4160073,4160074,4160075,4160076,4160077],"delay":18993.5} +{"session_id":"sess-428a1f997d7e","input_length":2439,"output_length":613,"hash_ids":[4160078,4160079,4160080,4160081,4160082],"delay":1749.8} +{"session_id":"sess-428a1f997d7e","input_length":1341,"output_length":561,"hash_ids":[4160083,4160084,4160085],"delay":1794.5} +{"session_id":"sess-428a1f997d7e","input_length":2401,"output_length":98,"hash_ids":[4160086,4160087,4160088,4160089,4160090],"delay":2067.3} +{"session_id":"sess-428a1f997d7e","input_length":7904,"output_length":283,"hash_ids":[4160091,4160092,4160093,4160094,4160095,4160096,4160097,4160098,4160099,4160100,4160101,4160102,4160103,4160104,4160105,4160106],"delay":15266.0} +{"session_id":"sess-428a1f997d7e","input_length":3740,"output_length":154,"hash_ids":[4160107,4160108,4160109,4160110,4160111,4160112,4160113,4160114],"delay":1703.7} +{"session_id":"sess-428a1f997d7e","input_length":1610,"output_length":127,"hash_ids":[4160115,4160116,4160117,4160118],"delay":5314.7} +{"session_id":"sess-428a1f997d7e","input_length":9801,"output_length":137,"hash_ids":[4160119,4160120,4160121,4160122,4160123,4160124,4160125,4160126,4160127,4160128,4160129,4160130,4160131,4160132,4160133,4160134,4160135,4160136,4160137,4160138],"delay":446.3} +{"session_id":"sess-428a1f997d7e","input_length":3586,"output_length":177,"hash_ids":[4160139,4160140,4160141,4160142,4160143,4160144,4160145,4160146],"delay":913.4} +{"session_id":"sess-428a1f997d7e","input_length":587,"output_length":530,"hash_ids":[4160147,4160148],"delay":1082.3} +{"session_id":"sess-428a1f997d7e","input_length":224,"output_length":309,"hash_ids":[4160149],"delay":620.9} +{"session_id":"sess-428a1f997d7e","input_length":2690,"output_length":307,"hash_ids":[4160150,4160151,4160152,4160153,4160154,4160155],"delay":23408.2} +{"session_id":"sess-428a1f997d7e","input_length":9041,"output_length":136,"hash_ids":[4160156,4160157,4160158,4160159,4160160,4160161,4160162,4160163,4160164,4160165,4160166,4160167,4160168,4160169,4160170,4160171,4160172,4160173],"delay":606.0} +{"session_id":"sess-428a1f997d7e","input_length":1854,"output_length":126,"hash_ids":[4160174,4160175,4160176,4160177],"delay":1959.1} +{"session_id":"sess-428a1f997d7e","input_length":3824,"output_length":251,"hash_ids":[4160178,4160179,4160180,4160181,4160182,4160183,4160184,4160185],"delay":5169.8} +{"session_id":"sess-428a1f997d7e","input_length":5094,"output_length":220,"hash_ids":[4160186,4160187,4160188,4160189,4160190,4160191,4160192,4160193,4160194,4160195],"delay":13686.2} +{"session_id":"sess-428a1f997d7e","input_length":1307,"output_length":226,"hash_ids":[4160196,4160197,4160198],"delay":431.7} +{"session_id":"sess-428a1f997d7e","input_length":3618,"output_length":78,"hash_ids":[4160199,4160200,4160201,4160202,4160203,4160204,4160205,4160206],"delay":62.0} +{"session_id":"sess-428a1f997d7e","input_length":785,"output_length":30,"hash_ids":[4160207,4160208],"delay":93.8} +{"session_id":"sess-428a1f997d7e","input_length":427,"output_length":92,"hash_ids":[4160209],"delay":896.5} +{"session_id":"sess-cd2bb33e9f64","input_length":63656,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4164063,4164064,4164065,4164066,4164067,4164068,4164069,4164070,4164071,4164072,4164073,4164074,4164075,4164076,4164077,4164078,4164079,4164080,4164081,4164082,4164083,4164084],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cd2bb33e9f64","input_length":415,"output_length":180,"hash_ids":[4164085],"delay":302.6} +{"session_id":"sess-cd2bb33e9f64","input_length":1894,"output_length":317,"hash_ids":[4164086,4164087,4164088,4164089],"delay":1026.4} +{"session_id":"sess-cd2bb33e9f64","input_length":2931,"output_length":763,"hash_ids":[4164090,4164091,4164092,4164093,4164094,4164095],"delay":18466.3} +{"session_id":"sess-cd2bb33e9f64","input_length":3018,"output_length":329,"hash_ids":[4164096,4164097,4164098,4164099,4164100,4164101],"delay":23006.5} +{"session_id":"sess-cd2bb33e9f64","input_length":2200,"output_length":2043,"hash_ids":[4164102,4164103,4164104,4164105,4164106],"delay":332.4} +{"session_id":"sess-cd2bb33e9f64","input_length":1584,"output_length":157,"hash_ids":[4164107,4164108,4164109,4164110],"delay":2387.6} +{"session_id":"sess-cd2bb33e9f64","input_length":2330,"output_length":116,"hash_ids":[4164111,4164112,4164113,4164114,4164115],"delay":675.0} +{"session_id":"sess-cd2bb33e9f64","input_length":410,"output_length":499,"hash_ids":[4164116],"delay":1987.4} +{"session_id":"sess-cd2bb33e9f64","input_length":3947,"output_length":936,"hash_ids":[4164117,4164118,4164119,4164120,4164121,4164122,4164123,4164124],"delay":463.8} +{"session_id":"sess-cd2bb33e9f64","input_length":2154,"output_length":425,"hash_ids":[4164125,4164126,4164127,4164128,4164129],"delay":310.7} +{"session_id":"sess-cd2bb33e9f64","input_length":3863,"output_length":119,"hash_ids":[4164130,4164131,4164132,4164133,4164134,4164135,4164136,4164137],"delay":34699.3} +{"session_id":"sess-cd2bb33e9f64","input_length":1242,"output_length":103,"hash_ids":[4164138,4164139,4164140],"delay":477.4} +{"session_id":"sess-cd2bb33e9f64","input_length":189,"output_length":1106,"hash_ids":[4164141],"delay":2997.3} +{"session_id":"sess-cd2bb33e9f64","input_length":3984,"output_length":145,"hash_ids":[4164142,4164143,4164144,4164145,4164146,4164147,4164148,4164149],"delay":675.3} +{"session_id":"sess-cd2bb33e9f64","input_length":360,"output_length":211,"hash_ids":[4164150],"delay":228.0} +{"session_id":"sess-cd2bb33e9f64","input_length":1625,"output_length":90,"hash_ids":[4164151,4164152,4164153,4164154],"delay":570.2} +{"session_id":"sess-cd2bb33e9f64","input_length":180,"output_length":47,"hash_ids":[4164155],"delay":3154.5} +{"session_id":"sess-cd2bb33e9f64","input_length":4644,"output_length":237,"hash_ids":[4164156,4164157,4164158,4164159,4164160,4164161,4164162,4164163,4164164,4164165],"delay":961.2} +{"session_id":"sess-cd2bb33e9f64","input_length":4871,"output_length":316,"hash_ids":[4164166,4164167,4164168,4164169,4164170,4164171,4164172,4164173,4164174,4164175],"delay":38350.9} +{"session_id":"sess-cd2bb33e9f64","input_length":1588,"output_length":219,"hash_ids":[4164176,4164177,4164178,4164179],"delay":313.5} +{"session_id":"sess-cd2bb33e9f64","input_length":482,"output_length":576,"hash_ids":[4164180],"delay":239.4} +{"session_id":"sess-cd2bb33e9f64","input_length":1442,"output_length":564,"hash_ids":[4164181,4164182,4164183],"delay":876.7} +{"session_id":"sess-cd2bb33e9f64","input_length":2015,"output_length":595,"hash_ids":[4164184,4164185,4164186,4164187],"delay":318.4} +{"session_id":"sess-cd2bb33e9f64","input_length":1978,"output_length":243,"hash_ids":[4164188,4164189,4164190,4164191],"delay":197.6} +{"session_id":"sess-cd2bb33e9f64","input_length":486,"output_length":232,"hash_ids":[4164192],"delay":549.3} +{"session_id":"sess-a018e879058a","input_length":54458,"output_length":321,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,4168063,4168064,4168065,4168066],"timestamp":0.0,"group_id":9} +{"session_id":"sess-a018e879058a","input_length":3152,"output_length":54,"hash_ids":[4168067,4168068,4168069,4168070,4168071,4168072,4168073],"delay":11188.1} +{"session_id":"sess-a018e879058a","input_length":9781,"output_length":577,"hash_ids":[4168074,4168075,4168076,4168077,4168078,4168079,4168080,4168081,4168082,4168083,4168084,4168085,4168086,4168087,4168088,4168089,4168090,4168091,4168092,4168093],"delay":10498.6} +{"session_id":"sess-a018e879058a","input_length":1365,"output_length":309,"hash_ids":[4168094,4168095,4168096],"delay":903.4} +{"session_id":"sess-a018e879058a","input_length":315,"output_length":296,"hash_ids":[4168097],"delay":680.1} +{"session_id":"sess-a018e879058a","input_length":1431,"output_length":662,"hash_ids":[4168098,4168099,4168100],"delay":609.4} +{"session_id":"sess-a018e879058a","input_length":901,"output_length":1925,"hash_ids":[4168101,4168102],"delay":3677.4} +{"session_id":"sess-a018e879058a","input_length":2114,"output_length":236,"hash_ids":[4168103,4168104,4168105,4168106,4168107],"delay":1383.8} +{"session_id":"sess-a018e879058a","input_length":1639,"output_length":661,"hash_ids":[4168108,4168109,4168110,4168111],"delay":3655.1} +{"session_id":"sess-a018e879058a","input_length":1169,"output_length":1140,"hash_ids":[4168112,4168113,4168114],"delay":17412.0} +{"session_id":"sess-a018e879058a","input_length":3770,"output_length":570,"hash_ids":[4168115,4168116,4168117,4168118,4168119,4168120,4168121,4168122],"delay":621.3} +{"session_id":"sess-a018e879058a","input_length":2687,"output_length":103,"hash_ids":[4168123,4168124,4168125,4168126,4168127,4168128],"delay":3943.1} +{"session_id":"sess-a018e879058a","input_length":1896,"output_length":1864,"hash_ids":[4168129,4168130,4168131,4168132],"delay":867.6} +{"session_id":"sess-a018e879058a","input_length":5381,"output_length":86,"hash_ids":[4168133,4168134,4168135,4168136,4168137,4168138,4168139,4168140,4168141,4168142,4168143],"delay":27224.7} +{"session_id":"sess-a018e879058a","input_length":1397,"output_length":1083,"hash_ids":[4168144,4168145,4168146],"delay":337.4} +{"session_id":"sess-a018e879058a","input_length":7003,"output_length":69,"hash_ids":[4168147,4168148,4168149,4168150,4168151,4168152,4168153,4168154,4168155,4168156,4168157,4168158,4168159,4168160],"delay":252.5} +{"session_id":"sess-a018e879058a","input_length":966,"output_length":186,"hash_ids":[4168161,4168162],"delay":1282.8} +{"session_id":"sess-a018e879058a","input_length":1332,"output_length":465,"hash_ids":[4168163,4168164,4168165],"delay":2385.7} +{"session_id":"sess-a018e879058a","input_length":2700,"output_length":687,"hash_ids":[4168166,4168167,4168168,4168169,4168170,4168171],"delay":630.1} +{"session_id":"sess-a018e879058a","input_length":9475,"output_length":202,"hash_ids":[4168172,4168173,4168174,4168175,4168176,4168177,4168178,4168179,4168180,4168181,4168182,4168183,4168184,4168185,4168186,4168187,4168188,4168189,4168190],"delay":424.4} +{"session_id":"sess-a018e879058a","input_length":1342,"output_length":170,"hash_ids":[4168191,4168192,4168193],"delay":1078.4} +{"session_id":"sess-bdeed11b1d59","input_length":62210,"output_length":1079,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,4172063,4172064,4172065,4172066,4172067,4172068,4172069,4172070,4172071,4172072,4172073,4172074,4172075,4172076,4172077,4172078,4172079,4172080,4172081],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bdeed11b1d59","input_length":5632,"output_length":165,"hash_ids":[4172082,4172083,4172084,4172085,4172086,4172087,4172088,4172089,4172090,4172091,4172092],"delay":1423.7} +{"session_id":"sess-bdeed11b1d59","input_length":721,"output_length":128,"hash_ids":[4172093,4172094],"delay":495.7} +{"session_id":"sess-bdeed11b1d59","input_length":753,"output_length":340,"hash_ids":[4172095,4172096],"delay":1380.7} +{"session_id":"sess-bdeed11b1d59","input_length":1646,"output_length":54,"hash_ids":[4172097,4172098,4172099,4172100],"delay":15282.4} +{"session_id":"sess-bdeed11b1d59","input_length":4434,"output_length":255,"hash_ids":[4172101,4172102,4172103,4172104,4172105,4172106,4172107,4172108,4172109],"delay":1157.1} +{"session_id":"sess-bdeed11b1d59","input_length":688,"output_length":558,"hash_ids":[4172110,4172111],"delay":470.8} +{"session_id":"sess-bdeed11b1d59","input_length":756,"output_length":361,"hash_ids":[4172112,4172113],"delay":997.8} +{"session_id":"sess-bdeed11b1d59","input_length":476,"output_length":1776,"hash_ids":[4172114],"delay":1200.3} +{"session_id":"sess-bdeed11b1d59","input_length":1605,"output_length":1872,"hash_ids":[4172115,4172116,4172117,4172118],"delay":39263.1} +{"session_id":"sess-bdeed11b1d59","input_length":491,"output_length":1005,"hash_ids":[4172119],"delay":8424.4} +{"session_id":"sess-bdeed11b1d59","input_length":2865,"output_length":58,"hash_ids":[4172120,4172121,4172122,4172123,4172124,4172125],"delay":1363.7} +{"session_id":"sess-bdeed11b1d59","input_length":6437,"output_length":575,"hash_ids":[4172126,4172127,4172128,4172129,4172130,4172131,4172132,4172133,4172134,4172135,4172136,4172137,4172138],"delay":695.8} +{"session_id":"sess-bdeed11b1d59","input_length":92,"output_length":111,"hash_ids":[4172139],"delay":911.9} +{"session_id":"sess-bdeed11b1d59","input_length":8699,"output_length":855,"hash_ids":[4172140,4172141,4172142,4172143,4172144,4172145,4172146,4172147,4172148,4172149,4172150,4172151,4172152,4172153,4172154,4172155,4172156],"delay":446.9} +{"session_id":"sess-bdeed11b1d59","input_length":9208,"output_length":168,"hash_ids":[4172157,4172158,4172159,4172160,4172161,4172162,4172163,4172164,4172165,4172166,4172167,4172168,4172169,4172170,4172171,4172172,4172173,4172174],"delay":2363.9} +{"session_id":"sess-bdeed11b1d59","input_length":382,"output_length":183,"hash_ids":[4172175],"delay":2295.1} +{"session_id":"sess-bdeed11b1d59","input_length":1441,"output_length":262,"hash_ids":[4172176,4172177,4172178],"delay":1284.8} +{"session_id":"sess-bdeed11b1d59","input_length":511,"output_length":265,"hash_ids":[4172179],"delay":430.7} +{"session_id":"sess-bdeed11b1d59","input_length":1556,"output_length":42,"hash_ids":[4172180,4172181,4172182,4172183],"delay":838.1} +{"session_id":"sess-bdeed11b1d59","input_length":1675,"output_length":329,"hash_ids":[4172184,4172185,4172186,4172187],"delay":658.0} +{"session_id":"sess-bdeed11b1d59","input_length":6002,"output_length":309,"hash_ids":[4172188,4172189,4172190,4172191,4172192,4172193,4172194,4172195,4172196,4172197,4172198,4172199],"delay":621.7} +{"session_id":"sess-bdeed11b1d59","input_length":424,"output_length":174,"hash_ids":[4172200],"delay":265.3} +{"session_id":"sess-6d6e2dc245da","input_length":58058,"output_length":120,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,4176063,4176064,4176065,4176066,4176067,4176068,4176069,4176070,4176071,4176072,4176073],"timestamp":0.0,"group_id":10} +{"session_id":"sess-6d6e2dc245da","input_length":868,"output_length":102,"hash_ids":[4176074,4176075],"delay":1678.0} +{"session_id":"sess-6d6e2dc245da","input_length":1350,"output_length":51,"hash_ids":[4176076,4176077,4176078],"delay":4229.4} +{"session_id":"sess-6d6e2dc245da","input_length":1478,"output_length":198,"hash_ids":[4176079,4176080,4176081],"delay":17013.3} +{"session_id":"sess-6d6e2dc245da","input_length":825,"output_length":2014,"hash_ids":[4176082,4176083],"delay":3592.6} +{"session_id":"sess-6d6e2dc245da","input_length":1491,"output_length":293,"hash_ids":[4176084,4176085,4176086],"delay":1072.8} +{"session_id":"sess-6d6e2dc245da","input_length":6819,"output_length":111,"hash_ids":[4176087,4176088,4176089,4176090,4176091,4176092,4176093,4176094,4176095,4176096,4176097,4176098,4176099,4176100],"delay":9199.5} +{"session_id":"sess-6d6e2dc245da","input_length":4065,"output_length":31,"hash_ids":[4176101,4176102,4176103,4176104,4176105,4176106,4176107,4176108],"delay":5249.8} +{"session_id":"sess-6d6e2dc245da","input_length":1370,"output_length":235,"hash_ids":[4176109,4176110,4176111],"delay":541.4} +{"session_id":"sess-6d6e2dc245da","input_length":2076,"output_length":558,"hash_ids":[4176112,4176113,4176114,4176115,4176116],"delay":9687.4} +{"session_id":"sess-6d6e2dc245da","input_length":929,"output_length":110,"hash_ids":[4176117,4176118],"delay":723.1} +{"session_id":"sess-6d6e2dc245da","input_length":2596,"output_length":30,"hash_ids":[4176119,4176120,4176121,4176122,4176123,4176124],"delay":24280.1} +{"session_id":"sess-6d6e2dc245da","input_length":3709,"output_length":100,"hash_ids":[4176125,4176126,4176127,4176128,4176129,4176130,4176131,4176132],"delay":3307.6} +{"session_id":"sess-6d6e2dc245da","input_length":4872,"output_length":493,"hash_ids":[4176133,4176134,4176135,4176136,4176137,4176138,4176139,4176140,4176141,4176142],"delay":777.8} +{"session_id":"sess-6d6e2dc245da","input_length":1030,"output_length":1553,"hash_ids":[4176143,4176144,4176145],"delay":2220.4} +{"session_id":"sess-6d6e2dc245da","input_length":2112,"output_length":102,"hash_ids":[4176146,4176147,4176148,4176149,4176150],"delay":2943.3} +{"session_id":"sess-6d6e2dc245da","input_length":3519,"output_length":1990,"hash_ids":[4176151,4176152,4176153,4176154,4176155,4176156,4176157],"delay":7854.0} +{"session_id":"sess-6d6e2dc245da","input_length":1206,"output_length":196,"hash_ids":[4176158,4176159,4176160],"delay":663.7} +{"session_id":"sess-6d6e2dc245da","input_length":8042,"output_length":247,"hash_ids":[4176161,4176162,4176163,4176164,4176165,4176166,4176167,4176168,4176169,4176170,4176171,4176172,4176173,4176174,4176175,4176176],"delay":225.0} +{"session_id":"sess-6d6e2dc245da","input_length":3728,"output_length":190,"hash_ids":[4176177,4176178,4176179,4176180,4176181,4176182,4176183,4176184],"delay":1169.0} +{"session_id":"sess-6d6e2dc245da","input_length":656,"output_length":393,"hash_ids":[4176185,4176186],"delay":561.4} +{"session_id":"sess-6d6e2dc245da","input_length":771,"output_length":815,"hash_ids":[4176187,4176188],"delay":29968.0} +{"session_id":"sess-6d6e2dc245da","input_length":8283,"output_length":162,"hash_ids":[4176189,4176190,4176191,4176192,4176193,4176194,4176195,4176196,4176197,4176198,4176199,4176200,4176201,4176202,4176203,4176204,4176205],"delay":15651.8} +{"session_id":"sess-6d6e2dc245da","input_length":992,"output_length":80,"hash_ids":[4176206,4176207],"delay":1930.3} +{"session_id":"sess-6b6e34c624a7","input_length":53255,"output_length":526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4180063,4180064],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6b6e34c624a7","input_length":1826,"output_length":134,"hash_ids":[4180065,4180066,4180067,4180068],"delay":1625.3} +{"session_id":"sess-6b6e34c624a7","input_length":3426,"output_length":450,"hash_ids":[4180069,4180070,4180071,4180072,4180073,4180074,4180075],"delay":1652.5} +{"session_id":"sess-6b6e34c624a7","input_length":612,"output_length":441,"hash_ids":[4180076,4180077],"delay":175.4} +{"session_id":"sess-6b6e34c624a7","input_length":2462,"output_length":332,"hash_ids":[4180078,4180079,4180080,4180081,4180082],"delay":2146.6} +{"session_id":"sess-6b6e34c624a7","input_length":7383,"output_length":729,"hash_ids":[4180083,4180084,4180085,4180086,4180087,4180088,4180089,4180090,4180091,4180092,4180093,4180094,4180095,4180096,4180097],"delay":994.7} +{"session_id":"sess-6b6e34c624a7","input_length":965,"output_length":134,"hash_ids":[4180098,4180099],"delay":1546.3} +{"session_id":"sess-6b6e34c624a7","input_length":2744,"output_length":595,"hash_ids":[4180100,4180101,4180102,4180103,4180104,4180105],"delay":1797.3} +{"session_id":"sess-6b6e34c624a7","input_length":5652,"output_length":160,"hash_ids":[4180106,4180107,4180108,4180109,4180110,4180111,4180112,4180113,4180114,4180115,4180116,4180117],"delay":1440.0} +{"session_id":"sess-6b6e34c624a7","input_length":288,"output_length":897,"hash_ids":[4180118],"delay":226.6} +{"session_id":"sess-6b6e34c624a7","input_length":1520,"output_length":605,"hash_ids":[4180119,4180120,4180121],"delay":8036.9} +{"session_id":"sess-6b6e34c624a7","input_length":5067,"output_length":634,"hash_ids":[4180122,4180123,4180124,4180125,4180126,4180127,4180128,4180129,4180130,4180131],"delay":34441.2} +{"session_id":"sess-6b6e34c624a7","input_length":7057,"output_length":681,"hash_ids":[4180132,4180133,4180134,4180135,4180136,4180137,4180138,4180139,4180140,4180141,4180142,4180143,4180144,4180145],"delay":2865.7} +{"session_id":"sess-6b6e34c624a7","input_length":1037,"output_length":314,"hash_ids":[4180146,4180147,4180148],"delay":1071.3} +{"session_id":"sess-6b6e34c624a7","input_length":572,"output_length":201,"hash_ids":[4180149,4180150],"delay":2692.6} +{"session_id":"sess-6b6e34c624a7","input_length":318,"output_length":189,"hash_ids":[4180151],"delay":18721.2} +{"session_id":"sess-6b6e34c624a7","input_length":1035,"output_length":716,"hash_ids":[4180152,4180153,4180154],"delay":19947.6} +{"session_id":"sess-6b6e34c624a7","input_length":499,"output_length":381,"hash_ids":[4180155],"delay":469.0} +{"session_id":"sess-6b6e34c624a7","input_length":2470,"output_length":89,"hash_ids":[4180156,4180157,4180158,4180159,4180160],"delay":2865.0} +{"session_id":"sess-6b6e34c624a7","input_length":3233,"output_length":336,"hash_ids":[4180161,4180162,4180163,4180164,4180165,4180166,4180167],"delay":4670.6} +{"session_id":"sess-6b6e34c624a7","input_length":1526,"output_length":682,"hash_ids":[4180168,4180169,4180170],"delay":294.2} +{"session_id":"sess-6b6e34c624a7","input_length":390,"output_length":68,"hash_ids":[4180171],"delay":15501.3} +{"session_id":"sess-6b6e34c624a7","input_length":2062,"output_length":130,"hash_ids":[4180172,4180173,4180174,4180175,4180176],"delay":1179.8} +{"session_id":"sess-6b6e34c624a7","input_length":1493,"output_length":71,"hash_ids":[4180177,4180178,4180179],"delay":101.1} +{"session_id":"sess-6b6e34c624a7","input_length":7117,"output_length":173,"hash_ids":[4180180,4180181,4180182,4180183,4180184,4180185,4180186,4180187,4180188,4180189,4180190,4180191,4180192,4180193],"delay":14585.8} +{"session_id":"sess-6b6e34c624a7","input_length":6192,"output_length":225,"hash_ids":[4180194,4180195,4180196,4180197,4180198,4180199,4180200,4180201,4180202,4180203,4180204,4180205,4180206],"delay":1148.8} +{"session_id":"sess-9d4df3e10e17","input_length":58785,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,4184063,4184064,4184065,4184066,4184067,4184068,4184069,4184070,4184071,4184072,4184073,4184074],"timestamp":0.0,"group_id":6} +{"session_id":"sess-9d4df3e10e17","input_length":690,"output_length":485,"hash_ids":[4184075,4184076],"delay":2662.3} +{"session_id":"sess-9d4df3e10e17","input_length":373,"output_length":828,"hash_ids":[4184077],"delay":1467.1} +{"session_id":"sess-9d4df3e10e17","input_length":3225,"output_length":97,"hash_ids":[4184078,4184079,4184080,4184081,4184082,4184083,4184084],"delay":5848.5} +{"session_id":"sess-9d4df3e10e17","input_length":1185,"output_length":537,"hash_ids":[4184085,4184086,4184087],"delay":15955.9} +{"session_id":"sess-ef3df33755f2","input_length":54783,"output_length":139,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4188063,4188064,4188065,4188066],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ef3df33755f2","input_length":1751,"output_length":477,"hash_ids":[4188067,4188068,4188069,4188070],"delay":3137.9} +{"session_id":"sess-ef3df33755f2","input_length":8653,"output_length":525,"hash_ids":[4188071,4188072,4188073,4188074,4188075,4188076,4188077,4188078,4188079,4188080,4188081,4188082,4188083,4188084,4188085,4188086,4188087],"delay":47242.0} +{"session_id":"sess-79677a459f22","input_length":53478,"output_length":150,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,4192063,4192064],"timestamp":0.0,"group_id":6} +{"session_id":"sess-79677a459f22","input_length":3433,"output_length":343,"hash_ids":[4192065,4192066,4192067,4192068,4192069,4192070,4192071],"delay":935.3} +{"session_id":"sess-79677a459f22","input_length":1512,"output_length":185,"hash_ids":[4192072,4192073,4192074],"delay":828.6} +{"session_id":"sess-79677a459f22","input_length":855,"output_length":351,"hash_ids":[4192075,4192076],"delay":17042.1} +{"session_id":"sess-79677a459f22","input_length":375,"output_length":353,"hash_ids":[4192077],"delay":2014.2} +{"session_id":"sess-79677a459f22","input_length":1808,"output_length":1134,"hash_ids":[4192078,4192079,4192080,4192081],"delay":2572.0} +{"session_id":"sess-79677a459f22","input_length":2974,"output_length":157,"hash_ids":[4192082,4192083,4192084,4192085,4192086,4192087],"delay":4391.8} +{"session_id":"sess-79677a459f22","input_length":8507,"output_length":183,"hash_ids":[4192088,4192089,4192090,4192091,4192092,4192093,4192094,4192095,4192096,4192097,4192098,4192099,4192100,4192101,4192102,4192103,4192104],"delay":6905.7} +{"session_id":"sess-79677a459f22","input_length":2009,"output_length":380,"hash_ids":[4192105,4192106,4192107,4192108],"delay":15969.7} +{"session_id":"sess-79677a459f22","input_length":1421,"output_length":174,"hash_ids":[4192109,4192110,4192111],"delay":2528.4} +{"session_id":"sess-79677a459f22","input_length":3372,"output_length":570,"hash_ids":[4192112,4192113,4192114,4192115,4192116,4192117,4192118],"delay":1042.3} +{"session_id":"sess-79677a459f22","input_length":759,"output_length":83,"hash_ids":[4192119,4192120],"delay":1097.5} +{"session_id":"sess-79677a459f22","input_length":1183,"output_length":345,"hash_ids":[4192121,4192122,4192123],"delay":820.7} +{"session_id":"sess-79677a459f22","input_length":5293,"output_length":592,"hash_ids":[4192124,4192125,4192126,4192127,4192128,4192129,4192130,4192131,4192132,4192133,4192134],"delay":493.2} +{"session_id":"sess-79677a459f22","input_length":3092,"output_length":241,"hash_ids":[4192135,4192136,4192137,4192138,4192139,4192140,4192141],"delay":5631.2} +{"session_id":"sess-79677a459f22","input_length":4842,"output_length":1022,"hash_ids":[4192142,4192143,4192144,4192145,4192146,4192147,4192148,4192149,4192150,4192151],"delay":3900.8} +{"session_id":"sess-79677a459f22","input_length":512,"output_length":136,"hash_ids":[4192152],"delay":806.8} +{"session_id":"sess-79677a459f22","input_length":3166,"output_length":380,"hash_ids":[4192153,4192154,4192155,4192156,4192157,4192158,4192159],"delay":2385.5} +{"session_id":"sess-79677a459f22","input_length":2596,"output_length":243,"hash_ids":[4192160,4192161,4192162,4192163,4192164,4192165],"delay":1835.4} +{"session_id":"sess-79677a459f22","input_length":752,"output_length":1152,"hash_ids":[4192166,4192167],"delay":10746.7} +{"session_id":"sess-79677a459f22","input_length":6567,"output_length":353,"hash_ids":[4192168,4192169,4192170,4192171,4192172,4192173,4192174,4192175,4192176,4192177,4192178,4192179,4192180],"delay":2229.4} +{"session_id":"sess-79677a459f22","input_length":454,"output_length":1020,"hash_ids":[4192181],"delay":520.7} +{"session_id":"sess-79677a459f22","input_length":1351,"output_length":195,"hash_ids":[4192182,4192183,4192184],"delay":345.2} +{"session_id":"sess-79677a459f22","input_length":4730,"output_length":553,"hash_ids":[4192185,4192186,4192187,4192188,4192189,4192190,4192191,4192192,4192193,4192194],"delay":206.2} +{"session_id":"sess-79677a459f22","input_length":2231,"output_length":710,"hash_ids":[4192195,4192196,4192197,4192198,4192199],"delay":511.6} +{"session_id":"sess-e812d4e96732","input_length":64153,"output_length":498,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,4196063,4196064,4196065,4196066,4196067,4196068,4196069,4196070,4196071,4196072,4196073,4196074,4196075,4196076,4196077,4196078,4196079,4196080,4196081,4196082,4196083,4196084,4196085],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e812d4e96732","input_length":2759,"output_length":368,"hash_ids":[4196086,4196087,4196088,4196089,4196090,4196091],"delay":1281.9} +{"session_id":"sess-e812d4e96732","input_length":3972,"output_length":1528,"hash_ids":[4196092,4196093,4196094,4196095,4196096,4196097,4196098,4196099],"delay":831.4} +{"session_id":"sess-e812d4e96732","input_length":3115,"output_length":108,"hash_ids":[4196100,4196101,4196102,4196103,4196104,4196105,4196106],"delay":909.8} +{"session_id":"sess-e812d4e96732","input_length":9538,"output_length":232,"hash_ids":[4196107,4196108,4196109,4196110,4196111,4196112,4196113,4196114,4196115,4196116,4196117,4196118,4196119,4196120,4196121,4196122,4196123,4196124,4196125],"delay":1041.8} +{"session_id":"sess-e812d4e96732","input_length":2504,"output_length":53,"hash_ids":[4196126,4196127,4196128,4196129,4196130],"delay":698.5} +{"session_id":"sess-e812d4e96732","input_length":3693,"output_length":276,"hash_ids":[4196131,4196132,4196133,4196134,4196135,4196136,4196137,4196138],"delay":857.7} +{"session_id":"sess-e812d4e96732","input_length":337,"output_length":362,"hash_ids":[4196139],"delay":630.7} +{"session_id":"sess-e812d4e96732","input_length":4740,"output_length":1072,"hash_ids":[4196140,4196141,4196142,4196143,4196144,4196145,4196146,4196147,4196148,4196149],"delay":10808.9} +{"session_id":"sess-e812d4e96732","input_length":170,"output_length":1395,"hash_ids":[4196150],"delay":12742.6} +{"session_id":"sess-e812d4e96732","input_length":7706,"output_length":170,"hash_ids":[4196151,4196152,4196153,4196154,4196155,4196156,4196157,4196158,4196159,4196160,4196161,4196162,4196163,4196164,4196165,4196166],"delay":4261.1} +{"session_id":"sess-e812d4e96732","input_length":590,"output_length":143,"hash_ids":[4196167,4196168],"delay":709.7} +{"session_id":"sess-e812d4e96732","input_length":2424,"output_length":578,"hash_ids":[4196169,4196170,4196171,4196172,4196173],"delay":552.0} +{"session_id":"sess-e812d4e96732","input_length":3575,"output_length":1009,"hash_ids":[4196174,4196175,4196176,4196177,4196178,4196179,4196180],"delay":123.3} +{"session_id":"sess-e812d4e96732","input_length":5356,"output_length":539,"hash_ids":[4196181,4196182,4196183,4196184,4196185,4196186,4196187,4196188,4196189,4196190,4196191],"delay":22114.4} +{"session_id":"sess-e812d4e96732","input_length":1854,"output_length":60,"hash_ids":[4196192,4196193,4196194,4196195],"delay":321.1} +{"session_id":"sess-e812d4e96732","input_length":3209,"output_length":626,"hash_ids":[4196196,4196197,4196198,4196199,4196200,4196201,4196202],"delay":244.5} diff --git a/benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl b/benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl new file mode 100644 index 000000000..e289cabf5 --- /dev/null +++ b/benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl @@ -0,0 +1,18595 @@ +{"session_id":"sess-c1ff91a76156","input_length":26251,"output_length":61,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451],"timestamp":0.0,"group_id":7} +{"session_id":"sess-c1ff91a76156","input_length":417,"output_length":402,"hash_ids":[1452],"delay":16714.3} +{"session_id":"sess-c1ff91a76156","input_length":415,"output_length":84,"hash_ids":[1453],"delay":3023.9} +{"session_id":"sess-c1ff91a76156","input_length":497,"output_length":174,"hash_ids":[1454],"delay":13870.8} +{"session_id":"sess-c1ff91a76156","input_length":1432,"output_length":294,"hash_ids":[1455,1456,1457],"delay":27505.1} +{"session_id":"sess-c1ff91a76156","input_length":434,"output_length":552,"hash_ids":[1458],"delay":9692.2} +{"session_id":"sess-c1ff91a76156","input_length":1910,"output_length":326,"hash_ids":[1459,1460,1461,1462],"delay":572.3} +{"session_id":"sess-c1ff91a76156","input_length":1234,"output_length":244,"hash_ids":[1463,1464,1465],"delay":16743.7} +{"session_id":"sess-c1ff91a76156","input_length":1873,"output_length":149,"hash_ids":[1466,1467,1468,1469],"delay":1101.0} +{"session_id":"sess-c1ff91a76156","input_length":412,"output_length":43,"hash_ids":[1470],"delay":593.3} +{"session_id":"sess-c1ff91a76156","input_length":2031,"output_length":146,"hash_ids":[1471,1472,1473,1474],"delay":24114.0} +{"session_id":"sess-c1ff91a76156","input_length":272,"output_length":87,"hash_ids":[1475],"delay":1880.1} +{"session_id":"sess-c1ff91a76156","input_length":642,"output_length":351,"hash_ids":[1476,1477],"delay":1042.4} +{"session_id":"sess-c1ff91a76156","input_length":685,"output_length":68,"hash_ids":[1478,1479],"delay":1321.7} +{"session_id":"sess-c1ff91a76156","input_length":1609,"output_length":364,"hash_ids":[1480,1481,1482,1483],"delay":608.3} +{"session_id":"sess-c1ff91a76156","input_length":179,"output_length":60,"hash_ids":[1484],"delay":605.3} +{"session_id":"sess-c1ff91a76156","input_length":675,"output_length":145,"hash_ids":[1485,1486],"delay":4856.0} +{"session_id":"sess-c1ff91a76156","input_length":378,"output_length":426,"hash_ids":[1487],"delay":9389.1} +{"session_id":"sess-c1ff91a76156","input_length":543,"output_length":213,"hash_ids":[1488,1489],"delay":1156.9} +{"session_id":"sess-c1ff91a76156","input_length":777,"output_length":235,"hash_ids":[1490,1491],"delay":11238.7} +{"session_id":"sess-c1ff91a76156","input_length":1420,"output_length":68,"hash_ids":[1492,1493,1494],"delay":2318.6} +{"session_id":"sess-c1ff91a76156","input_length":246,"output_length":163,"hash_ids":[1495],"delay":346.4} +{"session_id":"sess-c1ff91a76156","input_length":2309,"output_length":290,"hash_ids":[1496,1497,1498,1499,1500],"delay":13687.9} +{"session_id":"sess-c1ff91a76156","input_length":435,"output_length":115,"hash_ids":[1501],"delay":119.5} +{"session_id":"sess-c1ff91a76156","input_length":843,"output_length":44,"hash_ids":[1502,1503],"delay":1558.8} +{"session_id":"sess-c1ff91a76156","input_length":2673,"output_length":68,"hash_ids":[1504,1505,1506,1507,1508,1509],"delay":608.8} +{"session_id":"sess-c1ff91a76156","input_length":2310,"output_length":462,"hash_ids":[1510,1511,1512,1513,1514],"delay":320.1} +{"session_id":"sess-c1ff91a76156","input_length":510,"output_length":132,"hash_ids":[1515],"delay":461.5} +{"session_id":"sess-c1ff91a76156","input_length":1163,"output_length":258,"hash_ids":[1516,1517,1518],"delay":178.4} +{"session_id":"sess-c1ff91a76156","input_length":1527,"output_length":235,"hash_ids":[1519,1520,1521],"delay":566.4} +{"session_id":"sess-c1ff91a76156","input_length":672,"output_length":73,"hash_ids":[1522,1523],"delay":5075.7} +{"session_id":"sess-c1ff91a76156","input_length":984,"output_length":271,"hash_ids":[1524,1525],"delay":699.1} +{"session_id":"sess-c1ff91a76156","input_length":124,"output_length":93,"hash_ids":[1526],"delay":421.6} +{"session_id":"sess-10b671d33400","input_length":27413,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,204032,204033],"timestamp":0.0,"group_id":30} +{"session_id":"sess-10b671d33400","input_length":846,"output_length":163,"hash_ids":[204034,204035],"delay":1852.5} +{"session_id":"sess-10b671d33400","input_length":1084,"output_length":1084,"hash_ids":[204036,204037,204038],"delay":1356.7} +{"session_id":"sess-47e5b549076f","input_length":28064,"output_length":76,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,208032,208033,208034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-47e5b549076f","input_length":900,"output_length":53,"hash_ids":[208035,208036],"delay":7023.7} +{"session_id":"sess-47e5b549076f","input_length":302,"output_length":272,"hash_ids":[208037],"delay":409.2} +{"session_id":"sess-47e5b549076f","input_length":2172,"output_length":142,"hash_ids":[208038,208039,208040,208041,208042],"delay":12636.8} +{"session_id":"sess-47e5b549076f","input_length":756,"output_length":121,"hash_ids":[208043,208044],"delay":361.0} +{"session_id":"sess-47e5b549076f","input_length":1412,"output_length":200,"hash_ids":[208045,208046,208047],"delay":2455.8} +{"session_id":"sess-47e5b549076f","input_length":1462,"output_length":73,"hash_ids":[208048,208049,208050],"delay":13232.7} +{"session_id":"sess-47e5b549076f","input_length":169,"output_length":301,"hash_ids":[208051],"delay":22354.6} +{"session_id":"sess-47e5b549076f","input_length":1043,"output_length":182,"hash_ids":[208052,208053,208054],"delay":18027.9} +{"session_id":"sess-47e5b549076f","input_length":73,"output_length":234,"hash_ids":[208055],"delay":1104.1} +{"session_id":"sess-47e5b549076f","input_length":1379,"output_length":50,"hash_ids":[208056,208057,208058],"delay":717.6} +{"session_id":"sess-47e5b549076f","input_length":341,"output_length":644,"hash_ids":[208059],"delay":716.1} +{"session_id":"sess-47e5b549076f","input_length":1543,"output_length":296,"hash_ids":[208060,208061,208062,208063],"delay":40275.7} +{"session_id":"sess-47e5b549076f","input_length":489,"output_length":69,"hash_ids":[208064],"delay":13006.3} +{"session_id":"sess-47e5b549076f","input_length":2114,"output_length":386,"hash_ids":[208065,208066,208067,208068,208069],"delay":737.5} +{"session_id":"sess-47e5b549076f","input_length":586,"output_length":355,"hash_ids":[208070,208071],"delay":3623.4} +{"session_id":"sess-47e5b549076f","input_length":289,"output_length":264,"hash_ids":[208072],"delay":11346.2} +{"session_id":"sess-47e5b549076f","input_length":1346,"output_length":290,"hash_ids":[208073,208074,208075],"delay":1273.0} +{"session_id":"sess-47e5b549076f","input_length":1798,"output_length":755,"hash_ids":[208076,208077,208078,208079],"delay":139.3} +{"session_id":"sess-47e5b549076f","input_length":2253,"output_length":246,"hash_ids":[208080,208081,208082,208083,208084],"delay":1382.3} +{"session_id":"sess-47e5b549076f","input_length":852,"output_length":282,"hash_ids":[208085,208086],"delay":3787.8} +{"session_id":"sess-47e5b549076f","input_length":466,"output_length":239,"hash_ids":[208087],"delay":7452.8} +{"session_id":"sess-47e5b549076f","input_length":2353,"output_length":329,"hash_ids":[208088,208089,208090,208091,208092],"delay":594.8} +{"session_id":"sess-ee5bfbb8e261","input_length":26981,"output_length":297,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,212032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ee5bfbb8e261","input_length":95,"output_length":130,"hash_ids":[212033],"delay":4261.5} +{"session_id":"sess-ee5bfbb8e261","input_length":2134,"output_length":322,"hash_ids":[212034,212035,212036,212037,212038],"delay":19034.0} +{"session_id":"sess-ee5bfbb8e261","input_length":2268,"output_length":319,"hash_ids":[212039,212040,212041,212042,212043],"delay":993.2} +{"session_id":"sess-ee5bfbb8e261","input_length":132,"output_length":52,"hash_ids":[212044],"delay":992.7} +{"session_id":"sess-ee5bfbb8e261","input_length":742,"output_length":533,"hash_ids":[212045,212046],"delay":31077.5} +{"session_id":"sess-ee5bfbb8e261","input_length":1086,"output_length":117,"hash_ids":[212047,212048,212049],"delay":54925.6} +{"session_id":"sess-ee5bfbb8e261","input_length":2230,"output_length":57,"hash_ids":[212050,212051,212052,212053,212054],"delay":10099.9} +{"session_id":"sess-ee5bfbb8e261","input_length":867,"output_length":461,"hash_ids":[212055,212056],"delay":420.5} +{"session_id":"sess-ee5bfbb8e261","input_length":511,"output_length":168,"hash_ids":[212057],"delay":620.9} +{"session_id":"sess-ee5bfbb8e261","input_length":700,"output_length":522,"hash_ids":[212058,212059],"delay":1254.7} +{"session_id":"sess-ee5bfbb8e261","input_length":867,"output_length":1158,"hash_ids":[212060,212061],"delay":2262.4} +{"session_id":"sess-ee5bfbb8e261","input_length":2938,"output_length":269,"hash_ids":[212062,212063,212064,212065,212066,212067],"delay":937.4} +{"session_id":"sess-ee5bfbb8e261","input_length":198,"output_length":73,"hash_ids":[212068],"delay":1026.8} +{"session_id":"sess-ee5bfbb8e261","input_length":374,"output_length":138,"hash_ids":[212069],"delay":619.6} +{"session_id":"sess-ee5bfbb8e261","input_length":702,"output_length":71,"hash_ids":[212070,212071],"delay":901.8} +{"session_id":"sess-ee5bfbb8e261","input_length":1085,"output_length":190,"hash_ids":[212072,212073,212074],"delay":907.7} +{"session_id":"sess-ee5bfbb8e261","input_length":418,"output_length":347,"hash_ids":[212075],"delay":389.3} +{"session_id":"sess-ee5bfbb8e261","input_length":741,"output_length":151,"hash_ids":[212076,212077],"delay":1732.5} +{"session_id":"sess-ee5bfbb8e261","input_length":132,"output_length":683,"hash_ids":[212078],"delay":157.5} +{"session_id":"sess-ee5bfbb8e261","input_length":49,"output_length":295,"hash_ids":[212079],"delay":384.4} +{"session_id":"sess-ee5bfbb8e261","input_length":733,"output_length":185,"hash_ids":[212080,212081],"delay":980.6} +{"session_id":"sess-ee5bfbb8e261","input_length":493,"output_length":867,"hash_ids":[212082],"delay":859.5} +{"session_id":"sess-ee5bfbb8e261","input_length":815,"output_length":134,"hash_ids":[212083,212084],"delay":309.3} +{"session_id":"sess-ee5bfbb8e261","input_length":686,"output_length":133,"hash_ids":[212085,212086],"delay":665.5} +{"session_id":"sess-ee5bfbb8e261","input_length":574,"output_length":30,"hash_ids":[212087,212088],"delay":163.1} +{"session_id":"sess-ee5bfbb8e261","input_length":1271,"output_length":159,"hash_ids":[212089,212090,212091],"delay":143.9} +{"session_id":"sess-ee5bfbb8e261","input_length":2022,"output_length":282,"hash_ids":[212092,212093,212094,212095],"delay":2800.3} +{"session_id":"sess-ee5bfbb8e261","input_length":725,"output_length":78,"hash_ids":[212096,212097],"delay":620.7} +{"session_id":"sess-ee5bfbb8e261","input_length":1387,"output_length":100,"hash_ids":[212098,212099,212100],"delay":226.7} +{"session_id":"sess-ee5bfbb8e261","input_length":511,"output_length":236,"hash_ids":[212101],"delay":789.9} +{"session_id":"sess-ee5bfbb8e261","input_length":398,"output_length":53,"hash_ids":[212102],"delay":397.8} +{"session_id":"sess-ee5bfbb8e261","input_length":1429,"output_length":70,"hash_ids":[212103,212104,212105],"delay":1117.7} +{"session_id":"sess-ee5bfbb8e261","input_length":301,"output_length":247,"hash_ids":[212106],"delay":10380.4} +{"session_id":"sess-b60f18828ef5","input_length":29322,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,216032,216033,216034,216035,216036,216037],"timestamp":0.0,"group_id":45} +{"session_id":"sess-b60f18828ef5","input_length":524,"output_length":325,"hash_ids":[216038,216039],"delay":723.7} +{"session_id":"sess-b60f18828ef5","input_length":1705,"output_length":247,"hash_ids":[216040,216041,216042,216043],"delay":3098.1} +{"session_id":"sess-b60f18828ef5","input_length":270,"output_length":248,"hash_ids":[216044],"delay":6981.1} +{"session_id":"sess-b60f18828ef5","input_length":1022,"output_length":114,"hash_ids":[216045,216046],"delay":3525.5} +{"session_id":"sess-b60f18828ef5","input_length":345,"output_length":853,"hash_ids":[216047],"delay":687.5} +{"session_id":"sess-b60f18828ef5","input_length":723,"output_length":168,"hash_ids":[216048,216049],"delay":2228.7} +{"session_id":"sess-b60f18828ef5","input_length":218,"output_length":1270,"hash_ids":[216050],"delay":1623.2} +{"session_id":"sess-b60f18828ef5","input_length":1843,"output_length":63,"hash_ids":[216051,216052,216053,216054],"delay":765.5} +{"session_id":"sess-b60f18828ef5","input_length":830,"output_length":74,"hash_ids":[216055,216056],"delay":1071.5} +{"session_id":"sess-b60f18828ef5","input_length":1184,"output_length":149,"hash_ids":[216057,216058,216059],"delay":1189.6} +{"session_id":"sess-b60f18828ef5","input_length":700,"output_length":43,"hash_ids":[216060,216061],"delay":5156.7} +{"session_id":"sess-b60f18828ef5","input_length":74,"output_length":255,"hash_ids":[216062],"delay":1288.8} +{"session_id":"sess-b60f18828ef5","input_length":1409,"output_length":282,"hash_ids":[216063,216064,216065],"delay":299.0} +{"session_id":"sess-b60f18828ef5","input_length":2260,"output_length":617,"hash_ids":[216066,216067,216068,216069,216070],"delay":1140.3} +{"session_id":"sess-b60f18828ef5","input_length":2201,"output_length":132,"hash_ids":[216071,216072,216073,216074,216075],"delay":545.9} +{"session_id":"sess-b60f18828ef5","input_length":2591,"output_length":94,"hash_ids":[216076,216077,216078,216079,216080,216081],"delay":7825.5} +{"session_id":"sess-b60f18828ef5","input_length":392,"output_length":544,"hash_ids":[216082],"delay":99.9} +{"session_id":"sess-b60f18828ef5","input_length":2858,"output_length":88,"hash_ids":[216083,216084,216085,216086,216087,216088],"delay":279.5} +{"session_id":"sess-b60f18828ef5","input_length":976,"output_length":78,"hash_ids":[216089,216090],"delay":476.1} +{"session_id":"sess-b60f18828ef5","input_length":203,"output_length":145,"hash_ids":[216091],"delay":460.6} +{"session_id":"sess-b60f18828ef5","input_length":98,"output_length":87,"hash_ids":[216092],"delay":22397.9} +{"session_id":"sess-b60f18828ef5","input_length":312,"output_length":299,"hash_ids":[216093],"delay":672.6} +{"session_id":"sess-fcee09d14032","input_length":34131,"output_length":582,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,220032,220033,220034,220035,220036,220037,220038,220039,220040,220041,220042,220043,220044,220045,220046],"timestamp":0.0,"group_id":5} +{"session_id":"sess-fcee09d14032","input_length":2536,"output_length":318,"hash_ids":[220047,220048,220049,220050,220051],"delay":232.5} +{"session_id":"sess-fcee09d14032","input_length":731,"output_length":1265,"hash_ids":[220052,220053],"delay":13784.7} +{"session_id":"sess-fcee09d14032","input_length":2349,"output_length":297,"hash_ids":[220054,220055,220056,220057,220058],"delay":5451.5} +{"session_id":"sess-0b3a2262026c","input_length":29376,"output_length":674,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,224032,224033,224034,224035,224036,224037],"timestamp":0.0,"group_id":8} +{"session_id":"sess-0b3a2262026c","input_length":1478,"output_length":61,"hash_ids":[224038,224039,224040],"delay":1360.8} +{"session_id":"sess-0b3a2262026c","input_length":1001,"output_length":208,"hash_ids":[224041,224042],"delay":1038.0} +{"session_id":"sess-0b3a2262026c","input_length":465,"output_length":316,"hash_ids":[224043],"delay":450.8} +{"session_id":"sess-0b3a2262026c","input_length":2708,"output_length":503,"hash_ids":[224044,224045,224046,224047,224048,224049],"delay":251.2} +{"session_id":"sess-0b3a2262026c","input_length":1402,"output_length":637,"hash_ids":[224050,224051,224052],"delay":505.5} +{"session_id":"sess-0b3a2262026c","input_length":717,"output_length":166,"hash_ids":[224053,224054],"delay":863.2} +{"session_id":"sess-0b3a2262026c","input_length":524,"output_length":139,"hash_ids":[224055,224056],"delay":7933.2} +{"session_id":"sess-0b3a2262026c","input_length":608,"output_length":70,"hash_ids":[224057,224058],"delay":1142.9} +{"session_id":"sess-0b3a2262026c","input_length":1021,"output_length":596,"hash_ids":[224059,224060],"delay":198.9} +{"session_id":"sess-0b3a2262026c","input_length":316,"output_length":101,"hash_ids":[224061],"delay":55259.0} +{"session_id":"sess-0b3a2262026c","input_length":704,"output_length":206,"hash_ids":[224062,224063],"delay":47418.1} +{"session_id":"sess-0b3a2262026c","input_length":1432,"output_length":430,"hash_ids":[224064,224065,224066],"delay":13212.6} +{"session_id":"sess-0b3a2262026c","input_length":603,"output_length":205,"hash_ids":[224067,224068],"delay":1758.6} +{"session_id":"sess-0b3a2262026c","input_length":1521,"output_length":364,"hash_ids":[224069,224070,224071],"delay":788.0} +{"session_id":"sess-0b3a2262026c","input_length":1077,"output_length":422,"hash_ids":[224072,224073,224074],"delay":230.3} +{"session_id":"sess-0b3a2262026c","input_length":944,"output_length":80,"hash_ids":[224075,224076],"delay":510.2} +{"session_id":"sess-0b3a2262026c","input_length":136,"output_length":163,"hash_ids":[224077],"delay":1507.4} +{"session_id":"sess-0b3a2262026c","input_length":2580,"output_length":69,"hash_ids":[224078,224079,224080,224081,224082,224083],"delay":11662.5} +{"session_id":"sess-0b3a2262026c","input_length":640,"output_length":43,"hash_ids":[224084,224085],"delay":776.6} +{"session_id":"sess-0b3a2262026c","input_length":1029,"output_length":514,"hash_ids":[224086,224087,224088],"delay":381.1} +{"session_id":"sess-0b3a2262026c","input_length":209,"output_length":219,"hash_ids":[224089],"delay":286.0} +{"session_id":"sess-0b3a2262026c","input_length":788,"output_length":212,"hash_ids":[224090,224091],"delay":4250.6} +{"session_id":"sess-0b3a2262026c","input_length":1735,"output_length":486,"hash_ids":[224092,224093,224094,224095],"delay":10967.2} +{"session_id":"sess-0b3a2262026c","input_length":147,"output_length":91,"hash_ids":[224096],"delay":11476.4} +{"session_id":"sess-0b3a2262026c","input_length":833,"output_length":162,"hash_ids":[224097,224098],"delay":5682.4} +{"session_id":"sess-0b3a2262026c","input_length":1353,"output_length":70,"hash_ids":[224099,224100,224101],"delay":462.6} +{"session_id":"sess-0b3a2262026c","input_length":1226,"output_length":311,"hash_ids":[224102,224103,224104],"delay":915.1} +{"session_id":"sess-0b3a2262026c","input_length":1390,"output_length":282,"hash_ids":[224105,224106,224107],"delay":503.9} +{"session_id":"sess-a285248fc1ca","input_length":28494,"output_length":288,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,228032,228033,228034,228035],"timestamp":0.0,"group_id":13} +{"session_id":"sess-3807d84757d3","input_length":28603,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,232032,232033,232034,232035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-3807d84757d3","input_length":360,"output_length":540,"hash_ids":[232036],"delay":1403.8} +{"session_id":"sess-3807d84757d3","input_length":1581,"output_length":245,"hash_ids":[232037,232038,232039,232040],"delay":367.9} +{"session_id":"sess-3807d84757d3","input_length":239,"output_length":152,"hash_ids":[232041],"delay":1508.4} +{"session_id":"sess-3807d84757d3","input_length":886,"output_length":398,"hash_ids":[232042,232043],"delay":2233.6} +{"session_id":"sess-3807d84757d3","input_length":932,"output_length":137,"hash_ids":[232044,232045],"delay":1200.9} +{"session_id":"sess-3807d84757d3","input_length":1948,"output_length":395,"hash_ids":[232046,232047,232048,232049],"delay":1053.5} +{"session_id":"sess-3807d84757d3","input_length":596,"output_length":78,"hash_ids":[232050,232051],"delay":369.4} +{"session_id":"sess-3807d84757d3","input_length":704,"output_length":271,"hash_ids":[232052,232053],"delay":1025.8} +{"session_id":"sess-3807d84757d3","input_length":117,"output_length":30,"hash_ids":[232054],"delay":24386.5} +{"session_id":"sess-3807d84757d3","input_length":1215,"output_length":309,"hash_ids":[232055,232056,232057],"delay":954.0} +{"session_id":"sess-3807d84757d3","input_length":563,"output_length":368,"hash_ids":[232058,232059],"delay":929.2} +{"session_id":"sess-3807d84757d3","input_length":1097,"output_length":92,"hash_ids":[232060,232061,232062],"delay":2006.4} +{"session_id":"sess-3807d84757d3","input_length":1540,"output_length":166,"hash_ids":[232063,232064,232065,232066],"delay":4833.3} +{"session_id":"sess-3807d84757d3","input_length":1151,"output_length":222,"hash_ids":[232067,232068,232069],"delay":48791.6} +{"session_id":"sess-3807d84757d3","input_length":624,"output_length":111,"hash_ids":[232070,232071],"delay":718.8} +{"session_id":"sess-3807d84757d3","input_length":915,"output_length":73,"hash_ids":[232072,232073],"delay":333.7} +{"session_id":"sess-3807d84757d3","input_length":1245,"output_length":117,"hash_ids":[232074,232075,232076],"delay":212.6} +{"session_id":"sess-3807d84757d3","input_length":1532,"output_length":220,"hash_ids":[232077,232078,232079],"delay":8924.4} +{"session_id":"sess-3807d84757d3","input_length":1915,"output_length":116,"hash_ids":[232080,232081,232082,232083],"delay":227.9} +{"session_id":"sess-3807d84757d3","input_length":510,"output_length":188,"hash_ids":[232084],"delay":1258.8} +{"session_id":"sess-3807d84757d3","input_length":1841,"output_length":319,"hash_ids":[232085,232086,232087,232088],"delay":966.3} +{"session_id":"sess-3807d84757d3","input_length":443,"output_length":426,"hash_ids":[232089],"delay":1063.3} +{"session_id":"sess-3807d84757d3","input_length":776,"output_length":214,"hash_ids":[232090,232091],"delay":2662.3} +{"session_id":"sess-3807d84757d3","input_length":364,"output_length":200,"hash_ids":[232092],"delay":417.4} +{"session_id":"sess-3807d84757d3","input_length":753,"output_length":183,"hash_ids":[232093,232094],"delay":451.6} +{"session_id":"sess-3807d84757d3","input_length":758,"output_length":694,"hash_ids":[232095,232096],"delay":96.0} +{"session_id":"sess-3807d84757d3","input_length":1027,"output_length":200,"hash_ids":[232097,232098,232099],"delay":1435.2} +{"session_id":"sess-3807d84757d3","input_length":571,"output_length":372,"hash_ids":[232100,232101],"delay":71.3} +{"session_id":"sess-3807d84757d3","input_length":2804,"output_length":475,"hash_ids":[232102,232103,232104,232105,232106,232107],"delay":329.8} +{"session_id":"sess-a936f6f3e0a2","input_length":26617,"output_length":144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a936f6f3e0a2","input_length":414,"output_length":1013,"hash_ids":[232108],"delay":358.1} +{"session_id":"sess-a936f6f3e0a2","input_length":143,"output_length":81,"hash_ids":[232109],"delay":895.9} +{"session_id":"sess-a936f6f3e0a2","input_length":1150,"output_length":291,"hash_ids":[232110,232111,232112],"delay":7812.4} +{"session_id":"sess-c0e91f999cb4","input_length":28117,"output_length":794,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,240032,240033,240034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c0e91f999cb4","input_length":286,"output_length":761,"hash_ids":[240035],"delay":960.2} +{"session_id":"sess-c0e91f999cb4","input_length":1513,"output_length":111,"hash_ids":[240036,240037,240038],"delay":396.6} +{"session_id":"sess-c0e91f999cb4","input_length":1337,"output_length":128,"hash_ids":[240039,240040,240041],"delay":622.3} +{"session_id":"sess-c0e91f999cb4","input_length":245,"output_length":30,"hash_ids":[240042],"delay":1143.4} +{"session_id":"sess-c0e91f999cb4","input_length":1499,"output_length":88,"hash_ids":[240043,240044,240045],"delay":3127.4} +{"session_id":"sess-c0e91f999cb4","input_length":1742,"output_length":121,"hash_ids":[240046,240047,240048,240049],"delay":1868.2} +{"session_id":"sess-c0e91f999cb4","input_length":1377,"output_length":204,"hash_ids":[240050,240051,240052],"delay":15023.7} +{"session_id":"sess-c0e91f999cb4","input_length":359,"output_length":123,"hash_ids":[240053],"delay":1587.4} +{"session_id":"sess-c0e91f999cb4","input_length":159,"output_length":49,"hash_ids":[240054],"delay":1003.2} +{"session_id":"sess-c0e91f999cb4","input_length":1343,"output_length":113,"hash_ids":[240055,240056,240057],"delay":3225.1} +{"session_id":"sess-c0e91f999cb4","input_length":2718,"output_length":409,"hash_ids":[240058,240059,240060,240061,240062,240063],"delay":884.5} +{"session_id":"sess-c0e91f999cb4","input_length":425,"output_length":359,"hash_ids":[240064],"delay":816.9} +{"session_id":"sess-c0e91f999cb4","input_length":677,"output_length":114,"hash_ids":[240065,240066],"delay":2892.1} +{"session_id":"sess-c0e91f999cb4","input_length":794,"output_length":30,"hash_ids":[240067,240068],"delay":497.7} +{"session_id":"sess-c0e91f999cb4","input_length":1275,"output_length":195,"hash_ids":[240069,240070,240071],"delay":1504.6} +{"session_id":"sess-c0e91f999cb4","input_length":635,"output_length":30,"hash_ids":[240072,240073],"delay":1483.7} +{"session_id":"sess-c0e91f999cb4","input_length":507,"output_length":83,"hash_ids":[240074],"delay":1473.3} +{"session_id":"sess-c0e91f999cb4","input_length":2121,"output_length":30,"hash_ids":[240075,240076,240077,240078,240079],"delay":18409.0} +{"session_id":"sess-c0e91f999cb4","input_length":696,"output_length":412,"hash_ids":[240080,240081],"delay":1853.3} +{"session_id":"sess-c0e91f999cb4","input_length":806,"output_length":52,"hash_ids":[240082,240083],"delay":16011.0} +{"session_id":"sess-c0e91f999cb4","input_length":967,"output_length":245,"hash_ids":[240084,240085],"delay":345.3} +{"session_id":"sess-c0e91f999cb4","input_length":873,"output_length":36,"hash_ids":[240086,240087],"delay":782.5} +{"session_id":"sess-c0e91f999cb4","input_length":1501,"output_length":304,"hash_ids":[240088,240089,240090],"delay":1205.9} +{"session_id":"sess-3f438d5e76d5","input_length":27055,"output_length":456,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,244032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3f438d5e76d5","input_length":268,"output_length":383,"hash_ids":[244033],"delay":28880.1} +{"session_id":"sess-3f438d5e76d5","input_length":592,"output_length":159,"hash_ids":[244034,244035],"delay":11472.7} +{"session_id":"sess-3f438d5e76d5","input_length":2366,"output_length":280,"hash_ids":[244036,244037,244038,244039,244040],"delay":2455.2} +{"session_id":"sess-3f438d5e76d5","input_length":2611,"output_length":421,"hash_ids":[244041,244042,244043,244044,244045,244046],"delay":51706.7} +{"session_id":"sess-3f438d5e76d5","input_length":1431,"output_length":234,"hash_ids":[244047,244048,244049],"delay":14232.9} +{"session_id":"sess-3f438d5e76d5","input_length":54,"output_length":172,"hash_ids":[244050],"delay":45981.7} +{"session_id":"sess-3f438d5e76d5","input_length":330,"output_length":87,"hash_ids":[244051],"delay":1081.7} +{"session_id":"sess-3f438d5e76d5","input_length":1579,"output_length":1069,"hash_ids":[244052,244053,244054,244055],"delay":8134.9} +{"session_id":"sess-3f438d5e76d5","input_length":238,"output_length":149,"hash_ids":[244056],"delay":823.3} +{"session_id":"sess-3f438d5e76d5","input_length":1997,"output_length":359,"hash_ids":[244057,244058,244059,244060],"delay":621.5} +{"session_id":"sess-3f438d5e76d5","input_length":202,"output_length":685,"hash_ids":[244061],"delay":1331.9} +{"session_id":"sess-3f438d5e76d5","input_length":1018,"output_length":165,"hash_ids":[244062,244063],"delay":1941.4} +{"session_id":"sess-3f438d5e76d5","input_length":394,"output_length":458,"hash_ids":[244064],"delay":2580.8} +{"session_id":"sess-3f438d5e76d5","input_length":387,"output_length":45,"hash_ids":[244065],"delay":8722.0} +{"session_id":"sess-3f438d5e76d5","input_length":49,"output_length":548,"hash_ids":[244066],"delay":745.9} +{"session_id":"sess-3f438d5e76d5","input_length":855,"output_length":783,"hash_ids":[244067,244068],"delay":1066.2} +{"session_id":"sess-3f438d5e76d5","input_length":1657,"output_length":140,"hash_ids":[244069,244070,244071,244072],"delay":7750.9} +{"session_id":"sess-3f438d5e76d5","input_length":1420,"output_length":104,"hash_ids":[244073,244074,244075],"delay":648.6} +{"session_id":"sess-3f438d5e76d5","input_length":1031,"output_length":58,"hash_ids":[244076,244077,244078],"delay":983.1} +{"session_id":"sess-3f438d5e76d5","input_length":976,"output_length":168,"hash_ids":[244079,244080],"delay":155.7} +{"session_id":"sess-3f438d5e76d5","input_length":667,"output_length":299,"hash_ids":[244081,244082],"delay":3442.9} +{"session_id":"sess-3f438d5e76d5","input_length":2172,"output_length":440,"hash_ids":[244083,244084,244085,244086,244087],"delay":670.8} +{"session_id":"sess-3f438d5e76d5","input_length":531,"output_length":114,"hash_ids":[244088,244089],"delay":726.8} +{"session_id":"sess-3f438d5e76d5","input_length":1371,"output_length":379,"hash_ids":[244090,244091,244092],"delay":2550.9} +{"session_id":"sess-3f438d5e76d5","input_length":1382,"output_length":313,"hash_ids":[244093,244094,244095],"delay":317.9} +{"session_id":"sess-3f438d5e76d5","input_length":1060,"output_length":448,"hash_ids":[244096,244097,244098],"delay":448.4} +{"session_id":"sess-3f438d5e76d5","input_length":480,"output_length":150,"hash_ids":[244099],"delay":111.0} +{"session_id":"sess-3f438d5e76d5","input_length":781,"output_length":136,"hash_ids":[244100,244101],"delay":399.6} +{"session_id":"sess-3f438d5e76d5","input_length":114,"output_length":329,"hash_ids":[244102],"delay":1039.1} +{"session_id":"sess-3f438d5e76d5","input_length":375,"output_length":43,"hash_ids":[244103],"delay":859.3} +{"session_id":"sess-1763bebfb539","input_length":26307,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451],"timestamp":0.0,"group_id":32} +{"session_id":"sess-1763bebfb539","input_length":476,"output_length":143,"hash_ids":[244104],"delay":1683.8} +{"session_id":"sess-1763bebfb539","input_length":2159,"output_length":175,"hash_ids":[244105,244106,244107,244108,244109],"delay":8287.7} +{"session_id":"sess-1763bebfb539","input_length":310,"output_length":112,"hash_ids":[244110],"delay":7291.9} +{"session_id":"sess-1763bebfb539","input_length":199,"output_length":164,"hash_ids":[244111],"delay":32353.4} +{"session_id":"sess-db090e5d82e1","input_length":28087,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,252032,252033,252034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-db090e5d82e1","input_length":92,"output_length":82,"hash_ids":[252035],"delay":1073.8} +{"session_id":"sess-db090e5d82e1","input_length":830,"output_length":281,"hash_ids":[252036,252037],"delay":381.5} +{"session_id":"sess-db090e5d82e1","input_length":336,"output_length":554,"hash_ids":[252038],"delay":1496.2} +{"session_id":"sess-db090e5d82e1","input_length":1654,"output_length":164,"hash_ids":[252039,252040,252041,252042],"delay":360.1} +{"session_id":"sess-db090e5d82e1","input_length":948,"output_length":108,"hash_ids":[252043,252044],"delay":11869.4} +{"session_id":"sess-db090e5d82e1","input_length":459,"output_length":208,"hash_ids":[252045],"delay":252.7} +{"session_id":"sess-db090e5d82e1","input_length":92,"output_length":280,"hash_ids":[252046],"delay":17651.7} +{"session_id":"sess-db090e5d82e1","input_length":1147,"output_length":258,"hash_ids":[252047,252048,252049],"delay":6504.8} +{"session_id":"sess-db090e5d82e1","input_length":998,"output_length":53,"hash_ids":[252050,252051],"delay":36298.7} +{"session_id":"sess-db090e5d82e1","input_length":219,"output_length":179,"hash_ids":[252052],"delay":25758.1} +{"session_id":"sess-db090e5d82e1","input_length":593,"output_length":324,"hash_ids":[252053,252054],"delay":850.6} +{"session_id":"sess-db090e5d82e1","input_length":1466,"output_length":393,"hash_ids":[252055,252056,252057],"delay":797.6} +{"session_id":"sess-db090e5d82e1","input_length":489,"output_length":200,"hash_ids":[252058],"delay":11652.8} +{"session_id":"sess-db090e5d82e1","input_length":196,"output_length":299,"hash_ids":[252059],"delay":515.1} +{"session_id":"sess-db090e5d82e1","input_length":1431,"output_length":155,"hash_ids":[252060,252061,252062],"delay":32548.5} +{"session_id":"sess-db090e5d82e1","input_length":518,"output_length":123,"hash_ids":[252063,252064],"delay":374.9} +{"session_id":"sess-db090e5d82e1","input_length":576,"output_length":173,"hash_ids":[252065,252066],"delay":754.3} +{"session_id":"sess-db090e5d82e1","input_length":1498,"output_length":41,"hash_ids":[252067,252068,252069],"delay":3436.4} +{"session_id":"sess-db090e5d82e1","input_length":1142,"output_length":247,"hash_ids":[252070,252071,252072],"delay":318.2} +{"session_id":"sess-db090e5d82e1","input_length":2789,"output_length":118,"hash_ids":[252073,252074,252075,252076,252077,252078],"delay":531.7} +{"session_id":"sess-db090e5d82e1","input_length":355,"output_length":118,"hash_ids":[252079],"delay":1178.8} +{"session_id":"sess-db090e5d82e1","input_length":2853,"output_length":110,"hash_ids":[252080,252081,252082,252083,252084,252085],"delay":1129.1} +{"session_id":"sess-db090e5d82e1","input_length":382,"output_length":213,"hash_ids":[252086],"delay":9549.4} +{"session_id":"sess-db090e5d82e1","input_length":797,"output_length":125,"hash_ids":[252087,252088],"delay":571.0} +{"session_id":"sess-db090e5d82e1","input_length":432,"output_length":140,"hash_ids":[252089],"delay":195.4} +{"session_id":"sess-db090e5d82e1","input_length":1951,"output_length":118,"hash_ids":[252090,252091,252092,252093],"delay":874.8} +{"session_id":"sess-db090e5d82e1","input_length":452,"output_length":110,"hash_ids":[252094],"delay":17635.7} +{"session_id":"sess-db090e5d82e1","input_length":349,"output_length":69,"hash_ids":[252095],"delay":1271.8} +{"session_id":"sess-db090e5d82e1","input_length":341,"output_length":66,"hash_ids":[252096],"delay":307.0} +{"session_id":"sess-db090e5d82e1","input_length":1064,"output_length":929,"hash_ids":[252097,252098,252099],"delay":238.9} +{"session_id":"sess-db090e5d82e1","input_length":1224,"output_length":746,"hash_ids":[252100,252101,252102],"delay":607.9} +{"session_id":"sess-db090e5d82e1","input_length":366,"output_length":596,"hash_ids":[252103],"delay":465.2} +{"session_id":"sess-9d0d4a96a03b","input_length":26282,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251],"timestamp":0.0,"group_id":11} +{"session_id":"sess-9d0d4a96a03b","input_length":632,"output_length":297,"hash_ids":[252104,252105],"delay":1084.2} +{"session_id":"sess-9d0d4a96a03b","input_length":142,"output_length":199,"hash_ids":[252106],"delay":864.8} +{"session_id":"sess-9d0d4a96a03b","input_length":134,"output_length":198,"hash_ids":[252107],"delay":2500.5} +{"session_id":"sess-9d0d4a96a03b","input_length":2541,"output_length":158,"hash_ids":[252108,252109,252110,252111,252112],"delay":817.1} +{"session_id":"sess-9d0d4a96a03b","input_length":1899,"output_length":366,"hash_ids":[252113,252114,252115,252116],"delay":51225.3} +{"session_id":"sess-9d0d4a96a03b","input_length":787,"output_length":210,"hash_ids":[252117,252118],"delay":3831.5} +{"session_id":"sess-9d0d4a96a03b","input_length":1082,"output_length":158,"hash_ids":[252119,252120,252121],"delay":1480.2} +{"session_id":"sess-9d0d4a96a03b","input_length":1001,"output_length":51,"hash_ids":[252122,252123],"delay":8089.2} +{"session_id":"sess-81bdac1ce8f6","input_length":31515,"output_length":306,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,260032,260033,260034,260035,260036,260037,260038,260039,260040,260041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-81bdac1ce8f6","input_length":1473,"output_length":360,"hash_ids":[260042,260043,260044],"delay":966.0} +{"session_id":"sess-f7d00f98d143","input_length":32979,"output_length":120,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,264032,264033,264034,264035,264036,264037,264038,264039,264040,264041,264042,264043,264044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f7d00f98d143","input_length":155,"output_length":1019,"hash_ids":[264045],"delay":5321.2} +{"session_id":"sess-9f3a318bd5cc","input_length":26397,"output_length":326,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251],"timestamp":0.0,"group_id":11} +{"session_id":"sess-9f3a318bd5cc","input_length":111,"output_length":118,"hash_ids":[264046],"delay":646.6} +{"session_id":"sess-9f3a318bd5cc","input_length":333,"output_length":524,"hash_ids":[264047],"delay":1747.4} +{"session_id":"sess-0f811ab75821","input_length":30556,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,272032,272033,272034,272035,272036,272037,272038,272039],"timestamp":0.0,"group_id":40} +{"session_id":"sess-0f811ab75821","input_length":531,"output_length":150,"hash_ids":[272040,272041],"delay":816.5} +{"session_id":"sess-0f811ab75821","input_length":141,"output_length":190,"hash_ids":[272042],"delay":41713.8} +{"session_id":"sess-0f811ab75821","input_length":2376,"output_length":42,"hash_ids":[272043,272044,272045,272046,272047],"delay":687.8} +{"session_id":"sess-0f811ab75821","input_length":252,"output_length":194,"hash_ids":[272048],"delay":520.1} +{"session_id":"sess-0f811ab75821","input_length":272,"output_length":66,"hash_ids":[272049],"delay":6643.1} +{"session_id":"sess-0f811ab75821","input_length":462,"output_length":91,"hash_ids":[272050],"delay":2491.7} +{"session_id":"sess-0f811ab75821","input_length":164,"output_length":242,"hash_ids":[272051],"delay":1066.3} +{"session_id":"sess-0f811ab75821","input_length":741,"output_length":231,"hash_ids":[272052,272053],"delay":4384.1} +{"session_id":"sess-0f811ab75821","input_length":471,"output_length":247,"hash_ids":[272054],"delay":796.0} +{"session_id":"sess-0f811ab75821","input_length":780,"output_length":219,"hash_ids":[272055,272056],"delay":688.5} +{"session_id":"sess-1936f7550d49","input_length":28593,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,276032,276033,276034,276035],"timestamp":0.0,"group_id":14} +{"session_id":"sess-1936f7550d49","input_length":455,"output_length":58,"hash_ids":[276036],"delay":926.4} +{"session_id":"sess-1936f7550d49","input_length":2626,"output_length":284,"hash_ids":[276037,276038,276039,276040,276041,276042],"delay":20137.8} +{"session_id":"sess-1936f7550d49","input_length":626,"output_length":295,"hash_ids":[276043,276044],"delay":9125.6} +{"session_id":"sess-1936f7550d49","input_length":900,"output_length":583,"hash_ids":[276045,276046],"delay":345.6} +{"session_id":"sess-1936f7550d49","input_length":979,"output_length":230,"hash_ids":[276047,276048],"delay":377.8} +{"session_id":"sess-1936f7550d49","input_length":1602,"output_length":98,"hash_ids":[276049,276050,276051,276052],"delay":596.5} +{"session_id":"sess-1936f7550d49","input_length":223,"output_length":30,"hash_ids":[276053],"delay":924.6} +{"session_id":"sess-1936f7550d49","input_length":601,"output_length":139,"hash_ids":[276054,276055],"delay":659.3} +{"session_id":"sess-1936f7550d49","input_length":2710,"output_length":260,"hash_ids":[276056,276057,276058,276059,276060,276061],"delay":1739.9} +{"session_id":"sess-1936f7550d49","input_length":245,"output_length":362,"hash_ids":[276062],"delay":1528.0} +{"session_id":"sess-1936f7550d49","input_length":2149,"output_length":567,"hash_ids":[276063,276064,276065,276066,276067],"delay":960.2} +{"session_id":"sess-1936f7550d49","input_length":601,"output_length":116,"hash_ids":[276068,276069],"delay":1115.3} +{"session_id":"sess-1936f7550d49","input_length":1453,"output_length":171,"hash_ids":[276070,276071,276072],"delay":14530.2} +{"session_id":"sess-1936f7550d49","input_length":812,"output_length":56,"hash_ids":[276073,276074],"delay":748.6} +{"session_id":"sess-1936f7550d49","input_length":269,"output_length":209,"hash_ids":[276075],"delay":604.2} +{"session_id":"sess-1936f7550d49","input_length":1464,"output_length":230,"hash_ids":[276076,276077,276078],"delay":352.3} +{"session_id":"sess-1936f7550d49","input_length":616,"output_length":304,"hash_ids":[276079,276080],"delay":8902.5} +{"session_id":"sess-1936f7550d49","input_length":2264,"output_length":405,"hash_ids":[276081,276082,276083,276084,276085],"delay":10802.4} +{"session_id":"sess-1936f7550d49","input_length":1283,"output_length":105,"hash_ids":[276086,276087,276088],"delay":327.2} +{"session_id":"sess-1936f7550d49","input_length":343,"output_length":241,"hash_ids":[276089],"delay":471.1} +{"session_id":"sess-1936f7550d49","input_length":1210,"output_length":158,"hash_ids":[276090,276091,276092],"delay":868.9} +{"session_id":"sess-1936f7550d49","input_length":2161,"output_length":208,"hash_ids":[276093,276094,276095,276096,276097],"delay":9396.3} +{"session_id":"sess-1936f7550d49","input_length":1203,"output_length":124,"hash_ids":[276098,276099,276100],"delay":526.3} +{"session_id":"sess-1936f7550d49","input_length":675,"output_length":97,"hash_ids":[276101,276102],"delay":1110.8} +{"session_id":"sess-1936f7550d49","input_length":1366,"output_length":183,"hash_ids":[276103,276104,276105],"delay":550.2} +{"session_id":"sess-1936f7550d49","input_length":490,"output_length":464,"hash_ids":[276106],"delay":2886.7} +{"session_id":"sess-ced75b66419a","input_length":29698,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,280032,280033,280034,280035,280036,280037,280038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ced75b66419a","input_length":381,"output_length":336,"hash_ids":[280039],"delay":9611.7} +{"session_id":"sess-ced75b66419a","input_length":175,"output_length":114,"hash_ids":[280040],"delay":28389.7} +{"session_id":"sess-ced75b66419a","input_length":289,"output_length":209,"hash_ids":[280041],"delay":470.0} +{"session_id":"sess-ced75b66419a","input_length":678,"output_length":247,"hash_ids":[280042,280043],"delay":27834.6} +{"session_id":"sess-ced75b66419a","input_length":1007,"output_length":131,"hash_ids":[280044,280045],"delay":487.0} +{"session_id":"sess-ced75b66419a","input_length":386,"output_length":206,"hash_ids":[280046],"delay":1669.5} +{"session_id":"sess-ced75b66419a","input_length":1004,"output_length":96,"hash_ids":[280047,280048],"delay":235.1} +{"session_id":"sess-ced75b66419a","input_length":1824,"output_length":153,"hash_ids":[280049,280050,280051,280052],"delay":894.1} +{"session_id":"sess-ced75b66419a","input_length":638,"output_length":483,"hash_ids":[280053,280054],"delay":24853.3} +{"session_id":"sess-ced75b66419a","input_length":1004,"output_length":183,"hash_ids":[280055,280056],"delay":4109.8} +{"session_id":"sess-ced75b66419a","input_length":455,"output_length":97,"hash_ids":[280057],"delay":14277.8} +{"session_id":"sess-ced75b66419a","input_length":1777,"output_length":256,"hash_ids":[280058,280059,280060,280061],"delay":14881.9} +{"session_id":"sess-ced75b66419a","input_length":389,"output_length":193,"hash_ids":[280062],"delay":369.3} +{"session_id":"sess-ced75b66419a","input_length":438,"output_length":467,"hash_ids":[280063],"delay":8993.3} +{"session_id":"sess-9fbdf6fcfa63","input_length":26151,"output_length":507,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9fbdf6fcfa63","input_length":2963,"output_length":30,"hash_ids":[280064,280065,280066,280067,280068,280069],"delay":1603.8} +{"session_id":"sess-9fbdf6fcfa63","input_length":1604,"output_length":345,"hash_ids":[280070,280071,280072,280073],"delay":1285.4} +{"session_id":"sess-9fbdf6fcfa63","input_length":1508,"output_length":353,"hash_ids":[280074,280075,280076],"delay":9941.9} +{"session_id":"sess-9fbdf6fcfa63","input_length":272,"output_length":122,"hash_ids":[280077],"delay":1188.7} +{"session_id":"sess-9fbdf6fcfa63","input_length":1309,"output_length":277,"hash_ids":[280078,280079,280080],"delay":2881.7} +{"session_id":"sess-9fbdf6fcfa63","input_length":1554,"output_length":590,"hash_ids":[280081,280082,280083,280084],"delay":3082.9} +{"session_id":"sess-9fbdf6fcfa63","input_length":463,"output_length":151,"hash_ids":[280085],"delay":2537.8} +{"session_id":"sess-9fbdf6fcfa63","input_length":637,"output_length":128,"hash_ids":[280086,280087],"delay":468.6} +{"session_id":"sess-9fbdf6fcfa63","input_length":1289,"output_length":257,"hash_ids":[280088,280089,280090],"delay":957.0} +{"session_id":"sess-9fbdf6fcfa63","input_length":1433,"output_length":288,"hash_ids":[280091,280092,280093],"delay":958.0} +{"session_id":"sess-9fbdf6fcfa63","input_length":1001,"output_length":318,"hash_ids":[280094,280095],"delay":705.5} +{"session_id":"sess-9fbdf6fcfa63","input_length":2719,"output_length":49,"hash_ids":[280096,280097,280098,280099,280100,280101],"delay":13915.1} +{"session_id":"sess-9fbdf6fcfa63","input_length":1078,"output_length":424,"hash_ids":[280102,280103,280104],"delay":762.3} +{"session_id":"sess-9fbdf6fcfa63","input_length":816,"output_length":168,"hash_ids":[280105,280106],"delay":44220.3} +{"session_id":"sess-9fbdf6fcfa63","input_length":492,"output_length":392,"hash_ids":[280107],"delay":333.2} +{"session_id":"sess-9fbdf6fcfa63","input_length":1208,"output_length":30,"hash_ids":[280108,280109,280110],"delay":1186.4} +{"session_id":"sess-9fbdf6fcfa63","input_length":361,"output_length":308,"hash_ids":[280111],"delay":886.4} +{"session_id":"sess-9fbdf6fcfa63","input_length":668,"output_length":406,"hash_ids":[280112,280113],"delay":2234.1} +{"session_id":"sess-9fbdf6fcfa63","input_length":691,"output_length":315,"hash_ids":[280114,280115],"delay":537.1} +{"session_id":"sess-9fbdf6fcfa63","input_length":750,"output_length":50,"hash_ids":[280116,280117],"delay":649.6} +{"session_id":"sess-9fbdf6fcfa63","input_length":194,"output_length":549,"hash_ids":[280118],"delay":1051.8} +{"session_id":"sess-9fbdf6fcfa63","input_length":184,"output_length":89,"hash_ids":[280119],"delay":16488.9} +{"session_id":"sess-9fbdf6fcfa63","input_length":516,"output_length":133,"hash_ids":[280120,280121],"delay":407.3} +{"session_id":"sess-9fbdf6fcfa63","input_length":412,"output_length":259,"hash_ids":[280122],"delay":4021.2} +{"session_id":"sess-9fbdf6fcfa63","input_length":398,"output_length":43,"hash_ids":[280123],"delay":81.5} +{"session_id":"sess-9fbdf6fcfa63","input_length":466,"output_length":348,"hash_ids":[280124],"delay":28101.3} +{"session_id":"sess-9fbdf6fcfa63","input_length":637,"output_length":555,"hash_ids":[280125,280126],"delay":5625.9} +{"session_id":"sess-9fbdf6fcfa63","input_length":212,"output_length":79,"hash_ids":[280127],"delay":319.6} +{"session_id":"sess-9fbdf6fcfa63","input_length":366,"output_length":490,"hash_ids":[280128],"delay":405.2} +{"session_id":"sess-9fbdf6fcfa63","input_length":370,"output_length":418,"hash_ids":[280129],"delay":11683.5} +{"session_id":"sess-9fbdf6fcfa63","input_length":2153,"output_length":123,"hash_ids":[280130,280131,280132,280133,280134],"delay":342.5} +{"session_id":"sess-9fbdf6fcfa63","input_length":653,"output_length":490,"hash_ids":[280135,280136],"delay":632.8} +{"session_id":"sess-9fbdf6fcfa63","input_length":277,"output_length":174,"hash_ids":[280137],"delay":87.8} +{"session_id":"sess-158ae1ce505c","input_length":27501,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,288032,288033],"timestamp":0.0,"group_id":27} +{"session_id":"sess-158ae1ce505c","input_length":127,"output_length":397,"hash_ids":[288034],"delay":17205.3} +{"session_id":"sess-158ae1ce505c","input_length":1233,"output_length":182,"hash_ids":[288035,288036,288037],"delay":5175.2} +{"session_id":"sess-158ae1ce505c","input_length":987,"output_length":106,"hash_ids":[288038,288039],"delay":1255.6} +{"session_id":"sess-158ae1ce505c","input_length":875,"output_length":122,"hash_ids":[288040,288041],"delay":606.9} +{"session_id":"sess-158ae1ce505c","input_length":2744,"output_length":598,"hash_ids":[288042,288043,288044,288045,288046,288047],"delay":1728.5} +{"session_id":"sess-158ae1ce505c","input_length":2471,"output_length":116,"hash_ids":[288048,288049,288050,288051,288052],"delay":3573.8} +{"session_id":"sess-158ae1ce505c","input_length":1121,"output_length":201,"hash_ids":[288053,288054,288055],"delay":1160.1} +{"session_id":"sess-158ae1ce505c","input_length":796,"output_length":164,"hash_ids":[288056,288057],"delay":2500.9} +{"session_id":"sess-158ae1ce505c","input_length":922,"output_length":530,"hash_ids":[288058,288059],"delay":24883.2} +{"session_id":"sess-158ae1ce505c","input_length":1267,"output_length":170,"hash_ids":[288060,288061,288062],"delay":2284.3} +{"session_id":"sess-158ae1ce505c","input_length":192,"output_length":353,"hash_ids":[288063],"delay":425.4} +{"session_id":"sess-158ae1ce505c","input_length":2194,"output_length":128,"hash_ids":[288064,288065,288066,288067,288068],"delay":8684.6} +{"session_id":"sess-158ae1ce505c","input_length":1640,"output_length":181,"hash_ids":[288069,288070,288071,288072],"delay":4101.1} +{"session_id":"sess-158ae1ce505c","input_length":674,"output_length":425,"hash_ids":[288073,288074],"delay":15359.2} +{"session_id":"sess-158ae1ce505c","input_length":1037,"output_length":909,"hash_ids":[288075,288076,288077],"delay":14548.2} +{"session_id":"sess-158ae1ce505c","input_length":1543,"output_length":305,"hash_ids":[288078,288079,288080,288081],"delay":11944.2} +{"session_id":"sess-158ae1ce505c","input_length":1191,"output_length":281,"hash_ids":[288082,288083,288084],"delay":1098.0} +{"session_id":"sess-158ae1ce505c","input_length":363,"output_length":184,"hash_ids":[288085],"delay":284.2} +{"session_id":"sess-158ae1ce505c","input_length":1076,"output_length":264,"hash_ids":[288086,288087,288088],"delay":880.8} +{"session_id":"sess-158ae1ce505c","input_length":2035,"output_length":95,"hash_ids":[288089,288090,288091,288092],"delay":294.6} +{"session_id":"sess-158ae1ce505c","input_length":2827,"output_length":712,"hash_ids":[288093,288094,288095,288096,288097,288098],"delay":1147.6} +{"session_id":"sess-158ae1ce505c","input_length":399,"output_length":167,"hash_ids":[288099],"delay":547.9} +{"session_id":"sess-158ae1ce505c","input_length":2276,"output_length":140,"hash_ids":[288100,288101,288102,288103,288104],"delay":149.5} +{"session_id":"sess-9a70d7b168c9","input_length":29206,"output_length":121,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,292032,292033,292034,292035,292036,292037],"timestamp":0.0,"group_id":13} +{"session_id":"sess-9a70d7b168c9","input_length":433,"output_length":216,"hash_ids":[292038],"delay":3468.3} +{"session_id":"sess-9a70d7b168c9","input_length":709,"output_length":363,"hash_ids":[292039,292040],"delay":16000.3} +{"session_id":"sess-9a70d7b168c9","input_length":371,"output_length":736,"hash_ids":[292041],"delay":1814.1} +{"session_id":"sess-9a70d7b168c9","input_length":1328,"output_length":77,"hash_ids":[292042,292043,292044],"delay":9366.5} +{"session_id":"sess-9a70d7b168c9","input_length":429,"output_length":118,"hash_ids":[292045],"delay":1214.1} +{"session_id":"sess-9a70d7b168c9","input_length":1559,"output_length":106,"hash_ids":[292046,292047,292048,292049],"delay":487.4} +{"session_id":"sess-9a70d7b168c9","input_length":1116,"output_length":156,"hash_ids":[292050,292051,292052],"delay":319.2} +{"session_id":"sess-9a70d7b168c9","input_length":619,"output_length":161,"hash_ids":[292053,292054],"delay":581.5} +{"session_id":"sess-9a70d7b168c9","input_length":164,"output_length":607,"hash_ids":[292055],"delay":3459.8} +{"session_id":"sess-9a70d7b168c9","input_length":220,"output_length":41,"hash_ids":[292056],"delay":6866.7} +{"session_id":"sess-9a70d7b168c9","input_length":271,"output_length":188,"hash_ids":[292057],"delay":2687.9} +{"session_id":"sess-9a70d7b168c9","input_length":1633,"output_length":284,"hash_ids":[292058,292059,292060,292061],"delay":32943.2} +{"session_id":"sess-9a70d7b168c9","input_length":2303,"output_length":241,"hash_ids":[292062,292063,292064,292065,292066],"delay":4254.0} +{"session_id":"sess-9a70d7b168c9","input_length":1343,"output_length":191,"hash_ids":[292067,292068,292069],"delay":1166.7} +{"session_id":"sess-9a70d7b168c9","input_length":858,"output_length":221,"hash_ids":[292070,292071],"delay":761.1} +{"session_id":"sess-9a70d7b168c9","input_length":1182,"output_length":41,"hash_ids":[292072,292073,292074],"delay":1824.2} +{"session_id":"sess-9a70d7b168c9","input_length":396,"output_length":1049,"hash_ids":[292075],"delay":469.6} +{"session_id":"sess-9a70d7b168c9","input_length":620,"output_length":139,"hash_ids":[292076,292077],"delay":288.7} +{"session_id":"sess-9a70d7b168c9","input_length":418,"output_length":94,"hash_ids":[292078],"delay":585.5} +{"session_id":"sess-9a70d7b168c9","input_length":2849,"output_length":172,"hash_ids":[292079,292080,292081,292082,292083,292084],"delay":1590.9} +{"session_id":"sess-9a70d7b168c9","input_length":665,"output_length":221,"hash_ids":[292085,292086],"delay":12821.2} +{"session_id":"sess-9a70d7b168c9","input_length":1384,"output_length":438,"hash_ids":[292087,292088,292089],"delay":232.3} +{"session_id":"sess-9a70d7b168c9","input_length":2431,"output_length":107,"hash_ids":[292090,292091,292092,292093,292094],"delay":4784.9} +{"session_id":"sess-9a70d7b168c9","input_length":2155,"output_length":336,"hash_ids":[292095,292096,292097,292098,292099],"delay":15923.5} +{"session_id":"sess-9a70d7b168c9","input_length":1736,"output_length":304,"hash_ids":[292100,292101,292102,292103],"delay":407.3} +{"session_id":"sess-9a70d7b168c9","input_length":1642,"output_length":282,"hash_ids":[292104,292105,292106,292107],"delay":1420.7} +{"session_id":"sess-ec346369e75d","input_length":27361,"output_length":538,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,296032,296033],"timestamp":0.0,"group_id":32} +{"session_id":"sess-ec346369e75d","input_length":763,"output_length":112,"hash_ids":[296034,296035],"delay":28665.0} +{"session_id":"sess-ec346369e75d","input_length":366,"output_length":220,"hash_ids":[296036],"delay":2568.4} +{"session_id":"sess-ec346369e75d","input_length":246,"output_length":144,"hash_ids":[296037],"delay":245.5} +{"session_id":"sess-ec346369e75d","input_length":576,"output_length":403,"hash_ids":[296038,296039],"delay":745.7} +{"session_id":"sess-ec346369e75d","input_length":1339,"output_length":79,"hash_ids":[296040,296041,296042],"delay":2245.4} +{"session_id":"sess-ec346369e75d","input_length":392,"output_length":479,"hash_ids":[296043],"delay":996.9} +{"session_id":"sess-ec346369e75d","input_length":1733,"output_length":587,"hash_ids":[296044,296045,296046,296047],"delay":1618.4} +{"session_id":"sess-ec346369e75d","input_length":1779,"output_length":109,"hash_ids":[296048,296049,296050,296051],"delay":904.6} +{"session_id":"sess-ec346369e75d","input_length":2191,"output_length":173,"hash_ids":[296052,296053,296054,296055,296056],"delay":7489.5} +{"session_id":"sess-ec346369e75d","input_length":431,"output_length":189,"hash_ids":[296057],"delay":2831.6} +{"session_id":"sess-ec346369e75d","input_length":224,"output_length":98,"hash_ids":[296058],"delay":699.1} +{"session_id":"sess-ec346369e75d","input_length":1657,"output_length":211,"hash_ids":[296059,296060,296061,296062],"delay":378.0} +{"session_id":"sess-ec346369e75d","input_length":334,"output_length":222,"hash_ids":[296063],"delay":195.9} +{"session_id":"sess-ec346369e75d","input_length":427,"output_length":263,"hash_ids":[296064],"delay":7103.7} +{"session_id":"sess-ec346369e75d","input_length":988,"output_length":317,"hash_ids":[296065,296066],"delay":1558.2} +{"session_id":"sess-ec346369e75d","input_length":433,"output_length":183,"hash_ids":[296067],"delay":593.8} +{"session_id":"sess-ec346369e75d","input_length":506,"output_length":482,"hash_ids":[296068],"delay":478.6} +{"session_id":"sess-ec346369e75d","input_length":561,"output_length":501,"hash_ids":[296069,296070],"delay":391.4} +{"session_id":"sess-ec346369e75d","input_length":1010,"output_length":326,"hash_ids":[296071,296072],"delay":549.0} +{"session_id":"sess-ec346369e75d","input_length":103,"output_length":1152,"hash_ids":[296073],"delay":10149.2} +{"session_id":"sess-ec346369e75d","input_length":2489,"output_length":244,"hash_ids":[296074,296075,296076,296077,296078],"delay":3185.2} +{"session_id":"sess-ec346369e75d","input_length":2455,"output_length":256,"hash_ids":[296079,296080,296081,296082,296083],"delay":380.8} +{"session_id":"sess-ec346369e75d","input_length":2384,"output_length":517,"hash_ids":[296084,296085,296086,296087,296088],"delay":452.7} +{"session_id":"sess-ec346369e75d","input_length":659,"output_length":877,"hash_ids":[296089,296090],"delay":57.0} +{"session_id":"sess-ec346369e75d","input_length":866,"output_length":844,"hash_ids":[296091,296092],"delay":508.9} +{"session_id":"sess-ec346369e75d","input_length":303,"output_length":153,"hash_ids":[296093],"delay":829.8} +{"session_id":"sess-ec346369e75d","input_length":1693,"output_length":236,"hash_ids":[296094,296095,296096,296097],"delay":2253.8} +{"session_id":"sess-ec346369e75d","input_length":1346,"output_length":205,"hash_ids":[296098,296099,296100],"delay":5340.7} +{"session_id":"sess-106fb1938cd5","input_length":28876,"output_length":266,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,300032,300033,300034,300035,300036],"timestamp":0.0,"group_id":29} +{"session_id":"sess-106fb1938cd5","input_length":872,"output_length":184,"hash_ids":[300037,300038],"delay":7567.7} +{"session_id":"sess-106fb1938cd5","input_length":260,"output_length":719,"hash_ids":[300039],"delay":973.3} +{"session_id":"sess-106fb1938cd5","input_length":1891,"output_length":189,"hash_ids":[300040,300041,300042,300043],"delay":4089.6} +{"session_id":"sess-106fb1938cd5","input_length":291,"output_length":418,"hash_ids":[300044],"delay":724.3} +{"session_id":"sess-106fb1938cd5","input_length":207,"output_length":131,"hash_ids":[300045],"delay":2925.2} +{"session_id":"sess-106fb1938cd5","input_length":2090,"output_length":145,"hash_ids":[300046,300047,300048,300049,300050],"delay":2477.9} +{"session_id":"sess-106fb1938cd5","input_length":558,"output_length":518,"hash_ids":[300051,300052],"delay":36183.1} +{"session_id":"sess-106fb1938cd5","input_length":1486,"output_length":171,"hash_ids":[300053,300054,300055],"delay":4169.5} +{"session_id":"sess-106fb1938cd5","input_length":250,"output_length":255,"hash_ids":[300056],"delay":605.0} +{"session_id":"sess-106fb1938cd5","input_length":1420,"output_length":310,"hash_ids":[300057,300058,300059],"delay":1480.9} +{"session_id":"sess-106fb1938cd5","input_length":920,"output_length":179,"hash_ids":[300060,300061],"delay":827.9} +{"session_id":"sess-106fb1938cd5","input_length":678,"output_length":320,"hash_ids":[300062,300063],"delay":582.3} +{"session_id":"sess-106fb1938cd5","input_length":385,"output_length":186,"hash_ids":[300064],"delay":2691.5} +{"session_id":"sess-106fb1938cd5","input_length":612,"output_length":150,"hash_ids":[300065,300066],"delay":331.3} +{"session_id":"sess-106fb1938cd5","input_length":738,"output_length":251,"hash_ids":[300067,300068],"delay":13369.2} +{"session_id":"sess-106fb1938cd5","input_length":2359,"output_length":48,"hash_ids":[300069,300070,300071,300072,300073],"delay":4287.2} +{"session_id":"sess-106fb1938cd5","input_length":981,"output_length":64,"hash_ids":[300074,300075],"delay":4471.1} +{"session_id":"sess-106fb1938cd5","input_length":1248,"output_length":130,"hash_ids":[300076,300077,300078],"delay":490.9} +{"session_id":"sess-106fb1938cd5","input_length":1156,"output_length":609,"hash_ids":[300079,300080,300081],"delay":268.2} +{"session_id":"sess-106fb1938cd5","input_length":314,"output_length":110,"hash_ids":[300082],"delay":1409.6} +{"session_id":"sess-106fb1938cd5","input_length":583,"output_length":516,"hash_ids":[300083,300084],"delay":3314.4} +{"session_id":"sess-106fb1938cd5","input_length":1131,"output_length":96,"hash_ids":[300085,300086,300087],"delay":646.8} +{"session_id":"sess-106fb1938cd5","input_length":2176,"output_length":392,"hash_ids":[300088,300089,300090,300091,300092],"delay":1574.0} +{"session_id":"sess-106fb1938cd5","input_length":280,"output_length":236,"hash_ids":[300093],"delay":474.9} +{"session_id":"sess-106fb1938cd5","input_length":1737,"output_length":290,"hash_ids":[300094,300095,300096,300097],"delay":814.2} +{"session_id":"sess-0efd2436835c","input_length":34767,"output_length":324,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,304032,304033,304034,304035,304036,304037,304038,304039,304040,304041,304042,304043,304044,304045,304046,304047],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0efd2436835c","input_length":1281,"output_length":279,"hash_ids":[304048,304049,304050],"delay":888.7} +{"session_id":"sess-0efd2436835c","input_length":1301,"output_length":291,"hash_ids":[304051,304052,304053],"delay":17527.4} +{"session_id":"sess-0efd2436835c","input_length":758,"output_length":106,"hash_ids":[304054,304055],"delay":590.1} +{"session_id":"sess-0efd2436835c","input_length":1961,"output_length":271,"hash_ids":[304056,304057,304058,304059],"delay":1468.8} +{"session_id":"sess-0efd2436835c","input_length":297,"output_length":371,"hash_ids":[304060],"delay":543.2} +{"session_id":"sess-0efd2436835c","input_length":166,"output_length":234,"hash_ids":[304061],"delay":26107.8} +{"session_id":"sess-0efd2436835c","input_length":217,"output_length":332,"hash_ids":[304062],"delay":1188.4} +{"session_id":"sess-0efd2436835c","input_length":476,"output_length":58,"hash_ids":[304063],"delay":284.9} +{"session_id":"sess-0efd2436835c","input_length":300,"output_length":518,"hash_ids":[304064],"delay":434.4} +{"session_id":"sess-0efd2436835c","input_length":648,"output_length":570,"hash_ids":[304065,304066],"delay":708.7} +{"session_id":"sess-655c3e1aca72","input_length":28325,"output_length":377,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,308032,308033,308034,308035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-655c3e1aca72","input_length":261,"output_length":1495,"hash_ids":[308036],"delay":2685.4} +{"session_id":"sess-655c3e1aca72","input_length":184,"output_length":251,"hash_ids":[308037],"delay":3699.4} +{"session_id":"sess-655c3e1aca72","input_length":1844,"output_length":133,"hash_ids":[308038,308039,308040,308041],"delay":14725.2} +{"session_id":"sess-655c3e1aca72","input_length":606,"output_length":537,"hash_ids":[308042,308043],"delay":452.0} +{"session_id":"sess-655c3e1aca72","input_length":418,"output_length":252,"hash_ids":[308044],"delay":2224.2} +{"session_id":"sess-655c3e1aca72","input_length":252,"output_length":236,"hash_ids":[308045],"delay":1371.2} +{"session_id":"sess-655c3e1aca72","input_length":2628,"output_length":272,"hash_ids":[308046,308047,308048,308049,308050,308051],"delay":3671.5} +{"session_id":"sess-655c3e1aca72","input_length":703,"output_length":74,"hash_ids":[308052,308053],"delay":3675.9} +{"session_id":"sess-655c3e1aca72","input_length":1476,"output_length":193,"hash_ids":[308054,308055,308056],"delay":3501.5} +{"session_id":"sess-655c3e1aca72","input_length":711,"output_length":142,"hash_ids":[308057,308058],"delay":470.8} +{"session_id":"sess-655c3e1aca72","input_length":117,"output_length":139,"hash_ids":[308059],"delay":357.2} +{"session_id":"sess-655c3e1aca72","input_length":468,"output_length":58,"hash_ids":[308060],"delay":1656.5} +{"session_id":"sess-655c3e1aca72","input_length":794,"output_length":128,"hash_ids":[308061,308062],"delay":629.6} +{"session_id":"sess-655c3e1aca72","input_length":1547,"output_length":134,"hash_ids":[308063,308064,308065,308066],"delay":21704.1} +{"session_id":"sess-655c3e1aca72","input_length":2655,"output_length":318,"hash_ids":[308067,308068,308069,308070,308071,308072],"delay":1280.2} +{"session_id":"sess-655c3e1aca72","input_length":632,"output_length":358,"hash_ids":[308073,308074],"delay":1341.7} +{"session_id":"sess-f11efadce84e","input_length":27729,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,312032,312033,312034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f11efadce84e","input_length":1788,"output_length":109,"hash_ids":[312035,312036,312037,312038],"delay":2489.9} +{"session_id":"sess-f11efadce84e","input_length":147,"output_length":210,"hash_ids":[312039],"delay":1164.1} +{"session_id":"sess-f11efadce84e","input_length":332,"output_length":146,"hash_ids":[312040],"delay":933.9} +{"session_id":"sess-f11efadce84e","input_length":224,"output_length":251,"hash_ids":[312041],"delay":4432.7} +{"session_id":"sess-f11efadce84e","input_length":1057,"output_length":420,"hash_ids":[312042,312043,312044],"delay":1735.1} +{"session_id":"sess-f11efadce84e","input_length":528,"output_length":79,"hash_ids":[312045,312046],"delay":825.5} +{"session_id":"sess-f11efadce84e","input_length":1230,"output_length":309,"hash_ids":[312047,312048,312049],"delay":1023.6} +{"session_id":"sess-f11efadce84e","input_length":1344,"output_length":158,"hash_ids":[312050,312051,312052],"delay":1068.0} +{"session_id":"sess-f11efadce84e","input_length":981,"output_length":351,"hash_ids":[312053,312054],"delay":7932.7} +{"session_id":"sess-f11efadce84e","input_length":1243,"output_length":1085,"hash_ids":[312055,312056,312057],"delay":10404.8} +{"session_id":"sess-f11efadce84e","input_length":966,"output_length":49,"hash_ids":[312058,312059],"delay":19859.6} +{"session_id":"sess-f11efadce84e","input_length":442,"output_length":338,"hash_ids":[312060],"delay":377.3} +{"session_id":"sess-f11efadce84e","input_length":151,"output_length":286,"hash_ids":[312061],"delay":427.8} +{"session_id":"sess-f11efadce84e","input_length":213,"output_length":378,"hash_ids":[312062],"delay":493.4} +{"session_id":"sess-f11efadce84e","input_length":950,"output_length":32,"hash_ids":[312063,312064],"delay":19460.6} +{"session_id":"sess-f11efadce84e","input_length":1057,"output_length":468,"hash_ids":[312065,312066,312067],"delay":627.8} +{"session_id":"sess-f11efadce84e","input_length":881,"output_length":82,"hash_ids":[312068,312069],"delay":2206.7} +{"session_id":"sess-f11efadce84e","input_length":1683,"output_length":408,"hash_ids":[312070,312071,312072,312073],"delay":1065.0} +{"session_id":"sess-f11efadce84e","input_length":1103,"output_length":321,"hash_ids":[312074,312075,312076],"delay":7453.7} +{"session_id":"sess-f11efadce84e","input_length":1037,"output_length":142,"hash_ids":[312077,312078,312079],"delay":774.0} +{"session_id":"sess-f11efadce84e","input_length":2662,"output_length":193,"hash_ids":[312080,312081,312082,312083,312084,312085],"delay":523.8} +{"session_id":"sess-f11efadce84e","input_length":420,"output_length":85,"hash_ids":[312086],"delay":1101.1} +{"session_id":"sess-f11efadce84e","input_length":237,"output_length":57,"hash_ids":[312087],"delay":9332.1} +{"session_id":"sess-f11efadce84e","input_length":145,"output_length":464,"hash_ids":[312088],"delay":3205.5} +{"session_id":"sess-f11efadce84e","input_length":1726,"output_length":346,"hash_ids":[312089,312090,312091,312092],"delay":467.1} +{"session_id":"sess-f11efadce84e","input_length":1008,"output_length":445,"hash_ids":[312093,312094],"delay":458.4} +{"session_id":"sess-f11efadce84e","input_length":2953,"output_length":254,"hash_ids":[312095,312096,312097,312098,312099,312100],"delay":16838.3} +{"session_id":"sess-f11efadce84e","input_length":376,"output_length":248,"hash_ids":[312101],"delay":1906.6} +{"session_id":"sess-f11efadce84e","input_length":2947,"output_length":341,"hash_ids":[312102,312103,312104,312105,312106,312107],"delay":15832.0} +{"session_id":"sess-b00c361db86a","input_length":30754,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,316032,316033,316034,316035,316036,316037,316038,316039,316040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b00c361db86a","input_length":2936,"output_length":178,"hash_ids":[316041,316042,316043,316044,316045,316046],"delay":8513.4} +{"session_id":"sess-b00c361db86a","input_length":931,"output_length":361,"hash_ids":[316047,316048],"delay":22654.5} +{"session_id":"sess-b00c361db86a","input_length":199,"output_length":820,"hash_ids":[316049],"delay":10606.2} +{"session_id":"sess-b00c361db86a","input_length":883,"output_length":169,"hash_ids":[316050,316051],"delay":349.3} +{"session_id":"sess-b00c361db86a","input_length":256,"output_length":147,"hash_ids":[316052],"delay":1308.7} +{"session_id":"sess-b00c361db86a","input_length":1413,"output_length":287,"hash_ids":[316053,316054,316055],"delay":503.8} +{"session_id":"sess-b00c361db86a","input_length":2858,"output_length":333,"hash_ids":[316056,316057,316058,316059,316060,316061],"delay":555.6} +{"session_id":"sess-b00c361db86a","input_length":176,"output_length":159,"hash_ids":[316062],"delay":333.5} +{"session_id":"sess-b00c361db86a","input_length":429,"output_length":221,"hash_ids":[316063],"delay":1198.8} +{"session_id":"sess-b00c361db86a","input_length":2044,"output_length":311,"hash_ids":[316064,316065,316066,316067],"delay":738.1} +{"session_id":"sess-b00c361db86a","input_length":1429,"output_length":192,"hash_ids":[316068,316069,316070],"delay":1435.9} +{"session_id":"sess-b00c361db86a","input_length":1194,"output_length":59,"hash_ids":[316071,316072,316073],"delay":163.0} +{"session_id":"sess-b00c361db86a","input_length":930,"output_length":1246,"hash_ids":[316074,316075],"delay":3852.7} +{"session_id":"sess-b00c361db86a","input_length":569,"output_length":672,"hash_ids":[316076,316077],"delay":833.5} +{"session_id":"sess-b00c361db86a","input_length":642,"output_length":40,"hash_ids":[316078,316079],"delay":959.2} +{"session_id":"sess-b00c361db86a","input_length":1062,"output_length":45,"hash_ids":[316080,316081,316082],"delay":1398.9} +{"session_id":"sess-b00c361db86a","input_length":1900,"output_length":118,"hash_ids":[316083,316084,316085,316086],"delay":1161.5} +{"session_id":"sess-b00c361db86a","input_length":487,"output_length":157,"hash_ids":[316087],"delay":127.2} +{"session_id":"sess-b00c361db86a","input_length":2867,"output_length":1235,"hash_ids":[316088,316089,316090,316091,316092,316093],"delay":335.5} +{"session_id":"sess-b00c361db86a","input_length":1873,"output_length":584,"hash_ids":[316094,316095,316096,316097],"delay":22428.5} +{"session_id":"sess-b00c361db86a","input_length":268,"output_length":666,"hash_ids":[316098],"delay":381.7} +{"session_id":"sess-b00c361db86a","input_length":903,"output_length":156,"hash_ids":[316099,316100],"delay":1242.9} +{"session_id":"sess-15b87ff5af38","input_length":31207,"output_length":273,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,320032,320033,320034,320035,320036,320037,320038,320039,320040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-15b87ff5af38","input_length":994,"output_length":287,"hash_ids":[320041,320042],"delay":5263.5} +{"session_id":"sess-15b87ff5af38","input_length":200,"output_length":74,"hash_ids":[320043],"delay":1402.2} +{"session_id":"sess-15b87ff5af38","input_length":1685,"output_length":35,"hash_ids":[320044,320045,320046,320047],"delay":1202.0} +{"session_id":"sess-15b87ff5af38","input_length":1835,"output_length":214,"hash_ids":[320048,320049,320050,320051],"delay":5135.1} +{"session_id":"sess-15b87ff5af38","input_length":629,"output_length":254,"hash_ids":[320052,320053],"delay":1570.2} +{"session_id":"sess-15b87ff5af38","input_length":2046,"output_length":34,"hash_ids":[320054,320055,320056,320057],"delay":50268.2} +{"session_id":"sess-15b87ff5af38","input_length":488,"output_length":76,"hash_ids":[320058],"delay":2622.0} +{"session_id":"sess-15b87ff5af38","input_length":468,"output_length":320,"hash_ids":[320059],"delay":5357.1} +{"session_id":"sess-15b87ff5af38","input_length":857,"output_length":305,"hash_ids":[320060,320061],"delay":781.8} +{"session_id":"sess-15b87ff5af38","input_length":449,"output_length":399,"hash_ids":[320062],"delay":779.0} +{"session_id":"sess-15b87ff5af38","input_length":1037,"output_length":464,"hash_ids":[320063,320064,320065],"delay":1245.5} +{"session_id":"sess-15b87ff5af38","input_length":1247,"output_length":257,"hash_ids":[320066,320067,320068],"delay":764.5} +{"session_id":"sess-15b87ff5af38","input_length":677,"output_length":133,"hash_ids":[320069,320070],"delay":436.2} +{"session_id":"sess-15b87ff5af38","input_length":613,"output_length":101,"hash_ids":[320071,320072],"delay":2697.6} +{"session_id":"sess-15b87ff5af38","input_length":183,"output_length":103,"hash_ids":[320073],"delay":1260.0} +{"session_id":"sess-15b87ff5af38","input_length":827,"output_length":162,"hash_ids":[320074,320075],"delay":595.8} +{"session_id":"sess-15b87ff5af38","input_length":1478,"output_length":134,"hash_ids":[320076,320077,320078],"delay":620.0} +{"session_id":"sess-15b87ff5af38","input_length":927,"output_length":459,"hash_ids":[320079,320080],"delay":885.1} +{"session_id":"sess-15b87ff5af38","input_length":634,"output_length":292,"hash_ids":[320081,320082],"delay":19234.7} +{"session_id":"sess-15b87ff5af38","input_length":396,"output_length":187,"hash_ids":[320083],"delay":1561.1} +{"session_id":"sess-15b87ff5af38","input_length":380,"output_length":1034,"hash_ids":[320084],"delay":853.7} +{"session_id":"sess-15b87ff5af38","input_length":601,"output_length":806,"hash_ids":[320085,320086],"delay":8937.2} +{"session_id":"sess-15b87ff5af38","input_length":832,"output_length":77,"hash_ids":[320087,320088],"delay":1928.6} +{"session_id":"sess-15b87ff5af38","input_length":464,"output_length":262,"hash_ids":[320089],"delay":5560.4} +{"session_id":"sess-15b87ff5af38","input_length":1162,"output_length":287,"hash_ids":[320090,320091,320092],"delay":3308.9} +{"session_id":"sess-15b87ff5af38","input_length":772,"output_length":136,"hash_ids":[320093,320094],"delay":392.4} +{"session_id":"sess-15b87ff5af38","input_length":730,"output_length":606,"hash_ids":[320095,320096],"delay":7948.1} +{"session_id":"sess-15b87ff5af38","input_length":764,"output_length":246,"hash_ids":[320097,320098],"delay":387.8} +{"session_id":"sess-15b87ff5af38","input_length":827,"output_length":725,"hash_ids":[320099,320100],"delay":172.7} +{"session_id":"sess-15b87ff5af38","input_length":717,"output_length":57,"hash_ids":[320101,320102],"delay":649.3} +{"session_id":"sess-15b87ff5af38","input_length":93,"output_length":436,"hash_ids":[320103],"delay":476.3} +{"session_id":"sess-981c8f36375d","input_length":28530,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,324032,324033,324034,324035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-981c8f36375d","input_length":299,"output_length":42,"hash_ids":[324036],"delay":438.3} +{"session_id":"sess-981c8f36375d","input_length":1748,"output_length":79,"hash_ids":[324037,324038,324039,324040],"delay":21932.8} +{"session_id":"sess-981c8f36375d","input_length":1485,"output_length":266,"hash_ids":[324041,324042,324043],"delay":420.9} +{"session_id":"sess-981c8f36375d","input_length":1373,"output_length":101,"hash_ids":[324044,324045,324046],"delay":9424.4} +{"session_id":"sess-981c8f36375d","input_length":759,"output_length":66,"hash_ids":[324047,324048],"delay":475.8} +{"session_id":"sess-981c8f36375d","input_length":1866,"output_length":58,"hash_ids":[324049,324050,324051,324052],"delay":155.3} +{"session_id":"sess-981c8f36375d","input_length":1894,"output_length":50,"hash_ids":[324053,324054,324055,324056],"delay":18817.5} +{"session_id":"sess-981c8f36375d","input_length":343,"output_length":51,"hash_ids":[324057],"delay":255.8} +{"session_id":"sess-981c8f36375d","input_length":103,"output_length":150,"hash_ids":[324058],"delay":3632.8} +{"session_id":"sess-981c8f36375d","input_length":1372,"output_length":74,"hash_ids":[324059,324060,324061],"delay":1121.8} +{"session_id":"sess-981c8f36375d","input_length":2200,"output_length":54,"hash_ids":[324062,324063,324064,324065,324066],"delay":913.3} +{"session_id":"sess-981c8f36375d","input_length":1412,"output_length":285,"hash_ids":[324067,324068,324069],"delay":362.8} +{"session_id":"sess-981c8f36375d","input_length":1060,"output_length":221,"hash_ids":[324070,324071,324072],"delay":2173.5} +{"session_id":"sess-981c8f36375d","input_length":940,"output_length":33,"hash_ids":[324073,324074],"delay":401.8} +{"session_id":"sess-981c8f36375d","input_length":925,"output_length":204,"hash_ids":[324075,324076],"delay":5263.5} +{"session_id":"sess-981c8f36375d","input_length":524,"output_length":650,"hash_ids":[324077,324078],"delay":26872.6} +{"session_id":"sess-981c8f36375d","input_length":777,"output_length":81,"hash_ids":[324079,324080],"delay":6520.0} +{"session_id":"sess-981c8f36375d","input_length":203,"output_length":247,"hash_ids":[324081],"delay":3557.4} +{"session_id":"sess-981c8f36375d","input_length":1358,"output_length":390,"hash_ids":[324082,324083,324084],"delay":402.7} +{"session_id":"sess-981c8f36375d","input_length":689,"output_length":96,"hash_ids":[324085,324086],"delay":856.6} +{"session_id":"sess-981c8f36375d","input_length":395,"output_length":78,"hash_ids":[324087],"delay":254.6} +{"session_id":"sess-981c8f36375d","input_length":498,"output_length":160,"hash_ids":[324088],"delay":355.7} +{"session_id":"sess-981c8f36375d","input_length":2446,"output_length":724,"hash_ids":[324089,324090,324091,324092,324093],"delay":10826.2} +{"session_id":"sess-981c8f36375d","input_length":424,"output_length":276,"hash_ids":[324094],"delay":12100.7} +{"session_id":"sess-981c8f36375d","input_length":883,"output_length":478,"hash_ids":[324095,324096],"delay":920.2} +{"session_id":"sess-981c8f36375d","input_length":1427,"output_length":49,"hash_ids":[324097,324098,324099],"delay":8423.9} +{"session_id":"sess-981c8f36375d","input_length":1880,"output_length":238,"hash_ids":[324100,324101,324102,324103],"delay":210.4} +{"session_id":"sess-981c8f36375d","input_length":1806,"output_length":231,"hash_ids":[324104,324105,324106,324107],"delay":10249.8} +{"session_id":"sess-2bd7055848de","input_length":26804,"output_length":174,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,328032],"timestamp":0.0,"group_id":19} +{"session_id":"sess-2bd7055848de","input_length":1052,"output_length":182,"hash_ids":[328033,328034,328035],"delay":765.3} +{"session_id":"sess-2bd7055848de","input_length":1447,"output_length":141,"hash_ids":[328036,328037,328038],"delay":763.4} +{"session_id":"sess-2bd7055848de","input_length":896,"output_length":521,"hash_ids":[328039,328040],"delay":2047.5} +{"session_id":"sess-2bd7055848de","input_length":1506,"output_length":186,"hash_ids":[328041,328042,328043],"delay":676.3} +{"session_id":"sess-2bd7055848de","input_length":844,"output_length":715,"hash_ids":[328044,328045],"delay":179.5} +{"session_id":"sess-2bd7055848de","input_length":608,"output_length":126,"hash_ids":[328046,328047],"delay":1167.9} +{"session_id":"sess-2bd7055848de","input_length":680,"output_length":196,"hash_ids":[328048,328049],"delay":2067.7} +{"session_id":"sess-2bd7055848de","input_length":2122,"output_length":211,"hash_ids":[328050,328051,328052,328053,328054],"delay":251.7} +{"session_id":"sess-2bd7055848de","input_length":166,"output_length":417,"hash_ids":[328055],"delay":367.6} +{"session_id":"sess-2bd7055848de","input_length":1176,"output_length":1058,"hash_ids":[328056,328057,328058],"delay":797.0} +{"session_id":"sess-2bd7055848de","input_length":1020,"output_length":330,"hash_ids":[328059,328060],"delay":1720.4} +{"session_id":"sess-2bd7055848de","input_length":535,"output_length":481,"hash_ids":[328061,328062],"delay":1358.2} +{"session_id":"sess-2bd7055848de","input_length":2076,"output_length":275,"hash_ids":[328063,328064,328065,328066,328067],"delay":470.5} +{"session_id":"sess-2bd7055848de","input_length":727,"output_length":82,"hash_ids":[328068,328069],"delay":741.5} +{"session_id":"sess-2bd7055848de","input_length":921,"output_length":115,"hash_ids":[328070,328071],"delay":416.1} +{"session_id":"sess-2bd7055848de","input_length":1347,"output_length":258,"hash_ids":[328072,328073,328074],"delay":3928.5} +{"session_id":"sess-2bd7055848de","input_length":1089,"output_length":180,"hash_ids":[328075,328076,328077],"delay":1678.8} +{"session_id":"sess-2bd7055848de","input_length":1447,"output_length":107,"hash_ids":[328078,328079,328080],"delay":39302.9} +{"session_id":"sess-c2378c80ccb2","input_length":27916,"output_length":263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,332032,332033,332034],"timestamp":0.0,"group_id":37} +{"session_id":"sess-c2378c80ccb2","input_length":1647,"output_length":345,"hash_ids":[332035,332036,332037,332038],"delay":15043.4} +{"session_id":"sess-c2378c80ccb2","input_length":590,"output_length":270,"hash_ids":[332039,332040],"delay":5628.8} +{"session_id":"sess-c2378c80ccb2","input_length":1072,"output_length":194,"hash_ids":[332041,332042,332043],"delay":50193.7} +{"session_id":"sess-c2378c80ccb2","input_length":474,"output_length":493,"hash_ids":[332044],"delay":10645.0} +{"session_id":"sess-c2378c80ccb2","input_length":422,"output_length":45,"hash_ids":[332045],"delay":1722.9} +{"session_id":"sess-c2378c80ccb2","input_length":132,"output_length":1349,"hash_ids":[332046],"delay":1371.8} +{"session_id":"sess-c2378c80ccb2","input_length":2428,"output_length":146,"hash_ids":[332047,332048,332049,332050,332051],"delay":857.2} +{"session_id":"sess-c2378c80ccb2","input_length":865,"output_length":209,"hash_ids":[332052,332053],"delay":1241.4} +{"session_id":"sess-c2378c80ccb2","input_length":669,"output_length":325,"hash_ids":[332054,332055],"delay":2534.2} +{"session_id":"sess-c2378c80ccb2","input_length":1511,"output_length":1158,"hash_ids":[332056,332057,332058],"delay":354.3} +{"session_id":"sess-c2378c80ccb2","input_length":2018,"output_length":710,"hash_ids":[332059,332060,332061,332062],"delay":38200.4} +{"session_id":"sess-c2378c80ccb2","input_length":1244,"output_length":356,"hash_ids":[332063,332064,332065],"delay":13906.6} +{"session_id":"sess-c2378c80ccb2","input_length":462,"output_length":195,"hash_ids":[332066],"delay":391.3} +{"session_id":"sess-c2378c80ccb2","input_length":755,"output_length":308,"hash_ids":[332067,332068],"delay":1141.2} +{"session_id":"sess-c2378c80ccb2","input_length":170,"output_length":779,"hash_ids":[332069],"delay":389.6} +{"session_id":"sess-c2378c80ccb2","input_length":617,"output_length":109,"hash_ids":[332070,332071],"delay":923.6} +{"session_id":"sess-c2378c80ccb2","input_length":821,"output_length":75,"hash_ids":[332072,332073],"delay":365.3} +{"session_id":"sess-13c9c5c6cc62","input_length":26125,"output_length":410,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-13c9c5c6cc62","input_length":497,"output_length":290,"hash_ids":[332074],"delay":879.1} +{"session_id":"sess-13c9c5c6cc62","input_length":1067,"output_length":158,"hash_ids":[332075,332076,332077],"delay":336.8} +{"session_id":"sess-13c9c5c6cc62","input_length":632,"output_length":104,"hash_ids":[332078,332079],"delay":13611.8} +{"session_id":"sess-13c9c5c6cc62","input_length":1287,"output_length":270,"hash_ids":[332080,332081,332082],"delay":16099.5} +{"session_id":"sess-0f6d74adb8a7","input_length":26819,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,340032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0f6d74adb8a7","input_length":385,"output_length":512,"hash_ids":[340033],"delay":360.2} +{"session_id":"sess-0f6d74adb8a7","input_length":296,"output_length":501,"hash_ids":[340034],"delay":2992.6} +{"session_id":"sess-0f6d74adb8a7","input_length":615,"output_length":159,"hash_ids":[340035,340036],"delay":591.2} +{"session_id":"sess-0f6d74adb8a7","input_length":606,"output_length":276,"hash_ids":[340037,340038],"delay":2874.0} +{"session_id":"sess-0f6d74adb8a7","input_length":1673,"output_length":71,"hash_ids":[340039,340040,340041,340042],"delay":23514.6} +{"session_id":"sess-0f6d74adb8a7","input_length":463,"output_length":144,"hash_ids":[340043],"delay":335.0} +{"session_id":"sess-0f6d74adb8a7","input_length":1394,"output_length":116,"hash_ids":[340044,340045,340046],"delay":5297.3} +{"session_id":"sess-0f6d74adb8a7","input_length":826,"output_length":388,"hash_ids":[340047,340048],"delay":22577.3} +{"session_id":"sess-0f6d74adb8a7","input_length":2398,"output_length":51,"hash_ids":[340049,340050,340051,340052,340053],"delay":639.7} +{"session_id":"sess-0f6d74adb8a7","input_length":1357,"output_length":107,"hash_ids":[340054,340055,340056],"delay":661.8} +{"session_id":"sess-0f6d74adb8a7","input_length":1835,"output_length":842,"hash_ids":[340057,340058,340059,340060],"delay":690.3} +{"session_id":"sess-0f6d74adb8a7","input_length":389,"output_length":250,"hash_ids":[340061],"delay":2533.5} +{"session_id":"sess-0f6d74adb8a7","input_length":275,"output_length":131,"hash_ids":[340062],"delay":597.1} +{"session_id":"sess-0f6d74adb8a7","input_length":577,"output_length":190,"hash_ids":[340063,340064],"delay":3008.2} +{"session_id":"sess-0f6d74adb8a7","input_length":2105,"output_length":172,"hash_ids":[340065,340066,340067,340068,340069],"delay":2682.7} +{"session_id":"sess-0f6d74adb8a7","input_length":1434,"output_length":566,"hash_ids":[340070,340071,340072],"delay":2158.1} +{"session_id":"sess-0f6d74adb8a7","input_length":358,"output_length":233,"hash_ids":[340073],"delay":239.2} +{"session_id":"sess-0f6d74adb8a7","input_length":938,"output_length":321,"hash_ids":[340074,340075],"delay":632.3} +{"session_id":"sess-0f6d74adb8a7","input_length":645,"output_length":56,"hash_ids":[340076,340077],"delay":22471.0} +{"session_id":"sess-0f6d74adb8a7","input_length":953,"output_length":219,"hash_ids":[340078,340079],"delay":903.8} +{"session_id":"sess-0f6d74adb8a7","input_length":996,"output_length":160,"hash_ids":[340080,340081],"delay":941.8} +{"session_id":"sess-0f6d74adb8a7","input_length":528,"output_length":119,"hash_ids":[340082,340083],"delay":15772.9} +{"session_id":"sess-0f6d74adb8a7","input_length":2968,"output_length":486,"hash_ids":[340084,340085,340086,340087,340088,340089],"delay":852.9} +{"session_id":"sess-0f6d74adb8a7","input_length":433,"output_length":101,"hash_ids":[340090],"delay":552.7} +{"session_id":"sess-0f6d74adb8a7","input_length":1662,"output_length":125,"hash_ids":[340091,340092,340093,340094],"delay":1103.8} +{"session_id":"sess-0f6d74adb8a7","input_length":948,"output_length":245,"hash_ids":[340095,340096],"delay":8545.2} +{"session_id":"sess-0f6d74adb8a7","input_length":1525,"output_length":975,"hash_ids":[340097,340098,340099],"delay":2385.6} +{"session_id":"sess-0f6d74adb8a7","input_length":1372,"output_length":129,"hash_ids":[340100,340101,340102],"delay":240.6} +{"session_id":"sess-0f6d74adb8a7","input_length":219,"output_length":61,"hash_ids":[340103],"delay":3293.3} +{"session_id":"sess-552ba9b8db83","input_length":28048,"output_length":628,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,344032,344033,344034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-552ba9b8db83","input_length":2242,"output_length":154,"hash_ids":[344035,344036,344037,344038,344039],"delay":1274.6} +{"session_id":"sess-552ba9b8db83","input_length":861,"output_length":509,"hash_ids":[344040,344041],"delay":476.0} +{"session_id":"sess-552ba9b8db83","input_length":485,"output_length":453,"hash_ids":[344042],"delay":907.0} +{"session_id":"sess-552ba9b8db83","input_length":982,"output_length":87,"hash_ids":[344043,344044],"delay":4609.2} +{"session_id":"sess-552ba9b8db83","input_length":2883,"output_length":37,"hash_ids":[344045,344046,344047,344048,344049,344050],"delay":426.2} +{"session_id":"sess-552ba9b8db83","input_length":65,"output_length":226,"hash_ids":[344051],"delay":13889.7} +{"session_id":"sess-552ba9b8db83","input_length":493,"output_length":994,"hash_ids":[344052],"delay":2189.5} +{"session_id":"sess-552ba9b8db83","input_length":2203,"output_length":357,"hash_ids":[344053,344054,344055,344056,344057],"delay":1287.2} +{"session_id":"sess-552ba9b8db83","input_length":1643,"output_length":30,"hash_ids":[344058,344059,344060,344061],"delay":1154.0} +{"session_id":"sess-552ba9b8db83","input_length":892,"output_length":264,"hash_ids":[344062,344063],"delay":1426.2} +{"session_id":"sess-552ba9b8db83","input_length":399,"output_length":130,"hash_ids":[344064],"delay":1928.9} +{"session_id":"sess-552ba9b8db83","input_length":1150,"output_length":153,"hash_ids":[344065,344066,344067],"delay":24542.8} +{"session_id":"sess-552ba9b8db83","input_length":176,"output_length":170,"hash_ids":[344068],"delay":46725.3} +{"session_id":"sess-552ba9b8db83","input_length":736,"output_length":277,"hash_ids":[344069,344070],"delay":2721.3} +{"session_id":"sess-552ba9b8db83","input_length":1382,"output_length":1097,"hash_ids":[344071,344072,344073],"delay":1531.5} +{"session_id":"sess-552ba9b8db83","input_length":1739,"output_length":237,"hash_ids":[344074,344075,344076,344077],"delay":747.2} +{"session_id":"sess-552ba9b8db83","input_length":639,"output_length":1201,"hash_ids":[344078,344079],"delay":1884.7} +{"session_id":"sess-552ba9b8db83","input_length":57,"output_length":340,"hash_ids":[344080],"delay":372.7} +{"session_id":"sess-552ba9b8db83","input_length":2328,"output_length":283,"hash_ids":[344081,344082,344083,344084,344085],"delay":591.3} +{"session_id":"sess-552ba9b8db83","input_length":348,"output_length":48,"hash_ids":[344086],"delay":1046.9} +{"session_id":"sess-552ba9b8db83","input_length":294,"output_length":78,"hash_ids":[344087],"delay":207.6} +{"session_id":"sess-552ba9b8db83","input_length":532,"output_length":196,"hash_ids":[344088,344089],"delay":325.5} +{"session_id":"sess-552ba9b8db83","input_length":456,"output_length":161,"hash_ids":[344090],"delay":263.4} +{"session_id":"sess-552ba9b8db83","input_length":629,"output_length":185,"hash_ids":[344091,344092],"delay":1126.2} +{"session_id":"sess-552ba9b8db83","input_length":380,"output_length":144,"hash_ids":[344093],"delay":515.3} +{"session_id":"sess-552ba9b8db83","input_length":2211,"output_length":98,"hash_ids":[344094,344095,344096,344097,344098],"delay":270.1} +{"session_id":"sess-c3c063eed2ed","input_length":26826,"output_length":74,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,348032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c3c063eed2ed","input_length":528,"output_length":105,"hash_ids":[348033,348034],"delay":9188.3} +{"session_id":"sess-c3c063eed2ed","input_length":543,"output_length":260,"hash_ids":[348035,348036],"delay":13764.9} +{"session_id":"sess-c3c063eed2ed","input_length":1425,"output_length":183,"hash_ids":[348037,348038,348039],"delay":647.8} +{"session_id":"sess-c3c063eed2ed","input_length":603,"output_length":254,"hash_ids":[348040,348041],"delay":1153.5} +{"session_id":"sess-c3c063eed2ed","input_length":696,"output_length":328,"hash_ids":[348042,348043],"delay":1799.5} +{"session_id":"sess-c3c063eed2ed","input_length":405,"output_length":873,"hash_ids":[348044],"delay":45114.8} +{"session_id":"sess-c3c063eed2ed","input_length":1157,"output_length":88,"hash_ids":[348045,348046,348047],"delay":816.8} +{"session_id":"sess-c3c063eed2ed","input_length":715,"output_length":267,"hash_ids":[348048,348049],"delay":18482.1} +{"session_id":"sess-c3c063eed2ed","input_length":102,"output_length":199,"hash_ids":[348050],"delay":907.2} +{"session_id":"sess-e26bc3ce9dbd","input_length":29365,"output_length":394,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,352032,352033,352034,352035,352036,352037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e26bc3ce9dbd","input_length":2376,"output_length":315,"hash_ids":[352038,352039,352040,352041,352042],"delay":492.8} +{"session_id":"sess-e26bc3ce9dbd","input_length":1173,"output_length":82,"hash_ids":[352043,352044,352045],"delay":4648.6} +{"session_id":"sess-e26bc3ce9dbd","input_length":1436,"output_length":519,"hash_ids":[352046,352047,352048],"delay":1227.1} +{"session_id":"sess-e26bc3ce9dbd","input_length":67,"output_length":360,"hash_ids":[352049],"delay":3762.5} +{"session_id":"sess-e26bc3ce9dbd","input_length":264,"output_length":205,"hash_ids":[352050],"delay":1812.0} +{"session_id":"sess-e26bc3ce9dbd","input_length":1358,"output_length":49,"hash_ids":[352051,352052,352053],"delay":6098.5} +{"session_id":"sess-e26bc3ce9dbd","input_length":173,"output_length":387,"hash_ids":[352054],"delay":976.3} +{"session_id":"sess-e26bc3ce9dbd","input_length":1410,"output_length":300,"hash_ids":[352055,352056,352057],"delay":2426.3} +{"session_id":"sess-e26bc3ce9dbd","input_length":1713,"output_length":480,"hash_ids":[352058,352059,352060,352061],"delay":13131.1} +{"session_id":"sess-e26bc3ce9dbd","input_length":557,"output_length":212,"hash_ids":[352062,352063],"delay":299.3} +{"session_id":"sess-e26bc3ce9dbd","input_length":1181,"output_length":1087,"hash_ids":[352064,352065,352066],"delay":11433.3} +{"session_id":"sess-e26bc3ce9dbd","input_length":615,"output_length":751,"hash_ids":[352067,352068],"delay":1320.7} +{"session_id":"sess-e26bc3ce9dbd","input_length":626,"output_length":635,"hash_ids":[352069,352070],"delay":1455.9} +{"session_id":"sess-e26bc3ce9dbd","input_length":329,"output_length":46,"hash_ids":[352071],"delay":260.7} +{"session_id":"sess-e26bc3ce9dbd","input_length":1488,"output_length":81,"hash_ids":[352072,352073,352074],"delay":3810.4} +{"session_id":"sess-e26bc3ce9dbd","input_length":2380,"output_length":352,"hash_ids":[352075,352076,352077,352078,352079],"delay":279.0} +{"session_id":"sess-e26bc3ce9dbd","input_length":807,"output_length":40,"hash_ids":[352080,352081],"delay":661.4} +{"session_id":"sess-e26bc3ce9dbd","input_length":516,"output_length":163,"hash_ids":[352082,352083],"delay":1663.2} +{"session_id":"sess-e26bc3ce9dbd","input_length":1654,"output_length":216,"hash_ids":[352084,352085,352086,352087],"delay":989.3} +{"session_id":"sess-e26bc3ce9dbd","input_length":298,"output_length":59,"hash_ids":[352088],"delay":435.9} +{"session_id":"sess-e26bc3ce9dbd","input_length":2552,"output_length":320,"hash_ids":[352089,352090,352091,352092,352093],"delay":240.6} +{"session_id":"sess-e26bc3ce9dbd","input_length":524,"output_length":297,"hash_ids":[352094,352095],"delay":323.7} +{"session_id":"sess-e26bc3ce9dbd","input_length":832,"output_length":330,"hash_ids":[352096,352097],"delay":31456.8} +{"session_id":"sess-e26bc3ce9dbd","input_length":417,"output_length":347,"hash_ids":[352098],"delay":187.7} +{"session_id":"sess-e26bc3ce9dbd","input_length":120,"output_length":204,"hash_ids":[352099],"delay":567.8} +{"session_id":"sess-e26bc3ce9dbd","input_length":2189,"output_length":126,"hash_ids":[352100,352101,352102,352103,352104],"delay":2382.1} +{"session_id":"sess-c222893c8659","input_length":28353,"output_length":257,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,356032,356033,356034,356035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c222893c8659","input_length":1196,"output_length":55,"hash_ids":[356036,356037,356038],"delay":895.3} +{"session_id":"sess-c222893c8659","input_length":2880,"output_length":88,"hash_ids":[356039,356040,356041,356042,356043,356044],"delay":3018.9} +{"session_id":"sess-c222893c8659","input_length":503,"output_length":44,"hash_ids":[356045],"delay":1669.0} +{"session_id":"sess-c222893c8659","input_length":584,"output_length":101,"hash_ids":[356046,356047],"delay":492.9} +{"session_id":"sess-c222893c8659","input_length":1416,"output_length":427,"hash_ids":[356048,356049,356050],"delay":4873.8} +{"session_id":"sess-c222893c8659","input_length":156,"output_length":1284,"hash_ids":[356051],"delay":520.8} +{"session_id":"sess-c222893c8659","input_length":396,"output_length":351,"hash_ids":[356052],"delay":180.0} +{"session_id":"sess-c222893c8659","input_length":1124,"output_length":73,"hash_ids":[356053,356054,356055],"delay":653.6} +{"session_id":"sess-c222893c8659","input_length":237,"output_length":30,"hash_ids":[356056],"delay":1235.7} +{"session_id":"sess-c222893c8659","input_length":1746,"output_length":105,"hash_ids":[356057,356058,356059,356060],"delay":563.5} +{"session_id":"sess-c222893c8659","input_length":231,"output_length":284,"hash_ids":[356061],"delay":1046.0} +{"session_id":"sess-c222893c8659","input_length":204,"output_length":120,"hash_ids":[356062],"delay":592.8} +{"session_id":"sess-c222893c8659","input_length":699,"output_length":209,"hash_ids":[356063,356064],"delay":1237.8} +{"session_id":"sess-c222893c8659","input_length":489,"output_length":247,"hash_ids":[356065],"delay":694.8} +{"session_id":"sess-c222893c8659","input_length":434,"output_length":404,"hash_ids":[356066],"delay":220.5} +{"session_id":"sess-c222893c8659","input_length":648,"output_length":126,"hash_ids":[356067,356068],"delay":263.1} +{"session_id":"sess-c222893c8659","input_length":2989,"output_length":78,"hash_ids":[356069,356070,356071,356072,356073,356074],"delay":1643.2} +{"session_id":"sess-c222893c8659","input_length":833,"output_length":36,"hash_ids":[356075,356076],"delay":9074.8} +{"session_id":"sess-c222893c8659","input_length":938,"output_length":53,"hash_ids":[356077,356078],"delay":1389.6} +{"session_id":"sess-c222893c8659","input_length":317,"output_length":95,"hash_ids":[356079],"delay":371.0} +{"session_id":"sess-c222893c8659","input_length":2468,"output_length":199,"hash_ids":[356080,356081,356082,356083,356084],"delay":158.2} +{"session_id":"sess-c222893c8659","input_length":2994,"output_length":205,"hash_ids":[356085,356086,356087,356088,356089,356090],"delay":10081.1} +{"session_id":"sess-abe26f574e05","input_length":27765,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,360032,360033,360034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-abe26f574e05","input_length":610,"output_length":1120,"hash_ids":[360035,360036],"delay":2449.9} +{"session_id":"sess-abe26f574e05","input_length":1506,"output_length":429,"hash_ids":[360037,360038,360039],"delay":3194.9} +{"session_id":"sess-abe26f574e05","input_length":1094,"output_length":379,"hash_ids":[360040,360041,360042],"delay":501.2} +{"session_id":"sess-abe26f574e05","input_length":231,"output_length":263,"hash_ids":[360043],"delay":489.4} +{"session_id":"sess-abe26f574e05","input_length":1656,"output_length":526,"hash_ids":[360044,360045,360046,360047],"delay":359.7} +{"session_id":"sess-abe26f574e05","input_length":407,"output_length":511,"hash_ids":[360048],"delay":475.1} +{"session_id":"sess-abe26f574e05","input_length":2434,"output_length":158,"hash_ids":[360049,360050,360051,360052,360053],"delay":1033.4} +{"session_id":"sess-abe26f574e05","input_length":1000,"output_length":880,"hash_ids":[360054,360055],"delay":805.9} +{"session_id":"sess-abe26f574e05","input_length":484,"output_length":233,"hash_ids":[360056],"delay":1751.0} +{"session_id":"sess-abe26f574e05","input_length":590,"output_length":308,"hash_ids":[360057,360058],"delay":676.9} +{"session_id":"sess-abe26f574e05","input_length":384,"output_length":202,"hash_ids":[360059],"delay":1070.9} +{"session_id":"sess-abe26f574e05","input_length":1503,"output_length":118,"hash_ids":[360060,360061,360062],"delay":548.8} +{"session_id":"sess-abe26f574e05","input_length":606,"output_length":43,"hash_ids":[360063,360064],"delay":700.9} +{"session_id":"sess-abe26f574e05","input_length":992,"output_length":865,"hash_ids":[360065,360066],"delay":5291.2} +{"session_id":"sess-abe26f574e05","input_length":1931,"output_length":111,"hash_ids":[360067,360068,360069,360070],"delay":803.5} +{"session_id":"sess-abe26f574e05","input_length":938,"output_length":857,"hash_ids":[360071,360072],"delay":1270.0} +{"session_id":"sess-abe26f574e05","input_length":146,"output_length":499,"hash_ids":[360073],"delay":4862.4} +{"session_id":"sess-abe26f574e05","input_length":639,"output_length":1278,"hash_ids":[360074,360075],"delay":8475.3} +{"session_id":"sess-abe26f574e05","input_length":505,"output_length":186,"hash_ids":[360076],"delay":1987.0} +{"session_id":"sess-abe26f574e05","input_length":1846,"output_length":393,"hash_ids":[360077,360078,360079,360080],"delay":251.8} +{"session_id":"sess-abe26f574e05","input_length":1660,"output_length":334,"hash_ids":[360081,360082,360083,360084],"delay":239.4} +{"session_id":"sess-abe26f574e05","input_length":302,"output_length":164,"hash_ids":[360085],"delay":1096.9} +{"session_id":"sess-abe26f574e05","input_length":297,"output_length":161,"hash_ids":[360086],"delay":338.8} +{"session_id":"sess-abe26f574e05","input_length":256,"output_length":389,"hash_ids":[360087],"delay":4637.0} +{"session_id":"sess-abe26f574e05","input_length":481,"output_length":587,"hash_ids":[360088],"delay":336.8} +{"session_id":"sess-abe26f574e05","input_length":134,"output_length":284,"hash_ids":[360089],"delay":750.5} +{"session_id":"sess-abe26f574e05","input_length":749,"output_length":151,"hash_ids":[360090,360091],"delay":609.1} +{"session_id":"sess-abe26f574e05","input_length":525,"output_length":90,"hash_ids":[360092,360093],"delay":3469.5} +{"session_id":"sess-f6dc8f633437","input_length":28949,"output_length":516,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,364032,364033,364034,364035,364036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f6dc8f633437","input_length":2189,"output_length":310,"hash_ids":[364037,364038,364039,364040,364041],"delay":572.2} +{"session_id":"sess-f6dc8f633437","input_length":1679,"output_length":312,"hash_ids":[364042,364043,364044,364045],"delay":330.8} +{"session_id":"sess-f6dc8f633437","input_length":215,"output_length":389,"hash_ids":[364046],"delay":13307.2} +{"session_id":"sess-f6dc8f633437","input_length":529,"output_length":110,"hash_ids":[364047,364048],"delay":2128.1} +{"session_id":"sess-f6dc8f633437","input_length":634,"output_length":50,"hash_ids":[364049,364050],"delay":1137.2} +{"session_id":"sess-f6dc8f633437","input_length":1338,"output_length":85,"hash_ids":[364051,364052,364053],"delay":452.1} +{"session_id":"sess-f6dc8f633437","input_length":399,"output_length":219,"hash_ids":[364054],"delay":2082.6} +{"session_id":"sess-f6dc8f633437","input_length":1851,"output_length":100,"hash_ids":[364055,364056,364057,364058],"delay":533.2} +{"session_id":"sess-f6dc8f633437","input_length":1134,"output_length":675,"hash_ids":[364059,364060,364061],"delay":40834.5} +{"session_id":"sess-f6dc8f633437","input_length":1627,"output_length":195,"hash_ids":[364062,364063,364064,364065],"delay":405.4} +{"session_id":"sess-f6dc8f633437","input_length":140,"output_length":373,"hash_ids":[364066],"delay":42777.4} +{"session_id":"sess-f6dc8f633437","input_length":1011,"output_length":1236,"hash_ids":[364067,364068],"delay":494.6} +{"session_id":"sess-f6dc8f633437","input_length":1464,"output_length":262,"hash_ids":[364069,364070,364071],"delay":1242.1} +{"session_id":"sess-f6dc8f633437","input_length":2212,"output_length":265,"hash_ids":[364072,364073,364074,364075,364076],"delay":1836.1} +{"session_id":"sess-f6dc8f633437","input_length":1119,"output_length":186,"hash_ids":[364077,364078,364079],"delay":11755.8} +{"session_id":"sess-f6dc8f633437","input_length":1648,"output_length":120,"hash_ids":[364080,364081,364082,364083],"delay":254.8} +{"session_id":"sess-f6dc8f633437","input_length":985,"output_length":34,"hash_ids":[364084,364085],"delay":1398.7} +{"session_id":"sess-f6dc8f633437","input_length":596,"output_length":1130,"hash_ids":[364086,364087],"delay":7342.7} +{"session_id":"sess-f6dc8f633437","input_length":995,"output_length":393,"hash_ids":[364088,364089],"delay":744.9} +{"session_id":"sess-f6dc8f633437","input_length":1068,"output_length":197,"hash_ids":[364090,364091,364092],"delay":513.3} +{"session_id":"sess-f6dc8f633437","input_length":768,"output_length":602,"hash_ids":[364093,364094],"delay":5203.6} +{"session_id":"sess-f6dc8f633437","input_length":279,"output_length":86,"hash_ids":[364095],"delay":283.9} +{"session_id":"sess-f6dc8f633437","input_length":192,"output_length":259,"hash_ids":[364096],"delay":1720.7} +{"session_id":"sess-f6dc8f633437","input_length":166,"output_length":150,"hash_ids":[364097],"delay":20087.5} +{"session_id":"sess-f6dc8f633437","input_length":1257,"output_length":47,"hash_ids":[364098,364099,364100],"delay":155.1} +{"session_id":"sess-f6dc8f633437","input_length":2171,"output_length":123,"hash_ids":[364101,364102,364103,364104,364105],"delay":175.2} +{"session_id":"sess-23dd7fe3e448","input_length":26608,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-23dd7fe3e448","input_length":495,"output_length":495,"hash_ids":[364106],"delay":9194.3} +{"session_id":"sess-23dd7fe3e448","input_length":330,"output_length":85,"hash_ids":[364107],"delay":353.8} +{"session_id":"sess-7703bb5818aa","input_length":35817,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,372032,372033,372034,372035,372036,372037,372038,372039,372040,372041,372042,372043,372044,372045,372046,372047,372048,372049],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7703bb5818aa","input_length":1164,"output_length":91,"hash_ids":[372050,372051,372052],"delay":49426.6} +{"session_id":"sess-7703bb5818aa","input_length":1761,"output_length":630,"hash_ids":[372053,372054,372055,372056],"delay":6772.0} +{"session_id":"sess-7703bb5818aa","input_length":841,"output_length":176,"hash_ids":[372057,372058],"delay":1957.6} +{"session_id":"sess-7703bb5818aa","input_length":1441,"output_length":153,"hash_ids":[372059,372060,372061],"delay":27696.2} +{"session_id":"sess-7703bb5818aa","input_length":1299,"output_length":90,"hash_ids":[372062,372063,372064],"delay":8370.0} +{"session_id":"sess-7703bb5818aa","input_length":1949,"output_length":202,"hash_ids":[372065,372066,372067,372068],"delay":4511.6} +{"session_id":"sess-7703bb5818aa","input_length":486,"output_length":104,"hash_ids":[372069],"delay":1539.1} +{"session_id":"sess-7703bb5818aa","input_length":570,"output_length":274,"hash_ids":[372070,372071],"delay":116.4} +{"session_id":"sess-7703bb5818aa","input_length":455,"output_length":30,"hash_ids":[372072],"delay":1242.0} +{"session_id":"sess-7703bb5818aa","input_length":380,"output_length":66,"hash_ids":[372073],"delay":413.0} +{"session_id":"sess-7703bb5818aa","input_length":1002,"output_length":647,"hash_ids":[372074,372075],"delay":1051.9} +{"session_id":"sess-7703bb5818aa","input_length":658,"output_length":722,"hash_ids":[372076,372077],"delay":436.5} +{"session_id":"sess-7703bb5818aa","input_length":1891,"output_length":429,"hash_ids":[372078,372079,372080,372081],"delay":311.1} +{"session_id":"sess-7703bb5818aa","input_length":1232,"output_length":193,"hash_ids":[372082,372083,372084],"delay":202.6} +{"session_id":"sess-7703bb5818aa","input_length":1171,"output_length":70,"hash_ids":[372085,372086,372087],"delay":982.0} +{"session_id":"sess-7703bb5818aa","input_length":290,"output_length":279,"hash_ids":[372088],"delay":94.9} +{"session_id":"sess-7703bb5818aa","input_length":2685,"output_length":80,"hash_ids":[372089,372090,372091,372092,372093,372094],"delay":211.4} +{"session_id":"sess-7703bb5818aa","input_length":522,"output_length":231,"hash_ids":[372095,372096],"delay":436.2} +{"session_id":"sess-7703bb5818aa","input_length":254,"output_length":289,"hash_ids":[372097],"delay":720.1} +{"session_id":"sess-7703bb5818aa","input_length":453,"output_length":669,"hash_ids":[372098],"delay":678.3} +{"session_id":"sess-7703bb5818aa","input_length":2372,"output_length":48,"hash_ids":[372099,372100,372101,372102,372103],"delay":412.0} +{"session_id":"sess-9c57b0f62bcf","input_length":30453,"output_length":773,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,376032,376033,376034,376035,376036,376037,376038,376039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9c57b0f62bcf","input_length":559,"output_length":168,"hash_ids":[376040,376041],"delay":722.9} +{"session_id":"sess-9c57b0f62bcf","input_length":2546,"output_length":302,"hash_ids":[376042,376043,376044,376045,376046],"delay":18047.4} +{"session_id":"sess-9c57b0f62bcf","input_length":1325,"output_length":916,"hash_ids":[376047,376048,376049],"delay":894.5} +{"session_id":"sess-9c57b0f62bcf","input_length":905,"output_length":164,"hash_ids":[376050,376051],"delay":1680.6} +{"session_id":"sess-9c57b0f62bcf","input_length":2512,"output_length":108,"hash_ids":[376052,376053,376054,376055,376056],"delay":21156.4} +{"session_id":"sess-9c57b0f62bcf","input_length":888,"output_length":205,"hash_ids":[376057,376058],"delay":8628.4} +{"session_id":"sess-9c57b0f62bcf","input_length":180,"output_length":604,"hash_ids":[376059],"delay":1032.8} +{"session_id":"sess-9c57b0f62bcf","input_length":131,"output_length":30,"hash_ids":[376060],"delay":23415.6} +{"session_id":"sess-9c57b0f62bcf","input_length":1554,"output_length":277,"hash_ids":[376061,376062,376063,376064],"delay":1225.0} +{"session_id":"sess-9c57b0f62bcf","input_length":1992,"output_length":553,"hash_ids":[376065,376066,376067,376068],"delay":1887.7} +{"session_id":"sess-9c57b0f62bcf","input_length":197,"output_length":285,"hash_ids":[376069],"delay":227.4} +{"session_id":"sess-9c57b0f62bcf","input_length":568,"output_length":34,"hash_ids":[376070,376071],"delay":18899.7} +{"session_id":"sess-9c57b0f62bcf","input_length":1451,"output_length":157,"hash_ids":[376072,376073,376074],"delay":12121.5} +{"session_id":"sess-9c57b0f62bcf","input_length":1364,"output_length":111,"hash_ids":[376075,376076,376077],"delay":1595.9} +{"session_id":"sess-9c57b0f62bcf","input_length":1018,"output_length":148,"hash_ids":[376078,376079],"delay":13631.7} +{"session_id":"sess-9c57b0f62bcf","input_length":1251,"output_length":123,"hash_ids":[376080,376081,376082],"delay":171.3} +{"session_id":"sess-9c57b0f62bcf","input_length":362,"output_length":795,"hash_ids":[376083],"delay":455.3} +{"session_id":"sess-9c57b0f62bcf","input_length":693,"output_length":729,"hash_ids":[376084,376085],"delay":990.7} +{"session_id":"sess-9c57b0f62bcf","input_length":533,"output_length":155,"hash_ids":[376086,376087],"delay":704.8} +{"session_id":"sess-9c57b0f62bcf","input_length":362,"output_length":497,"hash_ids":[376088],"delay":891.0} +{"session_id":"sess-9c57b0f62bcf","input_length":2378,"output_length":282,"hash_ids":[376089,376090,376091,376092,376093],"delay":614.7} +{"session_id":"sess-9c57b0f62bcf","input_length":982,"output_length":508,"hash_ids":[376094,376095],"delay":5207.7} +{"session_id":"sess-9c57b0f62bcf","input_length":1006,"output_length":229,"hash_ids":[376096,376097],"delay":504.7} +{"session_id":"sess-9c57b0f62bcf","input_length":256,"output_length":205,"hash_ids":[376098],"delay":103.2} +{"session_id":"sess-9c57b0f62bcf","input_length":151,"output_length":362,"hash_ids":[376099],"delay":416.2} +{"session_id":"sess-1228e236a434","input_length":26426,"output_length":103,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451],"timestamp":0.0,"group_id":37} +{"session_id":"sess-1228e236a434","input_length":409,"output_length":93,"hash_ids":[376100],"delay":1670.2} +{"session_id":"sess-1228e236a434","input_length":1754,"output_length":1134,"hash_ids":[376101,376102,376103,376104],"delay":1568.1} +{"session_id":"sess-1228e236a434","input_length":890,"output_length":591,"hash_ids":[376105,376106],"delay":1299.9} +{"session_id":"sess-1228e236a434","input_length":1364,"output_length":233,"hash_ids":[376107,376108,376109],"delay":1074.6} +{"session_id":"sess-1228e236a434","input_length":209,"output_length":125,"hash_ids":[376110],"delay":664.6} +{"session_id":"sess-1228e236a434","input_length":393,"output_length":689,"hash_ids":[376111],"delay":4490.5} +{"session_id":"sess-1228e236a434","input_length":362,"output_length":240,"hash_ids":[376112],"delay":9577.0} +{"session_id":"sess-1228e236a434","input_length":241,"output_length":547,"hash_ids":[376113],"delay":1444.7} +{"session_id":"sess-1228e236a434","input_length":850,"output_length":80,"hash_ids":[376114,376115],"delay":755.2} +{"session_id":"sess-1228e236a434","input_length":2417,"output_length":137,"hash_ids":[376116,376117,376118,376119,376120],"delay":1451.7} +{"session_id":"sess-1228e236a434","input_length":1398,"output_length":60,"hash_ids":[376121,376122,376123],"delay":755.6} +{"session_id":"sess-1228e236a434","input_length":1653,"output_length":140,"hash_ids":[376124,376125,376126,376127],"delay":767.8} +{"session_id":"sess-1228e236a434","input_length":1214,"output_length":170,"hash_ids":[376128,376129,376130],"delay":353.3} +{"session_id":"sess-1228e236a434","input_length":955,"output_length":118,"hash_ids":[376131,376132],"delay":5517.5} +{"session_id":"sess-1228e236a434","input_length":2076,"output_length":735,"hash_ids":[376133,376134,376135,376136,376137],"delay":806.5} +{"session_id":"sess-1228e236a434","input_length":2928,"output_length":53,"hash_ids":[376138,376139,376140,376141,376142,376143],"delay":743.3} +{"session_id":"sess-1228e236a434","input_length":968,"output_length":653,"hash_ids":[376144,376145],"delay":20266.6} +{"session_id":"sess-1228e236a434","input_length":1612,"output_length":45,"hash_ids":[376146,376147,376148,376149],"delay":3368.3} +{"session_id":"sess-1228e236a434","input_length":1184,"output_length":234,"hash_ids":[376150,376151,376152],"delay":1794.0} +{"session_id":"sess-1228e236a434","input_length":595,"output_length":634,"hash_ids":[376153,376154],"delay":207.8} +{"session_id":"sess-1228e236a434","input_length":940,"output_length":404,"hash_ids":[376155,376156],"delay":5551.0} +{"session_id":"sess-1228e236a434","input_length":780,"output_length":929,"hash_ids":[376157,376158],"delay":17675.1} +{"session_id":"sess-1228e236a434","input_length":1016,"output_length":335,"hash_ids":[376159,376160],"delay":413.8} +{"session_id":"sess-1228e236a434","input_length":1042,"output_length":172,"hash_ids":[376161,376162,376163],"delay":660.2} +{"session_id":"sess-1228e236a434","input_length":1044,"output_length":381,"hash_ids":[376164,376165,376166],"delay":1747.9} +{"session_id":"sess-1228e236a434","input_length":1769,"output_length":321,"hash_ids":[376167,376168,376169,376170],"delay":6893.3} +{"session_id":"sess-477fa3ec2f5a","input_length":26605,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051],"timestamp":0.0,"group_id":20} +{"session_id":"sess-6f712d1a8c70","input_length":26387,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051],"timestamp":0.0,"group_id":5} +{"session_id":"sess-6f712d1a8c70","input_length":1836,"output_length":52,"hash_ids":[376171,376172,376173,376174],"delay":21498.7} +{"session_id":"sess-6f712d1a8c70","input_length":156,"output_length":89,"hash_ids":[376175],"delay":53651.6} +{"session_id":"sess-6f712d1a8c70","input_length":159,"output_length":166,"hash_ids":[376176],"delay":185.9} +{"session_id":"sess-6f712d1a8c70","input_length":229,"output_length":138,"hash_ids":[376177],"delay":558.0} +{"session_id":"sess-6f712d1a8c70","input_length":441,"output_length":223,"hash_ids":[376178],"delay":15088.0} +{"session_id":"sess-6f712d1a8c70","input_length":808,"output_length":647,"hash_ids":[376179,376180],"delay":18898.5} +{"session_id":"sess-6f712d1a8c70","input_length":565,"output_length":101,"hash_ids":[376181,376182],"delay":816.2} +{"session_id":"sess-6f712d1a8c70","input_length":80,"output_length":172,"hash_ids":[376183],"delay":928.4} +{"session_id":"sess-6f712d1a8c70","input_length":115,"output_length":248,"hash_ids":[376184],"delay":9392.2} +{"session_id":"sess-6f712d1a8c70","input_length":1241,"output_length":240,"hash_ids":[376185,376186,376187],"delay":496.9} +{"session_id":"sess-6f712d1a8c70","input_length":2370,"output_length":30,"hash_ids":[376188,376189,376190,376191,376192],"delay":1265.7} +{"session_id":"sess-6f712d1a8c70","input_length":818,"output_length":45,"hash_ids":[376193,376194],"delay":3490.1} +{"session_id":"sess-6f712d1a8c70","input_length":411,"output_length":503,"hash_ids":[376195],"delay":1816.9} +{"session_id":"sess-6f712d1a8c70","input_length":898,"output_length":175,"hash_ids":[376196,376197],"delay":2295.5} +{"session_id":"sess-6f712d1a8c70","input_length":1083,"output_length":431,"hash_ids":[376198,376199,376200],"delay":317.5} +{"session_id":"sess-6f712d1a8c70","input_length":1468,"output_length":112,"hash_ids":[376201,376202,376203],"delay":51063.8} +{"session_id":"sess-6f712d1a8c70","input_length":2128,"output_length":189,"hash_ids":[376204,376205,376206,376207,376208],"delay":5514.7} +{"session_id":"sess-6f712d1a8c70","input_length":931,"output_length":123,"hash_ids":[376209,376210],"delay":275.4} +{"session_id":"sess-6f712d1a8c70","input_length":660,"output_length":1199,"hash_ids":[376211,376212],"delay":699.0} +{"session_id":"sess-6f712d1a8c70","input_length":341,"output_length":539,"hash_ids":[376213],"delay":1310.8} +{"session_id":"sess-6f712d1a8c70","input_length":1639,"output_length":275,"hash_ids":[376214,376215,376216,376217],"delay":367.2} +{"session_id":"sess-6f712d1a8c70","input_length":373,"output_length":60,"hash_ids":[376218],"delay":1246.4} +{"session_id":"sess-6f712d1a8c70","input_length":72,"output_length":89,"hash_ids":[376219],"delay":862.1} +{"session_id":"sess-6f712d1a8c70","input_length":106,"output_length":74,"hash_ids":[376220],"delay":209.6} +{"session_id":"sess-6f712d1a8c70","input_length":2032,"output_length":107,"hash_ids":[376221,376222,376223,376224],"delay":221.7} +{"session_id":"sess-6f712d1a8c70","input_length":585,"output_length":499,"hash_ids":[376225,376226],"delay":220.9} +{"session_id":"sess-6f712d1a8c70","input_length":946,"output_length":105,"hash_ids":[376227,376228],"delay":22409.6} +{"session_id":"sess-6f712d1a8c70","input_length":1181,"output_length":647,"hash_ids":[376229,376230,376231],"delay":2385.5} +{"session_id":"sess-6f712d1a8c70","input_length":1147,"output_length":296,"hash_ids":[376232,376233,376234],"delay":442.9} +{"session_id":"sess-5d846c11c48b","input_length":27784,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,392032,392033,392034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5d846c11c48b","input_length":799,"output_length":233,"hash_ids":[392035,392036],"delay":1771.0} +{"session_id":"sess-5d846c11c48b","input_length":969,"output_length":30,"hash_ids":[392037,392038],"delay":355.6} +{"session_id":"sess-5d846c11c48b","input_length":947,"output_length":133,"hash_ids":[392039,392040],"delay":22431.9} +{"session_id":"sess-5d846c11c48b","input_length":517,"output_length":69,"hash_ids":[392041,392042],"delay":648.4} +{"session_id":"sess-5d846c11c48b","input_length":691,"output_length":487,"hash_ids":[392043,392044],"delay":4629.8} +{"session_id":"sess-5d846c11c48b","input_length":611,"output_length":327,"hash_ids":[392045,392046],"delay":651.8} +{"session_id":"sess-5d846c11c48b","input_length":153,"output_length":67,"hash_ids":[392047],"delay":122.9} +{"session_id":"sess-5d846c11c48b","input_length":1024,"output_length":75,"hash_ids":[392048,392049],"delay":1288.7} +{"session_id":"sess-5d846c11c48b","input_length":673,"output_length":54,"hash_ids":[392050,392051],"delay":2050.7} +{"session_id":"sess-5d846c11c48b","input_length":832,"output_length":60,"hash_ids":[392052,392053],"delay":11298.3} +{"session_id":"sess-5d846c11c48b","input_length":624,"output_length":429,"hash_ids":[392054,392055],"delay":1535.5} +{"session_id":"sess-5d846c11c48b","input_length":427,"output_length":168,"hash_ids":[392056],"delay":535.4} +{"session_id":"sess-5d846c11c48b","input_length":452,"output_length":114,"hash_ids":[392057],"delay":256.9} +{"session_id":"sess-5d846c11c48b","input_length":2703,"output_length":396,"hash_ids":[392058,392059,392060,392061,392062,392063],"delay":7193.9} +{"session_id":"sess-5d846c11c48b","input_length":2468,"output_length":761,"hash_ids":[392064,392065,392066,392067,392068],"delay":882.0} +{"session_id":"sess-5d846c11c48b","input_length":1014,"output_length":194,"hash_ids":[392069,392070],"delay":838.9} +{"session_id":"sess-5d846c11c48b","input_length":1000,"output_length":182,"hash_ids":[392071,392072],"delay":9660.0} +{"session_id":"sess-5d846c11c48b","input_length":832,"output_length":78,"hash_ids":[392073,392074],"delay":669.3} +{"session_id":"sess-5d846c11c48b","input_length":606,"output_length":808,"hash_ids":[392075,392076],"delay":1852.0} +{"session_id":"sess-5d846c11c48b","input_length":1263,"output_length":381,"hash_ids":[392077,392078,392079],"delay":6208.5} +{"session_id":"sess-5d846c11c48b","input_length":2525,"output_length":202,"hash_ids":[392080,392081,392082,392083,392084],"delay":11632.4} +{"session_id":"sess-5d846c11c48b","input_length":1603,"output_length":111,"hash_ids":[392085,392086,392087,392088],"delay":276.3} +{"session_id":"sess-5d846c11c48b","input_length":913,"output_length":279,"hash_ids":[392089,392090],"delay":226.4} +{"session_id":"sess-5d846c11c48b","input_length":877,"output_length":880,"hash_ids":[392091,392092],"delay":851.4} +{"session_id":"sess-5d846c11c48b","input_length":1857,"output_length":257,"hash_ids":[392093,392094,392095,392096],"delay":91.6} +{"session_id":"sess-5d846c11c48b","input_length":1067,"output_length":122,"hash_ids":[392097,392098,392099],"delay":1264.3} +{"session_id":"sess-5d846c11c48b","input_length":311,"output_length":64,"hash_ids":[392100],"delay":474.5} +{"session_id":"sess-5d846c11c48b","input_length":479,"output_length":75,"hash_ids":[392101],"delay":944.8} +{"session_id":"sess-5d846c11c48b","input_length":697,"output_length":54,"hash_ids":[392102,392103],"delay":1044.2} +{"session_id":"sess-e68e346cc108","input_length":26846,"output_length":482,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,396032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-69d3055ddd4b","input_length":29314,"output_length":731,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,400032,400033,400034,400035,400036,400037],"timestamp":0.0,"group_id":18} +{"session_id":"sess-69d3055ddd4b","input_length":192,"output_length":281,"hash_ids":[400038],"delay":945.1} +{"session_id":"sess-69d3055ddd4b","input_length":773,"output_length":350,"hash_ids":[400039,400040],"delay":3142.1} +{"session_id":"sess-69d3055ddd4b","input_length":1416,"output_length":356,"hash_ids":[400041,400042,400043],"delay":500.5} +{"session_id":"sess-69d3055ddd4b","input_length":551,"output_length":168,"hash_ids":[400044,400045],"delay":6754.3} +{"session_id":"sess-69d3055ddd4b","input_length":423,"output_length":1054,"hash_ids":[400046],"delay":44493.1} +{"session_id":"sess-69d3055ddd4b","input_length":697,"output_length":80,"hash_ids":[400047,400048],"delay":1070.4} +{"session_id":"sess-69d3055ddd4b","input_length":627,"output_length":110,"hash_ids":[400049,400050],"delay":3698.7} +{"session_id":"sess-69d3055ddd4b","input_length":1372,"output_length":140,"hash_ids":[400051,400052,400053],"delay":26624.1} +{"session_id":"sess-69d3055ddd4b","input_length":1660,"output_length":762,"hash_ids":[400054,400055,400056,400057],"delay":1721.0} +{"session_id":"sess-69d3055ddd4b","input_length":922,"output_length":282,"hash_ids":[400058,400059],"delay":19114.5} +{"session_id":"sess-69d3055ddd4b","input_length":275,"output_length":383,"hash_ids":[400060],"delay":9535.5} +{"session_id":"sess-69d3055ddd4b","input_length":244,"output_length":424,"hash_ids":[400061],"delay":398.3} +{"session_id":"sess-69d3055ddd4b","input_length":514,"output_length":450,"hash_ids":[400062,400063],"delay":695.9} +{"session_id":"sess-69d3055ddd4b","input_length":196,"output_length":680,"hash_ids":[400064],"delay":8505.9} +{"session_id":"sess-69d3055ddd4b","input_length":954,"output_length":30,"hash_ids":[400065,400066],"delay":3781.7} +{"session_id":"sess-69d3055ddd4b","input_length":2624,"output_length":612,"hash_ids":[400067,400068,400069,400070,400071,400072],"delay":750.5} +{"session_id":"sess-69d3055ddd4b","input_length":806,"output_length":271,"hash_ids":[400073,400074],"delay":347.1} +{"session_id":"sess-69d3055ddd4b","input_length":2185,"output_length":346,"hash_ids":[400075,400076,400077,400078,400079],"delay":1434.8} +{"session_id":"sess-69d3055ddd4b","input_length":1023,"output_length":861,"hash_ids":[400080,400081],"delay":1740.4} +{"session_id":"sess-69d3055ddd4b","input_length":2223,"output_length":149,"hash_ids":[400082,400083,400084,400085,400086],"delay":420.5} +{"session_id":"sess-69d3055ddd4b","input_length":1127,"output_length":142,"hash_ids":[400087,400088,400089],"delay":530.2} +{"session_id":"sess-69d3055ddd4b","input_length":748,"output_length":214,"hash_ids":[400090,400091],"delay":1454.1} +{"session_id":"sess-69d3055ddd4b","input_length":2031,"output_length":231,"hash_ids":[400092,400093,400094,400095],"delay":848.8} +{"session_id":"sess-69d3055ddd4b","input_length":943,"output_length":122,"hash_ids":[400096,400097],"delay":2638.5} +{"session_id":"sess-69d3055ddd4b","input_length":701,"output_length":363,"hash_ids":[400098,400099],"delay":350.1} +{"session_id":"sess-69d3055ddd4b","input_length":455,"output_length":496,"hash_ids":[400100],"delay":377.3} +{"session_id":"sess-349156efebb5","input_length":36906,"output_length":737,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,404032,404033,404034,404035,404036,404037,404038,404039,404040,404041,404042,404043,404044,404045,404046,404047,404048,404049,404050,404051,404052],"timestamp":0.0,"group_id":14} +{"session_id":"sess-349156efebb5","input_length":2648,"output_length":220,"hash_ids":[404053,404054,404055,404056,404057,404058],"delay":1828.6} +{"session_id":"sess-349156efebb5","input_length":494,"output_length":176,"hash_ids":[404059],"delay":1262.9} +{"session_id":"sess-349156efebb5","input_length":405,"output_length":243,"hash_ids":[404060],"delay":276.3} +{"session_id":"sess-349156efebb5","input_length":1831,"output_length":538,"hash_ids":[404061,404062,404063,404064],"delay":1631.4} +{"session_id":"sess-349156efebb5","input_length":92,"output_length":151,"hash_ids":[404065],"delay":1140.3} +{"session_id":"sess-349156efebb5","input_length":302,"output_length":161,"hash_ids":[404066],"delay":2955.2} +{"session_id":"sess-349156efebb5","input_length":1967,"output_length":135,"hash_ids":[404067,404068,404069,404070],"delay":231.0} +{"session_id":"sess-349156efebb5","input_length":376,"output_length":75,"hash_ids":[404071],"delay":751.4} +{"session_id":"sess-349156efebb5","input_length":1056,"output_length":161,"hash_ids":[404072,404073,404074],"delay":685.2} +{"session_id":"sess-349156efebb5","input_length":170,"output_length":133,"hash_ids":[404075],"delay":641.8} +{"session_id":"sess-c5871638c608","input_length":26646,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,408032],"timestamp":0.0,"group_id":4} +{"session_id":"sess-c5871638c608","input_length":195,"output_length":34,"hash_ids":[408033],"delay":1952.3} +{"session_id":"sess-c5871638c608","input_length":857,"output_length":427,"hash_ids":[408034,408035],"delay":1376.8} +{"session_id":"sess-c5871638c608","input_length":1458,"output_length":406,"hash_ids":[408036,408037,408038],"delay":703.0} +{"session_id":"sess-c5871638c608","input_length":780,"output_length":80,"hash_ids":[408039,408040],"delay":698.8} +{"session_id":"sess-c5871638c608","input_length":1893,"output_length":382,"hash_ids":[408041,408042,408043,408044],"delay":2292.4} +{"session_id":"sess-c5871638c608","input_length":1859,"output_length":30,"hash_ids":[408045,408046,408047,408048],"delay":14138.9} +{"session_id":"sess-c5871638c608","input_length":1784,"output_length":194,"hash_ids":[408049,408050,408051,408052],"delay":15185.4} +{"session_id":"sess-c5871638c608","input_length":329,"output_length":284,"hash_ids":[408053],"delay":612.3} +{"session_id":"sess-c5871638c608","input_length":768,"output_length":110,"hash_ids":[408054,408055],"delay":889.8} +{"session_id":"sess-c5871638c608","input_length":256,"output_length":169,"hash_ids":[408056],"delay":713.1} +{"session_id":"sess-c5871638c608","input_length":2011,"output_length":161,"hash_ids":[408057,408058,408059,408060],"delay":27110.5} +{"session_id":"sess-c5871638c608","input_length":1009,"output_length":218,"hash_ids":[408061,408062],"delay":385.0} +{"session_id":"sess-c5871638c608","input_length":612,"output_length":74,"hash_ids":[408063,408064],"delay":226.8} +{"session_id":"sess-c5871638c608","input_length":796,"output_length":39,"hash_ids":[408065,408066],"delay":2600.8} +{"session_id":"sess-c5871638c608","input_length":478,"output_length":137,"hash_ids":[408067],"delay":10541.2} +{"session_id":"sess-c5871638c608","input_length":831,"output_length":68,"hash_ids":[408068,408069],"delay":751.1} +{"session_id":"sess-c5871638c608","input_length":861,"output_length":327,"hash_ids":[408070,408071],"delay":5971.9} +{"session_id":"sess-c5871638c608","input_length":244,"output_length":157,"hash_ids":[408072],"delay":2489.3} +{"session_id":"sess-c5871638c608","input_length":770,"output_length":65,"hash_ids":[408073,408074],"delay":1493.3} +{"session_id":"sess-c5871638c608","input_length":738,"output_length":149,"hash_ids":[408075,408076],"delay":499.7} +{"session_id":"sess-c5871638c608","input_length":354,"output_length":128,"hash_ids":[408077],"delay":386.6} +{"session_id":"sess-c5871638c608","input_length":657,"output_length":98,"hash_ids":[408078,408079],"delay":1377.7} +{"session_id":"sess-c5871638c608","input_length":1274,"output_length":191,"hash_ids":[408080,408081,408082],"delay":6381.9} +{"session_id":"sess-c5871638c608","input_length":241,"output_length":30,"hash_ids":[408083],"delay":1668.8} +{"session_id":"sess-c5871638c608","input_length":2504,"output_length":148,"hash_ids":[408084,408085,408086,408087,408088],"delay":1725.0} +{"session_id":"sess-c5871638c608","input_length":2742,"output_length":80,"hash_ids":[408089,408090,408091,408092,408093,408094],"delay":983.8} +{"session_id":"sess-c5871638c608","input_length":1683,"output_length":151,"hash_ids":[408095,408096,408097,408098],"delay":3549.8} +{"session_id":"sess-c5871638c608","input_length":2000,"output_length":97,"hash_ids":[408099,408100,408101,408102],"delay":498.5} +{"session_id":"sess-c5871638c608","input_length":625,"output_length":954,"hash_ids":[408103,408104],"delay":434.4} +{"session_id":"sess-c5871638c608","input_length":730,"output_length":145,"hash_ids":[408105,408106],"delay":4211.4} +{"session_id":"sess-c5871638c608","input_length":240,"output_length":1291,"hash_ids":[408107],"delay":1845.5} +{"session_id":"sess-1ba13fd68280","input_length":35738,"output_length":194,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,412032,412033,412034,412035,412036,412037,412038,412039,412040,412041,412042,412043,412044,412045,412046,412047,412048,412049],"timestamp":0.0,"group_id":39} +{"session_id":"sess-1ba13fd68280","input_length":323,"output_length":111,"hash_ids":[412050],"delay":9884.2} +{"session_id":"sess-1ba13fd68280","input_length":677,"output_length":104,"hash_ids":[412051,412052],"delay":605.6} +{"session_id":"sess-1ba13fd68280","input_length":1460,"output_length":786,"hash_ids":[412053,412054,412055],"delay":656.8} +{"session_id":"sess-1ba13fd68280","input_length":1836,"output_length":133,"hash_ids":[412056,412057,412058,412059],"delay":11730.1} +{"session_id":"sess-1ba13fd68280","input_length":667,"output_length":131,"hash_ids":[412060,412061],"delay":26400.4} +{"session_id":"sess-1ba13fd68280","input_length":1035,"output_length":190,"hash_ids":[412062,412063,412064],"delay":366.8} +{"session_id":"sess-1ba13fd68280","input_length":358,"output_length":519,"hash_ids":[412065],"delay":516.3} +{"session_id":"sess-1ba13fd68280","input_length":74,"output_length":57,"hash_ids":[412066],"delay":2169.2} +{"session_id":"sess-1ba13fd68280","input_length":313,"output_length":202,"hash_ids":[412067],"delay":975.6} +{"session_id":"sess-1ba13fd68280","input_length":891,"output_length":98,"hash_ids":[412068,412069],"delay":536.6} +{"session_id":"sess-1ba13fd68280","input_length":1875,"output_length":30,"hash_ids":[412070,412071,412072,412073],"delay":8022.5} +{"session_id":"sess-1ba13fd68280","input_length":972,"output_length":137,"hash_ids":[412074,412075],"delay":34350.7} +{"session_id":"sess-1ba13fd68280","input_length":979,"output_length":805,"hash_ids":[412076,412077],"delay":322.0} +{"session_id":"sess-1ba13fd68280","input_length":547,"output_length":359,"hash_ids":[412078,412079],"delay":15585.2} +{"session_id":"sess-1ba13fd68280","input_length":807,"output_length":67,"hash_ids":[412080,412081],"delay":8460.8} +{"session_id":"sess-1ba13fd68280","input_length":991,"output_length":43,"hash_ids":[412082,412083],"delay":318.8} +{"session_id":"sess-c62fc224d405","input_length":26725,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,416032],"timestamp":0.0,"group_id":14} +{"session_id":"sess-c62fc224d405","input_length":419,"output_length":142,"hash_ids":[416033],"delay":2601.2} +{"session_id":"sess-c62fc224d405","input_length":336,"output_length":103,"hash_ids":[416034],"delay":4047.6} +{"session_id":"sess-c62fc224d405","input_length":350,"output_length":209,"hash_ids":[416035],"delay":34515.2} +{"session_id":"sess-c62fc224d405","input_length":1978,"output_length":46,"hash_ids":[416036,416037,416038,416039],"delay":9223.5} +{"session_id":"sess-c62fc224d405","input_length":707,"output_length":708,"hash_ids":[416040,416041],"delay":10492.3} +{"session_id":"sess-c62fc224d405","input_length":960,"output_length":59,"hash_ids":[416042,416043],"delay":948.3} +{"session_id":"sess-c62fc224d405","input_length":240,"output_length":221,"hash_ids":[416044],"delay":584.0} +{"session_id":"sess-c62fc224d405","input_length":475,"output_length":168,"hash_ids":[416045],"delay":9740.8} +{"session_id":"sess-c62fc224d405","input_length":561,"output_length":226,"hash_ids":[416046,416047],"delay":539.0} +{"session_id":"sess-c62fc224d405","input_length":2148,"output_length":1058,"hash_ids":[416048,416049,416050,416051,416052],"delay":30185.1} +{"session_id":"sess-c62fc224d405","input_length":949,"output_length":349,"hash_ids":[416053,416054],"delay":1752.8} +{"session_id":"sess-c62fc224d405","input_length":792,"output_length":743,"hash_ids":[416055,416056],"delay":809.1} +{"session_id":"sess-c62fc224d405","input_length":2970,"output_length":721,"hash_ids":[416057,416058,416059,416060,416061,416062],"delay":3831.6} +{"session_id":"sess-c62fc224d405","input_length":149,"output_length":322,"hash_ids":[416063],"delay":663.2} +{"session_id":"sess-c62fc224d405","input_length":562,"output_length":66,"hash_ids":[416064,416065],"delay":54153.1} +{"session_id":"sess-c62fc224d405","input_length":2092,"output_length":67,"hash_ids":[416066,416067,416068,416069,416070],"delay":1108.7} +{"session_id":"sess-c62fc224d405","input_length":1024,"output_length":530,"hash_ids":[416071,416072],"delay":988.0} +{"session_id":"sess-c62fc224d405","input_length":1593,"output_length":89,"hash_ids":[416073,416074,416075,416076],"delay":312.3} +{"session_id":"sess-c62fc224d405","input_length":2023,"output_length":48,"hash_ids":[416077,416078,416079,416080],"delay":575.7} +{"session_id":"sess-c62fc224d405","input_length":536,"output_length":140,"hash_ids":[416081,416082],"delay":550.7} +{"session_id":"sess-c62fc224d405","input_length":1621,"output_length":217,"hash_ids":[416083,416084,416085,416086],"delay":363.9} +{"session_id":"sess-7df420e05af7","input_length":30539,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,420032,420033,420034,420035,420036,420037,420038,420039],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7df420e05af7","input_length":622,"output_length":330,"hash_ids":[420040,420041],"delay":1203.1} +{"session_id":"sess-7df420e05af7","input_length":1125,"output_length":30,"hash_ids":[420042,420043,420044],"delay":2707.1} +{"session_id":"sess-7df420e05af7","input_length":1763,"output_length":255,"hash_ids":[420045,420046,420047,420048],"delay":764.8} +{"session_id":"sess-7df420e05af7","input_length":2461,"output_length":119,"hash_ids":[420049,420050,420051,420052,420053],"delay":1584.3} +{"session_id":"sess-7df420e05af7","input_length":493,"output_length":159,"hash_ids":[420054],"delay":1002.1} +{"session_id":"sess-7df420e05af7","input_length":111,"output_length":289,"hash_ids":[420055],"delay":33283.2} +{"session_id":"sess-7df420e05af7","input_length":1040,"output_length":30,"hash_ids":[420056,420057,420058],"delay":9362.4} +{"session_id":"sess-7df420e05af7","input_length":1391,"output_length":509,"hash_ids":[420059,420060,420061],"delay":711.0} +{"session_id":"sess-7df420e05af7","input_length":906,"output_length":112,"hash_ids":[420062,420063],"delay":29025.1} +{"session_id":"sess-7df420e05af7","input_length":180,"output_length":122,"hash_ids":[420064],"delay":840.4} +{"session_id":"sess-7df420e05af7","input_length":945,"output_length":281,"hash_ids":[420065,420066],"delay":2357.9} +{"session_id":"sess-7df420e05af7","input_length":2808,"output_length":176,"hash_ids":[420067,420068,420069,420070,420071,420072],"delay":285.9} +{"session_id":"sess-7df420e05af7","input_length":1745,"output_length":487,"hash_ids":[420073,420074,420075,420076],"delay":18855.5} +{"session_id":"sess-7df420e05af7","input_length":881,"output_length":71,"hash_ids":[420077,420078],"delay":848.5} +{"session_id":"sess-7df420e05af7","input_length":1170,"output_length":274,"hash_ids":[420079,420080,420081],"delay":223.2} +{"session_id":"sess-7df420e05af7","input_length":440,"output_length":123,"hash_ids":[420082],"delay":6388.7} +{"session_id":"sess-7df420e05af7","input_length":645,"output_length":99,"hash_ids":[420083,420084],"delay":740.3} +{"session_id":"sess-7df420e05af7","input_length":2320,"output_length":453,"hash_ids":[420085,420086,420087,420088,420089],"delay":900.0} +{"session_id":"sess-7df420e05af7","input_length":1754,"output_length":295,"hash_ids":[420090,420091,420092,420093],"delay":410.7} +{"session_id":"sess-7df420e05af7","input_length":1134,"output_length":430,"hash_ids":[420094,420095,420096],"delay":883.3} +{"session_id":"sess-7df420e05af7","input_length":279,"output_length":244,"hash_ids":[420097],"delay":621.3} +{"session_id":"sess-7df420e05af7","input_length":2164,"output_length":232,"hash_ids":[420098,420099,420100,420101,420102],"delay":645.8} +{"session_id":"sess-e5bee292804d","input_length":28202,"output_length":349,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,424032,424033,424034,424035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e5bee292804d","input_length":633,"output_length":240,"hash_ids":[424036,424037],"delay":1011.7} +{"session_id":"sess-e5bee292804d","input_length":396,"output_length":124,"hash_ids":[424038],"delay":32038.4} +{"session_id":"sess-e5bee292804d","input_length":488,"output_length":119,"hash_ids":[424039],"delay":6213.7} +{"session_id":"sess-e5bee292804d","input_length":2329,"output_length":324,"hash_ids":[424040,424041,424042,424043,424044],"delay":498.1} +{"session_id":"sess-e5bee292804d","input_length":2144,"output_length":207,"hash_ids":[424045,424046,424047,424048,424049],"delay":704.4} +{"session_id":"sess-e5bee292804d","input_length":650,"output_length":52,"hash_ids":[424050,424051],"delay":410.1} +{"session_id":"sess-e5bee292804d","input_length":408,"output_length":223,"hash_ids":[424052],"delay":12846.3} +{"session_id":"sess-e5bee292804d","input_length":822,"output_length":221,"hash_ids":[424053,424054],"delay":942.9} +{"session_id":"sess-e5bee292804d","input_length":2504,"output_length":520,"hash_ids":[424055,424056,424057,424058,424059],"delay":5438.4} +{"session_id":"sess-e5bee292804d","input_length":1032,"output_length":154,"hash_ids":[424060,424061,424062],"delay":526.2} +{"session_id":"sess-e5bee292804d","input_length":92,"output_length":304,"hash_ids":[424063],"delay":408.8} +{"session_id":"sess-e5bee292804d","input_length":596,"output_length":130,"hash_ids":[424064,424065],"delay":29166.0} +{"session_id":"sess-e5bee292804d","input_length":726,"output_length":104,"hash_ids":[424066,424067],"delay":13068.4} +{"session_id":"sess-e5bee292804d","input_length":647,"output_length":292,"hash_ids":[424068,424069],"delay":358.4} +{"session_id":"sess-e5bee292804d","input_length":1754,"output_length":53,"hash_ids":[424070,424071,424072,424073],"delay":1345.9} +{"session_id":"sess-e5bee292804d","input_length":766,"output_length":564,"hash_ids":[424074,424075],"delay":338.6} +{"session_id":"sess-e5bee292804d","input_length":1033,"output_length":326,"hash_ids":[424076,424077,424078],"delay":524.6} +{"session_id":"sess-e5bee292804d","input_length":2864,"output_length":92,"hash_ids":[424079,424080,424081,424082,424083,424084],"delay":5547.4} +{"session_id":"sess-e5bee292804d","input_length":1301,"output_length":160,"hash_ids":[424085,424086,424087],"delay":889.0} +{"session_id":"sess-e5bee292804d","input_length":540,"output_length":179,"hash_ids":[424088,424089],"delay":655.0} +{"session_id":"sess-e5bee292804d","input_length":158,"output_length":227,"hash_ids":[424090],"delay":422.4} +{"session_id":"sess-e5bee292804d","input_length":1009,"output_length":129,"hash_ids":[424091,424092],"delay":474.5} +{"session_id":"sess-e5bee292804d","input_length":383,"output_length":30,"hash_ids":[424093],"delay":212.2} +{"session_id":"sess-e5bee292804d","input_length":1954,"output_length":78,"hash_ids":[424094,424095,424096,424097],"delay":17305.3} +{"session_id":"sess-e5bee292804d","input_length":844,"output_length":921,"hash_ids":[424098,424099],"delay":5005.0} +{"session_id":"sess-e5bee292804d","input_length":285,"output_length":167,"hash_ids":[424100],"delay":332.9} +{"session_id":"sess-e5bee292804d","input_length":695,"output_length":349,"hash_ids":[424101,424102],"delay":732.5} +{"session_id":"sess-e5bee292804d","input_length":1048,"output_length":78,"hash_ids":[424103,424104,424105],"delay":793.4} +{"session_id":"sess-e5bee292804d","input_length":1951,"output_length":138,"hash_ids":[424106,424107,424108,424109],"delay":311.2} +{"session_id":"sess-4ec623abe856","input_length":31612,"output_length":345,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,428032,428033,428034,428035,428036,428037,428038,428039,428040,428041],"timestamp":0.0,"group_id":7} +{"session_id":"sess-4ec623abe856","input_length":475,"output_length":37,"hash_ids":[428042],"delay":543.4} +{"session_id":"sess-4ec623abe856","input_length":444,"output_length":135,"hash_ids":[428043],"delay":883.2} +{"session_id":"sess-4ec623abe856","input_length":1215,"output_length":184,"hash_ids":[428044,428045,428046],"delay":29377.1} +{"session_id":"sess-4ec623abe856","input_length":1456,"output_length":202,"hash_ids":[428047,428048,428049],"delay":7062.0} +{"session_id":"sess-4ec623abe856","input_length":1007,"output_length":805,"hash_ids":[428050,428051],"delay":2110.1} +{"session_id":"sess-4ec623abe856","input_length":146,"output_length":30,"hash_ids":[428052],"delay":470.4} +{"session_id":"sess-4ec623abe856","input_length":615,"output_length":41,"hash_ids":[428053,428054],"delay":5529.9} +{"session_id":"sess-4ec623abe856","input_length":735,"output_length":242,"hash_ids":[428055,428056],"delay":6358.8} +{"session_id":"sess-4ec623abe856","input_length":1220,"output_length":311,"hash_ids":[428057,428058,428059],"delay":1455.3} +{"session_id":"sess-4ec623abe856","input_length":478,"output_length":734,"hash_ids":[428060],"delay":786.6} +{"session_id":"sess-4ec623abe856","input_length":2945,"output_length":102,"hash_ids":[428061,428062,428063,428064,428065,428066],"delay":1472.5} +{"session_id":"sess-4ec623abe856","input_length":1682,"output_length":181,"hash_ids":[428067,428068,428069,428070],"delay":399.0} +{"session_id":"sess-4ec623abe856","input_length":997,"output_length":73,"hash_ids":[428071,428072],"delay":35514.3} +{"session_id":"sess-4ec623abe856","input_length":1393,"output_length":119,"hash_ids":[428073,428074,428075],"delay":209.8} +{"session_id":"sess-4ec623abe856","input_length":847,"output_length":97,"hash_ids":[428076,428077],"delay":675.5} +{"session_id":"sess-4ec623abe856","input_length":660,"output_length":228,"hash_ids":[428078,428079],"delay":14619.8} +{"session_id":"sess-4ec623abe856","input_length":522,"output_length":602,"hash_ids":[428080,428081],"delay":13343.5} +{"session_id":"sess-4ec623abe856","input_length":89,"output_length":475,"hash_ids":[428082],"delay":283.9} +{"session_id":"sess-4ec623abe856","input_length":665,"output_length":304,"hash_ids":[428083,428084],"delay":699.0} +{"session_id":"sess-4ec623abe856","input_length":257,"output_length":64,"hash_ids":[428085],"delay":514.6} +{"session_id":"sess-a9d77fbe0a23","input_length":27300,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,432032,432033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a9d77fbe0a23","input_length":440,"output_length":99,"hash_ids":[432034],"delay":666.0} +{"session_id":"sess-a9d77fbe0a23","input_length":1161,"output_length":177,"hash_ids":[432035,432036,432037],"delay":443.6} +{"session_id":"sess-a9d77fbe0a23","input_length":216,"output_length":280,"hash_ids":[432038],"delay":1007.7} +{"session_id":"sess-a9d77fbe0a23","input_length":621,"output_length":341,"hash_ids":[432039,432040],"delay":1690.7} +{"session_id":"sess-a9d77fbe0a23","input_length":217,"output_length":292,"hash_ids":[432041],"delay":8332.6} +{"session_id":"sess-a9d77fbe0a23","input_length":812,"output_length":140,"hash_ids":[432042,432043],"delay":1454.9} +{"session_id":"sess-a9d77fbe0a23","input_length":1339,"output_length":395,"hash_ids":[432044,432045,432046],"delay":679.6} +{"session_id":"sess-a9d77fbe0a23","input_length":1133,"output_length":394,"hash_ids":[432047,432048,432049],"delay":1326.9} +{"session_id":"sess-a9d77fbe0a23","input_length":610,"output_length":290,"hash_ids":[432050,432051],"delay":62934.3} +{"session_id":"sess-a9d77fbe0a23","input_length":601,"output_length":111,"hash_ids":[432052,432053],"delay":9909.9} +{"session_id":"sess-a9d77fbe0a23","input_length":71,"output_length":120,"hash_ids":[432054],"delay":23440.2} +{"session_id":"sess-33cb851f0dd7","input_length":31483,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,436032,436033,436034,436035,436036,436037,436038,436039,436040,436041],"timestamp":0.0,"group_id":7} +{"session_id":"sess-33cb851f0dd7","input_length":370,"output_length":1185,"hash_ids":[436042],"delay":764.6} +{"session_id":"sess-33cb851f0dd7","input_length":647,"output_length":61,"hash_ids":[436043,436044],"delay":2783.2} +{"session_id":"sess-33cb851f0dd7","input_length":2522,"output_length":52,"hash_ids":[436045,436046,436047,436048,436049],"delay":440.3} +{"session_id":"sess-33cb851f0dd7","input_length":2105,"output_length":70,"hash_ids":[436050,436051,436052,436053,436054],"delay":8228.7} +{"session_id":"sess-33cb851f0dd7","input_length":657,"output_length":124,"hash_ids":[436055,436056],"delay":941.5} +{"session_id":"sess-33cb851f0dd7","input_length":2295,"output_length":688,"hash_ids":[436057,436058,436059,436060,436061],"delay":541.6} +{"session_id":"sess-33cb851f0dd7","input_length":1381,"output_length":200,"hash_ids":[436062,436063,436064],"delay":10473.5} +{"session_id":"sess-33cb851f0dd7","input_length":728,"output_length":37,"hash_ids":[436065,436066],"delay":214.1} +{"session_id":"sess-33cb851f0dd7","input_length":947,"output_length":363,"hash_ids":[436067,436068],"delay":554.8} +{"session_id":"sess-33cb851f0dd7","input_length":2359,"output_length":95,"hash_ids":[436069,436070,436071,436072,436073],"delay":7865.1} +{"session_id":"sess-33cb851f0dd7","input_length":859,"output_length":30,"hash_ids":[436074,436075],"delay":1994.3} +{"session_id":"sess-33cb851f0dd7","input_length":1877,"output_length":73,"hash_ids":[436076,436077,436078,436079],"delay":706.1} +{"session_id":"sess-33cb851f0dd7","input_length":445,"output_length":114,"hash_ids":[436080],"delay":694.2} +{"session_id":"sess-33cb851f0dd7","input_length":865,"output_length":460,"hash_ids":[436081,436082],"delay":26153.1} +{"session_id":"sess-33cb851f0dd7","input_length":2821,"output_length":204,"hash_ids":[436083,436084,436085,436086,436087,436088],"delay":761.7} +{"session_id":"sess-33cb851f0dd7","input_length":525,"output_length":101,"hash_ids":[436089,436090],"delay":201.8} +{"session_id":"sess-33cb851f0dd7","input_length":150,"output_length":50,"hash_ids":[436091],"delay":853.7} +{"session_id":"sess-33cb851f0dd7","input_length":446,"output_length":130,"hash_ids":[436092],"delay":825.6} +{"session_id":"sess-33cb851f0dd7","input_length":2583,"output_length":578,"hash_ids":[436093,436094,436095,436096,436097,436098],"delay":981.9} +{"session_id":"sess-33cb851f0dd7","input_length":789,"output_length":152,"hash_ids":[436099,436100],"delay":4049.9} +{"session_id":"sess-33cb851f0dd7","input_length":560,"output_length":120,"hash_ids":[436101,436102],"delay":321.7} +{"session_id":"sess-33cb851f0dd7","input_length":476,"output_length":648,"hash_ids":[436103],"delay":1434.3} +{"session_id":"sess-33cb851f0dd7","input_length":264,"output_length":327,"hash_ids":[436104],"delay":1505.9} +{"session_id":"sess-68037692db83","input_length":26798,"output_length":776,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,440032],"timestamp":0.0,"group_id":14} +{"session_id":"sess-68037692db83","input_length":964,"output_length":116,"hash_ids":[440033,440034],"delay":2903.0} +{"session_id":"sess-68037692db83","input_length":81,"output_length":431,"hash_ids":[440035],"delay":223.3} +{"session_id":"sess-68037692db83","input_length":493,"output_length":646,"hash_ids":[440036],"delay":407.9} +{"session_id":"sess-68037692db83","input_length":1356,"output_length":320,"hash_ids":[440037,440038,440039],"delay":221.2} +{"session_id":"sess-68037692db83","input_length":1132,"output_length":118,"hash_ids":[440040,440041,440042],"delay":2346.9} +{"session_id":"sess-68037692db83","input_length":1733,"output_length":249,"hash_ids":[440043,440044,440045,440046],"delay":3383.0} +{"session_id":"sess-68037692db83","input_length":775,"output_length":184,"hash_ids":[440047,440048],"delay":2794.4} +{"session_id":"sess-68037692db83","input_length":1405,"output_length":168,"hash_ids":[440049,440050,440051],"delay":13165.0} +{"session_id":"sess-68037692db83","input_length":792,"output_length":147,"hash_ids":[440052,440053],"delay":4586.6} +{"session_id":"sess-68037692db83","input_length":841,"output_length":574,"hash_ids":[440054,440055],"delay":2946.3} +{"session_id":"sess-68037692db83","input_length":411,"output_length":479,"hash_ids":[440056],"delay":5414.5} +{"session_id":"sess-68037692db83","input_length":2360,"output_length":284,"hash_ids":[440057,440058,440059,440060,440061],"delay":298.1} +{"session_id":"sess-68037692db83","input_length":385,"output_length":380,"hash_ids":[440062],"delay":1150.5} +{"session_id":"sess-68037692db83","input_length":347,"output_length":701,"hash_ids":[440063],"delay":21696.1} +{"session_id":"sess-68037692db83","input_length":338,"output_length":366,"hash_ids":[440064],"delay":1830.9} +{"session_id":"sess-68037692db83","input_length":1316,"output_length":584,"hash_ids":[440065,440066,440067],"delay":2020.4} +{"session_id":"sess-68037692db83","input_length":1305,"output_length":202,"hash_ids":[440068,440069,440070],"delay":261.4} +{"session_id":"sess-68037692db83","input_length":2504,"output_length":336,"hash_ids":[440071,440072,440073,440074,440075],"delay":4788.7} +{"session_id":"sess-68037692db83","input_length":1870,"output_length":1347,"hash_ids":[440076,440077,440078,440079],"delay":194.9} +{"session_id":"sess-68037692db83","input_length":1178,"output_length":161,"hash_ids":[440080,440081,440082],"delay":4109.1} +{"session_id":"sess-68037692db83","input_length":351,"output_length":66,"hash_ids":[440083],"delay":2794.6} +{"session_id":"sess-68037692db83","input_length":2394,"output_length":520,"hash_ids":[440084,440085,440086,440087,440088],"delay":3504.2} +{"session_id":"sess-68037692db83","input_length":982,"output_length":138,"hash_ids":[440089,440090],"delay":477.4} +{"session_id":"sess-68037692db83","input_length":550,"output_length":211,"hash_ids":[440091,440092],"delay":234.8} +{"session_id":"sess-68037692db83","input_length":531,"output_length":57,"hash_ids":[440093,440094],"delay":172.2} +{"session_id":"sess-68037692db83","input_length":669,"output_length":884,"hash_ids":[440095,440096],"delay":421.0} +{"session_id":"sess-68037692db83","input_length":796,"output_length":124,"hash_ids":[440097,440098],"delay":139.2} +{"session_id":"sess-30e4aac988ee","input_length":26126,"output_length":341,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051],"timestamp":0.0,"group_id":10} +{"session_id":"sess-30e4aac988ee","input_length":326,"output_length":109,"hash_ids":[440099],"delay":1075.0} +{"session_id":"sess-30e4aac988ee","input_length":427,"output_length":145,"hash_ids":[440100],"delay":1943.8} +{"session_id":"sess-30e4aac988ee","input_length":137,"output_length":123,"hash_ids":[440101],"delay":7817.2} +{"session_id":"sess-30e4aac988ee","input_length":2979,"output_length":122,"hash_ids":[440102,440103,440104,440105,440106,440107],"delay":2471.3} +{"session_id":"sess-30e4aac988ee","input_length":904,"output_length":391,"hash_ids":[440108,440109],"delay":32920.1} +{"session_id":"sess-30e4aac988ee","input_length":1814,"output_length":137,"hash_ids":[440110,440111,440112,440113],"delay":982.2} +{"session_id":"sess-30e4aac988ee","input_length":1364,"output_length":44,"hash_ids":[440114,440115,440116],"delay":331.3} +{"session_id":"sess-30e4aac988ee","input_length":810,"output_length":49,"hash_ids":[440117,440118],"delay":1339.5} +{"session_id":"sess-30e4aac988ee","input_length":385,"output_length":351,"hash_ids":[440119],"delay":55538.8} +{"session_id":"sess-30e4aac988ee","input_length":1577,"output_length":361,"hash_ids":[440120,440121,440122,440123],"delay":3609.0} +{"session_id":"sess-30e4aac988ee","input_length":2143,"output_length":76,"hash_ids":[440124,440125,440126,440127,440128],"delay":854.6} +{"session_id":"sess-30e4aac988ee","input_length":1421,"output_length":187,"hash_ids":[440129,440130,440131],"delay":5438.5} +{"session_id":"sess-30e4aac988ee","input_length":1140,"output_length":56,"hash_ids":[440132,440133,440134],"delay":8387.9} +{"session_id":"sess-30e4aac988ee","input_length":1522,"output_length":270,"hash_ids":[440135,440136,440137],"delay":3218.7} +{"session_id":"sess-65a201d9116d","input_length":26343,"output_length":287,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-65a201d9116d","input_length":419,"output_length":339,"hash_ids":[440138],"delay":1377.1} +{"session_id":"sess-65a201d9116d","input_length":225,"output_length":128,"hash_ids":[440139],"delay":4268.6} +{"session_id":"sess-65a201d9116d","input_length":2496,"output_length":225,"hash_ids":[440140,440141,440142,440143,440144],"delay":1963.6} +{"session_id":"sess-65a201d9116d","input_length":1216,"output_length":46,"hash_ids":[440145,440146,440147],"delay":1452.7} +{"session_id":"sess-65a201d9116d","input_length":613,"output_length":395,"hash_ids":[440148,440149],"delay":20050.6} +{"session_id":"sess-65a201d9116d","input_length":52,"output_length":538,"hash_ids":[440150],"delay":713.5} +{"session_id":"sess-65a201d9116d","input_length":1230,"output_length":150,"hash_ids":[440151,440152,440153],"delay":1462.3} +{"session_id":"sess-65a201d9116d","input_length":655,"output_length":238,"hash_ids":[440154,440155],"delay":623.4} +{"session_id":"sess-65a201d9116d","input_length":1379,"output_length":293,"hash_ids":[440156,440157,440158],"delay":2880.4} +{"session_id":"sess-65a201d9116d","input_length":2026,"output_length":238,"hash_ids":[440159,440160,440161,440162],"delay":52220.7} +{"session_id":"sess-65a201d9116d","input_length":1847,"output_length":103,"hash_ids":[440163,440164,440165,440166],"delay":12283.3} +{"session_id":"sess-65a201d9116d","input_length":811,"output_length":508,"hash_ids":[440167,440168],"delay":2402.7} +{"session_id":"sess-bc99facab86c","input_length":28453,"output_length":991,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,452032,452033,452034,452035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bc99facab86c","input_length":942,"output_length":379,"hash_ids":[452036,452037],"delay":5056.7} +{"session_id":"sess-bc99facab86c","input_length":885,"output_length":125,"hash_ids":[452038,452039],"delay":158.5} +{"session_id":"sess-bc99facab86c","input_length":1712,"output_length":59,"hash_ids":[452040,452041,452042,452043],"delay":1991.5} +{"session_id":"sess-bc99facab86c","input_length":577,"output_length":681,"hash_ids":[452044,452045],"delay":1305.9} +{"session_id":"sess-bc99facab86c","input_length":2361,"output_length":95,"hash_ids":[452046,452047,452048,452049,452050],"delay":2896.2} +{"session_id":"sess-bc99facab86c","input_length":1899,"output_length":77,"hash_ids":[452051,452052,452053,452054],"delay":344.2} +{"session_id":"sess-bc99facab86c","input_length":1759,"output_length":307,"hash_ids":[452055,452056,452057,452058],"delay":1357.9} +{"session_id":"sess-bc99facab86c","input_length":951,"output_length":298,"hash_ids":[452059,452060],"delay":316.8} +{"session_id":"sess-bc99facab86c","input_length":470,"output_length":274,"hash_ids":[452061],"delay":1197.8} +{"session_id":"sess-bc99facab86c","input_length":1026,"output_length":119,"hash_ids":[452062,452063,452064],"delay":2190.0} +{"session_id":"sess-bc99facab86c","input_length":2941,"output_length":72,"hash_ids":[452065,452066,452067,452068,452069,452070],"delay":323.6} +{"session_id":"sess-bc99facab86c","input_length":478,"output_length":182,"hash_ids":[452071],"delay":543.6} +{"session_id":"sess-bc99facab86c","input_length":842,"output_length":1045,"hash_ids":[452072,452073],"delay":273.8} +{"session_id":"sess-bc99facab86c","input_length":1718,"output_length":67,"hash_ids":[452074,452075,452076,452077],"delay":195.8} +{"session_id":"sess-bc99facab86c","input_length":1211,"output_length":930,"hash_ids":[452078,452079,452080],"delay":278.8} +{"session_id":"sess-bc99facab86c","input_length":523,"output_length":62,"hash_ids":[452081,452082],"delay":25793.1} +{"session_id":"sess-bc99facab86c","input_length":177,"output_length":95,"hash_ids":[452083],"delay":11978.8} +{"session_id":"sess-bc99facab86c","input_length":1068,"output_length":627,"hash_ids":[452084,452085,452086],"delay":2795.8} +{"session_id":"sess-bc99facab86c","input_length":358,"output_length":288,"hash_ids":[452087],"delay":506.5} +{"session_id":"sess-bc99facab86c","input_length":1683,"output_length":114,"hash_ids":[452088,452089,452090,452091],"delay":17229.6} +{"session_id":"sess-bc99facab86c","input_length":646,"output_length":58,"hash_ids":[452092,452093],"delay":16978.4} +{"session_id":"sess-bc99facab86c","input_length":897,"output_length":214,"hash_ids":[452094,452095],"delay":534.7} +{"session_id":"sess-bc99facab86c","input_length":1251,"output_length":239,"hash_ids":[452096,452097,452098],"delay":4319.5} +{"session_id":"sess-bc99facab86c","input_length":1154,"output_length":244,"hash_ids":[452099,452100,452101],"delay":194.9} +{"session_id":"sess-bc99facab86c","input_length":1195,"output_length":172,"hash_ids":[452102,452103,452104],"delay":189.6} +{"session_id":"sess-c7d5c70880d5","input_length":26401,"output_length":251,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251],"timestamp":0.0,"group_id":6} +{"session_id":"sess-c7d5c70880d5","input_length":1286,"output_length":69,"hash_ids":[452105,452106,452107],"delay":1355.4} +{"session_id":"sess-c7d5c70880d5","input_length":1575,"output_length":347,"hash_ids":[452108,452109,452110,452111],"delay":26260.3} +{"session_id":"sess-c7d5c70880d5","input_length":720,"output_length":288,"hash_ids":[452112,452113],"delay":896.6} +{"session_id":"sess-c7d5c70880d5","input_length":825,"output_length":426,"hash_ids":[452114,452115],"delay":946.9} +{"session_id":"sess-c7d5c70880d5","input_length":1590,"output_length":819,"hash_ids":[452116,452117,452118,452119],"delay":8145.1} +{"session_id":"sess-dbb315db2eee","input_length":27235,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,460032,460033],"timestamp":0.0,"group_id":4} +{"session_id":"sess-dbb315db2eee","input_length":237,"output_length":126,"hash_ids":[460034],"delay":387.2} +{"session_id":"sess-dbb315db2eee","input_length":2526,"output_length":115,"hash_ids":[460035,460036,460037,460038,460039],"delay":416.5} +{"session_id":"sess-dbb315db2eee","input_length":1689,"output_length":175,"hash_ids":[460040,460041,460042,460043],"delay":1668.1} +{"session_id":"sess-dbb315db2eee","input_length":1715,"output_length":247,"hash_ids":[460044,460045,460046,460047],"delay":8761.3} +{"session_id":"sess-dbb315db2eee","input_length":908,"output_length":183,"hash_ids":[460048,460049],"delay":2115.0} +{"session_id":"sess-dbb315db2eee","input_length":959,"output_length":117,"hash_ids":[460050,460051],"delay":3463.8} +{"session_id":"sess-dbb315db2eee","input_length":1322,"output_length":55,"hash_ids":[460052,460053,460054],"delay":2932.2} +{"session_id":"sess-dbb315db2eee","input_length":274,"output_length":30,"hash_ids":[460055],"delay":30287.3} +{"session_id":"sess-dbb315db2eee","input_length":430,"output_length":439,"hash_ids":[460056],"delay":4124.8} +{"session_id":"sess-dbb315db2eee","input_length":557,"output_length":260,"hash_ids":[460057,460058],"delay":1152.0} +{"session_id":"sess-dbb315db2eee","input_length":1126,"output_length":171,"hash_ids":[460059,460060,460061],"delay":8161.9} +{"session_id":"sess-dbb315db2eee","input_length":1018,"output_length":34,"hash_ids":[460062,460063],"delay":210.1} +{"session_id":"sess-dbb315db2eee","input_length":798,"output_length":236,"hash_ids":[460064,460065],"delay":2839.0} +{"session_id":"sess-dbb315db2eee","input_length":688,"output_length":163,"hash_ids":[460066,460067],"delay":42945.7} +{"session_id":"sess-dbb315db2eee","input_length":502,"output_length":71,"hash_ids":[460068],"delay":1232.9} +{"session_id":"sess-dbb315db2eee","input_length":665,"output_length":235,"hash_ids":[460069,460070],"delay":555.5} +{"session_id":"sess-dbb315db2eee","input_length":2744,"output_length":407,"hash_ids":[460071,460072,460073,460074,460075,460076],"delay":2221.4} +{"session_id":"sess-dbb315db2eee","input_length":1920,"output_length":464,"hash_ids":[460077,460078,460079,460080],"delay":393.7} +{"session_id":"sess-dbb315db2eee","input_length":1324,"output_length":246,"hash_ids":[460081,460082,460083],"delay":1572.0} +{"session_id":"sess-dbb315db2eee","input_length":1037,"output_length":944,"hash_ids":[460084,460085,460086],"delay":15027.3} +{"session_id":"sess-2beecd832d35","input_length":33897,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,464032,464033,464034,464035,464036,464037,464038,464039,464040,464041,464042,464043,464044,464045,464046],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2beecd832d35","input_length":1292,"output_length":399,"hash_ids":[464047,464048,464049],"delay":3117.2} +{"session_id":"sess-2beecd832d35","input_length":2906,"output_length":79,"hash_ids":[464050,464051,464052,464053,464054,464055],"delay":3921.0} +{"session_id":"sess-2beecd832d35","input_length":2098,"output_length":73,"hash_ids":[464056,464057,464058,464059,464060],"delay":758.3} +{"session_id":"sess-2beecd832d35","input_length":254,"output_length":380,"hash_ids":[464061],"delay":585.6} +{"session_id":"sess-2beecd832d35","input_length":1005,"output_length":288,"hash_ids":[464062,464063],"delay":472.5} +{"session_id":"sess-2beecd832d35","input_length":1218,"output_length":240,"hash_ids":[464064,464065,464066],"delay":1100.8} +{"session_id":"sess-2beecd832d35","input_length":787,"output_length":238,"hash_ids":[464067,464068],"delay":11887.7} +{"session_id":"sess-2beecd832d35","input_length":878,"output_length":109,"hash_ids":[464069,464070],"delay":38765.4} +{"session_id":"sess-2beecd832d35","input_length":1981,"output_length":160,"hash_ids":[464071,464072,464073,464074],"delay":981.0} +{"session_id":"sess-2beecd832d35","input_length":2234,"output_length":241,"hash_ids":[464075,464076,464077,464078,464079],"delay":3762.8} +{"session_id":"sess-2beecd832d35","input_length":1041,"output_length":53,"hash_ids":[464080,464081,464082],"delay":212.1} +{"session_id":"sess-2beecd832d35","input_length":680,"output_length":114,"hash_ids":[464083,464084],"delay":508.2} +{"session_id":"sess-2beecd832d35","input_length":993,"output_length":287,"hash_ids":[464085,464086],"delay":1299.7} +{"session_id":"sess-2beecd832d35","input_length":633,"output_length":149,"hash_ids":[464087,464088],"delay":8514.2} +{"session_id":"sess-2beecd832d35","input_length":1902,"output_length":259,"hash_ids":[464089,464090,464091,464092],"delay":510.0} +{"session_id":"sess-2beecd832d35","input_length":1375,"output_length":594,"hash_ids":[464093,464094,464095],"delay":598.9} +{"session_id":"sess-2beecd832d35","input_length":760,"output_length":763,"hash_ids":[464096,464097],"delay":1033.0} +{"session_id":"sess-2beecd832d35","input_length":1220,"output_length":151,"hash_ids":[464098,464099,464100],"delay":328.7} +{"session_id":"sess-2beecd832d35","input_length":693,"output_length":177,"hash_ids":[464101,464102],"delay":1331.2} +{"session_id":"sess-2beecd832d35","input_length":628,"output_length":67,"hash_ids":[464103,464104],"delay":961.8} +{"session_id":"sess-2beecd832d35","input_length":372,"output_length":76,"hash_ids":[464105],"delay":5822.5} +{"session_id":"sess-2beecd832d35","input_length":150,"output_length":39,"hash_ids":[464106],"delay":2067.9} +{"session_id":"sess-2beecd832d35","input_length":1338,"output_length":68,"hash_ids":[464107,464108,464109],"delay":1480.7} +{"session_id":"sess-f9116060687d","input_length":28741,"output_length":166,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,468032,468033,468034,468035,468036],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f9116060687d","input_length":1708,"output_length":154,"hash_ids":[468037,468038,468039,468040],"delay":1014.2} +{"session_id":"sess-f9116060687d","input_length":932,"output_length":74,"hash_ids":[468041,468042],"delay":2202.2} +{"session_id":"sess-f9116060687d","input_length":378,"output_length":127,"hash_ids":[468043],"delay":372.7} +{"session_id":"sess-f9116060687d","input_length":710,"output_length":30,"hash_ids":[468044,468045],"delay":16662.7} +{"session_id":"sess-f9116060687d","input_length":818,"output_length":74,"hash_ids":[468046,468047],"delay":40872.5} +{"session_id":"sess-f9116060687d","input_length":820,"output_length":235,"hash_ids":[468048,468049],"delay":664.3} +{"session_id":"sess-f9116060687d","input_length":512,"output_length":243,"hash_ids":[468050],"delay":39773.7} +{"session_id":"sess-f9116060687d","input_length":2410,"output_length":118,"hash_ids":[468051,468052,468053,468054,468055],"delay":1250.4} +{"session_id":"sess-f9116060687d","input_length":867,"output_length":132,"hash_ids":[468056,468057],"delay":9693.0} +{"session_id":"sess-f9116060687d","input_length":1020,"output_length":68,"hash_ids":[468058,468059],"delay":867.2} +{"session_id":"sess-f9116060687d","input_length":1881,"output_length":143,"hash_ids":[468060,468061,468062,468063],"delay":366.4} +{"session_id":"sess-f9116060687d","input_length":1824,"output_length":183,"hash_ids":[468064,468065,468066,468067],"delay":1016.1} +{"session_id":"sess-f9116060687d","input_length":1026,"output_length":215,"hash_ids":[468068,468069,468070],"delay":7735.1} +{"session_id":"sess-f9116060687d","input_length":810,"output_length":358,"hash_ids":[468071,468072],"delay":9936.4} +{"session_id":"sess-f9116060687d","input_length":1155,"output_length":703,"hash_ids":[468073,468074,468075],"delay":260.5} +{"session_id":"sess-f9116060687d","input_length":560,"output_length":340,"hash_ids":[468076,468077],"delay":2912.0} +{"session_id":"sess-f9116060687d","input_length":629,"output_length":356,"hash_ids":[468078,468079],"delay":564.8} +{"session_id":"sess-f9116060687d","input_length":249,"output_length":67,"hash_ids":[468080],"delay":533.6} +{"session_id":"sess-f9116060687d","input_length":611,"output_length":335,"hash_ids":[468081,468082],"delay":1813.9} +{"session_id":"sess-f9116060687d","input_length":555,"output_length":217,"hash_ids":[468083,468084],"delay":434.5} +{"session_id":"sess-f9116060687d","input_length":1047,"output_length":283,"hash_ids":[468085,468086,468087],"delay":1770.4} +{"session_id":"sess-6f0e234d3bff","input_length":29480,"output_length":175,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,472032,472033,472034,472035,472036,472037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6f0e234d3bff","input_length":563,"output_length":295,"hash_ids":[472038,472039],"delay":34437.8} +{"session_id":"sess-6f0e234d3bff","input_length":449,"output_length":710,"hash_ids":[472040],"delay":329.6} +{"session_id":"sess-6f0e234d3bff","input_length":156,"output_length":1179,"hash_ids":[472041],"delay":1092.8} +{"session_id":"sess-6f0e234d3bff","input_length":1046,"output_length":146,"hash_ids":[472042,472043,472044],"delay":2216.8} +{"session_id":"sess-6f0e234d3bff","input_length":2982,"output_length":709,"hash_ids":[472045,472046,472047,472048,472049,472050],"delay":3319.8} +{"session_id":"sess-6f0e234d3bff","input_length":593,"output_length":134,"hash_ids":[472051,472052],"delay":1398.4} +{"session_id":"sess-6f0e234d3bff","input_length":181,"output_length":348,"hash_ids":[472053],"delay":809.6} +{"session_id":"sess-6f0e234d3bff","input_length":927,"output_length":230,"hash_ids":[472054,472055],"delay":15023.0} +{"session_id":"sess-6f0e234d3bff","input_length":249,"output_length":48,"hash_ids":[472056],"delay":707.3} +{"session_id":"sess-6f0e234d3bff","input_length":1170,"output_length":595,"hash_ids":[472057,472058,472059],"delay":2065.8} +{"session_id":"sess-6f0e234d3bff","input_length":2149,"output_length":168,"hash_ids":[472060,472061,472062,472063,472064],"delay":1277.4} +{"session_id":"sess-6f0e234d3bff","input_length":758,"output_length":309,"hash_ids":[472065,472066],"delay":2059.6} +{"session_id":"sess-6f0e234d3bff","input_length":1693,"output_length":133,"hash_ids":[472067,472068,472069,472070],"delay":3689.6} +{"session_id":"sess-6f0e234d3bff","input_length":219,"output_length":291,"hash_ids":[472071],"delay":8902.7} +{"session_id":"sess-6f0e234d3bff","input_length":314,"output_length":375,"hash_ids":[472072],"delay":691.2} +{"session_id":"sess-6f0e234d3bff","input_length":879,"output_length":725,"hash_ids":[472073,472074],"delay":1283.3} +{"session_id":"sess-6f0e234d3bff","input_length":651,"output_length":321,"hash_ids":[472075,472076],"delay":186.1} +{"session_id":"sess-6f0e234d3bff","input_length":2227,"output_length":539,"hash_ids":[472077,472078,472079,472080,472081],"delay":293.0} +{"session_id":"sess-6f0e234d3bff","input_length":1580,"output_length":124,"hash_ids":[472082,472083,472084,472085],"delay":87.1} +{"session_id":"sess-6f0e234d3bff","input_length":2566,"output_length":69,"hash_ids":[472086,472087,472088,472089,472090,472091],"delay":182.8} +{"session_id":"sess-6f0e234d3bff","input_length":310,"output_length":195,"hash_ids":[472092],"delay":751.4} +{"session_id":"sess-6f0e234d3bff","input_length":589,"output_length":746,"hash_ids":[472093,472094],"delay":4264.4} +{"session_id":"sess-6f0e234d3bff","input_length":348,"output_length":59,"hash_ids":[472095],"delay":767.5} +{"session_id":"sess-6f0e234d3bff","input_length":920,"output_length":824,"hash_ids":[472096,472097],"delay":244.7} +{"session_id":"sess-6f0e234d3bff","input_length":568,"output_length":118,"hash_ids":[472098,472099],"delay":1910.1} +{"session_id":"sess-6f0e234d3bff","input_length":2031,"output_length":627,"hash_ids":[472100,472101,472102,472103],"delay":744.7} +{"session_id":"sess-8391e2bcdb17","input_length":29125,"output_length":491,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,476032,476033,476034,476035,476036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8391e2bcdb17","input_length":2178,"output_length":63,"hash_ids":[476037,476038,476039,476040,476041],"delay":773.8} +{"session_id":"sess-8391e2bcdb17","input_length":1761,"output_length":164,"hash_ids":[476042,476043,476044,476045],"delay":13112.2} +{"session_id":"sess-1660101c154a","input_length":27767,"output_length":107,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,480032,480033,480034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1660101c154a","input_length":710,"output_length":516,"hash_ids":[480035,480036],"delay":6307.4} +{"session_id":"sess-1660101c154a","input_length":302,"output_length":187,"hash_ids":[480037],"delay":3504.3} +{"session_id":"sess-1660101c154a","input_length":104,"output_length":137,"hash_ids":[480038],"delay":6889.4} +{"session_id":"sess-1660101c154a","input_length":252,"output_length":316,"hash_ids":[480039],"delay":3287.1} +{"session_id":"sess-1660101c154a","input_length":825,"output_length":165,"hash_ids":[480040,480041],"delay":213.3} +{"session_id":"sess-1660101c154a","input_length":2731,"output_length":153,"hash_ids":[480042,480043,480044,480045,480046,480047],"delay":1041.6} +{"session_id":"sess-1660101c154a","input_length":257,"output_length":69,"hash_ids":[480048],"delay":420.4} +{"session_id":"sess-1660101c154a","input_length":1220,"output_length":116,"hash_ids":[480049,480050,480051],"delay":15317.4} +{"session_id":"sess-1660101c154a","input_length":1220,"output_length":635,"hash_ids":[480052,480053,480054],"delay":1185.6} +{"session_id":"sess-1660101c154a","input_length":326,"output_length":30,"hash_ids":[480055],"delay":159.8} +{"session_id":"sess-1660101c154a","input_length":2449,"output_length":47,"hash_ids":[480056,480057,480058,480059,480060],"delay":3057.2} +{"session_id":"sess-6bfe99e45eba","input_length":27183,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,484032,484033],"timestamp":0.0,"group_id":12} +{"session_id":"sess-6bfe99e45eba","input_length":680,"output_length":759,"hash_ids":[484034,484035],"delay":4241.4} +{"session_id":"sess-6bfe99e45eba","input_length":524,"output_length":289,"hash_ids":[484036,484037],"delay":17673.3} +{"session_id":"sess-6bfe99e45eba","input_length":335,"output_length":104,"hash_ids":[484038],"delay":49139.5} +{"session_id":"sess-6bfe99e45eba","input_length":2143,"output_length":54,"hash_ids":[484039,484040,484041,484042,484043],"delay":2001.1} +{"session_id":"sess-6bfe99e45eba","input_length":1746,"output_length":70,"hash_ids":[484044,484045,484046,484047],"delay":490.7} +{"session_id":"sess-6bfe99e45eba","input_length":2347,"output_length":291,"hash_ids":[484048,484049,484050,484051,484052],"delay":1143.2} +{"session_id":"sess-6bfe99e45eba","input_length":382,"output_length":300,"hash_ids":[484053],"delay":10164.7} +{"session_id":"sess-6bfe99e45eba","input_length":877,"output_length":446,"hash_ids":[484054,484055],"delay":6728.6} +{"session_id":"sess-6bfe99e45eba","input_length":505,"output_length":451,"hash_ids":[484056],"delay":1362.2} +{"session_id":"sess-6bfe99e45eba","input_length":2274,"output_length":311,"hash_ids":[484057,484058,484059,484060,484061],"delay":5427.1} +{"session_id":"sess-6bfe99e45eba","input_length":334,"output_length":128,"hash_ids":[484062],"delay":8070.1} +{"session_id":"sess-6bfe99e45eba","input_length":743,"output_length":140,"hash_ids":[484063,484064],"delay":9265.6} +{"session_id":"sess-6bfe99e45eba","input_length":176,"output_length":67,"hash_ids":[484065],"delay":531.6} +{"session_id":"sess-6bfe99e45eba","input_length":568,"output_length":157,"hash_ids":[484066,484067],"delay":2013.2} +{"session_id":"sess-6bfe99e45eba","input_length":1572,"output_length":230,"hash_ids":[484068,484069,484070,484071],"delay":576.1} +{"session_id":"sess-6bfe99e45eba","input_length":248,"output_length":179,"hash_ids":[484072],"delay":1110.2} +{"session_id":"sess-6bfe99e45eba","input_length":728,"output_length":91,"hash_ids":[484073,484074],"delay":1528.4} +{"session_id":"sess-6bfe99e45eba","input_length":431,"output_length":33,"hash_ids":[484075],"delay":57.0} +{"session_id":"sess-6bfe99e45eba","input_length":1497,"output_length":194,"hash_ids":[484076,484077,484078],"delay":1094.6} +{"session_id":"sess-6bfe99e45eba","input_length":434,"output_length":354,"hash_ids":[484079],"delay":10847.7} +{"session_id":"sess-6bfe99e45eba","input_length":891,"output_length":37,"hash_ids":[484080,484081],"delay":606.1} +{"session_id":"sess-6bfe99e45eba","input_length":1437,"output_length":342,"hash_ids":[484082,484083,484084],"delay":1470.1} +{"session_id":"sess-6bfe99e45eba","input_length":1271,"output_length":170,"hash_ids":[484085,484086,484087],"delay":298.1} +{"session_id":"sess-6bfe99e45eba","input_length":1212,"output_length":907,"hash_ids":[484088,484089,484090],"delay":13265.6} +{"session_id":"sess-6bfe99e45eba","input_length":736,"output_length":305,"hash_ids":[484091,484092],"delay":1623.8} +{"session_id":"sess-6bfe99e45eba","input_length":2516,"output_length":176,"hash_ids":[484093,484094,484095,484096,484097],"delay":397.7} +{"session_id":"sess-6bfe99e45eba","input_length":930,"output_length":143,"hash_ids":[484098,484099],"delay":8302.7} +{"session_id":"sess-6bfe99e45eba","input_length":2858,"output_length":99,"hash_ids":[484100,484101,484102,484103,484104,484105],"delay":117.0} +{"session_id":"sess-6bfe99e45eba","input_length":754,"output_length":122,"hash_ids":[484106,484107],"delay":612.0} +{"session_id":"sess-6bfe99e45eba","input_length":150,"output_length":57,"hash_ids":[484108],"delay":128.1} +{"session_id":"sess-d44ae66e945f","input_length":26824,"output_length":561,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,488032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d44ae66e945f","input_length":507,"output_length":590,"hash_ids":[488033],"delay":845.5} +{"session_id":"sess-d44ae66e945f","input_length":1151,"output_length":138,"hash_ids":[488034,488035,488036],"delay":6478.2} +{"session_id":"sess-d44ae66e945f","input_length":781,"output_length":66,"hash_ids":[488037,488038],"delay":6538.8} +{"session_id":"sess-d44ae66e945f","input_length":1532,"output_length":1183,"hash_ids":[488039,488040,488041],"delay":444.4} +{"session_id":"sess-d44ae66e945f","input_length":2257,"output_length":172,"hash_ids":[488042,488043,488044,488045,488046],"delay":1599.8} +{"session_id":"sess-d44ae66e945f","input_length":148,"output_length":195,"hash_ids":[488047],"delay":556.9} +{"session_id":"sess-d44ae66e945f","input_length":559,"output_length":366,"hash_ids":[488048,488049],"delay":837.3} +{"session_id":"sess-d44ae66e945f","input_length":2239,"output_length":104,"hash_ids":[488050,488051,488052,488053,488054],"delay":357.9} +{"session_id":"sess-d44ae66e945f","input_length":237,"output_length":50,"hash_ids":[488055],"delay":969.4} +{"session_id":"sess-d44ae66e945f","input_length":951,"output_length":167,"hash_ids":[488056,488057],"delay":4298.4} +{"session_id":"sess-d44ae66e945f","input_length":825,"output_length":43,"hash_ids":[488058,488059],"delay":9267.8} +{"session_id":"sess-d44ae66e945f","input_length":1687,"output_length":713,"hash_ids":[488060,488061,488062,488063],"delay":316.7} +{"session_id":"sess-d44ae66e945f","input_length":2143,"output_length":107,"hash_ids":[488064,488065,488066,488067,488068],"delay":818.3} +{"session_id":"sess-d44ae66e945f","input_length":319,"output_length":199,"hash_ids":[488069],"delay":200.7} +{"session_id":"sess-d44ae66e945f","input_length":882,"output_length":282,"hash_ids":[488070,488071],"delay":18808.7} +{"session_id":"sess-d44ae66e945f","input_length":868,"output_length":137,"hash_ids":[488072,488073],"delay":451.6} +{"session_id":"sess-d44ae66e945f","input_length":352,"output_length":387,"hash_ids":[488074],"delay":772.1} +{"session_id":"sess-d44ae66e945f","input_length":1882,"output_length":410,"hash_ids":[488075,488076,488077,488078],"delay":465.5} +{"session_id":"sess-d44ae66e945f","input_length":2021,"output_length":37,"hash_ids":[488079,488080,488081,488082],"delay":211.5} +{"session_id":"sess-d44ae66e945f","input_length":1157,"output_length":437,"hash_ids":[488083,488084,488085],"delay":392.6} +{"session_id":"sess-6dc2d248d5ae","input_length":27436,"output_length":174,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,492032,492033],"timestamp":0.0,"group_id":6} +{"session_id":"sess-6dc2d248d5ae","input_length":533,"output_length":290,"hash_ids":[492034,492035],"delay":1204.1} +{"session_id":"sess-6dc2d248d5ae","input_length":636,"output_length":65,"hash_ids":[492036,492037],"delay":1329.9} +{"session_id":"sess-6dc2d248d5ae","input_length":557,"output_length":110,"hash_ids":[492038,492039],"delay":770.8} +{"session_id":"sess-6dc2d248d5ae","input_length":496,"output_length":389,"hash_ids":[492040],"delay":33279.6} +{"session_id":"sess-6dc2d248d5ae","input_length":2403,"output_length":108,"hash_ids":[492041,492042,492043,492044,492045],"delay":918.4} +{"session_id":"sess-6dc2d248d5ae","input_length":2383,"output_length":255,"hash_ids":[492046,492047,492048,492049,492050],"delay":5346.0} +{"session_id":"sess-6dc2d248d5ae","input_length":1292,"output_length":283,"hash_ids":[492051,492052,492053],"delay":2107.4} +{"session_id":"sess-6dc2d248d5ae","input_length":2608,"output_length":225,"hash_ids":[492054,492055,492056,492057,492058,492059],"delay":766.6} +{"session_id":"sess-6dc2d248d5ae","input_length":972,"output_length":443,"hash_ids":[492060,492061],"delay":422.0} +{"session_id":"sess-6dc2d248d5ae","input_length":159,"output_length":48,"hash_ids":[492062],"delay":1519.7} +{"session_id":"sess-6dc2d248d5ae","input_length":1503,"output_length":50,"hash_ids":[492063,492064,492065],"delay":255.0} +{"session_id":"sess-6dc2d248d5ae","input_length":801,"output_length":519,"hash_ids":[492066,492067],"delay":376.1} +{"session_id":"sess-6dc2d248d5ae","input_length":712,"output_length":392,"hash_ids":[492068,492069],"delay":1205.0} +{"session_id":"sess-6dc2d248d5ae","input_length":981,"output_length":62,"hash_ids":[492070,492071],"delay":5331.1} +{"session_id":"sess-6dc2d248d5ae","input_length":368,"output_length":98,"hash_ids":[492072],"delay":7167.9} +{"session_id":"sess-6dc2d248d5ae","input_length":1230,"output_length":55,"hash_ids":[492073,492074,492075],"delay":27702.4} +{"session_id":"sess-6dc2d248d5ae","input_length":1692,"output_length":120,"hash_ids":[492076,492077,492078,492079],"delay":259.9} +{"session_id":"sess-6dc2d248d5ae","input_length":740,"output_length":616,"hash_ids":[492080,492081],"delay":15064.1} +{"session_id":"sess-588874e7aa42","input_length":26462,"output_length":1047,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-588874e7aa42","input_length":186,"output_length":78,"hash_ids":[492082],"delay":389.8} +{"session_id":"sess-588874e7aa42","input_length":754,"output_length":140,"hash_ids":[492083,492084],"delay":2987.8} +{"session_id":"sess-588874e7aa42","input_length":533,"output_length":224,"hash_ids":[492085,492086],"delay":2204.0} +{"session_id":"sess-588874e7aa42","input_length":375,"output_length":69,"hash_ids":[492087],"delay":6383.5} +{"session_id":"sess-588874e7aa42","input_length":1105,"output_length":373,"hash_ids":[492088,492089,492090],"delay":2703.3} +{"session_id":"sess-588874e7aa42","input_length":338,"output_length":101,"hash_ids":[492091],"delay":5019.1} +{"session_id":"sess-588874e7aa42","input_length":2543,"output_length":170,"hash_ids":[492092,492093,492094,492095,492096],"delay":15178.3} +{"session_id":"sess-588874e7aa42","input_length":340,"output_length":153,"hash_ids":[492097],"delay":2564.1} +{"session_id":"sess-588874e7aa42","input_length":1096,"output_length":139,"hash_ids":[492098,492099,492100],"delay":104.4} +{"session_id":"sess-588874e7aa42","input_length":1888,"output_length":470,"hash_ids":[492101,492102,492103,492104],"delay":746.4} +{"session_id":"sess-c0d7f8a16222","input_length":28034,"output_length":852,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,500032,500033,500034],"timestamp":0.0,"group_id":3} +{"session_id":"sess-c0d7f8a16222","input_length":456,"output_length":200,"hash_ids":[500035],"delay":24331.0} +{"session_id":"sess-c0d7f8a16222","input_length":2793,"output_length":95,"hash_ids":[500036,500037,500038,500039,500040,500041],"delay":734.9} +{"session_id":"sess-c0d7f8a16222","input_length":618,"output_length":339,"hash_ids":[500042,500043],"delay":1770.6} +{"session_id":"sess-c0d7f8a16222","input_length":69,"output_length":169,"hash_ids":[500044],"delay":957.9} +{"session_id":"sess-c0d7f8a16222","input_length":762,"output_length":67,"hash_ids":[500045,500046],"delay":1069.6} +{"session_id":"sess-c3f48cf17f06","input_length":27620,"output_length":665,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,504032,504033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c3f48cf17f06","input_length":216,"output_length":219,"hash_ids":[504034],"delay":496.8} +{"session_id":"sess-c3f48cf17f06","input_length":1656,"output_length":105,"hash_ids":[504035,504036,504037,504038],"delay":1118.5} +{"session_id":"sess-c3f48cf17f06","input_length":910,"output_length":134,"hash_ids":[504039,504040],"delay":1106.0} +{"session_id":"sess-c3f48cf17f06","input_length":1923,"output_length":220,"hash_ids":[504041,504042,504043,504044],"delay":278.2} +{"session_id":"sess-c3f48cf17f06","input_length":2677,"output_length":171,"hash_ids":[504045,504046,504047,504048,504049,504050],"delay":43517.7} +{"session_id":"sess-c3f48cf17f06","input_length":1852,"output_length":57,"hash_ids":[504051,504052,504053,504054],"delay":1715.0} +{"session_id":"sess-c3f48cf17f06","input_length":1046,"output_length":183,"hash_ids":[504055,504056,504057],"delay":611.5} +{"session_id":"sess-c3f48cf17f06","input_length":2074,"output_length":232,"hash_ids":[504058,504059,504060,504061,504062],"delay":102.6} +{"session_id":"sess-c3f48cf17f06","input_length":448,"output_length":73,"hash_ids":[504063],"delay":1356.4} +{"session_id":"sess-c3f48cf17f06","input_length":558,"output_length":403,"hash_ids":[504064,504065],"delay":876.2} +{"session_id":"sess-c3f48cf17f06","input_length":2597,"output_length":327,"hash_ids":[504066,504067,504068,504069,504070,504071],"delay":252.7} +{"session_id":"sess-c3f48cf17f06","input_length":2026,"output_length":30,"hash_ids":[504072,504073,504074,504075],"delay":2929.2} +{"session_id":"sess-79c3ea57e767","input_length":27004,"output_length":471,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,508032],"timestamp":0.0,"group_id":6} +{"session_id":"sess-79c3ea57e767","input_length":177,"output_length":625,"hash_ids":[508033],"delay":5609.2} +{"session_id":"sess-79c3ea57e767","input_length":248,"output_length":172,"hash_ids":[508034],"delay":1682.1} +{"session_id":"sess-79c3ea57e767","input_length":461,"output_length":267,"hash_ids":[508035],"delay":49428.5} +{"session_id":"sess-79c3ea57e767","input_length":1777,"output_length":349,"hash_ids":[508036,508037,508038,508039],"delay":908.3} +{"session_id":"sess-79c3ea57e767","input_length":635,"output_length":189,"hash_ids":[508040,508041],"delay":691.8} +{"session_id":"sess-79c3ea57e767","input_length":1803,"output_length":325,"hash_ids":[508042,508043,508044,508045],"delay":710.7} +{"session_id":"sess-79c3ea57e767","input_length":487,"output_length":43,"hash_ids":[508046],"delay":1399.9} +{"session_id":"sess-79c3ea57e767","input_length":1905,"output_length":40,"hash_ids":[508047,508048,508049,508050],"delay":11597.3} +{"session_id":"sess-79c3ea57e767","input_length":431,"output_length":414,"hash_ids":[508051],"delay":1434.7} +{"session_id":"sess-79c3ea57e767","input_length":276,"output_length":94,"hash_ids":[508052],"delay":235.1} +{"session_id":"sess-79c3ea57e767","input_length":864,"output_length":128,"hash_ids":[508053,508054],"delay":358.4} +{"session_id":"sess-79c3ea57e767","input_length":294,"output_length":36,"hash_ids":[508055],"delay":2065.8} +{"session_id":"sess-79c3ea57e767","input_length":986,"output_length":158,"hash_ids":[508056,508057],"delay":5944.8} +{"session_id":"sess-79c3ea57e767","input_length":285,"output_length":97,"hash_ids":[508058],"delay":23616.8} +{"session_id":"sess-79c3ea57e767","input_length":2809,"output_length":167,"hash_ids":[508059,508060,508061,508062,508063,508064],"delay":4637.3} +{"session_id":"sess-79c3ea57e767","input_length":735,"output_length":290,"hash_ids":[508065,508066],"delay":1769.8} +{"session_id":"sess-79c3ea57e767","input_length":612,"output_length":164,"hash_ids":[508067,508068],"delay":35704.6} +{"session_id":"sess-79c3ea57e767","input_length":188,"output_length":179,"hash_ids":[508069],"delay":314.4} +{"session_id":"sess-79c3ea57e767","input_length":1164,"output_length":238,"hash_ids":[508070,508071,508072],"delay":984.0} +{"session_id":"sess-79c3ea57e767","input_length":2083,"output_length":40,"hash_ids":[508073,508074,508075,508076,508077],"delay":16195.0} +{"session_id":"sess-79c3ea57e767","input_length":1010,"output_length":65,"hash_ids":[508078,508079],"delay":603.7} +{"session_id":"sess-79c3ea57e767","input_length":148,"output_length":53,"hash_ids":[508080],"delay":13854.7} +{"session_id":"sess-79c3ea57e767","input_length":187,"output_length":51,"hash_ids":[508081],"delay":1406.4} +{"session_id":"sess-79c3ea57e767","input_length":1545,"output_length":197,"hash_ids":[508082,508083,508084,508085],"delay":743.2} +{"session_id":"sess-79c3ea57e767","input_length":260,"output_length":216,"hash_ids":[508086],"delay":268.4} +{"session_id":"sess-79c3ea57e767","input_length":234,"output_length":146,"hash_ids":[508087],"delay":211.8} +{"session_id":"sess-79c3ea57e767","input_length":640,"output_length":111,"hash_ids":[508088,508089],"delay":431.0} +{"session_id":"sess-79c3ea57e767","input_length":781,"output_length":42,"hash_ids":[508090,508091],"delay":640.5} +{"session_id":"sess-79c3ea57e767","input_length":818,"output_length":197,"hash_ids":[508092,508093],"delay":332.1} +{"session_id":"sess-79c3ea57e767","input_length":1749,"output_length":146,"hash_ids":[508094,508095,508096,508097],"delay":4540.3} +{"session_id":"sess-79c3ea57e767","input_length":1229,"output_length":36,"hash_ids":[508098,508099,508100],"delay":755.8} +{"session_id":"sess-79c3ea57e767","input_length":1114,"output_length":631,"hash_ids":[508101,508102,508103],"delay":746.4} +{"session_id":"sess-79c3ea57e767","input_length":1250,"output_length":128,"hash_ids":[508104,508105,508106],"delay":3019.3} +{"session_id":"sess-79c3ea57e767","input_length":122,"output_length":777,"hash_ids":[508107],"delay":2149.7} +{"session_id":"sess-79c3ea57e767","input_length":791,"output_length":48,"hash_ids":[508108,508109],"delay":3139.5} +{"session_id":"sess-79c3ea57e767","input_length":464,"output_length":258,"hash_ids":[508110],"delay":1232.9} +{"session_id":"sess-a4b43ac5da09","input_length":29356,"output_length":527,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,512032,512033,512034,512035,512036,512037],"timestamp":0.0,"group_id":17} +{"session_id":"sess-a4b43ac5da09","input_length":933,"output_length":65,"hash_ids":[512038,512039],"delay":3938.9} +{"session_id":"sess-a4b43ac5da09","input_length":1271,"output_length":295,"hash_ids":[512040,512041,512042],"delay":820.2} +{"session_id":"sess-a4b43ac5da09","input_length":593,"output_length":1091,"hash_ids":[512043,512044],"delay":288.0} +{"session_id":"sess-a4b43ac5da09","input_length":2387,"output_length":145,"hash_ids":[512045,512046,512047,512048,512049],"delay":501.3} +{"session_id":"sess-a4b43ac5da09","input_length":209,"output_length":158,"hash_ids":[512050],"delay":998.0} +{"session_id":"sess-a4b43ac5da09","input_length":945,"output_length":167,"hash_ids":[512051,512052],"delay":16383.7} +{"session_id":"sess-a4b43ac5da09","input_length":259,"output_length":258,"hash_ids":[512053],"delay":1531.4} +{"session_id":"sess-a4b43ac5da09","input_length":627,"output_length":511,"hash_ids":[512054,512055],"delay":169.8} +{"session_id":"sess-a4b43ac5da09","input_length":1883,"output_length":98,"hash_ids":[512056,512057,512058,512059],"delay":2144.5} +{"session_id":"sess-a4b43ac5da09","input_length":1916,"output_length":184,"hash_ids":[512060,512061,512062,512063],"delay":889.4} +{"session_id":"sess-a4b43ac5da09","input_length":702,"output_length":621,"hash_ids":[512064,512065],"delay":9098.7} +{"session_id":"sess-a4b43ac5da09","input_length":852,"output_length":177,"hash_ids":[512066,512067],"delay":715.9} +{"session_id":"sess-a4b43ac5da09","input_length":271,"output_length":83,"hash_ids":[512068],"delay":775.0} +{"session_id":"sess-a4b43ac5da09","input_length":2210,"output_length":383,"hash_ids":[512069,512070,512071,512072,512073],"delay":1687.1} +{"session_id":"sess-a4b43ac5da09","input_length":580,"output_length":113,"hash_ids":[512074,512075],"delay":1702.7} +{"session_id":"sess-a4b43ac5da09","input_length":822,"output_length":449,"hash_ids":[512076,512077],"delay":671.4} +{"session_id":"sess-a4b43ac5da09","input_length":1057,"output_length":48,"hash_ids":[512078,512079,512080],"delay":544.5} +{"session_id":"sess-a4b43ac5da09","input_length":814,"output_length":391,"hash_ids":[512081,512082],"delay":1218.7} +{"session_id":"sess-a4b43ac5da09","input_length":2468,"output_length":167,"hash_ids":[512083,512084,512085,512086,512087],"delay":10586.0} +{"session_id":"sess-a4b43ac5da09","input_length":570,"output_length":123,"hash_ids":[512088,512089],"delay":7868.2} +{"session_id":"sess-a4b43ac5da09","input_length":1667,"output_length":343,"hash_ids":[512090,512091,512092,512093],"delay":152.8} +{"session_id":"sess-a4b43ac5da09","input_length":192,"output_length":106,"hash_ids":[512094],"delay":3469.3} +{"session_id":"sess-a4b43ac5da09","input_length":1648,"output_length":145,"hash_ids":[512095,512096,512097,512098],"delay":543.8} +{"session_id":"sess-a4b43ac5da09","input_length":461,"output_length":182,"hash_ids":[512099],"delay":1087.5} +{"session_id":"sess-a4b43ac5da09","input_length":2730,"output_length":94,"hash_ids":[512100,512101,512102,512103,512104,512105],"delay":6214.8} +{"session_id":"sess-e4e554dee260","input_length":26868,"output_length":371,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,516032],"timestamp":0.0,"group_id":4} +{"session_id":"sess-e4e554dee260","input_length":2110,"output_length":276,"hash_ids":[516033,516034,516035,516036,516037],"delay":19490.3} +{"session_id":"sess-e4e554dee260","input_length":1472,"output_length":49,"hash_ids":[516038,516039,516040],"delay":465.1} +{"session_id":"sess-e4e554dee260","input_length":559,"output_length":693,"hash_ids":[516041,516042],"delay":4774.2} +{"session_id":"sess-e4e554dee260","input_length":272,"output_length":241,"hash_ids":[516043],"delay":265.6} +{"session_id":"sess-e4e554dee260","input_length":2897,"output_length":120,"hash_ids":[516044,516045,516046,516047,516048,516049],"delay":16223.2} +{"session_id":"sess-511a1d0baa41","input_length":31094,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,520032,520033,520034,520035,520036,520037,520038,520039,520040],"timestamp":0.0,"group_id":3} +{"session_id":"sess-511a1d0baa41","input_length":480,"output_length":128,"hash_ids":[520041],"delay":621.1} +{"session_id":"sess-511a1d0baa41","input_length":683,"output_length":411,"hash_ids":[520042,520043],"delay":1547.5} +{"session_id":"sess-511a1d0baa41","input_length":1974,"output_length":693,"hash_ids":[520044,520045,520046,520047],"delay":366.5} +{"session_id":"sess-511a1d0baa41","input_length":311,"output_length":296,"hash_ids":[520048],"delay":967.2} +{"session_id":"sess-511a1d0baa41","input_length":1272,"output_length":423,"hash_ids":[520049,520050,520051],"delay":960.1} +{"session_id":"sess-511a1d0baa41","input_length":541,"output_length":235,"hash_ids":[520052,520053],"delay":683.4} +{"session_id":"sess-511a1d0baa41","input_length":2134,"output_length":242,"hash_ids":[520054,520055,520056,520057,520058],"delay":540.0} +{"session_id":"sess-511a1d0baa41","input_length":881,"output_length":88,"hash_ids":[520059,520060],"delay":2535.9} +{"session_id":"sess-511a1d0baa41","input_length":2285,"output_length":127,"hash_ids":[520061,520062,520063,520064,520065],"delay":842.7} +{"session_id":"sess-051d6faeaa16","input_length":34931,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,524032,524033,524034,524035,524036,524037,524038,524039,524040,524041,524042,524043,524044,524045,524046,524047,524048],"timestamp":0.0,"group_id":39} +{"session_id":"sess-051d6faeaa16","input_length":227,"output_length":182,"hash_ids":[524049],"delay":706.0} +{"session_id":"sess-051d6faeaa16","input_length":604,"output_length":67,"hash_ids":[524050,524051],"delay":1344.1} +{"session_id":"sess-051d6faeaa16","input_length":652,"output_length":32,"hash_ids":[524052,524053],"delay":1002.1} +{"session_id":"sess-051d6faeaa16","input_length":546,"output_length":89,"hash_ids":[524054,524055],"delay":32107.5} +{"session_id":"sess-051d6faeaa16","input_length":86,"output_length":97,"hash_ids":[524056],"delay":2273.4} +{"session_id":"sess-051d6faeaa16","input_length":839,"output_length":45,"hash_ids":[524057,524058],"delay":3695.1} +{"session_id":"sess-051d6faeaa16","input_length":608,"output_length":38,"hash_ids":[524059,524060],"delay":17867.5} +{"session_id":"sess-051d6faeaa16","input_length":381,"output_length":148,"hash_ids":[524061],"delay":1074.0} +{"session_id":"sess-051d6faeaa16","input_length":189,"output_length":694,"hash_ids":[524062],"delay":953.7} +{"session_id":"sess-051d6faeaa16","input_length":1296,"output_length":238,"hash_ids":[524063,524064,524065],"delay":1789.6} +{"session_id":"sess-051d6faeaa16","input_length":620,"output_length":179,"hash_ids":[524066,524067],"delay":25303.3} +{"session_id":"sess-051d6faeaa16","input_length":1021,"output_length":58,"hash_ids":[524068,524069],"delay":2224.4} +{"session_id":"sess-051d6faeaa16","input_length":2747,"output_length":281,"hash_ids":[524070,524071,524072,524073,524074,524075],"delay":8221.0} +{"session_id":"sess-051d6faeaa16","input_length":464,"output_length":333,"hash_ids":[524076],"delay":23431.2} +{"session_id":"sess-051d6faeaa16","input_length":754,"output_length":297,"hash_ids":[524077,524078],"delay":15967.0} +{"session_id":"sess-051d6faeaa16","input_length":639,"output_length":553,"hash_ids":[524079,524080],"delay":6298.2} +{"session_id":"sess-051d6faeaa16","input_length":51,"output_length":146,"hash_ids":[524081],"delay":2172.7} +{"session_id":"sess-051d6faeaa16","input_length":1163,"output_length":312,"hash_ids":[524082,524083,524084],"delay":435.0} +{"session_id":"sess-051d6faeaa16","input_length":2268,"output_length":158,"hash_ids":[524085,524086,524087,524088,524089],"delay":489.9} +{"session_id":"sess-051d6faeaa16","input_length":314,"output_length":160,"hash_ids":[524090],"delay":988.3} +{"session_id":"sess-051d6faeaa16","input_length":541,"output_length":409,"hash_ids":[524091,524092],"delay":1679.1} +{"session_id":"sess-051d6faeaa16","input_length":1613,"output_length":110,"hash_ids":[524093,524094,524095,524096],"delay":2083.6} +{"session_id":"sess-051d6faeaa16","input_length":422,"output_length":214,"hash_ids":[524097],"delay":1359.6} +{"session_id":"sess-051d6faeaa16","input_length":696,"output_length":569,"hash_ids":[524098,524099],"delay":7162.5} +{"session_id":"sess-051d6faeaa16","input_length":689,"output_length":171,"hash_ids":[524100,524101],"delay":196.5} +{"session_id":"sess-051d6faeaa16","input_length":2308,"output_length":119,"hash_ids":[524102,524103,524104,524105,524106],"delay":5269.9} +{"session_id":"sess-051d6faeaa16","input_length":246,"output_length":129,"hash_ids":[524107],"delay":5533.1} +{"session_id":"sess-051d6faeaa16","input_length":487,"output_length":129,"hash_ids":[524108],"delay":135.8} +{"session_id":"sess-051d6faeaa16","input_length":155,"output_length":123,"hash_ids":[524109],"delay":460.5} +{"session_id":"sess-051d6faeaa16","input_length":902,"output_length":137,"hash_ids":[524110,524111],"delay":336.7} +{"session_id":"sess-051d6faeaa16","input_length":440,"output_length":228,"hash_ids":[524112],"delay":1420.6} +{"session_id":"sess-0f17ab0b2d1a","input_length":26497,"output_length":115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251],"timestamp":0.0,"group_id":6} +{"session_id":"sess-0f17ab0b2d1a","input_length":369,"output_length":58,"hash_ids":[524113],"delay":2034.3} +{"session_id":"sess-0f17ab0b2d1a","input_length":500,"output_length":214,"hash_ids":[524114],"delay":767.4} +{"session_id":"sess-0f17ab0b2d1a","input_length":810,"output_length":106,"hash_ids":[524115,524116],"delay":2266.1} +{"session_id":"sess-0f17ab0b2d1a","input_length":1451,"output_length":409,"hash_ids":[524117,524118,524119],"delay":777.2} +{"session_id":"sess-0f17ab0b2d1a","input_length":230,"output_length":142,"hash_ids":[524120],"delay":480.1} +{"session_id":"sess-0f17ab0b2d1a","input_length":1342,"output_length":225,"hash_ids":[524121,524122,524123],"delay":42359.1} +{"session_id":"sess-0f17ab0b2d1a","input_length":187,"output_length":149,"hash_ids":[524124],"delay":2871.7} +{"session_id":"sess-0f17ab0b2d1a","input_length":520,"output_length":504,"hash_ids":[524125,524126],"delay":4638.1} +{"session_id":"sess-0f17ab0b2d1a","input_length":1111,"output_length":585,"hash_ids":[524127,524128,524129],"delay":467.8} +{"session_id":"sess-0f17ab0b2d1a","input_length":502,"output_length":109,"hash_ids":[524130],"delay":1032.9} +{"session_id":"sess-0f17ab0b2d1a","input_length":621,"output_length":937,"hash_ids":[524131,524132],"delay":5525.2} +{"session_id":"sess-0f17ab0b2d1a","input_length":2146,"output_length":104,"hash_ids":[524133,524134,524135,524136,524137],"delay":349.4} +{"session_id":"sess-0f17ab0b2d1a","input_length":433,"output_length":162,"hash_ids":[524138],"delay":2007.4} +{"session_id":"sess-0f17ab0b2d1a","input_length":1274,"output_length":666,"hash_ids":[524139,524140,524141],"delay":602.6} +{"session_id":"sess-0f17ab0b2d1a","input_length":1585,"output_length":264,"hash_ids":[524142,524143,524144,524145],"delay":584.6} +{"session_id":"sess-f8b8e90085e4","input_length":27701,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,532032,532033,532034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f8b8e90085e4","input_length":1309,"output_length":179,"hash_ids":[532035,532036,532037],"delay":42272.5} +{"session_id":"sess-f8b8e90085e4","input_length":653,"output_length":208,"hash_ids":[532038,532039],"delay":529.6} +{"session_id":"sess-f8b8e90085e4","input_length":597,"output_length":171,"hash_ids":[532040,532041],"delay":28059.7} +{"session_id":"sess-f8b8e90085e4","input_length":766,"output_length":155,"hash_ids":[532042,532043],"delay":254.5} +{"session_id":"sess-f8b8e90085e4","input_length":2987,"output_length":417,"hash_ids":[532044,532045,532046,532047,532048,532049],"delay":1987.4} +{"session_id":"sess-f8b8e90085e4","input_length":434,"output_length":32,"hash_ids":[532050],"delay":23338.9} +{"session_id":"sess-f8b8e90085e4","input_length":2849,"output_length":674,"hash_ids":[532051,532052,532053,532054,532055,532056],"delay":1294.9} +{"session_id":"sess-f8b8e90085e4","input_length":1948,"output_length":54,"hash_ids":[532057,532058,532059,532060],"delay":401.8} +{"session_id":"sess-f8b8e90085e4","input_length":655,"output_length":30,"hash_ids":[532061,532062],"delay":36894.8} +{"session_id":"sess-08309f01f122","input_length":30589,"output_length":164,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,536032,536033,536034,536035,536036,536037,536038,536039],"timestamp":0.0,"group_id":3} +{"session_id":"sess-08309f01f122","input_length":345,"output_length":84,"hash_ids":[536040],"delay":2599.6} +{"session_id":"sess-08309f01f122","input_length":1307,"output_length":149,"hash_ids":[536041,536042,536043],"delay":381.2} +{"session_id":"sess-08309f01f122","input_length":1195,"output_length":119,"hash_ids":[536044,536045,536046],"delay":2287.4} +{"session_id":"sess-08309f01f122","input_length":93,"output_length":171,"hash_ids":[536047],"delay":32324.9} +{"session_id":"sess-08309f01f122","input_length":2881,"output_length":142,"hash_ids":[536048,536049,536050,536051,536052,536053],"delay":407.8} +{"session_id":"sess-08309f01f122","input_length":1679,"output_length":221,"hash_ids":[536054,536055,536056,536057],"delay":296.4} +{"session_id":"sess-08309f01f122","input_length":1963,"output_length":79,"hash_ids":[536058,536059,536060,536061],"delay":1767.2} +{"session_id":"sess-08309f01f122","input_length":1632,"output_length":336,"hash_ids":[536062,536063,536064,536065],"delay":2242.6} +{"session_id":"sess-08309f01f122","input_length":847,"output_length":343,"hash_ids":[536066,536067],"delay":15961.1} +{"session_id":"sess-08309f01f122","input_length":685,"output_length":435,"hash_ids":[536068,536069],"delay":332.9} +{"session_id":"sess-08309f01f122","input_length":885,"output_length":41,"hash_ids":[536070,536071],"delay":2518.5} +{"session_id":"sess-08309f01f122","input_length":1966,"output_length":87,"hash_ids":[536072,536073,536074,536075],"delay":602.2} +{"session_id":"sess-08309f01f122","input_length":871,"output_length":463,"hash_ids":[536076,536077],"delay":933.4} +{"session_id":"sess-08309f01f122","input_length":848,"output_length":516,"hash_ids":[536078,536079],"delay":2694.9} +{"session_id":"sess-08309f01f122","input_length":1006,"output_length":80,"hash_ids":[536080,536081],"delay":7627.4} +{"session_id":"sess-08309f01f122","input_length":1272,"output_length":93,"hash_ids":[536082,536083,536084],"delay":1300.8} +{"session_id":"sess-08309f01f122","input_length":1366,"output_length":211,"hash_ids":[536085,536086,536087],"delay":33141.1} +{"session_id":"sess-fc10ecf13217","input_length":30518,"output_length":262,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,540032,540033,540034,540035,540036,540037,540038,540039],"timestamp":0.0,"group_id":4} +{"session_id":"sess-fc10ecf13217","input_length":83,"output_length":204,"hash_ids":[540040],"delay":39634.0} +{"session_id":"sess-fc10ecf13217","input_length":494,"output_length":63,"hash_ids":[540041],"delay":777.9} +{"session_id":"sess-fc10ecf13217","input_length":1096,"output_length":476,"hash_ids":[540042,540043,540044],"delay":2283.6} +{"session_id":"sess-fc10ecf13217","input_length":2048,"output_length":372,"hash_ids":[540045,540046,540047,540048],"delay":799.2} +{"session_id":"sess-fc10ecf13217","input_length":537,"output_length":115,"hash_ids":[540049,540050],"delay":705.2} +{"session_id":"sess-fc10ecf13217","input_length":2703,"output_length":222,"hash_ids":[540051,540052,540053,540054,540055,540056],"delay":3439.9} +{"session_id":"sess-fc10ecf13217","input_length":375,"output_length":489,"hash_ids":[540057],"delay":7066.0} +{"session_id":"sess-fc10ecf13217","input_length":500,"output_length":188,"hash_ids":[540058],"delay":602.2} +{"session_id":"sess-fc10ecf13217","input_length":1400,"output_length":230,"hash_ids":[540059,540060,540061],"delay":594.7} +{"session_id":"sess-fc10ecf13217","input_length":1443,"output_length":565,"hash_ids":[540062,540063,540064],"delay":4936.1} +{"session_id":"sess-fc10ecf13217","input_length":637,"output_length":179,"hash_ids":[540065,540066],"delay":382.9} +{"session_id":"sess-fc10ecf13217","input_length":42,"output_length":1008,"hash_ids":[540067],"delay":1472.2} +{"session_id":"sess-fc10ecf13217","input_length":262,"output_length":163,"hash_ids":[540068],"delay":910.1} +{"session_id":"sess-fc10ecf13217","input_length":704,"output_length":74,"hash_ids":[540069,540070],"delay":954.9} +{"session_id":"sess-fc10ecf13217","input_length":703,"output_length":188,"hash_ids":[540071,540072],"delay":19782.2} +{"session_id":"sess-fc10ecf13217","input_length":1971,"output_length":84,"hash_ids":[540073,540074,540075,540076],"delay":2850.0} +{"session_id":"sess-fc10ecf13217","input_length":1426,"output_length":329,"hash_ids":[540077,540078,540079],"delay":1087.6} +{"session_id":"sess-17142a5a52c9","input_length":29032,"output_length":462,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,544032,544033,544034,544035,544036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-17142a5a52c9","input_length":803,"output_length":313,"hash_ids":[544037,544038],"delay":393.7} +{"session_id":"sess-17142a5a52c9","input_length":76,"output_length":1049,"hash_ids":[544039],"delay":42448.2} +{"session_id":"sess-17142a5a52c9","input_length":174,"output_length":211,"hash_ids":[544040],"delay":32758.6} +{"session_id":"sess-17142a5a52c9","input_length":387,"output_length":552,"hash_ids":[544041],"delay":403.6} +{"session_id":"sess-17142a5a52c9","input_length":560,"output_length":64,"hash_ids":[544042,544043],"delay":692.1} +{"session_id":"sess-17142a5a52c9","input_length":1157,"output_length":121,"hash_ids":[544044,544045,544046],"delay":793.2} +{"session_id":"sess-17142a5a52c9","input_length":339,"output_length":139,"hash_ids":[544047],"delay":440.2} +{"session_id":"sess-17142a5a52c9","input_length":2021,"output_length":117,"hash_ids":[544048,544049,544050,544051],"delay":5169.3} +{"session_id":"sess-17142a5a52c9","input_length":546,"output_length":75,"hash_ids":[544052,544053],"delay":49739.0} +{"session_id":"sess-17142a5a52c9","input_length":782,"output_length":361,"hash_ids":[544054,544055],"delay":680.9} +{"session_id":"sess-17142a5a52c9","input_length":622,"output_length":762,"hash_ids":[544056,544057],"delay":6598.6} +{"session_id":"sess-17142a5a52c9","input_length":221,"output_length":240,"hash_ids":[544058],"delay":514.4} +{"session_id":"sess-17142a5a52c9","input_length":760,"output_length":374,"hash_ids":[544059,544060],"delay":2094.1} +{"session_id":"sess-17142a5a52c9","input_length":1412,"output_length":226,"hash_ids":[544061,544062,544063],"delay":1489.1} +{"session_id":"sess-17142a5a52c9","input_length":2050,"output_length":365,"hash_ids":[544064,544065,544066,544067,544068],"delay":2200.3} +{"session_id":"sess-17142a5a52c9","input_length":796,"output_length":37,"hash_ids":[544069,544070],"delay":515.6} +{"session_id":"sess-17142a5a52c9","input_length":1531,"output_length":130,"hash_ids":[544071,544072,544073],"delay":49118.2} +{"session_id":"sess-17142a5a52c9","input_length":755,"output_length":123,"hash_ids":[544074,544075],"delay":1301.0} +{"session_id":"sess-17142a5a52c9","input_length":673,"output_length":226,"hash_ids":[544076,544077],"delay":409.8} +{"session_id":"sess-17142a5a52c9","input_length":540,"output_length":202,"hash_ids":[544078,544079],"delay":697.2} +{"session_id":"sess-17142a5a52c9","input_length":440,"output_length":378,"hash_ids":[544080],"delay":572.6} +{"session_id":"sess-17142a5a52c9","input_length":837,"output_length":142,"hash_ids":[544081,544082],"delay":9856.4} +{"session_id":"sess-17142a5a52c9","input_length":291,"output_length":600,"hash_ids":[544083],"delay":2611.3} +{"session_id":"sess-b638853b8549","input_length":27537,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,548032,548033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b638853b8549","input_length":2079,"output_length":53,"hash_ids":[548034,548035,548036,548037,548038],"delay":3663.7} +{"session_id":"sess-b638853b8549","input_length":591,"output_length":1192,"hash_ids":[548039,548040],"delay":277.7} +{"session_id":"sess-b638853b8549","input_length":236,"output_length":207,"hash_ids":[548041],"delay":21999.8} +{"session_id":"sess-b638853b8549","input_length":2327,"output_length":575,"hash_ids":[548042,548043,548044,548045,548046],"delay":228.6} +{"session_id":"sess-b638853b8549","input_length":1036,"output_length":218,"hash_ids":[548047,548048,548049],"delay":620.6} +{"session_id":"sess-b638853b8549","input_length":249,"output_length":834,"hash_ids":[548050],"delay":11696.9} +{"session_id":"sess-b638853b8549","input_length":509,"output_length":107,"hash_ids":[548051],"delay":822.5} +{"session_id":"sess-b638853b8549","input_length":2827,"output_length":209,"hash_ids":[548052,548053,548054,548055,548056,548057],"delay":57612.1} +{"session_id":"sess-b638853b8549","input_length":863,"output_length":83,"hash_ids":[548058,548059],"delay":22935.4} +{"session_id":"sess-b638853b8549","input_length":1315,"output_length":356,"hash_ids":[548060,548061,548062],"delay":3905.9} +{"session_id":"sess-b638853b8549","input_length":1707,"output_length":878,"hash_ids":[548063,548064,548065,548066],"delay":246.0} +{"session_id":"sess-b638853b8549","input_length":1077,"output_length":255,"hash_ids":[548067,548068,548069],"delay":665.6} +{"session_id":"sess-b638853b8549","input_length":619,"output_length":93,"hash_ids":[548070,548071],"delay":907.7} +{"session_id":"sess-b638853b8549","input_length":416,"output_length":810,"hash_ids":[548072],"delay":1041.5} +{"session_id":"sess-b638853b8549","input_length":1016,"output_length":1132,"hash_ids":[548073,548074],"delay":749.0} +{"session_id":"sess-b638853b8549","input_length":576,"output_length":757,"hash_ids":[548075,548076],"delay":477.1} +{"session_id":"sess-b638853b8549","input_length":467,"output_length":203,"hash_ids":[548077],"delay":1046.9} +{"session_id":"sess-b638853b8549","input_length":339,"output_length":473,"hash_ids":[548078],"delay":8720.8} +{"session_id":"sess-4c5ecff86f02","input_length":29039,"output_length":550,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,552032,552033,552034,552035,552036],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4c5ecff86f02","input_length":2141,"output_length":294,"hash_ids":[552037,552038,552039,552040,552041],"delay":4896.8} +{"session_id":"sess-4c5ecff86f02","input_length":413,"output_length":125,"hash_ids":[552042],"delay":1048.3} +{"session_id":"sess-4c5ecff86f02","input_length":1403,"output_length":151,"hash_ids":[552043,552044,552045],"delay":42481.9} +{"session_id":"sess-4c5ecff86f02","input_length":1191,"output_length":532,"hash_ids":[552046,552047,552048],"delay":1350.9} +{"session_id":"sess-4c5ecff86f02","input_length":285,"output_length":725,"hash_ids":[552049],"delay":1876.4} +{"session_id":"sess-4c5ecff86f02","input_length":623,"output_length":142,"hash_ids":[552050,552051],"delay":557.7} +{"session_id":"sess-4c5ecff86f02","input_length":1249,"output_length":567,"hash_ids":[552052,552053,552054],"delay":272.8} +{"session_id":"sess-4c5ecff86f02","input_length":851,"output_length":203,"hash_ids":[552055,552056],"delay":3223.7} +{"session_id":"sess-4c5ecff86f02","input_length":875,"output_length":622,"hash_ids":[552057,552058],"delay":23249.3} +{"session_id":"sess-4c5ecff86f02","input_length":416,"output_length":252,"hash_ids":[552059],"delay":868.4} +{"session_id":"sess-4c5ecff86f02","input_length":1265,"output_length":295,"hash_ids":[552060,552061,552062],"delay":275.9} +{"session_id":"sess-4c5ecff86f02","input_length":1471,"output_length":160,"hash_ids":[552063,552064,552065],"delay":464.6} +{"session_id":"sess-4c5ecff86f02","input_length":209,"output_length":61,"hash_ids":[552066],"delay":429.3} +{"session_id":"sess-4c5ecff86f02","input_length":744,"output_length":288,"hash_ids":[552067,552068],"delay":3038.9} +{"session_id":"sess-4c5ecff86f02","input_length":578,"output_length":57,"hash_ids":[552069,552070],"delay":678.5} +{"session_id":"sess-4c5ecff86f02","input_length":395,"output_length":126,"hash_ids":[552071],"delay":240.5} +{"session_id":"sess-4c5ecff86f02","input_length":293,"output_length":1464,"hash_ids":[552072],"delay":11699.6} +{"session_id":"sess-4c5ecff86f02","input_length":210,"output_length":59,"hash_ids":[552073],"delay":659.9} +{"session_id":"sess-4c5ecff86f02","input_length":2985,"output_length":268,"hash_ids":[552074,552075,552076,552077,552078,552079],"delay":7168.8} +{"session_id":"sess-4c5ecff86f02","input_length":1045,"output_length":719,"hash_ids":[552080,552081,552082],"delay":188.9} +{"session_id":"sess-bb8561dbb06b","input_length":27007,"output_length":295,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,556032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-bb8561dbb06b","input_length":633,"output_length":191,"hash_ids":[556033,556034],"delay":739.7} +{"session_id":"sess-bb8561dbb06b","input_length":646,"output_length":539,"hash_ids":[556035,556036],"delay":855.9} +{"session_id":"sess-bb8561dbb06b","input_length":1052,"output_length":55,"hash_ids":[556037,556038,556039],"delay":515.0} +{"session_id":"sess-bb8561dbb06b","input_length":1340,"output_length":1430,"hash_ids":[556040,556041,556042],"delay":2104.4} +{"session_id":"sess-bb8561dbb06b","input_length":388,"output_length":149,"hash_ids":[556043],"delay":3459.3} +{"session_id":"sess-5b1ab0f90946","input_length":28829,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,560032,560033,560034,560035,560036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5b1ab0f90946","input_length":567,"output_length":38,"hash_ids":[560037,560038],"delay":868.4} +{"session_id":"sess-5b1ab0f90946","input_length":1054,"output_length":321,"hash_ids":[560039,560040,560041],"delay":4222.6} +{"session_id":"sess-5b1ab0f90946","input_length":284,"output_length":96,"hash_ids":[560042],"delay":196.6} +{"session_id":"sess-5b1ab0f90946","input_length":1382,"output_length":40,"hash_ids":[560043,560044,560045],"delay":25955.8} +{"session_id":"sess-5b1ab0f90946","input_length":593,"output_length":245,"hash_ids":[560046,560047],"delay":903.1} +{"session_id":"sess-5b1ab0f90946","input_length":176,"output_length":30,"hash_ids":[560048],"delay":959.9} +{"session_id":"sess-5b1ab0f90946","input_length":2450,"output_length":120,"hash_ids":[560049,560050,560051,560052,560053],"delay":755.7} +{"session_id":"sess-5b1ab0f90946","input_length":1383,"output_length":158,"hash_ids":[560054,560055,560056],"delay":3242.0} +{"session_id":"sess-5b1ab0f90946","input_length":829,"output_length":503,"hash_ids":[560057,560058],"delay":876.4} +{"session_id":"sess-5b1ab0f90946","input_length":202,"output_length":114,"hash_ids":[560059],"delay":3030.8} +{"session_id":"sess-5b1ab0f90946","input_length":444,"output_length":554,"hash_ids":[560060],"delay":1123.6} +{"session_id":"sess-5b1ab0f90946","input_length":68,"output_length":303,"hash_ids":[560061],"delay":2764.1} +{"session_id":"sess-5b1ab0f90946","input_length":2579,"output_length":314,"hash_ids":[560062,560063,560064,560065,560066,560067],"delay":4336.3} +{"session_id":"sess-5b1ab0f90946","input_length":868,"output_length":48,"hash_ids":[560068,560069],"delay":976.6} +{"session_id":"sess-5b1ab0f90946","input_length":1232,"output_length":239,"hash_ids":[560070,560071,560072],"delay":3413.2} +{"session_id":"sess-5b1ab0f90946","input_length":1075,"output_length":383,"hash_ids":[560073,560074,560075],"delay":602.7} +{"session_id":"sess-5b1ab0f90946","input_length":796,"output_length":82,"hash_ids":[560076,560077],"delay":1570.9} +{"session_id":"sess-0bb8ed47b7ff","input_length":26862,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,564032],"timestamp":0.0,"group_id":11} +{"session_id":"sess-0bb8ed47b7ff","input_length":378,"output_length":70,"hash_ids":[564033],"delay":1019.2} +{"session_id":"sess-0bb8ed47b7ff","input_length":289,"output_length":114,"hash_ids":[564034],"delay":2127.3} +{"session_id":"sess-0bb8ed47b7ff","input_length":222,"output_length":71,"hash_ids":[564035],"delay":497.0} +{"session_id":"sess-0bb8ed47b7ff","input_length":508,"output_length":61,"hash_ids":[564036],"delay":788.1} +{"session_id":"sess-0bb8ed47b7ff","input_length":527,"output_length":100,"hash_ids":[564037,564038],"delay":874.0} +{"session_id":"sess-0bb8ed47b7ff","input_length":2822,"output_length":58,"hash_ids":[564039,564040,564041,564042,564043,564044],"delay":578.0} +{"session_id":"sess-0bb8ed47b7ff","input_length":2654,"output_length":227,"hash_ids":[564045,564046,564047,564048,564049,564050],"delay":2822.1} +{"session_id":"sess-0bb8ed47b7ff","input_length":1243,"output_length":303,"hash_ids":[564051,564052,564053],"delay":6143.8} +{"session_id":"sess-0bb8ed47b7ff","input_length":349,"output_length":180,"hash_ids":[564054],"delay":471.1} +{"session_id":"sess-0bb8ed47b7ff","input_length":185,"output_length":518,"hash_ids":[564055],"delay":1435.4} +{"session_id":"sess-0bb8ed47b7ff","input_length":562,"output_length":71,"hash_ids":[564056,564057],"delay":250.5} +{"session_id":"sess-0bb8ed47b7ff","input_length":1117,"output_length":329,"hash_ids":[564058,564059,564060],"delay":5889.7} +{"session_id":"sess-0bb8ed47b7ff","input_length":1294,"output_length":90,"hash_ids":[564061,564062,564063],"delay":3209.3} +{"session_id":"sess-0bb8ed47b7ff","input_length":154,"output_length":137,"hash_ids":[564064],"delay":24345.5} +{"session_id":"sess-0bb8ed47b7ff","input_length":1653,"output_length":406,"hash_ids":[564065,564066,564067,564068],"delay":856.9} +{"session_id":"sess-0bb8ed47b7ff","input_length":366,"output_length":64,"hash_ids":[564069],"delay":1244.2} +{"session_id":"sess-0bb8ed47b7ff","input_length":131,"output_length":1299,"hash_ids":[564070],"delay":5715.7} +{"session_id":"sess-0bb8ed47b7ff","input_length":774,"output_length":714,"hash_ids":[564071,564072],"delay":434.7} +{"session_id":"sess-0bb8ed47b7ff","input_length":1006,"output_length":40,"hash_ids":[564073,564074],"delay":371.2} +{"session_id":"sess-0bb8ed47b7ff","input_length":282,"output_length":74,"hash_ids":[564075],"delay":3502.6} +{"session_id":"sess-0bb8ed47b7ff","input_length":835,"output_length":161,"hash_ids":[564076,564077],"delay":506.6} +{"session_id":"sess-0bb8ed47b7ff","input_length":2486,"output_length":279,"hash_ids":[564078,564079,564080,564081,564082],"delay":900.2} +{"session_id":"sess-0bb8ed47b7ff","input_length":323,"output_length":491,"hash_ids":[564083],"delay":946.1} +{"session_id":"sess-0bb8ed47b7ff","input_length":1178,"output_length":415,"hash_ids":[564084,564085,564086],"delay":1290.3} +{"session_id":"sess-0bb8ed47b7ff","input_length":969,"output_length":309,"hash_ids":[564087,564088],"delay":578.6} +{"session_id":"sess-0bb8ed47b7ff","input_length":951,"output_length":406,"hash_ids":[564089,564090],"delay":297.6} +{"session_id":"sess-0bb8ed47b7ff","input_length":582,"output_length":182,"hash_ids":[564091,564092],"delay":10313.1} +{"session_id":"sess-0bb8ed47b7ff","input_length":1510,"output_length":198,"hash_ids":[564093,564094,564095],"delay":258.2} +{"session_id":"sess-0bb8ed47b7ff","input_length":2964,"output_length":620,"hash_ids":[564096,564097,564098,564099,564100,564101],"delay":932.9} +{"session_id":"sess-0bb8ed47b7ff","input_length":1453,"output_length":664,"hash_ids":[564102,564103,564104],"delay":284.9} +{"session_id":"sess-c6e4e9894d04","input_length":37818,"output_length":598,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,568032,568033,568034,568035,568036,568037,568038,568039,568040,568041,568042,568043,568044,568045,568046,568047,568048,568049,568050,568051,568052,568053],"timestamp":0.0,"group_id":31} +{"session_id":"sess-c6e4e9894d04","input_length":2083,"output_length":386,"hash_ids":[568054,568055,568056,568057,568058],"delay":22715.7} +{"session_id":"sess-c6e4e9894d04","input_length":1602,"output_length":61,"hash_ids":[568059,568060,568061,568062],"delay":769.9} +{"session_id":"sess-c6e4e9894d04","input_length":534,"output_length":431,"hash_ids":[568063,568064],"delay":601.2} +{"session_id":"sess-c6e4e9894d04","input_length":1761,"output_length":220,"hash_ids":[568065,568066,568067,568068],"delay":327.9} +{"session_id":"sess-c6e4e9894d04","input_length":1560,"output_length":154,"hash_ids":[568069,568070,568071,568072],"delay":10738.7} +{"session_id":"sess-c6e4e9894d04","input_length":997,"output_length":87,"hash_ids":[568073,568074],"delay":1212.5} +{"session_id":"sess-c6e4e9894d04","input_length":1888,"output_length":97,"hash_ids":[568075,568076,568077,568078],"delay":22195.6} +{"session_id":"sess-c6e4e9894d04","input_length":1682,"output_length":490,"hash_ids":[568079,568080,568081,568082],"delay":26471.5} +{"session_id":"sess-375f388289d9","input_length":27204,"output_length":56,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,572032,572033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-375f388289d9","input_length":1930,"output_length":153,"hash_ids":[572034,572035,572036,572037],"delay":500.4} +{"session_id":"sess-375f388289d9","input_length":1101,"output_length":260,"hash_ids":[572038,572039,572040],"delay":24336.1} +{"session_id":"sess-375f388289d9","input_length":1059,"output_length":184,"hash_ids":[572041,572042,572043],"delay":1574.2} +{"session_id":"sess-375f388289d9","input_length":344,"output_length":163,"hash_ids":[572044],"delay":43044.8} +{"session_id":"sess-375f388289d9","input_length":690,"output_length":234,"hash_ids":[572045,572046],"delay":7905.4} +{"session_id":"sess-375f388289d9","input_length":154,"output_length":228,"hash_ids":[572047],"delay":13164.8} +{"session_id":"sess-375f388289d9","input_length":54,"output_length":309,"hash_ids":[572048],"delay":5107.1} +{"session_id":"sess-375f388289d9","input_length":691,"output_length":319,"hash_ids":[572049,572050],"delay":3706.4} +{"session_id":"sess-375f388289d9","input_length":1291,"output_length":239,"hash_ids":[572051,572052,572053],"delay":6891.9} +{"session_id":"sess-375f388289d9","input_length":473,"output_length":1284,"hash_ids":[572054],"delay":942.8} +{"session_id":"sess-375f388289d9","input_length":728,"output_length":151,"hash_ids":[572055,572056],"delay":700.7} +{"session_id":"sess-375f388289d9","input_length":862,"output_length":208,"hash_ids":[572057,572058],"delay":1818.9} +{"session_id":"sess-375f388289d9","input_length":1219,"output_length":63,"hash_ids":[572059,572060,572061],"delay":31598.6} +{"session_id":"sess-375f388289d9","input_length":560,"output_length":1086,"hash_ids":[572062,572063],"delay":191.0} +{"session_id":"sess-375f388289d9","input_length":472,"output_length":365,"hash_ids":[572064],"delay":22652.5} +{"session_id":"sess-375f388289d9","input_length":541,"output_length":74,"hash_ids":[572065,572066],"delay":1002.2} +{"session_id":"sess-375f388289d9","input_length":427,"output_length":332,"hash_ids":[572067],"delay":1251.7} +{"session_id":"sess-375f388289d9","input_length":1063,"output_length":122,"hash_ids":[572068,572069,572070],"delay":2728.8} +{"session_id":"sess-375f388289d9","input_length":1312,"output_length":138,"hash_ids":[572071,572072,572073],"delay":3660.7} +{"session_id":"sess-375f388289d9","input_length":73,"output_length":184,"hash_ids":[572074],"delay":10711.9} +{"session_id":"sess-375f388289d9","input_length":778,"output_length":185,"hash_ids":[572075,572076],"delay":2524.9} +{"session_id":"sess-375f388289d9","input_length":1273,"output_length":408,"hash_ids":[572077,572078,572079],"delay":1316.6} +{"session_id":"sess-375f388289d9","input_length":1330,"output_length":46,"hash_ids":[572080,572081,572082],"delay":913.1} +{"session_id":"sess-375f388289d9","input_length":1138,"output_length":88,"hash_ids":[572083,572084,572085],"delay":263.1} +{"session_id":"sess-375f388289d9","input_length":295,"output_length":537,"hash_ids":[572086],"delay":13274.2} +{"session_id":"sess-375f388289d9","input_length":364,"output_length":56,"hash_ids":[572087],"delay":5031.1} +{"session_id":"sess-375f388289d9","input_length":903,"output_length":517,"hash_ids":[572088,572089],"delay":994.0} +{"session_id":"sess-375f388289d9","input_length":313,"output_length":177,"hash_ids":[572090],"delay":360.0} +{"session_id":"sess-375f388289d9","input_length":187,"output_length":245,"hash_ids":[572091],"delay":1561.4} +{"session_id":"sess-375f388289d9","input_length":1666,"output_length":118,"hash_ids":[572092,572093,572094,572095],"delay":714.3} +{"session_id":"sess-375f388289d9","input_length":259,"output_length":631,"hash_ids":[572096],"delay":392.1} +{"session_id":"sess-375f388289d9","input_length":970,"output_length":111,"hash_ids":[572097,572098],"delay":388.2} +{"session_id":"sess-375f388289d9","input_length":1224,"output_length":364,"hash_ids":[572099,572100,572101],"delay":6478.1} +{"session_id":"sess-375f388289d9","input_length":1204,"output_length":82,"hash_ids":[572102,572103,572104],"delay":316.2} +{"session_id":"sess-375f388289d9","input_length":613,"output_length":55,"hash_ids":[572105,572106],"delay":8372.7} +{"session_id":"sess-3f5027332c21","input_length":28220,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,576032,576033,576034,576035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3f5027332c21","input_length":249,"output_length":230,"hash_ids":[576036],"delay":320.0} +{"session_id":"sess-3f5027332c21","input_length":2577,"output_length":73,"hash_ids":[576037,576038,576039,576040,576041,576042],"delay":66453.1} +{"session_id":"sess-3f5027332c21","input_length":498,"output_length":246,"hash_ids":[576043],"delay":7539.8} +{"session_id":"sess-3f5027332c21","input_length":1114,"output_length":240,"hash_ids":[576044,576045,576046],"delay":1104.6} +{"session_id":"sess-3f5027332c21","input_length":2441,"output_length":166,"hash_ids":[576047,576048,576049,576050,576051],"delay":17306.7} +{"session_id":"sess-3f5027332c21","input_length":722,"output_length":142,"hash_ids":[576052,576053],"delay":795.3} +{"session_id":"sess-3f5027332c21","input_length":208,"output_length":149,"hash_ids":[576054],"delay":32041.2} +{"session_id":"sess-3f5027332c21","input_length":2965,"output_length":93,"hash_ids":[576055,576056,576057,576058,576059,576060],"delay":835.4} +{"session_id":"sess-3f5027332c21","input_length":625,"output_length":575,"hash_ids":[576061,576062],"delay":5029.0} +{"session_id":"sess-3f5027332c21","input_length":1062,"output_length":96,"hash_ids":[576063,576064,576065],"delay":725.5} +{"session_id":"sess-3f5027332c21","input_length":897,"output_length":147,"hash_ids":[576066,576067],"delay":16286.6} +{"session_id":"sess-3f5027332c21","input_length":197,"output_length":31,"hash_ids":[576068],"delay":690.4} +{"session_id":"sess-3f5027332c21","input_length":653,"output_length":98,"hash_ids":[576069,576070],"delay":1012.9} +{"session_id":"sess-3f5027332c21","input_length":1297,"output_length":172,"hash_ids":[576071,576072,576073],"delay":4737.1} +{"session_id":"sess-3f5027332c21","input_length":645,"output_length":370,"hash_ids":[576074,576075],"delay":701.1} +{"session_id":"sess-3f5027332c21","input_length":365,"output_length":131,"hash_ids":[576076],"delay":484.5} +{"session_id":"sess-3f5027332c21","input_length":2114,"output_length":1089,"hash_ids":[576077,576078,576079,576080,576081],"delay":47401.8} +{"session_id":"sess-3f5027332c21","input_length":992,"output_length":339,"hash_ids":[576082,576083],"delay":739.2} +{"session_id":"sess-3f5027332c21","input_length":817,"output_length":52,"hash_ids":[576084,576085],"delay":1011.8} +{"session_id":"sess-3f5027332c21","input_length":541,"output_length":647,"hash_ids":[576086,576087],"delay":10196.5} +{"session_id":"sess-3f5027332c21","input_length":1909,"output_length":203,"hash_ids":[576088,576089,576090,576091],"delay":325.5} +{"session_id":"sess-3f5027332c21","input_length":1521,"output_length":210,"hash_ids":[576092,576093,576094],"delay":10815.9} +{"session_id":"sess-3f5027332c21","input_length":162,"output_length":457,"hash_ids":[576095],"delay":466.3} +{"session_id":"sess-3f5027332c21","input_length":661,"output_length":263,"hash_ids":[576096,576097],"delay":7899.2} +{"session_id":"sess-3f5027332c21","input_length":854,"output_length":407,"hash_ids":[576098,576099],"delay":5096.3} +{"session_id":"sess-3f5027332c21","input_length":869,"output_length":86,"hash_ids":[576100,576101],"delay":8528.4} +{"session_id":"sess-3f5027332c21","input_length":282,"output_length":235,"hash_ids":[576102],"delay":6461.2} +{"session_id":"sess-3f5027332c21","input_length":522,"output_length":205,"hash_ids":[576103,576104],"delay":15252.6} +{"session_id":"sess-3f5027332c21","input_length":313,"output_length":277,"hash_ids":[576105],"delay":348.9} +{"session_id":"sess-3f5027332c21","input_length":1254,"output_length":390,"hash_ids":[576106,576107,576108],"delay":385.6} +{"session_id":"sess-3ce227501ac6","input_length":33225,"output_length":393,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,580032,580033,580034,580035,580036,580037,580038,580039,580040,580041,580042,580043,580044],"timestamp":0.0,"group_id":6} +{"session_id":"sess-3ce227501ac6","input_length":805,"output_length":32,"hash_ids":[580045,580046],"delay":1849.7} +{"session_id":"sess-3ce227501ac6","input_length":1364,"output_length":77,"hash_ids":[580047,580048,580049],"delay":661.0} +{"session_id":"sess-3ce227501ac6","input_length":2690,"output_length":38,"hash_ids":[580050,580051,580052,580053,580054,580055],"delay":875.3} +{"session_id":"sess-3ce227501ac6","input_length":1055,"output_length":169,"hash_ids":[580056,580057,580058],"delay":1038.9} +{"session_id":"sess-3ce227501ac6","input_length":310,"output_length":190,"hash_ids":[580059],"delay":747.5} +{"session_id":"sess-3ce227501ac6","input_length":564,"output_length":1378,"hash_ids":[580060,580061],"delay":2282.8} +{"session_id":"sess-3ce227501ac6","input_length":1568,"output_length":709,"hash_ids":[580062,580063,580064,580065],"delay":7119.3} +{"session_id":"sess-3ce227501ac6","input_length":509,"output_length":64,"hash_ids":[580066],"delay":8125.5} +{"session_id":"sess-3ce227501ac6","input_length":668,"output_length":47,"hash_ids":[580067,580068],"delay":670.2} +{"session_id":"sess-3ce227501ac6","input_length":617,"output_length":699,"hash_ids":[580069,580070],"delay":6438.7} +{"session_id":"sess-3ce227501ac6","input_length":451,"output_length":193,"hash_ids":[580071],"delay":837.1} +{"session_id":"sess-3ce227501ac6","input_length":1735,"output_length":201,"hash_ids":[580072,580073,580074,580075],"delay":863.9} +{"session_id":"sess-3ce227501ac6","input_length":301,"output_length":129,"hash_ids":[580076],"delay":3831.3} +{"session_id":"sess-3ce227501ac6","input_length":698,"output_length":259,"hash_ids":[580077,580078],"delay":374.5} +{"session_id":"sess-3ce227501ac6","input_length":1690,"output_length":215,"hash_ids":[580079,580080,580081,580082],"delay":812.8} +{"session_id":"sess-3ce227501ac6","input_length":1098,"output_length":135,"hash_ids":[580083,580084,580085],"delay":9252.2} +{"session_id":"sess-ace78839cb59","input_length":28880,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,584032,584033,584034,584035,584036],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ace78839cb59","input_length":934,"output_length":234,"hash_ids":[584037,584038],"delay":375.2} +{"session_id":"sess-ace78839cb59","input_length":870,"output_length":37,"hash_ids":[584039,584040],"delay":727.9} +{"session_id":"sess-ace78839cb59","input_length":316,"output_length":62,"hash_ids":[584041],"delay":917.8} +{"session_id":"sess-ace78839cb59","input_length":324,"output_length":201,"hash_ids":[584042],"delay":692.3} +{"session_id":"sess-ace78839cb59","input_length":903,"output_length":44,"hash_ids":[584043,584044],"delay":1697.7} +{"session_id":"sess-ace78839cb59","input_length":1288,"output_length":66,"hash_ids":[584045,584046,584047],"delay":499.0} +{"session_id":"sess-ace78839cb59","input_length":223,"output_length":154,"hash_ids":[584048],"delay":2211.6} +{"session_id":"sess-ace78839cb59","input_length":352,"output_length":63,"hash_ids":[584049],"delay":1718.5} +{"session_id":"sess-ace78839cb59","input_length":2232,"output_length":164,"hash_ids":[584050,584051,584052,584053,584054],"delay":6440.0} +{"session_id":"sess-bdc4da9ffa94","input_length":37392,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,588032,588033,588034,588035,588036,588037,588038,588039,588040,588041,588042,588043,588044,588045,588046,588047,588048,588049,588050,588051,588052,588053],"timestamp":0.0,"group_id":5} +{"session_id":"sess-bdc4da9ffa94","input_length":156,"output_length":82,"hash_ids":[588054],"delay":498.0} +{"session_id":"sess-bdc4da9ffa94","input_length":626,"output_length":124,"hash_ids":[588055,588056],"delay":8475.2} +{"session_id":"sess-bdc4da9ffa94","input_length":1127,"output_length":179,"hash_ids":[588057,588058,588059],"delay":1024.7} +{"session_id":"sess-bdc4da9ffa94","input_length":385,"output_length":138,"hash_ids":[588060],"delay":8746.5} +{"session_id":"sess-bdc4da9ffa94","input_length":586,"output_length":414,"hash_ids":[588061,588062],"delay":2219.9} +{"session_id":"sess-bdc4da9ffa94","input_length":541,"output_length":199,"hash_ids":[588063,588064],"delay":970.4} +{"session_id":"sess-bdc4da9ffa94","input_length":644,"output_length":113,"hash_ids":[588065,588066],"delay":729.8} +{"session_id":"sess-bdc4da9ffa94","input_length":2273,"output_length":91,"hash_ids":[588067,588068,588069,588070,588071],"delay":1468.9} +{"session_id":"sess-bdc4da9ffa94","input_length":680,"output_length":204,"hash_ids":[588072,588073],"delay":15744.0} +{"session_id":"sess-bdc4da9ffa94","input_length":1389,"output_length":88,"hash_ids":[588074,588075,588076],"delay":692.1} +{"session_id":"sess-bdc4da9ffa94","input_length":154,"output_length":90,"hash_ids":[588077],"delay":819.4} +{"session_id":"sess-bdc4da9ffa94","input_length":791,"output_length":210,"hash_ids":[588078,588079],"delay":466.2} +{"session_id":"sess-bdc4da9ffa94","input_length":474,"output_length":144,"hash_ids":[588080],"delay":131.9} +{"session_id":"sess-bdc4da9ffa94","input_length":977,"output_length":42,"hash_ids":[588081,588082],"delay":421.0} +{"session_id":"sess-bdc4da9ffa94","input_length":1435,"output_length":1439,"hash_ids":[588083,588084,588085],"delay":1443.2} +{"session_id":"sess-bdc4da9ffa94","input_length":287,"output_length":140,"hash_ids":[588086],"delay":10424.6} +{"session_id":"sess-bdc4da9ffa94","input_length":502,"output_length":202,"hash_ids":[588087],"delay":1674.0} +{"session_id":"sess-bdc4da9ffa94","input_length":686,"output_length":202,"hash_ids":[588088,588089],"delay":522.5} +{"session_id":"sess-bdc4da9ffa94","input_length":1434,"output_length":250,"hash_ids":[588090,588091,588092],"delay":3672.0} +{"session_id":"sess-bdc4da9ffa94","input_length":1195,"output_length":397,"hash_ids":[588093,588094,588095],"delay":10324.2} +{"session_id":"sess-bdc4da9ffa94","input_length":666,"output_length":103,"hash_ids":[588096,588097],"delay":635.7} +{"session_id":"sess-bdc4da9ffa94","input_length":141,"output_length":230,"hash_ids":[588098],"delay":1741.0} +{"session_id":"sess-bdc4da9ffa94","input_length":298,"output_length":63,"hash_ids":[588099],"delay":1783.4} +{"session_id":"sess-bdc4da9ffa94","input_length":1158,"output_length":313,"hash_ids":[588100,588101,588102],"delay":329.9} +{"session_id":"sess-bdc4da9ffa94","input_length":85,"output_length":228,"hash_ids":[588103],"delay":525.9} +{"session_id":"sess-bdc4da9ffa94","input_length":328,"output_length":56,"hash_ids":[588104],"delay":156.6} +{"session_id":"sess-bdc4da9ffa94","input_length":387,"output_length":469,"hash_ids":[588105],"delay":666.3} +{"session_id":"sess-bdc4da9ffa94","input_length":805,"output_length":232,"hash_ids":[588106,588107],"delay":840.3} +{"session_id":"sess-5041ca851ef7","input_length":27007,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,592032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5041ca851ef7","input_length":638,"output_length":216,"hash_ids":[592033,592034],"delay":582.1} +{"session_id":"sess-5041ca851ef7","input_length":1830,"output_length":183,"hash_ids":[592035,592036,592037,592038],"delay":2058.3} +{"session_id":"sess-5041ca851ef7","input_length":823,"output_length":106,"hash_ids":[592039,592040],"delay":8125.2} +{"session_id":"sess-5041ca851ef7","input_length":173,"output_length":737,"hash_ids":[592041],"delay":1067.3} +{"session_id":"sess-5041ca851ef7","input_length":1541,"output_length":109,"hash_ids":[592042,592043,592044,592045],"delay":1289.8} +{"session_id":"sess-5041ca851ef7","input_length":1384,"output_length":162,"hash_ids":[592046,592047,592048],"delay":1223.5} +{"session_id":"sess-5041ca851ef7","input_length":286,"output_length":1020,"hash_ids":[592049],"delay":894.6} +{"session_id":"sess-5041ca851ef7","input_length":559,"output_length":788,"hash_ids":[592050,592051],"delay":590.6} +{"session_id":"sess-5041ca851ef7","input_length":257,"output_length":101,"hash_ids":[592052],"delay":26688.0} +{"session_id":"sess-5041ca851ef7","input_length":409,"output_length":169,"hash_ids":[592053],"delay":3908.3} +{"session_id":"sess-5041ca851ef7","input_length":314,"output_length":192,"hash_ids":[592054],"delay":5140.7} +{"session_id":"sess-5041ca851ef7","input_length":1335,"output_length":328,"hash_ids":[592055,592056,592057],"delay":703.3} +{"session_id":"sess-5041ca851ef7","input_length":2078,"output_length":131,"hash_ids":[592058,592059,592060,592061,592062],"delay":531.0} +{"session_id":"sess-5041ca851ef7","input_length":1335,"output_length":173,"hash_ids":[592063,592064,592065],"delay":872.1} +{"session_id":"sess-5041ca851ef7","input_length":592,"output_length":75,"hash_ids":[592066,592067],"delay":733.3} +{"session_id":"sess-5041ca851ef7","input_length":789,"output_length":64,"hash_ids":[592068,592069],"delay":1041.7} +{"session_id":"sess-5041ca851ef7","input_length":1633,"output_length":117,"hash_ids":[592070,592071,592072,592073],"delay":746.1} +{"session_id":"sess-3c8ebd44b753","input_length":30950,"output_length":189,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,596032,596033,596034,596035,596036,596037,596038,596039,596040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3c8ebd44b753","input_length":755,"output_length":937,"hash_ids":[596041,596042],"delay":3738.4} +{"session_id":"sess-3c8ebd44b753","input_length":803,"output_length":163,"hash_ids":[596043,596044],"delay":3781.6} +{"session_id":"sess-3c8ebd44b753","input_length":197,"output_length":73,"hash_ids":[596045],"delay":916.1} +{"session_id":"sess-3c8ebd44b753","input_length":775,"output_length":301,"hash_ids":[596046,596047],"delay":844.6} +{"session_id":"sess-3c8ebd44b753","input_length":1087,"output_length":294,"hash_ids":[596048,596049,596050],"delay":19819.2} +{"session_id":"sess-3c8ebd44b753","input_length":958,"output_length":435,"hash_ids":[596051,596052],"delay":1162.8} +{"session_id":"sess-3c8ebd44b753","input_length":430,"output_length":147,"hash_ids":[596053],"delay":89.8} +{"session_id":"sess-3c8ebd44b753","input_length":1691,"output_length":418,"hash_ids":[596054,596055,596056,596057],"delay":526.8} +{"session_id":"sess-3c8ebd44b753","input_length":1523,"output_length":136,"hash_ids":[596058,596059,596060],"delay":14096.8} +{"session_id":"sess-3c8ebd44b753","input_length":295,"output_length":54,"hash_ids":[596061],"delay":2116.0} +{"session_id":"sess-3c8ebd44b753","input_length":1263,"output_length":252,"hash_ids":[596062,596063,596064],"delay":9239.6} +{"session_id":"sess-3c8ebd44b753","input_length":752,"output_length":441,"hash_ids":[596065,596066],"delay":680.8} +{"session_id":"sess-3c8ebd44b753","input_length":1573,"output_length":114,"hash_ids":[596067,596068,596069,596070],"delay":2064.6} +{"session_id":"sess-3c8ebd44b753","input_length":716,"output_length":722,"hash_ids":[596071,596072],"delay":39206.4} +{"session_id":"sess-3c8ebd44b753","input_length":826,"output_length":164,"hash_ids":[596073,596074],"delay":1309.0} +{"session_id":"sess-3c8ebd44b753","input_length":1736,"output_length":147,"hash_ids":[596075,596076,596077,596078],"delay":2887.2} +{"session_id":"sess-e5af57348e2e","input_length":27656,"output_length":444,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,600032,600033,600034],"timestamp":0.0,"group_id":30} +{"session_id":"sess-e5af57348e2e","input_length":1203,"output_length":339,"hash_ids":[600035,600036,600037],"delay":4442.5} +{"session_id":"sess-e5af57348e2e","input_length":1084,"output_length":665,"hash_ids":[600038,600039,600040],"delay":5514.4} +{"session_id":"sess-e5af57348e2e","input_length":403,"output_length":283,"hash_ids":[600041],"delay":622.5} +{"session_id":"sess-e5af57348e2e","input_length":137,"output_length":157,"hash_ids":[600042],"delay":533.9} +{"session_id":"sess-e5af57348e2e","input_length":520,"output_length":275,"hash_ids":[600043,600044],"delay":2002.4} +{"session_id":"sess-e5af57348e2e","input_length":940,"output_length":154,"hash_ids":[600045,600046],"delay":610.3} +{"session_id":"sess-e5af57348e2e","input_length":1962,"output_length":85,"hash_ids":[600047,600048,600049,600050],"delay":11675.5} +{"session_id":"sess-e5af57348e2e","input_length":749,"output_length":154,"hash_ids":[600051,600052],"delay":3380.3} +{"session_id":"sess-e5af57348e2e","input_length":836,"output_length":96,"hash_ids":[600053,600054],"delay":651.3} +{"session_id":"sess-e5af57348e2e","input_length":620,"output_length":167,"hash_ids":[600055,600056],"delay":21000.9} +{"session_id":"sess-e5af57348e2e","input_length":311,"output_length":675,"hash_ids":[600057],"delay":2594.0} +{"session_id":"sess-e5af57348e2e","input_length":199,"output_length":167,"hash_ids":[600058],"delay":13379.8} +{"session_id":"sess-e5af57348e2e","input_length":892,"output_length":63,"hash_ids":[600059,600060],"delay":472.8} +{"session_id":"sess-e5af57348e2e","input_length":709,"output_length":143,"hash_ids":[600061,600062],"delay":994.8} +{"session_id":"sess-e5af57348e2e","input_length":1266,"output_length":863,"hash_ids":[600063,600064,600065],"delay":1555.6} +{"session_id":"sess-e5af57348e2e","input_length":279,"output_length":164,"hash_ids":[600066],"delay":6086.3} +{"session_id":"sess-e5af57348e2e","input_length":399,"output_length":490,"hash_ids":[600067],"delay":654.7} +{"session_id":"sess-c39a1ab83903","input_length":27259,"output_length":154,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,604032,604033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c39a1ab83903","input_length":2962,"output_length":1157,"hash_ids":[604034,604035,604036,604037,604038,604039],"delay":358.8} +{"session_id":"sess-c39a1ab83903","input_length":203,"output_length":706,"hash_ids":[604040],"delay":11041.4} +{"session_id":"sess-c39a1ab83903","input_length":876,"output_length":145,"hash_ids":[604041,604042],"delay":842.8} +{"session_id":"sess-c39a1ab83903","input_length":801,"output_length":86,"hash_ids":[604043,604044],"delay":666.9} +{"session_id":"sess-4c016abdc119","input_length":27354,"output_length":269,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,608032,608033],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4c016abdc119","input_length":805,"output_length":752,"hash_ids":[608034,608035],"delay":1502.2} +{"session_id":"sess-4c016abdc119","input_length":992,"output_length":544,"hash_ids":[608036,608037],"delay":2110.1} +{"session_id":"sess-4c016abdc119","input_length":195,"output_length":754,"hash_ids":[608038],"delay":1208.3} +{"session_id":"sess-4c016abdc119","input_length":626,"output_length":305,"hash_ids":[608039,608040],"delay":9199.4} +{"session_id":"sess-4c016abdc119","input_length":643,"output_length":49,"hash_ids":[608041,608042],"delay":1551.5} +{"session_id":"sess-4c016abdc119","input_length":500,"output_length":95,"hash_ids":[608043],"delay":54477.2} +{"session_id":"sess-4c016abdc119","input_length":2315,"output_length":150,"hash_ids":[608044,608045,608046,608047,608048],"delay":656.2} +{"session_id":"sess-4c016abdc119","input_length":1486,"output_length":251,"hash_ids":[608049,608050,608051],"delay":15072.5} +{"session_id":"sess-4c016abdc119","input_length":204,"output_length":417,"hash_ids":[608052],"delay":4482.4} +{"session_id":"sess-4c016abdc119","input_length":154,"output_length":880,"hash_ids":[608053],"delay":1196.1} +{"session_id":"sess-4c016abdc119","input_length":464,"output_length":107,"hash_ids":[608054],"delay":24878.7} +{"session_id":"sess-dc6695283f33","input_length":34047,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,612032,612033,612034,612035,612036,612037,612038,612039,612040,612041,612042,612043,612044,612045,612046],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dc6695283f33","input_length":736,"output_length":223,"hash_ids":[612047,612048],"delay":1954.9} +{"session_id":"sess-dc6695283f33","input_length":2052,"output_length":112,"hash_ids":[612049,612050,612051,612052,612053],"delay":1431.4} +{"session_id":"sess-dc6695283f33","input_length":115,"output_length":1195,"hash_ids":[612054],"delay":530.3} +{"session_id":"sess-dc6695283f33","input_length":941,"output_length":200,"hash_ids":[612055,612056],"delay":4570.5} +{"session_id":"sess-dc6695283f33","input_length":310,"output_length":92,"hash_ids":[612057],"delay":3287.3} +{"session_id":"sess-dc6695283f33","input_length":728,"output_length":82,"hash_ids":[612058,612059],"delay":3448.7} +{"session_id":"sess-dc6695283f33","input_length":520,"output_length":716,"hash_ids":[612060,612061],"delay":5420.4} +{"session_id":"sess-5a0742bc8bfe","input_length":27999,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,616032,616033,616034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5a0742bc8bfe","input_length":165,"output_length":225,"hash_ids":[616035],"delay":828.4} +{"session_id":"sess-5a0742bc8bfe","input_length":392,"output_length":160,"hash_ids":[616036],"delay":8231.3} +{"session_id":"sess-5a0742bc8bfe","input_length":90,"output_length":572,"hash_ids":[616037],"delay":725.1} +{"session_id":"sess-5a0742bc8bfe","input_length":46,"output_length":518,"hash_ids":[616038],"delay":591.5} +{"session_id":"sess-5a0742bc8bfe","input_length":190,"output_length":348,"hash_ids":[616039],"delay":785.6} +{"session_id":"sess-5a0742bc8bfe","input_length":295,"output_length":173,"hash_ids":[616040],"delay":677.4} +{"session_id":"sess-5a0742bc8bfe","input_length":205,"output_length":157,"hash_ids":[616041],"delay":1801.7} +{"session_id":"sess-5a0742bc8bfe","input_length":46,"output_length":269,"hash_ids":[616042],"delay":8103.2} +{"session_id":"sess-5a0742bc8bfe","input_length":648,"output_length":324,"hash_ids":[616043,616044],"delay":1617.6} +{"session_id":"sess-5a0742bc8bfe","input_length":826,"output_length":373,"hash_ids":[616045,616046],"delay":444.8} +{"session_id":"sess-5a0742bc8bfe","input_length":208,"output_length":101,"hash_ids":[616047],"delay":723.2} +{"session_id":"sess-5a0742bc8bfe","input_length":195,"output_length":475,"hash_ids":[616048],"delay":1626.4} +{"session_id":"sess-5a0742bc8bfe","input_length":208,"output_length":278,"hash_ids":[616049],"delay":1007.1} +{"session_id":"sess-5a0742bc8bfe","input_length":1211,"output_length":805,"hash_ids":[616050,616051,616052],"delay":4964.3} +{"session_id":"sess-5a0742bc8bfe","input_length":687,"output_length":142,"hash_ids":[616053,616054],"delay":1038.2} +{"session_id":"sess-5a0742bc8bfe","input_length":1146,"output_length":350,"hash_ids":[616055,616056,616057],"delay":1247.6} +{"session_id":"sess-5a0742bc8bfe","input_length":806,"output_length":408,"hash_ids":[616058,616059],"delay":10555.9} +{"session_id":"sess-5a0742bc8bfe","input_length":2422,"output_length":368,"hash_ids":[616060,616061,616062,616063,616064],"delay":1838.8} +{"session_id":"sess-5a0742bc8bfe","input_length":1209,"output_length":60,"hash_ids":[616065,616066,616067],"delay":4911.1} +{"session_id":"sess-5a0742bc8bfe","input_length":1030,"output_length":215,"hash_ids":[616068,616069,616070],"delay":293.1} +{"session_id":"sess-5a0742bc8bfe","input_length":457,"output_length":181,"hash_ids":[616071],"delay":402.6} +{"session_id":"sess-5a0742bc8bfe","input_length":654,"output_length":431,"hash_ids":[616072,616073],"delay":297.2} +{"session_id":"sess-5a0742bc8bfe","input_length":1306,"output_length":42,"hash_ids":[616074,616075,616076],"delay":1273.0} +{"session_id":"sess-5a0742bc8bfe","input_length":443,"output_length":94,"hash_ids":[616077],"delay":34467.5} +{"session_id":"sess-5a0742bc8bfe","input_length":884,"output_length":44,"hash_ids":[616078,616079],"delay":2349.8} +{"session_id":"sess-5a0742bc8bfe","input_length":547,"output_length":245,"hash_ids":[616080,616081],"delay":279.2} +{"session_id":"sess-5a0742bc8bfe","input_length":411,"output_length":166,"hash_ids":[616082],"delay":557.5} +{"session_id":"sess-5a0742bc8bfe","input_length":928,"output_length":457,"hash_ids":[616083,616084],"delay":342.3} +{"session_id":"sess-5a0742bc8bfe","input_length":544,"output_length":77,"hash_ids":[616085,616086],"delay":790.2} +{"session_id":"sess-5a0742bc8bfe","input_length":754,"output_length":1112,"hash_ids":[616087,616088],"delay":9904.5} +{"session_id":"sess-5a0742bc8bfe","input_length":2252,"output_length":342,"hash_ids":[616089,616090,616091,616092,616093],"delay":155.8} +{"session_id":"sess-5a0742bc8bfe","input_length":1430,"output_length":324,"hash_ids":[616094,616095,616096],"delay":2628.9} +{"session_id":"sess-5a0742bc8bfe","input_length":950,"output_length":30,"hash_ids":[616097,616098],"delay":187.7} +{"session_id":"sess-5a0742bc8bfe","input_length":1194,"output_length":38,"hash_ids":[616099,616100,616101],"delay":457.2} +{"session_id":"sess-5a0742bc8bfe","input_length":207,"output_length":640,"hash_ids":[616102],"delay":13512.6} +{"session_id":"sess-5a0742bc8bfe","input_length":271,"output_length":290,"hash_ids":[616103],"delay":75.8} +{"session_id":"sess-5a0742bc8bfe","input_length":1149,"output_length":284,"hash_ids":[616104,616105,616106],"delay":309.1} +{"session_id":"sess-d660c8224810","input_length":27607,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,620032,620033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d660c8224810","input_length":275,"output_length":379,"hash_ids":[620034],"delay":1322.1} +{"session_id":"sess-d660c8224810","input_length":384,"output_length":74,"hash_ids":[620035],"delay":2626.1} +{"session_id":"sess-d660c8224810","input_length":471,"output_length":412,"hash_ids":[620036],"delay":13581.8} +{"session_id":"sess-d660c8224810","input_length":1078,"output_length":105,"hash_ids":[620037,620038,620039],"delay":2824.8} +{"session_id":"sess-d660c8224810","input_length":1078,"output_length":158,"hash_ids":[620040,620041,620042],"delay":941.6} +{"session_id":"sess-d660c8224810","input_length":2747,"output_length":100,"hash_ids":[620043,620044,620045,620046,620047,620048],"delay":1010.9} +{"session_id":"sess-d660c8224810","input_length":1110,"output_length":151,"hash_ids":[620049,620050,620051],"delay":5125.2} +{"session_id":"sess-d660c8224810","input_length":483,"output_length":198,"hash_ids":[620052],"delay":8243.9} +{"session_id":"sess-d660c8224810","input_length":698,"output_length":63,"hash_ids":[620053,620054],"delay":1084.4} +{"session_id":"sess-d660c8224810","input_length":491,"output_length":44,"hash_ids":[620055],"delay":967.6} +{"session_id":"sess-d660c8224810","input_length":206,"output_length":141,"hash_ids":[620056],"delay":1549.8} +{"session_id":"sess-d660c8224810","input_length":191,"output_length":375,"hash_ids":[620057],"delay":862.1} +{"session_id":"sess-d660c8224810","input_length":2840,"output_length":138,"hash_ids":[620058,620059,620060,620061,620062,620063],"delay":1908.1} +{"session_id":"sess-d660c8224810","input_length":2102,"output_length":647,"hash_ids":[620064,620065,620066,620067,620068],"delay":686.4} +{"session_id":"sess-d660c8224810","input_length":271,"output_length":240,"hash_ids":[620069],"delay":30607.8} +{"session_id":"sess-d660c8224810","input_length":1725,"output_length":260,"hash_ids":[620070,620071,620072,620073],"delay":19749.3} +{"session_id":"sess-d660c8224810","input_length":697,"output_length":103,"hash_ids":[620074,620075],"delay":2732.8} +{"session_id":"sess-d660c8224810","input_length":1245,"output_length":177,"hash_ids":[620076,620077,620078],"delay":485.6} +{"session_id":"sess-d660c8224810","input_length":497,"output_length":274,"hash_ids":[620079],"delay":3296.0} +{"session_id":"sess-d660c8224810","input_length":1690,"output_length":124,"hash_ids":[620080,620081,620082,620083],"delay":4104.8} +{"session_id":"sess-d660c8224810","input_length":311,"output_length":327,"hash_ids":[620084],"delay":748.9} +{"session_id":"sess-d660c8224810","input_length":529,"output_length":575,"hash_ids":[620085,620086],"delay":706.2} +{"session_id":"sess-d660c8224810","input_length":2915,"output_length":122,"hash_ids":[620087,620088,620089,620090,620091,620092],"delay":546.1} +{"session_id":"sess-d660c8224810","input_length":904,"output_length":216,"hash_ids":[620093,620094],"delay":216.7} +{"session_id":"sess-d660c8224810","input_length":119,"output_length":144,"hash_ids":[620095],"delay":715.5} +{"session_id":"sess-d660c8224810","input_length":533,"output_length":435,"hash_ids":[620096,620097],"delay":2401.2} +{"session_id":"sess-d660c8224810","input_length":350,"output_length":400,"hash_ids":[620098],"delay":14577.6} +{"session_id":"sess-d660c8224810","input_length":1808,"output_length":69,"hash_ids":[620099,620100,620101,620102],"delay":968.0} +{"session_id":"sess-d660c8224810","input_length":1174,"output_length":62,"hash_ids":[620103,620104,620105],"delay":510.1} +{"session_id":"sess-e053abe0bfaa","input_length":27683,"output_length":77,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,624032,624033,624034],"timestamp":0.0,"group_id":13} +{"session_id":"sess-e053abe0bfaa","input_length":125,"output_length":39,"hash_ids":[624035],"delay":2825.8} +{"session_id":"sess-e053abe0bfaa","input_length":795,"output_length":52,"hash_ids":[624036,624037],"delay":677.0} +{"session_id":"sess-e053abe0bfaa","input_length":964,"output_length":30,"hash_ids":[624038,624039],"delay":51906.4} +{"session_id":"sess-e053abe0bfaa","input_length":174,"output_length":84,"hash_ids":[624040],"delay":631.5} +{"session_id":"sess-e053abe0bfaa","input_length":771,"output_length":43,"hash_ids":[624041,624042],"delay":428.8} +{"session_id":"sess-e053abe0bfaa","input_length":1090,"output_length":218,"hash_ids":[624043,624044,624045],"delay":1293.5} +{"session_id":"sess-e053abe0bfaa","input_length":2488,"output_length":607,"hash_ids":[624046,624047,624048,624049,624050],"delay":188.0} +{"session_id":"sess-e053abe0bfaa","input_length":508,"output_length":238,"hash_ids":[624051],"delay":1980.1} +{"session_id":"sess-e053abe0bfaa","input_length":1722,"output_length":773,"hash_ids":[624052,624053,624054,624055],"delay":1381.9} +{"session_id":"sess-e053abe0bfaa","input_length":1669,"output_length":147,"hash_ids":[624056,624057,624058,624059],"delay":496.6} +{"session_id":"sess-e053abe0bfaa","input_length":1260,"output_length":81,"hash_ids":[624060,624061,624062],"delay":386.9} +{"session_id":"sess-e053abe0bfaa","input_length":187,"output_length":163,"hash_ids":[624063],"delay":2211.0} +{"session_id":"sess-e053abe0bfaa","input_length":1448,"output_length":419,"hash_ids":[624064,624065,624066],"delay":6478.7} +{"session_id":"sess-e053abe0bfaa","input_length":460,"output_length":99,"hash_ids":[624067],"delay":1949.4} +{"session_id":"sess-e053abe0bfaa","input_length":987,"output_length":612,"hash_ids":[624068,624069],"delay":874.3} +{"session_id":"sess-e053abe0bfaa","input_length":642,"output_length":932,"hash_ids":[624070,624071],"delay":1541.8} +{"session_id":"sess-e053abe0bfaa","input_length":549,"output_length":288,"hash_ids":[624072,624073],"delay":128.2} +{"session_id":"sess-e053abe0bfaa","input_length":1429,"output_length":769,"hash_ids":[624074,624075,624076],"delay":923.1} +{"session_id":"sess-e053abe0bfaa","input_length":2496,"output_length":295,"hash_ids":[624077,624078,624079,624080,624081],"delay":717.8} +{"session_id":"sess-e053abe0bfaa","input_length":871,"output_length":168,"hash_ids":[624082,624083],"delay":642.4} +{"session_id":"sess-e053abe0bfaa","input_length":352,"output_length":533,"hash_ids":[624084],"delay":9214.4} +{"session_id":"sess-e053abe0bfaa","input_length":2015,"output_length":224,"hash_ids":[624085,624086,624087,624088],"delay":722.0} +{"session_id":"sess-e053abe0bfaa","input_length":633,"output_length":277,"hash_ids":[624089,624090],"delay":165.2} +{"session_id":"sess-e053abe0bfaa","input_length":456,"output_length":117,"hash_ids":[624091],"delay":261.8} +{"session_id":"sess-e053abe0bfaa","input_length":340,"output_length":468,"hash_ids":[624092],"delay":811.8} +{"session_id":"sess-e053abe0bfaa","input_length":845,"output_length":195,"hash_ids":[624093,624094],"delay":9436.3} +{"session_id":"sess-e053abe0bfaa","input_length":127,"output_length":142,"hash_ids":[624095],"delay":4666.3} +{"session_id":"sess-e053abe0bfaa","input_length":2784,"output_length":231,"hash_ids":[624096,624097,624098,624099,624100,624101],"delay":4550.0} +{"session_id":"sess-e053abe0bfaa","input_length":714,"output_length":384,"hash_ids":[624102,624103],"delay":1544.7} +{"session_id":"sess-f55da6e694d7","input_length":32834,"output_length":813,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,628032,628033,628034,628035,628036,628037,628038,628039,628040,628041,628042,628043,628044],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f55da6e694d7","input_length":624,"output_length":186,"hash_ids":[628045,628046],"delay":14631.7} +{"session_id":"sess-f55da6e694d7","input_length":1380,"output_length":185,"hash_ids":[628047,628048,628049],"delay":1615.3} +{"session_id":"sess-f55da6e694d7","input_length":2138,"output_length":136,"hash_ids":[628050,628051,628052,628053,628054],"delay":37171.8} +{"session_id":"sess-f55da6e694d7","input_length":1146,"output_length":45,"hash_ids":[628055,628056,628057],"delay":368.3} +{"session_id":"sess-f55da6e694d7","input_length":1425,"output_length":117,"hash_ids":[628058,628059,628060],"delay":1178.1} +{"session_id":"sess-f55da6e694d7","input_length":371,"output_length":135,"hash_ids":[628061],"delay":618.5} +{"session_id":"sess-f55da6e694d7","input_length":779,"output_length":240,"hash_ids":[628062,628063],"delay":1842.7} +{"session_id":"sess-f55da6e694d7","input_length":2905,"output_length":207,"hash_ids":[628064,628065,628066,628067,628068,628069],"delay":10721.3} +{"session_id":"sess-f55da6e694d7","input_length":588,"output_length":54,"hash_ids":[628070,628071],"delay":3548.0} +{"session_id":"sess-f55da6e694d7","input_length":1411,"output_length":87,"hash_ids":[628072,628073,628074],"delay":717.8} +{"session_id":"sess-f55da6e694d7","input_length":1266,"output_length":53,"hash_ids":[628075,628076,628077],"delay":2280.2} +{"session_id":"sess-f55da6e694d7","input_length":450,"output_length":206,"hash_ids":[628078],"delay":5664.3} +{"session_id":"sess-f55da6e694d7","input_length":1110,"output_length":297,"hash_ids":[628079,628080,628081],"delay":376.1} +{"session_id":"sess-f55da6e694d7","input_length":1725,"output_length":184,"hash_ids":[628082,628083,628084,628085],"delay":4522.2} +{"session_id":"sess-f55da6e694d7","input_length":1210,"output_length":30,"hash_ids":[628086,628087,628088],"delay":1360.7} +{"session_id":"sess-f55da6e694d7","input_length":2254,"output_length":127,"hash_ids":[628089,628090,628091,628092,628093],"delay":2897.6} +{"session_id":"sess-f55da6e694d7","input_length":1563,"output_length":451,"hash_ids":[628094,628095,628096,628097],"delay":4286.1} +{"session_id":"sess-f55da6e694d7","input_length":783,"output_length":258,"hash_ids":[628098,628099],"delay":1392.9} +{"session_id":"sess-f55da6e694d7","input_length":390,"output_length":1135,"hash_ids":[628100],"delay":6928.3} +{"session_id":"sess-f55da6e694d7","input_length":493,"output_length":236,"hash_ids":[628101],"delay":1118.3} +{"session_id":"sess-f55da6e694d7","input_length":443,"output_length":545,"hash_ids":[628102],"delay":297.4} +{"session_id":"sess-f55da6e694d7","input_length":822,"output_length":459,"hash_ids":[628103,628104],"delay":22624.5} +{"session_id":"sess-f55da6e694d7","input_length":149,"output_length":142,"hash_ids":[628105],"delay":2013.6} +{"session_id":"sess-bec6769b8c41","input_length":26726,"output_length":694,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,632032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bec6769b8c41","input_length":589,"output_length":218,"hash_ids":[632033,632034],"delay":549.8} +{"session_id":"sess-bec6769b8c41","input_length":178,"output_length":170,"hash_ids":[632035],"delay":33701.0} +{"session_id":"sess-bec6769b8c41","input_length":2659,"output_length":189,"hash_ids":[632036,632037,632038,632039,632040,632041],"delay":1438.8} +{"session_id":"sess-bec6769b8c41","input_length":175,"output_length":190,"hash_ids":[632042],"delay":284.9} +{"session_id":"sess-bec6769b8c41","input_length":245,"output_length":82,"hash_ids":[632043],"delay":506.7} +{"session_id":"sess-bec6769b8c41","input_length":1399,"output_length":499,"hash_ids":[632044,632045,632046],"delay":6036.0} +{"session_id":"sess-bec6769b8c41","input_length":458,"output_length":291,"hash_ids":[632047],"delay":19804.5} +{"session_id":"sess-bec6769b8c41","input_length":578,"output_length":623,"hash_ids":[632048,632049],"delay":1809.6} +{"session_id":"sess-bec6769b8c41","input_length":1157,"output_length":205,"hash_ids":[632050,632051,632052],"delay":1005.2} +{"session_id":"sess-bec6769b8c41","input_length":1071,"output_length":64,"hash_ids":[632053,632054,632055],"delay":291.8} +{"session_id":"sess-bec6769b8c41","input_length":1951,"output_length":179,"hash_ids":[632056,632057,632058,632059],"delay":7272.5} +{"session_id":"sess-bec6769b8c41","input_length":1455,"output_length":688,"hash_ids":[632060,632061,632062],"delay":631.7} +{"session_id":"sess-bec6769b8c41","input_length":19,"output_length":242,"hash_ids":[632063],"delay":810.3} +{"session_id":"sess-bec6769b8c41","input_length":1964,"output_length":770,"hash_ids":[632064,632065,632066,632067],"delay":1410.8} +{"session_id":"sess-bec6769b8c41","input_length":2780,"output_length":487,"hash_ids":[632068,632069,632070,632071,632072,632073],"delay":1260.7} +{"session_id":"sess-bec6769b8c41","input_length":526,"output_length":30,"hash_ids":[632074,632075],"delay":3472.0} +{"session_id":"sess-bec6769b8c41","input_length":443,"output_length":105,"hash_ids":[632076],"delay":404.9} +{"session_id":"sess-bec6769b8c41","input_length":1300,"output_length":81,"hash_ids":[632077,632078,632079],"delay":537.4} +{"session_id":"sess-bec6769b8c41","input_length":2070,"output_length":824,"hash_ids":[632080,632081,632082,632083,632084],"delay":862.9} +{"session_id":"sess-bec6769b8c41","input_length":982,"output_length":186,"hash_ids":[632085,632086],"delay":149.9} +{"session_id":"sess-bec6769b8c41","input_length":571,"output_length":427,"hash_ids":[632087,632088],"delay":468.9} +{"session_id":"sess-bec6769b8c41","input_length":809,"output_length":87,"hash_ids":[632089,632090],"delay":13689.5} +{"session_id":"sess-bec6769b8c41","input_length":412,"output_length":1132,"hash_ids":[632091],"delay":691.1} +{"session_id":"sess-bec6769b8c41","input_length":2937,"output_length":481,"hash_ids":[632092,632093,632094,632095,632096,632097],"delay":729.5} +{"session_id":"sess-bec6769b8c41","input_length":797,"output_length":181,"hash_ids":[632098,632099],"delay":415.8} +{"session_id":"sess-bec6769b8c41","input_length":191,"output_length":123,"hash_ids":[632100],"delay":300.9} +{"session_id":"sess-bec6769b8c41","input_length":263,"output_length":463,"hash_ids":[632101],"delay":468.6} +{"session_id":"sess-490bc4ea7380","input_length":29876,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,636032,636033,636034,636035,636036,636037,636038],"timestamp":0.0,"group_id":13} +{"session_id":"sess-490bc4ea7380","input_length":257,"output_length":504,"hash_ids":[636039],"delay":25725.7} +{"session_id":"sess-490bc4ea7380","input_length":2437,"output_length":71,"hash_ids":[636040,636041,636042,636043,636044],"delay":1846.9} +{"session_id":"sess-490bc4ea7380","input_length":671,"output_length":233,"hash_ids":[636045,636046],"delay":284.5} +{"session_id":"sess-490bc4ea7380","input_length":530,"output_length":240,"hash_ids":[636047,636048],"delay":1595.7} +{"session_id":"sess-490bc4ea7380","input_length":1778,"output_length":55,"hash_ids":[636049,636050,636051,636052],"delay":3268.6} +{"session_id":"sess-490bc4ea7380","input_length":30,"output_length":462,"hash_ids":[636053],"delay":2410.0} +{"session_id":"sess-490bc4ea7380","input_length":495,"output_length":63,"hash_ids":[636054],"delay":25291.1} +{"session_id":"sess-490bc4ea7380","input_length":1345,"output_length":615,"hash_ids":[636055,636056,636057],"delay":853.7} +{"session_id":"sess-011cb6193e69","input_length":28831,"output_length":325,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,640032,640033,640034,640035,640036],"timestamp":0.0,"group_id":8} +{"session_id":"sess-011cb6193e69","input_length":536,"output_length":816,"hash_ids":[640037,640038],"delay":6510.2} +{"session_id":"sess-011cb6193e69","input_length":1426,"output_length":189,"hash_ids":[640039,640040,640041],"delay":738.3} +{"session_id":"sess-011cb6193e69","input_length":855,"output_length":312,"hash_ids":[640042,640043],"delay":1400.9} +{"session_id":"sess-011cb6193e69","input_length":869,"output_length":446,"hash_ids":[640044,640045],"delay":28503.0} +{"session_id":"sess-011cb6193e69","input_length":1465,"output_length":71,"hash_ids":[640046,640047,640048],"delay":3402.8} +{"session_id":"sess-011cb6193e69","input_length":706,"output_length":228,"hash_ids":[640049,640050],"delay":351.4} +{"session_id":"sess-011cb6193e69","input_length":489,"output_length":201,"hash_ids":[640051],"delay":2582.1} +{"session_id":"sess-011cb6193e69","input_length":827,"output_length":316,"hash_ids":[640052,640053],"delay":484.8} +{"session_id":"sess-011cb6193e69","input_length":726,"output_length":119,"hash_ids":[640054,640055],"delay":1644.5} +{"session_id":"sess-011cb6193e69","input_length":1436,"output_length":286,"hash_ids":[640056,640057,640058],"delay":116.6} +{"session_id":"sess-011cb6193e69","input_length":875,"output_length":137,"hash_ids":[640059,640060],"delay":42892.7} +{"session_id":"sess-011cb6193e69","input_length":278,"output_length":78,"hash_ids":[640061],"delay":3052.9} +{"session_id":"sess-011cb6193e69","input_length":670,"output_length":307,"hash_ids":[640062,640063],"delay":596.4} +{"session_id":"sess-5e7e78e45366","input_length":28480,"output_length":251,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,644032,644033,644034,644035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5e7e78e45366","input_length":647,"output_length":203,"hash_ids":[644036,644037],"delay":2182.9} +{"session_id":"sess-5e7e78e45366","input_length":2613,"output_length":181,"hash_ids":[644038,644039,644040,644041,644042,644043],"delay":1535.2} +{"session_id":"sess-5e7e78e45366","input_length":1614,"output_length":184,"hash_ids":[644044,644045,644046,644047],"delay":21582.9} +{"session_id":"sess-5e7e78e45366","input_length":316,"output_length":401,"hash_ids":[644048],"delay":609.7} +{"session_id":"sess-5e7e78e45366","input_length":1712,"output_length":54,"hash_ids":[644049,644050,644051,644052],"delay":5285.6} +{"session_id":"sess-5e7e78e45366","input_length":600,"output_length":309,"hash_ids":[644053,644054],"delay":831.4} +{"session_id":"sess-5e7e78e45366","input_length":763,"output_length":33,"hash_ids":[644055,644056],"delay":635.7} +{"session_id":"sess-5e7e78e45366","input_length":346,"output_length":308,"hash_ids":[644057],"delay":1021.2} +{"session_id":"sess-5e7e78e45366","input_length":888,"output_length":208,"hash_ids":[644058,644059],"delay":26116.9} +{"session_id":"sess-5e7e78e45366","input_length":1013,"output_length":264,"hash_ids":[644060,644061],"delay":2640.3} +{"session_id":"sess-5e7e78e45366","input_length":1352,"output_length":273,"hash_ids":[644062,644063,644064],"delay":224.9} +{"session_id":"sess-5e7e78e45366","input_length":237,"output_length":47,"hash_ids":[644065],"delay":658.2} +{"session_id":"sess-5e7e78e45366","input_length":365,"output_length":473,"hash_ids":[644066],"delay":687.8} +{"session_id":"sess-5e7e78e45366","input_length":649,"output_length":1083,"hash_ids":[644067,644068],"delay":13282.6} +{"session_id":"sess-5e7e78e45366","input_length":994,"output_length":42,"hash_ids":[644069,644070],"delay":7418.7} +{"session_id":"sess-5e7e78e45366","input_length":220,"output_length":284,"hash_ids":[644071],"delay":2221.8} +{"session_id":"sess-5e7e78e45366","input_length":169,"output_length":286,"hash_ids":[644072],"delay":4111.3} +{"session_id":"sess-5e7e78e45366","input_length":1800,"output_length":118,"hash_ids":[644073,644074,644075,644076],"delay":494.5} +{"session_id":"sess-5e7e78e45366","input_length":898,"output_length":286,"hash_ids":[644077,644078],"delay":982.0} +{"session_id":"sess-a2ad5f0fcb3e","input_length":27375,"output_length":117,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,648032,648033],"timestamp":0.0,"group_id":17} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1363,"output_length":86,"hash_ids":[648034,648035,648036],"delay":73026.5} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2161,"output_length":30,"hash_ids":[648037,648038,648039,648040,648041],"delay":710.2} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1164,"output_length":30,"hash_ids":[648042,648043,648044],"delay":11157.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":422,"output_length":160,"hash_ids":[648045],"delay":1370.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":2312,"output_length":164,"hash_ids":[648046,648047,648048,648049,648050],"delay":906.0} +{"session_id":"sess-a2ad5f0fcb3e","input_length":860,"output_length":456,"hash_ids":[648051,648052],"delay":18853.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":343,"output_length":305,"hash_ids":[648053],"delay":696.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1024,"output_length":177,"hash_ids":[648054,648055],"delay":1489.6} +{"session_id":"sess-a2ad5f0fcb3e","input_length":336,"output_length":272,"hash_ids":[648056],"delay":1456.7} +{"session_id":"sess-a2ad5f0fcb3e","input_length":526,"output_length":162,"hash_ids":[648057,648058],"delay":28900.6} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1025,"output_length":419,"hash_ids":[648059,648060,648061],"delay":33480.5} +{"session_id":"sess-a2ad5f0fcb3e","input_length":1620,"output_length":108,"hash_ids":[648062,648063,648064,648065],"delay":1250.0} +{"session_id":"sess-6f4b957092bb","input_length":26699,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-6f4b957092bb","input_length":712,"output_length":251,"hash_ids":[652033,652034],"delay":13448.9} +{"session_id":"sess-6f4b957092bb","input_length":78,"output_length":31,"hash_ids":[652035],"delay":38872.9} +{"session_id":"sess-6f4b957092bb","input_length":2961,"output_length":144,"hash_ids":[652036,652037,652038,652039,652040,652041],"delay":867.0} +{"session_id":"sess-6f4b957092bb","input_length":432,"output_length":89,"hash_ids":[652042],"delay":2126.8} +{"session_id":"sess-6f4b957092bb","input_length":602,"output_length":166,"hash_ids":[652043,652044],"delay":1211.5} +{"session_id":"sess-6f4b957092bb","input_length":348,"output_length":251,"hash_ids":[652045],"delay":23641.5} +{"session_id":"sess-6f4b957092bb","input_length":440,"output_length":245,"hash_ids":[652046],"delay":62075.2} +{"session_id":"sess-06ef30a22244","input_length":27299,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,656032,656033],"timestamp":0.0,"group_id":15} +{"session_id":"sess-06ef30a22244","input_length":2895,"output_length":55,"hash_ids":[656034,656035,656036,656037,656038,656039],"delay":24300.3} +{"session_id":"sess-06ef30a22244","input_length":1312,"output_length":97,"hash_ids":[656040,656041,656042],"delay":18002.0} +{"session_id":"sess-06ef30a22244","input_length":286,"output_length":150,"hash_ids":[656043],"delay":1884.3} +{"session_id":"sess-06ef30a22244","input_length":933,"output_length":63,"hash_ids":[656044,656045],"delay":4807.0} +{"session_id":"sess-06ef30a22244","input_length":442,"output_length":44,"hash_ids":[656046],"delay":2858.4} +{"session_id":"sess-06ef30a22244","input_length":2205,"output_length":40,"hash_ids":[656047,656048,656049,656050,656051],"delay":6182.6} +{"session_id":"sess-06ef30a22244","input_length":1000,"output_length":65,"hash_ids":[656052,656053],"delay":3623.6} +{"session_id":"sess-06ef30a22244","input_length":871,"output_length":47,"hash_ids":[656054,656055],"delay":10946.8} +{"session_id":"sess-06ef30a22244","input_length":2376,"output_length":418,"hash_ids":[656056,656057,656058,656059,656060],"delay":716.0} +{"session_id":"sess-06ef30a22244","input_length":1036,"output_length":701,"hash_ids":[656061,656062,656063],"delay":513.7} +{"session_id":"sess-06ef30a22244","input_length":125,"output_length":259,"hash_ids":[656064],"delay":22090.8} +{"session_id":"sess-06ef30a22244","input_length":2380,"output_length":176,"hash_ids":[656065,656066,656067,656068,656069],"delay":49433.0} +{"session_id":"sess-06ef30a22244","input_length":322,"output_length":387,"hash_ids":[656070],"delay":49506.7} +{"session_id":"sess-7e7280730db3","input_length":32112,"output_length":1424,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,660032,660033,660034,660035,660036,660037,660038,660039,660040,660041,660042],"timestamp":0.0,"group_id":7} +{"session_id":"sess-7e7280730db3","input_length":563,"output_length":56,"hash_ids":[660043,660044],"delay":23980.8} +{"session_id":"sess-7e7280730db3","input_length":325,"output_length":1339,"hash_ids":[660045],"delay":1634.4} +{"session_id":"sess-7e7280730db3","input_length":1853,"output_length":37,"hash_ids":[660046,660047,660048,660049],"delay":534.5} +{"session_id":"sess-7e7280730db3","input_length":1319,"output_length":184,"hash_ids":[660050,660051,660052],"delay":388.0} +{"session_id":"sess-7e7280730db3","input_length":859,"output_length":117,"hash_ids":[660053,660054],"delay":475.8} +{"session_id":"sess-7e7280730db3","input_length":337,"output_length":226,"hash_ids":[660055],"delay":22744.7} +{"session_id":"sess-7e7280730db3","input_length":931,"output_length":284,"hash_ids":[660056,660057],"delay":1051.3} +{"session_id":"sess-7e7280730db3","input_length":1990,"output_length":189,"hash_ids":[660058,660059,660060,660061],"delay":782.8} +{"session_id":"sess-7e7280730db3","input_length":1130,"output_length":551,"hash_ids":[660062,660063,660064],"delay":2207.4} +{"session_id":"sess-7e7280730db3","input_length":372,"output_length":369,"hash_ids":[660065],"delay":504.3} +{"session_id":"sess-7e7280730db3","input_length":114,"output_length":102,"hash_ids":[660066],"delay":5634.8} +{"session_id":"sess-7e7280730db3","input_length":869,"output_length":98,"hash_ids":[660067,660068],"delay":979.0} +{"session_id":"sess-7e7280730db3","input_length":1101,"output_length":45,"hash_ids":[660069,660070,660071],"delay":30152.3} +{"session_id":"sess-7e7280730db3","input_length":1640,"output_length":94,"hash_ids":[660072,660073,660074,660075],"delay":1766.5} +{"session_id":"sess-7e7280730db3","input_length":1134,"output_length":225,"hash_ids":[660076,660077,660078],"delay":2164.9} +{"session_id":"sess-7e7280730db3","input_length":343,"output_length":224,"hash_ids":[660079],"delay":8388.1} +{"session_id":"sess-7e7280730db3","input_length":1989,"output_length":208,"hash_ids":[660080,660081,660082,660083],"delay":1878.2} +{"session_id":"sess-7e7280730db3","input_length":1744,"output_length":165,"hash_ids":[660084,660085,660086,660087],"delay":9865.3} +{"session_id":"sess-7e7280730db3","input_length":1693,"output_length":173,"hash_ids":[660088,660089,660090,660091],"delay":1500.0} +{"session_id":"sess-7e7280730db3","input_length":466,"output_length":422,"hash_ids":[660092],"delay":1541.5} +{"session_id":"sess-7e7280730db3","input_length":570,"output_length":53,"hash_ids":[660093,660094],"delay":977.3} +{"session_id":"sess-7e7280730db3","input_length":2644,"output_length":83,"hash_ids":[660095,660096,660097,660098,660099,660100],"delay":624.1} +{"session_id":"sess-7e7280730db3","input_length":1297,"output_length":82,"hash_ids":[660101,660102,660103],"delay":200.0} +{"session_id":"sess-7e7280730db3","input_length":1008,"output_length":189,"hash_ids":[660104,660105],"delay":571.6} +{"session_id":"sess-57f263f9eee7","input_length":28077,"output_length":1392,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,664032,664033,664034],"timestamp":0.0,"group_id":7} +{"session_id":"sess-57f263f9eee7","input_length":887,"output_length":565,"hash_ids":[664035,664036],"delay":1038.1} +{"session_id":"sess-57f263f9eee7","input_length":2443,"output_length":663,"hash_ids":[664037,664038,664039,664040,664041],"delay":27865.3} +{"session_id":"sess-57f263f9eee7","input_length":2331,"output_length":1127,"hash_ids":[664042,664043,664044,664045,664046],"delay":7743.0} +{"session_id":"sess-57f263f9eee7","input_length":1661,"output_length":307,"hash_ids":[664047,664048,664049,664050],"delay":1573.6} +{"session_id":"sess-57f263f9eee7","input_length":1154,"output_length":141,"hash_ids":[664051,664052,664053],"delay":1787.7} +{"session_id":"sess-77efdfad223d","input_length":26576,"output_length":39,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051],"timestamp":0.0,"group_id":15} +{"session_id":"sess-77efdfad223d","input_length":1870,"output_length":89,"hash_ids":[664054,664055,664056,664057],"delay":53051.8} +{"session_id":"sess-77efdfad223d","input_length":1517,"output_length":516,"hash_ids":[664058,664059,664060],"delay":23906.5} +{"session_id":"sess-77efdfad223d","input_length":840,"output_length":144,"hash_ids":[664061,664062],"delay":1479.6} +{"session_id":"sess-77efdfad223d","input_length":1440,"output_length":127,"hash_ids":[664063,664064,664065],"delay":1391.0} +{"session_id":"sess-77efdfad223d","input_length":1116,"output_length":243,"hash_ids":[664066,664067,664068],"delay":923.5} +{"session_id":"sess-77efdfad223d","input_length":1460,"output_length":198,"hash_ids":[664069,664070,664071],"delay":3925.4} +{"session_id":"sess-77efdfad223d","input_length":2136,"output_length":249,"hash_ids":[664072,664073,664074,664075,664076],"delay":2311.3} +{"session_id":"sess-77efdfad223d","input_length":746,"output_length":74,"hash_ids":[664077,664078],"delay":7966.0} +{"session_id":"sess-77efdfad223d","input_length":227,"output_length":77,"hash_ids":[664079],"delay":8495.6} +{"session_id":"sess-77efdfad223d","input_length":732,"output_length":380,"hash_ids":[664080,664081],"delay":791.0} +{"session_id":"sess-77efdfad223d","input_length":144,"output_length":969,"hash_ids":[664082],"delay":2024.1} +{"session_id":"sess-77efdfad223d","input_length":1763,"output_length":83,"hash_ids":[664083,664084,664085,664086],"delay":18998.4} +{"session_id":"sess-77efdfad223d","input_length":1382,"output_length":986,"hash_ids":[664087,664088,664089],"delay":1435.7} +{"session_id":"sess-77efdfad223d","input_length":640,"output_length":249,"hash_ids":[664090,664091],"delay":1062.9} +{"session_id":"sess-77efdfad223d","input_length":454,"output_length":179,"hash_ids":[664092],"delay":398.8} +{"session_id":"sess-77efdfad223d","input_length":1559,"output_length":134,"hash_ids":[664093,664094,664095,664096],"delay":1339.0} +{"session_id":"sess-77efdfad223d","input_length":170,"output_length":592,"hash_ids":[664097],"delay":10498.8} +{"session_id":"sess-77efdfad223d","input_length":391,"output_length":187,"hash_ids":[664098],"delay":3784.0} +{"session_id":"sess-77efdfad223d","input_length":628,"output_length":76,"hash_ids":[664099,664100],"delay":10996.8} +{"session_id":"sess-77efdfad223d","input_length":1267,"output_length":131,"hash_ids":[664101,664102,664103],"delay":822.1} +{"session_id":"sess-77efdfad223d","input_length":287,"output_length":425,"hash_ids":[664104],"delay":1653.5} +{"session_id":"sess-77efdfad223d","input_length":1050,"output_length":406,"hash_ids":[664105,664106,664107],"delay":4070.8} +{"session_id":"sess-77efdfad223d","input_length":970,"output_length":48,"hash_ids":[664108,664109],"delay":22152.2} +{"session_id":"sess-77efdfad223d","input_length":712,"output_length":120,"hash_ids":[664110,664111],"delay":3245.3} +{"session_id":"sess-77efdfad223d","input_length":168,"output_length":202,"hash_ids":[664112],"delay":1106.5} +{"session_id":"sess-77efdfad223d","input_length":1740,"output_length":435,"hash_ids":[664113,664114,664115,664116],"delay":74.7} +{"session_id":"sess-77efdfad223d","input_length":649,"output_length":703,"hash_ids":[664117,664118],"delay":5488.6} +{"session_id":"sess-77efdfad223d","input_length":1454,"output_length":885,"hash_ids":[664119,664120,664121],"delay":1594.5} +{"session_id":"sess-77efdfad223d","input_length":786,"output_length":268,"hash_ids":[664122,664123],"delay":227.6} +{"session_id":"sess-84b90ed5de66","input_length":29194,"output_length":113,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,672032,672033,672034,672035,672036,672037],"timestamp":0.0,"group_id":46} +{"session_id":"sess-84b90ed5de66","input_length":277,"output_length":222,"hash_ids":[672038],"delay":762.2} +{"session_id":"sess-84b90ed5de66","input_length":222,"output_length":379,"hash_ids":[672039],"delay":1461.0} +{"session_id":"sess-84b90ed5de66","input_length":578,"output_length":310,"hash_ids":[672040,672041],"delay":567.3} +{"session_id":"sess-84b90ed5de66","input_length":335,"output_length":210,"hash_ids":[672042],"delay":732.5} +{"session_id":"sess-84b90ed5de66","input_length":2608,"output_length":115,"hash_ids":[672043,672044,672045,672046,672047,672048],"delay":2695.2} +{"session_id":"sess-84b90ed5de66","input_length":464,"output_length":479,"hash_ids":[672049],"delay":492.1} +{"session_id":"sess-84b90ed5de66","input_length":782,"output_length":611,"hash_ids":[672050,672051],"delay":67342.4} +{"session_id":"sess-84b90ed5de66","input_length":91,"output_length":105,"hash_ids":[672052],"delay":897.7} +{"session_id":"sess-84b90ed5de66","input_length":2236,"output_length":139,"hash_ids":[672053,672054,672055,672056,672057],"delay":1390.1} +{"session_id":"sess-84b90ed5de66","input_length":1196,"output_length":314,"hash_ids":[672058,672059,672060],"delay":356.6} +{"session_id":"sess-84b90ed5de66","input_length":1985,"output_length":289,"hash_ids":[672061,672062,672063,672064],"delay":264.6} +{"session_id":"sess-84b90ed5de66","input_length":219,"output_length":151,"hash_ids":[672065],"delay":6877.0} +{"session_id":"sess-84b90ed5de66","input_length":530,"output_length":197,"hash_ids":[672066,672067],"delay":468.1} +{"session_id":"sess-84b90ed5de66","input_length":302,"output_length":700,"hash_ids":[672068],"delay":10015.5} +{"session_id":"sess-84b90ed5de66","input_length":394,"output_length":203,"hash_ids":[672069],"delay":594.5} +{"session_id":"sess-84b90ed5de66","input_length":525,"output_length":144,"hash_ids":[672070,672071],"delay":644.0} +{"session_id":"sess-84b90ed5de66","input_length":1245,"output_length":198,"hash_ids":[672072,672073,672074],"delay":769.7} +{"session_id":"sess-84b90ed5de66","input_length":1371,"output_length":168,"hash_ids":[672075,672076,672077],"delay":615.4} +{"session_id":"sess-84b90ed5de66","input_length":562,"output_length":421,"hash_ids":[672078,672079],"delay":9387.0} +{"session_id":"sess-84b90ed5de66","input_length":143,"output_length":53,"hash_ids":[672080],"delay":427.8} +{"session_id":"sess-84b90ed5de66","input_length":459,"output_length":385,"hash_ids":[672081],"delay":5210.9} +{"session_id":"sess-84b90ed5de66","input_length":2267,"output_length":38,"hash_ids":[672082,672083,672084,672085,672086],"delay":645.2} +{"session_id":"sess-84b90ed5de66","input_length":383,"output_length":224,"hash_ids":[672087],"delay":375.4} +{"session_id":"sess-84b90ed5de66","input_length":1358,"output_length":80,"hash_ids":[672088,672089,672090],"delay":502.6} +{"session_id":"sess-84b90ed5de66","input_length":902,"output_length":131,"hash_ids":[672091,672092],"delay":2602.0} +{"session_id":"sess-84b90ed5de66","input_length":2592,"output_length":98,"hash_ids":[672093,672094,672095,672096,672097,672098],"delay":3759.1} +{"session_id":"sess-84b90ed5de66","input_length":533,"output_length":258,"hash_ids":[672099,672100],"delay":1114.2} +{"session_id":"sess-84b90ed5de66","input_length":1418,"output_length":1163,"hash_ids":[672101,672102,672103],"delay":5265.7} +{"session_id":"sess-84b90ed5de66","input_length":1642,"output_length":995,"hash_ids":[672104,672105,672106,672107],"delay":107.7} +{"session_id":"sess-18718d1a9070","input_length":26114,"output_length":47,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051],"timestamp":0.0,"group_id":20} +{"session_id":"sess-18718d1a9070","input_length":332,"output_length":86,"hash_ids":[672108],"delay":720.7} +{"session_id":"sess-18718d1a9070","input_length":1986,"output_length":144,"hash_ids":[672109,672110,672111,672112],"delay":777.0} +{"session_id":"sess-18718d1a9070","input_length":2863,"output_length":191,"hash_ids":[672113,672114,672115,672116,672117,672118],"delay":2258.4} +{"session_id":"sess-18718d1a9070","input_length":418,"output_length":61,"hash_ids":[672119],"delay":409.5} +{"session_id":"sess-18718d1a9070","input_length":657,"output_length":45,"hash_ids":[672120,672121],"delay":577.4} +{"session_id":"sess-18718d1a9070","input_length":691,"output_length":98,"hash_ids":[672122,672123],"delay":1617.7} +{"session_id":"sess-2b1944fcad43","input_length":27104,"output_length":180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,680032],"timestamp":0.0,"group_id":17} +{"session_id":"sess-2b1944fcad43","input_length":2178,"output_length":291,"hash_ids":[680033,680034,680035,680036,680037],"delay":1130.5} +{"session_id":"sess-2b1944fcad43","input_length":511,"output_length":475,"hash_ids":[680038],"delay":6132.7} +{"session_id":"sess-2b1944fcad43","input_length":1310,"output_length":306,"hash_ids":[680039,680040,680041],"delay":23523.3} +{"session_id":"sess-2b1944fcad43","input_length":110,"output_length":216,"hash_ids":[680042],"delay":577.5} +{"session_id":"sess-2b1944fcad43","input_length":1223,"output_length":181,"hash_ids":[680043,680044,680045],"delay":60990.4} +{"session_id":"sess-2b1944fcad43","input_length":926,"output_length":75,"hash_ids":[680046,680047],"delay":27725.8} +{"session_id":"sess-2b1944fcad43","input_length":449,"output_length":114,"hash_ids":[680048],"delay":1216.6} +{"session_id":"sess-2b1944fcad43","input_length":1133,"output_length":58,"hash_ids":[680049,680050,680051],"delay":27990.1} +{"session_id":"sess-2b1944fcad43","input_length":2992,"output_length":238,"hash_ids":[680052,680053,680054,680055,680056,680057],"delay":1015.1} +{"session_id":"sess-2b1944fcad43","input_length":417,"output_length":238,"hash_ids":[680058],"delay":831.4} +{"session_id":"sess-2b1944fcad43","input_length":1963,"output_length":218,"hash_ids":[680059,680060,680061,680062],"delay":34251.6} +{"session_id":"sess-2b1944fcad43","input_length":2185,"output_length":515,"hash_ids":[680063,680064,680065,680066,680067],"delay":932.2} +{"session_id":"sess-2b1944fcad43","input_length":251,"output_length":227,"hash_ids":[680068],"delay":573.1} +{"session_id":"sess-2b1944fcad43","input_length":209,"output_length":89,"hash_ids":[680069],"delay":964.9} +{"session_id":"sess-2b1944fcad43","input_length":2472,"output_length":345,"hash_ids":[680070,680071,680072,680073,680074],"delay":1588.7} +{"session_id":"sess-2b1944fcad43","input_length":2506,"output_length":106,"hash_ids":[680075,680076,680077,680078,680079],"delay":11008.5} +{"session_id":"sess-2b1944fcad43","input_length":920,"output_length":134,"hash_ids":[680080,680081],"delay":783.4} +{"session_id":"sess-2b1944fcad43","input_length":432,"output_length":197,"hash_ids":[680082],"delay":1005.3} +{"session_id":"sess-2b1944fcad43","input_length":76,"output_length":270,"hash_ids":[680083],"delay":1110.3} +{"session_id":"sess-2b1944fcad43","input_length":1455,"output_length":294,"hash_ids":[680084,680085,680086],"delay":10196.9} +{"session_id":"sess-2b1944fcad43","input_length":1907,"output_length":65,"hash_ids":[680087,680088,680089,680090],"delay":1693.2} +{"session_id":"sess-2b1944fcad43","input_length":1502,"output_length":359,"hash_ids":[680091,680092,680093],"delay":262.5} +{"session_id":"sess-2b1944fcad43","input_length":844,"output_length":82,"hash_ids":[680094,680095],"delay":1226.7} +{"session_id":"sess-2b1944fcad43","input_length":606,"output_length":182,"hash_ids":[680096,680097],"delay":480.3} +{"session_id":"sess-2b1944fcad43","input_length":1142,"output_length":348,"hash_ids":[680098,680099,680100],"delay":836.4} +{"session_id":"sess-2b1944fcad43","input_length":1281,"output_length":246,"hash_ids":[680101,680102,680103],"delay":14293.8} +{"session_id":"sess-2b1944fcad43","input_length":1013,"output_length":123,"hash_ids":[680104,680105],"delay":951.2} +{"session_id":"sess-2b1944fcad43","input_length":192,"output_length":393,"hash_ids":[680106],"delay":9860.5} +{"session_id":"sess-e955919f77ea","input_length":36172,"output_length":709,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,684032,684033,684034,684035,684036,684037,684038,684039,684040,684041,684042,684043,684044,684045,684046,684047,684048,684049,684050],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e955919f77ea","input_length":779,"output_length":192,"hash_ids":[684051,684052],"delay":7543.0} +{"session_id":"sess-e955919f77ea","input_length":1006,"output_length":286,"hash_ids":[684053,684054],"delay":3459.5} +{"session_id":"sess-e955919f77ea","input_length":188,"output_length":35,"hash_ids":[684055],"delay":4713.2} +{"session_id":"sess-e955919f77ea","input_length":261,"output_length":212,"hash_ids":[684056],"delay":2057.2} +{"session_id":"sess-e955919f77ea","input_length":549,"output_length":161,"hash_ids":[684057,684058],"delay":12480.6} +{"session_id":"sess-e955919f77ea","input_length":1423,"output_length":55,"hash_ids":[684059,684060,684061],"delay":588.3} +{"session_id":"sess-e955919f77ea","input_length":1286,"output_length":233,"hash_ids":[684062,684063,684064],"delay":1134.9} +{"session_id":"sess-e955919f77ea","input_length":693,"output_length":264,"hash_ids":[684065,684066],"delay":427.0} +{"session_id":"sess-e955919f77ea","input_length":1252,"output_length":350,"hash_ids":[684067,684068,684069],"delay":825.4} +{"session_id":"sess-e955919f77ea","input_length":2439,"output_length":103,"hash_ids":[684070,684071,684072,684073,684074],"delay":150.1} +{"session_id":"sess-e955919f77ea","input_length":1111,"output_length":242,"hash_ids":[684075,684076,684077],"delay":896.5} +{"session_id":"sess-e955919f77ea","input_length":831,"output_length":120,"hash_ids":[684078,684079],"delay":4714.3} +{"session_id":"sess-e955919f77ea","input_length":846,"output_length":291,"hash_ids":[684080,684081],"delay":696.6} +{"session_id":"sess-e955919f77ea","input_length":903,"output_length":70,"hash_ids":[684082,684083],"delay":471.0} +{"session_id":"sess-e955919f77ea","input_length":1498,"output_length":157,"hash_ids":[684084,684085,684086],"delay":1624.8} +{"session_id":"sess-e955919f77ea","input_length":729,"output_length":146,"hash_ids":[684087,684088],"delay":6071.8} +{"session_id":"sess-e955919f77ea","input_length":815,"output_length":180,"hash_ids":[684089,684090],"delay":217.4} +{"session_id":"sess-66e4d4d55214","input_length":30381,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,688032,688033,688034,688035,688036,688037,688038,688039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-66e4d4d55214","input_length":303,"output_length":108,"hash_ids":[688040],"delay":1551.3} +{"session_id":"sess-66e4d4d55214","input_length":752,"output_length":188,"hash_ids":[688041,688042],"delay":1516.1} +{"session_id":"sess-66e4d4d55214","input_length":112,"output_length":331,"hash_ids":[688043],"delay":3966.2} +{"session_id":"sess-66e4d4d55214","input_length":2864,"output_length":203,"hash_ids":[688044,688045,688046,688047,688048,688049],"delay":2978.2} +{"session_id":"sess-66e4d4d55214","input_length":243,"output_length":98,"hash_ids":[688050],"delay":24317.5} +{"session_id":"sess-66e4d4d55214","input_length":330,"output_length":142,"hash_ids":[688051],"delay":762.2} +{"session_id":"sess-66e4d4d55214","input_length":2372,"output_length":255,"hash_ids":[688052,688053,688054,688055,688056],"delay":5837.6} +{"session_id":"sess-66e4d4d55214","input_length":736,"output_length":100,"hash_ids":[688057,688058],"delay":11439.7} +{"session_id":"sess-66e4d4d55214","input_length":115,"output_length":461,"hash_ids":[688059],"delay":7532.0} +{"session_id":"sess-66e4d4d55214","input_length":451,"output_length":109,"hash_ids":[688060],"delay":827.0} +{"session_id":"sess-66e4d4d55214","input_length":2268,"output_length":229,"hash_ids":[688061,688062,688063,688064,688065],"delay":656.9} +{"session_id":"sess-66e4d4d55214","input_length":1796,"output_length":111,"hash_ids":[688066,688067,688068,688069],"delay":743.1} +{"session_id":"sess-66e4d4d55214","input_length":1112,"output_length":190,"hash_ids":[688070,688071,688072],"delay":9543.3} +{"session_id":"sess-66e4d4d55214","input_length":998,"output_length":494,"hash_ids":[688073,688074],"delay":18104.4} +{"session_id":"sess-66e4d4d55214","input_length":573,"output_length":164,"hash_ids":[688075,688076],"delay":1580.5} +{"session_id":"sess-8dd0ef55b773","input_length":26656,"output_length":238,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,692032],"timestamp":0.0,"group_id":12} +{"session_id":"sess-8dd0ef55b773","input_length":2222,"output_length":81,"hash_ids":[692033,692034,692035,692036,692037],"delay":19921.7} +{"session_id":"sess-8dd0ef55b773","input_length":335,"output_length":576,"hash_ids":[692038],"delay":1796.3} +{"session_id":"sess-8dd0ef55b773","input_length":1455,"output_length":100,"hash_ids":[692039,692040,692041],"delay":7810.8} +{"session_id":"sess-8dd0ef55b773","input_length":553,"output_length":837,"hash_ids":[692042,692043],"delay":3884.8} +{"session_id":"sess-8dd0ef55b773","input_length":831,"output_length":166,"hash_ids":[692044,692045],"delay":858.1} +{"session_id":"sess-8dd0ef55b773","input_length":238,"output_length":50,"hash_ids":[692046],"delay":340.9} +{"session_id":"sess-8dd0ef55b773","input_length":363,"output_length":250,"hash_ids":[692047],"delay":426.5} +{"session_id":"sess-8dd0ef55b773","input_length":2405,"output_length":118,"hash_ids":[692048,692049,692050,692051,692052],"delay":13879.2} +{"session_id":"sess-8dd0ef55b773","input_length":1540,"output_length":67,"hash_ids":[692053,692054,692055,692056],"delay":325.0} +{"session_id":"sess-8dd0ef55b773","input_length":771,"output_length":286,"hash_ids":[692057,692058],"delay":820.3} +{"session_id":"sess-8dd0ef55b773","input_length":286,"output_length":213,"hash_ids":[692059],"delay":2620.5} +{"session_id":"sess-8dd0ef55b773","input_length":2156,"output_length":388,"hash_ids":[692060,692061,692062,692063,692064],"delay":417.0} +{"session_id":"sess-8dd0ef55b773","input_length":570,"output_length":145,"hash_ids":[692065,692066],"delay":169.0} +{"session_id":"sess-3b2f9cdf19c2","input_length":34080,"output_length":293,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,696032,696033,696034,696035,696036,696037,696038,696039,696040,696041,696042,696043,696044,696045,696046],"timestamp":0.0,"group_id":6} +{"session_id":"sess-3b2f9cdf19c2","input_length":905,"output_length":158,"hash_ids":[696047,696048],"delay":2129.6} +{"session_id":"sess-3b2f9cdf19c2","input_length":243,"output_length":177,"hash_ids":[696049],"delay":7218.9} +{"session_id":"sess-8cc78009fe3c","input_length":28975,"output_length":245,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,700032,700033,700034,700035,700036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8cc78009fe3c","input_length":146,"output_length":271,"hash_ids":[700037],"delay":1718.4} +{"session_id":"sess-8cc78009fe3c","input_length":2236,"output_length":41,"hash_ids":[700038,700039,700040,700041,700042],"delay":539.4} +{"session_id":"sess-8cc78009fe3c","input_length":392,"output_length":597,"hash_ids":[700043],"delay":13650.2} +{"session_id":"sess-8cc78009fe3c","input_length":963,"output_length":356,"hash_ids":[700044,700045],"delay":306.9} +{"session_id":"sess-8cc78009fe3c","input_length":1303,"output_length":62,"hash_ids":[700046,700047,700048],"delay":25249.8} +{"session_id":"sess-8cc78009fe3c","input_length":1251,"output_length":213,"hash_ids":[700049,700050,700051],"delay":341.0} +{"session_id":"sess-8cc78009fe3c","input_length":318,"output_length":171,"hash_ids":[700052],"delay":416.4} +{"session_id":"sess-8cc78009fe3c","input_length":191,"output_length":887,"hash_ids":[700053],"delay":9174.6} +{"session_id":"sess-8cc78009fe3c","input_length":715,"output_length":140,"hash_ids":[700054,700055],"delay":53787.8} +{"session_id":"sess-8cc78009fe3c","input_length":453,"output_length":54,"hash_ids":[700056],"delay":434.4} +{"session_id":"sess-8cc78009fe3c","input_length":886,"output_length":297,"hash_ids":[700057,700058],"delay":4080.1} +{"session_id":"sess-8cc78009fe3c","input_length":2202,"output_length":424,"hash_ids":[700059,700060,700061,700062,700063],"delay":811.9} +{"session_id":"sess-8cc78009fe3c","input_length":570,"output_length":131,"hash_ids":[700064,700065],"delay":428.3} +{"session_id":"sess-8cc78009fe3c","input_length":638,"output_length":108,"hash_ids":[700066,700067],"delay":353.6} +{"session_id":"sess-8cc78009fe3c","input_length":494,"output_length":306,"hash_ids":[700068],"delay":4291.7} +{"session_id":"sess-8cc78009fe3c","input_length":370,"output_length":247,"hash_ids":[700069],"delay":20838.4} +{"session_id":"sess-8cc78009fe3c","input_length":2393,"output_length":68,"hash_ids":[700070,700071,700072,700073,700074],"delay":814.8} +{"session_id":"sess-8cc78009fe3c","input_length":183,"output_length":131,"hash_ids":[700075],"delay":7033.9} +{"session_id":"sess-8cc78009fe3c","input_length":495,"output_length":439,"hash_ids":[700076],"delay":5472.7} +{"session_id":"sess-8cc78009fe3c","input_length":2290,"output_length":74,"hash_ids":[700077,700078,700079,700080,700081],"delay":3856.4} +{"session_id":"sess-8cc78009fe3c","input_length":670,"output_length":226,"hash_ids":[700082,700083],"delay":21591.3} +{"session_id":"sess-8cc78009fe3c","input_length":793,"output_length":105,"hash_ids":[700084,700085],"delay":242.9} +{"session_id":"sess-8cc78009fe3c","input_length":2189,"output_length":1104,"hash_ids":[700086,700087,700088,700089,700090],"delay":10932.7} +{"session_id":"sess-8cc78009fe3c","input_length":452,"output_length":625,"hash_ids":[700091],"delay":7427.9} +{"session_id":"sess-8cc78009fe3c","input_length":2503,"output_length":98,"hash_ids":[700092,700093,700094,700095,700096],"delay":951.4} +{"session_id":"sess-8cc78009fe3c","input_length":444,"output_length":160,"hash_ids":[700097],"delay":355.9} +{"session_id":"sess-8cc78009fe3c","input_length":394,"output_length":108,"hash_ids":[700098],"delay":75.8} +{"session_id":"sess-69f09206baa4","input_length":27674,"output_length":345,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,704032,704033,704034],"timestamp":0.0,"group_id":41} +{"session_id":"sess-69f09206baa4","input_length":794,"output_length":41,"hash_ids":[704035,704036],"delay":17071.6} +{"session_id":"sess-69f09206baa4","input_length":1572,"output_length":630,"hash_ids":[704037,704038,704039,704040],"delay":3168.7} +{"session_id":"sess-69f09206baa4","input_length":1678,"output_length":148,"hash_ids":[704041,704042,704043,704044],"delay":24541.5} +{"session_id":"sess-69f09206baa4","input_length":645,"output_length":219,"hash_ids":[704045,704046],"delay":412.3} +{"session_id":"sess-69f09206baa4","input_length":392,"output_length":182,"hash_ids":[704047],"delay":11512.1} +{"session_id":"sess-69f09206baa4","input_length":579,"output_length":154,"hash_ids":[704048,704049],"delay":902.6} +{"session_id":"sess-69f09206baa4","input_length":1742,"output_length":128,"hash_ids":[704050,704051,704052,704053],"delay":1437.1} +{"session_id":"sess-69f09206baa4","input_length":280,"output_length":90,"hash_ids":[704054],"delay":582.5} +{"session_id":"sess-69f09206baa4","input_length":997,"output_length":391,"hash_ids":[704055,704056],"delay":2734.9} +{"session_id":"sess-69f09206baa4","input_length":768,"output_length":283,"hash_ids":[704057,704058],"delay":11484.8} +{"session_id":"sess-69f09206baa4","input_length":461,"output_length":30,"hash_ids":[704059],"delay":120.5} +{"session_id":"sess-69f09206baa4","input_length":1464,"output_length":318,"hash_ids":[704060,704061,704062],"delay":6885.7} +{"session_id":"sess-69f09206baa4","input_length":1543,"output_length":135,"hash_ids":[704063,704064,704065,704066],"delay":2172.2} +{"session_id":"sess-69f09206baa4","input_length":329,"output_length":300,"hash_ids":[704067],"delay":2784.2} +{"session_id":"sess-69f09206baa4","input_length":369,"output_length":97,"hash_ids":[704068],"delay":1923.2} +{"session_id":"sess-69f09206baa4","input_length":349,"output_length":189,"hash_ids":[704069],"delay":181.7} +{"session_id":"sess-69f09206baa4","input_length":718,"output_length":1057,"hash_ids":[704070,704071],"delay":391.5} +{"session_id":"sess-69f09206baa4","input_length":274,"output_length":200,"hash_ids":[704072],"delay":532.3} +{"session_id":"sess-69f09206baa4","input_length":1001,"output_length":303,"hash_ids":[704073,704074],"delay":3277.3} +{"session_id":"sess-69f09206baa4","input_length":1749,"output_length":182,"hash_ids":[704075,704076,704077,704078],"delay":477.4} +{"session_id":"sess-69f09206baa4","input_length":2024,"output_length":217,"hash_ids":[704079,704080,704081,704082],"delay":236.6} +{"session_id":"sess-69f09206baa4","input_length":288,"output_length":400,"hash_ids":[704083],"delay":965.0} +{"session_id":"sess-69f09206baa4","input_length":54,"output_length":361,"hash_ids":[704084],"delay":2511.8} +{"session_id":"sess-69f09206baa4","input_length":1193,"output_length":255,"hash_ids":[704085,704086,704087],"delay":7876.6} +{"session_id":"sess-69f09206baa4","input_length":1874,"output_length":698,"hash_ids":[704088,704089,704090,704091],"delay":528.2} +{"session_id":"sess-69f09206baa4","input_length":189,"output_length":130,"hash_ids":[704092],"delay":783.6} +{"session_id":"sess-69f09206baa4","input_length":599,"output_length":165,"hash_ids":[704093,704094],"delay":570.9} +{"session_id":"sess-69f09206baa4","input_length":113,"output_length":240,"hash_ids":[704095],"delay":301.6} +{"session_id":"sess-69f09206baa4","input_length":1202,"output_length":96,"hash_ids":[704096,704097,704098],"delay":348.1} +{"session_id":"sess-69f09206baa4","input_length":680,"output_length":1180,"hash_ids":[704099,704100],"delay":131.8} +{"session_id":"sess-69f09206baa4","input_length":455,"output_length":230,"hash_ids":[704101],"delay":178.8} +{"session_id":"sess-69f09206baa4","input_length":1897,"output_length":127,"hash_ids":[704102,704103,704104,704105],"delay":371.8} +{"session_id":"sess-22c978d57c45","input_length":31827,"output_length":249,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,708032,708033,708034,708035,708036,708037,708038,708039,708040,708041,708042],"timestamp":0.0,"group_id":2} +{"session_id":"sess-22c978d57c45","input_length":246,"output_length":30,"hash_ids":[708043],"delay":29124.8} +{"session_id":"sess-22c978d57c45","input_length":397,"output_length":136,"hash_ids":[708044],"delay":7157.0} +{"session_id":"sess-22c978d57c45","input_length":503,"output_length":170,"hash_ids":[708045],"delay":1048.5} +{"session_id":"sess-22c978d57c45","input_length":1523,"output_length":586,"hash_ids":[708046,708047,708048],"delay":999.9} +{"session_id":"sess-22c978d57c45","input_length":80,"output_length":534,"hash_ids":[708049],"delay":825.5} +{"session_id":"sess-22c978d57c45","input_length":480,"output_length":72,"hash_ids":[708050],"delay":945.9} +{"session_id":"sess-22c978d57c45","input_length":651,"output_length":30,"hash_ids":[708051,708052],"delay":1253.7} +{"session_id":"sess-22c978d57c45","input_length":890,"output_length":979,"hash_ids":[708053,708054],"delay":1057.8} +{"session_id":"sess-22c978d57c45","input_length":563,"output_length":165,"hash_ids":[708055,708056],"delay":1250.8} +{"session_id":"sess-22c978d57c45","input_length":2419,"output_length":183,"hash_ids":[708057,708058,708059,708060,708061],"delay":1207.8} +{"session_id":"sess-22c978d57c45","input_length":1363,"output_length":149,"hash_ids":[708062,708063,708064],"delay":1040.3} +{"session_id":"sess-22c978d57c45","input_length":105,"output_length":95,"hash_ids":[708065],"delay":261.4} +{"session_id":"sess-22c978d57c45","input_length":2035,"output_length":34,"hash_ids":[708066,708067,708068,708069],"delay":138.6} +{"session_id":"sess-22c978d57c45","input_length":920,"output_length":61,"hash_ids":[708070,708071],"delay":7720.7} +{"session_id":"sess-22c978d57c45","input_length":551,"output_length":136,"hash_ids":[708072,708073],"delay":13999.5} +{"session_id":"sess-22c978d57c45","input_length":2454,"output_length":210,"hash_ids":[708074,708075,708076,708077,708078],"delay":1025.0} +{"session_id":"sess-22c978d57c45","input_length":563,"output_length":540,"hash_ids":[708079,708080],"delay":1493.6} +{"session_id":"sess-22c978d57c45","input_length":574,"output_length":204,"hash_ids":[708081,708082],"delay":711.2} +{"session_id":"sess-22c978d57c45","input_length":1009,"output_length":445,"hash_ids":[708083,708084],"delay":3325.5} +{"session_id":"sess-22c978d57c45","input_length":1723,"output_length":386,"hash_ids":[708085,708086,708087,708088],"delay":1738.4} +{"session_id":"sess-22c978d57c45","input_length":419,"output_length":77,"hash_ids":[708089],"delay":370.7} +{"session_id":"sess-22c978d57c45","input_length":980,"output_length":255,"hash_ids":[708090,708091],"delay":733.4} +{"session_id":"sess-22c978d57c45","input_length":481,"output_length":433,"hash_ids":[708092],"delay":5126.8} +{"session_id":"sess-22c978d57c45","input_length":1072,"output_length":157,"hash_ids":[708093,708094,708095],"delay":3649.7} +{"session_id":"sess-22c978d57c45","input_length":1321,"output_length":133,"hash_ids":[708096,708097,708098],"delay":252.8} +{"session_id":"sess-22c978d57c45","input_length":887,"output_length":653,"hash_ids":[708099,708100],"delay":151.1} +{"session_id":"sess-22c978d57c45","input_length":1973,"output_length":612,"hash_ids":[708101,708102,708103,708104],"delay":3734.7} +{"session_id":"sess-f8b1a8709086","input_length":27512,"output_length":380,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,712032,712033],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f8b1a8709086","input_length":386,"output_length":845,"hash_ids":[712034],"delay":2829.0} +{"session_id":"sess-f8b1a8709086","input_length":2260,"output_length":386,"hash_ids":[712035,712036,712037,712038,712039],"delay":1072.5} +{"session_id":"sess-f8b1a8709086","input_length":841,"output_length":167,"hash_ids":[712040,712041],"delay":189.3} +{"session_id":"sess-f8b1a8709086","input_length":1579,"output_length":119,"hash_ids":[712042,712043,712044,712045],"delay":250.9} +{"session_id":"sess-f8b1a8709086","input_length":2860,"output_length":175,"hash_ids":[712046,712047,712048,712049,712050,712051],"delay":48535.3} +{"session_id":"sess-f8b1a8709086","input_length":438,"output_length":258,"hash_ids":[712052],"delay":317.7} +{"session_id":"sess-f8b1a8709086","input_length":756,"output_length":174,"hash_ids":[712053,712054],"delay":27776.8} +{"session_id":"sess-f8b1a8709086","input_length":149,"output_length":157,"hash_ids":[712055],"delay":4392.9} +{"session_id":"sess-f8b1a8709086","input_length":2439,"output_length":875,"hash_ids":[712056,712057,712058,712059,712060],"delay":398.5} +{"session_id":"sess-f8b1a8709086","input_length":248,"output_length":638,"hash_ids":[712061],"delay":1130.5} +{"session_id":"sess-f8b1a8709086","input_length":934,"output_length":317,"hash_ids":[712062,712063],"delay":912.5} +{"session_id":"sess-f8b1a8709086","input_length":643,"output_length":178,"hash_ids":[712064,712065],"delay":310.1} +{"session_id":"sess-f8b1a8709086","input_length":1370,"output_length":316,"hash_ids":[712066,712067,712068],"delay":955.6} +{"session_id":"sess-f8b1a8709086","input_length":173,"output_length":156,"hash_ids":[712069],"delay":464.6} +{"session_id":"sess-e63027102aa1","input_length":28901,"output_length":47,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,716032,716033,716034,716035,716036],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e63027102aa1","input_length":96,"output_length":501,"hash_ids":[716037],"delay":1617.3} +{"session_id":"sess-e63027102aa1","input_length":946,"output_length":200,"hash_ids":[716038,716039],"delay":6205.6} +{"session_id":"sess-e63027102aa1","input_length":676,"output_length":861,"hash_ids":[716040,716041],"delay":2249.3} +{"session_id":"sess-e63027102aa1","input_length":387,"output_length":187,"hash_ids":[716042],"delay":3981.8} +{"session_id":"sess-e63027102aa1","input_length":1526,"output_length":123,"hash_ids":[716043,716044,716045],"delay":9655.0} +{"session_id":"sess-e63027102aa1","input_length":731,"output_length":135,"hash_ids":[716046,716047],"delay":1103.6} +{"session_id":"sess-e63027102aa1","input_length":1070,"output_length":287,"hash_ids":[716048,716049,716050],"delay":768.4} +{"session_id":"sess-e63027102aa1","input_length":1448,"output_length":73,"hash_ids":[716051,716052,716053],"delay":17009.5} +{"session_id":"sess-e63027102aa1","input_length":290,"output_length":480,"hash_ids":[716054],"delay":635.2} +{"session_id":"sess-e63027102aa1","input_length":1236,"output_length":1474,"hash_ids":[716055,716056,716057],"delay":18562.4} +{"session_id":"sess-e63027102aa1","input_length":1867,"output_length":74,"hash_ids":[716058,716059,716060,716061],"delay":755.4} +{"session_id":"sess-e63027102aa1","input_length":802,"output_length":587,"hash_ids":[716062,716063],"delay":2138.7} +{"session_id":"sess-e63027102aa1","input_length":316,"output_length":501,"hash_ids":[716064],"delay":15297.9} +{"session_id":"sess-e63027102aa1","input_length":188,"output_length":176,"hash_ids":[716065],"delay":927.7} +{"session_id":"sess-e63027102aa1","input_length":227,"output_length":293,"hash_ids":[716066],"delay":595.0} +{"session_id":"sess-e63027102aa1","input_length":923,"output_length":142,"hash_ids":[716067,716068],"delay":13583.2} +{"session_id":"sess-e63027102aa1","input_length":70,"output_length":129,"hash_ids":[716069],"delay":6588.7} +{"session_id":"sess-e63027102aa1","input_length":953,"output_length":51,"hash_ids":[716070,716071],"delay":535.7} +{"session_id":"sess-e63027102aa1","input_length":344,"output_length":289,"hash_ids":[716072],"delay":150.6} +{"session_id":"sess-e63027102aa1","input_length":342,"output_length":1020,"hash_ids":[716073],"delay":505.8} +{"session_id":"sess-e63027102aa1","input_length":959,"output_length":607,"hash_ids":[716074,716075],"delay":518.5} +{"session_id":"sess-e63027102aa1","input_length":1631,"output_length":93,"hash_ids":[716076,716077,716078,716079],"delay":720.3} +{"session_id":"sess-e63027102aa1","input_length":1675,"output_length":240,"hash_ids":[716080,716081,716082,716083],"delay":620.8} +{"session_id":"sess-e63027102aa1","input_length":267,"output_length":541,"hash_ids":[716084],"delay":35698.6} +{"session_id":"sess-e63027102aa1","input_length":479,"output_length":57,"hash_ids":[716085],"delay":512.0} +{"session_id":"sess-e63027102aa1","input_length":306,"output_length":546,"hash_ids":[716086],"delay":3813.9} +{"session_id":"sess-e63027102aa1","input_length":682,"output_length":1343,"hash_ids":[716087,716088],"delay":309.4} +{"session_id":"sess-e63027102aa1","input_length":2001,"output_length":195,"hash_ids":[716089,716090,716091,716092],"delay":16111.3} +{"session_id":"sess-e63027102aa1","input_length":545,"output_length":231,"hash_ids":[716093,716094],"delay":670.7} +{"session_id":"sess-e63027102aa1","input_length":2074,"output_length":95,"hash_ids":[716095,716096,716097,716098,716099],"delay":346.7} +{"session_id":"sess-650a787baa5b","input_length":31390,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,720032,720033,720034,720035,720036,720037,720038,720039,720040,720041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-650a787baa5b","input_length":2227,"output_length":78,"hash_ids":[720042,720043,720044,720045,720046],"delay":1949.6} +{"session_id":"sess-650a787baa5b","input_length":475,"output_length":51,"hash_ids":[720047],"delay":2570.8} +{"session_id":"sess-650a787baa5b","input_length":776,"output_length":87,"hash_ids":[720048,720049],"delay":27701.6} +{"session_id":"sess-650a787baa5b","input_length":777,"output_length":375,"hash_ids":[720050,720051],"delay":42083.0} +{"session_id":"sess-0536ed93bb89","input_length":26943,"output_length":219,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,724032],"timestamp":0.0,"group_id":10} +{"session_id":"sess-0536ed93bb89","input_length":279,"output_length":187,"hash_ids":[724033],"delay":1254.5} +{"session_id":"sess-0536ed93bb89","input_length":871,"output_length":119,"hash_ids":[724034,724035],"delay":650.3} +{"session_id":"sess-0536ed93bb89","input_length":950,"output_length":100,"hash_ids":[724036,724037],"delay":1647.6} +{"session_id":"sess-0536ed93bb89","input_length":2215,"output_length":282,"hash_ids":[724038,724039,724040,724041,724042],"delay":1670.5} +{"session_id":"sess-0536ed93bb89","input_length":677,"output_length":119,"hash_ids":[724043,724044],"delay":267.8} +{"session_id":"sess-0536ed93bb89","input_length":195,"output_length":69,"hash_ids":[724045],"delay":7518.8} +{"session_id":"sess-0536ed93bb89","input_length":1768,"output_length":426,"hash_ids":[724046,724047,724048,724049],"delay":912.8} +{"session_id":"sess-0536ed93bb89","input_length":1587,"output_length":969,"hash_ids":[724050,724051,724052,724053],"delay":337.0} +{"session_id":"sess-0536ed93bb89","input_length":739,"output_length":87,"hash_ids":[724054,724055],"delay":2041.0} +{"session_id":"sess-0536ed93bb89","input_length":881,"output_length":543,"hash_ids":[724056,724057],"delay":7891.0} +{"session_id":"sess-0536ed93bb89","input_length":1261,"output_length":114,"hash_ids":[724058,724059,724060],"delay":4993.4} +{"session_id":"sess-0536ed93bb89","input_length":1245,"output_length":183,"hash_ids":[724061,724062,724063],"delay":1019.5} +{"session_id":"sess-0536ed93bb89","input_length":277,"output_length":1071,"hash_ids":[724064],"delay":2071.7} +{"session_id":"sess-0536ed93bb89","input_length":438,"output_length":238,"hash_ids":[724065],"delay":671.3} +{"session_id":"sess-0536ed93bb89","input_length":579,"output_length":625,"hash_ids":[724066,724067],"delay":318.5} +{"session_id":"sess-0536ed93bb89","input_length":756,"output_length":288,"hash_ids":[724068,724069],"delay":20800.3} +{"session_id":"sess-0536ed93bb89","input_length":734,"output_length":93,"hash_ids":[724070,724071],"delay":1480.1} +{"session_id":"sess-0536ed93bb89","input_length":267,"output_length":85,"hash_ids":[724072],"delay":45067.3} +{"session_id":"sess-0536ed93bb89","input_length":722,"output_length":84,"hash_ids":[724073,724074],"delay":224.4} +{"session_id":"sess-0536ed93bb89","input_length":1430,"output_length":286,"hash_ids":[724075,724076,724077],"delay":3288.5} +{"session_id":"sess-0536ed93bb89","input_length":1710,"output_length":425,"hash_ids":[724078,724079,724080,724081],"delay":3089.2} +{"session_id":"sess-0536ed93bb89","input_length":1253,"output_length":162,"hash_ids":[724082,724083,724084],"delay":701.1} +{"session_id":"sess-0536ed93bb89","input_length":1239,"output_length":1235,"hash_ids":[724085,724086,724087],"delay":651.5} +{"session_id":"sess-0536ed93bb89","input_length":2542,"output_length":291,"hash_ids":[724088,724089,724090,724091,724092],"delay":911.0} +{"session_id":"sess-0536ed93bb89","input_length":1892,"output_length":495,"hash_ids":[724093,724094,724095,724096],"delay":266.9} +{"session_id":"sess-0536ed93bb89","input_length":565,"output_length":212,"hash_ids":[724097,724098],"delay":203.0} +{"session_id":"sess-0536ed93bb89","input_length":1897,"output_length":195,"hash_ids":[724099,724100,724101,724102],"delay":1924.5} +{"session_id":"sess-0536ed93bb89","input_length":381,"output_length":72,"hash_ids":[724103],"delay":1545.8} +{"session_id":"sess-4358c50be27d","input_length":27845,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,728032,728033,728034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4358c50be27d","input_length":840,"output_length":133,"hash_ids":[728035,728036],"delay":187.3} +{"session_id":"sess-4358c50be27d","input_length":769,"output_length":818,"hash_ids":[728037,728038],"delay":1049.5} +{"session_id":"sess-4358c50be27d","input_length":567,"output_length":192,"hash_ids":[728039,728040],"delay":7527.4} +{"session_id":"sess-4358c50be27d","input_length":133,"output_length":126,"hash_ids":[728041],"delay":20005.6} +{"session_id":"sess-4358c50be27d","input_length":484,"output_length":123,"hash_ids":[728042],"delay":744.9} +{"session_id":"sess-4358c50be27d","input_length":1511,"output_length":113,"hash_ids":[728043,728044,728045],"delay":854.0} +{"session_id":"sess-4358c50be27d","input_length":377,"output_length":523,"hash_ids":[728046],"delay":2977.8} +{"session_id":"sess-4358c50be27d","input_length":291,"output_length":147,"hash_ids":[728047],"delay":40804.2} +{"session_id":"sess-4358c50be27d","input_length":383,"output_length":880,"hash_ids":[728048],"delay":3815.7} +{"session_id":"sess-4358c50be27d","input_length":1297,"output_length":283,"hash_ids":[728049,728050,728051],"delay":1469.6} +{"session_id":"sess-4358c50be27d","input_length":36,"output_length":89,"hash_ids":[728052],"delay":7254.8} +{"session_id":"sess-4358c50be27d","input_length":1387,"output_length":438,"hash_ids":[728053,728054,728055],"delay":18050.6} +{"session_id":"sess-4358c50be27d","input_length":85,"output_length":837,"hash_ids":[728056],"delay":25873.8} +{"session_id":"sess-4358c50be27d","input_length":490,"output_length":62,"hash_ids":[728057],"delay":293.7} +{"session_id":"sess-969470752e0c","input_length":26748,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,732032],"timestamp":0.0,"group_id":9} +{"session_id":"sess-969470752e0c","input_length":2054,"output_length":362,"hash_ids":[732033,732034,732035,732036,732037],"delay":1811.6} +{"session_id":"sess-969470752e0c","input_length":181,"output_length":367,"hash_ids":[732038],"delay":1594.9} +{"session_id":"sess-969470752e0c","input_length":1529,"output_length":141,"hash_ids":[732039,732040,732041],"delay":2074.7} +{"session_id":"sess-969470752e0c","input_length":392,"output_length":568,"hash_ids":[732042],"delay":23855.8} +{"session_id":"sess-969470752e0c","input_length":1476,"output_length":350,"hash_ids":[732043,732044,732045],"delay":517.9} +{"session_id":"sess-969470752e0c","input_length":949,"output_length":211,"hash_ids":[732046,732047],"delay":48517.6} +{"session_id":"sess-969470752e0c","input_length":83,"output_length":183,"hash_ids":[732048],"delay":656.2} +{"session_id":"sess-969470752e0c","input_length":1929,"output_length":377,"hash_ids":[732049,732050,732051,732052],"delay":2428.5} +{"session_id":"sess-969470752e0c","input_length":968,"output_length":86,"hash_ids":[732053,732054],"delay":346.8} +{"session_id":"sess-969470752e0c","input_length":1876,"output_length":676,"hash_ids":[732055,732056,732057,732058],"delay":1255.6} +{"session_id":"sess-969470752e0c","input_length":1415,"output_length":215,"hash_ids":[732059,732060,732061],"delay":617.8} +{"session_id":"sess-969470752e0c","input_length":595,"output_length":90,"hash_ids":[732062,732063],"delay":677.3} +{"session_id":"sess-969470752e0c","input_length":885,"output_length":263,"hash_ids":[732064,732065],"delay":988.7} +{"session_id":"sess-969470752e0c","input_length":767,"output_length":291,"hash_ids":[732066,732067],"delay":396.2} +{"session_id":"sess-969470752e0c","input_length":302,"output_length":668,"hash_ids":[732068],"delay":25986.1} +{"session_id":"sess-969470752e0c","input_length":699,"output_length":169,"hash_ids":[732069,732070],"delay":8718.3} +{"session_id":"sess-969470752e0c","input_length":2091,"output_length":156,"hash_ids":[732071,732072,732073,732074,732075],"delay":16405.2} +{"session_id":"sess-969470752e0c","input_length":797,"output_length":56,"hash_ids":[732076,732077],"delay":665.8} +{"session_id":"sess-969470752e0c","input_length":299,"output_length":788,"hash_ids":[732078],"delay":1024.9} +{"session_id":"sess-969470752e0c","input_length":1809,"output_length":310,"hash_ids":[732079,732080,732081,732082],"delay":1725.6} +{"session_id":"sess-969470752e0c","input_length":195,"output_length":95,"hash_ids":[732083],"delay":1990.0} +{"session_id":"sess-969470752e0c","input_length":2420,"output_length":44,"hash_ids":[732084,732085,732086,732087,732088],"delay":1779.9} +{"session_id":"sess-c1e6da12c1f9","input_length":29002,"output_length":116,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,736032,736033,736034,736035,736036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c1e6da12c1f9","input_length":2090,"output_length":480,"hash_ids":[736037,736038,736039,736040,736041],"delay":225.7} +{"session_id":"sess-c1e6da12c1f9","input_length":330,"output_length":33,"hash_ids":[736042],"delay":716.0} +{"session_id":"sess-5c08e8042150","input_length":27433,"output_length":152,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,740032,740033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5c08e8042150","input_length":1088,"output_length":56,"hash_ids":[740034,740035,740036],"delay":1040.3} +{"session_id":"sess-5c08e8042150","input_length":2003,"output_length":301,"hash_ids":[740037,740038,740039,740040],"delay":5913.2} +{"session_id":"sess-5c08e8042150","input_length":924,"output_length":167,"hash_ids":[740041,740042],"delay":896.7} +{"session_id":"sess-5c08e8042150","input_length":651,"output_length":369,"hash_ids":[740043,740044],"delay":2968.5} +{"session_id":"sess-5c08e8042150","input_length":1003,"output_length":720,"hash_ids":[740045,740046],"delay":2139.2} +{"session_id":"sess-5c08e8042150","input_length":2181,"output_length":201,"hash_ids":[740047,740048,740049,740050,740051],"delay":12224.9} +{"session_id":"sess-d7a6d71ebf5e","input_length":28524,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,744032,744033,744034,744035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d7a6d71ebf5e","input_length":1517,"output_length":209,"hash_ids":[744036,744037,744038],"delay":1625.2} +{"session_id":"sess-d7a6d71ebf5e","input_length":485,"output_length":157,"hash_ids":[744039],"delay":61251.5} +{"session_id":"sess-d7a6d71ebf5e","input_length":752,"output_length":304,"hash_ids":[744040,744041],"delay":7229.1} +{"session_id":"sess-d7a6d71ebf5e","input_length":2098,"output_length":348,"hash_ids":[744042,744043,744044,744045,744046],"delay":6429.9} +{"session_id":"sess-d7a6d71ebf5e","input_length":516,"output_length":154,"hash_ids":[744047,744048],"delay":26266.2} +{"session_id":"sess-d7a6d71ebf5e","input_length":238,"output_length":317,"hash_ids":[744049],"delay":327.4} +{"session_id":"sess-d7a6d71ebf5e","input_length":441,"output_length":194,"hash_ids":[744050],"delay":1751.3} +{"session_id":"sess-d7a6d71ebf5e","input_length":805,"output_length":98,"hash_ids":[744051,744052],"delay":47885.5} +{"session_id":"sess-d7a6d71ebf5e","input_length":230,"output_length":657,"hash_ids":[744053],"delay":348.2} +{"session_id":"sess-d7a6d71ebf5e","input_length":880,"output_length":885,"hash_ids":[744054,744055],"delay":36278.2} +{"session_id":"sess-d7a6d71ebf5e","input_length":2092,"output_length":493,"hash_ids":[744056,744057,744058,744059,744060],"delay":20574.1} +{"session_id":"sess-d7a6d71ebf5e","input_length":1323,"output_length":278,"hash_ids":[744061,744062,744063],"delay":968.6} +{"session_id":"sess-d7a6d71ebf5e","input_length":2165,"output_length":51,"hash_ids":[744064,744065,744066,744067,744068],"delay":1278.7} +{"session_id":"sess-d7a6d71ebf5e","input_length":968,"output_length":1134,"hash_ids":[744069,744070],"delay":2192.5} +{"session_id":"sess-d7a6d71ebf5e","input_length":460,"output_length":353,"hash_ids":[744071],"delay":1652.3} +{"session_id":"sess-d7a6d71ebf5e","input_length":847,"output_length":95,"hash_ids":[744072,744073],"delay":1895.7} +{"session_id":"sess-d7a6d71ebf5e","input_length":811,"output_length":261,"hash_ids":[744074,744075],"delay":315.1} +{"session_id":"sess-d7a6d71ebf5e","input_length":992,"output_length":176,"hash_ids":[744076,744077],"delay":506.4} +{"session_id":"sess-d7a6d71ebf5e","input_length":619,"output_length":195,"hash_ids":[744078,744079],"delay":745.8} +{"session_id":"sess-d7a6d71ebf5e","input_length":428,"output_length":98,"hash_ids":[744080],"delay":500.0} +{"session_id":"sess-d7a6d71ebf5e","input_length":91,"output_length":285,"hash_ids":[744081],"delay":1000.5} +{"session_id":"sess-d7a6d71ebf5e","input_length":2559,"output_length":263,"hash_ids":[744082,744083,744084,744085,744086],"delay":608.2} +{"session_id":"sess-d7a6d71ebf5e","input_length":642,"output_length":544,"hash_ids":[744087,744088],"delay":408.6} +{"session_id":"sess-d7a6d71ebf5e","input_length":2998,"output_length":226,"hash_ids":[744089,744090,744091,744092,744093,744094],"delay":280.7} +{"session_id":"sess-d7a6d71ebf5e","input_length":498,"output_length":611,"hash_ids":[744095],"delay":138.3} +{"session_id":"sess-122e77d51c41","input_length":26329,"output_length":444,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-122e77d51c41","input_length":980,"output_length":749,"hash_ids":[744096,744097],"delay":10899.3} +{"session_id":"sess-122e77d51c41","input_length":1136,"output_length":807,"hash_ids":[744098,744099,744100],"delay":1105.1} +{"session_id":"sess-122e77d51c41","input_length":261,"output_length":100,"hash_ids":[744101],"delay":887.1} +{"session_id":"sess-122e77d51c41","input_length":424,"output_length":173,"hash_ids":[744102],"delay":635.8} +{"session_id":"sess-122e77d51c41","input_length":2047,"output_length":255,"hash_ids":[744103,744104,744105,744106],"delay":981.8} +{"session_id":"sess-122e77d51c41","input_length":600,"output_length":33,"hash_ids":[744107,744108],"delay":1255.0} +{"session_id":"sess-122e77d51c41","input_length":2952,"output_length":461,"hash_ids":[744109,744110,744111,744112,744113,744114],"delay":1201.1} +{"session_id":"sess-122e77d51c41","input_length":826,"output_length":126,"hash_ids":[744115,744116],"delay":32853.5} +{"session_id":"sess-122e77d51c41","input_length":1247,"output_length":30,"hash_ids":[744117,744118,744119],"delay":1582.7} +{"session_id":"sess-122e77d51c41","input_length":1412,"output_length":411,"hash_ids":[744120,744121,744122],"delay":39807.7} +{"session_id":"sess-122e77d51c41","input_length":1799,"output_length":156,"hash_ids":[744123,744124,744125,744126],"delay":1465.9} +{"session_id":"sess-122e77d51c41","input_length":545,"output_length":54,"hash_ids":[744127,744128],"delay":592.8} +{"session_id":"sess-122e77d51c41","input_length":597,"output_length":150,"hash_ids":[744129,744130],"delay":1274.3} +{"session_id":"sess-122e77d51c41","input_length":2011,"output_length":280,"hash_ids":[744131,744132,744133,744134],"delay":771.9} +{"session_id":"sess-122e77d51c41","input_length":122,"output_length":540,"hash_ids":[744135],"delay":997.6} +{"session_id":"sess-122e77d51c41","input_length":767,"output_length":130,"hash_ids":[744136,744137],"delay":3382.0} +{"session_id":"sess-122e77d51c41","input_length":1485,"output_length":125,"hash_ids":[744138,744139,744140],"delay":449.6} +{"session_id":"sess-122e77d51c41","input_length":1405,"output_length":182,"hash_ids":[744141,744142,744143],"delay":532.6} +{"session_id":"sess-122e77d51c41","input_length":474,"output_length":263,"hash_ids":[744144],"delay":1115.5} +{"session_id":"sess-122e77d51c41","input_length":2828,"output_length":668,"hash_ids":[744145,744146,744147,744148,744149,744150],"delay":499.4} +{"session_id":"sess-122e77d51c41","input_length":2728,"output_length":57,"hash_ids":[744151,744152,744153,744154,744155,744156],"delay":671.6} +{"session_id":"sess-122e77d51c41","input_length":434,"output_length":121,"hash_ids":[744157],"delay":1021.2} +{"session_id":"sess-122e77d51c41","input_length":785,"output_length":54,"hash_ids":[744158,744159],"delay":1172.0} +{"session_id":"sess-122e77d51c41","input_length":1150,"output_length":158,"hash_ids":[744160,744161,744162],"delay":5609.1} +{"session_id":"sess-122e77d51c41","input_length":1875,"output_length":295,"hash_ids":[744163,744164,744165,744166],"delay":354.1} +{"session_id":"sess-aebcef9912ed","input_length":27531,"output_length":166,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,752032,752033],"timestamp":0.0,"group_id":13} +{"session_id":"sess-aebcef9912ed","input_length":343,"output_length":107,"hash_ids":[752034],"delay":12524.6} +{"session_id":"sess-aebcef9912ed","input_length":344,"output_length":120,"hash_ids":[752035],"delay":2192.1} +{"session_id":"sess-aebcef9912ed","input_length":381,"output_length":914,"hash_ids":[752036],"delay":2897.4} +{"session_id":"sess-aebcef9912ed","input_length":1493,"output_length":62,"hash_ids":[752037,752038,752039],"delay":23377.7} +{"session_id":"sess-aebcef9912ed","input_length":375,"output_length":296,"hash_ids":[752040],"delay":559.7} +{"session_id":"sess-aebcef9912ed","input_length":810,"output_length":486,"hash_ids":[752041,752042],"delay":45824.2} +{"session_id":"sess-aebcef9912ed","input_length":883,"output_length":384,"hash_ids":[752043,752044],"delay":1159.6} +{"session_id":"sess-aebcef9912ed","input_length":197,"output_length":204,"hash_ids":[752045],"delay":1324.3} +{"session_id":"sess-aebcef9912ed","input_length":851,"output_length":136,"hash_ids":[752046,752047],"delay":749.6} +{"session_id":"sess-aebcef9912ed","input_length":1599,"output_length":68,"hash_ids":[752048,752049,752050,752051],"delay":1043.2} +{"session_id":"sess-aebcef9912ed","input_length":1990,"output_length":420,"hash_ids":[752052,752053,752054,752055],"delay":586.7} +{"session_id":"sess-aebcef9912ed","input_length":1108,"output_length":108,"hash_ids":[752056,752057,752058],"delay":3147.5} +{"session_id":"sess-aebcef9912ed","input_length":1073,"output_length":93,"hash_ids":[752059,752060,752061],"delay":546.3} +{"session_id":"sess-aebcef9912ed","input_length":641,"output_length":618,"hash_ids":[752062,752063],"delay":2752.6} +{"session_id":"sess-aebcef9912ed","input_length":854,"output_length":153,"hash_ids":[752064,752065],"delay":36561.6} +{"session_id":"sess-aebcef9912ed","input_length":792,"output_length":259,"hash_ids":[752066,752067],"delay":24135.3} +{"session_id":"sess-aebcef9912ed","input_length":1760,"output_length":279,"hash_ids":[752068,752069,752070,752071],"delay":152.0} +{"session_id":"sess-aebcef9912ed","input_length":2166,"output_length":429,"hash_ids":[752072,752073,752074,752075,752076],"delay":49861.9} +{"session_id":"sess-aebcef9912ed","input_length":1536,"output_length":168,"hash_ids":[752077,752078,752079],"delay":1028.8} +{"session_id":"sess-aebcef9912ed","input_length":79,"output_length":198,"hash_ids":[752080],"delay":13088.1} +{"session_id":"sess-aebcef9912ed","input_length":1381,"output_length":211,"hash_ids":[752081,752082,752083],"delay":227.0} +{"session_id":"sess-aebcef9912ed","input_length":364,"output_length":544,"hash_ids":[752084],"delay":31990.3} +{"session_id":"sess-aebcef9912ed","input_length":1813,"output_length":59,"hash_ids":[752085,752086,752087,752088],"delay":477.8} +{"session_id":"sess-aebcef9912ed","input_length":236,"output_length":243,"hash_ids":[752089],"delay":99.3} +{"session_id":"sess-aebcef9912ed","input_length":180,"output_length":69,"hash_ids":[752090],"delay":1195.9} +{"session_id":"sess-aebcef9912ed","input_length":1798,"output_length":458,"hash_ids":[752091,752092,752093,752094],"delay":628.8} +{"session_id":"sess-aebcef9912ed","input_length":1970,"output_length":945,"hash_ids":[752095,752096,752097,752098],"delay":5156.3} +{"session_id":"sess-aebcef9912ed","input_length":627,"output_length":134,"hash_ids":[752099,752100],"delay":526.0} +{"session_id":"sess-aebcef9912ed","input_length":893,"output_length":136,"hash_ids":[752101,752102],"delay":237.9} +{"session_id":"sess-16673ece7f13","input_length":27093,"output_length":451,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,756032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-16673ece7f13","input_length":387,"output_length":188,"hash_ids":[756033],"delay":910.1} +{"session_id":"sess-16673ece7f13","input_length":2206,"output_length":962,"hash_ids":[756034,756035,756036,756037,756038],"delay":1446.1} +{"session_id":"sess-16673ece7f13","input_length":1471,"output_length":158,"hash_ids":[756039,756040,756041],"delay":285.0} +{"session_id":"sess-16673ece7f13","input_length":2627,"output_length":77,"hash_ids":[756042,756043,756044,756045,756046,756047],"delay":222.9} +{"session_id":"sess-16673ece7f13","input_length":976,"output_length":108,"hash_ids":[756048,756049],"delay":937.8} +{"session_id":"sess-16673ece7f13","input_length":346,"output_length":146,"hash_ids":[756050],"delay":3104.5} +{"session_id":"sess-1211e1399ac5","input_length":30525,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,760032,760033,760034,760035,760036,760037,760038,760039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1211e1399ac5","input_length":338,"output_length":485,"hash_ids":[760040],"delay":15993.0} +{"session_id":"sess-1211e1399ac5","input_length":1412,"output_length":212,"hash_ids":[760041,760042,760043],"delay":822.4} +{"session_id":"sess-1211e1399ac5","input_length":1925,"output_length":287,"hash_ids":[760044,760045,760046,760047],"delay":9201.5} +{"session_id":"sess-1211e1399ac5","input_length":418,"output_length":192,"hash_ids":[760048],"delay":1368.4} +{"session_id":"sess-1211e1399ac5","input_length":2479,"output_length":713,"hash_ids":[760049,760050,760051,760052,760053],"delay":17842.2} +{"session_id":"sess-1211e1399ac5","input_length":1073,"output_length":121,"hash_ids":[760054,760055,760056],"delay":10050.7} +{"session_id":"sess-1211e1399ac5","input_length":1011,"output_length":118,"hash_ids":[760057,760058],"delay":1359.8} +{"session_id":"sess-1211e1399ac5","input_length":809,"output_length":52,"hash_ids":[760059,760060],"delay":969.7} +{"session_id":"sess-1211e1399ac5","input_length":121,"output_length":377,"hash_ids":[760061],"delay":962.0} +{"session_id":"sess-1211e1399ac5","input_length":1294,"output_length":464,"hash_ids":[760062,760063,760064],"delay":2971.7} +{"session_id":"sess-1211e1399ac5","input_length":444,"output_length":161,"hash_ids":[760065],"delay":532.5} +{"session_id":"sess-1211e1399ac5","input_length":657,"output_length":262,"hash_ids":[760066,760067],"delay":695.3} +{"session_id":"sess-1211e1399ac5","input_length":1761,"output_length":535,"hash_ids":[760068,760069,760070,760071],"delay":1326.3} +{"session_id":"sess-1211e1399ac5","input_length":984,"output_length":207,"hash_ids":[760072,760073],"delay":603.4} +{"session_id":"sess-1211e1399ac5","input_length":456,"output_length":235,"hash_ids":[760074],"delay":26265.0} +{"session_id":"sess-1211e1399ac5","input_length":1514,"output_length":149,"hash_ids":[760075,760076,760077],"delay":18895.2} +{"session_id":"sess-1211e1399ac5","input_length":675,"output_length":361,"hash_ids":[760078,760079],"delay":1873.5} +{"session_id":"sess-1211e1399ac5","input_length":2633,"output_length":181,"hash_ids":[760080,760081,760082,760083,760084,760085],"delay":1386.8} +{"session_id":"sess-1211e1399ac5","input_length":2989,"output_length":169,"hash_ids":[760086,760087,760088,760089,760090,760091],"delay":38646.8} +{"session_id":"sess-1211e1399ac5","input_length":1498,"output_length":219,"hash_ids":[760092,760093,760094],"delay":20832.1} +{"session_id":"sess-1211e1399ac5","input_length":287,"output_length":330,"hash_ids":[760095],"delay":910.3} +{"session_id":"sess-1211e1399ac5","input_length":1673,"output_length":625,"hash_ids":[760096,760097,760098,760099],"delay":3442.6} +{"session_id":"sess-1211e1399ac5","input_length":1053,"output_length":79,"hash_ids":[760100,760101,760102],"delay":1438.0} +{"session_id":"sess-1211e1399ac5","input_length":237,"output_length":131,"hash_ids":[760103],"delay":544.3} +{"session_id":"sess-73742094976a","input_length":35492,"output_length":769,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,764032,764033,764034,764035,764036,764037,764038,764039,764040,764041,764042,764043,764044,764045,764046,764047,764048,764049],"timestamp":0.0,"group_id":0} +{"session_id":"sess-73742094976a","input_length":1904,"output_length":704,"hash_ids":[764050,764051,764052,764053],"delay":4632.1} +{"session_id":"sess-73742094976a","input_length":243,"output_length":39,"hash_ids":[764054],"delay":1638.0} +{"session_id":"sess-73742094976a","input_length":1726,"output_length":278,"hash_ids":[764055,764056,764057,764058],"delay":907.4} +{"session_id":"sess-73742094976a","input_length":2095,"output_length":643,"hash_ids":[764059,764060,764061,764062,764063],"delay":454.4} +{"session_id":"sess-73742094976a","input_length":542,"output_length":178,"hash_ids":[764064,764065],"delay":1133.7} +{"session_id":"sess-73742094976a","input_length":482,"output_length":113,"hash_ids":[764066],"delay":1145.5} +{"session_id":"sess-73742094976a","input_length":271,"output_length":254,"hash_ids":[764067],"delay":4252.9} +{"session_id":"sess-73742094976a","input_length":551,"output_length":465,"hash_ids":[764068,764069],"delay":4054.6} +{"session_id":"sess-73742094976a","input_length":2229,"output_length":118,"hash_ids":[764070,764071,764072,764073,764074],"delay":485.4} +{"session_id":"sess-73742094976a","input_length":441,"output_length":138,"hash_ids":[764075],"delay":2753.8} +{"session_id":"sess-f7db68c450e4","input_length":27483,"output_length":271,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,768032,768033],"timestamp":0.0,"group_id":18} +{"session_id":"sess-f7db68c450e4","input_length":738,"output_length":378,"hash_ids":[768034,768035],"delay":1775.0} +{"session_id":"sess-f7db68c450e4","input_length":329,"output_length":154,"hash_ids":[768036],"delay":2057.9} +{"session_id":"sess-f7db68c450e4","input_length":292,"output_length":358,"hash_ids":[768037],"delay":801.6} +{"session_id":"sess-f7db68c450e4","input_length":325,"output_length":360,"hash_ids":[768038],"delay":1768.7} +{"session_id":"sess-f7db68c450e4","input_length":816,"output_length":41,"hash_ids":[768039,768040],"delay":1379.3} +{"session_id":"sess-f7db68c450e4","input_length":358,"output_length":225,"hash_ids":[768041],"delay":16428.1} +{"session_id":"sess-f7db68c450e4","input_length":1272,"output_length":180,"hash_ids":[768042,768043,768044],"delay":27380.6} +{"session_id":"sess-f7db68c450e4","input_length":1507,"output_length":253,"hash_ids":[768045,768046,768047],"delay":4046.2} +{"session_id":"sess-aad33ade643e","input_length":27141,"output_length":173,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,772032,772033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-aad33ade643e","input_length":1580,"output_length":417,"hash_ids":[772034,772035,772036,772037],"delay":28992.6} +{"session_id":"sess-aad33ade643e","input_length":544,"output_length":122,"hash_ids":[772038,772039],"delay":479.8} +{"session_id":"sess-aad33ade643e","input_length":1130,"output_length":76,"hash_ids":[772040,772041,772042],"delay":2189.5} +{"session_id":"sess-aad33ade643e","input_length":502,"output_length":134,"hash_ids":[772043],"delay":2777.4} +{"session_id":"sess-aad33ade643e","input_length":1218,"output_length":154,"hash_ids":[772044,772045,772046],"delay":547.4} +{"session_id":"sess-aad33ade643e","input_length":1146,"output_length":96,"hash_ids":[772047,772048,772049],"delay":3450.0} +{"session_id":"sess-aad33ade643e","input_length":202,"output_length":249,"hash_ids":[772050],"delay":8870.7} +{"session_id":"sess-aad33ade643e","input_length":758,"output_length":1094,"hash_ids":[772051,772052],"delay":2682.6} +{"session_id":"sess-aad33ade643e","input_length":1877,"output_length":619,"hash_ids":[772053,772054,772055,772056],"delay":6274.1} +{"session_id":"sess-aad33ade643e","input_length":660,"output_length":144,"hash_ids":[772057,772058],"delay":482.2} +{"session_id":"sess-aad33ade643e","input_length":1651,"output_length":60,"hash_ids":[772059,772060,772061,772062],"delay":211.0} +{"session_id":"sess-aad33ade643e","input_length":357,"output_length":218,"hash_ids":[772063],"delay":1935.6} +{"session_id":"sess-aad33ade643e","input_length":660,"output_length":163,"hash_ids":[772064,772065],"delay":42508.1} +{"session_id":"sess-aad33ade643e","input_length":320,"output_length":804,"hash_ids":[772066],"delay":1128.8} +{"session_id":"sess-aad33ade643e","input_length":1929,"output_length":78,"hash_ids":[772067,772068,772069,772070],"delay":38633.1} +{"session_id":"sess-aad33ade643e","input_length":1465,"output_length":240,"hash_ids":[772071,772072,772073],"delay":296.7} +{"session_id":"sess-aad33ade643e","input_length":529,"output_length":94,"hash_ids":[772074,772075],"delay":3173.8} +{"session_id":"sess-aad33ade643e","input_length":163,"output_length":51,"hash_ids":[772076],"delay":773.6} +{"session_id":"sess-aad33ade643e","input_length":517,"output_length":192,"hash_ids":[772077,772078],"delay":287.2} +{"session_id":"sess-aad33ade643e","input_length":522,"output_length":450,"hash_ids":[772079,772080],"delay":14444.2} +{"session_id":"sess-aad33ade643e","input_length":410,"output_length":87,"hash_ids":[772081],"delay":617.6} +{"session_id":"sess-aad33ade643e","input_length":1621,"output_length":74,"hash_ids":[772082,772083,772084,772085],"delay":14378.5} +{"session_id":"sess-aad33ade643e","input_length":210,"output_length":259,"hash_ids":[772086],"delay":343.5} +{"session_id":"sess-aad33ade643e","input_length":331,"output_length":92,"hash_ids":[772087],"delay":16106.9} +{"session_id":"sess-aad33ade643e","input_length":1375,"output_length":148,"hash_ids":[772088,772089,772090],"delay":7332.8} +{"session_id":"sess-aad33ade643e","input_length":1151,"output_length":131,"hash_ids":[772091,772092,772093],"delay":752.4} +{"session_id":"sess-aad33ade643e","input_length":545,"output_length":143,"hash_ids":[772094,772095],"delay":757.2} +{"session_id":"sess-aad33ade643e","input_length":1219,"output_length":230,"hash_ids":[772096,772097,772098],"delay":479.6} +{"session_id":"sess-aad33ade643e","input_length":2695,"output_length":50,"hash_ids":[772099,772100,772101,772102,772103,772104],"delay":682.8} +{"session_id":"sess-aad33ade643e","input_length":452,"output_length":108,"hash_ids":[772105],"delay":7826.5} +{"session_id":"sess-aad33ade643e","input_length":342,"output_length":359,"hash_ids":[772106],"delay":947.4} +{"session_id":"sess-aad33ade643e","input_length":1167,"output_length":225,"hash_ids":[772107,772108,772109],"delay":405.4} +{"session_id":"sess-aad33ade643e","input_length":570,"output_length":259,"hash_ids":[772110,772111],"delay":2907.6} +{"session_id":"sess-347394da3861","input_length":27799,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,776032,776033,776034],"timestamp":0.0,"group_id":19} +{"session_id":"sess-347394da3861","input_length":879,"output_length":269,"hash_ids":[776035,776036],"delay":19469.4} +{"session_id":"sess-347394da3861","input_length":916,"output_length":94,"hash_ids":[776037,776038],"delay":2086.5} +{"session_id":"sess-347394da3861","input_length":331,"output_length":147,"hash_ids":[776039],"delay":843.1} +{"session_id":"sess-347394da3861","input_length":727,"output_length":356,"hash_ids":[776040,776041],"delay":1034.5} +{"session_id":"sess-347394da3861","input_length":583,"output_length":372,"hash_ids":[776042,776043],"delay":945.3} +{"session_id":"sess-347394da3861","input_length":1249,"output_length":317,"hash_ids":[776044,776045,776046],"delay":6790.3} +{"session_id":"sess-347394da3861","input_length":1070,"output_length":45,"hash_ids":[776047,776048,776049],"delay":3283.0} +{"session_id":"sess-347394da3861","input_length":174,"output_length":286,"hash_ids":[776050],"delay":1148.3} +{"session_id":"sess-347394da3861","input_length":930,"output_length":166,"hash_ids":[776051,776052],"delay":2673.9} +{"session_id":"sess-347394da3861","input_length":1427,"output_length":379,"hash_ids":[776053,776054,776055],"delay":1896.2} +{"session_id":"sess-347394da3861","input_length":1660,"output_length":347,"hash_ids":[776056,776057,776058,776059],"delay":1698.3} +{"session_id":"sess-347394da3861","input_length":1757,"output_length":160,"hash_ids":[776060,776061,776062,776063],"delay":233.9} +{"session_id":"sess-347394da3861","input_length":2051,"output_length":449,"hash_ids":[776064,776065,776066,776067,776068],"delay":1531.2} +{"session_id":"sess-347394da3861","input_length":963,"output_length":87,"hash_ids":[776069,776070],"delay":357.9} +{"session_id":"sess-347394da3861","input_length":895,"output_length":884,"hash_ids":[776071,776072],"delay":41786.9} +{"session_id":"sess-347394da3861","input_length":422,"output_length":1377,"hash_ids":[776073],"delay":853.6} +{"session_id":"sess-347394da3861","input_length":838,"output_length":969,"hash_ids":[776074,776075],"delay":1477.9} +{"session_id":"sess-347394da3861","input_length":738,"output_length":983,"hash_ids":[776076,776077],"delay":45316.1} +{"session_id":"sess-347394da3861","input_length":1466,"output_length":211,"hash_ids":[776078,776079,776080],"delay":1348.5} +{"session_id":"sess-347394da3861","input_length":97,"output_length":404,"hash_ids":[776081],"delay":294.5} +{"session_id":"sess-347394da3861","input_length":407,"output_length":180,"hash_ids":[776082],"delay":248.3} +{"session_id":"sess-347394da3861","input_length":1244,"output_length":84,"hash_ids":[776083,776084,776085],"delay":534.2} +{"session_id":"sess-347394da3861","input_length":700,"output_length":454,"hash_ids":[776086,776087],"delay":15774.1} +{"session_id":"sess-347394da3861","input_length":1369,"output_length":409,"hash_ids":[776088,776089,776090],"delay":490.1} +{"session_id":"sess-347394da3861","input_length":771,"output_length":149,"hash_ids":[776091,776092],"delay":1956.6} +{"session_id":"sess-347394da3861","input_length":267,"output_length":54,"hash_ids":[776093],"delay":265.5} +{"session_id":"sess-347394da3861","input_length":1245,"output_length":426,"hash_ids":[776094,776095,776096],"delay":461.0} +{"session_id":"sess-347394da3861","input_length":1987,"output_length":30,"hash_ids":[776097,776098,776099,776100],"delay":3599.1} +{"session_id":"sess-759a7e023e9e","input_length":26963,"output_length":193,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,780032],"timestamp":0.0,"group_id":16} +{"session_id":"sess-759a7e023e9e","input_length":215,"output_length":117,"hash_ids":[780033],"delay":820.3} +{"session_id":"sess-759a7e023e9e","input_length":349,"output_length":255,"hash_ids":[780034],"delay":775.1} +{"session_id":"sess-759a7e023e9e","input_length":2342,"output_length":248,"hash_ids":[780035,780036,780037,780038,780039],"delay":21465.8} +{"session_id":"sess-759a7e023e9e","input_length":998,"output_length":125,"hash_ids":[780040,780041],"delay":3687.3} +{"session_id":"sess-759a7e023e9e","input_length":1125,"output_length":276,"hash_ids":[780042,780043,780044],"delay":2145.1} +{"session_id":"sess-759a7e023e9e","input_length":1023,"output_length":127,"hash_ids":[780045,780046],"delay":508.7} +{"session_id":"sess-759a7e023e9e","input_length":2129,"output_length":228,"hash_ids":[780047,780048,780049,780050,780051],"delay":755.7} +{"session_id":"sess-759a7e023e9e","input_length":458,"output_length":349,"hash_ids":[780052],"delay":191.4} +{"session_id":"sess-759a7e023e9e","input_length":534,"output_length":232,"hash_ids":[780053,780054],"delay":2737.1} +{"session_id":"sess-759a7e023e9e","input_length":816,"output_length":660,"hash_ids":[780055,780056],"delay":23439.1} +{"session_id":"sess-759a7e023e9e","input_length":2409,"output_length":443,"hash_ids":[780057,780058,780059,780060,780061],"delay":25172.9} +{"session_id":"sess-759a7e023e9e","input_length":284,"output_length":60,"hash_ids":[780062],"delay":5967.7} +{"session_id":"sess-759a7e023e9e","input_length":555,"output_length":272,"hash_ids":[780063,780064],"delay":570.1} +{"session_id":"sess-759a7e023e9e","input_length":262,"output_length":434,"hash_ids":[780065],"delay":45267.8} +{"session_id":"sess-759a7e023e9e","input_length":443,"output_length":112,"hash_ids":[780066],"delay":31141.3} +{"session_id":"sess-759a7e023e9e","input_length":296,"output_length":706,"hash_ids":[780067],"delay":2407.6} +{"session_id":"sess-759a7e023e9e","input_length":759,"output_length":251,"hash_ids":[780068,780069],"delay":2333.6} +{"session_id":"sess-759a7e023e9e","input_length":1148,"output_length":360,"hash_ids":[780070,780071,780072],"delay":217.1} +{"session_id":"sess-759a7e023e9e","input_length":886,"output_length":1249,"hash_ids":[780073,780074],"delay":482.8} +{"session_id":"sess-759a7e023e9e","input_length":371,"output_length":117,"hash_ids":[780075],"delay":1331.5} +{"session_id":"sess-759a7e023e9e","input_length":2309,"output_length":83,"hash_ids":[780076,780077,780078,780079,780080],"delay":507.9} +{"session_id":"sess-759a7e023e9e","input_length":1743,"output_length":191,"hash_ids":[780081,780082,780083,780084],"delay":977.9} +{"session_id":"sess-759a7e023e9e","input_length":1030,"output_length":221,"hash_ids":[780085,780086,780087],"delay":3438.8} +{"session_id":"sess-759a7e023e9e","input_length":274,"output_length":584,"hash_ids":[780088],"delay":2999.1} +{"session_id":"sess-759a7e023e9e","input_length":1165,"output_length":281,"hash_ids":[780089,780090,780091],"delay":716.6} +{"session_id":"sess-759a7e023e9e","input_length":890,"output_length":294,"hash_ids":[780092,780093],"delay":274.6} +{"session_id":"sess-759a7e023e9e","input_length":109,"output_length":59,"hash_ids":[780094],"delay":637.9} +{"session_id":"sess-759a7e023e9e","input_length":1613,"output_length":380,"hash_ids":[780095,780096,780097,780098],"delay":7142.9} +{"session_id":"sess-759a7e023e9e","input_length":628,"output_length":113,"hash_ids":[780099,780100],"delay":326.8} +{"session_id":"sess-759a7e023e9e","input_length":210,"output_length":161,"hash_ids":[780101],"delay":2174.6} +{"session_id":"sess-759a7e023e9e","input_length":1769,"output_length":61,"hash_ids":[780102,780103,780104,780105],"delay":339.0} +{"session_id":"sess-cda49822b4e1","input_length":27839,"output_length":501,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,784032,784033,784034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-cda49822b4e1","input_length":288,"output_length":441,"hash_ids":[784035],"delay":6467.7} +{"session_id":"sess-cda49822b4e1","input_length":1222,"output_length":160,"hash_ids":[784036,784037,784038],"delay":37227.9} +{"session_id":"sess-f3d4a1c16801","input_length":32086,"output_length":71,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,788032,788033,788034,788035,788036,788037,788038,788039,788040,788041,788042],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f3d4a1c16801","input_length":2224,"output_length":35,"hash_ids":[788043,788044,788045,788046,788047],"delay":1026.7} +{"session_id":"sess-f3d4a1c16801","input_length":435,"output_length":235,"hash_ids":[788048],"delay":496.9} +{"session_id":"sess-f3d4a1c16801","input_length":1476,"output_length":105,"hash_ids":[788049,788050,788051],"delay":1409.6} +{"session_id":"sess-f3d4a1c16801","input_length":847,"output_length":94,"hash_ids":[788052,788053],"delay":9758.0} +{"session_id":"sess-f3d4a1c16801","input_length":2890,"output_length":30,"hash_ids":[788054,788055,788056,788057,788058,788059],"delay":852.0} +{"session_id":"sess-f3d4a1c16801","input_length":204,"output_length":231,"hash_ids":[788060],"delay":9924.8} +{"session_id":"sess-f3d4a1c16801","input_length":1344,"output_length":558,"hash_ids":[788061,788062,788063],"delay":1271.6} +{"session_id":"sess-f3d4a1c16801","input_length":975,"output_length":634,"hash_ids":[788064,788065],"delay":1319.3} +{"session_id":"sess-f3d4a1c16801","input_length":1272,"output_length":44,"hash_ids":[788066,788067,788068],"delay":387.2} +{"session_id":"sess-f3d4a1c16801","input_length":1162,"output_length":608,"hash_ids":[788069,788070,788071],"delay":948.5} +{"session_id":"sess-f3d4a1c16801","input_length":301,"output_length":256,"hash_ids":[788072],"delay":875.6} +{"session_id":"sess-f3d4a1c16801","input_length":2178,"output_length":245,"hash_ids":[788073,788074,788075,788076,788077],"delay":9080.6} +{"session_id":"sess-f3d4a1c16801","input_length":399,"output_length":340,"hash_ids":[788078],"delay":11397.4} +{"session_id":"sess-f3d4a1c16801","input_length":195,"output_length":191,"hash_ids":[788079],"delay":809.5} +{"session_id":"sess-f3d4a1c16801","input_length":367,"output_length":879,"hash_ids":[788080],"delay":755.1} +{"session_id":"sess-f3d4a1c16801","input_length":812,"output_length":343,"hash_ids":[788081,788082],"delay":455.3} +{"session_id":"sess-f3d4a1c16801","input_length":989,"output_length":376,"hash_ids":[788083,788084],"delay":215.0} +{"session_id":"sess-f3d4a1c16801","input_length":585,"output_length":30,"hash_ids":[788085,788086],"delay":547.1} +{"session_id":"sess-f3d4a1c16801","input_length":276,"output_length":408,"hash_ids":[788087],"delay":7107.6} +{"session_id":"sess-f3d4a1c16801","input_length":799,"output_length":151,"hash_ids":[788088,788089],"delay":152.0} +{"session_id":"sess-f3d4a1c16801","input_length":541,"output_length":318,"hash_ids":[788090,788091],"delay":8734.4} +{"session_id":"sess-f3d4a1c16801","input_length":224,"output_length":363,"hash_ids":[788092],"delay":438.6} +{"session_id":"sess-f3d4a1c16801","input_length":252,"output_length":177,"hash_ids":[788093],"delay":2007.2} +{"session_id":"sess-5e4ebb61973f","input_length":32649,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,792032,792033,792034,792035,792036,792037,792038,792039,792040,792041,792042,792043],"timestamp":0.0,"group_id":8} +{"session_id":"sess-5e4ebb61973f","input_length":549,"output_length":65,"hash_ids":[792044,792045],"delay":1105.2} +{"session_id":"sess-5e4ebb61973f","input_length":456,"output_length":74,"hash_ids":[792046],"delay":758.2} +{"session_id":"sess-5e4ebb61973f","input_length":2600,"output_length":199,"hash_ids":[792047,792048,792049,792050,792051,792052],"delay":2187.0} +{"session_id":"sess-5e4ebb61973f","input_length":524,"output_length":396,"hash_ids":[792053,792054],"delay":3075.0} +{"session_id":"sess-5e4ebb61973f","input_length":2065,"output_length":228,"hash_ids":[792055,792056,792057,792058,792059],"delay":2522.7} +{"session_id":"sess-5e4ebb61973f","input_length":494,"output_length":47,"hash_ids":[792060],"delay":6008.7} +{"session_id":"sess-5e4ebb61973f","input_length":460,"output_length":462,"hash_ids":[792061],"delay":883.5} +{"session_id":"sess-5e4ebb61973f","input_length":131,"output_length":329,"hash_ids":[792062],"delay":3183.4} +{"session_id":"sess-5e4ebb61973f","input_length":546,"output_length":323,"hash_ids":[792063,792064],"delay":2831.9} +{"session_id":"sess-5e4ebb61973f","input_length":1755,"output_length":166,"hash_ids":[792065,792066,792067,792068],"delay":2874.8} +{"session_id":"sess-5e4ebb61973f","input_length":588,"output_length":98,"hash_ids":[792069,792070],"delay":154.9} +{"session_id":"sess-5e4ebb61973f","input_length":103,"output_length":176,"hash_ids":[792071],"delay":283.3} +{"session_id":"sess-5e4ebb61973f","input_length":510,"output_length":110,"hash_ids":[792072],"delay":448.8} +{"session_id":"sess-5e4ebb61973f","input_length":765,"output_length":72,"hash_ids":[792073,792074],"delay":308.0} +{"session_id":"sess-5e4ebb61973f","input_length":1477,"output_length":77,"hash_ids":[792075,792076,792077],"delay":926.2} +{"session_id":"sess-5e4ebb61973f","input_length":1245,"output_length":106,"hash_ids":[792078,792079,792080],"delay":15337.8} +{"session_id":"sess-5e4ebb61973f","input_length":2297,"output_length":425,"hash_ids":[792081,792082,792083,792084,792085],"delay":5536.0} +{"session_id":"sess-5e4ebb61973f","input_length":2658,"output_length":172,"hash_ids":[792086,792087,792088,792089,792090,792091],"delay":14736.4} +{"session_id":"sess-5e4ebb61973f","input_length":673,"output_length":66,"hash_ids":[792092,792093],"delay":16787.9} +{"session_id":"sess-5e4ebb61973f","input_length":1470,"output_length":341,"hash_ids":[792094,792095,792096],"delay":1000.0} +{"session_id":"sess-5e4ebb61973f","input_length":1072,"output_length":170,"hash_ids":[792097,792098,792099],"delay":334.1} +{"session_id":"sess-5e4ebb61973f","input_length":1048,"output_length":940,"hash_ids":[792100,792101,792102],"delay":1536.5} +{"session_id":"sess-5e4ebb61973f","input_length":1031,"output_length":369,"hash_ids":[792103,792104,792105],"delay":873.6} +{"session_id":"sess-5e4ebb61973f","input_length":452,"output_length":238,"hash_ids":[792106],"delay":10928.8} +{"session_id":"sess-5e4ebb61973f","input_length":1055,"output_length":41,"hash_ids":[792107,792108,792109],"delay":16294.1} +{"session_id":"sess-5e4ebb61973f","input_length":952,"output_length":115,"hash_ids":[792110,792111],"delay":557.7} +{"session_id":"sess-bb52a11ae894","input_length":27293,"output_length":255,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,796032,796033],"timestamp":0.0,"group_id":3} +{"session_id":"sess-bb52a11ae894","input_length":221,"output_length":580,"hash_ids":[796034],"delay":371.9} +{"session_id":"sess-bb52a11ae894","input_length":508,"output_length":76,"hash_ids":[796035],"delay":2666.8} +{"session_id":"sess-bb52a11ae894","input_length":357,"output_length":62,"hash_ids":[796036],"delay":4068.0} +{"session_id":"sess-bb52a11ae894","input_length":1446,"output_length":1447,"hash_ids":[796037,796038,796039],"delay":523.5} +{"session_id":"sess-ee4d07e6b7b2","input_length":28679,"output_length":495,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,800032,800033,800034,800035,800036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ee4d07e6b7b2","input_length":485,"output_length":374,"hash_ids":[800037],"delay":2521.6} +{"session_id":"sess-ee4d07e6b7b2","input_length":1389,"output_length":606,"hash_ids":[800038,800039,800040],"delay":1018.6} +{"session_id":"sess-d453dda4cb79","input_length":32936,"output_length":181,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,804032,804033,804034,804035,804036,804037,804038,804039,804040,804041,804042,804043,804044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d453dda4cb79","input_length":696,"output_length":1023,"hash_ids":[804045,804046],"delay":869.8} +{"session_id":"sess-d453dda4cb79","input_length":566,"output_length":286,"hash_ids":[804047,804048],"delay":3461.4} +{"session_id":"sess-d453dda4cb79","input_length":1229,"output_length":165,"hash_ids":[804049,804050,804051],"delay":1173.0} +{"session_id":"sess-d453dda4cb79","input_length":966,"output_length":281,"hash_ids":[804052,804053],"delay":796.9} +{"session_id":"sess-d453dda4cb79","input_length":2323,"output_length":205,"hash_ids":[804054,804055,804056,804057,804058],"delay":48876.6} +{"session_id":"sess-d453dda4cb79","input_length":556,"output_length":335,"hash_ids":[804059,804060],"delay":3239.2} +{"session_id":"sess-d453dda4cb79","input_length":334,"output_length":60,"hash_ids":[804061],"delay":835.9} +{"session_id":"sess-d453dda4cb79","input_length":918,"output_length":198,"hash_ids":[804062,804063],"delay":2405.9} +{"session_id":"sess-d453dda4cb79","input_length":416,"output_length":107,"hash_ids":[804064],"delay":2602.1} +{"session_id":"sess-d453dda4cb79","input_length":227,"output_length":247,"hash_ids":[804065],"delay":1080.4} +{"session_id":"sess-d453dda4cb79","input_length":910,"output_length":378,"hash_ids":[804066,804067],"delay":591.5} +{"session_id":"sess-d453dda4cb79","input_length":1468,"output_length":312,"hash_ids":[804068,804069,804070],"delay":1501.4} +{"session_id":"sess-d453dda4cb79","input_length":1250,"output_length":345,"hash_ids":[804071,804072,804073],"delay":4593.3} +{"session_id":"sess-d453dda4cb79","input_length":294,"output_length":496,"hash_ids":[804074],"delay":2004.0} +{"session_id":"sess-d453dda4cb79","input_length":140,"output_length":180,"hash_ids":[804075],"delay":9446.3} +{"session_id":"sess-d453dda4cb79","input_length":1311,"output_length":340,"hash_ids":[804076,804077,804078],"delay":438.6} +{"session_id":"sess-d453dda4cb79","input_length":269,"output_length":171,"hash_ids":[804079],"delay":1846.3} +{"session_id":"sess-d453dda4cb79","input_length":1668,"output_length":216,"hash_ids":[804080,804081,804082,804083],"delay":995.1} +{"session_id":"sess-d453dda4cb79","input_length":365,"output_length":358,"hash_ids":[804084],"delay":1161.3} +{"session_id":"sess-d453dda4cb79","input_length":2577,"output_length":289,"hash_ids":[804085,804086,804087,804088,804089,804090],"delay":11484.7} +{"session_id":"sess-d453dda4cb79","input_length":2260,"output_length":477,"hash_ids":[804091,804092,804093,804094,804095],"delay":1330.4} +{"session_id":"sess-d453dda4cb79","input_length":1534,"output_length":354,"hash_ids":[804096,804097,804098],"delay":7142.4} +{"session_id":"sess-d453dda4cb79","input_length":2286,"output_length":301,"hash_ids":[804099,804100,804101,804102,804103],"delay":256.5} +{"session_id":"sess-8d7af1ae6a8a","input_length":32672,"output_length":266,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,808032,808033,808034,808035,808036,808037,808038,808039,808040,808041,808042,808043],"timestamp":0.0,"group_id":26} +{"session_id":"sess-8d7af1ae6a8a","input_length":26,"output_length":106,"hash_ids":[808044],"delay":10881.6} +{"session_id":"sess-8d7af1ae6a8a","input_length":1262,"output_length":104,"hash_ids":[808045,808046,808047],"delay":899.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":255,"output_length":384,"hash_ids":[808048],"delay":1018.0} +{"session_id":"sess-8d7af1ae6a8a","input_length":893,"output_length":165,"hash_ids":[808049,808050],"delay":8132.2} +{"session_id":"sess-8d7af1ae6a8a","input_length":143,"output_length":493,"hash_ids":[808051],"delay":50731.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":414,"output_length":170,"hash_ids":[808052],"delay":178.5} +{"session_id":"sess-8d7af1ae6a8a","input_length":2301,"output_length":731,"hash_ids":[808053,808054,808055,808056,808057],"delay":36034.3} +{"session_id":"sess-8d7af1ae6a8a","input_length":361,"output_length":54,"hash_ids":[808058],"delay":2775.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":532,"output_length":158,"hash_ids":[808059,808060],"delay":2762.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":1340,"output_length":835,"hash_ids":[808061,808062,808063],"delay":437.4} +{"session_id":"sess-8d7af1ae6a8a","input_length":1046,"output_length":68,"hash_ids":[808064,808065,808066],"delay":384.1} +{"session_id":"sess-8d7af1ae6a8a","input_length":447,"output_length":610,"hash_ids":[808067],"delay":293.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":2104,"output_length":60,"hash_ids":[808068,808069,808070,808071,808072],"delay":298.0} +{"session_id":"sess-8d7af1ae6a8a","input_length":634,"output_length":92,"hash_ids":[808073,808074],"delay":831.9} +{"session_id":"sess-8d7af1ae6a8a","input_length":624,"output_length":43,"hash_ids":[808075,808076],"delay":18185.5} +{"session_id":"sess-8d7af1ae6a8a","input_length":330,"output_length":788,"hash_ids":[808077],"delay":620.5} +{"session_id":"sess-8d7af1ae6a8a","input_length":1492,"output_length":96,"hash_ids":[808078,808079,808080],"delay":6398.9} +{"session_id":"sess-8d7af1ae6a8a","input_length":470,"output_length":198,"hash_ids":[808081],"delay":1591.2} +{"session_id":"sess-8d7af1ae6a8a","input_length":653,"output_length":516,"hash_ids":[808082,808083],"delay":506.9} +{"session_id":"sess-8d7af1ae6a8a","input_length":932,"output_length":283,"hash_ids":[808084,808085],"delay":253.8} +{"session_id":"sess-8d7af1ae6a8a","input_length":219,"output_length":457,"hash_ids":[808086],"delay":383.6} +{"session_id":"sess-8d7af1ae6a8a","input_length":593,"output_length":465,"hash_ids":[808087,808088],"delay":3952.7} +{"session_id":"sess-8d7af1ae6a8a","input_length":1021,"output_length":162,"hash_ids":[808089,808090],"delay":15165.2} +{"session_id":"sess-8d7af1ae6a8a","input_length":691,"output_length":50,"hash_ids":[808091,808092],"delay":373.3} +{"session_id":"sess-1ab1def0827d","input_length":26305,"output_length":616,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1ab1def0827d","input_length":761,"output_length":550,"hash_ids":[808093,808094],"delay":1869.4} +{"session_id":"sess-1ab1def0827d","input_length":759,"output_length":253,"hash_ids":[808095,808096],"delay":1632.2} +{"session_id":"sess-1ab1def0827d","input_length":1831,"output_length":234,"hash_ids":[808097,808098,808099,808100],"delay":800.8} +{"session_id":"sess-1ab1def0827d","input_length":2766,"output_length":37,"hash_ids":[808101,808102,808103,808104,808105,808106],"delay":62835.2} +{"session_id":"sess-1ab1def0827d","input_length":880,"output_length":279,"hash_ids":[808107,808108],"delay":15105.2} +{"session_id":"sess-1ab1def0827d","input_length":2367,"output_length":247,"hash_ids":[808109,808110,808111,808112,808113],"delay":800.3} +{"session_id":"sess-1ab1def0827d","input_length":60,"output_length":187,"hash_ids":[808114],"delay":43850.3} +{"session_id":"sess-1ab1def0827d","input_length":986,"output_length":81,"hash_ids":[808115,808116],"delay":48.1} +{"session_id":"sess-1ab1def0827d","input_length":1049,"output_length":72,"hash_ids":[808117,808118,808119],"delay":1242.0} +{"session_id":"sess-1ab1def0827d","input_length":1808,"output_length":1203,"hash_ids":[808120,808121,808122,808123],"delay":2257.7} +{"session_id":"sess-1ab1def0827d","input_length":2156,"output_length":70,"hash_ids":[808124,808125,808126,808127,808128],"delay":496.5} +{"session_id":"sess-1ab1def0827d","input_length":1280,"output_length":51,"hash_ids":[808129,808130,808131],"delay":842.8} +{"session_id":"sess-1ab1def0827d","input_length":2577,"output_length":342,"hash_ids":[808132,808133,808134,808135,808136,808137],"delay":2180.7} +{"session_id":"sess-1ab1def0827d","input_length":535,"output_length":527,"hash_ids":[808138,808139],"delay":4116.8} +{"session_id":"sess-1ab1def0827d","input_length":846,"output_length":709,"hash_ids":[808140,808141],"delay":724.5} +{"session_id":"sess-782cb79e6cdf","input_length":28689,"output_length":543,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,816032,816033,816034,816035,816036],"timestamp":0.0,"group_id":7} +{"session_id":"sess-782cb79e6cdf","input_length":555,"output_length":175,"hash_ids":[816037,816038],"delay":2030.1} +{"session_id":"sess-782cb79e6cdf","input_length":1141,"output_length":280,"hash_ids":[816039,816040,816041],"delay":3373.8} +{"session_id":"sess-782cb79e6cdf","input_length":606,"output_length":187,"hash_ids":[816042,816043],"delay":48923.2} +{"session_id":"sess-782cb79e6cdf","input_length":620,"output_length":722,"hash_ids":[816044,816045],"delay":1228.6} +{"session_id":"sess-782cb79e6cdf","input_length":1066,"output_length":174,"hash_ids":[816046,816047,816048],"delay":1432.1} +{"session_id":"sess-782cb79e6cdf","input_length":968,"output_length":1334,"hash_ids":[816049,816050],"delay":25142.0} +{"session_id":"sess-782cb79e6cdf","input_length":762,"output_length":357,"hash_ids":[816051,816052],"delay":290.2} +{"session_id":"sess-782cb79e6cdf","input_length":1278,"output_length":239,"hash_ids":[816053,816054,816055],"delay":21477.9} +{"session_id":"sess-782cb79e6cdf","input_length":1819,"output_length":358,"hash_ids":[816056,816057,816058,816059],"delay":908.7} +{"session_id":"sess-782cb79e6cdf","input_length":719,"output_length":482,"hash_ids":[816060,816061],"delay":2818.6} +{"session_id":"sess-782cb79e6cdf","input_length":2626,"output_length":193,"hash_ids":[816062,816063,816064,816065,816066,816067],"delay":6159.4} +{"session_id":"sess-782cb79e6cdf","input_length":1748,"output_length":107,"hash_ids":[816068,816069,816070,816071],"delay":1146.0} +{"session_id":"sess-782cb79e6cdf","input_length":1096,"output_length":683,"hash_ids":[816072,816073,816074],"delay":24635.7} +{"session_id":"sess-782cb79e6cdf","input_length":1213,"output_length":279,"hash_ids":[816075,816076,816077],"delay":1000.3} +{"session_id":"sess-782cb79e6cdf","input_length":1785,"output_length":537,"hash_ids":[816078,816079,816080,816081],"delay":189.8} +{"session_id":"sess-782cb79e6cdf","input_length":380,"output_length":562,"hash_ids":[816082],"delay":117.4} +{"session_id":"sess-782cb79e6cdf","input_length":1259,"output_length":222,"hash_ids":[816083,816084,816085],"delay":899.1} +{"session_id":"sess-782cb79e6cdf","input_length":740,"output_length":269,"hash_ids":[816086,816087],"delay":271.4} +{"session_id":"sess-782cb79e6cdf","input_length":1831,"output_length":140,"hash_ids":[816088,816089,816090,816091],"delay":3467.5} +{"session_id":"sess-782cb79e6cdf","input_length":1154,"output_length":215,"hash_ids":[816092,816093,816094],"delay":1790.3} +{"session_id":"sess-782cb79e6cdf","input_length":2159,"output_length":204,"hash_ids":[816095,816096,816097,816098,816099],"delay":214.8} +{"session_id":"sess-782cb79e6cdf","input_length":264,"output_length":63,"hash_ids":[816100],"delay":362.9} +{"session_id":"sess-782cb79e6cdf","input_length":265,"output_length":1210,"hash_ids":[816101],"delay":601.7} +{"session_id":"sess-782cb79e6cdf","input_length":991,"output_length":180,"hash_ids":[816102,816103],"delay":783.1} +{"session_id":"sess-df9557df439e","input_length":28197,"output_length":53,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,820032,820033,820034,820035],"timestamp":0.0,"group_id":28} +{"session_id":"sess-df9557df439e","input_length":693,"output_length":183,"hash_ids":[820036,820037],"delay":4245.2} +{"session_id":"sess-df9557df439e","input_length":1392,"output_length":469,"hash_ids":[820038,820039,820040],"delay":588.9} +{"session_id":"sess-df9557df439e","input_length":526,"output_length":334,"hash_ids":[820041,820042],"delay":2516.8} +{"session_id":"sess-df9557df439e","input_length":140,"output_length":278,"hash_ids":[820043],"delay":6663.2} +{"session_id":"sess-df9557df439e","input_length":887,"output_length":74,"hash_ids":[820044,820045],"delay":617.9} +{"session_id":"sess-df9557df439e","input_length":693,"output_length":30,"hash_ids":[820046,820047],"delay":293.8} +{"session_id":"sess-df9557df439e","input_length":800,"output_length":280,"hash_ids":[820048,820049],"delay":6564.8} +{"session_id":"sess-df9557df439e","input_length":2076,"output_length":930,"hash_ids":[820050,820051,820052,820053,820054],"delay":3896.9} +{"session_id":"sess-df9557df439e","input_length":1827,"output_length":158,"hash_ids":[820055,820056,820057,820058],"delay":2094.7} +{"session_id":"sess-df9557df439e","input_length":375,"output_length":81,"hash_ids":[820059],"delay":877.9} +{"session_id":"sess-df9557df439e","input_length":2193,"output_length":118,"hash_ids":[820060,820061,820062,820063,820064],"delay":1553.0} +{"session_id":"sess-df9557df439e","input_length":2835,"output_length":53,"hash_ids":[820065,820066,820067,820068,820069,820070],"delay":438.0} +{"session_id":"sess-df9557df439e","input_length":78,"output_length":92,"hash_ids":[820071],"delay":573.6} +{"session_id":"sess-df9557df439e","input_length":446,"output_length":1272,"hash_ids":[820072],"delay":1334.4} +{"session_id":"sess-8e0314d641c0","input_length":29297,"output_length":215,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,824032,824033,824034,824035,824036,824037],"timestamp":0.0,"group_id":17} +{"session_id":"sess-8e0314d641c0","input_length":492,"output_length":461,"hash_ids":[824038],"delay":2248.5} +{"session_id":"sess-8e0314d641c0","input_length":810,"output_length":331,"hash_ids":[824039,824040],"delay":1376.8} +{"session_id":"sess-8e0314d641c0","input_length":1465,"output_length":371,"hash_ids":[824041,824042,824043],"delay":5432.1} +{"session_id":"sess-8e0314d641c0","input_length":640,"output_length":64,"hash_ids":[824044,824045],"delay":2254.5} +{"session_id":"sess-8e0314d641c0","input_length":664,"output_length":1257,"hash_ids":[824046,824047],"delay":1257.8} +{"session_id":"sess-8e0314d641c0","input_length":1823,"output_length":48,"hash_ids":[824048,824049,824050,824051],"delay":1146.3} +{"session_id":"sess-8e0314d641c0","input_length":878,"output_length":65,"hash_ids":[824052,824053],"delay":12599.8} +{"session_id":"sess-8e0314d641c0","input_length":917,"output_length":494,"hash_ids":[824054,824055],"delay":2506.4} +{"session_id":"sess-8e0314d641c0","input_length":646,"output_length":143,"hash_ids":[824056,824057],"delay":380.6} +{"session_id":"sess-8e0314d641c0","input_length":1050,"output_length":51,"hash_ids":[824058,824059,824060],"delay":876.0} +{"session_id":"sess-8e0314d641c0","input_length":918,"output_length":97,"hash_ids":[824061,824062],"delay":441.5} +{"session_id":"sess-8e0314d641c0","input_length":204,"output_length":282,"hash_ids":[824063],"delay":2954.0} +{"session_id":"sess-8e0314d641c0","input_length":518,"output_length":684,"hash_ids":[824064,824065],"delay":533.2} +{"session_id":"sess-8e0314d641c0","input_length":1467,"output_length":438,"hash_ids":[824066,824067,824068],"delay":657.9} +{"session_id":"sess-8e0314d641c0","input_length":1914,"output_length":300,"hash_ids":[824069,824070,824071,824072],"delay":806.0} +{"session_id":"sess-8e0314d641c0","input_length":1428,"output_length":40,"hash_ids":[824073,824074,824075],"delay":133.5} +{"session_id":"sess-8e0314d641c0","input_length":1075,"output_length":61,"hash_ids":[824076,824077,824078],"delay":1030.5} +{"session_id":"sess-8e0314d641c0","input_length":1293,"output_length":631,"hash_ids":[824079,824080,824081],"delay":19230.2} +{"session_id":"sess-8e0314d641c0","input_length":919,"output_length":408,"hash_ids":[824082,824083],"delay":4377.9} +{"session_id":"sess-8e0314d641c0","input_length":1805,"output_length":454,"hash_ids":[824084,824085,824086,824087],"delay":1381.5} +{"session_id":"sess-8e0314d641c0","input_length":1842,"output_length":110,"hash_ids":[824088,824089,824090,824091],"delay":1095.8} +{"session_id":"sess-8e0314d641c0","input_length":203,"output_length":246,"hash_ids":[824092],"delay":534.0} +{"session_id":"sess-8e0314d641c0","input_length":1552,"output_length":522,"hash_ids":[824093,824094,824095,824096],"delay":501.4} +{"session_id":"sess-8e0314d641c0","input_length":418,"output_length":49,"hash_ids":[824097],"delay":6713.7} +{"session_id":"sess-8e0314d641c0","input_length":886,"output_length":225,"hash_ids":[824098,824099],"delay":524.6} +{"session_id":"sess-8e0314d641c0","input_length":895,"output_length":73,"hash_ids":[824100,824101],"delay":1055.3} +{"session_id":"sess-8e0314d641c0","input_length":424,"output_length":525,"hash_ids":[824102],"delay":1663.0} +{"session_id":"sess-b2d482658723","input_length":29826,"output_length":219,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,828032,828033,828034,828035,828036,828037,828038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b2d482658723","input_length":1602,"output_length":93,"hash_ids":[828039,828040,828041,828042],"delay":1381.1} +{"session_id":"sess-b2d482658723","input_length":2575,"output_length":560,"hash_ids":[828043,828044,828045,828046,828047,828048],"delay":7737.2} +{"session_id":"sess-b2d482658723","input_length":1128,"output_length":174,"hash_ids":[828049,828050,828051],"delay":43707.6} +{"session_id":"sess-b2d482658723","input_length":278,"output_length":138,"hash_ids":[828052],"delay":26609.5} +{"session_id":"sess-b2d482658723","input_length":820,"output_length":361,"hash_ids":[828053,828054],"delay":338.9} +{"session_id":"sess-b2d482658723","input_length":579,"output_length":411,"hash_ids":[828055,828056],"delay":39623.3} +{"session_id":"sess-b2d482658723","input_length":304,"output_length":436,"hash_ids":[828057],"delay":689.4} +{"session_id":"sess-b2d482658723","input_length":2396,"output_length":174,"hash_ids":[828058,828059,828060,828061,828062],"delay":3970.2} +{"session_id":"sess-b2d482658723","input_length":365,"output_length":761,"hash_ids":[828063],"delay":24373.3} +{"session_id":"sess-b2d482658723","input_length":843,"output_length":185,"hash_ids":[828064,828065],"delay":9903.7} +{"session_id":"sess-b2d482658723","input_length":502,"output_length":894,"hash_ids":[828066],"delay":7094.7} +{"session_id":"sess-b2d482658723","input_length":199,"output_length":642,"hash_ids":[828067],"delay":29398.0} +{"session_id":"sess-b2d482658723","input_length":525,"output_length":188,"hash_ids":[828068,828069],"delay":16831.6} +{"session_id":"sess-b2d482658723","input_length":1257,"output_length":106,"hash_ids":[828070,828071,828072],"delay":4194.3} +{"session_id":"sess-d3dc809d0cc1","input_length":32684,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,832032,832033,832034,832035,832036,832037,832038,832039,832040,832041,832042,832043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d3dc809d0cc1","input_length":1551,"output_length":295,"hash_ids":[832044,832045,832046,832047],"delay":849.9} +{"session_id":"sess-d3dc809d0cc1","input_length":983,"output_length":204,"hash_ids":[832048,832049],"delay":45628.4} +{"session_id":"sess-d3dc809d0cc1","input_length":396,"output_length":102,"hash_ids":[832050],"delay":720.9} +{"session_id":"sess-d3dc809d0cc1","input_length":400,"output_length":239,"hash_ids":[832051],"delay":8738.5} +{"session_id":"sess-d3dc809d0cc1","input_length":1559,"output_length":304,"hash_ids":[832052,832053,832054,832055],"delay":4585.8} +{"session_id":"sess-d3dc809d0cc1","input_length":2311,"output_length":737,"hash_ids":[832056,832057,832058,832059,832060],"delay":931.8} +{"session_id":"sess-d3dc809d0cc1","input_length":74,"output_length":59,"hash_ids":[832061],"delay":41712.5} +{"session_id":"sess-d3dc809d0cc1","input_length":710,"output_length":148,"hash_ids":[832062,832063],"delay":1242.8} +{"session_id":"sess-d3dc809d0cc1","input_length":333,"output_length":160,"hash_ids":[832064],"delay":163.7} +{"session_id":"sess-d3dc809d0cc1","input_length":798,"output_length":166,"hash_ids":[832065,832066],"delay":691.8} +{"session_id":"sess-d3dc809d0cc1","input_length":227,"output_length":291,"hash_ids":[832067],"delay":1352.7} +{"session_id":"sess-d3dc809d0cc1","input_length":1698,"output_length":700,"hash_ids":[832068,832069,832070,832071],"delay":2229.3} +{"session_id":"sess-d3dc809d0cc1","input_length":541,"output_length":183,"hash_ids":[832072,832073],"delay":749.9} +{"session_id":"sess-d3dc809d0cc1","input_length":1351,"output_length":95,"hash_ids":[832074,832075,832076],"delay":28655.0} +{"session_id":"sess-d3dc809d0cc1","input_length":743,"output_length":320,"hash_ids":[832077,832078],"delay":493.7} +{"session_id":"sess-d3dc809d0cc1","input_length":1184,"output_length":283,"hash_ids":[832079,832080,832081],"delay":3897.6} +{"session_id":"sess-d3dc809d0cc1","input_length":424,"output_length":406,"hash_ids":[832082],"delay":1032.3} +{"session_id":"sess-d3dc809d0cc1","input_length":446,"output_length":106,"hash_ids":[832083],"delay":1003.1} +{"session_id":"sess-d3dc809d0cc1","input_length":536,"output_length":691,"hash_ids":[832084,832085],"delay":576.5} +{"session_id":"sess-d3dc809d0cc1","input_length":363,"output_length":269,"hash_ids":[832086],"delay":5622.3} +{"session_id":"sess-d3dc809d0cc1","input_length":1524,"output_length":524,"hash_ids":[832087,832088,832089],"delay":690.3} +{"session_id":"sess-696867905286","input_length":27072,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,836032],"timestamp":0.0,"group_id":4} +{"session_id":"sess-696867905286","input_length":1328,"output_length":532,"hash_ids":[836033,836034,836035],"delay":4387.7} +{"session_id":"sess-696867905286","input_length":565,"output_length":180,"hash_ids":[836036,836037],"delay":34081.7} +{"session_id":"sess-696867905286","input_length":1368,"output_length":181,"hash_ids":[836038,836039,836040],"delay":8656.7} +{"session_id":"sess-696867905286","input_length":1117,"output_length":50,"hash_ids":[836041,836042,836043],"delay":1119.4} +{"session_id":"sess-696867905286","input_length":915,"output_length":439,"hash_ids":[836044,836045],"delay":20417.7} +{"session_id":"sess-696867905286","input_length":810,"output_length":33,"hash_ids":[836046,836047],"delay":3301.9} +{"session_id":"sess-696867905286","input_length":319,"output_length":277,"hash_ids":[836048],"delay":1295.9} +{"session_id":"sess-696867905286","input_length":220,"output_length":63,"hash_ids":[836049],"delay":7778.9} +{"session_id":"sess-696867905286","input_length":2663,"output_length":360,"hash_ids":[836050,836051,836052,836053,836054,836055],"delay":21483.5} +{"session_id":"sess-696867905286","input_length":705,"output_length":82,"hash_ids":[836056,836057],"delay":328.2} +{"session_id":"sess-696867905286","input_length":2211,"output_length":191,"hash_ids":[836058,836059,836060,836061,836062],"delay":28588.9} +{"session_id":"sess-696867905286","input_length":435,"output_length":322,"hash_ids":[836063],"delay":4824.4} +{"session_id":"sess-696867905286","input_length":933,"output_length":159,"hash_ids":[836064,836065],"delay":227.2} +{"session_id":"sess-696867905286","input_length":313,"output_length":394,"hash_ids":[836066],"delay":10352.6} +{"session_id":"sess-696867905286","input_length":2096,"output_length":66,"hash_ids":[836067,836068,836069,836070,836071],"delay":18073.8} +{"session_id":"sess-696867905286","input_length":1144,"output_length":130,"hash_ids":[836072,836073,836074],"delay":619.4} +{"session_id":"sess-696867905286","input_length":1709,"output_length":164,"hash_ids":[836075,836076,836077,836078],"delay":395.1} +{"session_id":"sess-696867905286","input_length":683,"output_length":188,"hash_ids":[836079,836080],"delay":2128.9} +{"session_id":"sess-696867905286","input_length":423,"output_length":647,"hash_ids":[836081],"delay":1727.9} +{"session_id":"sess-ace027099b4a","input_length":27483,"output_length":80,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,840032,840033],"timestamp":0.0,"group_id":12} +{"session_id":"sess-ace027099b4a","input_length":835,"output_length":77,"hash_ids":[840034,840035],"delay":342.8} +{"session_id":"sess-ace027099b4a","input_length":1528,"output_length":53,"hash_ids":[840036,840037,840038],"delay":1459.5} +{"session_id":"sess-ace027099b4a","input_length":1144,"output_length":104,"hash_ids":[840039,840040,840041],"delay":5951.3} +{"session_id":"sess-ace027099b4a","input_length":258,"output_length":307,"hash_ids":[840042],"delay":747.6} +{"session_id":"sess-ace027099b4a","input_length":2736,"output_length":201,"hash_ids":[840043,840044,840045,840046,840047,840048],"delay":1788.7} +{"session_id":"sess-ace027099b4a","input_length":764,"output_length":74,"hash_ids":[840049,840050],"delay":614.3} +{"session_id":"sess-ace027099b4a","input_length":556,"output_length":311,"hash_ids":[840051,840052],"delay":519.3} +{"session_id":"sess-ace027099b4a","input_length":558,"output_length":294,"hash_ids":[840053,840054],"delay":527.2} +{"session_id":"sess-ace027099b4a","input_length":1899,"output_length":127,"hash_ids":[840055,840056,840057,840058],"delay":1304.4} +{"session_id":"sess-ace027099b4a","input_length":1242,"output_length":59,"hash_ids":[840059,840060,840061],"delay":1312.6} +{"session_id":"sess-ace027099b4a","input_length":1009,"output_length":502,"hash_ids":[840062,840063],"delay":4338.5} +{"session_id":"sess-c43706fa4351","input_length":33527,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,844032,844033,844034,844035,844036,844037,844038,844039,844040,844041,844042,844043,844044,844045],"timestamp":0.0,"group_id":34} +{"session_id":"sess-c43706fa4351","input_length":344,"output_length":160,"hash_ids":[844046],"delay":567.0} +{"session_id":"sess-c43706fa4351","input_length":596,"output_length":41,"hash_ids":[844047,844048],"delay":569.1} +{"session_id":"sess-c43706fa4351","input_length":637,"output_length":30,"hash_ids":[844049,844050],"delay":9357.9} +{"session_id":"sess-c43706fa4351","input_length":703,"output_length":1022,"hash_ids":[844051,844052],"delay":12496.6} +{"session_id":"sess-c43706fa4351","input_length":2103,"output_length":327,"hash_ids":[844053,844054,844055,844056,844057],"delay":582.1} +{"session_id":"sess-c43706fa4351","input_length":1042,"output_length":159,"hash_ids":[844058,844059,844060],"delay":4474.2} +{"session_id":"sess-c43706fa4351","input_length":694,"output_length":242,"hash_ids":[844061,844062],"delay":17408.3} +{"session_id":"sess-c43706fa4351","input_length":656,"output_length":497,"hash_ids":[844063,844064],"delay":620.6} +{"session_id":"sess-c43706fa4351","input_length":896,"output_length":175,"hash_ids":[844065,844066],"delay":3526.7} +{"session_id":"sess-c43706fa4351","input_length":1287,"output_length":439,"hash_ids":[844067,844068,844069],"delay":1871.2} +{"session_id":"sess-c43706fa4351","input_length":735,"output_length":297,"hash_ids":[844070,844071],"delay":526.5} +{"session_id":"sess-c43706fa4351","input_length":478,"output_length":590,"hash_ids":[844072],"delay":2443.1} +{"session_id":"sess-c43706fa4351","input_length":795,"output_length":80,"hash_ids":[844073,844074],"delay":319.0} +{"session_id":"sess-c43706fa4351","input_length":184,"output_length":302,"hash_ids":[844075],"delay":12182.9} +{"session_id":"sess-c43706fa4351","input_length":261,"output_length":65,"hash_ids":[844076],"delay":1194.8} +{"session_id":"sess-c43706fa4351","input_length":358,"output_length":230,"hash_ids":[844077],"delay":45292.5} +{"session_id":"sess-c43706fa4351","input_length":2753,"output_length":997,"hash_ids":[844078,844079,844080,844081,844082,844083],"delay":1839.3} +{"session_id":"sess-c43706fa4351","input_length":226,"output_length":221,"hash_ids":[844084],"delay":725.9} +{"session_id":"sess-c43706fa4351","input_length":823,"output_length":490,"hash_ids":[844085,844086],"delay":2075.6} +{"session_id":"sess-c43706fa4351","input_length":168,"output_length":30,"hash_ids":[844087],"delay":808.6} +{"session_id":"sess-c43706fa4351","input_length":2811,"output_length":1128,"hash_ids":[844088,844089,844090,844091,844092,844093],"delay":5173.2} +{"session_id":"sess-c43706fa4351","input_length":2608,"output_length":226,"hash_ids":[844094,844095,844096,844097,844098,844099],"delay":7343.2} +{"session_id":"sess-c43706fa4351","input_length":351,"output_length":88,"hash_ids":[844100],"delay":4597.5} +{"session_id":"sess-c43706fa4351","input_length":299,"output_length":235,"hash_ids":[844101],"delay":135.3} +{"session_id":"sess-c43706fa4351","input_length":463,"output_length":157,"hash_ids":[844102],"delay":97.2} +{"session_id":"sess-c43706fa4351","input_length":660,"output_length":159,"hash_ids":[844103,844104],"delay":1574.9} +{"session_id":"sess-c43706fa4351","input_length":375,"output_length":191,"hash_ids":[844105],"delay":86.5} +{"session_id":"sess-53d9e3292710","input_length":27093,"output_length":501,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,848032],"timestamp":0.0,"group_id":4} +{"session_id":"sess-53d9e3292710","input_length":2580,"output_length":550,"hash_ids":[848033,848034,848035,848036,848037,848038],"delay":1921.4} +{"session_id":"sess-53d9e3292710","input_length":2229,"output_length":1028,"hash_ids":[848039,848040,848041,848042,848043],"delay":720.9} +{"session_id":"sess-53d9e3292710","input_length":2086,"output_length":127,"hash_ids":[848044,848045,848046,848047,848048],"delay":3220.0} +{"session_id":"sess-53d9e3292710","input_length":722,"output_length":132,"hash_ids":[848049,848050],"delay":19258.7} +{"session_id":"sess-53d9e3292710","input_length":1674,"output_length":189,"hash_ids":[848051,848052,848053,848054],"delay":1974.0} +{"session_id":"sess-53d9e3292710","input_length":524,"output_length":302,"hash_ids":[848055,848056],"delay":13970.2} +{"session_id":"sess-53d9e3292710","input_length":1686,"output_length":73,"hash_ids":[848057,848058,848059,848060],"delay":1207.0} +{"session_id":"sess-53d9e3292710","input_length":823,"output_length":75,"hash_ids":[848061,848062],"delay":718.2} +{"session_id":"sess-53d9e3292710","input_length":216,"output_length":296,"hash_ids":[848063],"delay":473.3} +{"session_id":"sess-d394997a47fe","input_length":26228,"output_length":333,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d394997a47fe","input_length":2412,"output_length":198,"hash_ids":[848064,848065,848066,848067,848068],"delay":5978.3} +{"session_id":"sess-d394997a47fe","input_length":460,"output_length":265,"hash_ids":[848069],"delay":1073.0} +{"session_id":"sess-ecf9fb16fb78","input_length":27078,"output_length":83,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,856032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-720ad58117e3","input_length":26877,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,860032],"timestamp":0.0,"group_id":26} +{"session_id":"sess-720ad58117e3","input_length":1076,"output_length":271,"hash_ids":[860033,860034,860035],"delay":3150.7} +{"session_id":"sess-720ad58117e3","input_length":2776,"output_length":684,"hash_ids":[860036,860037,860038,860039,860040,860041],"delay":909.5} +{"session_id":"sess-720ad58117e3","input_length":973,"output_length":163,"hash_ids":[860042,860043],"delay":364.8} +{"session_id":"sess-720ad58117e3","input_length":230,"output_length":38,"hash_ids":[860044],"delay":41492.9} +{"session_id":"sess-720ad58117e3","input_length":721,"output_length":676,"hash_ids":[860045,860046],"delay":1386.1} +{"session_id":"sess-720ad58117e3","input_length":1865,"output_length":1007,"hash_ids":[860047,860048,860049,860050],"delay":9450.6} +{"session_id":"sess-720ad58117e3","input_length":1515,"output_length":326,"hash_ids":[860051,860052,860053],"delay":378.2} +{"session_id":"sess-720ad58117e3","input_length":1820,"output_length":1309,"hash_ids":[860054,860055,860056,860057],"delay":3248.8} +{"session_id":"sess-720ad58117e3","input_length":297,"output_length":192,"hash_ids":[860058],"delay":1220.5} +{"session_id":"sess-720ad58117e3","input_length":1010,"output_length":787,"hash_ids":[860059,860060],"delay":1187.3} +{"session_id":"sess-720ad58117e3","input_length":86,"output_length":382,"hash_ids":[860061],"delay":13290.8} +{"session_id":"sess-720ad58117e3","input_length":131,"output_length":143,"hash_ids":[860062],"delay":10864.6} +{"session_id":"sess-720ad58117e3","input_length":1304,"output_length":70,"hash_ids":[860063,860064,860065],"delay":28865.4} +{"session_id":"sess-720ad58117e3","input_length":360,"output_length":219,"hash_ids":[860066],"delay":5567.4} +{"session_id":"sess-720ad58117e3","input_length":2512,"output_length":115,"hash_ids":[860067,860068,860069,860070,860071],"delay":249.8} +{"session_id":"sess-720ad58117e3","input_length":1410,"output_length":262,"hash_ids":[860072,860073,860074],"delay":26338.4} +{"session_id":"sess-720ad58117e3","input_length":464,"output_length":249,"hash_ids":[860075],"delay":6004.4} +{"session_id":"sess-720ad58117e3","input_length":2032,"output_length":168,"hash_ids":[860076,860077,860078,860079],"delay":197.0} +{"session_id":"sess-720ad58117e3","input_length":1089,"output_length":69,"hash_ids":[860080,860081,860082],"delay":609.3} +{"session_id":"sess-720ad58117e3","input_length":1782,"output_length":110,"hash_ids":[860083,860084,860085,860086],"delay":624.8} +{"session_id":"sess-720ad58117e3","input_length":628,"output_length":72,"hash_ids":[860087,860088],"delay":288.3} +{"session_id":"sess-720ad58117e3","input_length":280,"output_length":328,"hash_ids":[860089],"delay":29082.3} +{"session_id":"sess-720ad58117e3","input_length":1136,"output_length":56,"hash_ids":[860090,860091,860092],"delay":427.0} +{"session_id":"sess-720ad58117e3","input_length":1299,"output_length":133,"hash_ids":[860093,860094,860095],"delay":2327.0} +{"session_id":"sess-720ad58117e3","input_length":711,"output_length":613,"hash_ids":[860096,860097],"delay":9194.6} +{"session_id":"sess-720ad58117e3","input_length":973,"output_length":246,"hash_ids":[860098,860099],"delay":1361.9} +{"session_id":"sess-ce1d8e1c64ab","input_length":32195,"output_length":125,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,864032,864033,864034,864035,864036,864037,864038,864039,864040,864041,864042],"timestamp":0.0,"group_id":24} +{"session_id":"sess-87d2f364a92d","input_length":27217,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,868032,868033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-87d2f364a92d","input_length":1869,"output_length":165,"hash_ids":[868034,868035,868036,868037],"delay":2443.1} +{"session_id":"sess-87d2f364a92d","input_length":631,"output_length":656,"hash_ids":[868038,868039],"delay":969.1} +{"session_id":"sess-87d2f364a92d","input_length":655,"output_length":398,"hash_ids":[868040,868041],"delay":8486.0} +{"session_id":"sess-87d2f364a92d","input_length":746,"output_length":454,"hash_ids":[868042,868043],"delay":180.2} +{"session_id":"sess-87d2f364a92d","input_length":524,"output_length":314,"hash_ids":[868044,868045],"delay":3902.3} +{"session_id":"sess-1bf42b0bd8fe","input_length":27653,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,872032,872033,872034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1bf42b0bd8fe","input_length":253,"output_length":229,"hash_ids":[872035],"delay":2227.2} +{"session_id":"sess-1bf42b0bd8fe","input_length":2291,"output_length":325,"hash_ids":[872036,872037,872038,872039,872040],"delay":4442.1} +{"session_id":"sess-1bf42b0bd8fe","input_length":315,"output_length":190,"hash_ids":[872041],"delay":5579.4} +{"session_id":"sess-7e076c2f85a9","input_length":27020,"output_length":153,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,876032],"timestamp":0.0,"group_id":11} +{"session_id":"sess-7e076c2f85a9","input_length":2926,"output_length":119,"hash_ids":[876033,876034,876035,876036,876037,876038],"delay":1318.4} +{"session_id":"sess-7e076c2f85a9","input_length":155,"output_length":1080,"hash_ids":[876039],"delay":493.3} +{"session_id":"sess-4fb8c3f6df97","input_length":26671,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,880032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4fb8c3f6df97","input_length":2569,"output_length":223,"hash_ids":[880033,880034,880035,880036,880037,880038],"delay":9676.4} +{"session_id":"sess-4fb8c3f6df97","input_length":717,"output_length":161,"hash_ids":[880039,880040],"delay":205.5} +{"session_id":"sess-4fb8c3f6df97","input_length":2175,"output_length":121,"hash_ids":[880041,880042,880043,880044,880045],"delay":933.2} +{"session_id":"sess-4fb8c3f6df97","input_length":962,"output_length":70,"hash_ids":[880046,880047],"delay":1354.1} +{"session_id":"sess-4fb8c3f6df97","input_length":1904,"output_length":236,"hash_ids":[880048,880049,880050,880051],"delay":187.5} +{"session_id":"sess-4fb8c3f6df97","input_length":2162,"output_length":340,"hash_ids":[880052,880053,880054,880055,880056],"delay":4423.2} +{"session_id":"sess-4fb8c3f6df97","input_length":805,"output_length":616,"hash_ids":[880057,880058],"delay":39191.7} +{"session_id":"sess-4fb8c3f6df97","input_length":2039,"output_length":112,"hash_ids":[880059,880060,880061,880062],"delay":376.5} +{"session_id":"sess-4fb8c3f6df97","input_length":672,"output_length":428,"hash_ids":[880063,880064],"delay":911.7} +{"session_id":"sess-4fb8c3f6df97","input_length":1644,"output_length":97,"hash_ids":[880065,880066,880067,880068],"delay":5677.3} +{"session_id":"sess-4fb8c3f6df97","input_length":551,"output_length":90,"hash_ids":[880069,880070],"delay":420.0} +{"session_id":"sess-4fb8c3f6df97","input_length":2915,"output_length":205,"hash_ids":[880071,880072,880073,880074,880075,880076],"delay":467.5} +{"session_id":"sess-4fb8c3f6df97","input_length":649,"output_length":48,"hash_ids":[880077,880078],"delay":8467.1} +{"session_id":"sess-4fb8c3f6df97","input_length":2590,"output_length":132,"hash_ids":[880079,880080,880081,880082,880083,880084],"delay":1214.6} +{"session_id":"sess-4fb8c3f6df97","input_length":547,"output_length":47,"hash_ids":[880085,880086],"delay":11962.9} +{"session_id":"sess-4fb8c3f6df97","input_length":375,"output_length":358,"hash_ids":[880087],"delay":1192.5} +{"session_id":"sess-4fb8c3f6df97","input_length":168,"output_length":111,"hash_ids":[880088],"delay":6542.3} +{"session_id":"sess-4fb8c3f6df97","input_length":409,"output_length":349,"hash_ids":[880089],"delay":11886.5} +{"session_id":"sess-4fb8c3f6df97","input_length":1041,"output_length":979,"hash_ids":[880090,880091,880092],"delay":686.3} +{"session_id":"sess-4fb8c3f6df97","input_length":942,"output_length":99,"hash_ids":[880093,880094],"delay":8265.8} +{"session_id":"sess-4fb8c3f6df97","input_length":2253,"output_length":418,"hash_ids":[880095,880096,880097,880098,880099],"delay":3753.8} +{"session_id":"sess-4fb8c3f6df97","input_length":1496,"output_length":49,"hash_ids":[880100,880101,880102],"delay":4269.0} +{"session_id":"sess-99b08e41006b","input_length":27565,"output_length":361,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,884032,884033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-99b08e41006b","input_length":356,"output_length":79,"hash_ids":[884034],"delay":14958.0} +{"session_id":"sess-99b08e41006b","input_length":1833,"output_length":93,"hash_ids":[884035,884036,884037,884038],"delay":1747.8} +{"session_id":"sess-99b08e41006b","input_length":1455,"output_length":131,"hash_ids":[884039,884040,884041],"delay":957.3} +{"session_id":"sess-99b08e41006b","input_length":1639,"output_length":191,"hash_ids":[884042,884043,884044,884045],"delay":16132.2} +{"session_id":"sess-99b08e41006b","input_length":1790,"output_length":284,"hash_ids":[884046,884047,884048,884049],"delay":9146.8} +{"session_id":"sess-99b08e41006b","input_length":2298,"output_length":121,"hash_ids":[884050,884051,884052,884053,884054],"delay":1553.5} +{"session_id":"sess-99b08e41006b","input_length":763,"output_length":164,"hash_ids":[884055,884056],"delay":23561.5} +{"session_id":"sess-99b08e41006b","input_length":780,"output_length":339,"hash_ids":[884057,884058],"delay":1139.4} +{"session_id":"sess-99b08e41006b","input_length":792,"output_length":134,"hash_ids":[884059,884060],"delay":13291.9} +{"session_id":"sess-99b08e41006b","input_length":2824,"output_length":752,"hash_ids":[884061,884062,884063,884064,884065,884066],"delay":27477.2} +{"session_id":"sess-99b08e41006b","input_length":538,"output_length":520,"hash_ids":[884067,884068],"delay":3899.9} +{"session_id":"sess-99b08e41006b","input_length":170,"output_length":75,"hash_ids":[884069],"delay":3858.4} +{"session_id":"sess-99b08e41006b","input_length":149,"output_length":186,"hash_ids":[884070],"delay":763.5} +{"session_id":"sess-99b08e41006b","input_length":721,"output_length":161,"hash_ids":[884071,884072],"delay":601.0} +{"session_id":"sess-99b08e41006b","input_length":175,"output_length":801,"hash_ids":[884073],"delay":732.7} +{"session_id":"sess-99b08e41006b","input_length":1386,"output_length":106,"hash_ids":[884074,884075,884076],"delay":19399.1} +{"session_id":"sess-99b08e41006b","input_length":77,"output_length":444,"hash_ids":[884077],"delay":225.5} +{"session_id":"sess-99b08e41006b","input_length":131,"output_length":154,"hash_ids":[884078],"delay":520.0} +{"session_id":"sess-99b08e41006b","input_length":808,"output_length":206,"hash_ids":[884079,884080],"delay":16908.3} +{"session_id":"sess-99b08e41006b","input_length":2817,"output_length":108,"hash_ids":[884081,884082,884083,884084,884085,884086],"delay":702.0} +{"session_id":"sess-99b08e41006b","input_length":619,"output_length":691,"hash_ids":[884087,884088],"delay":882.8} +{"session_id":"sess-99b08e41006b","input_length":1210,"output_length":284,"hash_ids":[884089,884090,884091],"delay":2227.1} +{"session_id":"sess-99b08e41006b","input_length":170,"output_length":211,"hash_ids":[884092],"delay":474.2} +{"session_id":"sess-99b08e41006b","input_length":725,"output_length":167,"hash_ids":[884093,884094],"delay":3346.7} +{"session_id":"sess-99b08e41006b","input_length":1472,"output_length":171,"hash_ids":[884095,884096,884097],"delay":762.7} +{"session_id":"sess-99b08e41006b","input_length":148,"output_length":113,"hash_ids":[884098],"delay":2675.4} +{"session_id":"sess-99b08e41006b","input_length":276,"output_length":46,"hash_ids":[884099],"delay":971.5} +{"session_id":"sess-99b08e41006b","input_length":517,"output_length":196,"hash_ids":[884100,884101],"delay":100.7} +{"session_id":"sess-add1210e062d","input_length":31750,"output_length":146,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,888032,888033,888034,888035,888036,888037,888038,888039,888040,888041,888042],"timestamp":0.0,"group_id":34} +{"session_id":"sess-add1210e062d","input_length":1484,"output_length":123,"hash_ids":[888043,888044,888045],"delay":211.1} +{"session_id":"sess-add1210e062d","input_length":2363,"output_length":573,"hash_ids":[888046,888047,888048,888049,888050],"delay":1402.8} +{"session_id":"sess-add1210e062d","input_length":501,"output_length":176,"hash_ids":[888051],"delay":31351.0} +{"session_id":"sess-add1210e062d","input_length":914,"output_length":218,"hash_ids":[888052,888053],"delay":3225.9} +{"session_id":"sess-add1210e062d","input_length":1023,"output_length":796,"hash_ids":[888054,888055],"delay":38131.7} +{"session_id":"sess-add1210e062d","input_length":1979,"output_length":78,"hash_ids":[888056,888057,888058,888059],"delay":47910.2} +{"session_id":"sess-7d9d9c73a55a","input_length":27864,"output_length":379,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,892032,892033,892034],"timestamp":0.0,"group_id":6} +{"session_id":"sess-7d9d9c73a55a","input_length":148,"output_length":139,"hash_ids":[892035],"delay":19101.3} +{"session_id":"sess-7d9d9c73a55a","input_length":130,"output_length":341,"hash_ids":[892036],"delay":3008.1} +{"session_id":"sess-8728a02a16f3","input_length":27853,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,896032,896033,896034],"timestamp":0.0,"group_id":11} +{"session_id":"sess-8728a02a16f3","input_length":1737,"output_length":233,"hash_ids":[896035,896036,896037,896038],"delay":25435.8} +{"session_id":"sess-8728a02a16f3","input_length":1290,"output_length":77,"hash_ids":[896039,896040,896041],"delay":516.0} +{"session_id":"sess-8728a02a16f3","input_length":1141,"output_length":159,"hash_ids":[896042,896043,896044],"delay":2423.8} +{"session_id":"sess-8728a02a16f3","input_length":2320,"output_length":38,"hash_ids":[896045,896046,896047,896048,896049],"delay":365.7} +{"session_id":"sess-8728a02a16f3","input_length":2101,"output_length":275,"hash_ids":[896050,896051,896052,896053,896054],"delay":10593.5} +{"session_id":"sess-8728a02a16f3","input_length":294,"output_length":634,"hash_ids":[896055],"delay":1391.6} +{"session_id":"sess-8728a02a16f3","input_length":1511,"output_length":546,"hash_ids":[896056,896057,896058],"delay":214.4} +{"session_id":"sess-8728a02a16f3","input_length":2271,"output_length":224,"hash_ids":[896059,896060,896061,896062,896063],"delay":455.9} +{"session_id":"sess-8728a02a16f3","input_length":2899,"output_length":855,"hash_ids":[896064,896065,896066,896067,896068,896069],"delay":1780.2} +{"session_id":"sess-8728a02a16f3","input_length":168,"output_length":86,"hash_ids":[896070],"delay":2348.5} +{"session_id":"sess-8728a02a16f3","input_length":2944,"output_length":77,"hash_ids":[896071,896072,896073,896074,896075,896076],"delay":22731.5} +{"session_id":"sess-8728a02a16f3","input_length":80,"output_length":112,"hash_ids":[896077],"delay":1689.9} +{"session_id":"sess-8728a02a16f3","input_length":1561,"output_length":380,"hash_ids":[896078,896079,896080,896081],"delay":1063.9} +{"session_id":"sess-8728a02a16f3","input_length":650,"output_length":142,"hash_ids":[896082,896083],"delay":224.8} +{"session_id":"sess-8728a02a16f3","input_length":1561,"output_length":265,"hash_ids":[896084,896085,896086,896087],"delay":2344.5} +{"session_id":"sess-8728a02a16f3","input_length":697,"output_length":343,"hash_ids":[896088,896089],"delay":1309.8} +{"session_id":"sess-8728a02a16f3","input_length":337,"output_length":384,"hash_ids":[896090],"delay":6808.0} +{"session_id":"sess-8728a02a16f3","input_length":865,"output_length":987,"hash_ids":[896091,896092],"delay":316.0} +{"session_id":"sess-8728a02a16f3","input_length":609,"output_length":106,"hash_ids":[896093,896094],"delay":656.0} +{"session_id":"sess-8728a02a16f3","input_length":628,"output_length":357,"hash_ids":[896095,896096],"delay":739.7} +{"session_id":"sess-8728a02a16f3","input_length":393,"output_length":316,"hash_ids":[896097],"delay":599.9} +{"session_id":"sess-8728a02a16f3","input_length":1716,"output_length":79,"hash_ids":[896098,896099,896100,896101],"delay":239.0} +{"session_id":"sess-8728a02a16f3","input_length":1753,"output_length":143,"hash_ids":[896102,896103,896104,896105],"delay":7821.0} +{"session_id":"sess-8728a02a16f3","input_length":268,"output_length":145,"hash_ids":[896106],"delay":2053.0} +{"session_id":"sess-1c49e528866c","input_length":30412,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,900032,900033,900034,900035,900036,900037,900038,900039],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1c49e528866c","input_length":701,"output_length":130,"hash_ids":[900040,900041],"delay":3965.5} +{"session_id":"sess-1c49e528866c","input_length":779,"output_length":312,"hash_ids":[900042,900043],"delay":2211.8} +{"session_id":"sess-1c49e528866c","input_length":1414,"output_length":404,"hash_ids":[900044,900045,900046],"delay":187.5} +{"session_id":"sess-1c49e528866c","input_length":95,"output_length":1213,"hash_ids":[900047],"delay":6917.4} +{"session_id":"sess-1c49e528866c","input_length":2308,"output_length":307,"hash_ids":[900048,900049,900050,900051,900052],"delay":891.2} +{"session_id":"sess-1c49e528866c","input_length":2906,"output_length":87,"hash_ids":[900053,900054,900055,900056,900057,900058],"delay":1042.1} +{"session_id":"sess-1c49e528866c","input_length":1512,"output_length":162,"hash_ids":[900059,900060,900061],"delay":4310.4} +{"session_id":"sess-1c49e528866c","input_length":2087,"output_length":143,"hash_ids":[900062,900063,900064,900065,900066],"delay":1187.6} +{"session_id":"sess-1c49e528866c","input_length":2445,"output_length":579,"hash_ids":[900067,900068,900069,900070,900071],"delay":956.2} +{"session_id":"sess-1c49e528866c","input_length":801,"output_length":201,"hash_ids":[900072,900073],"delay":4036.4} +{"session_id":"sess-1c49e528866c","input_length":740,"output_length":79,"hash_ids":[900074,900075],"delay":750.1} +{"session_id":"sess-1c49e528866c","input_length":675,"output_length":242,"hash_ids":[900076,900077],"delay":998.0} +{"session_id":"sess-1c49e528866c","input_length":93,"output_length":310,"hash_ids":[900078],"delay":37978.0} +{"session_id":"sess-1c49e528866c","input_length":482,"output_length":280,"hash_ids":[900079],"delay":108.4} +{"session_id":"sess-1c49e528866c","input_length":2000,"output_length":344,"hash_ids":[900080,900081,900082,900083],"delay":16302.4} +{"session_id":"sess-1c49e528866c","input_length":188,"output_length":1245,"hash_ids":[900084],"delay":1453.5} +{"session_id":"sess-1c49e528866c","input_length":1221,"output_length":150,"hash_ids":[900085,900086,900087],"delay":1818.8} +{"session_id":"sess-1c49e528866c","input_length":610,"output_length":283,"hash_ids":[900088,900089],"delay":22608.7} +{"session_id":"sess-1c49e528866c","input_length":424,"output_length":70,"hash_ids":[900090],"delay":381.8} +{"session_id":"sess-1c49e528866c","input_length":668,"output_length":166,"hash_ids":[900091,900092],"delay":12869.6} +{"session_id":"sess-1c49e528866c","input_length":1136,"output_length":99,"hash_ids":[900093,900094,900095],"delay":586.1} +{"session_id":"sess-1c49e528866c","input_length":339,"output_length":175,"hash_ids":[900096],"delay":612.5} +{"session_id":"sess-1c49e528866c","input_length":787,"output_length":92,"hash_ids":[900097,900098],"delay":9449.9} +{"session_id":"sess-1c49e528866c","input_length":779,"output_length":683,"hash_ids":[900099,900100],"delay":927.2} +{"session_id":"sess-b601ace8f037","input_length":27781,"output_length":508,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,904032,904033,904034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b601ace8f037","input_length":208,"output_length":101,"hash_ids":[904035],"delay":8404.8} +{"session_id":"sess-b601ace8f037","input_length":437,"output_length":483,"hash_ids":[904036],"delay":2563.8} +{"session_id":"sess-b601ace8f037","input_length":568,"output_length":161,"hash_ids":[904037,904038],"delay":1460.1} +{"session_id":"sess-b601ace8f037","input_length":502,"output_length":136,"hash_ids":[904039],"delay":751.2} +{"session_id":"sess-b601ace8f037","input_length":502,"output_length":81,"hash_ids":[904040],"delay":980.1} +{"session_id":"sess-b601ace8f037","input_length":168,"output_length":291,"hash_ids":[904041],"delay":1870.8} +{"session_id":"sess-1efb8526dce1","input_length":31452,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,908032,908033,908034,908035,908036,908037,908038,908039,908040,908041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1efb8526dce1","input_length":871,"output_length":82,"hash_ids":[908042,908043],"delay":2442.4} +{"session_id":"sess-1efb8526dce1","input_length":2398,"output_length":75,"hash_ids":[908044,908045,908046,908047,908048],"delay":2991.0} +{"session_id":"sess-1efb8526dce1","input_length":507,"output_length":176,"hash_ids":[908049],"delay":13405.5} +{"session_id":"sess-1efb8526dce1","input_length":1387,"output_length":160,"hash_ids":[908050,908051,908052],"delay":1778.3} +{"session_id":"sess-1efb8526dce1","input_length":770,"output_length":471,"hash_ids":[908053,908054],"delay":717.0} +{"session_id":"sess-1efb8526dce1","input_length":357,"output_length":434,"hash_ids":[908055],"delay":16094.1} +{"session_id":"sess-1efb8526dce1","input_length":1151,"output_length":117,"hash_ids":[908056,908057,908058],"delay":3648.2} +{"session_id":"sess-1efb8526dce1","input_length":890,"output_length":336,"hash_ids":[908059,908060],"delay":380.8} +{"session_id":"sess-1efb8526dce1","input_length":766,"output_length":115,"hash_ids":[908061,908062],"delay":884.6} +{"session_id":"sess-1efb8526dce1","input_length":2289,"output_length":99,"hash_ids":[908063,908064,908065,908066,908067],"delay":120.4} +{"session_id":"sess-1efb8526dce1","input_length":1632,"output_length":624,"hash_ids":[908068,908069,908070,908071],"delay":27945.9} +{"session_id":"sess-1efb8526dce1","input_length":947,"output_length":483,"hash_ids":[908072,908073],"delay":10405.1} +{"session_id":"sess-1efb8526dce1","input_length":294,"output_length":104,"hash_ids":[908074],"delay":3527.6} +{"session_id":"sess-1efb8526dce1","input_length":318,"output_length":175,"hash_ids":[908075],"delay":330.4} +{"session_id":"sess-1efb8526dce1","input_length":164,"output_length":103,"hash_ids":[908076],"delay":283.4} +{"session_id":"sess-1efb8526dce1","input_length":1646,"output_length":491,"hash_ids":[908077,908078,908079,908080],"delay":371.7} +{"session_id":"sess-1efb8526dce1","input_length":82,"output_length":105,"hash_ids":[908081],"delay":414.3} +{"session_id":"sess-1efb8526dce1","input_length":2601,"output_length":282,"hash_ids":[908082,908083,908084,908085,908086,908087],"delay":5443.1} +{"session_id":"sess-1efb8526dce1","input_length":2535,"output_length":77,"hash_ids":[908088,908089,908090,908091,908092],"delay":36445.1} +{"session_id":"sess-1efb8526dce1","input_length":1734,"output_length":394,"hash_ids":[908093,908094,908095,908096],"delay":1184.4} +{"session_id":"sess-1efb8526dce1","input_length":1978,"output_length":518,"hash_ids":[908097,908098,908099,908100],"delay":569.5} +{"session_id":"sess-1efb8526dce1","input_length":658,"output_length":159,"hash_ids":[908101,908102],"delay":1906.3} +{"session_id":"sess-1efb8526dce1","input_length":218,"output_length":211,"hash_ids":[908103],"delay":1242.1} +{"session_id":"sess-e5fde8469df3","input_length":29314,"output_length":269,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,912032,912033,912034,912035,912036,912037],"timestamp":0.0,"group_id":14} +{"session_id":"sess-e5fde8469df3","input_length":414,"output_length":319,"hash_ids":[912038],"delay":31310.5} +{"session_id":"sess-e5fde8469df3","input_length":1623,"output_length":69,"hash_ids":[912039,912040,912041,912042],"delay":1118.2} +{"session_id":"sess-e5fde8469df3","input_length":497,"output_length":114,"hash_ids":[912043],"delay":1916.4} +{"session_id":"sess-e5fde8469df3","input_length":303,"output_length":128,"hash_ids":[912044],"delay":9070.5} +{"session_id":"sess-e5fde8469df3","input_length":1166,"output_length":341,"hash_ids":[912045,912046,912047],"delay":429.0} +{"session_id":"sess-e5fde8469df3","input_length":662,"output_length":257,"hash_ids":[912048,912049],"delay":301.9} +{"session_id":"sess-e5fde8469df3","input_length":1547,"output_length":229,"hash_ids":[912050,912051,912052,912053],"delay":449.1} +{"session_id":"sess-e5fde8469df3","input_length":1268,"output_length":767,"hash_ids":[912054,912055,912056],"delay":991.5} +{"session_id":"sess-e5fde8469df3","input_length":1085,"output_length":267,"hash_ids":[912057,912058,912059],"delay":7310.9} +{"session_id":"sess-e5fde8469df3","input_length":1419,"output_length":50,"hash_ids":[912060,912061,912062],"delay":611.3} +{"session_id":"sess-e5fde8469df3","input_length":1676,"output_length":173,"hash_ids":[912063,912064,912065,912066],"delay":802.7} +{"session_id":"sess-e5fde8469df3","input_length":1136,"output_length":98,"hash_ids":[912067,912068,912069],"delay":499.4} +{"session_id":"sess-da4242cf1aa8","input_length":26797,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,916032],"timestamp":0.0,"group_id":19} +{"session_id":"sess-da4242cf1aa8","input_length":1321,"output_length":372,"hash_ids":[916033,916034,916035],"delay":1328.8} +{"session_id":"sess-da4242cf1aa8","input_length":495,"output_length":124,"hash_ids":[916036],"delay":886.3} +{"session_id":"sess-da4242cf1aa8","input_length":1244,"output_length":134,"hash_ids":[916037,916038,916039],"delay":356.5} +{"session_id":"sess-da4242cf1aa8","input_length":1707,"output_length":185,"hash_ids":[916040,916041,916042,916043],"delay":20122.0} +{"session_id":"sess-da4242cf1aa8","input_length":602,"output_length":66,"hash_ids":[916044,916045],"delay":11519.6} +{"session_id":"sess-da4242cf1aa8","input_length":1354,"output_length":134,"hash_ids":[916046,916047,916048],"delay":1820.2} +{"session_id":"sess-da4242cf1aa8","input_length":658,"output_length":165,"hash_ids":[916049,916050],"delay":3829.1} +{"session_id":"sess-da4242cf1aa8","input_length":2967,"output_length":202,"hash_ids":[916051,916052,916053,916054,916055,916056],"delay":15945.5} +{"session_id":"sess-da4242cf1aa8","input_length":350,"output_length":243,"hash_ids":[916057],"delay":1261.2} +{"session_id":"sess-da4242cf1aa8","input_length":663,"output_length":297,"hash_ids":[916058,916059],"delay":3623.2} +{"session_id":"sess-da4242cf1aa8","input_length":736,"output_length":431,"hash_ids":[916060,916061],"delay":578.8} +{"session_id":"sess-da4242cf1aa8","input_length":1472,"output_length":183,"hash_ids":[916062,916063,916064],"delay":16279.8} +{"session_id":"sess-da4242cf1aa8","input_length":2816,"output_length":30,"hash_ids":[916065,916066,916067,916068,916069,916070],"delay":29338.3} +{"session_id":"sess-da4242cf1aa8","input_length":647,"output_length":690,"hash_ids":[916071,916072],"delay":9986.1} +{"session_id":"sess-da4242cf1aa8","input_length":476,"output_length":79,"hash_ids":[916073],"delay":3789.0} +{"session_id":"sess-da4242cf1aa8","input_length":658,"output_length":63,"hash_ids":[916074,916075],"delay":875.3} +{"session_id":"sess-da4242cf1aa8","input_length":1391,"output_length":56,"hash_ids":[916076,916077,916078],"delay":211.6} +{"session_id":"sess-da4242cf1aa8","input_length":2863,"output_length":87,"hash_ids":[916079,916080,916081,916082,916083,916084],"delay":115.2} +{"session_id":"sess-da4242cf1aa8","input_length":1169,"output_length":113,"hash_ids":[916085,916086,916087],"delay":958.5} +{"session_id":"sess-da4242cf1aa8","input_length":1930,"output_length":186,"hash_ids":[916088,916089,916090,916091],"delay":2081.0} +{"session_id":"sess-da4242cf1aa8","input_length":1769,"output_length":388,"hash_ids":[916092,916093,916094,916095],"delay":288.7} +{"session_id":"sess-da4242cf1aa8","input_length":941,"output_length":361,"hash_ids":[916096,916097],"delay":557.0} +{"session_id":"sess-da4242cf1aa8","input_length":468,"output_length":59,"hash_ids":[916098],"delay":458.0} +{"session_id":"sess-da4242cf1aa8","input_length":246,"output_length":392,"hash_ids":[916099],"delay":444.0} +{"session_id":"sess-da4242cf1aa8","input_length":2490,"output_length":248,"hash_ids":[916100,916101,916102,916103,916104],"delay":437.8} +{"session_id":"sess-da4242cf1aa8","input_length":508,"output_length":173,"hash_ids":[916105],"delay":2164.8} +{"session_id":"sess-da4242cf1aa8","input_length":1105,"output_length":212,"hash_ids":[916106,916107,916108],"delay":470.2} +{"session_id":"sess-c4a58902c54b","input_length":26362,"output_length":67,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051],"timestamp":0.0,"group_id":20} +{"session_id":"sess-c4a58902c54b","input_length":2440,"output_length":139,"hash_ids":[916109,916110,916111,916112,916113],"delay":2015.7} +{"session_id":"sess-c4a58902c54b","input_length":965,"output_length":528,"hash_ids":[916114,916115],"delay":753.4} +{"session_id":"sess-c4a58902c54b","input_length":1331,"output_length":300,"hash_ids":[916116,916117,916118],"delay":50916.6} +{"session_id":"sess-c4a58902c54b","input_length":356,"output_length":120,"hash_ids":[916119],"delay":4815.8} +{"session_id":"sess-c4a58902c54b","input_length":591,"output_length":122,"hash_ids":[916120,916121],"delay":6803.2} +{"session_id":"sess-3c7b8df7efba","input_length":28478,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,924032,924033,924034,924035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3c7b8df7efba","input_length":1251,"output_length":257,"hash_ids":[924036,924037,924038],"delay":20427.3} +{"session_id":"sess-3c7b8df7efba","input_length":907,"output_length":477,"hash_ids":[924039,924040],"delay":26807.5} +{"session_id":"sess-3c7b8df7efba","input_length":1861,"output_length":228,"hash_ids":[924041,924042,924043,924044],"delay":1601.6} +{"session_id":"sess-3c7b8df7efba","input_length":935,"output_length":151,"hash_ids":[924045,924046],"delay":888.5} +{"session_id":"sess-3c7b8df7efba","input_length":1711,"output_length":567,"hash_ids":[924047,924048,924049,924050],"delay":2123.4} +{"session_id":"sess-3c7b8df7efba","input_length":579,"output_length":452,"hash_ids":[924051,924052],"delay":1241.2} +{"session_id":"sess-3c7b8df7efba","input_length":1786,"output_length":447,"hash_ids":[924053,924054,924055,924056],"delay":270.9} +{"session_id":"sess-3c7b8df7efba","input_length":1608,"output_length":34,"hash_ids":[924057,924058,924059,924060],"delay":12429.3} +{"session_id":"sess-3c7b8df7efba","input_length":689,"output_length":309,"hash_ids":[924061,924062],"delay":32459.0} +{"session_id":"sess-3c7b8df7efba","input_length":924,"output_length":318,"hash_ids":[924063,924064],"delay":826.1} +{"session_id":"sess-3c7b8df7efba","input_length":891,"output_length":1113,"hash_ids":[924065,924066],"delay":26972.0} +{"session_id":"sess-3c7b8df7efba","input_length":788,"output_length":193,"hash_ids":[924067,924068],"delay":2201.9} +{"session_id":"sess-3c7b8df7efba","input_length":691,"output_length":151,"hash_ids":[924069,924070],"delay":474.7} +{"session_id":"sess-3c7b8df7efba","input_length":150,"output_length":141,"hash_ids":[924071],"delay":6239.9} +{"session_id":"sess-3c7b8df7efba","input_length":524,"output_length":948,"hash_ids":[924072,924073],"delay":19706.6} +{"session_id":"sess-3c7b8df7efba","input_length":1982,"output_length":38,"hash_ids":[924074,924075,924076,924077],"delay":985.6} +{"session_id":"sess-3c7b8df7efba","input_length":391,"output_length":208,"hash_ids":[924078],"delay":254.3} +{"session_id":"sess-3c7b8df7efba","input_length":397,"output_length":1158,"hash_ids":[924079],"delay":438.9} +{"session_id":"sess-3c7b8df7efba","input_length":1230,"output_length":251,"hash_ids":[924080,924081,924082],"delay":690.2} +{"session_id":"sess-3c7b8df7efba","input_length":496,"output_length":243,"hash_ids":[924083],"delay":3022.9} +{"session_id":"sess-3c7b8df7efba","input_length":445,"output_length":65,"hash_ids":[924084],"delay":5894.9} +{"session_id":"sess-3c7b8df7efba","input_length":732,"output_length":384,"hash_ids":[924085,924086],"delay":1155.2} +{"session_id":"sess-3c7b8df7efba","input_length":812,"output_length":193,"hash_ids":[924087,924088],"delay":295.3} +{"session_id":"sess-3c7b8df7efba","input_length":449,"output_length":129,"hash_ids":[924089],"delay":532.7} +{"session_id":"sess-3c7b8df7efba","input_length":325,"output_length":250,"hash_ids":[924090],"delay":93.9} +{"session_id":"sess-3c7b8df7efba","input_length":809,"output_length":428,"hash_ids":[924091,924092],"delay":17620.0} +{"session_id":"sess-cc40102a4ce6","input_length":27620,"output_length":627,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,928032,928033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cc40102a4ce6","input_length":172,"output_length":85,"hash_ids":[928034],"delay":1667.2} +{"session_id":"sess-cc40102a4ce6","input_length":804,"output_length":69,"hash_ids":[928035,928036],"delay":500.9} +{"session_id":"sess-cc40102a4ce6","input_length":870,"output_length":124,"hash_ids":[928037,928038],"delay":347.8} +{"session_id":"sess-cc40102a4ce6","input_length":1533,"output_length":197,"hash_ids":[928039,928040,928041],"delay":25900.7} +{"session_id":"sess-cc40102a4ce6","input_length":416,"output_length":75,"hash_ids":[928042],"delay":540.1} +{"session_id":"sess-cc40102a4ce6","input_length":576,"output_length":245,"hash_ids":[928043,928044],"delay":1559.2} +{"session_id":"sess-cc40102a4ce6","input_length":714,"output_length":281,"hash_ids":[928045,928046],"delay":437.6} +{"session_id":"sess-cc40102a4ce6","input_length":2861,"output_length":229,"hash_ids":[928047,928048,928049,928050,928051,928052],"delay":2505.0} +{"session_id":"sess-cc40102a4ce6","input_length":555,"output_length":568,"hash_ids":[928053,928054],"delay":963.7} +{"session_id":"sess-cc40102a4ce6","input_length":66,"output_length":154,"hash_ids":[928055],"delay":550.1} +{"session_id":"sess-cc40102a4ce6","input_length":545,"output_length":597,"hash_ids":[928056,928057],"delay":1820.8} +{"session_id":"sess-cc40102a4ce6","input_length":1233,"output_length":1295,"hash_ids":[928058,928059,928060],"delay":4213.5} +{"session_id":"sess-cc40102a4ce6","input_length":1115,"output_length":66,"hash_ids":[928061,928062,928063],"delay":636.2} +{"session_id":"sess-cc40102a4ce6","input_length":213,"output_length":536,"hash_ids":[928064],"delay":353.7} +{"session_id":"sess-cc40102a4ce6","input_length":1635,"output_length":83,"hash_ids":[928065,928066,928067,928068],"delay":307.2} +{"session_id":"sess-cc40102a4ce6","input_length":204,"output_length":224,"hash_ids":[928069],"delay":783.5} +{"session_id":"sess-96bd88b9a9f4","input_length":29070,"output_length":262,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,932032,932033,932034,932035,932036],"timestamp":0.0,"group_id":29} +{"session_id":"sess-96bd88b9a9f4","input_length":158,"output_length":85,"hash_ids":[932037],"delay":3086.5} +{"session_id":"sess-96bd88b9a9f4","input_length":226,"output_length":358,"hash_ids":[932038],"delay":701.4} +{"session_id":"sess-96bd88b9a9f4","input_length":2465,"output_length":30,"hash_ids":[932039,932040,932041,932042,932043],"delay":9832.5} +{"session_id":"sess-96bd88b9a9f4","input_length":418,"output_length":962,"hash_ids":[932044],"delay":2017.6} +{"session_id":"sess-96bd88b9a9f4","input_length":1487,"output_length":257,"hash_ids":[932045,932046,932047],"delay":893.3} +{"session_id":"sess-e06a1ab7caef","input_length":26259,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e06a1ab7caef","input_length":2534,"output_length":538,"hash_ids":[932048,932049,932050,932051,932052],"delay":1318.8} +{"session_id":"sess-e06a1ab7caef","input_length":229,"output_length":704,"hash_ids":[932053],"delay":12309.4} +{"session_id":"sess-e06a1ab7caef","input_length":295,"output_length":143,"hash_ids":[932054],"delay":3203.1} +{"session_id":"sess-e06a1ab7caef","input_length":688,"output_length":109,"hash_ids":[932055,932056],"delay":1255.6} +{"session_id":"sess-e06a1ab7caef","input_length":2142,"output_length":521,"hash_ids":[932057,932058,932059,932060,932061],"delay":656.8} +{"session_id":"sess-e06a1ab7caef","input_length":2881,"output_length":144,"hash_ids":[932062,932063,932064,932065,932066,932067],"delay":629.5} +{"session_id":"sess-e06a1ab7caef","input_length":1449,"output_length":216,"hash_ids":[932068,932069,932070],"delay":391.2} +{"session_id":"sess-5bff457da70c","input_length":34421,"output_length":370,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,940032,940033,940034,940035,940036,940037,940038,940039,940040,940041,940042,940043,940044,940045,940046,940047],"timestamp":0.0,"group_id":6} +{"session_id":"sess-5bff457da70c","input_length":568,"output_length":47,"hash_ids":[940048,940049],"delay":4185.6} +{"session_id":"sess-5bff457da70c","input_length":334,"output_length":137,"hash_ids":[940050],"delay":1692.6} +{"session_id":"sess-5bff457da70c","input_length":2643,"output_length":56,"hash_ids":[940051,940052,940053,940054,940055,940056],"delay":6498.2} +{"session_id":"sess-5bff457da70c","input_length":1122,"output_length":215,"hash_ids":[940057,940058,940059],"delay":534.1} +{"session_id":"sess-5bff457da70c","input_length":1922,"output_length":488,"hash_ids":[940060,940061,940062,940063],"delay":7701.3} +{"session_id":"sess-5bff457da70c","input_length":340,"output_length":512,"hash_ids":[940064],"delay":721.7} +{"session_id":"sess-5bff457da70c","input_length":1395,"output_length":97,"hash_ids":[940065,940066,940067],"delay":266.5} +{"session_id":"sess-5bff457da70c","input_length":1021,"output_length":541,"hash_ids":[940068,940069],"delay":7192.1} +{"session_id":"sess-5bff457da70c","input_length":174,"output_length":864,"hash_ids":[940070],"delay":2052.2} +{"session_id":"sess-5bff457da70c","input_length":471,"output_length":306,"hash_ids":[940071],"delay":1098.0} +{"session_id":"sess-5bff457da70c","input_length":2148,"output_length":171,"hash_ids":[940072,940073,940074,940075,940076],"delay":797.4} +{"session_id":"sess-5bff457da70c","input_length":536,"output_length":249,"hash_ids":[940077,940078],"delay":14834.5} +{"session_id":"sess-5bff457da70c","input_length":1332,"output_length":1193,"hash_ids":[940079,940080,940081],"delay":18104.0} +{"session_id":"sess-5bff457da70c","input_length":1567,"output_length":151,"hash_ids":[940082,940083,940084,940085],"delay":1184.2} +{"session_id":"sess-5bff457da70c","input_length":2031,"output_length":540,"hash_ids":[940086,940087,940088,940089],"delay":727.0} +{"session_id":"sess-5bff457da70c","input_length":2115,"output_length":395,"hash_ids":[940090,940091,940092,940093,940094],"delay":525.8} +{"session_id":"sess-5bff457da70c","input_length":238,"output_length":30,"hash_ids":[940095],"delay":354.1} +{"session_id":"sess-5bff457da70c","input_length":379,"output_length":282,"hash_ids":[940096],"delay":1622.7} +{"session_id":"sess-5bff457da70c","input_length":612,"output_length":350,"hash_ids":[940097,940098],"delay":686.6} +{"session_id":"sess-a90ff14a612b","input_length":28508,"output_length":315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,944032,944033,944034,944035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-09644ba3a8dc","input_length":29917,"output_length":213,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,948032,948033,948034,948035,948036,948037,948038],"timestamp":0.0,"group_id":5} +{"session_id":"sess-09644ba3a8dc","input_length":211,"output_length":237,"hash_ids":[948039],"delay":2189.6} +{"session_id":"sess-09644ba3a8dc","input_length":935,"output_length":61,"hash_ids":[948040,948041],"delay":14686.7} +{"session_id":"sess-09644ba3a8dc","input_length":1126,"output_length":77,"hash_ids":[948042,948043,948044],"delay":26999.0} +{"session_id":"sess-09644ba3a8dc","input_length":416,"output_length":306,"hash_ids":[948045],"delay":3924.7} +{"session_id":"sess-09644ba3a8dc","input_length":1707,"output_length":146,"hash_ids":[948046,948047,948048,948049],"delay":482.2} +{"session_id":"sess-09644ba3a8dc","input_length":782,"output_length":460,"hash_ids":[948050,948051],"delay":724.4} +{"session_id":"sess-09644ba3a8dc","input_length":568,"output_length":237,"hash_ids":[948052,948053],"delay":206.4} +{"session_id":"sess-09644ba3a8dc","input_length":1006,"output_length":391,"hash_ids":[948054,948055],"delay":253.2} +{"session_id":"sess-09644ba3a8dc","input_length":401,"output_length":88,"hash_ids":[948056],"delay":2652.7} +{"session_id":"sess-09644ba3a8dc","input_length":686,"output_length":192,"hash_ids":[948057,948058],"delay":434.0} +{"session_id":"sess-09644ba3a8dc","input_length":50,"output_length":372,"hash_ids":[948059],"delay":13741.0} +{"session_id":"sess-09644ba3a8dc","input_length":1095,"output_length":553,"hash_ids":[948060,948061,948062],"delay":516.1} +{"session_id":"sess-09644ba3a8dc","input_length":1685,"output_length":354,"hash_ids":[948063,948064,948065,948066],"delay":9857.5} +{"session_id":"sess-09644ba3a8dc","input_length":1674,"output_length":52,"hash_ids":[948067,948068,948069,948070],"delay":8880.2} +{"session_id":"sess-09644ba3a8dc","input_length":2723,"output_length":52,"hash_ids":[948071,948072,948073,948074,948075,948076],"delay":3515.3} +{"session_id":"sess-09644ba3a8dc","input_length":712,"output_length":180,"hash_ids":[948077,948078],"delay":585.5} +{"session_id":"sess-09644ba3a8dc","input_length":332,"output_length":222,"hash_ids":[948079],"delay":496.3} +{"session_id":"sess-09644ba3a8dc","input_length":612,"output_length":260,"hash_ids":[948080,948081],"delay":12306.1} +{"session_id":"sess-09644ba3a8dc","input_length":1673,"output_length":171,"hash_ids":[948082,948083,948084,948085],"delay":638.0} +{"session_id":"sess-09644ba3a8dc","input_length":645,"output_length":568,"hash_ids":[948086,948087],"delay":389.8} +{"session_id":"sess-09644ba3a8dc","input_length":993,"output_length":550,"hash_ids":[948088,948089],"delay":640.8} +{"session_id":"sess-09644ba3a8dc","input_length":115,"output_length":60,"hash_ids":[948090],"delay":1724.3} +{"session_id":"sess-09644ba3a8dc","input_length":1073,"output_length":663,"hash_ids":[948091,948092,948093],"delay":1081.4} +{"session_id":"sess-09644ba3a8dc","input_length":1235,"output_length":334,"hash_ids":[948094,948095,948096],"delay":25179.0} +{"session_id":"sess-09644ba3a8dc","input_length":2049,"output_length":412,"hash_ids":[948097,948098,948099,948100,948101],"delay":394.5} +{"session_id":"sess-09644ba3a8dc","input_length":860,"output_length":452,"hash_ids":[948102,948103],"delay":428.8} +{"session_id":"sess-09644ba3a8dc","input_length":1641,"output_length":238,"hash_ids":[948104,948105,948106,948107],"delay":5719.1} +{"session_id":"sess-bcfcafb10ef0","input_length":27925,"output_length":50,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,952032,952033,952034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bcfcafb10ef0","input_length":348,"output_length":243,"hash_ids":[952035],"delay":1187.7} +{"session_id":"sess-bcfcafb10ef0","input_length":650,"output_length":30,"hash_ids":[952036,952037],"delay":1028.8} +{"session_id":"sess-bcfcafb10ef0","input_length":590,"output_length":203,"hash_ids":[952038,952039],"delay":3024.2} +{"session_id":"sess-bcfcafb10ef0","input_length":2295,"output_length":453,"hash_ids":[952040,952041,952042,952043,952044],"delay":8303.3} +{"session_id":"sess-bcfcafb10ef0","input_length":1421,"output_length":125,"hash_ids":[952045,952046,952047],"delay":3876.9} +{"session_id":"sess-bcfcafb10ef0","input_length":514,"output_length":42,"hash_ids":[952048,952049],"delay":9364.6} +{"session_id":"sess-bcfcafb10ef0","input_length":2056,"output_length":103,"hash_ids":[952050,952051,952052,952053,952054],"delay":256.0} +{"session_id":"sess-bcfcafb10ef0","input_length":868,"output_length":447,"hash_ids":[952055,952056],"delay":850.5} +{"session_id":"sess-bcfcafb10ef0","input_length":234,"output_length":323,"hash_ids":[952057],"delay":774.2} +{"session_id":"sess-bcfcafb10ef0","input_length":361,"output_length":176,"hash_ids":[952058],"delay":34588.9} +{"session_id":"sess-bcfcafb10ef0","input_length":1334,"output_length":252,"hash_ids":[952059,952060,952061],"delay":42822.6} +{"session_id":"sess-bcfcafb10ef0","input_length":2977,"output_length":370,"hash_ids":[952062,952063,952064,952065,952066,952067],"delay":2171.6} +{"session_id":"sess-bcfcafb10ef0","input_length":381,"output_length":643,"hash_ids":[952068],"delay":1269.5} +{"session_id":"sess-bcfcafb10ef0","input_length":263,"output_length":1083,"hash_ids":[952069],"delay":347.9} +{"session_id":"sess-bcfcafb10ef0","input_length":1419,"output_length":111,"hash_ids":[952070,952071,952072],"delay":1084.2} +{"session_id":"sess-fb3a45f164a2","input_length":26754,"output_length":502,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,956032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-fb3a45f164a2","input_length":1805,"output_length":189,"hash_ids":[956033,956034,956035,956036],"delay":8534.9} +{"session_id":"sess-fb3a45f164a2","input_length":741,"output_length":78,"hash_ids":[956037,956038],"delay":519.5} +{"session_id":"sess-fb3a45f164a2","input_length":482,"output_length":179,"hash_ids":[956039],"delay":745.8} +{"session_id":"sess-fb3a45f164a2","input_length":247,"output_length":474,"hash_ids":[956040],"delay":1144.2} +{"session_id":"sess-fb3a45f164a2","input_length":1321,"output_length":477,"hash_ids":[956041,956042,956043],"delay":2920.2} +{"session_id":"sess-fb3a45f164a2","input_length":2856,"output_length":394,"hash_ids":[956044,956045,956046,956047,956048,956049],"delay":28974.6} +{"session_id":"sess-fb3a45f164a2","input_length":2301,"output_length":123,"hash_ids":[956050,956051,956052,956053,956054],"delay":6769.8} +{"session_id":"sess-fb3a45f164a2","input_length":194,"output_length":223,"hash_ids":[956055],"delay":964.8} +{"session_id":"sess-fb3a45f164a2","input_length":998,"output_length":121,"hash_ids":[956056,956057],"delay":9171.9} +{"session_id":"sess-fb3a45f164a2","input_length":104,"output_length":180,"hash_ids":[956058],"delay":663.2} +{"session_id":"sess-fb3a45f164a2","input_length":2571,"output_length":224,"hash_ids":[956059,956060,956061,956062,956063,956064],"delay":6069.3} +{"session_id":"sess-fb3a45f164a2","input_length":1539,"output_length":83,"hash_ids":[956065,956066,956067,956068],"delay":4516.0} +{"session_id":"sess-fb3a45f164a2","input_length":641,"output_length":81,"hash_ids":[956069,956070],"delay":1620.0} +{"session_id":"sess-fb3a45f164a2","input_length":520,"output_length":303,"hash_ids":[956071,956072],"delay":795.6} +{"session_id":"sess-fb3a45f164a2","input_length":1673,"output_length":763,"hash_ids":[956073,956074,956075,956076],"delay":18570.3} +{"session_id":"sess-fb3a45f164a2","input_length":1294,"output_length":40,"hash_ids":[956077,956078,956079],"delay":305.9} +{"session_id":"sess-fb3a45f164a2","input_length":699,"output_length":118,"hash_ids":[956080,956081],"delay":514.9} +{"session_id":"sess-fb3a45f164a2","input_length":1654,"output_length":101,"hash_ids":[956082,956083,956084,956085],"delay":283.8} +{"session_id":"sess-44e640ea3531","input_length":28332,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,960032,960033,960034,960035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-44e640ea3531","input_length":1585,"output_length":96,"hash_ids":[960036,960037,960038,960039],"delay":862.6} +{"session_id":"sess-44e640ea3531","input_length":285,"output_length":666,"hash_ids":[960040],"delay":22482.9} +{"session_id":"sess-44e640ea3531","input_length":698,"output_length":85,"hash_ids":[960041,960042],"delay":1077.2} +{"session_id":"sess-44e640ea3531","input_length":1608,"output_length":64,"hash_ids":[960043,960044,960045,960046],"delay":18016.0} +{"session_id":"sess-44e640ea3531","input_length":121,"output_length":91,"hash_ids":[960047],"delay":1624.2} +{"session_id":"sess-44e640ea3531","input_length":1043,"output_length":95,"hash_ids":[960048,960049,960050],"delay":11548.3} +{"session_id":"sess-44e640ea3531","input_length":725,"output_length":120,"hash_ids":[960051,960052],"delay":409.1} +{"session_id":"sess-44e640ea3531","input_length":1768,"output_length":563,"hash_ids":[960053,960054,960055,960056],"delay":708.0} +{"session_id":"sess-44e640ea3531","input_length":1770,"output_length":123,"hash_ids":[960057,960058,960059,960060],"delay":728.1} +{"session_id":"sess-44e640ea3531","input_length":721,"output_length":484,"hash_ids":[960061,960062],"delay":566.9} +{"session_id":"sess-44e640ea3531","input_length":203,"output_length":855,"hash_ids":[960063],"delay":279.7} +{"session_id":"sess-44e640ea3531","input_length":625,"output_length":687,"hash_ids":[960064,960065],"delay":6491.8} +{"session_id":"sess-44e640ea3531","input_length":308,"output_length":211,"hash_ids":[960066],"delay":1883.9} +{"session_id":"sess-44e640ea3531","input_length":1718,"output_length":37,"hash_ids":[960067,960068,960069,960070],"delay":25333.6} +{"session_id":"sess-44e640ea3531","input_length":1849,"output_length":63,"hash_ids":[960071,960072,960073,960074],"delay":222.7} +{"session_id":"sess-44e640ea3531","input_length":323,"output_length":51,"hash_ids":[960075],"delay":948.8} +{"session_id":"sess-44e640ea3531","input_length":906,"output_length":248,"hash_ids":[960076,960077],"delay":363.1} +{"session_id":"sess-44e640ea3531","input_length":932,"output_length":114,"hash_ids":[960078,960079],"delay":20560.3} +{"session_id":"sess-44e640ea3531","input_length":1152,"output_length":1421,"hash_ids":[960080,960081,960082],"delay":339.6} +{"session_id":"sess-44e640ea3531","input_length":755,"output_length":136,"hash_ids":[960083,960084],"delay":1003.6} +{"session_id":"sess-44e640ea3531","input_length":1337,"output_length":318,"hash_ids":[960085,960086,960087],"delay":2204.6} +{"session_id":"sess-870bc695a648","input_length":29197,"output_length":113,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,964032,964033,964034,964035,964036,964037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-870bc695a648","input_length":1854,"output_length":805,"hash_ids":[964038,964039,964040,964041],"delay":13779.6} +{"session_id":"sess-870bc695a648","input_length":2093,"output_length":906,"hash_ids":[964042,964043,964044,964045,964046],"delay":1044.3} +{"session_id":"sess-870bc695a648","input_length":2684,"output_length":308,"hash_ids":[964047,964048,964049,964050,964051,964052],"delay":594.3} +{"session_id":"sess-855c1cbbc16b","input_length":29931,"output_length":222,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,968032,968033,968034,968035,968036,968037,968038],"timestamp":0.0,"group_id":44} +{"session_id":"sess-855c1cbbc16b","input_length":2200,"output_length":450,"hash_ids":[968039,968040,968041,968042,968043],"delay":791.6} +{"session_id":"sess-855c1cbbc16b","input_length":961,"output_length":459,"hash_ids":[968044,968045],"delay":1208.2} +{"session_id":"sess-65a2224eae6d","input_length":26745,"output_length":53,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,972032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-65a2224eae6d","input_length":2172,"output_length":172,"hash_ids":[972033,972034,972035,972036,972037],"delay":482.5} +{"session_id":"sess-65a2224eae6d","input_length":781,"output_length":853,"hash_ids":[972038,972039],"delay":604.3} +{"session_id":"sess-65a2224eae6d","input_length":183,"output_length":192,"hash_ids":[972040],"delay":44523.6} +{"session_id":"sess-65a2224eae6d","input_length":1172,"output_length":153,"hash_ids":[972041,972042,972043],"delay":3468.9} +{"session_id":"sess-65a2224eae6d","input_length":2605,"output_length":259,"hash_ids":[972044,972045,972046,972047,972048,972049],"delay":830.7} +{"session_id":"sess-65a2224eae6d","input_length":1633,"output_length":215,"hash_ids":[972050,972051,972052,972053],"delay":419.5} +{"session_id":"sess-65a2224eae6d","input_length":1265,"output_length":518,"hash_ids":[972054,972055,972056],"delay":1846.2} +{"session_id":"sess-65a2224eae6d","input_length":452,"output_length":232,"hash_ids":[972057],"delay":247.2} +{"session_id":"sess-65a2224eae6d","input_length":1761,"output_length":38,"hash_ids":[972058,972059,972060,972061],"delay":681.9} +{"session_id":"sess-65a2224eae6d","input_length":1969,"output_length":169,"hash_ids":[972062,972063,972064,972065],"delay":1886.8} +{"session_id":"sess-65a2224eae6d","input_length":707,"output_length":65,"hash_ids":[972066,972067],"delay":540.2} +{"session_id":"sess-65a2224eae6d","input_length":1617,"output_length":303,"hash_ids":[972068,972069,972070,972071],"delay":7677.2} +{"session_id":"sess-65a2224eae6d","input_length":1017,"output_length":280,"hash_ids":[972072,972073],"delay":2233.9} +{"session_id":"sess-65a2224eae6d","input_length":1989,"output_length":316,"hash_ids":[972074,972075,972076,972077],"delay":202.8} +{"session_id":"sess-65a2224eae6d","input_length":823,"output_length":548,"hash_ids":[972078,972079],"delay":9195.3} +{"session_id":"sess-65a2224eae6d","input_length":978,"output_length":115,"hash_ids":[972080,972081],"delay":5197.7} +{"session_id":"sess-65a2224eae6d","input_length":582,"output_length":97,"hash_ids":[972082,972083],"delay":444.7} +{"session_id":"sess-65a2224eae6d","input_length":559,"output_length":376,"hash_ids":[972084,972085],"delay":2739.9} +{"session_id":"sess-65a2224eae6d","input_length":2066,"output_length":142,"hash_ids":[972086,972087,972088,972089,972090],"delay":704.0} +{"session_id":"sess-65a2224eae6d","input_length":1594,"output_length":147,"hash_ids":[972091,972092,972093,972094],"delay":407.2} +{"session_id":"sess-65a2224eae6d","input_length":624,"output_length":388,"hash_ids":[972095,972096],"delay":314.1} +{"session_id":"sess-65a2224eae6d","input_length":391,"output_length":62,"hash_ids":[972097],"delay":404.3} +{"session_id":"sess-65a2224eae6d","input_length":1326,"output_length":241,"hash_ids":[972098,972099,972100],"delay":1055.9} +{"session_id":"sess-65a2224eae6d","input_length":2815,"output_length":57,"hash_ids":[972101,972102,972103,972104,972105,972106],"delay":1067.8} +{"session_id":"sess-65a2224eae6d","input_length":115,"output_length":114,"hash_ids":[972107],"delay":15407.1} +{"session_id":"sess-48f94e91ae02","input_length":27731,"output_length":176,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,976032,976033,976034],"timestamp":0.0,"group_id":16} +{"session_id":"sess-48f94e91ae02","input_length":445,"output_length":139,"hash_ids":[976035],"delay":1598.4} +{"session_id":"sess-48f94e91ae02","input_length":1311,"output_length":204,"hash_ids":[976036,976037,976038],"delay":1040.5} +{"session_id":"sess-48f94e91ae02","input_length":1934,"output_length":146,"hash_ids":[976039,976040,976041,976042],"delay":41059.1} +{"session_id":"sess-5f423890ec8f","input_length":36171,"output_length":364,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,980032,980033,980034,980035,980036,980037,980038,980039,980040,980041,980042,980043,980044,980045,980046,980047,980048,980049,980050],"timestamp":0.0,"group_id":6} +{"session_id":"sess-5f423890ec8f","input_length":1303,"output_length":158,"hash_ids":[980051,980052,980053],"delay":1437.0} +{"session_id":"sess-5f423890ec8f","input_length":1042,"output_length":53,"hash_ids":[980054,980055,980056],"delay":1506.9} +{"session_id":"sess-5f423890ec8f","input_length":2996,"output_length":122,"hash_ids":[980057,980058,980059,980060,980061,980062],"delay":1679.4} +{"session_id":"sess-5f423890ec8f","input_length":2136,"output_length":576,"hash_ids":[980063,980064,980065,980066,980067],"delay":20064.6} +{"session_id":"sess-5f423890ec8f","input_length":1509,"output_length":368,"hash_ids":[980068,980069,980070],"delay":748.4} +{"session_id":"sess-5f423890ec8f","input_length":1577,"output_length":361,"hash_ids":[980071,980072,980073,980074],"delay":1076.6} +{"session_id":"sess-5f423890ec8f","input_length":755,"output_length":196,"hash_ids":[980075,980076],"delay":202.6} +{"session_id":"sess-5f423890ec8f","input_length":830,"output_length":245,"hash_ids":[980077,980078],"delay":11880.6} +{"session_id":"sess-5f423890ec8f","input_length":983,"output_length":317,"hash_ids":[980079,980080],"delay":1526.2} +{"session_id":"sess-5f423890ec8f","input_length":390,"output_length":268,"hash_ids":[980081],"delay":618.3} +{"session_id":"sess-5f423890ec8f","input_length":1811,"output_length":81,"hash_ids":[980082,980083,980084,980085],"delay":244.4} +{"session_id":"sess-5f423890ec8f","input_length":711,"output_length":84,"hash_ids":[980086,980087],"delay":506.7} +{"session_id":"sess-5f423890ec8f","input_length":1505,"output_length":266,"hash_ids":[980088,980089,980090],"delay":1012.6} +{"session_id":"sess-5f423890ec8f","input_length":2624,"output_length":674,"hash_ids":[980091,980092,980093,980094,980095,980096],"delay":594.4} +{"session_id":"sess-5f423890ec8f","input_length":134,"output_length":535,"hash_ids":[980097],"delay":6255.6} +{"session_id":"sess-5f423890ec8f","input_length":448,"output_length":379,"hash_ids":[980098],"delay":791.7} +{"session_id":"sess-5f423890ec8f","input_length":589,"output_length":213,"hash_ids":[980099,980100],"delay":129.8} +{"session_id":"sess-5f423890ec8f","input_length":1611,"output_length":1467,"hash_ids":[980101,980102,980103,980104],"delay":2101.2} +{"session_id":"sess-e734d0eb66aa","input_length":26758,"output_length":202,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,984032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e734d0eb66aa","input_length":1157,"output_length":38,"hash_ids":[984033,984034,984035],"delay":298.2} +{"session_id":"sess-e734d0eb66aa","input_length":1051,"output_length":296,"hash_ids":[984036,984037,984038],"delay":2853.1} +{"session_id":"sess-e734d0eb66aa","input_length":414,"output_length":354,"hash_ids":[984039],"delay":556.1} +{"session_id":"sess-e734d0eb66aa","input_length":515,"output_length":694,"hash_ids":[984040,984041],"delay":47485.0} +{"session_id":"sess-e734d0eb66aa","input_length":583,"output_length":248,"hash_ids":[984042,984043],"delay":52484.6} +{"session_id":"sess-e734d0eb66aa","input_length":1714,"output_length":84,"hash_ids":[984044,984045,984046,984047],"delay":24692.9} +{"session_id":"sess-e734d0eb66aa","input_length":686,"output_length":65,"hash_ids":[984048,984049],"delay":2578.0} +{"session_id":"sess-e734d0eb66aa","input_length":853,"output_length":112,"hash_ids":[984050,984051],"delay":415.1} +{"session_id":"sess-e734d0eb66aa","input_length":251,"output_length":212,"hash_ids":[984052],"delay":325.9} +{"session_id":"sess-e734d0eb66aa","input_length":1138,"output_length":673,"hash_ids":[984053,984054,984055],"delay":1281.8} +{"session_id":"sess-e734d0eb66aa","input_length":577,"output_length":197,"hash_ids":[984056,984057],"delay":4979.2} +{"session_id":"sess-e734d0eb66aa","input_length":839,"output_length":270,"hash_ids":[984058,984059],"delay":3068.5} +{"session_id":"sess-e734d0eb66aa","input_length":1216,"output_length":286,"hash_ids":[984060,984061,984062],"delay":443.6} +{"session_id":"sess-e734d0eb66aa","input_length":2982,"output_length":146,"hash_ids":[984063,984064,984065,984066,984067,984068],"delay":1389.4} +{"session_id":"sess-e734d0eb66aa","input_length":411,"output_length":635,"hash_ids":[984069],"delay":2192.8} +{"session_id":"sess-e734d0eb66aa","input_length":880,"output_length":1159,"hash_ids":[984070,984071],"delay":11561.2} +{"session_id":"sess-e734d0eb66aa","input_length":2219,"output_length":347,"hash_ids":[984072,984073,984074,984075,984076],"delay":264.1} +{"session_id":"sess-e734d0eb66aa","input_length":956,"output_length":222,"hash_ids":[984077,984078],"delay":734.9} +{"session_id":"sess-e734d0eb66aa","input_length":2265,"output_length":1211,"hash_ids":[984079,984080,984081,984082,984083],"delay":1015.3} +{"session_id":"sess-e734d0eb66aa","input_length":378,"output_length":99,"hash_ids":[984084],"delay":524.1} +{"session_id":"sess-e734d0eb66aa","input_length":265,"output_length":62,"hash_ids":[984085],"delay":588.2} +{"session_id":"sess-e734d0eb66aa","input_length":2728,"output_length":184,"hash_ids":[984086,984087,984088,984089,984090,984091],"delay":4196.9} +{"session_id":"sess-e734d0eb66aa","input_length":278,"output_length":573,"hash_ids":[984092],"delay":11830.9} +{"session_id":"sess-e734d0eb66aa","input_length":227,"output_length":94,"hash_ids":[984093],"delay":450.5} +{"session_id":"sess-e734d0eb66aa","input_length":100,"output_length":30,"hash_ids":[984094],"delay":228.5} +{"session_id":"sess-e734d0eb66aa","input_length":330,"output_length":94,"hash_ids":[984095],"delay":3336.1} +{"session_id":"sess-e734d0eb66aa","input_length":697,"output_length":872,"hash_ids":[984096,984097],"delay":5972.1} +{"session_id":"sess-e734d0eb66aa","input_length":1240,"output_length":205,"hash_ids":[984098,984099,984100],"delay":690.0} +{"session_id":"sess-e734d0eb66aa","input_length":605,"output_length":233,"hash_ids":[984101,984102],"delay":3890.6} +{"session_id":"sess-c4cb3be3f0df","input_length":31607,"output_length":266,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,988032,988033,988034,988035,988036,988037,988038,988039,988040,988041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c4cb3be3f0df","input_length":368,"output_length":591,"hash_ids":[988042],"delay":2064.0} +{"session_id":"sess-c4cb3be3f0df","input_length":2686,"output_length":1140,"hash_ids":[988043,988044,988045,988046,988047,988048],"delay":938.3} +{"session_id":"sess-c4cb3be3f0df","input_length":974,"output_length":58,"hash_ids":[988049,988050],"delay":1058.4} +{"session_id":"sess-c4cb3be3f0df","input_length":904,"output_length":201,"hash_ids":[988051,988052],"delay":631.5} +{"session_id":"sess-c4cb3be3f0df","input_length":2186,"output_length":120,"hash_ids":[988053,988054,988055,988056,988057],"delay":8638.8} +{"session_id":"sess-c4cb3be3f0df","input_length":484,"output_length":84,"hash_ids":[988058],"delay":482.6} +{"session_id":"sess-c4cb3be3f0df","input_length":148,"output_length":149,"hash_ids":[988059],"delay":912.0} +{"session_id":"sess-c4cb3be3f0df","input_length":687,"output_length":290,"hash_ids":[988060,988061],"delay":1171.7} +{"session_id":"sess-c4cb3be3f0df","input_length":1252,"output_length":289,"hash_ids":[988062,988063,988064],"delay":16371.3} +{"session_id":"sess-c4cb3be3f0df","input_length":633,"output_length":30,"hash_ids":[988065,988066],"delay":681.0} +{"session_id":"sess-c4cb3be3f0df","input_length":1195,"output_length":269,"hash_ids":[988067,988068,988069],"delay":1651.1} +{"session_id":"sess-c4cb3be3f0df","input_length":439,"output_length":153,"hash_ids":[988070],"delay":249.3} +{"session_id":"sess-c4cb3be3f0df","input_length":1233,"output_length":228,"hash_ids":[988071,988072,988073],"delay":316.3} +{"session_id":"sess-c4cb3be3f0df","input_length":2371,"output_length":248,"hash_ids":[988074,988075,988076,988077,988078],"delay":8829.0} +{"session_id":"sess-c4cb3be3f0df","input_length":1307,"output_length":113,"hash_ids":[988079,988080,988081],"delay":2030.9} +{"session_id":"sess-c4cb3be3f0df","input_length":81,"output_length":272,"hash_ids":[988082],"delay":638.8} +{"session_id":"sess-c4cb3be3f0df","input_length":1121,"output_length":112,"hash_ids":[988083,988084,988085],"delay":341.2} +{"session_id":"sess-c4cb3be3f0df","input_length":351,"output_length":64,"hash_ids":[988086],"delay":5197.0} +{"session_id":"sess-c4cb3be3f0df","input_length":971,"output_length":65,"hash_ids":[988087,988088],"delay":16515.6} +{"session_id":"sess-c4cb3be3f0df","input_length":2236,"output_length":297,"hash_ids":[988089,988090,988091,988092,988093],"delay":164.7} +{"session_id":"sess-c4cb3be3f0df","input_length":351,"output_length":131,"hash_ids":[988094],"delay":571.1} +{"session_id":"sess-c4cb3be3f0df","input_length":1746,"output_length":192,"hash_ids":[988095,988096,988097,988098],"delay":28941.7} +{"session_id":"sess-c4cb3be3f0df","input_length":480,"output_length":38,"hash_ids":[988099],"delay":801.7} +{"session_id":"sess-c4cb3be3f0df","input_length":751,"output_length":1127,"hash_ids":[988100,988101],"delay":1588.6} +{"session_id":"sess-c4cb3be3f0df","input_length":2385,"output_length":375,"hash_ids":[988102,988103,988104,988105,988106],"delay":618.6} +{"session_id":"sess-c0a06ed3c43a","input_length":35821,"output_length":590,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,992032,992033,992034,992035,992036,992037,992038,992039,992040,992041,992042,992043,992044,992045,992046,992047,992048,992049],"timestamp":0.0,"group_id":45} +{"session_id":"sess-c0a06ed3c43a","input_length":2395,"output_length":472,"hash_ids":[992050,992051,992052,992053,992054],"delay":1392.0} +{"session_id":"sess-c0a06ed3c43a","input_length":415,"output_length":1495,"hash_ids":[992055],"delay":1154.1} +{"session_id":"sess-c0a06ed3c43a","input_length":937,"output_length":268,"hash_ids":[992056,992057],"delay":1252.3} +{"session_id":"sess-c0a06ed3c43a","input_length":1527,"output_length":272,"hash_ids":[992058,992059,992060],"delay":7161.8} +{"session_id":"sess-c0a06ed3c43a","input_length":429,"output_length":217,"hash_ids":[992061],"delay":1029.0} +{"session_id":"sess-c0a06ed3c43a","input_length":519,"output_length":194,"hash_ids":[992062,992063],"delay":501.9} +{"session_id":"sess-c0a06ed3c43a","input_length":666,"output_length":115,"hash_ids":[992064,992065],"delay":573.0} +{"session_id":"sess-c0a06ed3c43a","input_length":1245,"output_length":302,"hash_ids":[992066,992067,992068],"delay":2308.9} +{"session_id":"sess-c0a06ed3c43a","input_length":165,"output_length":438,"hash_ids":[992069],"delay":16771.7} +{"session_id":"sess-c0a06ed3c43a","input_length":1282,"output_length":166,"hash_ids":[992070,992071,992072],"delay":1089.0} +{"session_id":"sess-c0a06ed3c43a","input_length":1267,"output_length":306,"hash_ids":[992073,992074,992075],"delay":1483.2} +{"session_id":"sess-c0a06ed3c43a","input_length":339,"output_length":30,"hash_ids":[992076],"delay":6657.5} +{"session_id":"sess-c0a06ed3c43a","input_length":901,"output_length":696,"hash_ids":[992077,992078],"delay":853.4} +{"session_id":"sess-c0a06ed3c43a","input_length":1107,"output_length":131,"hash_ids":[992079,992080,992081],"delay":291.3} +{"session_id":"sess-c0a06ed3c43a","input_length":956,"output_length":205,"hash_ids":[992082,992083],"delay":1788.6} +{"session_id":"sess-c0a06ed3c43a","input_length":631,"output_length":452,"hash_ids":[992084,992085],"delay":652.1} +{"session_id":"sess-c0a06ed3c43a","input_length":628,"output_length":249,"hash_ids":[992086,992087],"delay":230.5} +{"session_id":"sess-c0a06ed3c43a","input_length":1697,"output_length":217,"hash_ids":[992088,992089,992090,992091],"delay":418.9} +{"session_id":"sess-c0a06ed3c43a","input_length":841,"output_length":42,"hash_ids":[992092,992093],"delay":2932.7} +{"session_id":"sess-c0a06ed3c43a","input_length":2804,"output_length":204,"hash_ids":[992094,992095,992096,992097,992098,992099],"delay":1109.7} +{"session_id":"sess-c0a06ed3c43a","input_length":915,"output_length":181,"hash_ids":[992100,992101],"delay":436.2} +{"session_id":"sess-a8fbfa126970","input_length":27964,"output_length":687,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,996032,996033,996034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a8fbfa126970","input_length":2225,"output_length":178,"hash_ids":[996035,996036,996037,996038,996039],"delay":749.7} +{"session_id":"sess-a8fbfa126970","input_length":409,"output_length":781,"hash_ids":[996040],"delay":2806.1} +{"session_id":"sess-a8fbfa126970","input_length":1712,"output_length":80,"hash_ids":[996041,996042,996043,996044],"delay":1383.0} +{"session_id":"sess-a8fbfa126970","input_length":1442,"output_length":335,"hash_ids":[996045,996046,996047],"delay":453.2} +{"session_id":"sess-a8fbfa126970","input_length":1970,"output_length":79,"hash_ids":[996048,996049,996050,996051],"delay":27340.9} +{"session_id":"sess-a8fbfa126970","input_length":1160,"output_length":77,"hash_ids":[996052,996053,996054],"delay":334.7} +{"session_id":"sess-a8fbfa126970","input_length":439,"output_length":324,"hash_ids":[996055],"delay":265.8} +{"session_id":"sess-a8fbfa126970","input_length":1285,"output_length":121,"hash_ids":[996056,996057,996058],"delay":1142.1} +{"session_id":"sess-a8fbfa126970","input_length":1982,"output_length":863,"hash_ids":[996059,996060,996061,996062],"delay":2532.6} +{"session_id":"sess-a8fbfa126970","input_length":322,"output_length":466,"hash_ids":[996063],"delay":443.6} +{"session_id":"sess-a8fbfa126970","input_length":1092,"output_length":785,"hash_ids":[996064,996065,996066],"delay":342.8} +{"session_id":"sess-a8fbfa126970","input_length":2423,"output_length":66,"hash_ids":[996067,996068,996069,996070,996071],"delay":269.6} +{"session_id":"sess-a8fbfa126970","input_length":755,"output_length":101,"hash_ids":[996072,996073],"delay":9067.9} +{"session_id":"sess-a8fbfa126970","input_length":748,"output_length":377,"hash_ids":[996074,996075],"delay":2161.6} +{"session_id":"sess-a8fbfa126970","input_length":840,"output_length":83,"hash_ids":[996076,996077],"delay":1507.4} +{"session_id":"sess-a8fbfa126970","input_length":879,"output_length":197,"hash_ids":[996078,996079],"delay":1479.8} +{"session_id":"sess-a8fbfa126970","input_length":2623,"output_length":30,"hash_ids":[996080,996081,996082,996083,996084,996085],"delay":482.9} +{"session_id":"sess-a8fbfa126970","input_length":988,"output_length":85,"hash_ids":[996086,996087],"delay":16320.6} +{"session_id":"sess-a8fbfa126970","input_length":191,"output_length":293,"hash_ids":[996088],"delay":1815.1} +{"session_id":"sess-a8fbfa126970","input_length":660,"output_length":386,"hash_ids":[996089,996090],"delay":719.5} +{"session_id":"sess-a8fbfa126970","input_length":140,"output_length":137,"hash_ids":[996091],"delay":569.3} +{"session_id":"sess-a8fbfa126970","input_length":364,"output_length":33,"hash_ids":[996092],"delay":4839.0} +{"session_id":"sess-a8fbfa126970","input_length":639,"output_length":178,"hash_ids":[996093,996094],"delay":355.3} +{"session_id":"sess-a8fbfa126970","input_length":285,"output_length":839,"hash_ids":[996095],"delay":523.7} +{"session_id":"sess-a8fbfa126970","input_length":565,"output_length":190,"hash_ids":[996096,996097],"delay":303.7} +{"session_id":"sess-a8fbfa126970","input_length":27,"output_length":181,"hash_ids":[996098],"delay":6482.2} +{"session_id":"sess-a8fbfa126970","input_length":2923,"output_length":71,"hash_ids":[996099,996100,996101,996102,996103,996104],"delay":827.9} +{"session_id":"sess-d40d17e3d296","input_length":34319,"output_length":173,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1000032,1000033,1000034,1000035,1000036,1000037,1000038,1000039,1000040,1000041,1000042,1000043,1000044,1000045,1000046,1000047],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d40d17e3d296","input_length":703,"output_length":184,"hash_ids":[1000048,1000049],"delay":22878.4} +{"session_id":"sess-d40d17e3d296","input_length":856,"output_length":633,"hash_ids":[1000050,1000051],"delay":1457.3} +{"session_id":"sess-d40d17e3d296","input_length":214,"output_length":209,"hash_ids":[1000052],"delay":1462.5} +{"session_id":"sess-d40d17e3d296","input_length":743,"output_length":98,"hash_ids":[1000053,1000054],"delay":1199.6} +{"session_id":"sess-d40d17e3d296","input_length":1887,"output_length":419,"hash_ids":[1000055,1000056,1000057,1000058],"delay":2391.8} +{"session_id":"sess-d40d17e3d296","input_length":746,"output_length":172,"hash_ids":[1000059,1000060],"delay":18984.4} +{"session_id":"sess-d40d17e3d296","input_length":167,"output_length":89,"hash_ids":[1000061],"delay":2579.0} +{"session_id":"sess-d40d17e3d296","input_length":461,"output_length":225,"hash_ids":[1000062],"delay":4536.8} +{"session_id":"sess-d40d17e3d296","input_length":1834,"output_length":113,"hash_ids":[1000063,1000064,1000065,1000066],"delay":19691.1} +{"session_id":"sess-d40d17e3d296","input_length":2240,"output_length":520,"hash_ids":[1000067,1000068,1000069,1000070,1000071],"delay":536.6} +{"session_id":"sess-d40d17e3d296","input_length":265,"output_length":112,"hash_ids":[1000072],"delay":621.9} +{"session_id":"sess-d40d17e3d296","input_length":458,"output_length":80,"hash_ids":[1000073],"delay":875.1} +{"session_id":"sess-d40d17e3d296","input_length":2795,"output_length":176,"hash_ids":[1000074,1000075,1000076,1000077,1000078,1000079],"delay":507.0} +{"session_id":"sess-d40d17e3d296","input_length":203,"output_length":778,"hash_ids":[1000080],"delay":10497.3} +{"session_id":"sess-d40d17e3d296","input_length":1164,"output_length":274,"hash_ids":[1000081,1000082,1000083],"delay":793.8} +{"session_id":"sess-d40d17e3d296","input_length":217,"output_length":245,"hash_ids":[1000084],"delay":705.2} +{"session_id":"sess-d40d17e3d296","input_length":448,"output_length":417,"hash_ids":[1000085],"delay":785.1} +{"session_id":"sess-d40d17e3d296","input_length":331,"output_length":96,"hash_ids":[1000086],"delay":176.0} +{"session_id":"sess-d40d17e3d296","input_length":1486,"output_length":208,"hash_ids":[1000087,1000088,1000089],"delay":380.8} +{"session_id":"sess-d40d17e3d296","input_length":437,"output_length":324,"hash_ids":[1000090],"delay":316.2} +{"session_id":"sess-d40d17e3d296","input_length":1836,"output_length":56,"hash_ids":[1000091,1000092,1000093,1000094],"delay":3255.5} +{"session_id":"sess-d40d17e3d296","input_length":1690,"output_length":100,"hash_ids":[1000095,1000096,1000097,1000098],"delay":450.2} +{"session_id":"sess-d40d17e3d296","input_length":664,"output_length":194,"hash_ids":[1000099,1000100],"delay":970.4} +{"session_id":"sess-d40d17e3d296","input_length":235,"output_length":35,"hash_ids":[1000101],"delay":88.9} +{"session_id":"sess-d40d17e3d296","input_length":634,"output_length":508,"hash_ids":[1000102,1000103],"delay":7185.7} +{"session_id":"sess-d40d17e3d296","input_length":1483,"output_length":33,"hash_ids":[1000104,1000105,1000106],"delay":67.8} +{"session_id":"sess-5c478be24508","input_length":27394,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1004032,1004033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5c478be24508","input_length":345,"output_length":338,"hash_ids":[1004034],"delay":980.3} +{"session_id":"sess-5c478be24508","input_length":1466,"output_length":189,"hash_ids":[1004035,1004036,1004037],"delay":1273.1} +{"session_id":"sess-5c478be24508","input_length":537,"output_length":206,"hash_ids":[1004038,1004039],"delay":4044.8} +{"session_id":"sess-5c478be24508","input_length":756,"output_length":610,"hash_ids":[1004040,1004041],"delay":760.0} +{"session_id":"sess-5c478be24508","input_length":482,"output_length":192,"hash_ids":[1004042],"delay":1078.6} +{"session_id":"sess-5c478be24508","input_length":468,"output_length":279,"hash_ids":[1004043],"delay":1831.5} +{"session_id":"sess-5c478be24508","input_length":495,"output_length":977,"hash_ids":[1004044],"delay":4873.6} +{"session_id":"sess-5c478be24508","input_length":515,"output_length":656,"hash_ids":[1004045,1004046],"delay":1095.3} +{"session_id":"sess-5c478be24508","input_length":460,"output_length":455,"hash_ids":[1004047],"delay":652.8} +{"session_id":"sess-5c478be24508","input_length":1143,"output_length":427,"hash_ids":[1004048,1004049,1004050],"delay":2073.7} +{"session_id":"sess-5c478be24508","input_length":1418,"output_length":212,"hash_ids":[1004051,1004052,1004053],"delay":400.1} +{"session_id":"sess-5c478be24508","input_length":726,"output_length":568,"hash_ids":[1004054,1004055],"delay":520.4} +{"session_id":"sess-5c478be24508","input_length":721,"output_length":1447,"hash_ids":[1004056,1004057],"delay":599.8} +{"session_id":"sess-5c478be24508","input_length":943,"output_length":580,"hash_ids":[1004058,1004059],"delay":2253.9} +{"session_id":"sess-5c478be24508","input_length":1291,"output_length":93,"hash_ids":[1004060,1004061,1004062],"delay":554.9} +{"session_id":"sess-5c478be24508","input_length":1113,"output_length":40,"hash_ids":[1004063,1004064,1004065],"delay":3622.0} +{"session_id":"sess-5c478be24508","input_length":387,"output_length":93,"hash_ids":[1004066],"delay":10209.1} +{"session_id":"sess-5c478be24508","input_length":1585,"output_length":268,"hash_ids":[1004067,1004068,1004069,1004070],"delay":6285.5} +{"session_id":"sess-5c478be24508","input_length":1307,"output_length":52,"hash_ids":[1004071,1004072,1004073],"delay":2543.9} +{"session_id":"sess-5c478be24508","input_length":205,"output_length":48,"hash_ids":[1004074],"delay":286.8} +{"session_id":"sess-5c478be24508","input_length":715,"output_length":167,"hash_ids":[1004075,1004076],"delay":485.1} +{"session_id":"sess-5c478be24508","input_length":617,"output_length":87,"hash_ids":[1004077,1004078],"delay":1514.9} +{"session_id":"sess-5c478be24508","input_length":303,"output_length":190,"hash_ids":[1004079],"delay":570.9} +{"session_id":"sess-cc28831c8dde","input_length":27484,"output_length":285,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,1008032,1008033],"timestamp":0.0,"group_id":45} +{"session_id":"sess-cc28831c8dde","input_length":2893,"output_length":30,"hash_ids":[1008034,1008035,1008036,1008037,1008038,1008039],"delay":31995.6} +{"session_id":"sess-f7dbd2f3a555","input_length":26455,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-f7dbd2f3a555","input_length":1075,"output_length":77,"hash_ids":[1008040,1008041,1008042],"delay":529.9} +{"session_id":"sess-f7dbd2f3a555","input_length":1230,"output_length":223,"hash_ids":[1008043,1008044,1008045],"delay":1648.5} +{"session_id":"sess-f7dbd2f3a555","input_length":2201,"output_length":287,"hash_ids":[1008046,1008047,1008048,1008049,1008050],"delay":1009.4} +{"session_id":"sess-f7dbd2f3a555","input_length":444,"output_length":184,"hash_ids":[1008051],"delay":3064.8} +{"session_id":"sess-f7dbd2f3a555","input_length":982,"output_length":81,"hash_ids":[1008052,1008053],"delay":569.3} +{"session_id":"sess-f7dbd2f3a555","input_length":871,"output_length":416,"hash_ids":[1008054,1008055],"delay":1093.6} +{"session_id":"sess-f7dbd2f3a555","input_length":273,"output_length":162,"hash_ids":[1008056],"delay":1623.5} +{"session_id":"sess-f7dbd2f3a555","input_length":483,"output_length":243,"hash_ids":[1008057],"delay":1140.7} +{"session_id":"sess-f7dbd2f3a555","input_length":966,"output_length":88,"hash_ids":[1008058,1008059],"delay":23755.2} +{"session_id":"sess-f7dbd2f3a555","input_length":257,"output_length":100,"hash_ids":[1008060],"delay":892.1} +{"session_id":"sess-f7dbd2f3a555","input_length":1359,"output_length":389,"hash_ids":[1008061,1008062,1008063],"delay":611.2} +{"session_id":"sess-f7dbd2f3a555","input_length":491,"output_length":329,"hash_ids":[1008064],"delay":26554.9} +{"session_id":"sess-f7dbd2f3a555","input_length":1802,"output_length":477,"hash_ids":[1008065,1008066,1008067,1008068],"delay":1102.9} +{"session_id":"sess-f7dbd2f3a555","input_length":1029,"output_length":149,"hash_ids":[1008069,1008070,1008071],"delay":446.2} +{"session_id":"sess-f7dbd2f3a555","input_length":181,"output_length":198,"hash_ids":[1008072],"delay":145.1} +{"session_id":"sess-eba751cec7fc","input_length":30038,"output_length":162,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,1016032,1016033,1016034,1016035,1016036,1016037,1016038],"timestamp":0.0,"group_id":14} +{"session_id":"sess-eba751cec7fc","input_length":1265,"output_length":283,"hash_ids":[1016039,1016040,1016041],"delay":33515.1} +{"session_id":"sess-eba751cec7fc","input_length":411,"output_length":473,"hash_ids":[1016042],"delay":1670.4} +{"session_id":"sess-eba751cec7fc","input_length":133,"output_length":30,"hash_ids":[1016043],"delay":924.7} +{"session_id":"sess-eba751cec7fc","input_length":886,"output_length":178,"hash_ids":[1016044,1016045],"delay":38281.6} +{"session_id":"sess-eba751cec7fc","input_length":191,"output_length":239,"hash_ids":[1016046],"delay":1312.3} +{"session_id":"sess-eba751cec7fc","input_length":921,"output_length":321,"hash_ids":[1016047,1016048],"delay":761.9} +{"session_id":"sess-eba751cec7fc","input_length":304,"output_length":276,"hash_ids":[1016049],"delay":1606.4} +{"session_id":"sess-eba751cec7fc","input_length":1683,"output_length":257,"hash_ids":[1016050,1016051,1016052,1016053],"delay":1276.7} +{"session_id":"sess-eba751cec7fc","input_length":706,"output_length":1007,"hash_ids":[1016054,1016055],"delay":1114.4} +{"session_id":"sess-eba751cec7fc","input_length":1653,"output_length":162,"hash_ids":[1016056,1016057,1016058,1016059],"delay":1271.0} +{"session_id":"sess-eba751cec7fc","input_length":256,"output_length":281,"hash_ids":[1016060],"delay":10537.6} +{"session_id":"sess-eba751cec7fc","input_length":492,"output_length":1258,"hash_ids":[1016061],"delay":21130.5} +{"session_id":"sess-eba751cec7fc","input_length":478,"output_length":225,"hash_ids":[1016062],"delay":932.5} +{"session_id":"sess-eba751cec7fc","input_length":401,"output_length":84,"hash_ids":[1016063],"delay":357.7} +{"session_id":"sess-eba751cec7fc","input_length":746,"output_length":45,"hash_ids":[1016064,1016065],"delay":216.2} +{"session_id":"sess-eba751cec7fc","input_length":149,"output_length":140,"hash_ids":[1016066],"delay":623.0} +{"session_id":"sess-eba751cec7fc","input_length":388,"output_length":256,"hash_ids":[1016067],"delay":12435.0} +{"session_id":"sess-eba751cec7fc","input_length":1186,"output_length":241,"hash_ids":[1016068,1016069,1016070],"delay":921.4} +{"session_id":"sess-0e886862baf8","input_length":31049,"output_length":318,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1020032,1020033,1020034,1020035,1020036,1020037,1020038,1020039,1020040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0e886862baf8","input_length":729,"output_length":264,"hash_ids":[1020041,1020042],"delay":27883.3} +{"session_id":"sess-0e886862baf8","input_length":2228,"output_length":136,"hash_ids":[1020043,1020044,1020045,1020046,1020047],"delay":953.5} +{"session_id":"sess-0e886862baf8","input_length":1086,"output_length":38,"hash_ids":[1020048,1020049,1020050],"delay":1772.4} +{"session_id":"sess-0e886862baf8","input_length":1077,"output_length":311,"hash_ids":[1020051,1020052,1020053],"delay":17417.0} +{"session_id":"sess-0e886862baf8","input_length":626,"output_length":1043,"hash_ids":[1020054,1020055],"delay":2857.3} +{"session_id":"sess-0e886862baf8","input_length":394,"output_length":320,"hash_ids":[1020056],"delay":620.8} +{"session_id":"sess-0e886862baf8","input_length":729,"output_length":1042,"hash_ids":[1020057,1020058],"delay":577.9} +{"session_id":"sess-0e886862baf8","input_length":866,"output_length":55,"hash_ids":[1020059,1020060],"delay":396.8} +{"session_id":"sess-0e886862baf8","input_length":996,"output_length":304,"hash_ids":[1020061,1020062],"delay":330.6} +{"session_id":"sess-0e886862baf8","input_length":717,"output_length":319,"hash_ids":[1020063,1020064],"delay":1890.0} +{"session_id":"sess-0e886862baf8","input_length":250,"output_length":237,"hash_ids":[1020065],"delay":12384.1} +{"session_id":"sess-0e886862baf8","input_length":1800,"output_length":75,"hash_ids":[1020066,1020067,1020068,1020069],"delay":916.4} +{"session_id":"sess-0e886862baf8","input_length":802,"output_length":759,"hash_ids":[1020070,1020071],"delay":1642.2} +{"session_id":"sess-0e886862baf8","input_length":1328,"output_length":239,"hash_ids":[1020072,1020073,1020074],"delay":12032.5} +{"session_id":"sess-0e886862baf8","input_length":711,"output_length":118,"hash_ids":[1020075,1020076],"delay":3820.3} +{"session_id":"sess-0e886862baf8","input_length":2770,"output_length":263,"hash_ids":[1020077,1020078,1020079,1020080,1020081,1020082],"delay":20180.1} +{"session_id":"sess-0e886862baf8","input_length":577,"output_length":51,"hash_ids":[1020083,1020084],"delay":6191.4} +{"session_id":"sess-0e886862baf8","input_length":2012,"output_length":667,"hash_ids":[1020085,1020086,1020087,1020088],"delay":16066.5} +{"session_id":"sess-0e886862baf8","input_length":1344,"output_length":252,"hash_ids":[1020089,1020090,1020091],"delay":258.4} +{"session_id":"sess-0e886862baf8","input_length":545,"output_length":165,"hash_ids":[1020092,1020093],"delay":1703.1} +{"session_id":"sess-0e886862baf8","input_length":1937,"output_length":282,"hash_ids":[1020094,1020095,1020096,1020097],"delay":391.1} +{"session_id":"sess-0e886862baf8","input_length":1416,"output_length":634,"hash_ids":[1020098,1020099,1020100],"delay":3963.3} +{"session_id":"sess-0e886862baf8","input_length":928,"output_length":138,"hash_ids":[1020101,1020102],"delay":3817.1} +{"session_id":"sess-4b878bcb94d2","input_length":27642,"output_length":1177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,1024032,1024033],"timestamp":0.0,"group_id":27} +{"session_id":"sess-4b878bcb94d2","input_length":164,"output_length":350,"hash_ids":[1024034],"delay":25692.5} +{"session_id":"sess-4b878bcb94d2","input_length":2357,"output_length":655,"hash_ids":[1024035,1024036,1024037,1024038,1024039],"delay":1862.2} +{"session_id":"sess-4b878bcb94d2","input_length":376,"output_length":207,"hash_ids":[1024040],"delay":6785.8} +{"session_id":"sess-4b878bcb94d2","input_length":2246,"output_length":398,"hash_ids":[1024041,1024042,1024043,1024044,1024045],"delay":2052.2} +{"session_id":"sess-4b878bcb94d2","input_length":935,"output_length":125,"hash_ids":[1024046,1024047],"delay":577.8} +{"session_id":"sess-4b878bcb94d2","input_length":349,"output_length":253,"hash_ids":[1024048],"delay":566.4} +{"session_id":"sess-4b878bcb94d2","input_length":575,"output_length":112,"hash_ids":[1024049,1024050],"delay":2385.8} +{"session_id":"sess-4b878bcb94d2","input_length":1807,"output_length":31,"hash_ids":[1024051,1024052,1024053,1024054],"delay":214.9} +{"session_id":"sess-4b878bcb94d2","input_length":446,"output_length":159,"hash_ids":[1024055],"delay":996.4} +{"session_id":"sess-4b878bcb94d2","input_length":1078,"output_length":470,"hash_ids":[1024056,1024057,1024058],"delay":1030.5} +{"session_id":"sess-4b878bcb94d2","input_length":2257,"output_length":236,"hash_ids":[1024059,1024060,1024061,1024062,1024063],"delay":10678.9} +{"session_id":"sess-4b878bcb94d2","input_length":1009,"output_length":57,"hash_ids":[1024064,1024065],"delay":21675.8} +{"session_id":"sess-4b878bcb94d2","input_length":1751,"output_length":391,"hash_ids":[1024066,1024067,1024068,1024069],"delay":18332.9} +{"session_id":"sess-4b878bcb94d2","input_length":802,"output_length":232,"hash_ids":[1024070,1024071],"delay":14296.9} +{"session_id":"sess-4b878bcb94d2","input_length":625,"output_length":284,"hash_ids":[1024072,1024073],"delay":1545.9} +{"session_id":"sess-4b878bcb94d2","input_length":1508,"output_length":41,"hash_ids":[1024074,1024075,1024076],"delay":924.0} +{"session_id":"sess-4b878bcb94d2","input_length":53,"output_length":191,"hash_ids":[1024077],"delay":1320.9} +{"session_id":"sess-4b878bcb94d2","input_length":2003,"output_length":105,"hash_ids":[1024078,1024079,1024080,1024081],"delay":8630.8} +{"session_id":"sess-4b878bcb94d2","input_length":1950,"output_length":266,"hash_ids":[1024082,1024083,1024084,1024085],"delay":411.2} +{"session_id":"sess-4b878bcb94d2","input_length":2642,"output_length":248,"hash_ids":[1024086,1024087,1024088,1024089,1024090,1024091],"delay":127.9} +{"session_id":"sess-4b878bcb94d2","input_length":2178,"output_length":145,"hash_ids":[1024092,1024093,1024094,1024095,1024096],"delay":666.3} +{"session_id":"sess-4b878bcb94d2","input_length":865,"output_length":167,"hash_ids":[1024097,1024098],"delay":7696.0} +{"session_id":"sess-4b878bcb94d2","input_length":788,"output_length":229,"hash_ids":[1024099,1024100],"delay":322.7} +{"session_id":"sess-4b878bcb94d2","input_length":317,"output_length":181,"hash_ids":[1024101],"delay":280.0} +{"session_id":"sess-4b878bcb94d2","input_length":1328,"output_length":169,"hash_ids":[1024102,1024103,1024104],"delay":984.3} +{"session_id":"sess-916e83a68e6a","input_length":27576,"output_length":200,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,1028032,1028033],"timestamp":0.0,"group_id":17} +{"session_id":"sess-916e83a68e6a","input_length":715,"output_length":175,"hash_ids":[1028034,1028035],"delay":3808.3} +{"session_id":"sess-916e83a68e6a","input_length":1757,"output_length":352,"hash_ids":[1028036,1028037,1028038,1028039],"delay":46589.9} +{"session_id":"sess-916e83a68e6a","input_length":2123,"output_length":217,"hash_ids":[1028040,1028041,1028042,1028043,1028044],"delay":19637.2} +{"session_id":"sess-916e83a68e6a","input_length":407,"output_length":83,"hash_ids":[1028045],"delay":639.2} +{"session_id":"sess-916e83a68e6a","input_length":322,"output_length":129,"hash_ids":[1028046],"delay":578.0} +{"session_id":"sess-916e83a68e6a","input_length":1561,"output_length":35,"hash_ids":[1028047,1028048,1028049,1028050],"delay":925.1} +{"session_id":"sess-916e83a68e6a","input_length":2657,"output_length":130,"hash_ids":[1028051,1028052,1028053,1028054,1028055,1028056],"delay":1595.2} +{"session_id":"sess-b5aab4f7ced6","input_length":32397,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1032032,1032033,1032034,1032035,1032036,1032037,1032038,1032039,1032040,1032041,1032042,1032043],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b5aab4f7ced6","input_length":971,"output_length":316,"hash_ids":[1032044,1032045],"delay":3255.5} +{"session_id":"sess-b5aab4f7ced6","input_length":1068,"output_length":165,"hash_ids":[1032046,1032047,1032048],"delay":1209.1} +{"session_id":"sess-b5aab4f7ced6","input_length":563,"output_length":214,"hash_ids":[1032049,1032050],"delay":729.3} +{"session_id":"sess-b5aab4f7ced6","input_length":946,"output_length":313,"hash_ids":[1032051,1032052],"delay":1018.9} +{"session_id":"sess-50d06215d3bf","input_length":33667,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,1036032,1036033,1036034,1036035,1036036,1036037,1036038,1036039,1036040,1036041,1036042,1036043,1036044,1036045],"timestamp":0.0,"group_id":19} +{"session_id":"sess-50d06215d3bf","input_length":1838,"output_length":443,"hash_ids":[1036046,1036047,1036048,1036049],"delay":945.0} +{"session_id":"sess-50d06215d3bf","input_length":823,"output_length":43,"hash_ids":[1036050,1036051],"delay":9196.5} +{"session_id":"sess-50d06215d3bf","input_length":108,"output_length":266,"hash_ids":[1036052],"delay":479.8} +{"session_id":"sess-50d06215d3bf","input_length":2904,"output_length":107,"hash_ids":[1036053,1036054,1036055,1036056,1036057,1036058],"delay":44790.8} +{"session_id":"sess-50d06215d3bf","input_length":151,"output_length":95,"hash_ids":[1036059],"delay":879.2} +{"session_id":"sess-50d06215d3bf","input_length":1187,"output_length":136,"hash_ids":[1036060,1036061,1036062],"delay":1096.6} +{"session_id":"sess-50d06215d3bf","input_length":1989,"output_length":163,"hash_ids":[1036063,1036064,1036065,1036066],"delay":5647.9} +{"session_id":"sess-50d06215d3bf","input_length":548,"output_length":188,"hash_ids":[1036067,1036068],"delay":1141.9} +{"session_id":"sess-50d06215d3bf","input_length":587,"output_length":207,"hash_ids":[1036069,1036070],"delay":174.0} +{"session_id":"sess-50d06215d3bf","input_length":548,"output_length":81,"hash_ids":[1036071,1036072],"delay":728.4} +{"session_id":"sess-50d06215d3bf","input_length":846,"output_length":257,"hash_ids":[1036073,1036074],"delay":3422.8} +{"session_id":"sess-50d06215d3bf","input_length":1679,"output_length":71,"hash_ids":[1036075,1036076,1036077,1036078],"delay":22346.3} +{"session_id":"sess-50d06215d3bf","input_length":329,"output_length":215,"hash_ids":[1036079],"delay":12316.2} +{"session_id":"sess-50d06215d3bf","input_length":410,"output_length":181,"hash_ids":[1036080],"delay":546.9} +{"session_id":"sess-50d06215d3bf","input_length":830,"output_length":430,"hash_ids":[1036081,1036082],"delay":448.9} +{"session_id":"sess-50d06215d3bf","input_length":1154,"output_length":240,"hash_ids":[1036083,1036084,1036085],"delay":240.3} +{"session_id":"sess-50d06215d3bf","input_length":1074,"output_length":417,"hash_ids":[1036086,1036087,1036088],"delay":151.6} +{"session_id":"sess-26dcf8c55ca0","input_length":27566,"output_length":67,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1040032,1040033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-26dcf8c55ca0","input_length":837,"output_length":295,"hash_ids":[1040034,1040035],"delay":437.9} +{"session_id":"sess-26dcf8c55ca0","input_length":666,"output_length":188,"hash_ids":[1040036,1040037],"delay":11107.7} +{"session_id":"sess-26dcf8c55ca0","input_length":753,"output_length":662,"hash_ids":[1040038,1040039],"delay":1583.3} +{"session_id":"sess-26dcf8c55ca0","input_length":155,"output_length":214,"hash_ids":[1040040],"delay":754.8} +{"session_id":"sess-26dcf8c55ca0","input_length":797,"output_length":311,"hash_ids":[1040041,1040042],"delay":2952.8} +{"session_id":"sess-26dcf8c55ca0","input_length":293,"output_length":378,"hash_ids":[1040043],"delay":1050.8} +{"session_id":"sess-26dcf8c55ca0","input_length":1825,"output_length":235,"hash_ids":[1040044,1040045,1040046,1040047],"delay":44896.9} +{"session_id":"sess-26dcf8c55ca0","input_length":2328,"output_length":86,"hash_ids":[1040048,1040049,1040050,1040051,1040052],"delay":839.9} +{"session_id":"sess-26dcf8c55ca0","input_length":312,"output_length":1133,"hash_ids":[1040053],"delay":250.0} +{"session_id":"sess-26dcf8c55ca0","input_length":615,"output_length":724,"hash_ids":[1040054,1040055],"delay":497.1} +{"session_id":"sess-26dcf8c55ca0","input_length":1692,"output_length":816,"hash_ids":[1040056,1040057,1040058,1040059],"delay":11313.6} +{"session_id":"sess-26dcf8c55ca0","input_length":901,"output_length":390,"hash_ids":[1040060,1040061],"delay":1171.1} +{"session_id":"sess-26dcf8c55ca0","input_length":609,"output_length":591,"hash_ids":[1040062,1040063],"delay":5216.9} +{"session_id":"sess-26dcf8c55ca0","input_length":1346,"output_length":169,"hash_ids":[1040064,1040065,1040066],"delay":1043.0} +{"session_id":"sess-26dcf8c55ca0","input_length":1019,"output_length":303,"hash_ids":[1040067,1040068],"delay":871.7} +{"session_id":"sess-26dcf8c55ca0","input_length":2139,"output_length":237,"hash_ids":[1040069,1040070,1040071,1040072,1040073],"delay":464.8} +{"session_id":"sess-26dcf8c55ca0","input_length":470,"output_length":76,"hash_ids":[1040074],"delay":4799.2} +{"session_id":"sess-26dcf8c55ca0","input_length":299,"output_length":142,"hash_ids":[1040075],"delay":10666.4} +{"session_id":"sess-26dcf8c55ca0","input_length":553,"output_length":135,"hash_ids":[1040076,1040077],"delay":855.6} +{"session_id":"sess-26dcf8c55ca0","input_length":437,"output_length":211,"hash_ids":[1040078],"delay":761.7} +{"session_id":"sess-26dcf8c55ca0","input_length":500,"output_length":74,"hash_ids":[1040079],"delay":37801.2} +{"session_id":"sess-26dcf8c55ca0","input_length":540,"output_length":87,"hash_ids":[1040080,1040081],"delay":14073.7} +{"session_id":"sess-26dcf8c55ca0","input_length":613,"output_length":272,"hash_ids":[1040082,1040083],"delay":760.9} +{"session_id":"sess-26dcf8c55ca0","input_length":542,"output_length":94,"hash_ids":[1040084,1040085],"delay":234.4} +{"session_id":"sess-26dcf8c55ca0","input_length":276,"output_length":172,"hash_ids":[1040086],"delay":513.7} +{"session_id":"sess-26dcf8c55ca0","input_length":437,"output_length":30,"hash_ids":[1040087],"delay":5104.4} +{"session_id":"sess-26dcf8c55ca0","input_length":661,"output_length":396,"hash_ids":[1040088,1040089],"delay":30282.6} +{"session_id":"sess-26dcf8c55ca0","input_length":311,"output_length":132,"hash_ids":[1040090],"delay":166.7} +{"session_id":"sess-26dcf8c55ca0","input_length":128,"output_length":526,"hash_ids":[1040091],"delay":240.7} +{"session_id":"sess-26dcf8c55ca0","input_length":605,"output_length":1116,"hash_ids":[1040092,1040093],"delay":12387.6} +{"session_id":"sess-26dcf8c55ca0","input_length":924,"output_length":141,"hash_ids":[1040094,1040095],"delay":150.2} +{"session_id":"sess-26dcf8c55ca0","input_length":1249,"output_length":231,"hash_ids":[1040096,1040097,1040098],"delay":7594.6} +{"session_id":"sess-26dcf8c55ca0","input_length":2232,"output_length":108,"hash_ids":[1040099,1040100,1040101,1040102,1040103],"delay":825.0} +{"session_id":"sess-cc2ed3e28542","input_length":28348,"output_length":92,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1044032,1044033,1044034,1044035],"timestamp":0.0,"group_id":6} +{"session_id":"sess-cc2ed3e28542","input_length":1219,"output_length":542,"hash_ids":[1044036,1044037,1044038],"delay":1724.8} +{"session_id":"sess-cc2ed3e28542","input_length":1596,"output_length":427,"hash_ids":[1044039,1044040,1044041,1044042],"delay":1175.8} +{"session_id":"sess-cc2ed3e28542","input_length":2266,"output_length":239,"hash_ids":[1044043,1044044,1044045,1044046,1044047],"delay":1531.9} +{"session_id":"sess-cc2ed3e28542","input_length":1395,"output_length":109,"hash_ids":[1044048,1044049,1044050],"delay":1874.8} +{"session_id":"sess-cc2ed3e28542","input_length":500,"output_length":69,"hash_ids":[1044051],"delay":1974.2} +{"session_id":"sess-cc2ed3e28542","input_length":1095,"output_length":172,"hash_ids":[1044052,1044053,1044054],"delay":51456.1} +{"session_id":"sess-cc2ed3e28542","input_length":297,"output_length":69,"hash_ids":[1044055],"delay":433.2} +{"session_id":"sess-cc2ed3e28542","input_length":1498,"output_length":215,"hash_ids":[1044056,1044057,1044058],"delay":526.7} +{"session_id":"sess-cc2ed3e28542","input_length":939,"output_length":185,"hash_ids":[1044059,1044060],"delay":1967.8} +{"session_id":"sess-cc2ed3e28542","input_length":1750,"output_length":245,"hash_ids":[1044061,1044062,1044063,1044064],"delay":1119.5} +{"session_id":"sess-cc2ed3e28542","input_length":137,"output_length":130,"hash_ids":[1044065],"delay":610.6} +{"session_id":"sess-cc2ed3e28542","input_length":1096,"output_length":414,"hash_ids":[1044066,1044067,1044068],"delay":11350.5} +{"session_id":"sess-cc2ed3e28542","input_length":1235,"output_length":35,"hash_ids":[1044069,1044070,1044071],"delay":1112.7} +{"session_id":"sess-cc2ed3e28542","input_length":271,"output_length":115,"hash_ids":[1044072],"delay":8293.2} +{"session_id":"sess-cc2ed3e28542","input_length":1807,"output_length":411,"hash_ids":[1044073,1044074,1044075,1044076],"delay":611.1} +{"session_id":"sess-cc2ed3e28542","input_length":703,"output_length":373,"hash_ids":[1044077,1044078],"delay":848.2} +{"session_id":"sess-cc2ed3e28542","input_length":508,"output_length":459,"hash_ids":[1044079],"delay":13037.4} +{"session_id":"sess-cc2ed3e28542","input_length":1604,"output_length":113,"hash_ids":[1044080,1044081,1044082,1044083],"delay":12596.4} +{"session_id":"sess-cc2ed3e28542","input_length":408,"output_length":34,"hash_ids":[1044084],"delay":350.0} +{"session_id":"sess-cc2ed3e28542","input_length":732,"output_length":129,"hash_ids":[1044085,1044086],"delay":588.6} +{"session_id":"sess-cc2ed3e28542","input_length":1307,"output_length":748,"hash_ids":[1044087,1044088,1044089],"delay":216.5} +{"session_id":"sess-2861402c1a3f","input_length":27642,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1048032,1048033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2861402c1a3f","input_length":1506,"output_length":634,"hash_ids":[1048034,1048035,1048036],"delay":1454.3} +{"session_id":"sess-2861402c1a3f","input_length":956,"output_length":215,"hash_ids":[1048037,1048038],"delay":809.5} +{"session_id":"sess-631063bdbb7b","input_length":28462,"output_length":226,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1052032,1052033,1052034,1052035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-631063bdbb7b","input_length":1906,"output_length":43,"hash_ids":[1052036,1052037,1052038,1052039],"delay":3299.0} +{"session_id":"sess-631063bdbb7b","input_length":367,"output_length":229,"hash_ids":[1052040],"delay":1841.9} +{"session_id":"sess-631063bdbb7b","input_length":2023,"output_length":303,"hash_ids":[1052041,1052042,1052043,1052044],"delay":389.3} +{"session_id":"sess-631063bdbb7b","input_length":2616,"output_length":333,"hash_ids":[1052045,1052046,1052047,1052048,1052049,1052050],"delay":1197.7} +{"session_id":"sess-631063bdbb7b","input_length":2533,"output_length":338,"hash_ids":[1052051,1052052,1052053,1052054,1052055],"delay":15035.4} +{"session_id":"sess-631063bdbb7b","input_length":982,"output_length":129,"hash_ids":[1052056,1052057],"delay":12873.4} +{"session_id":"sess-631063bdbb7b","input_length":405,"output_length":74,"hash_ids":[1052058],"delay":4830.0} +{"session_id":"sess-631063bdbb7b","input_length":915,"output_length":220,"hash_ids":[1052059,1052060],"delay":634.1} +{"session_id":"sess-631063bdbb7b","input_length":1072,"output_length":308,"hash_ids":[1052061,1052062,1052063],"delay":17562.0} +{"session_id":"sess-631063bdbb7b","input_length":660,"output_length":974,"hash_ids":[1052064,1052065],"delay":7831.9} +{"session_id":"sess-631063bdbb7b","input_length":2599,"output_length":461,"hash_ids":[1052066,1052067,1052068,1052069,1052070,1052071],"delay":18506.3} +{"session_id":"sess-631063bdbb7b","input_length":283,"output_length":133,"hash_ids":[1052072],"delay":247.2} +{"session_id":"sess-631063bdbb7b","input_length":1022,"output_length":720,"hash_ids":[1052073,1052074],"delay":1930.8} +{"session_id":"sess-631063bdbb7b","input_length":1208,"output_length":344,"hash_ids":[1052075,1052076,1052077],"delay":632.5} +{"session_id":"sess-631063bdbb7b","input_length":851,"output_length":89,"hash_ids":[1052078,1052079],"delay":3121.2} +{"session_id":"sess-631063bdbb7b","input_length":1721,"output_length":358,"hash_ids":[1052080,1052081,1052082,1052083],"delay":10333.2} +{"session_id":"sess-631063bdbb7b","input_length":414,"output_length":134,"hash_ids":[1052084],"delay":908.8} +{"session_id":"sess-631063bdbb7b","input_length":2074,"output_length":337,"hash_ids":[1052085,1052086,1052087,1052088,1052089],"delay":285.0} +{"session_id":"sess-631063bdbb7b","input_length":2434,"output_length":443,"hash_ids":[1052090,1052091,1052092,1052093,1052094],"delay":3840.7} +{"session_id":"sess-631063bdbb7b","input_length":1713,"output_length":346,"hash_ids":[1052095,1052096,1052097,1052098],"delay":1295.5} +{"session_id":"sess-631063bdbb7b","input_length":849,"output_length":550,"hash_ids":[1052099,1052100],"delay":316.0} +{"session_id":"sess-631063bdbb7b","input_length":432,"output_length":349,"hash_ids":[1052101],"delay":251.0} +{"session_id":"sess-631063bdbb7b","input_length":521,"output_length":634,"hash_ids":[1052102,1052103],"delay":84.3} +{"session_id":"sess-03c20a2a40a7","input_length":27918,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,1056032,1056033,1056034],"timestamp":0.0,"group_id":12} +{"session_id":"sess-03c20a2a40a7","input_length":262,"output_length":922,"hash_ids":[1056035],"delay":928.4} +{"session_id":"sess-03c20a2a40a7","input_length":693,"output_length":161,"hash_ids":[1056036,1056037],"delay":17069.8} +{"session_id":"sess-03c20a2a40a7","input_length":224,"output_length":165,"hash_ids":[1056038],"delay":2222.5} +{"session_id":"sess-bcce606ce471","input_length":34603,"output_length":659,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1060032,1060033,1060034,1060035,1060036,1060037,1060038,1060039,1060040,1060041,1060042,1060043,1060044,1060045,1060046,1060047],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bcce606ce471","input_length":1300,"output_length":212,"hash_ids":[1060048,1060049,1060050],"delay":23062.5} +{"session_id":"sess-bcce606ce471","input_length":1220,"output_length":139,"hash_ids":[1060051,1060052,1060053],"delay":33026.6} +{"session_id":"sess-bcce606ce471","input_length":590,"output_length":52,"hash_ids":[1060054,1060055],"delay":778.5} +{"session_id":"sess-bcce606ce471","input_length":2919,"output_length":181,"hash_ids":[1060056,1060057,1060058,1060059,1060060,1060061],"delay":10043.2} +{"session_id":"sess-bcce606ce471","input_length":153,"output_length":112,"hash_ids":[1060062],"delay":4395.2} +{"session_id":"sess-bcce606ce471","input_length":518,"output_length":350,"hash_ids":[1060063,1060064],"delay":19555.3} +{"session_id":"sess-bcce606ce471","input_length":1862,"output_length":149,"hash_ids":[1060065,1060066,1060067,1060068],"delay":375.2} +{"session_id":"sess-bcce606ce471","input_length":1351,"output_length":293,"hash_ids":[1060069,1060070,1060071],"delay":4165.2} +{"session_id":"sess-bcce606ce471","input_length":469,"output_length":190,"hash_ids":[1060072],"delay":1523.7} +{"session_id":"sess-bcce606ce471","input_length":300,"output_length":552,"hash_ids":[1060073],"delay":19787.7} +{"session_id":"sess-bcce606ce471","input_length":199,"output_length":222,"hash_ids":[1060074],"delay":1765.5} +{"session_id":"sess-bcce606ce471","input_length":2367,"output_length":93,"hash_ids":[1060075,1060076,1060077,1060078,1060079],"delay":2101.6} +{"session_id":"sess-0f755fcb9282","input_length":30227,"output_length":211,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1064032,1064033,1064034,1064035,1064036,1064037,1064038,1064039],"timestamp":0.0,"group_id":7} +{"session_id":"sess-0f755fcb9282","input_length":432,"output_length":922,"hash_ids":[1064040],"delay":4122.6} +{"session_id":"sess-0f755fcb9282","input_length":1051,"output_length":647,"hash_ids":[1064041,1064042,1064043],"delay":2160.4} +{"session_id":"sess-0f755fcb9282","input_length":868,"output_length":528,"hash_ids":[1064044,1064045],"delay":5124.2} +{"session_id":"sess-0f755fcb9282","input_length":1097,"output_length":205,"hash_ids":[1064046,1064047,1064048],"delay":117.8} +{"session_id":"sess-0f755fcb9282","input_length":851,"output_length":1054,"hash_ids":[1064049,1064050],"delay":654.9} +{"session_id":"sess-0f755fcb9282","input_length":2458,"output_length":333,"hash_ids":[1064051,1064052,1064053,1064054,1064055],"delay":6029.4} +{"session_id":"sess-0f755fcb9282","input_length":510,"output_length":141,"hash_ids":[1064056],"delay":10262.2} +{"session_id":"sess-0f755fcb9282","input_length":1263,"output_length":1045,"hash_ids":[1064057,1064058,1064059],"delay":2115.3} +{"session_id":"sess-0f755fcb9282","input_length":825,"output_length":196,"hash_ids":[1064060,1064061],"delay":933.2} +{"session_id":"sess-0f755fcb9282","input_length":1487,"output_length":269,"hash_ids":[1064062,1064063,1064064],"delay":28027.9} +{"session_id":"sess-0f755fcb9282","input_length":2266,"output_length":30,"hash_ids":[1064065,1064066,1064067,1064068,1064069],"delay":2249.5} +{"session_id":"sess-0f755fcb9282","input_length":286,"output_length":105,"hash_ids":[1064070],"delay":554.0} +{"session_id":"sess-0f755fcb9282","input_length":466,"output_length":437,"hash_ids":[1064071],"delay":7210.2} +{"session_id":"sess-0f755fcb9282","input_length":703,"output_length":356,"hash_ids":[1064072,1064073],"delay":1229.8} +{"session_id":"sess-bd499b991961","input_length":27170,"output_length":205,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1068032,1068033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bd499b991961","input_length":1247,"output_length":129,"hash_ids":[1068034,1068035,1068036],"delay":1533.2} +{"session_id":"sess-bd499b991961","input_length":850,"output_length":429,"hash_ids":[1068037,1068038],"delay":1253.6} +{"session_id":"sess-bd499b991961","input_length":167,"output_length":286,"hash_ids":[1068039],"delay":1103.4} +{"session_id":"sess-bd499b991961","input_length":461,"output_length":390,"hash_ids":[1068040],"delay":72119.2} +{"session_id":"sess-bd499b991961","input_length":1201,"output_length":163,"hash_ids":[1068041,1068042,1068043],"delay":30580.4} +{"session_id":"sess-bd499b991961","input_length":290,"output_length":30,"hash_ids":[1068044],"delay":784.4} +{"session_id":"sess-bd499b991961","input_length":721,"output_length":809,"hash_ids":[1068045,1068046],"delay":820.0} +{"session_id":"sess-bd499b991961","input_length":1515,"output_length":122,"hash_ids":[1068047,1068048,1068049],"delay":4326.5} +{"session_id":"sess-bd499b991961","input_length":568,"output_length":309,"hash_ids":[1068050,1068051],"delay":366.8} +{"session_id":"sess-40e39af52583","input_length":27465,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1072032,1072033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-40e39af52583","input_length":2987,"output_length":40,"hash_ids":[1072034,1072035,1072036,1072037,1072038,1072039],"delay":1235.2} +{"session_id":"sess-40e39af52583","input_length":2470,"output_length":68,"hash_ids":[1072040,1072041,1072042,1072043,1072044],"delay":16197.9} +{"session_id":"sess-40e39af52583","input_length":2968,"output_length":39,"hash_ids":[1072045,1072046,1072047,1072048,1072049,1072050],"delay":2081.3} +{"session_id":"sess-40e39af52583","input_length":340,"output_length":109,"hash_ids":[1072051],"delay":2099.3} +{"session_id":"sess-40e39af52583","input_length":1464,"output_length":767,"hash_ids":[1072052,1072053,1072054],"delay":292.2} +{"session_id":"sess-40e39af52583","input_length":245,"output_length":289,"hash_ids":[1072055],"delay":3550.2} +{"session_id":"sess-40e39af52583","input_length":1348,"output_length":398,"hash_ids":[1072056,1072057,1072058],"delay":4238.7} +{"session_id":"sess-40e39af52583","input_length":801,"output_length":179,"hash_ids":[1072059,1072060],"delay":960.9} +{"session_id":"sess-40e39af52583","input_length":1668,"output_length":278,"hash_ids":[1072061,1072062,1072063,1072064],"delay":28112.5} +{"session_id":"sess-40e39af52583","input_length":1731,"output_length":53,"hash_ids":[1072065,1072066,1072067,1072068],"delay":503.4} +{"session_id":"sess-40e39af52583","input_length":220,"output_length":244,"hash_ids":[1072069],"delay":804.0} +{"session_id":"sess-40e39af52583","input_length":1141,"output_length":588,"hash_ids":[1072070,1072071,1072072],"delay":488.7} +{"session_id":"sess-40e39af52583","input_length":1105,"output_length":823,"hash_ids":[1072073,1072074,1072075],"delay":649.6} +{"session_id":"sess-40e39af52583","input_length":192,"output_length":350,"hash_ids":[1072076],"delay":297.5} +{"session_id":"sess-40e39af52583","input_length":1219,"output_length":65,"hash_ids":[1072077,1072078,1072079],"delay":775.4} +{"session_id":"sess-40e39af52583","input_length":634,"output_length":811,"hash_ids":[1072080,1072081],"delay":1989.9} +{"session_id":"sess-40e39af52583","input_length":920,"output_length":248,"hash_ids":[1072082,1072083],"delay":6229.5} +{"session_id":"sess-40e39af52583","input_length":366,"output_length":145,"hash_ids":[1072084],"delay":1435.0} +{"session_id":"sess-40e39af52583","input_length":2525,"output_length":167,"hash_ids":[1072085,1072086,1072087,1072088,1072089],"delay":4299.3} +{"session_id":"sess-40e39af52583","input_length":536,"output_length":155,"hash_ids":[1072090,1072091],"delay":656.0} +{"session_id":"sess-40e39af52583","input_length":750,"output_length":390,"hash_ids":[1072092,1072093],"delay":834.3} +{"session_id":"sess-40e39af52583","input_length":1759,"output_length":90,"hash_ids":[1072094,1072095,1072096,1072097],"delay":6589.0} +{"session_id":"sess-40e39af52583","input_length":507,"output_length":334,"hash_ids":[1072098],"delay":7605.3} +{"session_id":"sess-40e39af52583","input_length":2127,"output_length":206,"hash_ids":[1072099,1072100,1072101,1072102,1072103],"delay":173.3} +{"session_id":"sess-40e39af52583","input_length":298,"output_length":123,"hash_ids":[1072104],"delay":333.6} +{"session_id":"sess-854a6aedc273","input_length":27967,"output_length":432,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1076032,1076033,1076034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-854a6aedc273","input_length":1224,"output_length":92,"hash_ids":[1076035,1076036,1076037],"delay":42426.5} +{"session_id":"sess-854a6aedc273","input_length":1220,"output_length":92,"hash_ids":[1076038,1076039,1076040],"delay":1978.5} +{"session_id":"sess-854a6aedc273","input_length":224,"output_length":32,"hash_ids":[1076041],"delay":1465.2} +{"session_id":"sess-854a6aedc273","input_length":2263,"output_length":214,"hash_ids":[1076042,1076043,1076044,1076045,1076046],"delay":2647.1} +{"session_id":"sess-854a6aedc273","input_length":315,"output_length":297,"hash_ids":[1076047],"delay":6208.9} +{"session_id":"sess-854a6aedc273","input_length":1712,"output_length":86,"hash_ids":[1076048,1076049,1076050,1076051],"delay":604.1} +{"session_id":"sess-854a6aedc273","input_length":1047,"output_length":371,"hash_ids":[1076052,1076053,1076054],"delay":613.7} +{"session_id":"sess-854a6aedc273","input_length":1869,"output_length":379,"hash_ids":[1076055,1076056,1076057,1076058],"delay":668.4} +{"session_id":"sess-854a6aedc273","input_length":1398,"output_length":30,"hash_ids":[1076059,1076060,1076061],"delay":15529.3} +{"session_id":"sess-854a6aedc273","input_length":766,"output_length":205,"hash_ids":[1076062,1076063],"delay":426.8} +{"session_id":"sess-854a6aedc273","input_length":396,"output_length":296,"hash_ids":[1076064],"delay":953.2} +{"session_id":"sess-854a6aedc273","input_length":400,"output_length":315,"hash_ids":[1076065],"delay":1193.0} +{"session_id":"sess-854a6aedc273","input_length":295,"output_length":99,"hash_ids":[1076066],"delay":6204.3} +{"session_id":"sess-854a6aedc273","input_length":1068,"output_length":46,"hash_ids":[1076067,1076068,1076069],"delay":482.6} +{"session_id":"sess-854a6aedc273","input_length":106,"output_length":295,"hash_ids":[1076070],"delay":1224.9} +{"session_id":"sess-854a6aedc273","input_length":1157,"output_length":93,"hash_ids":[1076071,1076072,1076073],"delay":941.2} +{"session_id":"sess-00b6e12baef5","input_length":26845,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1080032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-00b6e12baef5","input_length":2671,"output_length":480,"hash_ids":[1080033,1080034,1080035,1080036,1080037,1080038],"delay":459.4} +{"session_id":"sess-00b6e12baef5","input_length":1021,"output_length":138,"hash_ids":[1080039,1080040],"delay":29327.1} +{"session_id":"sess-00b6e12baef5","input_length":1165,"output_length":139,"hash_ids":[1080041,1080042,1080043],"delay":577.2} +{"session_id":"sess-00b6e12baef5","input_length":1433,"output_length":686,"hash_ids":[1080044,1080045,1080046],"delay":11219.9} +{"session_id":"sess-00b6e12baef5","input_length":460,"output_length":113,"hash_ids":[1080047],"delay":2545.6} +{"session_id":"sess-00b6e12baef5","input_length":2135,"output_length":113,"hash_ids":[1080048,1080049,1080050,1080051,1080052],"delay":442.8} +{"session_id":"sess-00b6e12baef5","input_length":1733,"output_length":1390,"hash_ids":[1080053,1080054,1080055,1080056],"delay":12724.0} +{"session_id":"sess-00b6e12baef5","input_length":2285,"output_length":264,"hash_ids":[1080057,1080058,1080059,1080060,1080061],"delay":545.9} +{"session_id":"sess-00b6e12baef5","input_length":2803,"output_length":174,"hash_ids":[1080062,1080063,1080064,1080065,1080066,1080067],"delay":859.2} +{"session_id":"sess-00b6e12baef5","input_length":2917,"output_length":126,"hash_ids":[1080068,1080069,1080070,1080071,1080072,1080073],"delay":950.0} +{"session_id":"sess-00b6e12baef5","input_length":202,"output_length":206,"hash_ids":[1080074],"delay":504.3} +{"session_id":"sess-b07f965423c9","input_length":27133,"output_length":310,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1084032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b07f965423c9","input_length":1678,"output_length":795,"hash_ids":[1084033,1084034,1084035,1084036],"delay":850.8} +{"session_id":"sess-b07f965423c9","input_length":2508,"output_length":133,"hash_ids":[1084037,1084038,1084039,1084040,1084041],"delay":36748.2} +{"session_id":"sess-b07f965423c9","input_length":2698,"output_length":459,"hash_ids":[1084042,1084043,1084044,1084045,1084046,1084047],"delay":2310.0} +{"session_id":"sess-b07f965423c9","input_length":979,"output_length":30,"hash_ids":[1084048,1084049],"delay":2044.1} +{"session_id":"sess-b07f965423c9","input_length":384,"output_length":500,"hash_ids":[1084050],"delay":2270.9} +{"session_id":"sess-b07f965423c9","input_length":177,"output_length":100,"hash_ids":[1084051],"delay":2317.4} +{"session_id":"sess-b07f965423c9","input_length":1189,"output_length":316,"hash_ids":[1084052,1084053,1084054],"delay":1305.3} +{"session_id":"sess-b07f965423c9","input_length":858,"output_length":251,"hash_ids":[1084055,1084056],"delay":459.0} +{"session_id":"sess-b07f965423c9","input_length":2027,"output_length":336,"hash_ids":[1084057,1084058,1084059,1084060],"delay":696.3} +{"session_id":"sess-b07f965423c9","input_length":617,"output_length":369,"hash_ids":[1084061,1084062],"delay":1852.3} +{"session_id":"sess-b07f965423c9","input_length":1194,"output_length":130,"hash_ids":[1084063,1084064,1084065],"delay":462.6} +{"session_id":"sess-b07f965423c9","input_length":1072,"output_length":672,"hash_ids":[1084066,1084067,1084068],"delay":1591.9} +{"session_id":"sess-b07f965423c9","input_length":1748,"output_length":327,"hash_ids":[1084069,1084070,1084071,1084072],"delay":715.2} +{"session_id":"sess-b07f965423c9","input_length":785,"output_length":82,"hash_ids":[1084073,1084074],"delay":606.7} +{"session_id":"sess-b07f965423c9","input_length":625,"output_length":330,"hash_ids":[1084075,1084076],"delay":340.4} +{"session_id":"sess-b07f965423c9","input_length":1254,"output_length":91,"hash_ids":[1084077,1084078,1084079],"delay":25046.2} +{"session_id":"sess-b07f965423c9","input_length":2284,"output_length":759,"hash_ids":[1084080,1084081,1084082,1084083,1084084],"delay":562.5} +{"session_id":"sess-b07f965423c9","input_length":2983,"output_length":44,"hash_ids":[1084085,1084086,1084087,1084088,1084089,1084090],"delay":1130.3} +{"session_id":"sess-b07f965423c9","input_length":1584,"output_length":249,"hash_ids":[1084091,1084092,1084093,1084094],"delay":3816.0} +{"session_id":"sess-b07f965423c9","input_length":669,"output_length":272,"hash_ids":[1084095,1084096],"delay":4483.5} +{"session_id":"sess-b07f965423c9","input_length":924,"output_length":67,"hash_ids":[1084097,1084098],"delay":437.0} +{"session_id":"sess-b07f965423c9","input_length":286,"output_length":1492,"hash_ids":[1084099],"delay":412.9} +{"session_id":"sess-514dec147e05","input_length":31697,"output_length":905,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1088032,1088033,1088034,1088035,1088036,1088037,1088038,1088039,1088040,1088041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-514dec147e05","input_length":581,"output_length":128,"hash_ids":[1088042,1088043],"delay":826.3} +{"session_id":"sess-514dec147e05","input_length":965,"output_length":117,"hash_ids":[1088044,1088045],"delay":37485.0} +{"session_id":"sess-514dec147e05","input_length":2362,"output_length":259,"hash_ids":[1088046,1088047,1088048,1088049,1088050],"delay":22766.6} +{"session_id":"sess-514dec147e05","input_length":800,"output_length":432,"hash_ids":[1088051,1088052],"delay":6475.0} +{"session_id":"sess-514dec147e05","input_length":514,"output_length":291,"hash_ids":[1088053,1088054],"delay":1999.8} +{"session_id":"sess-514dec147e05","input_length":191,"output_length":40,"hash_ids":[1088055],"delay":9742.6} +{"session_id":"sess-514dec147e05","input_length":1214,"output_length":49,"hash_ids":[1088056,1088057,1088058],"delay":5550.4} +{"session_id":"sess-514dec147e05","input_length":1064,"output_length":30,"hash_ids":[1088059,1088060,1088061],"delay":7028.8} +{"session_id":"sess-514dec147e05","input_length":1059,"output_length":182,"hash_ids":[1088062,1088063,1088064],"delay":402.6} +{"session_id":"sess-514dec147e05","input_length":1823,"output_length":497,"hash_ids":[1088065,1088066,1088067,1088068],"delay":5925.6} +{"session_id":"sess-514dec147e05","input_length":350,"output_length":683,"hash_ids":[1088069],"delay":2031.5} +{"session_id":"sess-514dec147e05","input_length":1082,"output_length":190,"hash_ids":[1088070,1088071,1088072],"delay":878.5} +{"session_id":"sess-514dec147e05","input_length":621,"output_length":131,"hash_ids":[1088073,1088074],"delay":545.1} +{"session_id":"sess-514dec147e05","input_length":608,"output_length":784,"hash_ids":[1088075,1088076],"delay":542.1} +{"session_id":"sess-514dec147e05","input_length":184,"output_length":116,"hash_ids":[1088077],"delay":1811.5} +{"session_id":"sess-514dec147e05","input_length":151,"output_length":1431,"hash_ids":[1088078],"delay":118.9} +{"session_id":"sess-514dec147e05","input_length":2284,"output_length":177,"hash_ids":[1088079,1088080,1088081,1088082,1088083],"delay":957.2} +{"session_id":"sess-514dec147e05","input_length":267,"output_length":337,"hash_ids":[1088084],"delay":593.6} +{"session_id":"sess-514dec147e05","input_length":1820,"output_length":208,"hash_ids":[1088085,1088086,1088087,1088088],"delay":1101.7} +{"session_id":"sess-514dec147e05","input_length":593,"output_length":558,"hash_ids":[1088089,1088090],"delay":394.2} +{"session_id":"sess-514dec147e05","input_length":473,"output_length":469,"hash_ids":[1088091],"delay":608.7} +{"session_id":"sess-514dec147e05","input_length":178,"output_length":108,"hash_ids":[1088092],"delay":531.2} +{"session_id":"sess-514dec147e05","input_length":213,"output_length":270,"hash_ids":[1088093],"delay":518.1} +{"session_id":"sess-514dec147e05","input_length":2854,"output_length":246,"hash_ids":[1088094,1088095,1088096,1088097,1088098,1088099],"delay":754.4} +{"session_id":"sess-514dec147e05","input_length":183,"output_length":43,"hash_ids":[1088100],"delay":259.0} +{"session_id":"sess-514dec147e05","input_length":846,"output_length":49,"hash_ids":[1088101,1088102],"delay":13087.5} +{"session_id":"sess-514dec147e05","input_length":648,"output_length":85,"hash_ids":[1088103,1088104],"delay":516.0} +{"session_id":"sess-55221d24c3d9","input_length":26869,"output_length":435,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1092032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-55221d24c3d9","input_length":2122,"output_length":84,"hash_ids":[1092033,1092034,1092035,1092036,1092037],"delay":2406.7} +{"session_id":"sess-55221d24c3d9","input_length":338,"output_length":89,"hash_ids":[1092038],"delay":1645.5} +{"session_id":"sess-55221d24c3d9","input_length":248,"output_length":197,"hash_ids":[1092039],"delay":3788.8} +{"session_id":"sess-55221d24c3d9","input_length":1984,"output_length":39,"hash_ids":[1092040,1092041,1092042,1092043],"delay":16591.6} +{"session_id":"sess-55221d24c3d9","input_length":1360,"output_length":489,"hash_ids":[1092044,1092045,1092046],"delay":1293.3} +{"session_id":"sess-55221d24c3d9","input_length":1578,"output_length":597,"hash_ids":[1092047,1092048,1092049,1092050],"delay":889.7} +{"session_id":"sess-55221d24c3d9","input_length":602,"output_length":381,"hash_ids":[1092051,1092052],"delay":1694.3} +{"session_id":"sess-55221d24c3d9","input_length":783,"output_length":229,"hash_ids":[1092053,1092054],"delay":1838.9} +{"session_id":"sess-55221d24c3d9","input_length":1715,"output_length":339,"hash_ids":[1092055,1092056,1092057,1092058],"delay":10257.2} +{"session_id":"sess-55221d24c3d9","input_length":601,"output_length":212,"hash_ids":[1092059,1092060],"delay":484.1} +{"session_id":"sess-55221d24c3d9","input_length":2928,"output_length":189,"hash_ids":[1092061,1092062,1092063,1092064,1092065,1092066],"delay":558.3} +{"session_id":"sess-55221d24c3d9","input_length":1674,"output_length":168,"hash_ids":[1092067,1092068,1092069,1092070],"delay":771.6} +{"session_id":"sess-55221d24c3d9","input_length":1166,"output_length":90,"hash_ids":[1092071,1092072,1092073],"delay":49216.4} +{"session_id":"sess-55221d24c3d9","input_length":446,"output_length":187,"hash_ids":[1092074],"delay":45291.9} +{"session_id":"sess-55221d24c3d9","input_length":490,"output_length":148,"hash_ids":[1092075],"delay":571.1} +{"session_id":"sess-55221d24c3d9","input_length":1559,"output_length":172,"hash_ids":[1092076,1092077,1092078,1092079],"delay":8284.2} +{"session_id":"sess-55221d24c3d9","input_length":1212,"output_length":833,"hash_ids":[1092080,1092081,1092082],"delay":219.6} +{"session_id":"sess-55221d24c3d9","input_length":553,"output_length":141,"hash_ids":[1092083,1092084],"delay":4314.6} +{"session_id":"sess-55221d24c3d9","input_length":1016,"output_length":159,"hash_ids":[1092085,1092086],"delay":271.7} +{"session_id":"sess-55221d24c3d9","input_length":418,"output_length":30,"hash_ids":[1092087],"delay":572.6} +{"session_id":"sess-55221d24c3d9","input_length":2406,"output_length":259,"hash_ids":[1092088,1092089,1092090,1092091,1092092],"delay":126.5} +{"session_id":"sess-55221d24c3d9","input_length":106,"output_length":398,"hash_ids":[1092093],"delay":1626.9} +{"session_id":"sess-55221d24c3d9","input_length":1491,"output_length":179,"hash_ids":[1092094,1092095,1092096],"delay":510.5} +{"session_id":"sess-55221d24c3d9","input_length":195,"output_length":103,"hash_ids":[1092097],"delay":14759.9} +{"session_id":"sess-55221d24c3d9","input_length":469,"output_length":105,"hash_ids":[1092098],"delay":12456.8} +{"session_id":"sess-55221d24c3d9","input_length":483,"output_length":741,"hash_ids":[1092099],"delay":1181.3} +{"session_id":"sess-55221d24c3d9","input_length":2277,"output_length":333,"hash_ids":[1092100,1092101,1092102,1092103,1092104],"delay":731.9} +{"session_id":"sess-55221d24c3d9","input_length":1047,"output_length":187,"hash_ids":[1092105,1092106,1092107],"delay":971.7} +{"session_id":"sess-94a5fea9df1c","input_length":27739,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,1096032,1096033,1096034],"timestamp":0.0,"group_id":13} +{"session_id":"sess-94a5fea9df1c","input_length":301,"output_length":515,"hash_ids":[1096035],"delay":1442.3} +{"session_id":"sess-94a5fea9df1c","input_length":431,"output_length":287,"hash_ids":[1096036],"delay":1255.6} +{"session_id":"sess-94a5fea9df1c","input_length":668,"output_length":82,"hash_ids":[1096037,1096038],"delay":2629.0} +{"session_id":"sess-94a5fea9df1c","input_length":2214,"output_length":204,"hash_ids":[1096039,1096040,1096041,1096042,1096043],"delay":29698.6} +{"session_id":"sess-94a5fea9df1c","input_length":608,"output_length":141,"hash_ids":[1096044,1096045],"delay":1544.2} +{"session_id":"sess-94a5fea9df1c","input_length":157,"output_length":198,"hash_ids":[1096046],"delay":12709.5} +{"session_id":"sess-94a5fea9df1c","input_length":386,"output_length":30,"hash_ids":[1096047],"delay":14039.0} +{"session_id":"sess-94a5fea9df1c","input_length":773,"output_length":200,"hash_ids":[1096048,1096049],"delay":822.5} +{"session_id":"sess-54f1270824d3","input_length":28034,"output_length":133,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1100032,1100033,1100034],"timestamp":0.0,"group_id":10} +{"session_id":"sess-54f1270824d3","input_length":2001,"output_length":631,"hash_ids":[1100035,1100036,1100037,1100038],"delay":48476.6} +{"session_id":"sess-54f1270824d3","input_length":1570,"output_length":317,"hash_ids":[1100039,1100040,1100041,1100042],"delay":463.6} +{"session_id":"sess-54f1270824d3","input_length":1685,"output_length":166,"hash_ids":[1100043,1100044,1100045,1100046],"delay":1329.7} +{"session_id":"sess-54f1270824d3","input_length":1538,"output_length":240,"hash_ids":[1100047,1100048,1100049,1100050],"delay":9327.6} +{"session_id":"sess-54f1270824d3","input_length":182,"output_length":82,"hash_ids":[1100051],"delay":636.6} +{"session_id":"sess-54f1270824d3","input_length":783,"output_length":124,"hash_ids":[1100052,1100053],"delay":559.3} +{"session_id":"sess-54f1270824d3","input_length":328,"output_length":159,"hash_ids":[1100054],"delay":16128.6} +{"session_id":"sess-54f1270824d3","input_length":1670,"output_length":365,"hash_ids":[1100055,1100056,1100057,1100058],"delay":1396.3} +{"session_id":"sess-54f1270824d3","input_length":151,"output_length":79,"hash_ids":[1100059],"delay":1415.1} +{"session_id":"sess-54f1270824d3","input_length":1271,"output_length":103,"hash_ids":[1100060,1100061,1100062],"delay":461.9} +{"session_id":"sess-54f1270824d3","input_length":2329,"output_length":648,"hash_ids":[1100063,1100064,1100065,1100066,1100067],"delay":1369.4} +{"session_id":"sess-54f1270824d3","input_length":873,"output_length":177,"hash_ids":[1100068,1100069],"delay":1593.4} +{"session_id":"sess-54f1270824d3","input_length":1210,"output_length":409,"hash_ids":[1100070,1100071,1100072],"delay":140.8} +{"session_id":"sess-54f1270824d3","input_length":369,"output_length":49,"hash_ids":[1100073],"delay":444.0} +{"session_id":"sess-54f1270824d3","input_length":933,"output_length":172,"hash_ids":[1100074,1100075],"delay":21737.7} +{"session_id":"sess-54f1270824d3","input_length":657,"output_length":32,"hash_ids":[1100076,1100077],"delay":1434.2} +{"session_id":"sess-54f1270824d3","input_length":823,"output_length":1453,"hash_ids":[1100078,1100079],"delay":16879.9} +{"session_id":"sess-2cca6bbd8543","input_length":31395,"output_length":526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1104032,1104033,1104034,1104035,1104036,1104037,1104038,1104039,1104040,1104041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2cca6bbd8543","input_length":2630,"output_length":97,"hash_ids":[1104042,1104043,1104044,1104045,1104046,1104047],"delay":2035.8} +{"session_id":"sess-2cca6bbd8543","input_length":431,"output_length":328,"hash_ids":[1104048],"delay":2517.6} +{"session_id":"sess-2cca6bbd8543","input_length":2275,"output_length":364,"hash_ids":[1104049,1104050,1104051,1104052,1104053],"delay":454.8} +{"session_id":"sess-2cca6bbd8543","input_length":130,"output_length":128,"hash_ids":[1104054],"delay":5078.4} +{"session_id":"sess-2cca6bbd8543","input_length":2180,"output_length":391,"hash_ids":[1104055,1104056,1104057,1104058,1104059],"delay":139.7} +{"session_id":"sess-2cca6bbd8543","input_length":414,"output_length":149,"hash_ids":[1104060],"delay":458.4} +{"session_id":"sess-2cca6bbd8543","input_length":1098,"output_length":139,"hash_ids":[1104061,1104062,1104063],"delay":31820.3} +{"session_id":"sess-2cca6bbd8543","input_length":2136,"output_length":291,"hash_ids":[1104064,1104065,1104066,1104067,1104068],"delay":2463.2} +{"session_id":"sess-2cca6bbd8543","input_length":451,"output_length":156,"hash_ids":[1104069],"delay":7525.4} +{"session_id":"sess-2cca6bbd8543","input_length":248,"output_length":305,"hash_ids":[1104070],"delay":8069.7} +{"session_id":"sess-2cca6bbd8543","input_length":651,"output_length":133,"hash_ids":[1104071,1104072],"delay":860.4} +{"session_id":"sess-2cca6bbd8543","input_length":1804,"output_length":329,"hash_ids":[1104073,1104074,1104075,1104076],"delay":777.6} +{"session_id":"sess-2cca6bbd8543","input_length":1122,"output_length":227,"hash_ids":[1104077,1104078,1104079],"delay":487.2} +{"session_id":"sess-2cca6bbd8543","input_length":1504,"output_length":61,"hash_ids":[1104080,1104081,1104082],"delay":4445.9} +{"session_id":"sess-2cca6bbd8543","input_length":215,"output_length":271,"hash_ids":[1104083],"delay":13779.9} +{"session_id":"sess-2cca6bbd8543","input_length":2184,"output_length":458,"hash_ids":[1104084,1104085,1104086,1104087,1104088],"delay":1939.1} +{"session_id":"sess-2cca6bbd8543","input_length":508,"output_length":30,"hash_ids":[1104089],"delay":7700.2} +{"session_id":"sess-6a4b53f2441e","input_length":31854,"output_length":564,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,1108032,1108033,1108034,1108035,1108036,1108037,1108038,1108039,1108040,1108041,1108042],"timestamp":0.0,"group_id":37} +{"session_id":"sess-6a4b53f2441e","input_length":228,"output_length":119,"hash_ids":[1108043],"delay":464.4} +{"session_id":"sess-6a4b53f2441e","input_length":734,"output_length":259,"hash_ids":[1108044,1108045],"delay":23861.8} +{"session_id":"sess-6a4b53f2441e","input_length":176,"output_length":489,"hash_ids":[1108046],"delay":1607.6} +{"session_id":"sess-6a4b53f2441e","input_length":1045,"output_length":122,"hash_ids":[1108047,1108048,1108049],"delay":2004.5} +{"session_id":"sess-6a4b53f2441e","input_length":283,"output_length":583,"hash_ids":[1108050],"delay":338.5} +{"session_id":"sess-6a4b53f2441e","input_length":648,"output_length":461,"hash_ids":[1108051,1108052],"delay":1999.8} +{"session_id":"sess-6a4b53f2441e","input_length":335,"output_length":201,"hash_ids":[1108053],"delay":172.0} +{"session_id":"sess-6a4b53f2441e","input_length":2061,"output_length":764,"hash_ids":[1108054,1108055,1108056,1108057,1108058],"delay":787.7} +{"session_id":"sess-6a4b53f2441e","input_length":2319,"output_length":171,"hash_ids":[1108059,1108060,1108061,1108062,1108063],"delay":3308.2} +{"session_id":"sess-6a4b53f2441e","input_length":1486,"output_length":57,"hash_ids":[1108064,1108065,1108066],"delay":20789.3} +{"session_id":"sess-6a4b53f2441e","input_length":118,"output_length":104,"hash_ids":[1108067],"delay":1000.7} +{"session_id":"sess-6a4b53f2441e","input_length":1008,"output_length":49,"hash_ids":[1108068,1108069],"delay":1738.9} +{"session_id":"sess-6a4b53f2441e","input_length":2282,"output_length":269,"hash_ids":[1108070,1108071,1108072,1108073,1108074],"delay":1948.3} +{"session_id":"sess-6a4b53f2441e","input_length":115,"output_length":127,"hash_ids":[1108075],"delay":649.3} +{"session_id":"sess-6a4b53f2441e","input_length":262,"output_length":341,"hash_ids":[1108076],"delay":681.2} +{"session_id":"sess-6a4b53f2441e","input_length":2028,"output_length":108,"hash_ids":[1108077,1108078,1108079,1108080],"delay":23732.6} +{"session_id":"sess-6a4b53f2441e","input_length":264,"output_length":79,"hash_ids":[1108081],"delay":250.8} +{"session_id":"sess-6a4b53f2441e","input_length":2980,"output_length":193,"hash_ids":[1108082,1108083,1108084,1108085,1108086,1108087],"delay":932.9} +{"session_id":"sess-6a4b53f2441e","input_length":1076,"output_length":135,"hash_ids":[1108088,1108089,1108090],"delay":15277.6} +{"session_id":"sess-6a4b53f2441e","input_length":1559,"output_length":103,"hash_ids":[1108091,1108092,1108093,1108094],"delay":1215.3} +{"session_id":"sess-6a4b53f2441e","input_length":420,"output_length":210,"hash_ids":[1108095],"delay":1052.6} +{"session_id":"sess-6a4b53f2441e","input_length":2443,"output_length":215,"hash_ids":[1108096,1108097,1108098,1108099,1108100],"delay":508.9} +{"session_id":"sess-6a4b53f2441e","input_length":602,"output_length":677,"hash_ids":[1108101,1108102],"delay":13170.5} +{"session_id":"sess-6a4b53f2441e","input_length":773,"output_length":322,"hash_ids":[1108103,1108104],"delay":304.7} +{"session_id":"sess-6a4b53f2441e","input_length":249,"output_length":162,"hash_ids":[1108105],"delay":307.6} +{"session_id":"sess-6a4b53f2441e","input_length":396,"output_length":208,"hash_ids":[1108106],"delay":321.7} +{"session_id":"sess-6a4b53f2441e","input_length":365,"output_length":323,"hash_ids":[1108107],"delay":8212.8} +{"session_id":"sess-4832c9658008","input_length":28072,"output_length":305,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1112032,1112033,1112034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4832c9658008","input_length":2623,"output_length":246,"hash_ids":[1112035,1112036,1112037,1112038,1112039,1112040],"delay":1511.2} +{"session_id":"sess-4832c9658008","input_length":1276,"output_length":187,"hash_ids":[1112041,1112042,1112043],"delay":3500.9} +{"session_id":"sess-4832c9658008","input_length":2453,"output_length":1264,"hash_ids":[1112044,1112045,1112046,1112047,1112048],"delay":55364.4} +{"session_id":"sess-4832c9658008","input_length":1995,"output_length":429,"hash_ids":[1112049,1112050,1112051,1112052],"delay":696.2} +{"session_id":"sess-4832c9658008","input_length":446,"output_length":761,"hash_ids":[1112053],"delay":7598.6} +{"session_id":"sess-4832c9658008","input_length":96,"output_length":158,"hash_ids":[1112054],"delay":18233.6} +{"session_id":"sess-4832c9658008","input_length":1040,"output_length":123,"hash_ids":[1112055,1112056,1112057],"delay":232.6} +{"session_id":"sess-4832c9658008","input_length":829,"output_length":48,"hash_ids":[1112058,1112059],"delay":24071.1} +{"session_id":"sess-4832c9658008","input_length":1173,"output_length":103,"hash_ids":[1112060,1112061,1112062],"delay":424.2} +{"session_id":"sess-4832c9658008","input_length":856,"output_length":89,"hash_ids":[1112063,1112064],"delay":308.4} +{"session_id":"sess-4832c9658008","input_length":1280,"output_length":329,"hash_ids":[1112065,1112066,1112067],"delay":988.8} +{"session_id":"sess-4832c9658008","input_length":451,"output_length":458,"hash_ids":[1112068],"delay":1435.3} +{"session_id":"sess-4832c9658008","input_length":159,"output_length":408,"hash_ids":[1112069],"delay":583.6} +{"session_id":"sess-4832c9658008","input_length":807,"output_length":484,"hash_ids":[1112070,1112071],"delay":8672.9} +{"session_id":"sess-4832c9658008","input_length":561,"output_length":180,"hash_ids":[1112072,1112073],"delay":6005.4} +{"session_id":"sess-4832c9658008","input_length":1178,"output_length":152,"hash_ids":[1112074,1112075,1112076],"delay":706.0} +{"session_id":"sess-4832c9658008","input_length":1638,"output_length":82,"hash_ids":[1112077,1112078,1112079,1112080],"delay":1248.1} +{"session_id":"sess-4832c9658008","input_length":1980,"output_length":174,"hash_ids":[1112081,1112082,1112083,1112084],"delay":431.5} +{"session_id":"sess-4832c9658008","input_length":822,"output_length":56,"hash_ids":[1112085,1112086],"delay":332.9} +{"session_id":"sess-4832c9658008","input_length":1013,"output_length":118,"hash_ids":[1112087,1112088],"delay":1602.3} +{"session_id":"sess-4832c9658008","input_length":684,"output_length":438,"hash_ids":[1112089,1112090],"delay":170.4} +{"session_id":"sess-4832c9658008","input_length":357,"output_length":329,"hash_ids":[1112091],"delay":5567.8} +{"session_id":"sess-4832c9658008","input_length":1521,"output_length":105,"hash_ids":[1112092,1112093,1112094],"delay":708.3} +{"session_id":"sess-4832c9658008","input_length":2392,"output_length":45,"hash_ids":[1112095,1112096,1112097,1112098,1112099],"delay":348.3} +{"session_id":"sess-4832c9658008","input_length":571,"output_length":375,"hash_ids":[1112100,1112101],"delay":251.7} +{"session_id":"sess-4832c9658008","input_length":957,"output_length":110,"hash_ids":[1112102,1112103],"delay":659.4} +{"session_id":"sess-4832c9658008","input_length":250,"output_length":215,"hash_ids":[1112104],"delay":161.7} +{"session_id":"sess-567b722c95cb","input_length":31179,"output_length":468,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,1116032,1116033,1116034,1116035,1116036,1116037,1116038,1116039,1116040],"timestamp":0.0,"group_id":13} +{"session_id":"sess-567b722c95cb","input_length":1054,"output_length":1080,"hash_ids":[1116041,1116042,1116043],"delay":808.6} +{"session_id":"sess-567b722c95cb","input_length":160,"output_length":423,"hash_ids":[1116044],"delay":769.3} +{"session_id":"sess-567b722c95cb","input_length":810,"output_length":565,"hash_ids":[1116045,1116046],"delay":27941.7} +{"session_id":"sess-567b722c95cb","input_length":1922,"output_length":462,"hash_ids":[1116047,1116048,1116049,1116050],"delay":2458.9} +{"session_id":"sess-567b722c95cb","input_length":1549,"output_length":724,"hash_ids":[1116051,1116052,1116053,1116054],"delay":823.1} +{"session_id":"sess-567b722c95cb","input_length":1855,"output_length":503,"hash_ids":[1116055,1116056,1116057,1116058],"delay":764.0} +{"session_id":"sess-567b722c95cb","input_length":1129,"output_length":34,"hash_ids":[1116059,1116060,1116061],"delay":8906.1} +{"session_id":"sess-567b722c95cb","input_length":456,"output_length":213,"hash_ids":[1116062],"delay":907.1} +{"session_id":"sess-567b722c95cb","input_length":551,"output_length":386,"hash_ids":[1116063,1116064],"delay":292.6} +{"session_id":"sess-567b722c95cb","input_length":754,"output_length":250,"hash_ids":[1116065,1116066],"delay":675.5} +{"session_id":"sess-567b722c95cb","input_length":430,"output_length":73,"hash_ids":[1116067],"delay":396.6} +{"session_id":"sess-567b722c95cb","input_length":1951,"output_length":143,"hash_ids":[1116068,1116069,1116070,1116071],"delay":1939.8} +{"session_id":"sess-567b722c95cb","input_length":188,"output_length":441,"hash_ids":[1116072],"delay":3686.0} +{"session_id":"sess-8c682f779141","input_length":30276,"output_length":258,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,1120032,1120033,1120034,1120035,1120036,1120037,1120038,1120039],"timestamp":0.0,"group_id":20} +{"session_id":"sess-8c682f779141","input_length":1480,"output_length":94,"hash_ids":[1120040,1120041,1120042],"delay":661.1} +{"session_id":"sess-8c682f779141","input_length":1220,"output_length":193,"hash_ids":[1120043,1120044,1120045],"delay":4080.8} +{"session_id":"sess-8c682f779141","input_length":300,"output_length":647,"hash_ids":[1120046],"delay":1118.9} +{"session_id":"sess-8c682f779141","input_length":634,"output_length":259,"hash_ids":[1120047,1120048],"delay":798.8} +{"session_id":"sess-8c682f779141","input_length":1712,"output_length":79,"hash_ids":[1120049,1120050,1120051,1120052],"delay":26862.9} +{"session_id":"sess-8c682f779141","input_length":844,"output_length":203,"hash_ids":[1120053,1120054],"delay":1225.5} +{"session_id":"sess-8c682f779141","input_length":1309,"output_length":101,"hash_ids":[1120055,1120056,1120057],"delay":550.5} +{"session_id":"sess-8c682f779141","input_length":2535,"output_length":156,"hash_ids":[1120058,1120059,1120060,1120061,1120062],"delay":1289.0} +{"session_id":"sess-8c682f779141","input_length":168,"output_length":380,"hash_ids":[1120063],"delay":10542.7} +{"session_id":"sess-8c682f779141","input_length":546,"output_length":30,"hash_ids":[1120064,1120065],"delay":183.4} +{"session_id":"sess-8c682f779141","input_length":779,"output_length":786,"hash_ids":[1120066,1120067],"delay":9757.6} +{"session_id":"sess-8c682f779141","input_length":590,"output_length":474,"hash_ids":[1120068,1120069],"delay":396.0} +{"session_id":"sess-8c682f779141","input_length":412,"output_length":663,"hash_ids":[1120070],"delay":1710.0} +{"session_id":"sess-8c682f779141","input_length":2450,"output_length":703,"hash_ids":[1120071,1120072,1120073,1120074,1120075],"delay":1188.9} +{"session_id":"sess-8c682f779141","input_length":2777,"output_length":43,"hash_ids":[1120076,1120077,1120078,1120079,1120080,1120081],"delay":1082.7} +{"session_id":"sess-2bd8edb42ab1","input_length":30352,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1124032,1124033,1124034,1124035,1124036,1124037,1124038,1124039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2bd8edb42ab1","input_length":1370,"output_length":407,"hash_ids":[1124040,1124041,1124042],"delay":462.2} +{"session_id":"sess-2bd8edb42ab1","input_length":353,"output_length":61,"hash_ids":[1124043],"delay":286.4} +{"session_id":"sess-2bd8edb42ab1","input_length":1681,"output_length":1319,"hash_ids":[1124044,1124045,1124046,1124047],"delay":556.0} +{"session_id":"sess-2bd8edb42ab1","input_length":1586,"output_length":91,"hash_ids":[1124048,1124049,1124050,1124051],"delay":13615.4} +{"session_id":"sess-2bd8edb42ab1","input_length":1815,"output_length":121,"hash_ids":[1124052,1124053,1124054,1124055],"delay":1076.9} +{"session_id":"sess-e9dcae517fa4","input_length":29431,"output_length":150,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,1128032,1128033,1128034,1128035,1128036,1128037],"timestamp":0.0,"group_id":37} +{"session_id":"sess-e9dcae517fa4","input_length":555,"output_length":844,"hash_ids":[1128038,1128039],"delay":2948.4} +{"session_id":"sess-e9dcae517fa4","input_length":1230,"output_length":102,"hash_ids":[1128040,1128041,1128042],"delay":1175.2} +{"session_id":"sess-e9dcae517fa4","input_length":225,"output_length":154,"hash_ids":[1128043],"delay":54598.4} +{"session_id":"sess-e9dcae517fa4","input_length":262,"output_length":320,"hash_ids":[1128044],"delay":596.8} +{"session_id":"sess-34f5b95e3fa3","input_length":31933,"output_length":262,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1132032,1132033,1132034,1132035,1132036,1132037,1132038,1132039,1132040,1132041,1132042],"timestamp":0.0,"group_id":1} +{"session_id":"sess-34f5b95e3fa3","input_length":879,"output_length":294,"hash_ids":[1132043,1132044],"delay":56871.9} +{"session_id":"sess-34f5b95e3fa3","input_length":332,"output_length":35,"hash_ids":[1132045],"delay":22487.2} +{"session_id":"sess-34f5b95e3fa3","input_length":752,"output_length":761,"hash_ids":[1132046,1132047],"delay":1161.9} +{"session_id":"sess-34f5b95e3fa3","input_length":730,"output_length":125,"hash_ids":[1132048,1132049],"delay":489.4} +{"session_id":"sess-34f5b95e3fa3","input_length":630,"output_length":94,"hash_ids":[1132050,1132051],"delay":4905.0} +{"session_id":"sess-34f5b95e3fa3","input_length":1153,"output_length":151,"hash_ids":[1132052,1132053,1132054],"delay":550.7} +{"session_id":"sess-34f5b95e3fa3","input_length":1512,"output_length":259,"hash_ids":[1132055,1132056,1132057],"delay":10536.8} +{"session_id":"sess-34f5b95e3fa3","input_length":688,"output_length":301,"hash_ids":[1132058,1132059],"delay":2838.9} +{"session_id":"sess-34f5b95e3fa3","input_length":601,"output_length":31,"hash_ids":[1132060,1132061],"delay":1264.9} +{"session_id":"sess-34f5b95e3fa3","input_length":540,"output_length":265,"hash_ids":[1132062,1132063],"delay":1106.1} +{"session_id":"sess-34f5b95e3fa3","input_length":1379,"output_length":58,"hash_ids":[1132064,1132065,1132066],"delay":3609.8} +{"session_id":"sess-34f5b95e3fa3","input_length":204,"output_length":423,"hash_ids":[1132067],"delay":680.2} +{"session_id":"sess-34f5b95e3fa3","input_length":1572,"output_length":485,"hash_ids":[1132068,1132069,1132070,1132071],"delay":7238.1} +{"session_id":"sess-34f5b95e3fa3","input_length":2696,"output_length":188,"hash_ids":[1132072,1132073,1132074,1132075,1132076,1132077],"delay":387.4} +{"session_id":"sess-34f5b95e3fa3","input_length":1712,"output_length":712,"hash_ids":[1132078,1132079,1132080,1132081],"delay":201.0} +{"session_id":"sess-34f5b95e3fa3","input_length":328,"output_length":277,"hash_ids":[1132082],"delay":898.0} +{"session_id":"sess-34f5b95e3fa3","input_length":1562,"output_length":46,"hash_ids":[1132083,1132084,1132085,1132086],"delay":3808.8} +{"session_id":"sess-34f5b95e3fa3","input_length":543,"output_length":402,"hash_ids":[1132087,1132088],"delay":179.2} +{"session_id":"sess-34f5b95e3fa3","input_length":2447,"output_length":305,"hash_ids":[1132089,1132090,1132091,1132092,1132093],"delay":10207.4} +{"session_id":"sess-34f5b95e3fa3","input_length":1190,"output_length":165,"hash_ids":[1132094,1132095,1132096],"delay":951.2} +{"session_id":"sess-34f5b95e3fa3","input_length":300,"output_length":84,"hash_ids":[1132097],"delay":806.7} +{"session_id":"sess-34f5b95e3fa3","input_length":1107,"output_length":70,"hash_ids":[1132098,1132099,1132100],"delay":24152.2} +{"session_id":"sess-34f5b95e3fa3","input_length":236,"output_length":714,"hash_ids":[1132101],"delay":77.8} +{"session_id":"sess-34f5b95e3fa3","input_length":2596,"output_length":49,"hash_ids":[1132102,1132103,1132104,1132105,1132106,1132107],"delay":511.3} +{"session_id":"sess-34f5b95e3fa3","input_length":280,"output_length":284,"hash_ids":[1132108],"delay":16906.4} +{"session_id":"sess-9db8be137ce6","input_length":28934,"output_length":674,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,1136032,1136033,1136034,1136035,1136036],"timestamp":0.0,"group_id":21} +{"session_id":"sess-9db8be137ce6","input_length":443,"output_length":67,"hash_ids":[1136037],"delay":5146.2} +{"session_id":"sess-9db8be137ce6","input_length":558,"output_length":651,"hash_ids":[1136038,1136039],"delay":2617.0} +{"session_id":"sess-9db8be137ce6","input_length":180,"output_length":185,"hash_ids":[1136040],"delay":31229.3} +{"session_id":"sess-9db8be137ce6","input_length":1732,"output_length":892,"hash_ids":[1136041,1136042,1136043,1136044],"delay":21679.1} +{"session_id":"sess-9db8be137ce6","input_length":1186,"output_length":350,"hash_ids":[1136045,1136046,1136047],"delay":8910.5} +{"session_id":"sess-9db8be137ce6","input_length":596,"output_length":64,"hash_ids":[1136048,1136049],"delay":725.1} +{"session_id":"sess-9db8be137ce6","input_length":2634,"output_length":333,"hash_ids":[1136050,1136051,1136052,1136053,1136054,1136055],"delay":1074.3} +{"session_id":"sess-9db8be137ce6","input_length":707,"output_length":874,"hash_ids":[1136056,1136057],"delay":622.2} +{"session_id":"sess-9db8be137ce6","input_length":2091,"output_length":437,"hash_ids":[1136058,1136059,1136060,1136061,1136062],"delay":1309.7} +{"session_id":"sess-9db8be137ce6","input_length":552,"output_length":129,"hash_ids":[1136063,1136064],"delay":13143.7} +{"session_id":"sess-a4f6c1216937","input_length":26159,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a4f6c1216937","input_length":576,"output_length":714,"hash_ids":[1136065,1136066],"delay":44419.3} +{"session_id":"sess-a4f6c1216937","input_length":562,"output_length":30,"hash_ids":[1136067,1136068],"delay":3667.2} +{"session_id":"sess-a4f6c1216937","input_length":557,"output_length":120,"hash_ids":[1136069,1136070],"delay":536.4} +{"session_id":"sess-a4f6c1216937","input_length":975,"output_length":76,"hash_ids":[1136071,1136072],"delay":740.5} +{"session_id":"sess-a4f6c1216937","input_length":1263,"output_length":128,"hash_ids":[1136073,1136074,1136075],"delay":1004.9} +{"session_id":"sess-a4f6c1216937","input_length":474,"output_length":338,"hash_ids":[1136076],"delay":1145.0} +{"session_id":"sess-a4f6c1216937","input_length":548,"output_length":93,"hash_ids":[1136077,1136078],"delay":775.0} +{"session_id":"sess-a4f6c1216937","input_length":1048,"output_length":156,"hash_ids":[1136079,1136080,1136081],"delay":22916.3} +{"session_id":"sess-a4f6c1216937","input_length":633,"output_length":61,"hash_ids":[1136082,1136083],"delay":31243.7} +{"session_id":"sess-a4f6c1216937","input_length":313,"output_length":129,"hash_ids":[1136084],"delay":660.4} +{"session_id":"sess-a4f6c1216937","input_length":1432,"output_length":416,"hash_ids":[1136085,1136086,1136087],"delay":612.0} +{"session_id":"sess-a4f6c1216937","input_length":1848,"output_length":74,"hash_ids":[1136088,1136089,1136090,1136091],"delay":798.1} +{"session_id":"sess-a4f6c1216937","input_length":578,"output_length":203,"hash_ids":[1136092,1136093],"delay":40881.3} +{"session_id":"sess-a4f6c1216937","input_length":2254,"output_length":54,"hash_ids":[1136094,1136095,1136096,1136097,1136098],"delay":28182.4} +{"session_id":"sess-a4f6c1216937","input_length":978,"output_length":64,"hash_ids":[1136099,1136100],"delay":138.1} +{"session_id":"sess-a4f6c1216937","input_length":683,"output_length":120,"hash_ids":[1136101,1136102],"delay":512.8} +{"session_id":"sess-a4f6c1216937","input_length":1082,"output_length":1118,"hash_ids":[1136103,1136104,1136105],"delay":182.6} +{"session_id":"sess-a4f6c1216937","input_length":1278,"output_length":295,"hash_ids":[1136106,1136107,1136108],"delay":716.2} +{"session_id":"sess-a4f6c1216937","input_length":396,"output_length":231,"hash_ids":[1136109],"delay":160.1} +{"session_id":"sess-a4f6c1216937","input_length":660,"output_length":421,"hash_ids":[1136110,1136111],"delay":667.9} +{"session_id":"sess-a4f6c1216937","input_length":1869,"output_length":949,"hash_ids":[1136112,1136113,1136114,1136115],"delay":669.0} +{"session_id":"sess-a4f6c1216937","input_length":318,"output_length":165,"hash_ids":[1136116],"delay":1357.0} +{"session_id":"sess-a4f6c1216937","input_length":315,"output_length":1052,"hash_ids":[1136117],"delay":6656.5} +{"session_id":"sess-a4f6c1216937","input_length":1199,"output_length":99,"hash_ids":[1136118,1136119,1136120],"delay":663.6} +{"session_id":"sess-a4f6c1216937","input_length":300,"output_length":89,"hash_ids":[1136121],"delay":1675.4} +{"session_id":"sess-a4f6c1216937","input_length":653,"output_length":134,"hash_ids":[1136122,1136123],"delay":1278.4} +{"session_id":"sess-a4f6c1216937","input_length":2282,"output_length":232,"hash_ids":[1136124,1136125,1136126,1136127,1136128],"delay":348.3} +{"session_id":"sess-a4f6c1216937","input_length":859,"output_length":1071,"hash_ids":[1136129,1136130],"delay":636.0} +{"session_id":"sess-a4f6c1216937","input_length":202,"output_length":196,"hash_ids":[1136131],"delay":133.9} +{"session_id":"sess-a4f6c1216937","input_length":2193,"output_length":428,"hash_ids":[1136132,1136133,1136134,1136135,1136136],"delay":231.1} +{"session_id":"sess-a4f6c1216937","input_length":471,"output_length":62,"hash_ids":[1136137],"delay":348.2} +{"session_id":"sess-891ca2c4974a","input_length":28655,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1144032,1144033,1144034,1144035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-891ca2c4974a","input_length":1662,"output_length":145,"hash_ids":[1144036,1144037,1144038,1144039],"delay":673.9} +{"session_id":"sess-891ca2c4974a","input_length":2584,"output_length":1419,"hash_ids":[1144040,1144041,1144042,1144043,1144044,1144045],"delay":25500.4} +{"session_id":"sess-891ca2c4974a","input_length":2560,"output_length":309,"hash_ids":[1144046,1144047,1144048,1144049,1144050],"delay":32898.0} +{"session_id":"sess-891ca2c4974a","input_length":1269,"output_length":98,"hash_ids":[1144051,1144052,1144053],"delay":1072.3} +{"session_id":"sess-891ca2c4974a","input_length":195,"output_length":299,"hash_ids":[1144054],"delay":661.8} +{"session_id":"sess-891ca2c4974a","input_length":1284,"output_length":220,"hash_ids":[1144055,1144056,1144057],"delay":4469.4} +{"session_id":"sess-891ca2c4974a","input_length":1779,"output_length":555,"hash_ids":[1144058,1144059,1144060,1144061],"delay":25082.3} +{"session_id":"sess-891ca2c4974a","input_length":1410,"output_length":173,"hash_ids":[1144062,1144063,1144064],"delay":794.0} +{"session_id":"sess-891ca2c4974a","input_length":321,"output_length":103,"hash_ids":[1144065],"delay":287.7} +{"session_id":"sess-891ca2c4974a","input_length":1065,"output_length":421,"hash_ids":[1144066,1144067,1144068],"delay":277.2} +{"session_id":"sess-891ca2c4974a","input_length":166,"output_length":95,"hash_ids":[1144069],"delay":477.2} +{"session_id":"sess-891ca2c4974a","input_length":2112,"output_length":195,"hash_ids":[1144070,1144071,1144072,1144073,1144074],"delay":17809.0} +{"session_id":"sess-891ca2c4974a","input_length":1480,"output_length":457,"hash_ids":[1144075,1144076,1144077],"delay":709.7} +{"session_id":"sess-891ca2c4974a","input_length":533,"output_length":181,"hash_ids":[1144078,1144079],"delay":2337.8} +{"session_id":"sess-891ca2c4974a","input_length":1401,"output_length":40,"hash_ids":[1144080,1144081,1144082],"delay":404.9} +{"session_id":"sess-891ca2c4974a","input_length":1567,"output_length":259,"hash_ids":[1144083,1144084,1144085,1144086],"delay":16135.3} +{"session_id":"sess-891ca2c4974a","input_length":614,"output_length":60,"hash_ids":[1144087,1144088],"delay":312.2} +{"session_id":"sess-891ca2c4974a","input_length":195,"output_length":1302,"hash_ids":[1144089],"delay":289.9} +{"session_id":"sess-891ca2c4974a","input_length":1294,"output_length":87,"hash_ids":[1144090,1144091,1144092],"delay":1427.0} +{"session_id":"sess-891ca2c4974a","input_length":1684,"output_length":113,"hash_ids":[1144093,1144094,1144095,1144096],"delay":856.5} +{"session_id":"sess-891ca2c4974a","input_length":696,"output_length":38,"hash_ids":[1144097,1144098],"delay":673.1} +{"session_id":"sess-891ca2c4974a","input_length":2975,"output_length":126,"hash_ids":[1144099,1144100,1144101,1144102,1144103,1144104],"delay":163.9} +{"session_id":"sess-891ca2c4974a","input_length":1211,"output_length":69,"hash_ids":[1144105,1144106,1144107],"delay":212.1} +{"session_id":"sess-00fb4566c665","input_length":27166,"output_length":151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,1148032,1148033],"timestamp":0.0,"group_id":24} +{"session_id":"sess-00fb4566c665","input_length":1715,"output_length":382,"hash_ids":[1148034,1148035,1148036,1148037],"delay":20133.7} +{"session_id":"sess-00fb4566c665","input_length":413,"output_length":178,"hash_ids":[1148038],"delay":38338.7} +{"session_id":"sess-00fb4566c665","input_length":397,"output_length":288,"hash_ids":[1148039],"delay":742.1} +{"session_id":"sess-00fb4566c665","input_length":1272,"output_length":287,"hash_ids":[1148040,1148041,1148042],"delay":27057.9} +{"session_id":"sess-00fb4566c665","input_length":2815,"output_length":65,"hash_ids":[1148043,1148044,1148045,1148046,1148047,1148048],"delay":157.5} +{"session_id":"sess-00fb4566c665","input_length":1149,"output_length":37,"hash_ids":[1148049,1148050,1148051],"delay":1179.3} +{"session_id":"sess-00fb4566c665","input_length":142,"output_length":436,"hash_ids":[1148052],"delay":835.1} +{"session_id":"sess-00fb4566c665","input_length":605,"output_length":318,"hash_ids":[1148053,1148054],"delay":859.2} +{"session_id":"sess-00fb4566c665","input_length":509,"output_length":33,"hash_ids":[1148055],"delay":2293.4} +{"session_id":"sess-00fb4566c665","input_length":1388,"output_length":1189,"hash_ids":[1148056,1148057,1148058],"delay":3719.6} +{"session_id":"sess-00fb4566c665","input_length":719,"output_length":291,"hash_ids":[1148059,1148060],"delay":716.7} +{"session_id":"sess-00fb4566c665","input_length":1969,"output_length":115,"hash_ids":[1148061,1148062,1148063,1148064],"delay":992.4} +{"session_id":"sess-00fb4566c665","input_length":1463,"output_length":48,"hash_ids":[1148065,1148066,1148067],"delay":137.1} +{"session_id":"sess-00fb4566c665","input_length":2060,"output_length":218,"hash_ids":[1148068,1148069,1148070,1148071,1148072],"delay":653.2} +{"session_id":"sess-00fb4566c665","input_length":724,"output_length":100,"hash_ids":[1148073,1148074],"delay":1787.6} +{"session_id":"sess-00fb4566c665","input_length":1998,"output_length":177,"hash_ids":[1148075,1148076,1148077,1148078],"delay":21552.8} +{"session_id":"sess-00fb4566c665","input_length":1389,"output_length":42,"hash_ids":[1148079,1148080,1148081],"delay":355.2} +{"session_id":"sess-00fb4566c665","input_length":1251,"output_length":279,"hash_ids":[1148082,1148083,1148084],"delay":26442.5} +{"session_id":"sess-00fb4566c665","input_length":686,"output_length":249,"hash_ids":[1148085,1148086],"delay":6027.2} +{"session_id":"sess-00fb4566c665","input_length":878,"output_length":63,"hash_ids":[1148087,1148088],"delay":843.7} +{"session_id":"sess-00fb4566c665","input_length":102,"output_length":67,"hash_ids":[1148089],"delay":1106.7} +{"session_id":"sess-00fb4566c665","input_length":289,"output_length":201,"hash_ids":[1148090],"delay":418.9} +{"session_id":"sess-00fb4566c665","input_length":1318,"output_length":165,"hash_ids":[1148091,1148092,1148093],"delay":1473.3} +{"session_id":"sess-00fb4566c665","input_length":1245,"output_length":534,"hash_ids":[1148094,1148095,1148096],"delay":56.5} +{"session_id":"sess-00fb4566c665","input_length":210,"output_length":158,"hash_ids":[1148097],"delay":6038.0} +{"session_id":"sess-00fb4566c665","input_length":1182,"output_length":108,"hash_ids":[1148098,1148099,1148100],"delay":16093.5} +{"session_id":"sess-00fb4566c665","input_length":924,"output_length":470,"hash_ids":[1148101,1148102],"delay":319.9} +{"session_id":"sess-00fb4566c665","input_length":645,"output_length":252,"hash_ids":[1148103,1148104],"delay":3010.6} +{"session_id":"sess-00fb4566c665","input_length":1052,"output_length":46,"hash_ids":[1148105,1148106,1148107],"delay":585.2} +{"session_id":"sess-28aa818bb7b6","input_length":27347,"output_length":88,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,1152032,1152033],"timestamp":0.0,"group_id":29} +{"session_id":"sess-28aa818bb7b6","input_length":623,"output_length":258,"hash_ids":[1152034,1152035],"delay":56915.4} +{"session_id":"sess-28aa818bb7b6","input_length":2933,"output_length":171,"hash_ids":[1152036,1152037,1152038,1152039,1152040,1152041],"delay":3553.3} +{"session_id":"sess-28aa818bb7b6","input_length":2263,"output_length":125,"hash_ids":[1152042,1152043,1152044,1152045,1152046],"delay":434.6} +{"session_id":"sess-28aa818bb7b6","input_length":255,"output_length":118,"hash_ids":[1152047],"delay":25134.9} +{"session_id":"sess-28aa818bb7b6","input_length":1544,"output_length":94,"hash_ids":[1152048,1152049,1152050,1152051],"delay":760.9} +{"session_id":"sess-28aa818bb7b6","input_length":1853,"output_length":120,"hash_ids":[1152052,1152053,1152054,1152055],"delay":14181.9} +{"session_id":"sess-28aa818bb7b6","input_length":617,"output_length":263,"hash_ids":[1152056,1152057],"delay":1804.1} +{"session_id":"sess-28aa818bb7b6","input_length":985,"output_length":478,"hash_ids":[1152058,1152059],"delay":34260.2} +{"session_id":"sess-28aa818bb7b6","input_length":1827,"output_length":379,"hash_ids":[1152060,1152061,1152062,1152063],"delay":848.6} +{"session_id":"sess-28aa818bb7b6","input_length":1025,"output_length":112,"hash_ids":[1152064,1152065,1152066],"delay":2387.8} +{"session_id":"sess-28aa818bb7b6","input_length":378,"output_length":239,"hash_ids":[1152067],"delay":3171.7} +{"session_id":"sess-28aa818bb7b6","input_length":429,"output_length":152,"hash_ids":[1152068],"delay":1281.0} +{"session_id":"sess-28aa818bb7b6","input_length":854,"output_length":107,"hash_ids":[1152069,1152070],"delay":2018.3} +{"session_id":"sess-28aa818bb7b6","input_length":1091,"output_length":359,"hash_ids":[1152071,1152072,1152073],"delay":455.9} +{"session_id":"sess-28aa818bb7b6","input_length":1663,"output_length":350,"hash_ids":[1152074,1152075,1152076,1152077],"delay":769.0} +{"session_id":"sess-28aa818bb7b6","input_length":929,"output_length":747,"hash_ids":[1152078,1152079],"delay":7421.6} +{"session_id":"sess-28aa818bb7b6","input_length":897,"output_length":106,"hash_ids":[1152080,1152081],"delay":2565.9} +{"session_id":"sess-28aa818bb7b6","input_length":144,"output_length":532,"hash_ids":[1152082],"delay":429.0} +{"session_id":"sess-28aa818bb7b6","input_length":169,"output_length":102,"hash_ids":[1152083],"delay":730.1} +{"session_id":"sess-28aa818bb7b6","input_length":206,"output_length":180,"hash_ids":[1152084],"delay":17741.8} +{"session_id":"sess-28aa818bb7b6","input_length":2361,"output_length":346,"hash_ids":[1152085,1152086,1152087,1152088,1152089],"delay":983.7} +{"session_id":"sess-28aa818bb7b6","input_length":570,"output_length":159,"hash_ids":[1152090,1152091],"delay":6714.1} +{"session_id":"sess-28aa818bb7b6","input_length":325,"output_length":128,"hash_ids":[1152092],"delay":9057.2} +{"session_id":"sess-28aa818bb7b6","input_length":2602,"output_length":320,"hash_ids":[1152093,1152094,1152095,1152096,1152097,1152098],"delay":321.0} +{"session_id":"sess-28aa818bb7b6","input_length":2081,"output_length":99,"hash_ids":[1152099,1152100,1152101,1152102,1152103],"delay":227.4} +{"session_id":"sess-28aa818bb7b6","input_length":742,"output_length":562,"hash_ids":[1152104,1152105],"delay":802.1} +{"session_id":"sess-28aa818bb7b6","input_length":1995,"output_length":615,"hash_ids":[1152106,1152107,1152108,1152109],"delay":133.9} +{"session_id":"sess-f4b21b8242eb","input_length":27255,"output_length":153,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1156032,1156033],"timestamp":0.0,"group_id":7} +{"session_id":"sess-f4b21b8242eb","input_length":694,"output_length":186,"hash_ids":[1156034,1156035],"delay":441.5} +{"session_id":"sess-f4b21b8242eb","input_length":1811,"output_length":109,"hash_ids":[1156036,1156037,1156038,1156039],"delay":811.1} +{"session_id":"sess-f4b21b8242eb","input_length":2778,"output_length":437,"hash_ids":[1156040,1156041,1156042,1156043,1156044,1156045],"delay":4740.0} +{"session_id":"sess-f4b21b8242eb","input_length":995,"output_length":88,"hash_ids":[1156046,1156047],"delay":797.5} +{"session_id":"sess-f4b21b8242eb","input_length":2204,"output_length":88,"hash_ids":[1156048,1156049,1156050,1156051,1156052],"delay":1046.9} +{"session_id":"sess-f4b21b8242eb","input_length":404,"output_length":66,"hash_ids":[1156053],"delay":4029.1} +{"session_id":"sess-f4b21b8242eb","input_length":259,"output_length":30,"hash_ids":[1156054],"delay":867.2} +{"session_id":"sess-f4b21b8242eb","input_length":697,"output_length":310,"hash_ids":[1156055,1156056],"delay":7182.8} +{"session_id":"sess-f4b21b8242eb","input_length":412,"output_length":410,"hash_ids":[1156057],"delay":1084.1} +{"session_id":"sess-f4b21b8242eb","input_length":1072,"output_length":129,"hash_ids":[1156058,1156059,1156060],"delay":403.4} +{"session_id":"sess-f4b21b8242eb","input_length":356,"output_length":202,"hash_ids":[1156061],"delay":757.7} +{"session_id":"sess-f4b21b8242eb","input_length":567,"output_length":154,"hash_ids":[1156062,1156063],"delay":11356.3} +{"session_id":"sess-f4b21b8242eb","input_length":852,"output_length":91,"hash_ids":[1156064,1156065],"delay":444.1} +{"session_id":"sess-f4b21b8242eb","input_length":941,"output_length":138,"hash_ids":[1156066,1156067],"delay":2699.6} +{"session_id":"sess-f4b21b8242eb","input_length":1327,"output_length":271,"hash_ids":[1156068,1156069,1156070],"delay":233.0} +{"session_id":"sess-f4b21b8242eb","input_length":2037,"output_length":154,"hash_ids":[1156071,1156072,1156073,1156074],"delay":6260.8} +{"session_id":"sess-f4b21b8242eb","input_length":1197,"output_length":618,"hash_ids":[1156075,1156076,1156077],"delay":2256.5} +{"session_id":"sess-f4b21b8242eb","input_length":1937,"output_length":158,"hash_ids":[1156078,1156079,1156080,1156081],"delay":232.9} +{"session_id":"sess-f4b21b8242eb","input_length":1607,"output_length":40,"hash_ids":[1156082,1156083,1156084,1156085],"delay":775.7} +{"session_id":"sess-f4b21b8242eb","input_length":100,"output_length":452,"hash_ids":[1156086],"delay":211.1} +{"session_id":"sess-f4b21b8242eb","input_length":729,"output_length":630,"hash_ids":[1156087,1156088],"delay":786.4} +{"session_id":"sess-f4b21b8242eb","input_length":1577,"output_length":729,"hash_ids":[1156089,1156090,1156091,1156092],"delay":4559.0} +{"session_id":"sess-f4b21b8242eb","input_length":345,"output_length":170,"hash_ids":[1156093],"delay":893.1} +{"session_id":"sess-f4b21b8242eb","input_length":1694,"output_length":556,"hash_ids":[1156094,1156095,1156096,1156097],"delay":634.4} +{"session_id":"sess-f4b21b8242eb","input_length":865,"output_length":146,"hash_ids":[1156098,1156099],"delay":757.8} +{"session_id":"sess-f4b21b8242eb","input_length":575,"output_length":118,"hash_ids":[1156100,1156101],"delay":361.2} +{"session_id":"sess-f4b21b8242eb","input_length":1069,"output_length":125,"hash_ids":[1156102,1156103,1156104],"delay":7210.6} +{"session_id":"sess-f4b21b8242eb","input_length":625,"output_length":44,"hash_ids":[1156105,1156106],"delay":18192.0} +{"session_id":"sess-4b9cca99779a","input_length":26285,"output_length":74,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451],"timestamp":0.0,"group_id":27} +{"session_id":"sess-4b9cca99779a","input_length":527,"output_length":65,"hash_ids":[1156107,1156108],"delay":3422.6} +{"session_id":"sess-4b9cca99779a","input_length":1210,"output_length":644,"hash_ids":[1156109,1156110,1156111],"delay":5362.7} +{"session_id":"sess-4b9cca99779a","input_length":978,"output_length":461,"hash_ids":[1156112,1156113],"delay":2957.0} +{"session_id":"sess-4b9cca99779a","input_length":662,"output_length":292,"hash_ids":[1156114,1156115],"delay":6206.8} +{"session_id":"sess-4b9cca99779a","input_length":289,"output_length":71,"hash_ids":[1156116],"delay":3272.6} +{"session_id":"sess-4b9cca99779a","input_length":2612,"output_length":105,"hash_ids":[1156117,1156118,1156119,1156120,1156121,1156122],"delay":67154.7} +{"session_id":"sess-4b9cca99779a","input_length":321,"output_length":232,"hash_ids":[1156123],"delay":464.0} +{"session_id":"sess-4b9cca99779a","input_length":502,"output_length":73,"hash_ids":[1156124],"delay":594.6} +{"session_id":"sess-4b9cca99779a","input_length":289,"output_length":334,"hash_ids":[1156125],"delay":1041.1} +{"session_id":"sess-4b9cca99779a","input_length":1225,"output_length":472,"hash_ids":[1156126,1156127,1156128],"delay":2618.1} +{"session_id":"sess-4b9cca99779a","input_length":433,"output_length":141,"hash_ids":[1156129],"delay":45072.5} +{"session_id":"sess-c4ce26e0f1bc","input_length":34014,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1164032,1164033,1164034,1164035,1164036,1164037,1164038,1164039,1164040,1164041,1164042,1164043,1164044,1164045,1164046],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c4ce26e0f1bc","input_length":2333,"output_length":57,"hash_ids":[1164047,1164048,1164049,1164050,1164051],"delay":17237.4} +{"session_id":"sess-c4ce26e0f1bc","input_length":1031,"output_length":606,"hash_ids":[1164052,1164053,1164054],"delay":611.3} +{"session_id":"sess-c4ce26e0f1bc","input_length":1073,"output_length":432,"hash_ids":[1164055,1164056,1164057],"delay":264.0} +{"session_id":"sess-c4ce26e0f1bc","input_length":131,"output_length":211,"hash_ids":[1164058],"delay":690.9} +{"session_id":"sess-c4ce26e0f1bc","input_length":935,"output_length":629,"hash_ids":[1164059,1164060],"delay":367.3} +{"session_id":"sess-c4ce26e0f1bc","input_length":1098,"output_length":59,"hash_ids":[1164061,1164062,1164063],"delay":9694.8} +{"session_id":"sess-c4ce26e0f1bc","input_length":403,"output_length":86,"hash_ids":[1164064],"delay":662.3} +{"session_id":"sess-c4ce26e0f1bc","input_length":1011,"output_length":206,"hash_ids":[1164065,1164066],"delay":1270.7} +{"session_id":"sess-c4ce26e0f1bc","input_length":457,"output_length":124,"hash_ids":[1164067],"delay":5849.8} +{"session_id":"sess-c4ce26e0f1bc","input_length":820,"output_length":252,"hash_ids":[1164068,1164069],"delay":13953.9} +{"session_id":"sess-c4ce26e0f1bc","input_length":197,"output_length":65,"hash_ids":[1164070],"delay":18937.0} +{"session_id":"sess-c4ce26e0f1bc","input_length":2172,"output_length":125,"hash_ids":[1164071,1164072,1164073,1164074,1164075],"delay":922.9} +{"session_id":"sess-e9ed44593d1d","input_length":26165,"output_length":408,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-e9ed44593d1d","input_length":493,"output_length":97,"hash_ids":[1164076],"delay":573.3} +{"session_id":"sess-e9ed44593d1d","input_length":1777,"output_length":171,"hash_ids":[1164077,1164078,1164079,1164080],"delay":1628.3} +{"session_id":"sess-e9ed44593d1d","input_length":1412,"output_length":152,"hash_ids":[1164081,1164082,1164083],"delay":1924.3} +{"session_id":"sess-e9ed44593d1d","input_length":729,"output_length":173,"hash_ids":[1164084,1164085],"delay":656.6} +{"session_id":"sess-e9ed44593d1d","input_length":278,"output_length":175,"hash_ids":[1164086],"delay":221.5} +{"session_id":"sess-e9ed44593d1d","input_length":783,"output_length":345,"hash_ids":[1164087,1164088],"delay":1446.3} +{"session_id":"sess-e9ed44593d1d","input_length":2756,"output_length":642,"hash_ids":[1164089,1164090,1164091,1164092,1164093,1164094],"delay":2804.0} +{"session_id":"sess-e9ed44593d1d","input_length":956,"output_length":708,"hash_ids":[1164095,1164096],"delay":589.0} +{"session_id":"sess-e9ed44593d1d","input_length":2072,"output_length":186,"hash_ids":[1164097,1164098,1164099,1164100,1164101],"delay":23805.9} +{"session_id":"sess-e9ed44593d1d","input_length":2357,"output_length":192,"hash_ids":[1164102,1164103,1164104,1164105,1164106],"delay":4671.4} +{"session_id":"sess-e9ed44593d1d","input_length":1437,"output_length":280,"hash_ids":[1164107,1164108,1164109],"delay":11214.6} +{"session_id":"sess-e9ed44593d1d","input_length":627,"output_length":628,"hash_ids":[1164110,1164111],"delay":1352.3} +{"session_id":"sess-e9ed44593d1d","input_length":423,"output_length":102,"hash_ids":[1164112],"delay":278.0} +{"session_id":"sess-e9ed44593d1d","input_length":315,"output_length":219,"hash_ids":[1164113],"delay":36792.6} +{"session_id":"sess-e9ed44593d1d","input_length":2702,"output_length":438,"hash_ids":[1164114,1164115,1164116,1164117,1164118,1164119],"delay":1947.8} +{"session_id":"sess-e9ed44593d1d","input_length":2427,"output_length":133,"hash_ids":[1164120,1164121,1164122,1164123,1164124],"delay":1014.9} +{"session_id":"sess-e9ed44593d1d","input_length":106,"output_length":690,"hash_ids":[1164125],"delay":1124.5} +{"session_id":"sess-e9ed44593d1d","input_length":1275,"output_length":281,"hash_ids":[1164126,1164127,1164128],"delay":14441.3} +{"session_id":"sess-e9ed44593d1d","input_length":1679,"output_length":159,"hash_ids":[1164129,1164130,1164131,1164132],"delay":1492.2} +{"session_id":"sess-e9ed44593d1d","input_length":1147,"output_length":436,"hash_ids":[1164133,1164134,1164135],"delay":7285.2} +{"session_id":"sess-e9ed44593d1d","input_length":707,"output_length":60,"hash_ids":[1164136,1164137],"delay":3764.4} +{"session_id":"sess-e9ed44593d1d","input_length":1415,"output_length":129,"hash_ids":[1164138,1164139,1164140],"delay":8788.4} +{"session_id":"sess-e9ed44593d1d","input_length":387,"output_length":518,"hash_ids":[1164141],"delay":484.7} +{"session_id":"sess-e9ed44593d1d","input_length":990,"output_length":170,"hash_ids":[1164142,1164143],"delay":1040.6} +{"session_id":"sess-e9ed44593d1d","input_length":2305,"output_length":99,"hash_ids":[1164144,1164145,1164146,1164147,1164148],"delay":126.0} +{"session_id":"sess-6b6784665eed","input_length":31646,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1172032,1172033,1172034,1172035,1172036,1172037,1172038,1172039,1172040,1172041],"timestamp":0.0,"group_id":9} +{"session_id":"sess-6b6784665eed","input_length":901,"output_length":326,"hash_ids":[1172042,1172043],"delay":13716.8} +{"session_id":"sess-6b6784665eed","input_length":743,"output_length":348,"hash_ids":[1172044,1172045],"delay":775.9} +{"session_id":"sess-6b6784665eed","input_length":189,"output_length":173,"hash_ids":[1172046],"delay":2904.7} +{"session_id":"sess-6b6784665eed","input_length":199,"output_length":215,"hash_ids":[1172047],"delay":43414.4} +{"session_id":"sess-6b6784665eed","input_length":1363,"output_length":76,"hash_ids":[1172048,1172049,1172050],"delay":844.0} +{"session_id":"sess-6b6784665eed","input_length":1208,"output_length":30,"hash_ids":[1172051,1172052,1172053],"delay":230.3} +{"session_id":"sess-6b6784665eed","input_length":381,"output_length":157,"hash_ids":[1172054],"delay":648.0} +{"session_id":"sess-6b6784665eed","input_length":299,"output_length":317,"hash_ids":[1172055],"delay":5343.8} +{"session_id":"sess-6b6784665eed","input_length":336,"output_length":72,"hash_ids":[1172056],"delay":2694.7} +{"session_id":"sess-6b6784665eed","input_length":161,"output_length":195,"hash_ids":[1172057],"delay":908.7} +{"session_id":"sess-6b6784665eed","input_length":319,"output_length":831,"hash_ids":[1172058],"delay":45829.2} +{"session_id":"sess-6b6784665eed","input_length":750,"output_length":117,"hash_ids":[1172059,1172060],"delay":29632.2} +{"session_id":"sess-6b6784665eed","input_length":1104,"output_length":145,"hash_ids":[1172061,1172062,1172063],"delay":13655.1} +{"session_id":"sess-6b6784665eed","input_length":1298,"output_length":679,"hash_ids":[1172064,1172065,1172066],"delay":458.3} +{"session_id":"sess-6b6784665eed","input_length":1073,"output_length":53,"hash_ids":[1172067,1172068,1172069],"delay":9431.3} +{"session_id":"sess-6b6784665eed","input_length":590,"output_length":238,"hash_ids":[1172070,1172071],"delay":839.9} +{"session_id":"sess-6b6784665eed","input_length":427,"output_length":58,"hash_ids":[1172072],"delay":1582.4} +{"session_id":"sess-6b6784665eed","input_length":879,"output_length":43,"hash_ids":[1172073,1172074],"delay":626.7} +{"session_id":"sess-6b6784665eed","input_length":565,"output_length":505,"hash_ids":[1172075,1172076],"delay":413.9} +{"session_id":"sess-6b6784665eed","input_length":947,"output_length":100,"hash_ids":[1172077,1172078],"delay":21247.6} +{"session_id":"sess-6b6784665eed","input_length":145,"output_length":81,"hash_ids":[1172079],"delay":290.4} +{"session_id":"sess-6b6784665eed","input_length":357,"output_length":530,"hash_ids":[1172080],"delay":886.0} +{"session_id":"sess-6b6784665eed","input_length":178,"output_length":244,"hash_ids":[1172081],"delay":1928.8} +{"session_id":"sess-6b6784665eed","input_length":215,"output_length":217,"hash_ids":[1172082],"delay":729.8} +{"session_id":"sess-6b6784665eed","input_length":211,"output_length":485,"hash_ids":[1172083],"delay":72.3} +{"session_id":"sess-6b6784665eed","input_length":159,"output_length":820,"hash_ids":[1172084],"delay":98.1} +{"session_id":"sess-6b6784665eed","input_length":957,"output_length":81,"hash_ids":[1172085,1172086],"delay":3035.1} +{"session_id":"sess-6b6784665eed","input_length":1072,"output_length":679,"hash_ids":[1172087,1172088,1172089],"delay":13132.1} +{"session_id":"sess-6b6784665eed","input_length":1856,"output_length":192,"hash_ids":[1172090,1172091,1172092,1172093],"delay":364.6} +{"session_id":"sess-6b6784665eed","input_length":978,"output_length":407,"hash_ids":[1172094,1172095],"delay":4372.3} +{"session_id":"sess-6b6784665eed","input_length":1402,"output_length":30,"hash_ids":[1172096,1172097,1172098],"delay":991.5} +{"session_id":"sess-6b6784665eed","input_length":188,"output_length":459,"hash_ids":[1172099],"delay":541.3} +{"session_id":"sess-6b6784665eed","input_length":391,"output_length":338,"hash_ids":[1172100],"delay":833.1} +{"session_id":"sess-6b6784665eed","input_length":464,"output_length":332,"hash_ids":[1172101],"delay":447.9} +{"session_id":"sess-6b6784665eed","input_length":621,"output_length":276,"hash_ids":[1172102,1172103],"delay":1416.4} +{"session_id":"sess-e44a31b721c1","input_length":26914,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1176032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e44a31b721c1","input_length":130,"output_length":33,"hash_ids":[1176033],"delay":56427.4} +{"session_id":"sess-e44a31b721c1","input_length":1734,"output_length":153,"hash_ids":[1176034,1176035,1176036,1176037],"delay":452.7} +{"session_id":"sess-e44a31b721c1","input_length":2582,"output_length":219,"hash_ids":[1176038,1176039,1176040,1176041,1176042,1176043],"delay":5963.3} +{"session_id":"sess-e44a31b721c1","input_length":300,"output_length":326,"hash_ids":[1176044],"delay":30877.4} +{"session_id":"sess-e44a31b721c1","input_length":729,"output_length":409,"hash_ids":[1176045,1176046],"delay":23074.3} +{"session_id":"sess-e44a31b721c1","input_length":1255,"output_length":487,"hash_ids":[1176047,1176048,1176049],"delay":3098.6} +{"session_id":"sess-e44a31b721c1","input_length":2609,"output_length":183,"hash_ids":[1176050,1176051,1176052,1176053,1176054,1176055],"delay":745.6} +{"session_id":"sess-b3d548adba5a","input_length":30012,"output_length":563,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1180032,1180033,1180034,1180035,1180036,1180037,1180038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b3d548adba5a","input_length":429,"output_length":181,"hash_ids":[1180039],"delay":351.6} +{"session_id":"sess-b3d548adba5a","input_length":1082,"output_length":119,"hash_ids":[1180040,1180041,1180042],"delay":2559.0} +{"session_id":"sess-b3d548adba5a","input_length":1304,"output_length":145,"hash_ids":[1180043,1180044,1180045],"delay":3983.5} +{"session_id":"sess-b3d548adba5a","input_length":1340,"output_length":113,"hash_ids":[1180046,1180047,1180048],"delay":1772.0} +{"session_id":"sess-b3d548adba5a","input_length":692,"output_length":295,"hash_ids":[1180049,1180050],"delay":10556.1} +{"session_id":"sess-b3d548adba5a","input_length":1862,"output_length":86,"hash_ids":[1180051,1180052,1180053,1180054],"delay":5733.3} +{"session_id":"sess-b3d548adba5a","input_length":578,"output_length":289,"hash_ids":[1180055,1180056],"delay":5740.4} +{"session_id":"sess-b3d548adba5a","input_length":375,"output_length":362,"hash_ids":[1180057],"delay":1117.5} +{"session_id":"sess-b3d548adba5a","input_length":718,"output_length":286,"hash_ids":[1180058,1180059],"delay":577.1} +{"session_id":"sess-b3d548adba5a","input_length":2731,"output_length":41,"hash_ids":[1180060,1180061,1180062,1180063,1180064,1180065],"delay":2000.3} +{"session_id":"sess-a15a635fa164","input_length":28458,"output_length":192,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1184032,1184033,1184034,1184035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a15a635fa164","input_length":901,"output_length":117,"hash_ids":[1184036,1184037],"delay":1838.6} +{"session_id":"sess-a15a635fa164","input_length":678,"output_length":74,"hash_ids":[1184038,1184039],"delay":976.8} +{"session_id":"sess-a15a635fa164","input_length":1511,"output_length":325,"hash_ids":[1184040,1184041,1184042],"delay":485.1} +{"session_id":"sess-a15a635fa164","input_length":1888,"output_length":165,"hash_ids":[1184043,1184044,1184045,1184046],"delay":2736.6} +{"session_id":"sess-a15a635fa164","input_length":905,"output_length":117,"hash_ids":[1184047,1184048],"delay":825.9} +{"session_id":"sess-a15a635fa164","input_length":1292,"output_length":30,"hash_ids":[1184049,1184050,1184051],"delay":1074.7} +{"session_id":"sess-a15a635fa164","input_length":633,"output_length":418,"hash_ids":[1184052,1184053],"delay":1583.9} +{"session_id":"sess-a15a635fa164","input_length":1173,"output_length":493,"hash_ids":[1184054,1184055,1184056],"delay":1968.6} +{"session_id":"sess-a15a635fa164","input_length":558,"output_length":39,"hash_ids":[1184057,1184058],"delay":490.6} +{"session_id":"sess-a15a635fa164","input_length":1068,"output_length":182,"hash_ids":[1184059,1184060,1184061],"delay":1513.8} +{"session_id":"sess-a15a635fa164","input_length":724,"output_length":78,"hash_ids":[1184062,1184063],"delay":786.7} +{"session_id":"sess-a15a635fa164","input_length":1656,"output_length":178,"hash_ids":[1184064,1184065,1184066,1184067],"delay":14219.6} +{"session_id":"sess-a15a635fa164","input_length":1467,"output_length":599,"hash_ids":[1184068,1184069,1184070],"delay":20379.1} +{"session_id":"sess-a15a635fa164","input_length":651,"output_length":137,"hash_ids":[1184071,1184072],"delay":939.5} +{"session_id":"sess-a15a635fa164","input_length":80,"output_length":326,"hash_ids":[1184073],"delay":641.0} +{"session_id":"sess-a15a635fa164","input_length":491,"output_length":495,"hash_ids":[1184074],"delay":1113.5} +{"session_id":"sess-a15a635fa164","input_length":1738,"output_length":153,"hash_ids":[1184075,1184076,1184077,1184078],"delay":1161.9} +{"session_id":"sess-a15a635fa164","input_length":778,"output_length":553,"hash_ids":[1184079,1184080],"delay":528.7} +{"session_id":"sess-a15a635fa164","input_length":172,"output_length":215,"hash_ids":[1184081],"delay":6262.1} +{"session_id":"sess-a15a635fa164","input_length":1385,"output_length":82,"hash_ids":[1184082,1184083,1184084],"delay":151.1} +{"session_id":"sess-a15a635fa164","input_length":369,"output_length":779,"hash_ids":[1184085],"delay":548.0} +{"session_id":"sess-a15a635fa164","input_length":351,"output_length":236,"hash_ids":[1184086],"delay":18517.0} +{"session_id":"sess-a15a635fa164","input_length":956,"output_length":1234,"hash_ids":[1184087,1184088],"delay":227.1} +{"session_id":"sess-a15a635fa164","input_length":579,"output_length":125,"hash_ids":[1184089,1184090],"delay":1471.5} +{"session_id":"sess-a15a635fa164","input_length":498,"output_length":624,"hash_ids":[1184091],"delay":6480.7} +{"session_id":"sess-a15a635fa164","input_length":364,"output_length":191,"hash_ids":[1184092],"delay":919.4} +{"session_id":"sess-a15a635fa164","input_length":176,"output_length":388,"hash_ids":[1184093],"delay":622.4} +{"session_id":"sess-a15a635fa164","input_length":393,"output_length":501,"hash_ids":[1184094],"delay":3955.4} +{"session_id":"sess-a15a635fa164","input_length":1363,"output_length":202,"hash_ids":[1184095,1184096,1184097],"delay":789.6} +{"session_id":"sess-a15a635fa164","input_length":383,"output_length":38,"hash_ids":[1184098],"delay":840.2} +{"session_id":"sess-a15a635fa164","input_length":248,"output_length":157,"hash_ids":[1184099],"delay":3630.5} +{"session_id":"sess-a15a635fa164","input_length":183,"output_length":79,"hash_ids":[1184100],"delay":3473.6} +{"session_id":"sess-a15a635fa164","input_length":1408,"output_length":203,"hash_ids":[1184101,1184102,1184103],"delay":175.7} +{"session_id":"sess-4839c5b4b0d2","input_length":26221,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-4839c5b4b0d2","input_length":497,"output_length":303,"hash_ids":[1184104],"delay":4194.0} +{"session_id":"sess-4839c5b4b0d2","input_length":1132,"output_length":313,"hash_ids":[1184105,1184106,1184107],"delay":30588.8} +{"session_id":"sess-4839c5b4b0d2","input_length":431,"output_length":124,"hash_ids":[1184108],"delay":1049.6} +{"session_id":"sess-4839c5b4b0d2","input_length":1008,"output_length":857,"hash_ids":[1184109,1184110],"delay":254.3} +{"session_id":"sess-4839c5b4b0d2","input_length":395,"output_length":132,"hash_ids":[1184111],"delay":72308.8} +{"session_id":"sess-4839c5b4b0d2","input_length":1923,"output_length":467,"hash_ids":[1184112,1184113,1184114,1184115],"delay":1440.0} +{"session_id":"sess-4839c5b4b0d2","input_length":507,"output_length":111,"hash_ids":[1184116],"delay":4635.0} +{"session_id":"sess-4839c5b4b0d2","input_length":432,"output_length":74,"hash_ids":[1184117],"delay":862.3} +{"session_id":"sess-4839c5b4b0d2","input_length":513,"output_length":89,"hash_ids":[1184118,1184119],"delay":14202.0} +{"session_id":"sess-4839c5b4b0d2","input_length":66,"output_length":42,"hash_ids":[1184120],"delay":897.8} +{"session_id":"sess-4839c5b4b0d2","input_length":337,"output_length":191,"hash_ids":[1184121],"delay":5847.8} +{"session_id":"sess-4839c5b4b0d2","input_length":729,"output_length":305,"hash_ids":[1184122,1184123],"delay":1037.1} +{"session_id":"sess-4839c5b4b0d2","input_length":806,"output_length":393,"hash_ids":[1184124,1184125],"delay":1624.5} +{"session_id":"sess-4839c5b4b0d2","input_length":1272,"output_length":30,"hash_ids":[1184126,1184127,1184128],"delay":721.6} +{"session_id":"sess-4839c5b4b0d2","input_length":2211,"output_length":30,"hash_ids":[1184129,1184130,1184131,1184132,1184133],"delay":792.7} +{"session_id":"sess-4839c5b4b0d2","input_length":322,"output_length":234,"hash_ids":[1184134],"delay":18773.5} +{"session_id":"sess-4839c5b4b0d2","input_length":1325,"output_length":95,"hash_ids":[1184135,1184136,1184137],"delay":18465.3} +{"session_id":"sess-4839c5b4b0d2","input_length":307,"output_length":119,"hash_ids":[1184138],"delay":9228.6} +{"session_id":"sess-4839c5b4b0d2","input_length":168,"output_length":168,"hash_ids":[1184139],"delay":888.5} +{"session_id":"sess-4839c5b4b0d2","input_length":677,"output_length":53,"hash_ids":[1184140,1184141],"delay":276.9} +{"session_id":"sess-4839c5b4b0d2","input_length":2199,"output_length":150,"hash_ids":[1184142,1184143,1184144,1184145,1184146],"delay":3944.0} +{"session_id":"sess-4839c5b4b0d2","input_length":445,"output_length":526,"hash_ids":[1184147],"delay":14916.9} +{"session_id":"sess-5d0524832df3","input_length":28087,"output_length":219,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1192032,1192033,1192034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5d0524832df3","input_length":1203,"output_length":53,"hash_ids":[1192035,1192036,1192037],"delay":36050.2} +{"session_id":"sess-5d0524832df3","input_length":73,"output_length":169,"hash_ids":[1192038],"delay":1303.7} +{"session_id":"sess-5d0524832df3","input_length":332,"output_length":389,"hash_ids":[1192039],"delay":1626.2} +{"session_id":"sess-5d0524832df3","input_length":339,"output_length":335,"hash_ids":[1192040],"delay":688.0} +{"session_id":"sess-5d0524832df3","input_length":1022,"output_length":638,"hash_ids":[1192041,1192042],"delay":3424.5} +{"session_id":"sess-5d0524832df3","input_length":171,"output_length":103,"hash_ids":[1192043],"delay":595.1} +{"session_id":"sess-5d0524832df3","input_length":949,"output_length":369,"hash_ids":[1192044,1192045],"delay":4686.0} +{"session_id":"sess-5d0524832df3","input_length":2668,"output_length":88,"hash_ids":[1192046,1192047,1192048,1192049,1192050,1192051],"delay":973.0} +{"session_id":"sess-5d0524832df3","input_length":1238,"output_length":1075,"hash_ids":[1192052,1192053,1192054],"delay":1129.5} +{"session_id":"sess-5d0524832df3","input_length":943,"output_length":105,"hash_ids":[1192055,1192056],"delay":507.3} +{"session_id":"sess-5d0524832df3","input_length":469,"output_length":43,"hash_ids":[1192057],"delay":647.1} +{"session_id":"sess-5d0524832df3","input_length":2287,"output_length":246,"hash_ids":[1192058,1192059,1192060,1192061,1192062],"delay":3761.6} +{"session_id":"sess-5d0524832df3","input_length":2340,"output_length":245,"hash_ids":[1192063,1192064,1192065,1192066,1192067],"delay":306.6} +{"session_id":"sess-5d0524832df3","input_length":790,"output_length":115,"hash_ids":[1192068,1192069],"delay":608.9} +{"session_id":"sess-5d0524832df3","input_length":2198,"output_length":78,"hash_ids":[1192070,1192071,1192072,1192073,1192074],"delay":47913.7} +{"session_id":"sess-5d0524832df3","input_length":726,"output_length":394,"hash_ids":[1192075,1192076],"delay":1698.1} +{"session_id":"sess-5d0524832df3","input_length":1687,"output_length":206,"hash_ids":[1192077,1192078,1192079,1192080],"delay":155.2} +{"session_id":"sess-5d0524832df3","input_length":455,"output_length":204,"hash_ids":[1192081],"delay":2036.4} +{"session_id":"sess-5d0524832df3","input_length":2346,"output_length":432,"hash_ids":[1192082,1192083,1192084,1192085,1192086],"delay":1155.4} +{"session_id":"sess-5d0524832df3","input_length":2373,"output_length":320,"hash_ids":[1192087,1192088,1192089,1192090,1192091],"delay":831.5} +{"session_id":"sess-5d0524832df3","input_length":440,"output_length":434,"hash_ids":[1192092],"delay":15140.0} +{"session_id":"sess-5d0524832df3","input_length":1102,"output_length":966,"hash_ids":[1192093,1192094,1192095],"delay":456.3} +{"session_id":"sess-5d0524832df3","input_length":1209,"output_length":1129,"hash_ids":[1192096,1192097,1192098],"delay":7668.5} +{"session_id":"sess-5d0524832df3","input_length":1443,"output_length":198,"hash_ids":[1192099,1192100,1192101],"delay":1738.0} +{"session_id":"sess-9b78fca063df","input_length":27576,"output_length":437,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1196032,1196033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9b78fca063df","input_length":458,"output_length":204,"hash_ids":[1196034],"delay":1654.7} +{"session_id":"sess-9b78fca063df","input_length":1081,"output_length":145,"hash_ids":[1196035,1196036,1196037],"delay":6813.8} +{"session_id":"sess-9b78fca063df","input_length":697,"output_length":305,"hash_ids":[1196038,1196039],"delay":7921.1} +{"session_id":"sess-9b78fca063df","input_length":1324,"output_length":67,"hash_ids":[1196040,1196041,1196042],"delay":3611.1} +{"session_id":"sess-9b78fca063df","input_length":536,"output_length":42,"hash_ids":[1196043,1196044],"delay":11398.1} +{"session_id":"sess-9b78fca063df","input_length":128,"output_length":54,"hash_ids":[1196045],"delay":9798.7} +{"session_id":"sess-9b78fca063df","input_length":1015,"output_length":67,"hash_ids":[1196046,1196047],"delay":4304.2} +{"session_id":"sess-9b78fca063df","input_length":1022,"output_length":491,"hash_ids":[1196048,1196049],"delay":1455.5} +{"session_id":"sess-9b78fca063df","input_length":2343,"output_length":221,"hash_ids":[1196050,1196051,1196052,1196053,1196054],"delay":40365.4} +{"session_id":"sess-9b78fca063df","input_length":210,"output_length":193,"hash_ids":[1196055],"delay":6392.9} +{"session_id":"sess-9b78fca063df","input_length":1070,"output_length":175,"hash_ids":[1196056,1196057,1196058],"delay":1628.6} +{"session_id":"sess-9b78fca063df","input_length":829,"output_length":235,"hash_ids":[1196059,1196060],"delay":4580.7} +{"session_id":"sess-9b78fca063df","input_length":932,"output_length":68,"hash_ids":[1196061,1196062],"delay":687.8} +{"session_id":"sess-9b78fca063df","input_length":1557,"output_length":196,"hash_ids":[1196063,1196064,1196065,1196066],"delay":518.4} +{"session_id":"sess-9b78fca063df","input_length":1262,"output_length":491,"hash_ids":[1196067,1196068,1196069],"delay":13441.8} +{"session_id":"sess-9b78fca063df","input_length":371,"output_length":101,"hash_ids":[1196070],"delay":161.5} +{"session_id":"sess-9b78fca063df","input_length":1634,"output_length":196,"hash_ids":[1196071,1196072,1196073,1196074],"delay":11809.8} +{"session_id":"sess-9b78fca063df","input_length":640,"output_length":134,"hash_ids":[1196075,1196076],"delay":900.8} +{"session_id":"sess-9b78fca063df","input_length":703,"output_length":135,"hash_ids":[1196077,1196078],"delay":22456.4} +{"session_id":"sess-9b78fca063df","input_length":647,"output_length":166,"hash_ids":[1196079,1196080],"delay":933.0} +{"session_id":"sess-9b78fca063df","input_length":1404,"output_length":36,"hash_ids":[1196081,1196082,1196083],"delay":1375.3} +{"session_id":"sess-9b78fca063df","input_length":199,"output_length":402,"hash_ids":[1196084],"delay":2948.3} +{"session_id":"sess-9b78fca063df","input_length":2074,"output_length":211,"hash_ids":[1196085,1196086,1196087,1196088,1196089],"delay":1369.2} +{"session_id":"sess-9b78fca063df","input_length":833,"output_length":96,"hash_ids":[1196090,1196091],"delay":34336.7} +{"session_id":"sess-9b78fca063df","input_length":486,"output_length":119,"hash_ids":[1196092],"delay":466.3} +{"session_id":"sess-9b78fca063df","input_length":1197,"output_length":847,"hash_ids":[1196093,1196094,1196095],"delay":702.3} +{"session_id":"sess-9b78fca063df","input_length":643,"output_length":515,"hash_ids":[1196096,1196097],"delay":2513.5} +{"session_id":"sess-9b78fca063df","input_length":984,"output_length":145,"hash_ids":[1196098,1196099],"delay":625.4} +{"session_id":"sess-9b78fca063df","input_length":880,"output_length":632,"hash_ids":[1196100,1196101],"delay":998.3} +{"session_id":"sess-9b78fca063df","input_length":1348,"output_length":133,"hash_ids":[1196102,1196103,1196104],"delay":410.4} +{"session_id":"sess-6fcf89ee89d7","input_length":35307,"output_length":618,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1200032,1200033,1200034,1200035,1200036,1200037,1200038,1200039,1200040,1200041,1200042,1200043,1200044,1200045,1200046,1200047,1200048],"timestamp":0.0,"group_id":5} +{"session_id":"sess-6fcf89ee89d7","input_length":218,"output_length":587,"hash_ids":[1200049],"delay":3569.3} +{"session_id":"sess-6fcf89ee89d7","input_length":2083,"output_length":327,"hash_ids":[1200050,1200051,1200052,1200053,1200054],"delay":305.6} +{"session_id":"sess-6fcf89ee89d7","input_length":1219,"output_length":199,"hash_ids":[1200055,1200056,1200057],"delay":4995.4} +{"session_id":"sess-6fcf89ee89d7","input_length":1169,"output_length":304,"hash_ids":[1200058,1200059,1200060],"delay":31379.5} +{"session_id":"sess-6fcf89ee89d7","input_length":267,"output_length":513,"hash_ids":[1200061],"delay":762.3} +{"session_id":"sess-6fcf89ee89d7","input_length":990,"output_length":167,"hash_ids":[1200062,1200063],"delay":759.4} +{"session_id":"sess-6fcf89ee89d7","input_length":1715,"output_length":752,"hash_ids":[1200064,1200065,1200066,1200067],"delay":733.5} +{"session_id":"sess-6fcf89ee89d7","input_length":637,"output_length":83,"hash_ids":[1200068,1200069],"delay":5521.5} +{"session_id":"sess-6fcf89ee89d7","input_length":730,"output_length":300,"hash_ids":[1200070,1200071],"delay":1049.4} +{"session_id":"sess-6fcf89ee89d7","input_length":1274,"output_length":148,"hash_ids":[1200072,1200073,1200074],"delay":1706.7} +{"session_id":"sess-6fcf89ee89d7","input_length":227,"output_length":88,"hash_ids":[1200075],"delay":406.9} +{"session_id":"sess-6fcf89ee89d7","input_length":153,"output_length":154,"hash_ids":[1200076],"delay":165.5} +{"session_id":"sess-6fcf89ee89d7","input_length":1395,"output_length":211,"hash_ids":[1200077,1200078,1200079],"delay":24918.2} +{"session_id":"sess-6fcf89ee89d7","input_length":200,"output_length":477,"hash_ids":[1200080],"delay":1368.8} +{"session_id":"sess-6fcf89ee89d7","input_length":298,"output_length":181,"hash_ids":[1200081],"delay":12210.5} +{"session_id":"sess-6fcf89ee89d7","input_length":1173,"output_length":703,"hash_ids":[1200082,1200083,1200084],"delay":382.0} +{"session_id":"sess-6fcf89ee89d7","input_length":1673,"output_length":473,"hash_ids":[1200085,1200086,1200087,1200088],"delay":679.2} +{"session_id":"sess-6fcf89ee89d7","input_length":1844,"output_length":286,"hash_ids":[1200089,1200090,1200091,1200092],"delay":790.7} +{"session_id":"sess-6fcf89ee89d7","input_length":1202,"output_length":262,"hash_ids":[1200093,1200094,1200095],"delay":4618.6} +{"session_id":"sess-6fcf89ee89d7","input_length":527,"output_length":251,"hash_ids":[1200096,1200097],"delay":9091.5} +{"session_id":"sess-6fcf89ee89d7","input_length":126,"output_length":203,"hash_ids":[1200098],"delay":360.2} +{"session_id":"sess-6fcf89ee89d7","input_length":2255,"output_length":107,"hash_ids":[1200099,1200100,1200101,1200102,1200103],"delay":1341.3} +{"session_id":"sess-87964378ff42","input_length":30310,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1204032,1204033,1204034,1204035,1204036,1204037,1204038,1204039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-87964378ff42","input_length":1773,"output_length":277,"hash_ids":[1204040,1204041,1204042,1204043],"delay":1167.2} +{"session_id":"sess-87964378ff42","input_length":655,"output_length":273,"hash_ids":[1204044,1204045],"delay":573.9} +{"session_id":"sess-87964378ff42","input_length":1236,"output_length":230,"hash_ids":[1204046,1204047,1204048],"delay":1168.2} +{"session_id":"sess-87964378ff42","input_length":1172,"output_length":93,"hash_ids":[1204049,1204050,1204051],"delay":1605.8} +{"session_id":"sess-87964378ff42","input_length":1582,"output_length":121,"hash_ids":[1204052,1204053,1204054,1204055],"delay":314.4} +{"session_id":"sess-87964378ff42","input_length":1028,"output_length":194,"hash_ids":[1204056,1204057,1204058],"delay":1052.7} +{"session_id":"sess-87964378ff42","input_length":653,"output_length":125,"hash_ids":[1204059,1204060],"delay":2593.7} +{"session_id":"sess-87964378ff42","input_length":505,"output_length":1164,"hash_ids":[1204061],"delay":24801.8} +{"session_id":"sess-87964378ff42","input_length":472,"output_length":107,"hash_ids":[1204062],"delay":2880.7} +{"session_id":"sess-87964378ff42","input_length":802,"output_length":349,"hash_ids":[1204063,1204064],"delay":55029.8} +{"session_id":"sess-6e2cb2beda17","input_length":27323,"output_length":301,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1208032,1208033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6e2cb2beda17","input_length":1006,"output_length":592,"hash_ids":[1208034,1208035],"delay":5120.1} +{"session_id":"sess-6e2cb2beda17","input_length":50,"output_length":243,"hash_ids":[1208036],"delay":73751.5} +{"session_id":"sess-6e2cb2beda17","input_length":1640,"output_length":53,"hash_ids":[1208037,1208038,1208039,1208040],"delay":1735.0} +{"session_id":"sess-6e2cb2beda17","input_length":2605,"output_length":499,"hash_ids":[1208041,1208042,1208043,1208044,1208045,1208046],"delay":7644.6} +{"session_id":"sess-6e2cb2beda17","input_length":1953,"output_length":368,"hash_ids":[1208047,1208048,1208049,1208050],"delay":5124.5} +{"session_id":"sess-6e2cb2beda17","input_length":1277,"output_length":184,"hash_ids":[1208051,1208052,1208053],"delay":4017.6} +{"session_id":"sess-6e2cb2beda17","input_length":1144,"output_length":77,"hash_ids":[1208054,1208055,1208056],"delay":1101.7} +{"session_id":"sess-6e2cb2beda17","input_length":568,"output_length":196,"hash_ids":[1208057,1208058],"delay":1315.4} +{"session_id":"sess-6e2cb2beda17","input_length":257,"output_length":153,"hash_ids":[1208059],"delay":1693.6} +{"session_id":"sess-6e2cb2beda17","input_length":2516,"output_length":130,"hash_ids":[1208060,1208061,1208062,1208063,1208064],"delay":950.0} +{"session_id":"sess-6e2cb2beda17","input_length":327,"output_length":164,"hash_ids":[1208065],"delay":746.5} +{"session_id":"sess-6e2cb2beda17","input_length":239,"output_length":805,"hash_ids":[1208066],"delay":5817.5} +{"session_id":"sess-6e2cb2beda17","input_length":587,"output_length":217,"hash_ids":[1208067,1208068],"delay":10293.2} +{"session_id":"sess-6e2cb2beda17","input_length":1818,"output_length":199,"hash_ids":[1208069,1208070,1208071,1208072],"delay":28210.1} +{"session_id":"sess-6e2cb2beda17","input_length":2447,"output_length":591,"hash_ids":[1208073,1208074,1208075,1208076,1208077],"delay":1034.9} +{"session_id":"sess-6e2cb2beda17","input_length":661,"output_length":200,"hash_ids":[1208078,1208079],"delay":23185.7} +{"session_id":"sess-6e2cb2beda17","input_length":923,"output_length":117,"hash_ids":[1208080,1208081],"delay":23125.0} +{"session_id":"sess-6e2cb2beda17","input_length":216,"output_length":281,"hash_ids":[1208082],"delay":172.0} +{"session_id":"sess-6e2cb2beda17","input_length":576,"output_length":471,"hash_ids":[1208083,1208084],"delay":293.8} +{"session_id":"sess-6e2cb2beda17","input_length":550,"output_length":397,"hash_ids":[1208085,1208086],"delay":285.2} +{"session_id":"sess-6e2cb2beda17","input_length":1111,"output_length":59,"hash_ids":[1208087,1208088,1208089],"delay":459.7} +{"session_id":"sess-6e2cb2beda17","input_length":337,"output_length":195,"hash_ids":[1208090],"delay":15295.1} +{"session_id":"sess-418a908a1091","input_length":26412,"output_length":267,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051],"timestamp":0.0,"group_id":20} +{"session_id":"sess-418a908a1091","input_length":402,"output_length":170,"hash_ids":[1208091],"delay":2270.3} +{"session_id":"sess-418a908a1091","input_length":2810,"output_length":123,"hash_ids":[1208092,1208093,1208094,1208095,1208096,1208097],"delay":2431.4} +{"session_id":"sess-418a908a1091","input_length":383,"output_length":78,"hash_ids":[1208098],"delay":1169.2} +{"session_id":"sess-418a908a1091","input_length":1795,"output_length":164,"hash_ids":[1208099,1208100,1208101,1208102],"delay":22457.6} +{"session_id":"sess-418a908a1091","input_length":1513,"output_length":60,"hash_ids":[1208103,1208104,1208105],"delay":648.6} +{"session_id":"sess-418a908a1091","input_length":491,"output_length":30,"hash_ids":[1208106],"delay":1644.4} +{"session_id":"sess-418a908a1091","input_length":2274,"output_length":54,"hash_ids":[1208107,1208108,1208109,1208110,1208111],"delay":3905.3} +{"session_id":"sess-8f098f6a6540","input_length":28573,"output_length":513,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1216032,1216033,1216034,1216035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8f098f6a6540","input_length":440,"output_length":591,"hash_ids":[1216036],"delay":15771.3} +{"session_id":"sess-8f098f6a6540","input_length":2358,"output_length":130,"hash_ids":[1216037,1216038,1216039,1216040,1216041],"delay":28115.5} +{"session_id":"sess-8f098f6a6540","input_length":226,"output_length":326,"hash_ids":[1216042],"delay":5072.0} +{"session_id":"sess-8f098f6a6540","input_length":472,"output_length":193,"hash_ids":[1216043],"delay":30212.9} +{"session_id":"sess-8f098f6a6540","input_length":1138,"output_length":70,"hash_ids":[1216044,1216045,1216046],"delay":1524.9} +{"session_id":"sess-8f098f6a6540","input_length":2008,"output_length":609,"hash_ids":[1216047,1216048,1216049,1216050],"delay":12079.3} +{"session_id":"sess-8f098f6a6540","input_length":2166,"output_length":616,"hash_ids":[1216051,1216052,1216053,1216054,1216055],"delay":918.3} +{"session_id":"sess-8f098f6a6540","input_length":1367,"output_length":320,"hash_ids":[1216056,1216057,1216058],"delay":4883.8} +{"session_id":"sess-8f098f6a6540","input_length":1449,"output_length":455,"hash_ids":[1216059,1216060,1216061],"delay":44164.8} +{"session_id":"sess-8f098f6a6540","input_length":1947,"output_length":104,"hash_ids":[1216062,1216063,1216064,1216065],"delay":19398.0} +{"session_id":"sess-8f098f6a6540","input_length":545,"output_length":144,"hash_ids":[1216066,1216067],"delay":44337.3} +{"session_id":"sess-8f098f6a6540","input_length":2096,"output_length":418,"hash_ids":[1216068,1216069,1216070,1216071,1216072],"delay":3948.5} +{"session_id":"sess-8f098f6a6540","input_length":2581,"output_length":38,"hash_ids":[1216073,1216074,1216075,1216076,1216077,1216078],"delay":7954.9} +{"session_id":"sess-8f098f6a6540","input_length":507,"output_length":388,"hash_ids":[1216079],"delay":582.0} +{"session_id":"sess-8f098f6a6540","input_length":1280,"output_length":692,"hash_ids":[1216080,1216081,1216082],"delay":502.8} +{"session_id":"sess-8f098f6a6540","input_length":354,"output_length":75,"hash_ids":[1216083],"delay":3073.8} +{"session_id":"sess-8f098f6a6540","input_length":420,"output_length":89,"hash_ids":[1216084],"delay":4432.7} +{"session_id":"sess-8f098f6a6540","input_length":601,"output_length":395,"hash_ids":[1216085,1216086],"delay":2493.6} +{"session_id":"sess-8f098f6a6540","input_length":316,"output_length":265,"hash_ids":[1216087],"delay":786.1} +{"session_id":"sess-8f098f6a6540","input_length":1500,"output_length":307,"hash_ids":[1216088,1216089,1216090],"delay":33534.8} +{"session_id":"sess-8f098f6a6540","input_length":607,"output_length":499,"hash_ids":[1216091,1216092],"delay":8701.3} +{"session_id":"sess-8f098f6a6540","input_length":198,"output_length":438,"hash_ids":[1216093],"delay":4132.5} +{"session_id":"sess-8f098f6a6540","input_length":461,"output_length":498,"hash_ids":[1216094],"delay":449.0} +{"session_id":"sess-8f098f6a6540","input_length":1034,"output_length":198,"hash_ids":[1216095,1216096,1216097],"delay":269.5} +{"session_id":"sess-8f098f6a6540","input_length":956,"output_length":428,"hash_ids":[1216098,1216099],"delay":121.1} +{"session_id":"sess-ee76b8afc1d4","input_length":29454,"output_length":311,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1220032,1220033,1220034,1220035,1220036,1220037],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ee76b8afc1d4","input_length":915,"output_length":952,"hash_ids":[1220038,1220039],"delay":15506.0} +{"session_id":"sess-ee76b8afc1d4","input_length":1291,"output_length":174,"hash_ids":[1220040,1220041,1220042],"delay":306.8} +{"session_id":"sess-ee76b8afc1d4","input_length":455,"output_length":773,"hash_ids":[1220043],"delay":2414.7} +{"session_id":"sess-ee76b8afc1d4","input_length":2620,"output_length":308,"hash_ids":[1220044,1220045,1220046,1220047,1220048,1220049],"delay":2696.1} +{"session_id":"sess-ee76b8afc1d4","input_length":2051,"output_length":279,"hash_ids":[1220050,1220051,1220052,1220053,1220054],"delay":1774.4} +{"session_id":"sess-ee76b8afc1d4","input_length":2122,"output_length":70,"hash_ids":[1220055,1220056,1220057,1220058,1220059],"delay":622.5} +{"session_id":"sess-ee76b8afc1d4","input_length":361,"output_length":633,"hash_ids":[1220060],"delay":400.8} +{"session_id":"sess-ee76b8afc1d4","input_length":907,"output_length":202,"hash_ids":[1220061,1220062],"delay":379.3} +{"session_id":"sess-ee76b8afc1d4","input_length":1856,"output_length":63,"hash_ids":[1220063,1220064,1220065,1220066],"delay":264.3} +{"session_id":"sess-ee76b8afc1d4","input_length":260,"output_length":32,"hash_ids":[1220067],"delay":10886.8} +{"session_id":"sess-ee76b8afc1d4","input_length":619,"output_length":162,"hash_ids":[1220068,1220069],"delay":1688.6} +{"session_id":"sess-ee76b8afc1d4","input_length":648,"output_length":76,"hash_ids":[1220070,1220071],"delay":713.5} +{"session_id":"sess-ee76b8afc1d4","input_length":888,"output_length":72,"hash_ids":[1220072,1220073],"delay":493.8} +{"session_id":"sess-ee76b8afc1d4","input_length":1292,"output_length":536,"hash_ids":[1220074,1220075,1220076],"delay":494.6} +{"session_id":"sess-ee76b8afc1d4","input_length":259,"output_length":446,"hash_ids":[1220077],"delay":234.5} +{"session_id":"sess-ee76b8afc1d4","input_length":2587,"output_length":310,"hash_ids":[1220078,1220079,1220080,1220081,1220082,1220083],"delay":1172.2} +{"session_id":"sess-ee76b8afc1d4","input_length":257,"output_length":325,"hash_ids":[1220084],"delay":19093.6} +{"session_id":"sess-ee76b8afc1d4","input_length":811,"output_length":97,"hash_ids":[1220085,1220086],"delay":21562.3} +{"session_id":"sess-ee76b8afc1d4","input_length":847,"output_length":79,"hash_ids":[1220087,1220088],"delay":539.8} +{"session_id":"sess-d374b7d13322","input_length":26854,"output_length":167,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1224032],"timestamp":0.0,"group_id":7} +{"session_id":"sess-d374b7d13322","input_length":626,"output_length":118,"hash_ids":[1224033,1224034],"delay":12630.7} +{"session_id":"sess-4691095612a4","input_length":27074,"output_length":298,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1228032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4691095612a4","input_length":1079,"output_length":494,"hash_ids":[1228033,1228034,1228035],"delay":629.9} +{"session_id":"sess-4691095612a4","input_length":987,"output_length":108,"hash_ids":[1228036,1228037],"delay":12642.2} +{"session_id":"sess-4691095612a4","input_length":246,"output_length":402,"hash_ids":[1228038],"delay":920.3} +{"session_id":"sess-4691095612a4","input_length":386,"output_length":64,"hash_ids":[1228039],"delay":655.8} +{"session_id":"sess-4691095612a4","input_length":598,"output_length":600,"hash_ids":[1228040,1228041],"delay":18053.9} +{"session_id":"sess-4691095612a4","input_length":904,"output_length":170,"hash_ids":[1228042,1228043],"delay":627.4} +{"session_id":"sess-4691095612a4","input_length":231,"output_length":524,"hash_ids":[1228044],"delay":1488.1} +{"session_id":"sess-4691095612a4","input_length":351,"output_length":127,"hash_ids":[1228045],"delay":318.1} +{"session_id":"sess-4691095612a4","input_length":2295,"output_length":373,"hash_ids":[1228046,1228047,1228048,1228049,1228050],"delay":608.1} +{"session_id":"sess-4691095612a4","input_length":1707,"output_length":222,"hash_ids":[1228051,1228052,1228053,1228054],"delay":7907.4} +{"session_id":"sess-4691095612a4","input_length":660,"output_length":97,"hash_ids":[1228055,1228056],"delay":4713.5} +{"session_id":"sess-4691095612a4","input_length":2230,"output_length":104,"hash_ids":[1228057,1228058,1228059,1228060,1228061],"delay":129.5} +{"session_id":"sess-4691095612a4","input_length":448,"output_length":247,"hash_ids":[1228062],"delay":519.5} +{"session_id":"sess-4691095612a4","input_length":543,"output_length":199,"hash_ids":[1228063,1228064],"delay":1255.2} +{"session_id":"sess-4691095612a4","input_length":2235,"output_length":267,"hash_ids":[1228065,1228066,1228067,1228068,1228069],"delay":546.1} +{"session_id":"sess-4691095612a4","input_length":1526,"output_length":211,"hash_ids":[1228070,1228071,1228072],"delay":159.4} +{"session_id":"sess-4691095612a4","input_length":364,"output_length":369,"hash_ids":[1228073],"delay":371.6} +{"session_id":"sess-4691095612a4","input_length":1115,"output_length":118,"hash_ids":[1228074,1228075,1228076],"delay":1352.8} +{"session_id":"sess-65c48201f97d","input_length":26344,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451],"timestamp":0.0,"group_id":7} +{"session_id":"sess-65c48201f97d","input_length":1400,"output_length":78,"hash_ids":[1228077,1228078,1228079],"delay":343.6} +{"session_id":"sess-65c48201f97d","input_length":2064,"output_length":224,"hash_ids":[1228080,1228081,1228082,1228083,1228084],"delay":964.2} +{"session_id":"sess-65c48201f97d","input_length":403,"output_length":609,"hash_ids":[1228085],"delay":754.1} +{"session_id":"sess-65c48201f97d","input_length":99,"output_length":112,"hash_ids":[1228086],"delay":380.5} +{"session_id":"sess-65c48201f97d","input_length":1045,"output_length":635,"hash_ids":[1228087,1228088,1228089],"delay":838.8} +{"session_id":"sess-65c48201f97d","input_length":1761,"output_length":247,"hash_ids":[1228090,1228091,1228092,1228093],"delay":812.4} +{"session_id":"sess-65c48201f97d","input_length":525,"output_length":144,"hash_ids":[1228094,1228095],"delay":735.8} +{"session_id":"sess-65c48201f97d","input_length":1200,"output_length":345,"hash_ids":[1228096,1228097,1228098],"delay":1131.6} +{"session_id":"sess-65c48201f97d","input_length":171,"output_length":67,"hash_ids":[1228099],"delay":1976.2} +{"session_id":"sess-65c48201f97d","input_length":475,"output_length":70,"hash_ids":[1228100],"delay":3790.5} +{"session_id":"sess-65c48201f97d","input_length":606,"output_length":658,"hash_ids":[1228101,1228102],"delay":1001.3} +{"session_id":"sess-65c48201f97d","input_length":2155,"output_length":73,"hash_ids":[1228103,1228104,1228105,1228106,1228107],"delay":601.8} +{"session_id":"sess-65c48201f97d","input_length":156,"output_length":740,"hash_ids":[1228108],"delay":689.3} +{"session_id":"sess-65c48201f97d","input_length":2138,"output_length":49,"hash_ids":[1228109,1228110,1228111,1228112,1228113],"delay":743.6} +{"session_id":"sess-65c48201f97d","input_length":331,"output_length":111,"hash_ids":[1228114],"delay":265.9} +{"session_id":"sess-65c48201f97d","input_length":584,"output_length":296,"hash_ids":[1228115,1228116],"delay":31224.0} +{"session_id":"sess-65c48201f97d","input_length":689,"output_length":53,"hash_ids":[1228117,1228118],"delay":16566.3} +{"session_id":"sess-65c48201f97d","input_length":1698,"output_length":108,"hash_ids":[1228119,1228120,1228121,1228122],"delay":35103.4} +{"session_id":"sess-65c48201f97d","input_length":708,"output_length":772,"hash_ids":[1228123,1228124],"delay":207.2} +{"session_id":"sess-65c48201f97d","input_length":520,"output_length":203,"hash_ids":[1228125,1228126],"delay":891.3} +{"session_id":"sess-65c48201f97d","input_length":908,"output_length":306,"hash_ids":[1228127,1228128],"delay":1158.9} +{"session_id":"sess-65c48201f97d","input_length":2055,"output_length":275,"hash_ids":[1228129,1228130,1228131,1228132,1228133],"delay":153.7} +{"session_id":"sess-65c48201f97d","input_length":234,"output_length":187,"hash_ids":[1228134],"delay":850.1} +{"session_id":"sess-65c48201f97d","input_length":973,"output_length":137,"hash_ids":[1228135,1228136],"delay":108.9} +{"session_id":"sess-65c48201f97d","input_length":2411,"output_length":73,"hash_ids":[1228137,1228138,1228139,1228140,1228141],"delay":885.5} +{"session_id":"sess-65c48201f97d","input_length":1476,"output_length":349,"hash_ids":[1228142,1228143,1228144],"delay":2864.8} +{"session_id":"sess-65c48201f97d","input_length":379,"output_length":597,"hash_ids":[1228145],"delay":987.0} +{"session_id":"sess-65c48201f97d","input_length":841,"output_length":149,"hash_ids":[1228146,1228147],"delay":273.8} +{"session_id":"sess-65c48201f97d","input_length":393,"output_length":1013,"hash_ids":[1228148],"delay":2338.3} +{"session_id":"sess-65c48201f97d","input_length":260,"output_length":106,"hash_ids":[1228149],"delay":15630.0} +{"session_id":"sess-54f80ac7d192","input_length":29121,"output_length":51,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1236032,1236033,1236034,1236035,1236036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-54f80ac7d192","input_length":1064,"output_length":59,"hash_ids":[1236037,1236038,1236039],"delay":1954.0} +{"session_id":"sess-54f80ac7d192","input_length":985,"output_length":73,"hash_ids":[1236040,1236041],"delay":1692.9} +{"session_id":"sess-54f80ac7d192","input_length":943,"output_length":150,"hash_ids":[1236042,1236043],"delay":719.1} +{"session_id":"sess-54f80ac7d192","input_length":234,"output_length":153,"hash_ids":[1236044],"delay":484.2} +{"session_id":"sess-54f80ac7d192","input_length":863,"output_length":196,"hash_ids":[1236045,1236046],"delay":13950.5} +{"session_id":"sess-54f80ac7d192","input_length":569,"output_length":192,"hash_ids":[1236047,1236048],"delay":43883.7} +{"session_id":"sess-54f80ac7d192","input_length":889,"output_length":358,"hash_ids":[1236049,1236050],"delay":374.5} +{"session_id":"sess-54f80ac7d192","input_length":1622,"output_length":223,"hash_ids":[1236051,1236052,1236053,1236054],"delay":5371.2} +{"session_id":"sess-54f80ac7d192","input_length":1368,"output_length":177,"hash_ids":[1236055,1236056,1236057],"delay":450.6} +{"session_id":"sess-54f80ac7d192","input_length":1052,"output_length":436,"hash_ids":[1236058,1236059,1236060],"delay":524.6} +{"session_id":"sess-54f80ac7d192","input_length":375,"output_length":30,"hash_ids":[1236061],"delay":13307.9} +{"session_id":"sess-54f80ac7d192","input_length":305,"output_length":566,"hash_ids":[1236062],"delay":1595.2} +{"session_id":"sess-54f80ac7d192","input_length":1597,"output_length":364,"hash_ids":[1236063,1236064,1236065,1236066],"delay":719.0} +{"session_id":"sess-54f80ac7d192","input_length":992,"output_length":86,"hash_ids":[1236067,1236068],"delay":794.3} +{"session_id":"sess-54f80ac7d192","input_length":2770,"output_length":980,"hash_ids":[1236069,1236070,1236071,1236072,1236073,1236074],"delay":688.1} +{"session_id":"sess-54f80ac7d192","input_length":1337,"output_length":79,"hash_ids":[1236075,1236076,1236077],"delay":317.0} +{"session_id":"sess-54f80ac7d192","input_length":1035,"output_length":282,"hash_ids":[1236078,1236079,1236080],"delay":646.0} +{"session_id":"sess-54f80ac7d192","input_length":594,"output_length":102,"hash_ids":[1236081,1236082],"delay":688.9} +{"session_id":"sess-54f80ac7d192","input_length":430,"output_length":305,"hash_ids":[1236083],"delay":538.7} +{"session_id":"sess-54f80ac7d192","input_length":806,"output_length":145,"hash_ids":[1236084,1236085],"delay":703.3} +{"session_id":"sess-54f80ac7d192","input_length":1723,"output_length":30,"hash_ids":[1236086,1236087,1236088,1236089],"delay":17616.5} +{"session_id":"sess-54f80ac7d192","input_length":947,"output_length":135,"hash_ids":[1236090,1236091],"delay":8690.5} +{"session_id":"sess-54f80ac7d192","input_length":419,"output_length":101,"hash_ids":[1236092],"delay":1248.0} +{"session_id":"sess-54f80ac7d192","input_length":2396,"output_length":516,"hash_ids":[1236093,1236094,1236095,1236096,1236097],"delay":240.9} +{"session_id":"sess-54f80ac7d192","input_length":250,"output_length":237,"hash_ids":[1236098],"delay":22318.4} +{"session_id":"sess-54f80ac7d192","input_length":575,"output_length":125,"hash_ids":[1236099,1236100],"delay":2484.8} +{"session_id":"sess-54f80ac7d192","input_length":353,"output_length":628,"hash_ids":[1236101],"delay":308.1} +{"session_id":"sess-35f035d31a3f","input_length":28585,"output_length":234,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1240032,1240033,1240034,1240035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-35f035d31a3f","input_length":1044,"output_length":759,"hash_ids":[1240036,1240037,1240038],"delay":5592.1} +{"session_id":"sess-35f035d31a3f","input_length":1098,"output_length":582,"hash_ids":[1240039,1240040,1240041],"delay":897.2} +{"session_id":"sess-35f035d31a3f","input_length":471,"output_length":296,"hash_ids":[1240042],"delay":2082.7} +{"session_id":"sess-35f035d31a3f","input_length":1944,"output_length":110,"hash_ids":[1240043,1240044,1240045,1240046],"delay":1621.8} +{"session_id":"sess-35f035d31a3f","input_length":1561,"output_length":173,"hash_ids":[1240047,1240048,1240049,1240050],"delay":398.8} +{"session_id":"sess-35f035d31a3f","input_length":2192,"output_length":284,"hash_ids":[1240051,1240052,1240053,1240054,1240055],"delay":2015.1} +{"session_id":"sess-35f035d31a3f","input_length":1725,"output_length":212,"hash_ids":[1240056,1240057,1240058,1240059],"delay":724.1} +{"session_id":"sess-35f035d31a3f","input_length":709,"output_length":163,"hash_ids":[1240060,1240061],"delay":576.3} +{"session_id":"sess-35f035d31a3f","input_length":1491,"output_length":202,"hash_ids":[1240062,1240063,1240064],"delay":313.0} +{"session_id":"sess-35f035d31a3f","input_length":953,"output_length":377,"hash_ids":[1240065,1240066],"delay":2182.0} +{"session_id":"sess-35f035d31a3f","input_length":868,"output_length":147,"hash_ids":[1240067,1240068],"delay":844.6} +{"session_id":"sess-35f035d31a3f","input_length":1756,"output_length":358,"hash_ids":[1240069,1240070,1240071,1240072],"delay":1194.1} +{"session_id":"sess-35f035d31a3f","input_length":1889,"output_length":241,"hash_ids":[1240073,1240074,1240075,1240076],"delay":1007.2} +{"session_id":"sess-35f035d31a3f","input_length":1045,"output_length":145,"hash_ids":[1240077,1240078,1240079],"delay":701.0} +{"session_id":"sess-35f035d31a3f","input_length":2268,"output_length":111,"hash_ids":[1240080,1240081,1240082,1240083,1240084],"delay":454.7} +{"session_id":"sess-35f035d31a3f","input_length":1889,"output_length":346,"hash_ids":[1240085,1240086,1240087,1240088],"delay":9697.7} +{"session_id":"sess-35f035d31a3f","input_length":146,"output_length":115,"hash_ids":[1240089],"delay":186.5} +{"session_id":"sess-35f035d31a3f","input_length":745,"output_length":1349,"hash_ids":[1240090,1240091],"delay":17450.8} +{"session_id":"sess-35f035d31a3f","input_length":1329,"output_length":250,"hash_ids":[1240092,1240093,1240094],"delay":1511.9} +{"session_id":"sess-35f035d31a3f","input_length":2648,"output_length":233,"hash_ids":[1240095,1240096,1240097,1240098,1240099,1240100],"delay":348.5} +{"session_id":"sess-2aec8859fe10","input_length":27759,"output_length":107,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1244032,1244033,1244034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2aec8859fe10","input_length":1910,"output_length":148,"hash_ids":[1244035,1244036,1244037,1244038],"delay":13543.7} +{"session_id":"sess-2aec8859fe10","input_length":255,"output_length":149,"hash_ids":[1244039],"delay":3548.8} +{"session_id":"sess-2aec8859fe10","input_length":2517,"output_length":488,"hash_ids":[1244040,1244041,1244042,1244043,1244044],"delay":672.0} +{"session_id":"sess-2aec8859fe10","input_length":744,"output_length":140,"hash_ids":[1244045,1244046],"delay":9369.2} +{"session_id":"sess-8ca4f01ba6ce","input_length":27171,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1248032,1248033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8ca4f01ba6ce","input_length":942,"output_length":328,"hash_ids":[1248034,1248035],"delay":209.3} +{"session_id":"sess-8ca4f01ba6ce","input_length":1488,"output_length":158,"hash_ids":[1248036,1248037,1248038],"delay":3518.9} +{"session_id":"sess-8ca4f01ba6ce","input_length":1168,"output_length":107,"hash_ids":[1248039,1248040,1248041],"delay":1640.9} +{"session_id":"sess-8ca4f01ba6ce","input_length":945,"output_length":187,"hash_ids":[1248042,1248043],"delay":917.9} +{"session_id":"sess-8ca4f01ba6ce","input_length":897,"output_length":690,"hash_ids":[1248044,1248045],"delay":4149.3} +{"session_id":"sess-8ca4f01ba6ce","input_length":1504,"output_length":421,"hash_ids":[1248046,1248047,1248048],"delay":18393.5} +{"session_id":"sess-8ca4f01ba6ce","input_length":1782,"output_length":35,"hash_ids":[1248049,1248050,1248051,1248052],"delay":324.0} +{"session_id":"sess-8ca4f01ba6ce","input_length":1067,"output_length":904,"hash_ids":[1248053,1248054,1248055],"delay":2514.9} +{"session_id":"sess-8ca4f01ba6ce","input_length":541,"output_length":529,"hash_ids":[1248056,1248057],"delay":1514.8} +{"session_id":"sess-8ca4f01ba6ce","input_length":296,"output_length":42,"hash_ids":[1248058],"delay":272.3} +{"session_id":"sess-8ca4f01ba6ce","input_length":613,"output_length":221,"hash_ids":[1248059,1248060],"delay":1232.1} +{"session_id":"sess-8ca4f01ba6ce","input_length":2968,"output_length":55,"hash_ids":[1248061,1248062,1248063,1248064,1248065,1248066],"delay":328.8} +{"session_id":"sess-8ca4f01ba6ce","input_length":604,"output_length":69,"hash_ids":[1248067,1248068],"delay":10731.3} +{"session_id":"sess-8ca4f01ba6ce","input_length":644,"output_length":67,"hash_ids":[1248069,1248070],"delay":7803.4} +{"session_id":"sess-8ca4f01ba6ce","input_length":168,"output_length":175,"hash_ids":[1248071],"delay":4867.5} +{"session_id":"sess-8ca4f01ba6ce","input_length":692,"output_length":158,"hash_ids":[1248072,1248073],"delay":1544.0} +{"session_id":"sess-8ca4f01ba6ce","input_length":427,"output_length":613,"hash_ids":[1248074],"delay":111.0} +{"session_id":"sess-8ca4f01ba6ce","input_length":637,"output_length":220,"hash_ids":[1248075,1248076],"delay":340.0} +{"session_id":"sess-8ca4f01ba6ce","input_length":381,"output_length":160,"hash_ids":[1248077],"delay":1037.7} +{"session_id":"sess-8ca4f01ba6ce","input_length":381,"output_length":151,"hash_ids":[1248078],"delay":394.4} +{"session_id":"sess-8ca4f01ba6ce","input_length":88,"output_length":70,"hash_ids":[1248079],"delay":1797.8} +{"session_id":"sess-8ca4f01ba6ce","input_length":1943,"output_length":292,"hash_ids":[1248080,1248081,1248082,1248083],"delay":16312.6} +{"session_id":"sess-8ca4f01ba6ce","input_length":954,"output_length":748,"hash_ids":[1248084,1248085],"delay":1235.2} +{"session_id":"sess-8ca4f01ba6ce","input_length":1622,"output_length":190,"hash_ids":[1248086,1248087,1248088,1248089],"delay":265.2} +{"session_id":"sess-8ca4f01ba6ce","input_length":768,"output_length":484,"hash_ids":[1248090,1248091],"delay":2391.4} +{"session_id":"sess-8ca4f01ba6ce","input_length":723,"output_length":218,"hash_ids":[1248092,1248093],"delay":212.7} +{"session_id":"sess-8ca4f01ba6ce","input_length":443,"output_length":316,"hash_ids":[1248094],"delay":551.7} +{"session_id":"sess-8ca4f01ba6ce","input_length":119,"output_length":363,"hash_ids":[1248095],"delay":26002.9} +{"session_id":"sess-8ca4f01ba6ce","input_length":447,"output_length":451,"hash_ids":[1248096],"delay":4302.6} +{"session_id":"sess-8ca4f01ba6ce","input_length":1068,"output_length":482,"hash_ids":[1248097,1248098,1248099],"delay":1103.8} +{"session_id":"sess-8ca4f01ba6ce","input_length":643,"output_length":651,"hash_ids":[1248100,1248101],"delay":270.3} +{"session_id":"sess-8ca4f01ba6ce","input_length":888,"output_length":30,"hash_ids":[1248102,1248103],"delay":91.4} +{"session_id":"sess-1a088c231605","input_length":28014,"output_length":209,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,1252032,1252033,1252034],"timestamp":0.0,"group_id":23} +{"session_id":"sess-1a088c231605","input_length":1317,"output_length":104,"hash_ids":[1252035,1252036,1252037],"delay":26088.0} +{"session_id":"sess-1a088c231605","input_length":2538,"output_length":162,"hash_ids":[1252038,1252039,1252040,1252041,1252042],"delay":4539.5} +{"session_id":"sess-1a088c231605","input_length":1179,"output_length":628,"hash_ids":[1252043,1252044,1252045],"delay":1663.7} +{"session_id":"sess-1a088c231605","input_length":620,"output_length":85,"hash_ids":[1252046,1252047],"delay":4857.1} +{"session_id":"sess-1a088c231605","input_length":2712,"output_length":73,"hash_ids":[1252048,1252049,1252050,1252051,1252052,1252053],"delay":19330.7} +{"session_id":"sess-1a088c231605","input_length":1673,"output_length":306,"hash_ids":[1252054,1252055,1252056,1252057],"delay":1042.4} +{"session_id":"sess-1a088c231605","input_length":656,"output_length":502,"hash_ids":[1252058,1252059],"delay":286.6} +{"session_id":"sess-1a088c231605","input_length":2438,"output_length":84,"hash_ids":[1252060,1252061,1252062,1252063,1252064],"delay":1016.0} +{"session_id":"sess-1a088c231605","input_length":711,"output_length":190,"hash_ids":[1252065,1252066],"delay":288.7} +{"session_id":"sess-1a088c231605","input_length":706,"output_length":194,"hash_ids":[1252067,1252068],"delay":10799.0} +{"session_id":"sess-1a088c231605","input_length":334,"output_length":245,"hash_ids":[1252069],"delay":249.5} +{"session_id":"sess-1a088c231605","input_length":2555,"output_length":30,"hash_ids":[1252070,1252071,1252072,1252073,1252074],"delay":15933.6} +{"session_id":"sess-1a088c231605","input_length":919,"output_length":67,"hash_ids":[1252075,1252076],"delay":13092.0} +{"session_id":"sess-1a088c231605","input_length":232,"output_length":1015,"hash_ids":[1252077],"delay":252.7} +{"session_id":"sess-1a088c231605","input_length":583,"output_length":188,"hash_ids":[1252078,1252079],"delay":191.9} +{"session_id":"sess-1a088c231605","input_length":151,"output_length":252,"hash_ids":[1252080],"delay":863.9} +{"session_id":"sess-1a088c231605","input_length":2175,"output_length":188,"hash_ids":[1252081,1252082,1252083,1252084,1252085],"delay":6790.6} +{"session_id":"sess-1a088c231605","input_length":1975,"output_length":162,"hash_ids":[1252086,1252087,1252088,1252089],"delay":1205.3} +{"session_id":"sess-1a088c231605","input_length":135,"output_length":346,"hash_ids":[1252090],"delay":14504.0} +{"session_id":"sess-1a088c231605","input_length":757,"output_length":1121,"hash_ids":[1252091,1252092],"delay":288.6} +{"session_id":"sess-1a088c231605","input_length":2130,"output_length":35,"hash_ids":[1252093,1252094,1252095,1252096,1252097],"delay":588.3} +{"session_id":"sess-1a088c231605","input_length":119,"output_length":125,"hash_ids":[1252098],"delay":495.2} +{"session_id":"sess-1a088c231605","input_length":544,"output_length":336,"hash_ids":[1252099,1252100],"delay":6230.4} +{"session_id":"sess-1a088c231605","input_length":1956,"output_length":194,"hash_ids":[1252101,1252102,1252103,1252104],"delay":11239.8} +{"session_id":"sess-1a088c231605","input_length":1423,"output_length":243,"hash_ids":[1252105,1252106,1252107],"delay":22237.1} +{"session_id":"sess-fb611cad67c5","input_length":26258,"output_length":230,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-fb611cad67c5","input_length":157,"output_length":30,"hash_ids":[1252108],"delay":1736.2} +{"session_id":"sess-fb611cad67c5","input_length":194,"output_length":530,"hash_ids":[1252109],"delay":2126.8} +{"session_id":"sess-fb611cad67c5","input_length":1442,"output_length":33,"hash_ids":[1252110,1252111,1252112],"delay":3415.8} +{"session_id":"sess-fb611cad67c5","input_length":224,"output_length":99,"hash_ids":[1252113],"delay":231.6} +{"session_id":"sess-fb611cad67c5","input_length":639,"output_length":562,"hash_ids":[1252114,1252115],"delay":2341.1} +{"session_id":"sess-fb611cad67c5","input_length":486,"output_length":286,"hash_ids":[1252116],"delay":696.3} +{"session_id":"sess-fb611cad67c5","input_length":936,"output_length":471,"hash_ids":[1252117,1252118],"delay":64058.3} +{"session_id":"sess-fb611cad67c5","input_length":587,"output_length":233,"hash_ids":[1252119,1252120],"delay":220.0} +{"session_id":"sess-fb611cad67c5","input_length":2662,"output_length":260,"hash_ids":[1252121,1252122,1252123,1252124,1252125,1252126],"delay":9473.4} +{"session_id":"sess-fb611cad67c5","input_length":1333,"output_length":388,"hash_ids":[1252127,1252128,1252129],"delay":392.8} +{"session_id":"sess-fb611cad67c5","input_length":1111,"output_length":191,"hash_ids":[1252130,1252131,1252132],"delay":3790.1} +{"session_id":"sess-fb611cad67c5","input_length":391,"output_length":136,"hash_ids":[1252133],"delay":33809.7} +{"session_id":"sess-fb611cad67c5","input_length":171,"output_length":30,"hash_ids":[1252134],"delay":1243.7} +{"session_id":"sess-fb611cad67c5","input_length":446,"output_length":647,"hash_ids":[1252135],"delay":551.0} +{"session_id":"sess-fb611cad67c5","input_length":1465,"output_length":98,"hash_ids":[1252136,1252137,1252138],"delay":431.3} +{"session_id":"sess-fb611cad67c5","input_length":1133,"output_length":839,"hash_ids":[1252139,1252140,1252141],"delay":1122.2} +{"session_id":"sess-fb611cad67c5","input_length":358,"output_length":367,"hash_ids":[1252142],"delay":369.2} +{"session_id":"sess-fb611cad67c5","input_length":1327,"output_length":639,"hash_ids":[1252143,1252144,1252145],"delay":1925.1} +{"session_id":"sess-fb611cad67c5","input_length":602,"output_length":171,"hash_ids":[1252146,1252147],"delay":32155.1} +{"session_id":"sess-fb611cad67c5","input_length":421,"output_length":348,"hash_ids":[1252148],"delay":846.3} +{"session_id":"sess-fb611cad67c5","input_length":629,"output_length":177,"hash_ids":[1252149,1252150],"delay":31658.2} +{"session_id":"sess-fb611cad67c5","input_length":695,"output_length":217,"hash_ids":[1252151,1252152],"delay":12504.0} +{"session_id":"sess-fb611cad67c5","input_length":755,"output_length":227,"hash_ids":[1252153,1252154],"delay":13374.9} +{"session_id":"sess-fb611cad67c5","input_length":532,"output_length":747,"hash_ids":[1252155,1252156],"delay":7503.1} +{"session_id":"sess-fb611cad67c5","input_length":278,"output_length":540,"hash_ids":[1252157],"delay":1102.3} +{"session_id":"sess-fb611cad67c5","input_length":1552,"output_length":149,"hash_ids":[1252158,1252159,1252160,1252161],"delay":612.3} +{"session_id":"sess-fb611cad67c5","input_length":173,"output_length":321,"hash_ids":[1252162],"delay":507.8} +{"session_id":"sess-fb611cad67c5","input_length":1277,"output_length":306,"hash_ids":[1252163,1252164,1252165],"delay":549.6} +{"session_id":"sess-fb611cad67c5","input_length":1765,"output_length":41,"hash_ids":[1252166,1252167,1252168,1252169],"delay":747.4} +{"session_id":"sess-fb611cad67c5","input_length":273,"output_length":30,"hash_ids":[1252170],"delay":390.9} +{"session_id":"sess-fb611cad67c5","input_length":1664,"output_length":136,"hash_ids":[1252171,1252172,1252173,1252174],"delay":692.7} +{"session_id":"sess-fb611cad67c5","input_length":68,"output_length":313,"hash_ids":[1252175],"delay":1818.5} +{"session_id":"sess-fb611cad67c5","input_length":713,"output_length":115,"hash_ids":[1252176,1252177],"delay":9634.8} +{"session_id":"sess-fb611cad67c5","input_length":112,"output_length":310,"hash_ids":[1252178],"delay":12721.8} +{"session_id":"sess-fb611cad67c5","input_length":683,"output_length":400,"hash_ids":[1252179,1252180],"delay":303.6} +{"session_id":"sess-fb611cad67c5","input_length":1306,"output_length":34,"hash_ids":[1252181,1252182,1252183],"delay":2013.2} +{"session_id":"sess-33f8f3b91a6d","input_length":29708,"output_length":68,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1260032,1260033,1260034,1260035,1260036,1260037,1260038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-33f8f3b91a6d","input_length":214,"output_length":62,"hash_ids":[1260039],"delay":21782.0} +{"session_id":"sess-33f8f3b91a6d","input_length":920,"output_length":409,"hash_ids":[1260040,1260041],"delay":2162.3} +{"session_id":"sess-33f8f3b91a6d","input_length":577,"output_length":230,"hash_ids":[1260042,1260043],"delay":385.4} +{"session_id":"sess-33f8f3b91a6d","input_length":765,"output_length":106,"hash_ids":[1260044,1260045],"delay":5715.4} +{"session_id":"sess-33f8f3b91a6d","input_length":320,"output_length":1256,"hash_ids":[1260046],"delay":749.7} +{"session_id":"sess-33f8f3b91a6d","input_length":484,"output_length":184,"hash_ids":[1260047],"delay":20640.4} +{"session_id":"sess-33f8f3b91a6d","input_length":105,"output_length":95,"hash_ids":[1260048],"delay":11466.0} +{"session_id":"sess-33f8f3b91a6d","input_length":2651,"output_length":165,"hash_ids":[1260049,1260050,1260051,1260052,1260053,1260054],"delay":692.9} +{"session_id":"sess-33f8f3b91a6d","input_length":290,"output_length":109,"hash_ids":[1260055],"delay":409.9} +{"session_id":"sess-e17771fc29ce","input_length":26517,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251],"timestamp":0.0,"group_id":36} +{"session_id":"sess-e17771fc29ce","input_length":259,"output_length":154,"hash_ids":[1260056],"delay":1867.6} +{"session_id":"sess-e17771fc29ce","input_length":1321,"output_length":375,"hash_ids":[1260057,1260058,1260059],"delay":16429.0} +{"session_id":"sess-e17771fc29ce","input_length":1217,"output_length":207,"hash_ids":[1260060,1260061,1260062],"delay":3557.3} +{"session_id":"sess-e17771fc29ce","input_length":231,"output_length":54,"hash_ids":[1260063],"delay":284.9} +{"session_id":"sess-e17771fc29ce","input_length":1000,"output_length":694,"hash_ids":[1260064,1260065],"delay":801.2} +{"session_id":"sess-e17771fc29ce","input_length":368,"output_length":187,"hash_ids":[1260066],"delay":3547.4} +{"session_id":"sess-e17771fc29ce","input_length":649,"output_length":43,"hash_ids":[1260067,1260068],"delay":444.6} +{"session_id":"sess-e17771fc29ce","input_length":444,"output_length":170,"hash_ids":[1260069],"delay":1488.2} +{"session_id":"sess-e17771fc29ce","input_length":1726,"output_length":215,"hash_ids":[1260070,1260071,1260072,1260073],"delay":649.0} +{"session_id":"sess-e17771fc29ce","input_length":2467,"output_length":193,"hash_ids":[1260074,1260075,1260076,1260077,1260078],"delay":947.2} +{"session_id":"sess-e17771fc29ce","input_length":560,"output_length":156,"hash_ids":[1260079,1260080],"delay":653.0} +{"session_id":"sess-e17771fc29ce","input_length":1044,"output_length":546,"hash_ids":[1260081,1260082,1260083],"delay":464.1} +{"session_id":"sess-e17771fc29ce","input_length":256,"output_length":154,"hash_ids":[1260084],"delay":348.6} +{"session_id":"sess-e17771fc29ce","input_length":737,"output_length":73,"hash_ids":[1260085,1260086],"delay":1095.4} +{"session_id":"sess-e17771fc29ce","input_length":344,"output_length":283,"hash_ids":[1260087],"delay":4174.6} +{"session_id":"sess-e17771fc29ce","input_length":131,"output_length":30,"hash_ids":[1260088],"delay":1289.3} +{"session_id":"sess-e17771fc29ce","input_length":1161,"output_length":202,"hash_ids":[1260089,1260090,1260091],"delay":929.3} +{"session_id":"sess-e17771fc29ce","input_length":261,"output_length":342,"hash_ids":[1260092],"delay":20656.2} +{"session_id":"sess-e17771fc29ce","input_length":1514,"output_length":546,"hash_ids":[1260093,1260094,1260095],"delay":457.1} +{"session_id":"sess-e17771fc29ce","input_length":1585,"output_length":124,"hash_ids":[1260096,1260097,1260098,1260099],"delay":426.2} +{"session_id":"sess-e17771fc29ce","input_length":2233,"output_length":624,"hash_ids":[1260100,1260101,1260102,1260103,1260104],"delay":605.4} +{"session_id":"sess-e17771fc29ce","input_length":1629,"output_length":207,"hash_ids":[1260105,1260106,1260107,1260108],"delay":508.8} +{"session_id":"sess-e17771fc29ce","input_length":1103,"output_length":158,"hash_ids":[1260109,1260110,1260111],"delay":1396.3} +{"session_id":"sess-e17771fc29ce","input_length":1539,"output_length":215,"hash_ids":[1260112,1260113,1260114,1260115],"delay":577.8} +{"session_id":"sess-e17771fc29ce","input_length":2046,"output_length":125,"hash_ids":[1260116,1260117,1260118,1260119],"delay":621.3} +{"session_id":"sess-e17771fc29ce","input_length":275,"output_length":201,"hash_ids":[1260120],"delay":8439.7} +{"session_id":"sess-e17771fc29ce","input_length":732,"output_length":75,"hash_ids":[1260121,1260122],"delay":3761.8} +{"session_id":"sess-e17771fc29ce","input_length":1584,"output_length":89,"hash_ids":[1260123,1260124,1260125,1260126],"delay":306.5} +{"session_id":"sess-e17771fc29ce","input_length":43,"output_length":348,"hash_ids":[1260127],"delay":106.7} +{"session_id":"sess-e17771fc29ce","input_length":296,"output_length":1060,"hash_ids":[1260128],"delay":3383.5} +{"session_id":"sess-e17771fc29ce","input_length":1728,"output_length":104,"hash_ids":[1260129,1260130,1260131,1260132],"delay":94.8} +{"session_id":"sess-d683f2f57075","input_length":33061,"output_length":202,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1268032,1268033,1268034,1268035,1268036,1268037,1268038,1268039,1268040,1268041,1268042,1268043,1268044],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d683f2f57075","input_length":1195,"output_length":193,"hash_ids":[1268045,1268046,1268047],"delay":57162.2} +{"session_id":"sess-d683f2f57075","input_length":671,"output_length":122,"hash_ids":[1268048,1268049],"delay":291.6} +{"session_id":"sess-d683f2f57075","input_length":485,"output_length":143,"hash_ids":[1268050],"delay":23462.1} +{"session_id":"sess-d683f2f57075","input_length":2369,"output_length":85,"hash_ids":[1268051,1268052,1268053,1268054,1268055],"delay":3077.0} +{"session_id":"sess-d683f2f57075","input_length":525,"output_length":113,"hash_ids":[1268056,1268057],"delay":14108.4} +{"session_id":"sess-d683f2f57075","input_length":380,"output_length":113,"hash_ids":[1268058],"delay":665.9} +{"session_id":"sess-d683f2f57075","input_length":429,"output_length":351,"hash_ids":[1268059],"delay":1062.8} +{"session_id":"sess-d683f2f57075","input_length":435,"output_length":1068,"hash_ids":[1268060],"delay":284.8} +{"session_id":"sess-d683f2f57075","input_length":986,"output_length":214,"hash_ids":[1268061,1268062],"delay":530.0} +{"session_id":"sess-d683f2f57075","input_length":467,"output_length":282,"hash_ids":[1268063],"delay":374.7} +{"session_id":"sess-d683f2f57075","input_length":486,"output_length":101,"hash_ids":[1268064],"delay":496.7} +{"session_id":"sess-8131ca36147d","input_length":28649,"output_length":302,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,1272032,1272033,1272034,1272035],"timestamp":0.0,"group_id":11} +{"session_id":"sess-8131ca36147d","input_length":519,"output_length":143,"hash_ids":[1272036,1272037],"delay":8491.9} +{"session_id":"sess-8131ca36147d","input_length":1294,"output_length":650,"hash_ids":[1272038,1272039,1272040],"delay":792.4} +{"session_id":"sess-8131ca36147d","input_length":1088,"output_length":95,"hash_ids":[1272041,1272042,1272043],"delay":1122.5} +{"session_id":"sess-8131ca36147d","input_length":665,"output_length":366,"hash_ids":[1272044,1272045],"delay":300.1} +{"session_id":"sess-8131ca36147d","input_length":167,"output_length":315,"hash_ids":[1272046],"delay":555.0} +{"session_id":"sess-8131ca36147d","input_length":538,"output_length":105,"hash_ids":[1272047,1272048],"delay":23232.0} +{"session_id":"sess-8131ca36147d","input_length":576,"output_length":840,"hash_ids":[1272049,1272050],"delay":23573.1} +{"session_id":"sess-8131ca36147d","input_length":1363,"output_length":166,"hash_ids":[1272051,1272052,1272053],"delay":8452.2} +{"session_id":"sess-8131ca36147d","input_length":555,"output_length":115,"hash_ids":[1272054,1272055],"delay":1294.0} +{"session_id":"sess-8131ca36147d","input_length":471,"output_length":140,"hash_ids":[1272056],"delay":952.5} +{"session_id":"sess-8131ca36147d","input_length":479,"output_length":245,"hash_ids":[1272057],"delay":5913.2} +{"session_id":"sess-8131ca36147d","input_length":785,"output_length":271,"hash_ids":[1272058,1272059],"delay":953.5} +{"session_id":"sess-8131ca36147d","input_length":1817,"output_length":132,"hash_ids":[1272060,1272061,1272062,1272063],"delay":56108.1} +{"session_id":"sess-8131ca36147d","input_length":768,"output_length":273,"hash_ids":[1272064,1272065],"delay":1843.4} +{"session_id":"sess-8131ca36147d","input_length":767,"output_length":878,"hash_ids":[1272066,1272067],"delay":919.5} +{"session_id":"sess-8131ca36147d","input_length":394,"output_length":60,"hash_ids":[1272068],"delay":15622.6} +{"session_id":"sess-8131ca36147d","input_length":888,"output_length":122,"hash_ids":[1272069,1272070],"delay":6265.9} +{"session_id":"sess-8131ca36147d","input_length":922,"output_length":809,"hash_ids":[1272071,1272072],"delay":521.4} +{"session_id":"sess-8131ca36147d","input_length":1711,"output_length":278,"hash_ids":[1272073,1272074,1272075,1272076],"delay":637.0} +{"session_id":"sess-8131ca36147d","input_length":1212,"output_length":1105,"hash_ids":[1272077,1272078,1272079],"delay":6569.8} +{"session_id":"sess-8131ca36147d","input_length":640,"output_length":99,"hash_ids":[1272080,1272081],"delay":1838.7} +{"session_id":"sess-8131ca36147d","input_length":1245,"output_length":183,"hash_ids":[1272082,1272083,1272084],"delay":2623.0} +{"session_id":"sess-8131ca36147d","input_length":390,"output_length":66,"hash_ids":[1272085],"delay":212.1} +{"session_id":"sess-8131ca36147d","input_length":471,"output_length":55,"hash_ids":[1272086],"delay":19675.4} +{"session_id":"sess-8131ca36147d","input_length":2306,"output_length":159,"hash_ids":[1272087,1272088,1272089,1272090,1272091],"delay":1227.1} +{"session_id":"sess-8131ca36147d","input_length":2706,"output_length":75,"hash_ids":[1272092,1272093,1272094,1272095,1272096,1272097],"delay":157.9} +{"session_id":"sess-8131ca36147d","input_length":1287,"output_length":35,"hash_ids":[1272098,1272099,1272100],"delay":126.1} +{"session_id":"sess-8131ca36147d","input_length":1126,"output_length":292,"hash_ids":[1272101,1272102,1272103],"delay":405.4} +{"session_id":"sess-8131ca36147d","input_length":261,"output_length":425,"hash_ids":[1272104],"delay":13743.4} +{"session_id":"sess-8131ca36147d","input_length":655,"output_length":64,"hash_ids":[1272105,1272106],"delay":359.6} +{"session_id":"sess-ae51264442d3","input_length":28189,"output_length":367,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1276032,1276033,1276034,1276035],"timestamp":0.0,"group_id":3} +{"session_id":"sess-ae51264442d3","input_length":2618,"output_length":501,"hash_ids":[1276036,1276037,1276038,1276039,1276040,1276041],"delay":41785.6} +{"session_id":"sess-ae51264442d3","input_length":1882,"output_length":124,"hash_ids":[1276042,1276043,1276044,1276045],"delay":279.9} +{"session_id":"sess-ae51264442d3","input_length":145,"output_length":208,"hash_ids":[1276046],"delay":525.6} +{"session_id":"sess-ae51264442d3","input_length":554,"output_length":377,"hash_ids":[1276047,1276048],"delay":808.6} +{"session_id":"sess-ae51264442d3","input_length":723,"output_length":816,"hash_ids":[1276049,1276050],"delay":794.4} +{"session_id":"sess-ae51264442d3","input_length":862,"output_length":51,"hash_ids":[1276051,1276052],"delay":245.0} +{"session_id":"sess-ae51264442d3","input_length":2070,"output_length":175,"hash_ids":[1276053,1276054,1276055,1276056,1276057],"delay":213.6} +{"session_id":"sess-ae51264442d3","input_length":470,"output_length":199,"hash_ids":[1276058],"delay":1219.9} +{"session_id":"sess-ae51264442d3","input_length":1491,"output_length":95,"hash_ids":[1276059,1276060,1276061],"delay":2760.8} +{"session_id":"sess-ae51264442d3","input_length":910,"output_length":748,"hash_ids":[1276062,1276063],"delay":1369.4} +{"session_id":"sess-ae51264442d3","input_length":697,"output_length":115,"hash_ids":[1276064,1276065],"delay":251.1} +{"session_id":"sess-c776be45594a","input_length":27103,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1280032],"timestamp":0.0,"group_id":9} +{"session_id":"sess-c776be45594a","input_length":1907,"output_length":571,"hash_ids":[1280033,1280034,1280035,1280036],"delay":1123.9} +{"session_id":"sess-c776be45594a","input_length":216,"output_length":72,"hash_ids":[1280037],"delay":6406.1} +{"session_id":"sess-c776be45594a","input_length":1142,"output_length":43,"hash_ids":[1280038,1280039,1280040],"delay":12299.2} +{"session_id":"sess-c776be45594a","input_length":146,"output_length":43,"hash_ids":[1280041],"delay":420.7} +{"session_id":"sess-c776be45594a","input_length":842,"output_length":182,"hash_ids":[1280042,1280043],"delay":13648.8} +{"session_id":"sess-c776be45594a","input_length":504,"output_length":604,"hash_ids":[1280044],"delay":1487.7} +{"session_id":"sess-c776be45594a","input_length":1389,"output_length":923,"hash_ids":[1280045,1280046,1280047],"delay":2340.5} +{"session_id":"sess-c776be45594a","input_length":233,"output_length":348,"hash_ids":[1280048],"delay":1257.6} +{"session_id":"sess-c776be45594a","input_length":642,"output_length":153,"hash_ids":[1280049,1280050],"delay":1075.8} +{"session_id":"sess-c776be45594a","input_length":1333,"output_length":1158,"hash_ids":[1280051,1280052,1280053],"delay":64048.6} +{"session_id":"sess-c776be45594a","input_length":1262,"output_length":212,"hash_ids":[1280054,1280055,1280056],"delay":1089.4} +{"session_id":"sess-c776be45594a","input_length":335,"output_length":121,"hash_ids":[1280057],"delay":1529.6} +{"session_id":"sess-c776be45594a","input_length":232,"output_length":159,"hash_ids":[1280058],"delay":1283.2} +{"session_id":"sess-c776be45594a","input_length":724,"output_length":864,"hash_ids":[1280059,1280060],"delay":9897.8} +{"session_id":"sess-c776be45594a","input_length":2804,"output_length":219,"hash_ids":[1280061,1280062,1280063,1280064,1280065,1280066],"delay":53247.8} +{"session_id":"sess-c776be45594a","input_length":1001,"output_length":493,"hash_ids":[1280067,1280068],"delay":3068.1} +{"session_id":"sess-c776be45594a","input_length":1255,"output_length":101,"hash_ids":[1280069,1280070,1280071],"delay":445.7} +{"session_id":"sess-c776be45594a","input_length":1799,"output_length":150,"hash_ids":[1280072,1280073,1280074,1280075],"delay":4268.5} +{"session_id":"sess-c776be45594a","input_length":497,"output_length":36,"hash_ids":[1280076],"delay":2153.6} +{"session_id":"sess-c776be45594a","input_length":876,"output_length":504,"hash_ids":[1280077,1280078],"delay":1381.5} +{"session_id":"sess-c776be45594a","input_length":1523,"output_length":138,"hash_ids":[1280079,1280080,1280081],"delay":3455.5} +{"session_id":"sess-c776be45594a","input_length":246,"output_length":75,"hash_ids":[1280082],"delay":17843.7} +{"session_id":"sess-c776be45594a","input_length":2481,"output_length":290,"hash_ids":[1280083,1280084,1280085,1280086,1280087],"delay":759.4} +{"session_id":"sess-78068b858768","input_length":27130,"output_length":907,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1284032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-78068b858768","input_length":1173,"output_length":1206,"hash_ids":[1284033,1284034,1284035],"delay":2749.9} +{"session_id":"sess-78068b858768","input_length":236,"output_length":81,"hash_ids":[1284036],"delay":1364.8} +{"session_id":"sess-78068b858768","input_length":289,"output_length":120,"hash_ids":[1284037],"delay":4528.4} +{"session_id":"sess-78068b858768","input_length":2544,"output_length":64,"hash_ids":[1284038,1284039,1284040,1284041,1284042],"delay":54501.1} +{"session_id":"sess-78068b858768","input_length":698,"output_length":791,"hash_ids":[1284043,1284044],"delay":1371.3} +{"session_id":"sess-78068b858768","input_length":1204,"output_length":530,"hash_ids":[1284045,1284046,1284047],"delay":11091.4} +{"session_id":"sess-78068b858768","input_length":1066,"output_length":236,"hash_ids":[1284048,1284049,1284050],"delay":307.6} +{"session_id":"sess-78068b858768","input_length":1435,"output_length":99,"hash_ids":[1284051,1284052,1284053],"delay":386.8} +{"session_id":"sess-78068b858768","input_length":366,"output_length":142,"hash_ids":[1284054],"delay":422.2} +{"session_id":"sess-78068b858768","input_length":503,"output_length":271,"hash_ids":[1284055],"delay":2787.6} +{"session_id":"sess-78068b858768","input_length":786,"output_length":232,"hash_ids":[1284056,1284057],"delay":2529.6} +{"session_id":"sess-78068b858768","input_length":1699,"output_length":287,"hash_ids":[1284058,1284059,1284060,1284061],"delay":2878.8} +{"session_id":"sess-78068b858768","input_length":1160,"output_length":30,"hash_ids":[1284062,1284063,1284064],"delay":833.1} +{"session_id":"sess-78068b858768","input_length":770,"output_length":81,"hash_ids":[1284065,1284066],"delay":756.0} +{"session_id":"sess-78068b858768","input_length":2108,"output_length":318,"hash_ids":[1284067,1284068,1284069,1284070,1284071],"delay":720.7} +{"session_id":"sess-78068b858768","input_length":1412,"output_length":486,"hash_ids":[1284072,1284073,1284074],"delay":432.2} +{"session_id":"sess-78068b858768","input_length":179,"output_length":183,"hash_ids":[1284075],"delay":565.8} +{"session_id":"sess-78068b858768","input_length":141,"output_length":130,"hash_ids":[1284076],"delay":1692.9} +{"session_id":"sess-78068b858768","input_length":1133,"output_length":142,"hash_ids":[1284077,1284078,1284079],"delay":284.1} +{"session_id":"sess-78068b858768","input_length":1016,"output_length":340,"hash_ids":[1284080,1284081],"delay":1952.1} +{"session_id":"sess-78068b858768","input_length":217,"output_length":168,"hash_ids":[1284082],"delay":833.6} +{"session_id":"sess-78068b858768","input_length":489,"output_length":71,"hash_ids":[1284083],"delay":39216.6} +{"session_id":"sess-78068b858768","input_length":305,"output_length":429,"hash_ids":[1284084],"delay":1443.1} +{"session_id":"sess-78068b858768","input_length":1923,"output_length":101,"hash_ids":[1284085,1284086,1284087,1284088],"delay":140.8} +{"session_id":"sess-78068b858768","input_length":193,"output_length":1165,"hash_ids":[1284089],"delay":6762.0} +{"session_id":"sess-78068b858768","input_length":1116,"output_length":349,"hash_ids":[1284090,1284091,1284092],"delay":245.9} +{"session_id":"sess-ea94becdb0f4","input_length":28410,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1288032,1288033,1288034,1288035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ea94becdb0f4","input_length":556,"output_length":264,"hash_ids":[1288036,1288037],"delay":2763.6} +{"session_id":"sess-ea94becdb0f4","input_length":327,"output_length":227,"hash_ids":[1288038],"delay":3491.4} +{"session_id":"sess-ea94becdb0f4","input_length":2128,"output_length":72,"hash_ids":[1288039,1288040,1288041,1288042,1288043],"delay":355.4} +{"session_id":"sess-ea94becdb0f4","input_length":338,"output_length":867,"hash_ids":[1288044],"delay":916.2} +{"session_id":"sess-ea94becdb0f4","input_length":888,"output_length":266,"hash_ids":[1288045,1288046],"delay":1886.1} +{"session_id":"sess-ea94becdb0f4","input_length":1933,"output_length":175,"hash_ids":[1288047,1288048,1288049,1288050],"delay":1229.2} +{"session_id":"sess-ea94becdb0f4","input_length":1126,"output_length":37,"hash_ids":[1288051,1288052,1288053],"delay":1842.3} +{"session_id":"sess-ea94becdb0f4","input_length":1731,"output_length":61,"hash_ids":[1288054,1288055,1288056,1288057],"delay":638.4} +{"session_id":"sess-ea94becdb0f4","input_length":734,"output_length":886,"hash_ids":[1288058,1288059],"delay":1034.9} +{"session_id":"sess-ea94becdb0f4","input_length":274,"output_length":344,"hash_ids":[1288060],"delay":1736.8} +{"session_id":"sess-ea94becdb0f4","input_length":1031,"output_length":152,"hash_ids":[1288061,1288062,1288063],"delay":689.6} +{"session_id":"sess-ea94becdb0f4","input_length":573,"output_length":137,"hash_ids":[1288064,1288065],"delay":3386.3} +{"session_id":"sess-ea94becdb0f4","input_length":1430,"output_length":59,"hash_ids":[1288066,1288067,1288068],"delay":843.6} +{"session_id":"sess-ea94becdb0f4","input_length":65,"output_length":192,"hash_ids":[1288069],"delay":532.7} +{"session_id":"sess-ea94becdb0f4","input_length":2011,"output_length":157,"hash_ids":[1288070,1288071,1288072,1288073],"delay":242.6} +{"session_id":"sess-997b69cf9bdc","input_length":28949,"output_length":303,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1292032,1292033,1292034,1292035,1292036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-997b69cf9bdc","input_length":958,"output_length":193,"hash_ids":[1292037,1292038],"delay":2343.3} +{"session_id":"sess-997b69cf9bdc","input_length":439,"output_length":125,"hash_ids":[1292039],"delay":1039.4} +{"session_id":"sess-997b69cf9bdc","input_length":318,"output_length":86,"hash_ids":[1292040],"delay":289.7} +{"session_id":"sess-997b69cf9bdc","input_length":938,"output_length":126,"hash_ids":[1292041,1292042],"delay":389.0} +{"session_id":"sess-997b69cf9bdc","input_length":955,"output_length":80,"hash_ids":[1292043,1292044],"delay":8880.0} +{"session_id":"sess-997b69cf9bdc","input_length":800,"output_length":57,"hash_ids":[1292045,1292046],"delay":853.1} +{"session_id":"sess-997b69cf9bdc","input_length":758,"output_length":75,"hash_ids":[1292047,1292048],"delay":2050.4} +{"session_id":"sess-997b69cf9bdc","input_length":2201,"output_length":181,"hash_ids":[1292049,1292050,1292051,1292052,1292053],"delay":5113.4} +{"session_id":"sess-997b69cf9bdc","input_length":1165,"output_length":1270,"hash_ids":[1292054,1292055,1292056],"delay":434.7} +{"session_id":"sess-997b69cf9bdc","input_length":411,"output_length":133,"hash_ids":[1292057],"delay":13440.9} +{"session_id":"sess-997b69cf9bdc","input_length":456,"output_length":68,"hash_ids":[1292058],"delay":475.5} +{"session_id":"sess-997b69cf9bdc","input_length":1989,"output_length":148,"hash_ids":[1292059,1292060,1292061,1292062],"delay":16048.5} +{"session_id":"sess-997b69cf9bdc","input_length":1444,"output_length":227,"hash_ids":[1292063,1292064,1292065],"delay":4101.8} +{"session_id":"sess-997b69cf9bdc","input_length":1296,"output_length":55,"hash_ids":[1292066,1292067,1292068],"delay":893.1} +{"session_id":"sess-997b69cf9bdc","input_length":198,"output_length":119,"hash_ids":[1292069],"delay":428.9} +{"session_id":"sess-997b69cf9bdc","input_length":560,"output_length":334,"hash_ids":[1292070,1292071],"delay":16636.4} +{"session_id":"sess-997b69cf9bdc","input_length":276,"output_length":180,"hash_ids":[1292072],"delay":19520.7} +{"session_id":"sess-997b69cf9bdc","input_length":810,"output_length":160,"hash_ids":[1292073,1292074],"delay":653.5} +{"session_id":"sess-997b69cf9bdc","input_length":815,"output_length":91,"hash_ids":[1292075,1292076],"delay":13810.9} +{"session_id":"sess-997b69cf9bdc","input_length":314,"output_length":1161,"hash_ids":[1292077],"delay":257.6} +{"session_id":"sess-997b69cf9bdc","input_length":1608,"output_length":753,"hash_ids":[1292078,1292079,1292080,1292081],"delay":118.4} +{"session_id":"sess-997b69cf9bdc","input_length":319,"output_length":307,"hash_ids":[1292082],"delay":574.8} +{"session_id":"sess-997b69cf9bdc","input_length":515,"output_length":96,"hash_ids":[1292083,1292084],"delay":290.4} +{"session_id":"sess-997b69cf9bdc","input_length":2601,"output_length":159,"hash_ids":[1292085,1292086,1292087,1292088,1292089,1292090],"delay":1312.8} +{"session_id":"sess-997b69cf9bdc","input_length":1712,"output_length":191,"hash_ids":[1292091,1292092,1292093,1292094],"delay":836.9} +{"session_id":"sess-997b69cf9bdc","input_length":359,"output_length":172,"hash_ids":[1292095],"delay":1739.7} +{"session_id":"sess-f06b9b6d6e14","input_length":27219,"output_length":189,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,1296032,1296033],"timestamp":0.0,"group_id":34} +{"session_id":"sess-f06b9b6d6e14","input_length":1121,"output_length":32,"hash_ids":[1296034,1296035,1296036],"delay":211.8} +{"session_id":"sess-f06b9b6d6e14","input_length":1298,"output_length":30,"hash_ids":[1296037,1296038,1296039],"delay":4104.8} +{"session_id":"sess-f06b9b6d6e14","input_length":314,"output_length":313,"hash_ids":[1296040],"delay":3125.1} +{"session_id":"sess-f06b9b6d6e14","input_length":341,"output_length":146,"hash_ids":[1296041],"delay":672.6} +{"session_id":"sess-f06b9b6d6e14","input_length":988,"output_length":130,"hash_ids":[1296042,1296043],"delay":1934.3} +{"session_id":"sess-f06b9b6d6e14","input_length":1771,"output_length":123,"hash_ids":[1296044,1296045,1296046,1296047],"delay":5999.2} +{"session_id":"sess-f06b9b6d6e14","input_length":960,"output_length":98,"hash_ids":[1296048,1296049],"delay":1568.8} +{"session_id":"sess-f06b9b6d6e14","input_length":1823,"output_length":67,"hash_ids":[1296050,1296051,1296052,1296053],"delay":63155.6} +{"session_id":"sess-f06b9b6d6e14","input_length":2815,"output_length":73,"hash_ids":[1296054,1296055,1296056,1296057,1296058,1296059],"delay":1461.5} +{"session_id":"sess-f06b9b6d6e14","input_length":327,"output_length":80,"hash_ids":[1296060],"delay":1044.1} +{"session_id":"sess-f06b9b6d6e14","input_length":2846,"output_length":544,"hash_ids":[1296061,1296062,1296063,1296064,1296065,1296066],"delay":244.4} +{"session_id":"sess-f06b9b6d6e14","input_length":2423,"output_length":76,"hash_ids":[1296067,1296068,1296069,1296070,1296071],"delay":17150.7} +{"session_id":"sess-f06b9b6d6e14","input_length":647,"output_length":480,"hash_ids":[1296072,1296073],"delay":292.6} +{"session_id":"sess-f06b9b6d6e14","input_length":1263,"output_length":62,"hash_ids":[1296074,1296075,1296076],"delay":6354.4} +{"session_id":"sess-f06b9b6d6e14","input_length":771,"output_length":81,"hash_ids":[1296077,1296078],"delay":19982.1} +{"session_id":"sess-f06b9b6d6e14","input_length":587,"output_length":873,"hash_ids":[1296079,1296080],"delay":1743.6} +{"session_id":"sess-f06b9b6d6e14","input_length":1755,"output_length":141,"hash_ids":[1296081,1296082,1296083,1296084],"delay":508.0} +{"session_id":"sess-f06b9b6d6e14","input_length":999,"output_length":364,"hash_ids":[1296085,1296086],"delay":24161.2} +{"session_id":"sess-f06b9b6d6e14","input_length":603,"output_length":565,"hash_ids":[1296087,1296088],"delay":10494.0} +{"session_id":"sess-f06b9b6d6e14","input_length":402,"output_length":231,"hash_ids":[1296089],"delay":548.5} +{"session_id":"sess-f06b9b6d6e14","input_length":290,"output_length":90,"hash_ids":[1296090],"delay":1318.5} +{"session_id":"sess-f06b9b6d6e14","input_length":1232,"output_length":102,"hash_ids":[1296091,1296092,1296093],"delay":797.8} +{"session_id":"sess-f06b9b6d6e14","input_length":366,"output_length":518,"hash_ids":[1296094],"delay":601.7} +{"session_id":"sess-f06b9b6d6e14","input_length":983,"output_length":134,"hash_ids":[1296095,1296096],"delay":402.6} +{"session_id":"sess-f06b9b6d6e14","input_length":801,"output_length":217,"hash_ids":[1296097,1296098],"delay":428.1} +{"session_id":"sess-f06b9b6d6e14","input_length":727,"output_length":151,"hash_ids":[1296099,1296100],"delay":411.3} +{"session_id":"sess-f06b9b6d6e14","input_length":1701,"output_length":153,"hash_ids":[1296101,1296102,1296103,1296104],"delay":5872.6} +{"session_id":"sess-f06b9b6d6e14","input_length":1587,"output_length":263,"hash_ids":[1296105,1296106,1296107,1296108],"delay":218.1} +{"session_id":"sess-f06b9b6d6e14","input_length":174,"output_length":195,"hash_ids":[1296109],"delay":155.9} +{"session_id":"sess-15cfad2aae89","input_length":28362,"output_length":300,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1300032,1300033,1300034,1300035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-15cfad2aae89","input_length":1088,"output_length":164,"hash_ids":[1300036,1300037,1300038],"delay":1705.0} +{"session_id":"sess-15cfad2aae89","input_length":2529,"output_length":131,"hash_ids":[1300039,1300040,1300041,1300042,1300043],"delay":361.1} +{"session_id":"sess-15cfad2aae89","input_length":522,"output_length":39,"hash_ids":[1300044,1300045],"delay":7739.7} +{"session_id":"sess-15cfad2aae89","input_length":585,"output_length":251,"hash_ids":[1300046,1300047],"delay":10255.2} +{"session_id":"sess-15cfad2aae89","input_length":1172,"output_length":118,"hash_ids":[1300048,1300049,1300050],"delay":15433.5} +{"session_id":"sess-15cfad2aae89","input_length":892,"output_length":114,"hash_ids":[1300051,1300052],"delay":2220.5} +{"session_id":"sess-15cfad2aae89","input_length":403,"output_length":168,"hash_ids":[1300053],"delay":21623.1} +{"session_id":"sess-15cfad2aae89","input_length":2509,"output_length":690,"hash_ids":[1300054,1300055,1300056,1300057,1300058],"delay":27395.5} +{"session_id":"sess-15cfad2aae89","input_length":659,"output_length":159,"hash_ids":[1300059,1300060],"delay":902.2} +{"session_id":"sess-15cfad2aae89","input_length":2016,"output_length":915,"hash_ids":[1300061,1300062,1300063,1300064],"delay":3281.9} +{"session_id":"sess-15cfad2aae89","input_length":1289,"output_length":155,"hash_ids":[1300065,1300066,1300067],"delay":973.8} +{"session_id":"sess-15cfad2aae89","input_length":1614,"output_length":184,"hash_ids":[1300068,1300069,1300070,1300071],"delay":2084.6} +{"session_id":"sess-15cfad2aae89","input_length":1610,"output_length":175,"hash_ids":[1300072,1300073,1300074,1300075],"delay":679.5} +{"session_id":"sess-15cfad2aae89","input_length":630,"output_length":159,"hash_ids":[1300076,1300077],"delay":1593.5} +{"session_id":"sess-15cfad2aae89","input_length":713,"output_length":90,"hash_ids":[1300078,1300079],"delay":607.6} +{"session_id":"sess-15cfad2aae89","input_length":888,"output_length":170,"hash_ids":[1300080,1300081],"delay":456.7} +{"session_id":"sess-15cfad2aae89","input_length":1310,"output_length":601,"hash_ids":[1300082,1300083,1300084],"delay":3410.7} +{"session_id":"sess-15cfad2aae89","input_length":2253,"output_length":256,"hash_ids":[1300085,1300086,1300087,1300088,1300089],"delay":190.6} +{"session_id":"sess-15cfad2aae89","input_length":377,"output_length":334,"hash_ids":[1300090],"delay":493.4} +{"session_id":"sess-15cfad2aae89","input_length":1836,"output_length":122,"hash_ids":[1300091,1300092,1300093,1300094],"delay":793.3} +{"session_id":"sess-3d5413c5bf25","input_length":28911,"output_length":861,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1304032,1304033,1304034,1304035,1304036],"timestamp":0.0,"group_id":2} +{"session_id":"sess-3d5413c5bf25","input_length":2567,"output_length":135,"hash_ids":[1304037,1304038,1304039,1304040,1304041,1304042],"delay":10311.8} +{"session_id":"sess-3a69475a8ce0","input_length":26619,"output_length":836,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451],"timestamp":0.0,"group_id":17} +{"session_id":"sess-3a69475a8ce0","input_length":1381,"output_length":299,"hash_ids":[1304043,1304044,1304045],"delay":20195.3} +{"session_id":"sess-3a69475a8ce0","input_length":881,"output_length":192,"hash_ids":[1304046,1304047],"delay":1166.6} +{"session_id":"sess-3a69475a8ce0","input_length":1088,"output_length":1319,"hash_ids":[1304048,1304049,1304050],"delay":1587.0} +{"session_id":"sess-3a69475a8ce0","input_length":1089,"output_length":73,"hash_ids":[1304051,1304052,1304053],"delay":17439.9} +{"session_id":"sess-3a69475a8ce0","input_length":743,"output_length":455,"hash_ids":[1304054,1304055],"delay":1952.4} +{"session_id":"sess-3a69475a8ce0","input_length":941,"output_length":149,"hash_ids":[1304056,1304057],"delay":18215.8} +{"session_id":"sess-3a69475a8ce0","input_length":261,"output_length":162,"hash_ids":[1304058],"delay":1743.3} +{"session_id":"sess-3a69475a8ce0","input_length":1301,"output_length":95,"hash_ids":[1304059,1304060,1304061],"delay":287.3} +{"session_id":"sess-3a69475a8ce0","input_length":1477,"output_length":59,"hash_ids":[1304062,1304063,1304064],"delay":926.3} +{"session_id":"sess-3051c9e0b657","input_length":27038,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,1312032],"timestamp":0.0,"group_id":16} +{"session_id":"sess-3051c9e0b657","input_length":1498,"output_length":297,"hash_ids":[1312033,1312034,1312035],"delay":12140.8} +{"session_id":"sess-3051c9e0b657","input_length":412,"output_length":676,"hash_ids":[1312036],"delay":738.4} +{"session_id":"sess-3051c9e0b657","input_length":899,"output_length":250,"hash_ids":[1312037,1312038],"delay":1592.1} +{"session_id":"sess-3051c9e0b657","input_length":944,"output_length":175,"hash_ids":[1312039,1312040],"delay":558.6} +{"session_id":"sess-3051c9e0b657","input_length":1856,"output_length":437,"hash_ids":[1312041,1312042,1312043,1312044],"delay":993.7} +{"session_id":"sess-3051c9e0b657","input_length":194,"output_length":293,"hash_ids":[1312045],"delay":4348.5} +{"session_id":"sess-3051c9e0b657","input_length":2850,"output_length":311,"hash_ids":[1312046,1312047,1312048,1312049,1312050,1312051],"delay":1331.6} +{"session_id":"sess-3051c9e0b657","input_length":37,"output_length":119,"hash_ids":[1312052],"delay":1898.8} +{"session_id":"sess-3051c9e0b657","input_length":1214,"output_length":53,"hash_ids":[1312053,1312054,1312055],"delay":762.4} +{"session_id":"sess-3051c9e0b657","input_length":528,"output_length":246,"hash_ids":[1312056,1312057],"delay":11379.5} +{"session_id":"sess-2ace31eb3ef2","input_length":29820,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,1316032,1316033,1316034,1316035,1316036,1316037,1316038],"timestamp":0.0,"group_id":21} +{"session_id":"sess-2ace31eb3ef2","input_length":540,"output_length":556,"hash_ids":[1316039,1316040],"delay":670.3} +{"session_id":"sess-2ace31eb3ef2","input_length":216,"output_length":306,"hash_ids":[1316041],"delay":6066.1} +{"session_id":"sess-2ace31eb3ef2","input_length":263,"output_length":110,"hash_ids":[1316042],"delay":460.5} +{"session_id":"sess-7aaac2da78c7","input_length":32913,"output_length":286,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,1320032,1320033,1320034,1320035,1320036,1320037,1320038,1320039,1320040,1320041,1320042,1320043,1320044],"timestamp":0.0,"group_id":14} +{"session_id":"sess-7aaac2da78c7","input_length":878,"output_length":693,"hash_ids":[1320045,1320046],"delay":1240.3} +{"session_id":"sess-7aaac2da78c7","input_length":376,"output_length":783,"hash_ids":[1320047],"delay":31289.5} +{"session_id":"sess-7aaac2da78c7","input_length":681,"output_length":124,"hash_ids":[1320048,1320049],"delay":674.6} +{"session_id":"sess-7aaac2da78c7","input_length":2997,"output_length":174,"hash_ids":[1320050,1320051,1320052,1320053,1320054,1320055],"delay":2837.8} +{"session_id":"sess-7aaac2da78c7","input_length":2095,"output_length":379,"hash_ids":[1320056,1320057,1320058,1320059,1320060],"delay":13291.2} +{"session_id":"sess-7aaac2da78c7","input_length":1001,"output_length":412,"hash_ids":[1320061,1320062],"delay":864.8} +{"session_id":"sess-7aaac2da78c7","input_length":1450,"output_length":265,"hash_ids":[1320063,1320064,1320065],"delay":242.9} +{"session_id":"sess-7aaac2da78c7","input_length":1588,"output_length":336,"hash_ids":[1320066,1320067,1320068,1320069],"delay":2312.8} +{"session_id":"sess-7aaac2da78c7","input_length":557,"output_length":275,"hash_ids":[1320070,1320071],"delay":458.8} +{"session_id":"sess-7aaac2da78c7","input_length":728,"output_length":72,"hash_ids":[1320072,1320073],"delay":157.2} +{"session_id":"sess-7aaac2da78c7","input_length":168,"output_length":78,"hash_ids":[1320074],"delay":34543.4} +{"session_id":"sess-7aaac2da78c7","input_length":327,"output_length":96,"hash_ids":[1320075],"delay":16248.0} +{"session_id":"sess-7aaac2da78c7","input_length":1787,"output_length":170,"hash_ids":[1320076,1320077,1320078,1320079],"delay":492.7} +{"session_id":"sess-7aaac2da78c7","input_length":152,"output_length":151,"hash_ids":[1320080],"delay":197.0} +{"session_id":"sess-7aaac2da78c7","input_length":2390,"output_length":81,"hash_ids":[1320081,1320082,1320083,1320084,1320085],"delay":23918.1} +{"session_id":"sess-7aaac2da78c7","input_length":218,"output_length":52,"hash_ids":[1320086],"delay":1934.0} +{"session_id":"sess-7aaac2da78c7","input_length":2306,"output_length":240,"hash_ids":[1320087,1320088,1320089,1320090,1320091],"delay":455.7} +{"session_id":"sess-7aaac2da78c7","input_length":769,"output_length":785,"hash_ids":[1320092,1320093],"delay":235.9} +{"session_id":"sess-7aaac2da78c7","input_length":642,"output_length":317,"hash_ids":[1320094,1320095],"delay":285.9} +{"session_id":"sess-7aaac2da78c7","input_length":525,"output_length":117,"hash_ids":[1320096,1320097],"delay":32314.3} +{"session_id":"sess-7aaac2da78c7","input_length":2264,"output_length":215,"hash_ids":[1320098,1320099,1320100,1320101,1320102],"delay":237.3} +{"session_id":"sess-7aaac2da78c7","input_length":451,"output_length":46,"hash_ids":[1320103],"delay":211.1} +{"session_id":"sess-7aaac2da78c7","input_length":349,"output_length":57,"hash_ids":[1320104],"delay":269.6} +{"session_id":"sess-a3ec2bfa1456","input_length":26681,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1324032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a3ec2bfa1456","input_length":865,"output_length":69,"hash_ids":[1324033,1324034],"delay":2230.8} +{"session_id":"sess-a3ec2bfa1456","input_length":223,"output_length":1187,"hash_ids":[1324035],"delay":4372.1} +{"session_id":"sess-a3ec2bfa1456","input_length":1059,"output_length":30,"hash_ids":[1324036,1324037,1324038],"delay":47043.5} +{"session_id":"sess-a3ec2bfa1456","input_length":261,"output_length":879,"hash_ids":[1324039],"delay":2452.9} +{"session_id":"sess-a3ec2bfa1456","input_length":1085,"output_length":90,"hash_ids":[1324040,1324041,1324042],"delay":1408.6} +{"session_id":"sess-a3ec2bfa1456","input_length":394,"output_length":116,"hash_ids":[1324043],"delay":3751.7} +{"session_id":"sess-a3ec2bfa1456","input_length":1556,"output_length":220,"hash_ids":[1324044,1324045,1324046,1324047],"delay":873.3} +{"session_id":"sess-a3ec2bfa1456","input_length":135,"output_length":45,"hash_ids":[1324048],"delay":496.0} +{"session_id":"sess-a3ec2bfa1456","input_length":559,"output_length":817,"hash_ids":[1324049,1324050],"delay":371.4} +{"session_id":"sess-a3ec2bfa1456","input_length":1054,"output_length":271,"hash_ids":[1324051,1324052,1324053],"delay":1422.6} +{"session_id":"sess-a3ec2bfa1456","input_length":1126,"output_length":502,"hash_ids":[1324054,1324055,1324056],"delay":3764.7} +{"session_id":"sess-a3ec2bfa1456","input_length":2478,"output_length":43,"hash_ids":[1324057,1324058,1324059,1324060,1324061],"delay":2233.5} +{"session_id":"sess-a3ec2bfa1456","input_length":1727,"output_length":30,"hash_ids":[1324062,1324063,1324064,1324065],"delay":30795.2} +{"session_id":"sess-a3ec2bfa1456","input_length":528,"output_length":190,"hash_ids":[1324066,1324067],"delay":1009.4} +{"session_id":"sess-a3ec2bfa1456","input_length":173,"output_length":290,"hash_ids":[1324068],"delay":1600.2} +{"session_id":"sess-a3ec2bfa1456","input_length":243,"output_length":394,"hash_ids":[1324069],"delay":4779.0} +{"session_id":"sess-a3ec2bfa1456","input_length":862,"output_length":244,"hash_ids":[1324070,1324071],"delay":3747.9} +{"session_id":"sess-a3ec2bfa1456","input_length":331,"output_length":290,"hash_ids":[1324072],"delay":713.0} +{"session_id":"sess-a3ec2bfa1456","input_length":2206,"output_length":394,"hash_ids":[1324073,1324074,1324075,1324076,1324077],"delay":23252.8} +{"session_id":"sess-a3ec2bfa1456","input_length":748,"output_length":91,"hash_ids":[1324078,1324079],"delay":909.8} +{"session_id":"sess-a3ec2bfa1456","input_length":1007,"output_length":199,"hash_ids":[1324080,1324081],"delay":1247.4} +{"session_id":"sess-a3ec2bfa1456","input_length":1992,"output_length":56,"hash_ids":[1324082,1324083,1324084,1324085],"delay":470.2} +{"session_id":"sess-a3ec2bfa1456","input_length":457,"output_length":1231,"hash_ids":[1324086],"delay":3320.5} +{"session_id":"sess-a3ec2bfa1456","input_length":140,"output_length":121,"hash_ids":[1324087],"delay":953.7} +{"session_id":"sess-a3ec2bfa1456","input_length":698,"output_length":105,"hash_ids":[1324088,1324089],"delay":2361.8} +{"session_id":"sess-a3ec2bfa1456","input_length":1318,"output_length":56,"hash_ids":[1324090,1324091,1324092],"delay":1707.0} +{"session_id":"sess-a3ec2bfa1456","input_length":566,"output_length":386,"hash_ids":[1324093,1324094],"delay":193.7} +{"session_id":"sess-a3ec2bfa1456","input_length":1221,"output_length":245,"hash_ids":[1324095,1324096,1324097],"delay":186.3} +{"session_id":"sess-a3ec2bfa1456","input_length":1306,"output_length":226,"hash_ids":[1324098,1324099,1324100],"delay":3632.3} +{"session_id":"sess-a3ec2bfa1456","input_length":134,"output_length":76,"hash_ids":[1324101],"delay":191.4} +{"session_id":"sess-949231c6a17b","input_length":27374,"output_length":314,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,1328032,1328033],"timestamp":0.0,"group_id":31} +{"session_id":"sess-949231c6a17b","input_length":247,"output_length":188,"hash_ids":[1328034],"delay":2171.5} +{"session_id":"sess-949231c6a17b","input_length":649,"output_length":191,"hash_ids":[1328035,1328036],"delay":32536.7} +{"session_id":"sess-949231c6a17b","input_length":532,"output_length":444,"hash_ids":[1328037,1328038],"delay":714.5} +{"session_id":"sess-949231c6a17b","input_length":2655,"output_length":341,"hash_ids":[1328039,1328040,1328041,1328042,1328043,1328044],"delay":5717.3} +{"session_id":"sess-949231c6a17b","input_length":884,"output_length":139,"hash_ids":[1328045,1328046],"delay":19466.0} +{"session_id":"sess-949231c6a17b","input_length":2544,"output_length":148,"hash_ids":[1328047,1328048,1328049,1328050,1328051],"delay":433.5} +{"session_id":"sess-949231c6a17b","input_length":1400,"output_length":68,"hash_ids":[1328052,1328053,1328054],"delay":445.7} +{"session_id":"sess-949231c6a17b","input_length":635,"output_length":164,"hash_ids":[1328055,1328056],"delay":2504.8} +{"session_id":"sess-949231c6a17b","input_length":2710,"output_length":98,"hash_ids":[1328057,1328058,1328059,1328060,1328061,1328062],"delay":3495.0} +{"session_id":"sess-949231c6a17b","input_length":1574,"output_length":415,"hash_ids":[1328063,1328064,1328065,1328066],"delay":747.9} +{"session_id":"sess-949231c6a17b","input_length":667,"output_length":284,"hash_ids":[1328067,1328068],"delay":6568.4} +{"session_id":"sess-949231c6a17b","input_length":1784,"output_length":30,"hash_ids":[1328069,1328070,1328071,1328072],"delay":405.9} +{"session_id":"sess-949231c6a17b","input_length":355,"output_length":155,"hash_ids":[1328073],"delay":505.8} +{"session_id":"sess-949231c6a17b","input_length":1377,"output_length":518,"hash_ids":[1328074,1328075,1328076],"delay":755.2} +{"session_id":"sess-949231c6a17b","input_length":207,"output_length":204,"hash_ids":[1328077],"delay":636.5} +{"session_id":"sess-949231c6a17b","input_length":455,"output_length":441,"hash_ids":[1328078],"delay":514.6} +{"session_id":"sess-949231c6a17b","input_length":238,"output_length":73,"hash_ids":[1328079],"delay":350.7} +{"session_id":"sess-949231c6a17b","input_length":281,"output_length":431,"hash_ids":[1328080],"delay":247.3} +{"session_id":"sess-949231c6a17b","input_length":1075,"output_length":320,"hash_ids":[1328081,1328082,1328083],"delay":415.5} +{"session_id":"sess-949231c6a17b","input_length":1235,"output_length":60,"hash_ids":[1328084,1328085,1328086],"delay":2284.1} +{"session_id":"sess-949231c6a17b","input_length":316,"output_length":47,"hash_ids":[1328087],"delay":863.0} +{"session_id":"sess-949231c6a17b","input_length":117,"output_length":171,"hash_ids":[1328088],"delay":13578.4} +{"session_id":"sess-949231c6a17b","input_length":449,"output_length":81,"hash_ids":[1328089],"delay":1066.0} +{"session_id":"sess-949231c6a17b","input_length":672,"output_length":213,"hash_ids":[1328090,1328091],"delay":24504.4} +{"session_id":"sess-949231c6a17b","input_length":1617,"output_length":147,"hash_ids":[1328092,1328093,1328094,1328095],"delay":359.9} +{"session_id":"sess-949231c6a17b","input_length":326,"output_length":48,"hash_ids":[1328096],"delay":5637.6} +{"session_id":"sess-949231c6a17b","input_length":647,"output_length":290,"hash_ids":[1328097,1328098],"delay":251.2} +{"session_id":"sess-949231c6a17b","input_length":1878,"output_length":186,"hash_ids":[1328099,1328100,1328101,1328102],"delay":4194.5} +{"session_id":"sess-949231c6a17b","input_length":711,"output_length":32,"hash_ids":[1328103,1328104],"delay":5356.3} +{"session_id":"sess-949231c6a17b","input_length":1032,"output_length":322,"hash_ids":[1328105,1328106,1328107],"delay":253.5} +{"session_id":"sess-949231c6a17b","input_length":1149,"output_length":131,"hash_ids":[1328108,1328109,1328110],"delay":258.8} +{"session_id":"sess-0666bc855dc5","input_length":29562,"output_length":117,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1332032,1332033,1332034,1332035,1332036,1332037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0666bc855dc5","input_length":236,"output_length":611,"hash_ids":[1332038],"delay":3143.7} +{"session_id":"sess-0666bc855dc5","input_length":648,"output_length":267,"hash_ids":[1332039,1332040],"delay":1093.5} +{"session_id":"sess-0666bc855dc5","input_length":1238,"output_length":108,"hash_ids":[1332041,1332042,1332043],"delay":44735.2} +{"session_id":"sess-0666bc855dc5","input_length":2441,"output_length":516,"hash_ids":[1332044,1332045,1332046,1332047,1332048],"delay":1225.2} +{"session_id":"sess-0666bc855dc5","input_length":979,"output_length":160,"hash_ids":[1332049,1332050],"delay":8622.9} +{"session_id":"sess-0666bc855dc5","input_length":381,"output_length":295,"hash_ids":[1332051],"delay":898.8} +{"session_id":"sess-0666bc855dc5","input_length":1255,"output_length":513,"hash_ids":[1332052,1332053,1332054],"delay":44920.4} +{"session_id":"sess-0666bc855dc5","input_length":436,"output_length":277,"hash_ids":[1332055],"delay":33628.8} +{"session_id":"sess-0666bc855dc5","input_length":206,"output_length":1107,"hash_ids":[1332056],"delay":1552.7} +{"session_id":"sess-0666bc855dc5","input_length":1097,"output_length":336,"hash_ids":[1332057,1332058,1332059],"delay":513.0} +{"session_id":"sess-0666bc855dc5","input_length":1043,"output_length":214,"hash_ids":[1332060,1332061,1332062],"delay":14931.5} +{"session_id":"sess-0666bc855dc5","input_length":1140,"output_length":123,"hash_ids":[1332063,1332064,1332065],"delay":183.5} +{"session_id":"sess-0666bc855dc5","input_length":1460,"output_length":181,"hash_ids":[1332066,1332067,1332068],"delay":24679.7} +{"session_id":"sess-0666bc855dc5","input_length":92,"output_length":109,"hash_ids":[1332069],"delay":397.7} +{"session_id":"sess-0666bc855dc5","input_length":260,"output_length":259,"hash_ids":[1332070],"delay":296.9} +{"session_id":"sess-0666bc855dc5","input_length":1699,"output_length":303,"hash_ids":[1332071,1332072,1332073,1332074],"delay":922.6} +{"session_id":"sess-0666bc855dc5","input_length":198,"output_length":529,"hash_ids":[1332075],"delay":1022.6} +{"session_id":"sess-0666bc855dc5","input_length":1442,"output_length":96,"hash_ids":[1332076,1332077,1332078],"delay":317.1} +{"session_id":"sess-0666bc855dc5","input_length":943,"output_length":392,"hash_ids":[1332079,1332080],"delay":664.1} +{"session_id":"sess-0666bc855dc5","input_length":1049,"output_length":159,"hash_ids":[1332081,1332082,1332083],"delay":11367.8} +{"session_id":"sess-0666bc855dc5","input_length":815,"output_length":89,"hash_ids":[1332084,1332085],"delay":156.2} +{"session_id":"sess-8a5cc142e643","input_length":27812,"output_length":45,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1336032,1336033,1336034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8a5cc142e643","input_length":1590,"output_length":195,"hash_ids":[1336035,1336036,1336037,1336038],"delay":5736.2} +{"session_id":"sess-8a5cc142e643","input_length":811,"output_length":150,"hash_ids":[1336039,1336040],"delay":19632.6} +{"session_id":"sess-8a5cc142e643","input_length":731,"output_length":325,"hash_ids":[1336041,1336042],"delay":56040.5} +{"session_id":"sess-8a5cc142e643","input_length":704,"output_length":893,"hash_ids":[1336043,1336044],"delay":12303.9} +{"session_id":"sess-8a5cc142e643","input_length":1266,"output_length":330,"hash_ids":[1336045,1336046,1336047],"delay":45179.1} +{"session_id":"sess-8a5cc142e643","input_length":1050,"output_length":91,"hash_ids":[1336048,1336049,1336050],"delay":2231.8} +{"session_id":"sess-8a5cc142e643","input_length":2965,"output_length":297,"hash_ids":[1336051,1336052,1336053,1336054,1336055,1336056],"delay":1464.0} +{"session_id":"sess-8a5cc142e643","input_length":704,"output_length":104,"hash_ids":[1336057,1336058],"delay":6971.8} +{"session_id":"sess-8a5cc142e643","input_length":590,"output_length":710,"hash_ids":[1336059,1336060],"delay":1061.8} +{"session_id":"sess-8a5cc142e643","input_length":630,"output_length":78,"hash_ids":[1336061,1336062],"delay":1349.0} +{"session_id":"sess-8a5cc142e643","input_length":394,"output_length":200,"hash_ids":[1336063],"delay":5860.4} +{"session_id":"sess-8a5cc142e643","input_length":399,"output_length":175,"hash_ids":[1336064],"delay":1065.1} +{"session_id":"sess-8a5cc142e643","input_length":247,"output_length":510,"hash_ids":[1336065],"delay":2302.7} +{"session_id":"sess-8a5cc142e643","input_length":530,"output_length":55,"hash_ids":[1336066,1336067],"delay":980.3} +{"session_id":"sess-8a5cc142e643","input_length":558,"output_length":177,"hash_ids":[1336068,1336069],"delay":1674.1} +{"session_id":"sess-8a5cc142e643","input_length":219,"output_length":224,"hash_ids":[1336070],"delay":1291.6} +{"session_id":"sess-8a5cc142e643","input_length":2546,"output_length":74,"hash_ids":[1336071,1336072,1336073,1336074,1336075],"delay":7231.3} +{"session_id":"sess-8a5cc142e643","input_length":418,"output_length":243,"hash_ids":[1336076],"delay":830.1} +{"session_id":"sess-8a5cc142e643","input_length":122,"output_length":205,"hash_ids":[1336077],"delay":735.4} +{"session_id":"sess-8a5cc142e643","input_length":495,"output_length":120,"hash_ids":[1336078],"delay":3083.6} +{"session_id":"sess-8a5cc142e643","input_length":1644,"output_length":147,"hash_ids":[1336079,1336080,1336081,1336082],"delay":1026.0} +{"session_id":"sess-8a5cc142e643","input_length":1657,"output_length":264,"hash_ids":[1336083,1336084,1336085,1336086],"delay":570.5} +{"session_id":"sess-623c32574a97","input_length":28005,"output_length":442,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1340032,1340033,1340034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-623c32574a97","input_length":1009,"output_length":441,"hash_ids":[1340035,1340036],"delay":1644.9} +{"session_id":"sess-623c32574a97","input_length":1324,"output_length":125,"hash_ids":[1340037,1340038,1340039],"delay":376.0} +{"session_id":"sess-623c32574a97","input_length":852,"output_length":97,"hash_ids":[1340040,1340041],"delay":8358.5} +{"session_id":"sess-623c32574a97","input_length":442,"output_length":263,"hash_ids":[1340042],"delay":1883.7} +{"session_id":"sess-623c32574a97","input_length":1537,"output_length":213,"hash_ids":[1340043,1340044,1340045,1340046],"delay":1103.9} +{"session_id":"sess-623c32574a97","input_length":1187,"output_length":1269,"hash_ids":[1340047,1340048,1340049],"delay":264.9} +{"session_id":"sess-623c32574a97","input_length":567,"output_length":143,"hash_ids":[1340050,1340051],"delay":1340.5} +{"session_id":"sess-623c32574a97","input_length":588,"output_length":420,"hash_ids":[1340052,1340053],"delay":1621.2} +{"session_id":"sess-623c32574a97","input_length":77,"output_length":39,"hash_ids":[1340054],"delay":1220.9} +{"session_id":"sess-623c32574a97","input_length":2174,"output_length":603,"hash_ids":[1340055,1340056,1340057,1340058,1340059],"delay":349.7} +{"session_id":"sess-623c32574a97","input_length":1784,"output_length":137,"hash_ids":[1340060,1340061,1340062,1340063],"delay":949.4} +{"session_id":"sess-623c32574a97","input_length":2494,"output_length":47,"hash_ids":[1340064,1340065,1340066,1340067,1340068],"delay":2581.4} +{"session_id":"sess-623c32574a97","input_length":1430,"output_length":166,"hash_ids":[1340069,1340070,1340071],"delay":3026.2} +{"session_id":"sess-623c32574a97","input_length":2215,"output_length":252,"hash_ids":[1340072,1340073,1340074,1340075,1340076],"delay":368.6} +{"session_id":"sess-623c32574a97","input_length":462,"output_length":443,"hash_ids":[1340077],"delay":729.1} +{"session_id":"sess-623c32574a97","input_length":521,"output_length":222,"hash_ids":[1340078,1340079],"delay":203.3} +{"session_id":"sess-623c32574a97","input_length":810,"output_length":110,"hash_ids":[1340080,1340081],"delay":868.7} +{"session_id":"sess-623c32574a97","input_length":320,"output_length":148,"hash_ids":[1340082],"delay":3405.4} +{"session_id":"sess-623c32574a97","input_length":850,"output_length":272,"hash_ids":[1340083,1340084],"delay":271.2} +{"session_id":"sess-623c32574a97","input_length":987,"output_length":389,"hash_ids":[1340085,1340086],"delay":1852.0} +{"session_id":"sess-e2be64b0ac60","input_length":30806,"output_length":133,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1344032,1344033,1344034,1344035,1344036,1344037,1344038,1344039,1344040],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e2be64b0ac60","input_length":316,"output_length":479,"hash_ids":[1344041],"delay":659.3} +{"session_id":"sess-e2be64b0ac60","input_length":1353,"output_length":66,"hash_ids":[1344042,1344043,1344044],"delay":571.4} +{"session_id":"sess-e2be64b0ac60","input_length":2716,"output_length":458,"hash_ids":[1344045,1344046,1344047,1344048,1344049,1344050],"delay":15114.7} +{"session_id":"sess-e2be64b0ac60","input_length":1131,"output_length":174,"hash_ids":[1344051,1344052,1344053],"delay":6980.6} +{"session_id":"sess-e2be64b0ac60","input_length":499,"output_length":39,"hash_ids":[1344054],"delay":61629.9} +{"session_id":"sess-e2be64b0ac60","input_length":1303,"output_length":409,"hash_ids":[1344055,1344056,1344057],"delay":6262.2} +{"session_id":"sess-e2be64b0ac60","input_length":659,"output_length":571,"hash_ids":[1344058,1344059],"delay":388.2} +{"session_id":"sess-e2be64b0ac60","input_length":557,"output_length":196,"hash_ids":[1344060,1344061],"delay":1034.8} +{"session_id":"sess-e2be64b0ac60","input_length":2106,"output_length":108,"hash_ids":[1344062,1344063,1344064,1344065,1344066],"delay":10111.4} +{"session_id":"sess-e2be64b0ac60","input_length":900,"output_length":357,"hash_ids":[1344067,1344068],"delay":1044.3} +{"session_id":"sess-e2be64b0ac60","input_length":353,"output_length":176,"hash_ids":[1344069],"delay":30153.1} +{"session_id":"sess-e2be64b0ac60","input_length":141,"output_length":30,"hash_ids":[1344070],"delay":548.1} +{"session_id":"sess-e2be64b0ac60","input_length":612,"output_length":60,"hash_ids":[1344071,1344072],"delay":702.1} +{"session_id":"sess-e2be64b0ac60","input_length":2827,"output_length":63,"hash_ids":[1344073,1344074,1344075,1344076,1344077,1344078],"delay":36894.0} +{"session_id":"sess-e2be64b0ac60","input_length":315,"output_length":30,"hash_ids":[1344079],"delay":3078.9} +{"session_id":"sess-e2be64b0ac60","input_length":369,"output_length":181,"hash_ids":[1344080],"delay":249.5} +{"session_id":"sess-e2be64b0ac60","input_length":514,"output_length":316,"hash_ids":[1344081,1344082],"delay":1060.5} +{"session_id":"sess-e2be64b0ac60","input_length":703,"output_length":117,"hash_ids":[1344083,1344084],"delay":2647.1} +{"session_id":"sess-e2be64b0ac60","input_length":914,"output_length":760,"hash_ids":[1344085,1344086],"delay":262.5} +{"session_id":"sess-e2be64b0ac60","input_length":1726,"output_length":187,"hash_ids":[1344087,1344088,1344089,1344090],"delay":571.3} +{"session_id":"sess-e2be64b0ac60","input_length":1028,"output_length":71,"hash_ids":[1344091,1344092,1344093],"delay":4595.4} +{"session_id":"sess-e2be64b0ac60","input_length":2464,"output_length":108,"hash_ids":[1344094,1344095,1344096,1344097,1344098],"delay":500.2} +{"session_id":"sess-e2be64b0ac60","input_length":311,"output_length":484,"hash_ids":[1344099],"delay":3563.2} +{"session_id":"sess-e2be64b0ac60","input_length":1434,"output_length":123,"hash_ids":[1344100,1344101,1344102],"delay":552.7} +{"session_id":"sess-e2be64b0ac60","input_length":794,"output_length":458,"hash_ids":[1344103,1344104],"delay":866.1} +{"session_id":"sess-e2be64b0ac60","input_length":335,"output_length":90,"hash_ids":[1344105],"delay":708.3} +{"session_id":"sess-e2be64b0ac60","input_length":477,"output_length":769,"hash_ids":[1344106],"delay":776.2} +{"session_id":"sess-e2be64b0ac60","input_length":243,"output_length":69,"hash_ids":[1344107],"delay":273.3} +{"session_id":"sess-e2be64b0ac60","input_length":171,"output_length":301,"hash_ids":[1344108],"delay":465.7} +{"session_id":"sess-a083394aca1b","input_length":26601,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a083394aca1b","input_length":816,"output_length":108,"hash_ids":[1344109,1344110],"delay":404.8} +{"session_id":"sess-a083394aca1b","input_length":260,"output_length":1272,"hash_ids":[1344111],"delay":2203.0} +{"session_id":"sess-a083394aca1b","input_length":241,"output_length":186,"hash_ids":[1344112],"delay":818.9} +{"session_id":"sess-a083394aca1b","input_length":1200,"output_length":336,"hash_ids":[1344113,1344114,1344115],"delay":2308.6} +{"session_id":"sess-a083394aca1b","input_length":1795,"output_length":229,"hash_ids":[1344116,1344117,1344118,1344119],"delay":582.3} +{"session_id":"sess-a083394aca1b","input_length":966,"output_length":108,"hash_ids":[1344120,1344121],"delay":5182.3} +{"session_id":"sess-a083394aca1b","input_length":1086,"output_length":678,"hash_ids":[1344122,1344123,1344124],"delay":2595.8} +{"session_id":"sess-a083394aca1b","input_length":283,"output_length":927,"hash_ids":[1344125],"delay":1684.0} +{"session_id":"sess-a083394aca1b","input_length":1568,"output_length":242,"hash_ids":[1344126,1344127,1344128,1344129],"delay":306.2} +{"session_id":"sess-a083394aca1b","input_length":2748,"output_length":354,"hash_ids":[1344130,1344131,1344132,1344133,1344134,1344135],"delay":5860.7} +{"session_id":"sess-a083394aca1b","input_length":1567,"output_length":232,"hash_ids":[1344136,1344137,1344138,1344139],"delay":1563.0} +{"session_id":"sess-a083394aca1b","input_length":1963,"output_length":132,"hash_ids":[1344140,1344141,1344142,1344143],"delay":698.7} +{"session_id":"sess-a083394aca1b","input_length":1476,"output_length":163,"hash_ids":[1344144,1344145,1344146],"delay":712.1} +{"session_id":"sess-a083394aca1b","input_length":1045,"output_length":466,"hash_ids":[1344147,1344148,1344149],"delay":271.8} +{"session_id":"sess-a083394aca1b","input_length":1266,"output_length":521,"hash_ids":[1344150,1344151,1344152],"delay":549.6} +{"session_id":"sess-a083394aca1b","input_length":2904,"output_length":58,"hash_ids":[1344153,1344154,1344155,1344156,1344157,1344158],"delay":847.1} +{"session_id":"sess-a083394aca1b","input_length":1563,"output_length":396,"hash_ids":[1344159,1344160,1344161,1344162],"delay":564.0} +{"session_id":"sess-413d8d43767a","input_length":26366,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-413d8d43767a","input_length":348,"output_length":361,"hash_ids":[1344163],"delay":2278.8} +{"session_id":"sess-413d8d43767a","input_length":872,"output_length":458,"hash_ids":[1344164,1344165],"delay":2946.4} +{"session_id":"sess-413d8d43767a","input_length":199,"output_length":67,"hash_ids":[1344166],"delay":14121.8} +{"session_id":"sess-413d8d43767a","input_length":971,"output_length":111,"hash_ids":[1344167,1344168],"delay":1661.2} +{"session_id":"sess-413d8d43767a","input_length":183,"output_length":53,"hash_ids":[1344169],"delay":202.9} +{"session_id":"sess-413d8d43767a","input_length":147,"output_length":253,"hash_ids":[1344170],"delay":16221.1} +{"session_id":"sess-413d8d43767a","input_length":1035,"output_length":204,"hash_ids":[1344171,1344172,1344173],"delay":860.2} +{"session_id":"sess-413d8d43767a","input_length":1134,"output_length":149,"hash_ids":[1344174,1344175,1344176],"delay":4480.9} +{"session_id":"sess-413d8d43767a","input_length":2096,"output_length":381,"hash_ids":[1344177,1344178,1344179,1344180,1344181],"delay":1565.3} +{"session_id":"sess-413d8d43767a","input_length":1984,"output_length":387,"hash_ids":[1344182,1344183,1344184,1344185],"delay":371.2} +{"session_id":"sess-413d8d43767a","input_length":310,"output_length":640,"hash_ids":[1344186],"delay":3803.1} +{"session_id":"sess-413d8d43767a","input_length":2159,"output_length":482,"hash_ids":[1344187,1344188,1344189,1344190,1344191],"delay":241.5} +{"session_id":"sess-413d8d43767a","input_length":222,"output_length":597,"hash_ids":[1344192],"delay":1620.0} +{"session_id":"sess-413d8d43767a","input_length":729,"output_length":258,"hash_ids":[1344193,1344194],"delay":386.2} +{"session_id":"sess-413d8d43767a","input_length":603,"output_length":345,"hash_ids":[1344195,1344196],"delay":1355.4} +{"session_id":"sess-413d8d43767a","input_length":1077,"output_length":189,"hash_ids":[1344197,1344198,1344199],"delay":1571.3} +{"session_id":"sess-413d8d43767a","input_length":1023,"output_length":54,"hash_ids":[1344200,1344201],"delay":206.5} +{"session_id":"sess-413d8d43767a","input_length":1676,"output_length":296,"hash_ids":[1344202,1344203,1344204,1344205],"delay":266.9} +{"session_id":"sess-413d8d43767a","input_length":1234,"output_length":239,"hash_ids":[1344206,1344207,1344208],"delay":770.9} +{"session_id":"sess-413d8d43767a","input_length":2844,"output_length":195,"hash_ids":[1344209,1344210,1344211,1344212,1344213,1344214],"delay":8225.3} +{"session_id":"sess-413d8d43767a","input_length":191,"output_length":1206,"hash_ids":[1344215],"delay":781.2} +{"session_id":"sess-413d8d43767a","input_length":542,"output_length":102,"hash_ids":[1344216,1344217],"delay":1735.9} +{"session_id":"sess-413d8d43767a","input_length":1535,"output_length":260,"hash_ids":[1344218,1344219,1344220],"delay":1276.3} +{"session_id":"sess-413d8d43767a","input_length":643,"output_length":245,"hash_ids":[1344221,1344222],"delay":100.1} +{"session_id":"sess-413d8d43767a","input_length":229,"output_length":79,"hash_ids":[1344223],"delay":224.5} +{"session_id":"sess-413d8d43767a","input_length":150,"output_length":73,"hash_ids":[1344224],"delay":3053.2} +{"session_id":"sess-413d8d43767a","input_length":1759,"output_length":161,"hash_ids":[1344225,1344226,1344227,1344228],"delay":580.6} +{"session_id":"sess-413d8d43767a","input_length":654,"output_length":201,"hash_ids":[1344229,1344230],"delay":218.2} +{"session_id":"sess-413d8d43767a","input_length":144,"output_length":221,"hash_ids":[1344231],"delay":265.6} +{"session_id":"sess-413d8d43767a","input_length":505,"output_length":545,"hash_ids":[1344232],"delay":25985.5} +{"session_id":"sess-413d8d43767a","input_length":1306,"output_length":197,"hash_ids":[1344233,1344234,1344235],"delay":393.7} +{"session_id":"sess-834bfb5045c4","input_length":26452,"output_length":1449,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451],"timestamp":0.0,"group_id":22} +{"session_id":"sess-834bfb5045c4","input_length":1024,"output_length":74,"hash_ids":[1344236,1344237],"delay":4626.0} +{"session_id":"sess-834bfb5045c4","input_length":607,"output_length":706,"hash_ids":[1344238,1344239],"delay":2428.5} +{"session_id":"sess-834bfb5045c4","input_length":614,"output_length":68,"hash_ids":[1344240,1344241],"delay":665.1} +{"session_id":"sess-834bfb5045c4","input_length":383,"output_length":417,"hash_ids":[1344242],"delay":7785.5} +{"session_id":"sess-834bfb5045c4","input_length":623,"output_length":126,"hash_ids":[1344243,1344244],"delay":1314.7} +{"session_id":"sess-834bfb5045c4","input_length":886,"output_length":44,"hash_ids":[1344245,1344246],"delay":3318.8} +{"session_id":"sess-834bfb5045c4","input_length":991,"output_length":62,"hash_ids":[1344247,1344248],"delay":32847.6} +{"session_id":"sess-834bfb5045c4","input_length":357,"output_length":104,"hash_ids":[1344249],"delay":618.9} +{"session_id":"sess-834bfb5045c4","input_length":1262,"output_length":231,"hash_ids":[1344250,1344251,1344252],"delay":246.4} +{"session_id":"sess-834bfb5045c4","input_length":264,"output_length":158,"hash_ids":[1344253],"delay":310.1} +{"session_id":"sess-834bfb5045c4","input_length":2333,"output_length":532,"hash_ids":[1344254,1344255,1344256,1344257,1344258],"delay":305.9} +{"session_id":"sess-834bfb5045c4","input_length":680,"output_length":177,"hash_ids":[1344259,1344260],"delay":1658.4} +{"session_id":"sess-834bfb5045c4","input_length":657,"output_length":668,"hash_ids":[1344261,1344262],"delay":1757.4} +{"session_id":"sess-834bfb5045c4","input_length":829,"output_length":310,"hash_ids":[1344263,1344264],"delay":43873.0} +{"session_id":"sess-834bfb5045c4","input_length":1053,"output_length":37,"hash_ids":[1344265,1344266,1344267],"delay":3409.0} +{"session_id":"sess-834bfb5045c4","input_length":292,"output_length":204,"hash_ids":[1344268],"delay":486.0} +{"session_id":"sess-834bfb5045c4","input_length":871,"output_length":188,"hash_ids":[1344269,1344270],"delay":1700.7} +{"session_id":"sess-834bfb5045c4","input_length":1232,"output_length":287,"hash_ids":[1344271,1344272,1344273],"delay":2477.2} +{"session_id":"sess-834bfb5045c4","input_length":1005,"output_length":138,"hash_ids":[1344274,1344275],"delay":1346.6} +{"session_id":"sess-834bfb5045c4","input_length":514,"output_length":418,"hash_ids":[1344276,1344277],"delay":2320.8} +{"session_id":"sess-834bfb5045c4","input_length":323,"output_length":396,"hash_ids":[1344278],"delay":691.3} +{"session_id":"sess-8ba6a7a82628","input_length":27556,"output_length":364,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1360032,1360033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8ba6a7a82628","input_length":289,"output_length":147,"hash_ids":[1360034],"delay":1606.0} +{"session_id":"sess-8ba6a7a82628","input_length":216,"output_length":661,"hash_ids":[1360035],"delay":475.6} +{"session_id":"sess-8ba6a7a82628","input_length":446,"output_length":117,"hash_ids":[1360036],"delay":1633.4} +{"session_id":"sess-8ba6a7a82628","input_length":255,"output_length":108,"hash_ids":[1360037],"delay":336.0} +{"session_id":"sess-8ba6a7a82628","input_length":553,"output_length":140,"hash_ids":[1360038,1360039],"delay":2013.6} +{"session_id":"sess-8ba6a7a82628","input_length":882,"output_length":334,"hash_ids":[1360040,1360041],"delay":1734.4} +{"session_id":"sess-8ba6a7a82628","input_length":485,"output_length":492,"hash_ids":[1360042],"delay":2563.9} +{"session_id":"sess-8ba6a7a82628","input_length":1999,"output_length":412,"hash_ids":[1360043,1360044,1360045,1360046],"delay":320.9} +{"session_id":"sess-8ba6a7a82628","input_length":1183,"output_length":218,"hash_ids":[1360047,1360048,1360049],"delay":1393.9} +{"session_id":"sess-8ba6a7a82628","input_length":2473,"output_length":30,"hash_ids":[1360050,1360051,1360052,1360053,1360054],"delay":520.5} +{"session_id":"sess-8ba6a7a82628","input_length":1078,"output_length":222,"hash_ids":[1360055,1360056,1360057],"delay":1207.2} +{"session_id":"sess-8ba6a7a82628","input_length":473,"output_length":30,"hash_ids":[1360058],"delay":18413.1} +{"session_id":"sess-8ba6a7a82628","input_length":299,"output_length":345,"hash_ids":[1360059],"delay":1161.2} +{"session_id":"sess-8ba6a7a82628","input_length":623,"output_length":603,"hash_ids":[1360060,1360061],"delay":1062.7} +{"session_id":"sess-8ba6a7a82628","input_length":532,"output_length":1109,"hash_ids":[1360062,1360063],"delay":2268.7} +{"session_id":"sess-8ba6a7a82628","input_length":1938,"output_length":227,"hash_ids":[1360064,1360065,1360066,1360067],"delay":364.5} +{"session_id":"sess-8ba6a7a82628","input_length":156,"output_length":149,"hash_ids":[1360068],"delay":2037.5} +{"session_id":"sess-8ba6a7a82628","input_length":913,"output_length":538,"hash_ids":[1360069,1360070],"delay":334.4} +{"session_id":"sess-8ba6a7a82628","input_length":497,"output_length":704,"hash_ids":[1360071],"delay":3393.0} +{"session_id":"sess-8ba6a7a82628","input_length":201,"output_length":103,"hash_ids":[1360072],"delay":943.7} +{"session_id":"sess-8ba6a7a82628","input_length":1578,"output_length":181,"hash_ids":[1360073,1360074,1360075,1360076],"delay":469.1} +{"session_id":"sess-8ba6a7a82628","input_length":1310,"output_length":351,"hash_ids":[1360077,1360078,1360079],"delay":31096.7} +{"session_id":"sess-8ba6a7a82628","input_length":2337,"output_length":82,"hash_ids":[1360080,1360081,1360082,1360083,1360084],"delay":1180.5} +{"session_id":"sess-54ccaa17f118","input_length":27160,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,1364032,1364033],"timestamp":0.0,"group_id":32} +{"session_id":"sess-54ccaa17f118","input_length":389,"output_length":173,"hash_ids":[1364034],"delay":1100.0} +{"session_id":"sess-54ccaa17f118","input_length":2338,"output_length":694,"hash_ids":[1364035,1364036,1364037,1364038,1364039],"delay":10905.0} +{"session_id":"sess-54ccaa17f118","input_length":199,"output_length":392,"hash_ids":[1364040],"delay":7909.3} +{"session_id":"sess-54ccaa17f118","input_length":1833,"output_length":268,"hash_ids":[1364041,1364042,1364043,1364044],"delay":365.1} +{"session_id":"sess-54ccaa17f118","input_length":1008,"output_length":174,"hash_ids":[1364045,1364046],"delay":19890.5} +{"session_id":"sess-54ccaa17f118","input_length":376,"output_length":150,"hash_ids":[1364047],"delay":1403.9} +{"session_id":"sess-54ccaa17f118","input_length":1093,"output_length":290,"hash_ids":[1364048,1364049,1364050],"delay":958.4} +{"session_id":"sess-54ccaa17f118","input_length":269,"output_length":182,"hash_ids":[1364051],"delay":1733.7} +{"session_id":"sess-54ccaa17f118","input_length":544,"output_length":55,"hash_ids":[1364052,1364053],"delay":1820.9} +{"session_id":"sess-54ccaa17f118","input_length":1051,"output_length":30,"hash_ids":[1364054,1364055,1364056],"delay":470.9} +{"session_id":"sess-54ccaa17f118","input_length":777,"output_length":42,"hash_ids":[1364057,1364058],"delay":11226.9} +{"session_id":"sess-54ccaa17f118","input_length":1809,"output_length":404,"hash_ids":[1364059,1364060,1364061,1364062],"delay":1778.6} +{"session_id":"sess-54ccaa17f118","input_length":733,"output_length":558,"hash_ids":[1364063,1364064],"delay":15277.2} +{"session_id":"sess-54ccaa17f118","input_length":725,"output_length":54,"hash_ids":[1364065,1364066],"delay":9344.5} +{"session_id":"sess-54ccaa17f118","input_length":2620,"output_length":178,"hash_ids":[1364067,1364068,1364069,1364070,1364071,1364072],"delay":401.3} +{"session_id":"sess-54ccaa17f118","input_length":1654,"output_length":120,"hash_ids":[1364073,1364074,1364075,1364076],"delay":11866.1} +{"session_id":"sess-54ccaa17f118","input_length":1221,"output_length":698,"hash_ids":[1364077,1364078,1364079],"delay":642.7} +{"session_id":"sess-54ccaa17f118","input_length":677,"output_length":299,"hash_ids":[1364080,1364081],"delay":834.2} +{"session_id":"sess-54ccaa17f118","input_length":618,"output_length":178,"hash_ids":[1364082,1364083],"delay":1026.8} +{"session_id":"sess-54ccaa17f118","input_length":2641,"output_length":411,"hash_ids":[1364084,1364085,1364086,1364087,1364088,1364089],"delay":646.5} +{"session_id":"sess-54ccaa17f118","input_length":271,"output_length":111,"hash_ids":[1364090],"delay":19286.9} +{"session_id":"sess-54ccaa17f118","input_length":534,"output_length":375,"hash_ids":[1364091,1364092],"delay":3672.1} +{"session_id":"sess-54ccaa17f118","input_length":182,"output_length":246,"hash_ids":[1364093],"delay":1271.7} +{"session_id":"sess-54ccaa17f118","input_length":2564,"output_length":137,"hash_ids":[1364094,1364095,1364096,1364097,1364098,1364099],"delay":13808.2} +{"session_id":"sess-54ccaa17f118","input_length":288,"output_length":339,"hash_ids":[1364100],"delay":3961.3} +{"session_id":"sess-54ccaa17f118","input_length":740,"output_length":255,"hash_ids":[1364101,1364102],"delay":414.2} +{"session_id":"sess-54ccaa17f118","input_length":552,"output_length":467,"hash_ids":[1364103,1364104],"delay":105.4} +{"session_id":"sess-54ccaa17f118","input_length":200,"output_length":130,"hash_ids":[1364105],"delay":11101.7} +{"session_id":"sess-54ccaa17f118","input_length":1223,"output_length":1077,"hash_ids":[1364106,1364107,1364108],"delay":415.6} +{"session_id":"sess-6d6864a2c7b4","input_length":26367,"output_length":291,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6d6864a2c7b4","input_length":1694,"output_length":242,"hash_ids":[1364109,1364110,1364111,1364112],"delay":2128.4} +{"session_id":"sess-6d6864a2c7b4","input_length":333,"output_length":143,"hash_ids":[1364113],"delay":1315.5} +{"session_id":"sess-6d6864a2c7b4","input_length":539,"output_length":207,"hash_ids":[1364114,1364115],"delay":10381.9} +{"session_id":"sess-6d6864a2c7b4","input_length":2179,"output_length":497,"hash_ids":[1364116,1364117,1364118,1364119,1364120],"delay":1123.3} +{"session_id":"sess-6d6864a2c7b4","input_length":934,"output_length":484,"hash_ids":[1364121,1364122],"delay":650.8} +{"session_id":"sess-6d6864a2c7b4","input_length":2895,"output_length":191,"hash_ids":[1364123,1364124,1364125,1364126,1364127,1364128],"delay":944.1} +{"session_id":"sess-6d6864a2c7b4","input_length":922,"output_length":159,"hash_ids":[1364129,1364130],"delay":1246.7} +{"session_id":"sess-6d6864a2c7b4","input_length":761,"output_length":157,"hash_ids":[1364131,1364132],"delay":833.0} +{"session_id":"sess-6d6864a2c7b4","input_length":1192,"output_length":126,"hash_ids":[1364133,1364134,1364135],"delay":15166.0} +{"session_id":"sess-6d6864a2c7b4","input_length":375,"output_length":175,"hash_ids":[1364136],"delay":922.7} +{"session_id":"sess-6d6864a2c7b4","input_length":374,"output_length":256,"hash_ids":[1364137],"delay":21696.9} +{"session_id":"sess-6d6864a2c7b4","input_length":1304,"output_length":513,"hash_ids":[1364138,1364139,1364140],"delay":167.6} +{"session_id":"sess-6d6864a2c7b4","input_length":273,"output_length":372,"hash_ids":[1364141],"delay":467.3} +{"session_id":"sess-6d6864a2c7b4","input_length":1413,"output_length":679,"hash_ids":[1364142,1364143,1364144],"delay":6466.4} +{"session_id":"sess-6d6864a2c7b4","input_length":1042,"output_length":942,"hash_ids":[1364145,1364146,1364147],"delay":563.4} +{"session_id":"sess-6d6864a2c7b4","input_length":379,"output_length":44,"hash_ids":[1364148],"delay":5733.1} +{"session_id":"sess-6d6864a2c7b4","input_length":118,"output_length":106,"hash_ids":[1364149],"delay":587.7} +{"session_id":"sess-6d6864a2c7b4","input_length":857,"output_length":480,"hash_ids":[1364150,1364151],"delay":508.6} +{"session_id":"sess-6d6864a2c7b4","input_length":735,"output_length":427,"hash_ids":[1364152,1364153],"delay":30099.2} +{"session_id":"sess-6d6864a2c7b4","input_length":1444,"output_length":536,"hash_ids":[1364154,1364155,1364156],"delay":7649.0} +{"session_id":"sess-6d6864a2c7b4","input_length":120,"output_length":753,"hash_ids":[1364157],"delay":4695.1} +{"session_id":"sess-6d6864a2c7b4","input_length":2587,"output_length":48,"hash_ids":[1364158,1364159,1364160,1364161,1364162,1364163],"delay":1446.8} +{"session_id":"sess-6d6864a2c7b4","input_length":1589,"output_length":317,"hash_ids":[1364164,1364165,1364166,1364167],"delay":137.4} +{"session_id":"sess-6d6864a2c7b4","input_length":568,"output_length":185,"hash_ids":[1364168,1364169],"delay":340.5} +{"session_id":"sess-6d6864a2c7b4","input_length":1683,"output_length":68,"hash_ids":[1364170,1364171,1364172,1364173],"delay":303.0} +{"session_id":"sess-6d6864a2c7b4","input_length":736,"output_length":87,"hash_ids":[1364174,1364175],"delay":11297.4} +{"session_id":"sess-6d6864a2c7b4","input_length":2692,"output_length":75,"hash_ids":[1364176,1364177,1364178,1364179,1364180,1364181],"delay":638.8} +{"session_id":"sess-6d6864a2c7b4","input_length":756,"output_length":172,"hash_ids":[1364182,1364183],"delay":503.9} +{"session_id":"sess-acc2a76f89ab","input_length":36036,"output_length":758,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,1372032,1372033,1372034,1372035,1372036,1372037,1372038,1372039,1372040,1372041,1372042,1372043,1372044,1372045,1372046,1372047,1372048,1372049,1372050],"timestamp":0.0,"group_id":16} +{"session_id":"sess-acc2a76f89ab","input_length":2631,"output_length":187,"hash_ids":[1372051,1372052,1372053,1372054,1372055,1372056],"delay":233.5} +{"session_id":"sess-acc2a76f89ab","input_length":2437,"output_length":239,"hash_ids":[1372057,1372058,1372059,1372060,1372061],"delay":3975.3} +{"session_id":"sess-acc2a76f89ab","input_length":1017,"output_length":606,"hash_ids":[1372062,1372063],"delay":446.5} +{"session_id":"sess-acc2a76f89ab","input_length":990,"output_length":209,"hash_ids":[1372064,1372065],"delay":872.1} +{"session_id":"sess-acc2a76f89ab","input_length":385,"output_length":97,"hash_ids":[1372066],"delay":534.9} +{"session_id":"sess-acc2a76f89ab","input_length":2339,"output_length":186,"hash_ids":[1372067,1372068,1372069,1372070,1372071],"delay":12780.9} +{"session_id":"sess-acc2a76f89ab","input_length":1295,"output_length":186,"hash_ids":[1372072,1372073,1372074],"delay":35043.6} +{"session_id":"sess-acc2a76f89ab","input_length":1929,"output_length":144,"hash_ids":[1372075,1372076,1372077,1372078],"delay":2819.9} +{"session_id":"sess-acc2a76f89ab","input_length":850,"output_length":919,"hash_ids":[1372079,1372080],"delay":10608.7} +{"session_id":"sess-acc2a76f89ab","input_length":1157,"output_length":423,"hash_ids":[1372081,1372082,1372083],"delay":1762.6} +{"session_id":"sess-acc2a76f89ab","input_length":852,"output_length":113,"hash_ids":[1372084,1372085],"delay":907.2} +{"session_id":"sess-acc2a76f89ab","input_length":2477,"output_length":1045,"hash_ids":[1372086,1372087,1372088,1372089,1372090],"delay":37223.9} +{"session_id":"sess-acc2a76f89ab","input_length":626,"output_length":90,"hash_ids":[1372091,1372092],"delay":888.9} +{"session_id":"sess-acc2a76f89ab","input_length":164,"output_length":302,"hash_ids":[1372093],"delay":701.2} +{"session_id":"sess-acc2a76f89ab","input_length":676,"output_length":345,"hash_ids":[1372094,1372095],"delay":27320.2} +{"session_id":"sess-acc2a76f89ab","input_length":1318,"output_length":104,"hash_ids":[1372096,1372097,1372098],"delay":10811.1} +{"session_id":"sess-acc2a76f89ab","input_length":712,"output_length":425,"hash_ids":[1372099,1372100],"delay":1364.5} +{"session_id":"sess-3ff4691c93e2","input_length":31975,"output_length":278,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1376032,1376033,1376034,1376035,1376036,1376037,1376038,1376039,1376040,1376041,1376042],"timestamp":0.0,"group_id":7} +{"session_id":"sess-3ff4691c93e2","input_length":1039,"output_length":174,"hash_ids":[1376043,1376044,1376045],"delay":6409.9} +{"session_id":"sess-3ff4691c93e2","input_length":1708,"output_length":276,"hash_ids":[1376046,1376047,1376048,1376049],"delay":286.6} +{"session_id":"sess-3ff4691c93e2","input_length":1472,"output_length":59,"hash_ids":[1376050,1376051,1376052],"delay":2403.5} +{"session_id":"sess-3ff4691c93e2","input_length":1504,"output_length":274,"hash_ids":[1376053,1376054,1376055],"delay":23374.4} +{"session_id":"sess-3ff4691c93e2","input_length":655,"output_length":268,"hash_ids":[1376056,1376057],"delay":2151.4} +{"session_id":"sess-3ff4691c93e2","input_length":503,"output_length":54,"hash_ids":[1376058],"delay":839.0} +{"session_id":"sess-3ff4691c93e2","input_length":573,"output_length":159,"hash_ids":[1376059,1376060],"delay":475.1} +{"session_id":"sess-3ff4691c93e2","input_length":691,"output_length":274,"hash_ids":[1376061,1376062],"delay":540.4} +{"session_id":"sess-3ff4691c93e2","input_length":1448,"output_length":175,"hash_ids":[1376063,1376064,1376065],"delay":867.2} +{"session_id":"sess-3ff4691c93e2","input_length":2042,"output_length":136,"hash_ids":[1376066,1376067,1376068,1376069],"delay":918.5} +{"session_id":"sess-3ff4691c93e2","input_length":722,"output_length":155,"hash_ids":[1376070,1376071],"delay":1646.4} +{"session_id":"sess-3ff4691c93e2","input_length":1654,"output_length":66,"hash_ids":[1376072,1376073,1376074,1376075],"delay":6824.8} +{"session_id":"sess-3ff4691c93e2","input_length":686,"output_length":601,"hash_ids":[1376076,1376077],"delay":1546.5} +{"session_id":"sess-3ff4691c93e2","input_length":1036,"output_length":92,"hash_ids":[1376078,1376079,1376080],"delay":1225.3} +{"session_id":"sess-fa2f2e999de6","input_length":30881,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1380032,1380033,1380034,1380035,1380036,1380037,1380038,1380039,1380040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fa2f2e999de6","input_length":267,"output_length":277,"hash_ids":[1380041],"delay":10794.4} +{"session_id":"sess-fa2f2e999de6","input_length":454,"output_length":259,"hash_ids":[1380042],"delay":688.9} +{"session_id":"sess-fa2f2e999de6","input_length":1454,"output_length":112,"hash_ids":[1380043,1380044,1380045],"delay":7317.8} +{"session_id":"sess-fa2f2e999de6","input_length":288,"output_length":65,"hash_ids":[1380046],"delay":1135.6} +{"session_id":"sess-fa2f2e999de6","input_length":548,"output_length":311,"hash_ids":[1380047,1380048],"delay":513.0} +{"session_id":"sess-fa2f2e999de6","input_length":2328,"output_length":521,"hash_ids":[1380049,1380050,1380051,1380052,1380053],"delay":2146.5} +{"session_id":"sess-fa2f2e999de6","input_length":358,"output_length":186,"hash_ids":[1380054],"delay":2541.3} +{"session_id":"sess-fa2f2e999de6","input_length":510,"output_length":154,"hash_ids":[1380055],"delay":527.1} +{"session_id":"sess-fa2f2e999de6","input_length":2250,"output_length":277,"hash_ids":[1380056,1380057,1380058,1380059,1380060],"delay":1351.2} +{"session_id":"sess-fa2f2e999de6","input_length":922,"output_length":374,"hash_ids":[1380061,1380062],"delay":13648.9} +{"session_id":"sess-fa2f2e999de6","input_length":148,"output_length":246,"hash_ids":[1380063],"delay":13970.1} +{"session_id":"sess-fa2f2e999de6","input_length":1108,"output_length":766,"hash_ids":[1380064,1380065,1380066],"delay":2238.2} +{"session_id":"sess-fa2f2e999de6","input_length":82,"output_length":64,"hash_ids":[1380067],"delay":409.2} +{"session_id":"sess-fa2f2e999de6","input_length":163,"output_length":1453,"hash_ids":[1380068],"delay":663.2} +{"session_id":"sess-fa2f2e999de6","input_length":2288,"output_length":144,"hash_ids":[1380069,1380070,1380071,1380072,1380073],"delay":478.8} +{"session_id":"sess-fa2f2e999de6","input_length":142,"output_length":119,"hash_ids":[1380074],"delay":4711.6} +{"session_id":"sess-fa2f2e999de6","input_length":1243,"output_length":68,"hash_ids":[1380075,1380076,1380077],"delay":272.0} +{"session_id":"sess-fa2f2e999de6","input_length":453,"output_length":56,"hash_ids":[1380078],"delay":5460.2} +{"session_id":"sess-fa2f2e999de6","input_length":312,"output_length":117,"hash_ids":[1380079],"delay":351.4} +{"session_id":"sess-fa2f2e999de6","input_length":2364,"output_length":171,"hash_ids":[1380080,1380081,1380082,1380083,1380084],"delay":9956.6} +{"session_id":"sess-fa2f2e999de6","input_length":810,"output_length":56,"hash_ids":[1380085,1380086],"delay":532.1} +{"session_id":"sess-fa2f2e999de6","input_length":562,"output_length":603,"hash_ids":[1380087,1380088],"delay":1152.1} +{"session_id":"sess-fa2f2e999de6","input_length":2646,"output_length":75,"hash_ids":[1380089,1380090,1380091,1380092,1380093,1380094],"delay":478.4} +{"session_id":"sess-fa2f2e999de6","input_length":1168,"output_length":172,"hash_ids":[1380095,1380096,1380097],"delay":2369.7} +{"session_id":"sess-fa2f2e999de6","input_length":230,"output_length":787,"hash_ids":[1380098],"delay":171.7} +{"session_id":"sess-fa2f2e999de6","input_length":376,"output_length":110,"hash_ids":[1380099],"delay":306.0} +{"session_id":"sess-fa2f2e999de6","input_length":651,"output_length":861,"hash_ids":[1380100,1380101],"delay":307.3} +{"session_id":"sess-fa2f2e999de6","input_length":836,"output_length":73,"hash_ids":[1380102,1380103],"delay":401.0} +{"session_id":"sess-fa2f2e999de6","input_length":740,"output_length":249,"hash_ids":[1380104,1380105],"delay":930.5} +{"session_id":"sess-ce387ecc4c90","input_length":27972,"output_length":431,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1384032,1384033,1384034],"timestamp":0.0,"group_id":3} +{"session_id":"sess-ce387ecc4c90","input_length":508,"output_length":697,"hash_ids":[1384035],"delay":1232.9} +{"session_id":"sess-b2b81ae601f7","input_length":26277,"output_length":220,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b2b81ae601f7","input_length":1385,"output_length":215,"hash_ids":[1384036,1384037,1384038],"delay":2521.7} +{"session_id":"sess-b2b81ae601f7","input_length":373,"output_length":424,"hash_ids":[1384039],"delay":357.6} +{"session_id":"sess-b2b81ae601f7","input_length":1134,"output_length":118,"hash_ids":[1384040,1384041,1384042],"delay":775.6} +{"session_id":"sess-b2b81ae601f7","input_length":555,"output_length":174,"hash_ids":[1384043,1384044],"delay":2016.8} +{"session_id":"sess-b2b81ae601f7","input_length":1102,"output_length":92,"hash_ids":[1384045,1384046,1384047],"delay":2782.9} +{"session_id":"sess-b2b81ae601f7","input_length":1680,"output_length":52,"hash_ids":[1384048,1384049,1384050,1384051],"delay":364.7} +{"session_id":"sess-628766177662","input_length":31140,"output_length":98,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1392032,1392033,1392034,1392035,1392036,1392037,1392038,1392039,1392040],"timestamp":0.0,"group_id":3} +{"session_id":"sess-628766177662","input_length":1741,"output_length":53,"hash_ids":[1392041,1392042,1392043,1392044],"delay":1229.9} +{"session_id":"sess-79f09d4c2935","input_length":29173,"output_length":338,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1396032,1396033,1396034,1396035,1396036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-79f09d4c2935","input_length":2946,"output_length":47,"hash_ids":[1396037,1396038,1396039,1396040,1396041,1396042],"delay":1022.8} +{"session_id":"sess-79f09d4c2935","input_length":836,"output_length":40,"hash_ids":[1396043,1396044],"delay":2865.8} +{"session_id":"sess-79f09d4c2935","input_length":1778,"output_length":155,"hash_ids":[1396045,1396046,1396047,1396048],"delay":388.6} +{"session_id":"sess-79f09d4c2935","input_length":514,"output_length":428,"hash_ids":[1396049,1396050],"delay":235.8} +{"session_id":"sess-79f09d4c2935","input_length":1205,"output_length":134,"hash_ids":[1396051,1396052,1396053],"delay":3129.5} +{"session_id":"sess-79f09d4c2935","input_length":102,"output_length":250,"hash_ids":[1396054],"delay":4586.2} +{"session_id":"sess-79f09d4c2935","input_length":254,"output_length":131,"hash_ids":[1396055],"delay":416.9} +{"session_id":"sess-79f09d4c2935","input_length":2787,"output_length":245,"hash_ids":[1396056,1396057,1396058,1396059,1396060,1396061],"delay":541.7} +{"session_id":"sess-79f09d4c2935","input_length":337,"output_length":92,"hash_ids":[1396062],"delay":1256.9} +{"session_id":"sess-74b8e8556f6f","input_length":27161,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1400032,1400033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-74b8e8556f6f","input_length":209,"output_length":103,"hash_ids":[1400034],"delay":1445.8} +{"session_id":"sess-74b8e8556f6f","input_length":754,"output_length":373,"hash_ids":[1400035,1400036],"delay":849.8} +{"session_id":"sess-74b8e8556f6f","input_length":501,"output_length":333,"hash_ids":[1400037],"delay":18741.9} +{"session_id":"sess-74b8e8556f6f","input_length":945,"output_length":166,"hash_ids":[1400038,1400039],"delay":5996.4} +{"session_id":"sess-74b8e8556f6f","input_length":293,"output_length":103,"hash_ids":[1400040],"delay":1635.9} +{"session_id":"sess-74b8e8556f6f","input_length":161,"output_length":217,"hash_ids":[1400041],"delay":10261.1} +{"session_id":"sess-74b8e8556f6f","input_length":149,"output_length":143,"hash_ids":[1400042],"delay":2563.4} +{"session_id":"sess-74b8e8556f6f","input_length":979,"output_length":197,"hash_ids":[1400043,1400044],"delay":2480.3} +{"session_id":"sess-2fbf7ec0330f","input_length":28049,"output_length":867,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,1404032,1404033,1404034],"timestamp":0.0,"group_id":4} +{"session_id":"sess-2fbf7ec0330f","input_length":1502,"output_length":89,"hash_ids":[1404035,1404036,1404037],"delay":817.8} +{"session_id":"sess-2fbf7ec0330f","input_length":2518,"output_length":507,"hash_ids":[1404038,1404039,1404040,1404041,1404042],"delay":1043.0} +{"session_id":"sess-2fbf7ec0330f","input_length":996,"output_length":126,"hash_ids":[1404043,1404044],"delay":2097.2} +{"session_id":"sess-2fbf7ec0330f","input_length":2220,"output_length":40,"hash_ids":[1404045,1404046,1404047,1404048,1404049],"delay":2004.7} +{"session_id":"sess-2fbf7ec0330f","input_length":1254,"output_length":297,"hash_ids":[1404050,1404051,1404052],"delay":12699.3} +{"session_id":"sess-2fbf7ec0330f","input_length":1143,"output_length":171,"hash_ids":[1404053,1404054,1404055],"delay":49095.7} +{"session_id":"sess-2fbf7ec0330f","input_length":604,"output_length":133,"hash_ids":[1404056,1404057],"delay":5481.4} +{"session_id":"sess-2fbf7ec0330f","input_length":1530,"output_length":331,"hash_ids":[1404058,1404059,1404060],"delay":797.6} +{"session_id":"sess-2fbf7ec0330f","input_length":304,"output_length":32,"hash_ids":[1404061],"delay":5032.7} +{"session_id":"sess-2fbf7ec0330f","input_length":1056,"output_length":37,"hash_ids":[1404062,1404063,1404064],"delay":1426.5} +{"session_id":"sess-2fbf7ec0330f","input_length":1075,"output_length":61,"hash_ids":[1404065,1404066,1404067],"delay":722.5} +{"session_id":"sess-2fbf7ec0330f","input_length":547,"output_length":580,"hash_ids":[1404068,1404069],"delay":5717.9} +{"session_id":"sess-2fbf7ec0330f","input_length":381,"output_length":501,"hash_ids":[1404070],"delay":6219.9} +{"session_id":"sess-2fbf7ec0330f","input_length":95,"output_length":242,"hash_ids":[1404071],"delay":2213.2} +{"session_id":"sess-2fbf7ec0330f","input_length":1157,"output_length":157,"hash_ids":[1404072,1404073,1404074],"delay":404.7} +{"session_id":"sess-2fbf7ec0330f","input_length":1446,"output_length":174,"hash_ids":[1404075,1404076,1404077],"delay":1058.0} +{"session_id":"sess-2fbf7ec0330f","input_length":655,"output_length":271,"hash_ids":[1404078,1404079],"delay":26241.0} +{"session_id":"sess-2fbf7ec0330f","input_length":125,"output_length":45,"hash_ids":[1404080],"delay":189.7} +{"session_id":"sess-2fbf7ec0330f","input_length":573,"output_length":46,"hash_ids":[1404081,1404082],"delay":28744.0} +{"session_id":"sess-2fbf7ec0330f","input_length":1919,"output_length":342,"hash_ids":[1404083,1404084,1404085,1404086],"delay":983.2} +{"session_id":"sess-2fbf7ec0330f","input_length":620,"output_length":269,"hash_ids":[1404087,1404088],"delay":1286.9} +{"session_id":"sess-2fbf7ec0330f","input_length":1650,"output_length":246,"hash_ids":[1404089,1404090,1404091,1404092],"delay":1231.4} +{"session_id":"sess-2fbf7ec0330f","input_length":683,"output_length":142,"hash_ids":[1404093,1404094],"delay":1606.7} +{"session_id":"sess-2fbf7ec0330f","input_length":1112,"output_length":213,"hash_ids":[1404095,1404096,1404097],"delay":587.2} +{"session_id":"sess-2fbf7ec0330f","input_length":2843,"output_length":268,"hash_ids":[1404098,1404099,1404100,1404101,1404102,1404103],"delay":143.9} +{"session_id":"sess-2fbf7ec0330f","input_length":145,"output_length":647,"hash_ids":[1404104],"delay":60.7} +{"session_id":"sess-2fbf7ec0330f","input_length":1035,"output_length":79,"hash_ids":[1404105,1404106,1404107],"delay":272.9} +{"session_id":"sess-2fbf7ec0330f","input_length":874,"output_length":123,"hash_ids":[1404108,1404109],"delay":1028.9} +{"session_id":"sess-615fb440c12f","input_length":31866,"output_length":294,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,1408032,1408033,1408034,1408035,1408036,1408037,1408038,1408039,1408040,1408041,1408042],"timestamp":0.0,"group_id":28} +{"session_id":"sess-615fb440c12f","input_length":319,"output_length":341,"hash_ids":[1408043],"delay":11669.5} +{"session_id":"sess-615fb440c12f","input_length":1098,"output_length":632,"hash_ids":[1408044,1408045,1408046],"delay":6755.0} +{"session_id":"sess-615fb440c12f","input_length":465,"output_length":946,"hash_ids":[1408047],"delay":23892.4} +{"session_id":"sess-615fb440c12f","input_length":437,"output_length":251,"hash_ids":[1408048],"delay":2393.4} +{"session_id":"sess-615fb440c12f","input_length":1031,"output_length":751,"hash_ids":[1408049,1408050,1408051],"delay":1497.3} +{"session_id":"sess-615fb440c12f","input_length":2149,"output_length":419,"hash_ids":[1408052,1408053,1408054,1408055,1408056],"delay":8955.2} +{"session_id":"sess-615fb440c12f","input_length":1049,"output_length":49,"hash_ids":[1408057,1408058,1408059],"delay":1134.0} +{"session_id":"sess-615fb440c12f","input_length":594,"output_length":97,"hash_ids":[1408060,1408061],"delay":609.6} +{"session_id":"sess-615fb440c12f","input_length":588,"output_length":171,"hash_ids":[1408062,1408063],"delay":1898.6} +{"session_id":"sess-615fb440c12f","input_length":853,"output_length":151,"hash_ids":[1408064,1408065],"delay":438.0} +{"session_id":"sess-615fb440c12f","input_length":1161,"output_length":354,"hash_ids":[1408066,1408067,1408068],"delay":809.4} +{"session_id":"sess-615fb440c12f","input_length":1511,"output_length":31,"hash_ids":[1408069,1408070,1408071],"delay":1045.2} +{"session_id":"sess-615fb440c12f","input_length":1089,"output_length":346,"hash_ids":[1408072,1408073,1408074],"delay":653.5} +{"session_id":"sess-615fb440c12f","input_length":838,"output_length":456,"hash_ids":[1408075,1408076],"delay":171.0} +{"session_id":"sess-615fb440c12f","input_length":407,"output_length":636,"hash_ids":[1408077],"delay":3637.4} +{"session_id":"sess-615fb440c12f","input_length":2223,"output_length":282,"hash_ids":[1408078,1408079,1408080,1408081,1408082],"delay":1367.0} +{"session_id":"sess-615fb440c12f","input_length":862,"output_length":211,"hash_ids":[1408083,1408084],"delay":379.2} +{"session_id":"sess-615fb440c12f","input_length":965,"output_length":188,"hash_ids":[1408085,1408086],"delay":1454.5} +{"session_id":"sess-615fb440c12f","input_length":338,"output_length":760,"hash_ids":[1408087],"delay":3547.0} +{"session_id":"sess-615fb440c12f","input_length":857,"output_length":55,"hash_ids":[1408088,1408089],"delay":461.3} +{"session_id":"sess-615fb440c12f","input_length":353,"output_length":117,"hash_ids":[1408090],"delay":474.9} +{"session_id":"sess-615fb440c12f","input_length":1154,"output_length":247,"hash_ids":[1408091,1408092,1408093],"delay":7476.9} +{"session_id":"sess-615fb440c12f","input_length":540,"output_length":44,"hash_ids":[1408094,1408095],"delay":390.6} +{"session_id":"sess-615fb440c12f","input_length":407,"output_length":199,"hash_ids":[1408096],"delay":1205.3} +{"session_id":"sess-615fb440c12f","input_length":1915,"output_length":204,"hash_ids":[1408097,1408098,1408099,1408100],"delay":163.1} +{"session_id":"sess-615fb440c12f","input_length":262,"output_length":278,"hash_ids":[1408101],"delay":533.7} +{"session_id":"sess-615fb440c12f","input_length":484,"output_length":225,"hash_ids":[1408102],"delay":82.3} +{"session_id":"sess-d04eb02179e7","input_length":27660,"output_length":210,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1412032,1412033,1412034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d04eb02179e7","input_length":1959,"output_length":492,"hash_ids":[1412035,1412036,1412037,1412038],"delay":211.9} +{"session_id":"sess-d04eb02179e7","input_length":251,"output_length":89,"hash_ids":[1412039],"delay":2550.6} +{"session_id":"sess-d04eb02179e7","input_length":664,"output_length":355,"hash_ids":[1412040,1412041],"delay":22905.5} +{"session_id":"sess-d04eb02179e7","input_length":871,"output_length":56,"hash_ids":[1412042,1412043],"delay":25689.6} +{"session_id":"sess-d04eb02179e7","input_length":1617,"output_length":161,"hash_ids":[1412044,1412045,1412046,1412047],"delay":804.7} +{"session_id":"sess-d04eb02179e7","input_length":1397,"output_length":265,"hash_ids":[1412048,1412049,1412050],"delay":426.8} +{"session_id":"sess-d04eb02179e7","input_length":651,"output_length":665,"hash_ids":[1412051,1412052],"delay":3937.1} +{"session_id":"sess-d04eb02179e7","input_length":299,"output_length":1046,"hash_ids":[1412053],"delay":550.6} +{"session_id":"sess-d04eb02179e7","input_length":155,"output_length":138,"hash_ids":[1412054],"delay":2265.3} +{"session_id":"sess-d04eb02179e7","input_length":889,"output_length":170,"hash_ids":[1412055,1412056],"delay":13426.6} +{"session_id":"sess-d04eb02179e7","input_length":354,"output_length":270,"hash_ids":[1412057],"delay":1537.1} +{"session_id":"sess-d04eb02179e7","input_length":682,"output_length":122,"hash_ids":[1412058,1412059],"delay":767.8} +{"session_id":"sess-d04eb02179e7","input_length":929,"output_length":208,"hash_ids":[1412060,1412061],"delay":18281.6} +{"session_id":"sess-d04eb02179e7","input_length":364,"output_length":742,"hash_ids":[1412062],"delay":1999.4} +{"session_id":"sess-d04eb02179e7","input_length":1855,"output_length":181,"hash_ids":[1412063,1412064,1412065,1412066],"delay":10687.5} +{"session_id":"sess-d04eb02179e7","input_length":1127,"output_length":100,"hash_ids":[1412067,1412068,1412069],"delay":314.0} +{"session_id":"sess-d04eb02179e7","input_length":892,"output_length":43,"hash_ids":[1412070,1412071],"delay":455.5} +{"session_id":"sess-d04eb02179e7","input_length":574,"output_length":390,"hash_ids":[1412072,1412073],"delay":9086.7} +{"session_id":"sess-d04eb02179e7","input_length":760,"output_length":211,"hash_ids":[1412074,1412075],"delay":13885.8} +{"session_id":"sess-d04eb02179e7","input_length":637,"output_length":36,"hash_ids":[1412076,1412077],"delay":940.0} +{"session_id":"sess-d04eb02179e7","input_length":2708,"output_length":97,"hash_ids":[1412078,1412079,1412080,1412081,1412082,1412083],"delay":760.9} +{"session_id":"sess-d04eb02179e7","input_length":2229,"output_length":63,"hash_ids":[1412084,1412085,1412086,1412087,1412088],"delay":77.7} +{"session_id":"sess-d04eb02179e7","input_length":822,"output_length":185,"hash_ids":[1412089,1412090],"delay":443.5} +{"session_id":"sess-d04eb02179e7","input_length":278,"output_length":153,"hash_ids":[1412091],"delay":261.1} +{"session_id":"sess-d04eb02179e7","input_length":435,"output_length":165,"hash_ids":[1412092],"delay":19619.4} +{"session_id":"sess-d04eb02179e7","input_length":1213,"output_length":153,"hash_ids":[1412093,1412094,1412095],"delay":2612.1} +{"session_id":"sess-d04eb02179e7","input_length":2309,"output_length":176,"hash_ids":[1412096,1412097,1412098,1412099,1412100],"delay":2558.4} +{"session_id":"sess-d04eb02179e7","input_length":661,"output_length":48,"hash_ids":[1412101,1412102],"delay":1041.8} +{"session_id":"sess-d04eb02179e7","input_length":2698,"output_length":185,"hash_ids":[1412103,1412104,1412105,1412106,1412107,1412108],"delay":354.4} +{"session_id":"sess-440dfacfc45b","input_length":31034,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1416032,1416033,1416034,1416035,1416036,1416037,1416038,1416039,1416040],"timestamp":0.0,"group_id":2} +{"session_id":"sess-440dfacfc45b","input_length":557,"output_length":156,"hash_ids":[1416041,1416042],"delay":870.9} +{"session_id":"sess-440dfacfc45b","input_length":1772,"output_length":42,"hash_ids":[1416043,1416044,1416045,1416046],"delay":8244.0} +{"session_id":"sess-440dfacfc45b","input_length":1191,"output_length":500,"hash_ids":[1416047,1416048,1416049],"delay":1777.4} +{"session_id":"sess-440dfacfc45b","input_length":1366,"output_length":427,"hash_ids":[1416050,1416051,1416052],"delay":389.4} +{"session_id":"sess-440dfacfc45b","input_length":736,"output_length":179,"hash_ids":[1416053,1416054],"delay":348.9} +{"session_id":"sess-440dfacfc45b","input_length":1314,"output_length":80,"hash_ids":[1416055,1416056,1416057],"delay":24457.0} +{"session_id":"sess-440dfacfc45b","input_length":1142,"output_length":741,"hash_ids":[1416058,1416059,1416060],"delay":471.3} +{"session_id":"sess-440dfacfc45b","input_length":960,"output_length":189,"hash_ids":[1416061,1416062],"delay":752.8} +{"session_id":"sess-440dfacfc45b","input_length":694,"output_length":217,"hash_ids":[1416063,1416064],"delay":12490.6} +{"session_id":"sess-440dfacfc45b","input_length":1424,"output_length":75,"hash_ids":[1416065,1416066,1416067],"delay":901.3} +{"session_id":"sess-440dfacfc45b","input_length":178,"output_length":630,"hash_ids":[1416068],"delay":470.3} +{"session_id":"sess-440dfacfc45b","input_length":1201,"output_length":184,"hash_ids":[1416069,1416070,1416071],"delay":546.5} +{"session_id":"sess-440dfacfc45b","input_length":278,"output_length":178,"hash_ids":[1416072],"delay":121.0} +{"session_id":"sess-440dfacfc45b","input_length":1456,"output_length":57,"hash_ids":[1416073,1416074,1416075],"delay":5132.7} +{"session_id":"sess-440dfacfc45b","input_length":1327,"output_length":279,"hash_ids":[1416076,1416077,1416078],"delay":307.3} +{"session_id":"sess-440dfacfc45b","input_length":1320,"output_length":176,"hash_ids":[1416079,1416080,1416081],"delay":217.4} +{"session_id":"sess-440dfacfc45b","input_length":1114,"output_length":169,"hash_ids":[1416082,1416083,1416084],"delay":506.7} +{"session_id":"sess-440dfacfc45b","input_length":253,"output_length":463,"hash_ids":[1416085],"delay":16993.5} +{"session_id":"sess-41503476e8c8","input_length":30013,"output_length":110,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1420032,1420033,1420034,1420035,1420036,1420037,1420038],"timestamp":0.0,"group_id":6} +{"session_id":"sess-41503476e8c8","input_length":281,"output_length":174,"hash_ids":[1420039],"delay":1383.9} +{"session_id":"sess-41503476e8c8","input_length":321,"output_length":660,"hash_ids":[1420040],"delay":1686.1} +{"session_id":"sess-41503476e8c8","input_length":83,"output_length":299,"hash_ids":[1420041],"delay":1125.5} +{"session_id":"sess-41503476e8c8","input_length":1333,"output_length":209,"hash_ids":[1420042,1420043,1420044],"delay":67015.7} +{"session_id":"sess-41503476e8c8","input_length":274,"output_length":112,"hash_ids":[1420045],"delay":370.5} +{"session_id":"sess-41503476e8c8","input_length":298,"output_length":207,"hash_ids":[1420046],"delay":859.0} +{"session_id":"sess-41503476e8c8","input_length":969,"output_length":288,"hash_ids":[1420047,1420048],"delay":1053.2} +{"session_id":"sess-41503476e8c8","input_length":440,"output_length":142,"hash_ids":[1420049],"delay":2403.1} +{"session_id":"sess-41503476e8c8","input_length":1472,"output_length":1315,"hash_ids":[1420050,1420051,1420052],"delay":42424.8} +{"session_id":"sess-41503476e8c8","input_length":2584,"output_length":411,"hash_ids":[1420053,1420054,1420055,1420056,1420057,1420058],"delay":622.1} +{"session_id":"sess-41503476e8c8","input_length":615,"output_length":245,"hash_ids":[1420059,1420060],"delay":523.4} +{"session_id":"sess-41503476e8c8","input_length":2313,"output_length":425,"hash_ids":[1420061,1420062,1420063,1420064,1420065],"delay":5347.7} +{"session_id":"sess-41503476e8c8","input_length":1813,"output_length":63,"hash_ids":[1420066,1420067,1420068,1420069],"delay":2877.7} +{"session_id":"sess-41503476e8c8","input_length":502,"output_length":69,"hash_ids":[1420070],"delay":485.3} +{"session_id":"sess-41503476e8c8","input_length":523,"output_length":141,"hash_ids":[1420071,1420072],"delay":450.0} +{"session_id":"sess-41503476e8c8","input_length":662,"output_length":30,"hash_ids":[1420073,1420074],"delay":599.1} +{"session_id":"sess-41503476e8c8","input_length":1321,"output_length":243,"hash_ids":[1420075,1420076,1420077],"delay":709.2} +{"session_id":"sess-41503476e8c8","input_length":168,"output_length":687,"hash_ids":[1420078],"delay":652.0} +{"session_id":"sess-41503476e8c8","input_length":126,"output_length":354,"hash_ids":[1420079],"delay":2632.6} +{"session_id":"sess-41503476e8c8","input_length":1006,"output_length":853,"hash_ids":[1420080,1420081],"delay":190.0} +{"session_id":"sess-41503476e8c8","input_length":566,"output_length":133,"hash_ids":[1420082,1420083],"delay":2172.9} +{"session_id":"sess-41503476e8c8","input_length":680,"output_length":152,"hash_ids":[1420084,1420085],"delay":296.1} +{"session_id":"sess-41503476e8c8","input_length":364,"output_length":92,"hash_ids":[1420086],"delay":2683.7} +{"session_id":"sess-41503476e8c8","input_length":1185,"output_length":118,"hash_ids":[1420087,1420088,1420089],"delay":1346.9} +{"session_id":"sess-41503476e8c8","input_length":1133,"output_length":92,"hash_ids":[1420090,1420091,1420092],"delay":531.5} +{"session_id":"sess-41503476e8c8","input_length":383,"output_length":110,"hash_ids":[1420093],"delay":685.0} +{"session_id":"sess-41503476e8c8","input_length":735,"output_length":30,"hash_ids":[1420094,1420095],"delay":206.3} +{"session_id":"sess-41503476e8c8","input_length":1687,"output_length":65,"hash_ids":[1420096,1420097,1420098,1420099],"delay":1218.5} +{"session_id":"sess-41503476e8c8","input_length":1028,"output_length":335,"hash_ids":[1420100,1420101,1420102],"delay":313.1} +{"session_id":"sess-41503476e8c8","input_length":1714,"output_length":735,"hash_ids":[1420103,1420104,1420105,1420106],"delay":6012.4} +{"session_id":"sess-31e75a4f0769","input_length":30600,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1424032,1424033,1424034,1424035,1424036,1424037,1424038,1424039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-31e75a4f0769","input_length":733,"output_length":239,"hash_ids":[1424040,1424041],"delay":930.4} +{"session_id":"sess-31e75a4f0769","input_length":1092,"output_length":59,"hash_ids":[1424042,1424043,1424044],"delay":2580.8} +{"session_id":"sess-31e75a4f0769","input_length":1392,"output_length":138,"hash_ids":[1424045,1424046,1424047],"delay":11939.4} +{"session_id":"sess-abf6f47f67a1","input_length":26807,"output_length":397,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1428032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-abf6f47f67a1","input_length":1130,"output_length":332,"hash_ids":[1428033,1428034,1428035],"delay":715.7} +{"session_id":"sess-abf6f47f67a1","input_length":2630,"output_length":845,"hash_ids":[1428036,1428037,1428038,1428039,1428040,1428041],"delay":1066.5} +{"session_id":"sess-abf6f47f67a1","input_length":545,"output_length":57,"hash_ids":[1428042,1428043],"delay":4837.5} +{"session_id":"sess-abf6f47f67a1","input_length":1574,"output_length":85,"hash_ids":[1428044,1428045,1428046,1428047],"delay":490.7} +{"session_id":"sess-abf6f47f67a1","input_length":1067,"output_length":988,"hash_ids":[1428048,1428049,1428050],"delay":12215.2} +{"session_id":"sess-abf6f47f67a1","input_length":308,"output_length":256,"hash_ids":[1428051],"delay":55276.1} +{"session_id":"sess-abf6f47f67a1","input_length":1046,"output_length":110,"hash_ids":[1428052,1428053,1428054],"delay":7216.1} +{"session_id":"sess-abf6f47f67a1","input_length":1090,"output_length":32,"hash_ids":[1428055,1428056,1428057],"delay":4133.7} +{"session_id":"sess-abf6f47f67a1","input_length":731,"output_length":68,"hash_ids":[1428058,1428059],"delay":590.3} +{"session_id":"sess-abf6f47f67a1","input_length":761,"output_length":108,"hash_ids":[1428060,1428061],"delay":2461.0} +{"session_id":"sess-abf6f47f67a1","input_length":275,"output_length":94,"hash_ids":[1428062],"delay":9058.2} +{"session_id":"sess-abf6f47f67a1","input_length":1182,"output_length":70,"hash_ids":[1428063,1428064,1428065],"delay":2107.5} +{"session_id":"sess-abf6f47f67a1","input_length":613,"output_length":242,"hash_ids":[1428066,1428067],"delay":1442.7} +{"session_id":"sess-abf6f47f67a1","input_length":1086,"output_length":77,"hash_ids":[1428068,1428069,1428070],"delay":3510.7} +{"session_id":"sess-abf6f47f67a1","input_length":320,"output_length":198,"hash_ids":[1428071],"delay":1318.1} +{"session_id":"sess-abf6f47f67a1","input_length":374,"output_length":103,"hash_ids":[1428072],"delay":1747.7} +{"session_id":"sess-abf6f47f67a1","input_length":2774,"output_length":509,"hash_ids":[1428073,1428074,1428075,1428076,1428077,1428078],"delay":929.0} +{"session_id":"sess-abf6f47f67a1","input_length":2682,"output_length":87,"hash_ids":[1428079,1428080,1428081,1428082,1428083,1428084],"delay":1247.1} +{"session_id":"sess-abf6f47f67a1","input_length":2135,"output_length":48,"hash_ids":[1428085,1428086,1428087,1428088,1428089],"delay":12288.4} +{"session_id":"sess-abf6f47f67a1","input_length":2247,"output_length":114,"hash_ids":[1428090,1428091,1428092,1428093,1428094],"delay":1838.9} +{"session_id":"sess-abf6f47f67a1","input_length":1161,"output_length":146,"hash_ids":[1428095,1428096,1428097],"delay":139.1} +{"session_id":"sess-abf6f47f67a1","input_length":976,"output_length":127,"hash_ids":[1428098,1428099],"delay":190.7} +{"session_id":"sess-abf6f47f67a1","input_length":141,"output_length":462,"hash_ids":[1428100],"delay":1001.0} +{"session_id":"sess-abf6f47f67a1","input_length":112,"output_length":228,"hash_ids":[1428101],"delay":473.9} +{"session_id":"sess-abf6f47f67a1","input_length":913,"output_length":267,"hash_ids":[1428102,1428103],"delay":635.4} +{"session_id":"sess-abf6f47f67a1","input_length":939,"output_length":271,"hash_ids":[1428104,1428105],"delay":2055.6} +{"session_id":"sess-abf6f47f67a1","input_length":1060,"output_length":101,"hash_ids":[1428106,1428107,1428108],"delay":256.7} +{"session_id":"sess-abf6f47f67a1","input_length":1340,"output_length":30,"hash_ids":[1428109,1428110,1428111],"delay":1084.4} +{"session_id":"sess-abf6f47f67a1","input_length":200,"output_length":155,"hash_ids":[1428112],"delay":983.6} +{"session_id":"sess-3b7132798ed0","input_length":26567,"output_length":68,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851],"timestamp":0.0,"group_id":14} +{"session_id":"sess-3b7132798ed0","input_length":681,"output_length":130,"hash_ids":[1428113,1428114],"delay":6595.2} +{"session_id":"sess-3b7132798ed0","input_length":1434,"output_length":144,"hash_ids":[1428115,1428116,1428117],"delay":2298.3} +{"session_id":"sess-2b7dcb3e3589","input_length":33723,"output_length":696,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1436032,1436033,1436034,1436035,1436036,1436037,1436038,1436039,1436040,1436041,1436042,1436043,1436044,1436045],"timestamp":0.0,"group_id":1} +{"session_id":"sess-2b7dcb3e3589","input_length":2561,"output_length":30,"hash_ids":[1436046,1436047,1436048,1436049,1436050,1436051],"delay":498.1} +{"session_id":"sess-2b7dcb3e3589","input_length":611,"output_length":160,"hash_ids":[1436052,1436053],"delay":1103.3} +{"session_id":"sess-2b7dcb3e3589","input_length":500,"output_length":37,"hash_ids":[1436054],"delay":469.0} +{"session_id":"sess-2b7dcb3e3589","input_length":692,"output_length":503,"hash_ids":[1436055,1436056],"delay":1838.3} +{"session_id":"sess-2b7dcb3e3589","input_length":584,"output_length":731,"hash_ids":[1436057,1436058],"delay":989.4} +{"session_id":"sess-2b7dcb3e3589","input_length":853,"output_length":281,"hash_ids":[1436059,1436060],"delay":5917.2} +{"session_id":"sess-2b7dcb3e3589","input_length":542,"output_length":112,"hash_ids":[1436061,1436062],"delay":1299.5} +{"session_id":"sess-2b7dcb3e3589","input_length":86,"output_length":177,"hash_ids":[1436063],"delay":427.3} +{"session_id":"sess-2b7dcb3e3589","input_length":577,"output_length":51,"hash_ids":[1436064,1436065],"delay":35448.1} +{"session_id":"sess-2b7dcb3e3589","input_length":1222,"output_length":679,"hash_ids":[1436066,1436067,1436068],"delay":51587.1} +{"session_id":"sess-2b7dcb3e3589","input_length":534,"output_length":185,"hash_ids":[1436069,1436070],"delay":10078.5} +{"session_id":"sess-2b7dcb3e3589","input_length":926,"output_length":298,"hash_ids":[1436071,1436072],"delay":1572.3} +{"session_id":"sess-2b7dcb3e3589","input_length":1216,"output_length":269,"hash_ids":[1436073,1436074,1436075],"delay":523.2} +{"session_id":"sess-2b7dcb3e3589","input_length":557,"output_length":152,"hash_ids":[1436076,1436077],"delay":1328.2} +{"session_id":"sess-2b7dcb3e3589","input_length":609,"output_length":70,"hash_ids":[1436078,1436079],"delay":1418.8} +{"session_id":"sess-2b7dcb3e3589","input_length":2242,"output_length":480,"hash_ids":[1436080,1436081,1436082,1436083,1436084],"delay":427.2} +{"session_id":"sess-2b7dcb3e3589","input_length":322,"output_length":101,"hash_ids":[1436085],"delay":1056.0} +{"session_id":"sess-2b7dcb3e3589","input_length":204,"output_length":75,"hash_ids":[1436086],"delay":352.0} +{"session_id":"sess-2b7dcb3e3589","input_length":470,"output_length":558,"hash_ids":[1436087],"delay":1654.9} +{"session_id":"sess-2b7dcb3e3589","input_length":443,"output_length":106,"hash_ids":[1436088],"delay":1710.5} +{"session_id":"sess-2b7dcb3e3589","input_length":1250,"output_length":245,"hash_ids":[1436089,1436090,1436091],"delay":3627.1} +{"session_id":"sess-2b7dcb3e3589","input_length":2568,"output_length":172,"hash_ids":[1436092,1436093,1436094,1436095,1436096,1436097],"delay":325.0} +{"session_id":"sess-2b7dcb3e3589","input_length":196,"output_length":330,"hash_ids":[1436098],"delay":938.0} +{"session_id":"sess-2b7dcb3e3589","input_length":1086,"output_length":193,"hash_ids":[1436099,1436100,1436101],"delay":243.9} +{"session_id":"sess-2b7dcb3e3589","input_length":2771,"output_length":233,"hash_ids":[1436102,1436103,1436104,1436105,1436106,1436107],"delay":318.2} +{"session_id":"sess-2b7dcb3e3589","input_length":314,"output_length":132,"hash_ids":[1436108],"delay":18006.2} +{"session_id":"sess-cb1aef589ca9","input_length":30139,"output_length":500,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1440032,1440033,1440034,1440035,1440036,1440037,1440038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cb1aef589ca9","input_length":1678,"output_length":85,"hash_ids":[1440039,1440040,1440041,1440042],"delay":5884.4} +{"session_id":"sess-cb1aef589ca9","input_length":802,"output_length":284,"hash_ids":[1440043,1440044],"delay":1374.7} +{"session_id":"sess-cb1aef589ca9","input_length":468,"output_length":136,"hash_ids":[1440045],"delay":400.2} +{"session_id":"sess-cb1aef589ca9","input_length":427,"output_length":686,"hash_ids":[1440046],"delay":766.0} +{"session_id":"sess-cb1aef589ca9","input_length":1668,"output_length":480,"hash_ids":[1440047,1440048,1440049,1440050],"delay":18752.7} +{"session_id":"sess-cb1aef589ca9","input_length":949,"output_length":196,"hash_ids":[1440051,1440052],"delay":1694.2} +{"session_id":"sess-cb1aef589ca9","input_length":343,"output_length":123,"hash_ids":[1440053],"delay":1172.7} +{"session_id":"sess-cb1aef589ca9","input_length":1531,"output_length":110,"hash_ids":[1440054,1440055,1440056],"delay":19034.6} +{"session_id":"sess-cb1aef589ca9","input_length":1043,"output_length":92,"hash_ids":[1440057,1440058,1440059],"delay":3086.6} +{"session_id":"sess-cb1aef589ca9","input_length":2471,"output_length":366,"hash_ids":[1440060,1440061,1440062,1440063,1440064],"delay":838.5} +{"session_id":"sess-cb1aef589ca9","input_length":2112,"output_length":39,"hash_ids":[1440065,1440066,1440067,1440068,1440069],"delay":1951.2} +{"session_id":"sess-aabd87bb5849","input_length":27569,"output_length":475,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1444032,1444033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-aabd87bb5849","input_length":2648,"output_length":271,"hash_ids":[1444034,1444035,1444036,1444037,1444038,1444039],"delay":2226.8} +{"session_id":"sess-aabd87bb5849","input_length":230,"output_length":77,"hash_ids":[1444040],"delay":367.9} +{"session_id":"sess-32b3093f35ad","input_length":26475,"output_length":44,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-32b3093f35ad","input_length":847,"output_length":406,"hash_ids":[1444041,1444042],"delay":740.7} +{"session_id":"sess-32b3093f35ad","input_length":2794,"output_length":234,"hash_ids":[1444043,1444044,1444045,1444046,1444047,1444048],"delay":11679.6} +{"session_id":"sess-32b3093f35ad","input_length":1290,"output_length":154,"hash_ids":[1444049,1444050,1444051],"delay":12285.0} +{"session_id":"sess-32b3093f35ad","input_length":504,"output_length":458,"hash_ids":[1444052],"delay":1501.8} +{"session_id":"sess-32b3093f35ad","input_length":1828,"output_length":315,"hash_ids":[1444053,1444054,1444055,1444056],"delay":2558.5} +{"session_id":"sess-32b3093f35ad","input_length":1416,"output_length":729,"hash_ids":[1444057,1444058,1444059],"delay":318.8} +{"session_id":"sess-32b3093f35ad","input_length":2143,"output_length":145,"hash_ids":[1444060,1444061,1444062,1444063,1444064],"delay":1378.9} +{"session_id":"sess-32b3093f35ad","input_length":307,"output_length":606,"hash_ids":[1444065],"delay":12030.4} +{"session_id":"sess-32b3093f35ad","input_length":2935,"output_length":129,"hash_ids":[1444066,1444067,1444068,1444069,1444070,1444071],"delay":811.3} +{"session_id":"sess-32b3093f35ad","input_length":1040,"output_length":144,"hash_ids":[1444072,1444073,1444074],"delay":12207.4} +{"session_id":"sess-32b3093f35ad","input_length":2407,"output_length":287,"hash_ids":[1444075,1444076,1444077,1444078,1444079],"delay":18201.5} +{"session_id":"sess-32b3093f35ad","input_length":1225,"output_length":83,"hash_ids":[1444080,1444081,1444082],"delay":1557.9} +{"session_id":"sess-32b3093f35ad","input_length":182,"output_length":119,"hash_ids":[1444083],"delay":578.6} +{"session_id":"sess-32b3093f35ad","input_length":650,"output_length":78,"hash_ids":[1444084,1444085],"delay":580.0} +{"session_id":"sess-32b3093f35ad","input_length":592,"output_length":82,"hash_ids":[1444086,1444087],"delay":13006.9} +{"session_id":"sess-32b3093f35ad","input_length":298,"output_length":69,"hash_ids":[1444088],"delay":977.6} +{"session_id":"sess-32b3093f35ad","input_length":808,"output_length":265,"hash_ids":[1444089,1444090],"delay":5661.3} +{"session_id":"sess-32b3093f35ad","input_length":165,"output_length":153,"hash_ids":[1444091],"delay":1403.9} +{"session_id":"sess-32b3093f35ad","input_length":1715,"output_length":171,"hash_ids":[1444092,1444093,1444094,1444095],"delay":373.4} +{"session_id":"sess-32b3093f35ad","input_length":2933,"output_length":905,"hash_ids":[1444096,1444097,1444098,1444099,1444100,1444101],"delay":1758.5} +{"session_id":"sess-32b3093f35ad","input_length":607,"output_length":397,"hash_ids":[1444102,1444103],"delay":885.2} +{"session_id":"sess-32b3093f35ad","input_length":421,"output_length":303,"hash_ids":[1444104],"delay":33727.2} +{"session_id":"sess-223193669aad","input_length":28261,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,1452032,1452033,1452034,1452035],"timestamp":0.0,"group_id":46} +{"session_id":"sess-223193669aad","input_length":2576,"output_length":79,"hash_ids":[1452036,1452037,1452038,1452039,1452040,1452041],"delay":17196.7} +{"session_id":"sess-223193669aad","input_length":455,"output_length":242,"hash_ids":[1452042],"delay":15726.8} +{"session_id":"sess-223193669aad","input_length":175,"output_length":94,"hash_ids":[1452043],"delay":1142.2} +{"session_id":"sess-223193669aad","input_length":534,"output_length":41,"hash_ids":[1452044,1452045],"delay":2977.0} +{"session_id":"sess-223193669aad","input_length":1420,"output_length":105,"hash_ids":[1452046,1452047,1452048],"delay":2017.5} +{"session_id":"sess-223193669aad","input_length":1164,"output_length":199,"hash_ids":[1452049,1452050,1452051],"delay":248.3} +{"session_id":"sess-223193669aad","input_length":855,"output_length":148,"hash_ids":[1452052,1452053],"delay":1591.2} +{"session_id":"sess-223193669aad","input_length":183,"output_length":115,"hash_ids":[1452054],"delay":1194.7} +{"session_id":"sess-223193669aad","input_length":86,"output_length":594,"hash_ids":[1452055],"delay":1579.6} +{"session_id":"sess-223193669aad","input_length":274,"output_length":146,"hash_ids":[1452056],"delay":399.7} +{"session_id":"sess-223193669aad","input_length":1079,"output_length":39,"hash_ids":[1452057,1452058,1452059],"delay":1462.3} +{"session_id":"sess-223193669aad","input_length":999,"output_length":35,"hash_ids":[1452060,1452061],"delay":16573.4} +{"session_id":"sess-223193669aad","input_length":1503,"output_length":43,"hash_ids":[1452062,1452063,1452064],"delay":12892.6} +{"session_id":"sess-223193669aad","input_length":1611,"output_length":767,"hash_ids":[1452065,1452066,1452067,1452068],"delay":1085.6} +{"session_id":"sess-223193669aad","input_length":2861,"output_length":185,"hash_ids":[1452069,1452070,1452071,1452072,1452073,1452074],"delay":1322.6} +{"session_id":"sess-223193669aad","input_length":532,"output_length":265,"hash_ids":[1452075,1452076],"delay":191.3} +{"session_id":"sess-223193669aad","input_length":1372,"output_length":542,"hash_ids":[1452077,1452078,1452079],"delay":10273.6} +{"session_id":"sess-223193669aad","input_length":793,"output_length":155,"hash_ids":[1452080,1452081],"delay":1030.1} +{"session_id":"sess-223193669aad","input_length":2192,"output_length":44,"hash_ids":[1452082,1452083,1452084,1452085,1452086],"delay":12038.2} +{"session_id":"sess-223193669aad","input_length":800,"output_length":157,"hash_ids":[1452087,1452088],"delay":1649.9} +{"session_id":"sess-223193669aad","input_length":486,"output_length":43,"hash_ids":[1452089],"delay":318.9} +{"session_id":"sess-223193669aad","input_length":611,"output_length":479,"hash_ids":[1452090,1452091],"delay":683.3} +{"session_id":"sess-223193669aad","input_length":1300,"output_length":142,"hash_ids":[1452092,1452093,1452094],"delay":840.5} +{"session_id":"sess-223193669aad","input_length":2588,"output_length":40,"hash_ids":[1452095,1452096,1452097,1452098,1452099,1452100],"delay":2153.5} +{"session_id":"sess-223193669aad","input_length":2140,"output_length":151,"hash_ids":[1452101,1452102,1452103,1452104,1452105],"delay":2509.3} +{"session_id":"sess-223193669aad","input_length":389,"output_length":185,"hash_ids":[1452106],"delay":6762.1} +{"session_id":"sess-223193669aad","input_length":1479,"output_length":130,"hash_ids":[1452107,1452108,1452109],"delay":222.9} +{"session_id":"sess-223193669aad","input_length":394,"output_length":307,"hash_ids":[1452110],"delay":87.6} +{"session_id":"sess-896889d1e032","input_length":30014,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,1456032,1456033,1456034,1456035,1456036,1456037,1456038],"timestamp":0.0,"group_id":16} +{"session_id":"sess-896889d1e032","input_length":644,"output_length":121,"hash_ids":[1456039,1456040],"delay":3675.7} +{"session_id":"sess-896889d1e032","input_length":436,"output_length":184,"hash_ids":[1456041],"delay":1044.3} +{"session_id":"sess-896889d1e032","input_length":1026,"output_length":30,"hash_ids":[1456042,1456043,1456044],"delay":1105.3} +{"session_id":"sess-896889d1e032","input_length":652,"output_length":99,"hash_ids":[1456045,1456046],"delay":4015.9} +{"session_id":"sess-896889d1e032","input_length":2413,"output_length":110,"hash_ids":[1456047,1456048,1456049,1456050,1456051],"delay":15908.8} +{"session_id":"sess-896889d1e032","input_length":732,"output_length":734,"hash_ids":[1456052,1456053],"delay":1644.7} +{"session_id":"sess-896889d1e032","input_length":830,"output_length":30,"hash_ids":[1456054,1456055],"delay":1825.1} +{"session_id":"sess-896889d1e032","input_length":763,"output_length":153,"hash_ids":[1456056,1456057],"delay":2491.7} +{"session_id":"sess-896889d1e032","input_length":138,"output_length":308,"hash_ids":[1456058],"delay":3546.1} +{"session_id":"sess-896889d1e032","input_length":1385,"output_length":318,"hash_ids":[1456059,1456060,1456061],"delay":21766.7} +{"session_id":"sess-896889d1e032","input_length":483,"output_length":269,"hash_ids":[1456062],"delay":816.7} +{"session_id":"sess-896889d1e032","input_length":2239,"output_length":91,"hash_ids":[1456063,1456064,1456065,1456066,1456067],"delay":709.6} +{"session_id":"sess-896889d1e032","input_length":958,"output_length":235,"hash_ids":[1456068,1456069],"delay":1792.4} +{"session_id":"sess-896889d1e032","input_length":777,"output_length":116,"hash_ids":[1456070,1456071],"delay":2589.5} +{"session_id":"sess-896889d1e032","input_length":1024,"output_length":276,"hash_ids":[1456072,1456073],"delay":522.1} +{"session_id":"sess-896889d1e032","input_length":1430,"output_length":103,"hash_ids":[1456074,1456075,1456076],"delay":14449.4} +{"session_id":"sess-896889d1e032","input_length":688,"output_length":75,"hash_ids":[1456077,1456078],"delay":360.3} +{"session_id":"sess-ecee65af2c3f","input_length":28883,"output_length":66,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,1460032,1460033,1460034,1460035,1460036],"timestamp":0.0,"group_id":19} +{"session_id":"sess-ecee65af2c3f","input_length":723,"output_length":235,"hash_ids":[1460037,1460038],"delay":1185.5} +{"session_id":"sess-ecee65af2c3f","input_length":1129,"output_length":127,"hash_ids":[1460039,1460040,1460041],"delay":2512.6} +{"session_id":"sess-ecee65af2c3f","input_length":126,"output_length":66,"hash_ids":[1460042],"delay":858.7} +{"session_id":"sess-ecee65af2c3f","input_length":2625,"output_length":530,"hash_ids":[1460043,1460044,1460045,1460046,1460047,1460048],"delay":3278.3} +{"session_id":"sess-ecee65af2c3f","input_length":924,"output_length":611,"hash_ids":[1460049,1460050],"delay":3598.6} +{"session_id":"sess-ecee65af2c3f","input_length":538,"output_length":276,"hash_ids":[1460051,1460052],"delay":2672.7} +{"session_id":"sess-ecee65af2c3f","input_length":114,"output_length":215,"hash_ids":[1460053],"delay":14267.0} +{"session_id":"sess-ecee65af2c3f","input_length":354,"output_length":110,"hash_ids":[1460054],"delay":163.8} +{"session_id":"sess-ecee65af2c3f","input_length":1112,"output_length":85,"hash_ids":[1460055,1460056,1460057],"delay":550.0} +{"session_id":"sess-ecee65af2c3f","input_length":770,"output_length":191,"hash_ids":[1460058,1460059],"delay":715.3} +{"session_id":"sess-ecee65af2c3f","input_length":528,"output_length":357,"hash_ids":[1460060,1460061],"delay":12721.2} +{"session_id":"sess-ecee65af2c3f","input_length":1917,"output_length":61,"hash_ids":[1460062,1460063,1460064,1460065],"delay":768.8} +{"session_id":"sess-ecee65af2c3f","input_length":1352,"output_length":188,"hash_ids":[1460066,1460067,1460068],"delay":2929.0} +{"session_id":"sess-ecee65af2c3f","input_length":527,"output_length":516,"hash_ids":[1460069,1460070],"delay":2038.2} +{"session_id":"sess-ecee65af2c3f","input_length":1886,"output_length":249,"hash_ids":[1460071,1460072,1460073,1460074],"delay":1316.6} +{"session_id":"sess-ecee65af2c3f","input_length":353,"output_length":203,"hash_ids":[1460075],"delay":841.3} +{"session_id":"sess-ecee65af2c3f","input_length":691,"output_length":533,"hash_ids":[1460076,1460077],"delay":9750.5} +{"session_id":"sess-ecee65af2c3f","input_length":2115,"output_length":243,"hash_ids":[1460078,1460079,1460080,1460081,1460082],"delay":1419.8} +{"session_id":"sess-ecee65af2c3f","input_length":309,"output_length":52,"hash_ids":[1460083],"delay":835.8} +{"session_id":"sess-ecee65af2c3f","input_length":604,"output_length":898,"hash_ids":[1460084,1460085],"delay":6915.7} +{"session_id":"sess-ecee65af2c3f","input_length":1465,"output_length":69,"hash_ids":[1460086,1460087,1460088],"delay":9727.1} +{"session_id":"sess-ecee65af2c3f","input_length":98,"output_length":494,"hash_ids":[1460089],"delay":1040.3} +{"session_id":"sess-09f7f76c7388","input_length":27664,"output_length":919,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1464032,1464033,1464034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-09f7f76c7388","input_length":2020,"output_length":166,"hash_ids":[1464035,1464036,1464037,1464038],"delay":1258.0} +{"session_id":"sess-09f7f76c7388","input_length":2191,"output_length":992,"hash_ids":[1464039,1464040,1464041,1464042,1464043],"delay":502.1} +{"session_id":"sess-09f7f76c7388","input_length":1638,"output_length":161,"hash_ids":[1464044,1464045,1464046,1464047],"delay":2686.0} +{"session_id":"sess-09f7f76c7388","input_length":2114,"output_length":149,"hash_ids":[1464048,1464049,1464050,1464051,1464052],"delay":1285.9} +{"session_id":"sess-09f7f76c7388","input_length":842,"output_length":31,"hash_ids":[1464053,1464054],"delay":38271.0} +{"session_id":"sess-09f7f76c7388","input_length":888,"output_length":229,"hash_ids":[1464055,1464056],"delay":17770.4} +{"session_id":"sess-09f7f76c7388","input_length":2750,"output_length":274,"hash_ids":[1464057,1464058,1464059,1464060,1464061,1464062],"delay":118.1} +{"session_id":"sess-09f7f76c7388","input_length":2561,"output_length":551,"hash_ids":[1464063,1464064,1464065,1464066,1464067,1464068],"delay":234.4} +{"session_id":"sess-09f7f76c7388","input_length":525,"output_length":262,"hash_ids":[1464069,1464070],"delay":654.2} +{"session_id":"sess-09f7f76c7388","input_length":1181,"output_length":376,"hash_ids":[1464071,1464072,1464073],"delay":432.1} +{"session_id":"sess-09f7f76c7388","input_length":115,"output_length":86,"hash_ids":[1464074],"delay":667.2} +{"session_id":"sess-09f7f76c7388","input_length":831,"output_length":819,"hash_ids":[1464075,1464076],"delay":396.1} +{"session_id":"sess-09f7f76c7388","input_length":1488,"output_length":183,"hash_ids":[1464077,1464078,1464079],"delay":741.4} +{"session_id":"sess-09f7f76c7388","input_length":1471,"output_length":555,"hash_ids":[1464080,1464081,1464082],"delay":23441.3} +{"session_id":"sess-09f7f76c7388","input_length":240,"output_length":104,"hash_ids":[1464083],"delay":1532.3} +{"session_id":"sess-09f7f76c7388","input_length":2759,"output_length":260,"hash_ids":[1464084,1464085,1464086,1464087,1464088,1464089],"delay":9551.2} +{"session_id":"sess-09f7f76c7388","input_length":300,"output_length":409,"hash_ids":[1464090],"delay":471.8} +{"session_id":"sess-09f7f76c7388","input_length":189,"output_length":194,"hash_ids":[1464091],"delay":3124.6} +{"session_id":"sess-09f7f76c7388","input_length":491,"output_length":57,"hash_ids":[1464092],"delay":515.8} +{"session_id":"sess-09f7f76c7388","input_length":828,"output_length":840,"hash_ids":[1464093,1464094],"delay":285.8} +{"session_id":"sess-09f7f76c7388","input_length":2483,"output_length":76,"hash_ids":[1464095,1464096,1464097,1464098,1464099],"delay":15522.7} +{"session_id":"sess-09f7f76c7388","input_length":1057,"output_length":37,"hash_ids":[1464100,1464101,1464102],"delay":973.8} +{"session_id":"sess-09f7f76c7388","input_length":594,"output_length":207,"hash_ids":[1464103,1464104],"delay":5138.7} +{"session_id":"sess-bea539b62e26","input_length":26193,"output_length":246,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051],"timestamp":0.0,"group_id":5} +{"session_id":"sess-bea539b62e26","input_length":699,"output_length":160,"hash_ids":[1464105,1464106],"delay":866.9} +{"session_id":"sess-bea539b62e26","input_length":536,"output_length":598,"hash_ids":[1464107,1464108],"delay":3396.2} +{"session_id":"sess-bea539b62e26","input_length":2154,"output_length":146,"hash_ids":[1464109,1464110,1464111,1464112,1464113],"delay":3571.0} +{"session_id":"sess-bea539b62e26","input_length":1641,"output_length":141,"hash_ids":[1464114,1464115,1464116,1464117],"delay":3386.4} +{"session_id":"sess-bea539b62e26","input_length":95,"output_length":205,"hash_ids":[1464118],"delay":816.1} +{"session_id":"sess-bea539b62e26","input_length":326,"output_length":112,"hash_ids":[1464119],"delay":3936.6} +{"session_id":"sess-bea539b62e26","input_length":634,"output_length":147,"hash_ids":[1464120,1464121],"delay":445.8} +{"session_id":"sess-bea539b62e26","input_length":652,"output_length":56,"hash_ids":[1464122,1464123],"delay":5034.4} +{"session_id":"sess-bea539b62e26","input_length":1158,"output_length":64,"hash_ids":[1464124,1464125,1464126],"delay":315.6} +{"session_id":"sess-bea539b62e26","input_length":2797,"output_length":131,"hash_ids":[1464127,1464128,1464129,1464130,1464131,1464132],"delay":18048.0} +{"session_id":"sess-bea539b62e26","input_length":1558,"output_length":355,"hash_ids":[1464133,1464134,1464135,1464136],"delay":493.6} +{"session_id":"sess-bea539b62e26","input_length":162,"output_length":187,"hash_ids":[1464137],"delay":39717.5} +{"session_id":"sess-bea539b62e26","input_length":1478,"output_length":162,"hash_ids":[1464138,1464139,1464140],"delay":758.0} +{"session_id":"sess-bea539b62e26","input_length":206,"output_length":102,"hash_ids":[1464141],"delay":582.4} +{"session_id":"sess-bea539b62e26","input_length":2953,"output_length":187,"hash_ids":[1464142,1464143,1464144,1464145,1464146,1464147],"delay":912.8} +{"session_id":"sess-bea539b62e26","input_length":426,"output_length":78,"hash_ids":[1464148],"delay":147.0} +{"session_id":"sess-bea539b62e26","input_length":1187,"output_length":43,"hash_ids":[1464149,1464150,1464151],"delay":701.4} +{"session_id":"sess-bea539b62e26","input_length":514,"output_length":140,"hash_ids":[1464152,1464153],"delay":834.0} +{"session_id":"sess-bea539b62e26","input_length":277,"output_length":165,"hash_ids":[1464154],"delay":946.9} +{"session_id":"sess-bea539b62e26","input_length":466,"output_length":296,"hash_ids":[1464155],"delay":617.3} +{"session_id":"sess-bea539b62e26","input_length":373,"output_length":62,"hash_ids":[1464156],"delay":1021.4} +{"session_id":"sess-bea539b62e26","input_length":412,"output_length":137,"hash_ids":[1464157],"delay":662.2} +{"session_id":"sess-bea539b62e26","input_length":801,"output_length":143,"hash_ids":[1464158,1464159],"delay":71.1} +{"session_id":"sess-bea539b62e26","input_length":2071,"output_length":140,"hash_ids":[1464160,1464161,1464162,1464163,1464164],"delay":246.7} +{"session_id":"sess-bea539b62e26","input_length":1954,"output_length":314,"hash_ids":[1464165,1464166,1464167,1464168],"delay":1890.0} +{"session_id":"sess-bea539b62e26","input_length":1098,"output_length":100,"hash_ids":[1464169,1464170,1464171],"delay":173.1} +{"session_id":"sess-bea539b62e26","input_length":852,"output_length":282,"hash_ids":[1464172,1464173],"delay":1236.1} +{"session_id":"sess-bea539b62e26","input_length":1511,"output_length":321,"hash_ids":[1464174,1464175,1464176],"delay":449.8} +{"session_id":"sess-bea539b62e26","input_length":570,"output_length":922,"hash_ids":[1464177,1464178],"delay":591.3} +{"session_id":"sess-bea539b62e26","input_length":1530,"output_length":694,"hash_ids":[1464179,1464180,1464181],"delay":2277.6} +{"session_id":"sess-bea539b62e26","input_length":517,"output_length":833,"hash_ids":[1464182,1464183],"delay":1144.6} +{"session_id":"sess-e766a41cd3c9","input_length":29394,"output_length":212,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1472032,1472033,1472034,1472035,1472036,1472037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e766a41cd3c9","input_length":686,"output_length":476,"hash_ids":[1472038,1472039],"delay":559.9} +{"session_id":"sess-e766a41cd3c9","input_length":888,"output_length":190,"hash_ids":[1472040,1472041],"delay":26153.8} +{"session_id":"sess-e766a41cd3c9","input_length":2443,"output_length":252,"hash_ids":[1472042,1472043,1472044,1472045,1472046],"delay":1861.4} +{"session_id":"sess-e766a41cd3c9","input_length":1188,"output_length":134,"hash_ids":[1472047,1472048,1472049],"delay":760.1} +{"session_id":"sess-e766a41cd3c9","input_length":890,"output_length":557,"hash_ids":[1472050,1472051],"delay":3984.4} +{"session_id":"sess-e766a41cd3c9","input_length":1293,"output_length":284,"hash_ids":[1472052,1472053,1472054],"delay":16632.1} +{"session_id":"sess-e766a41cd3c9","input_length":1799,"output_length":71,"hash_ids":[1472055,1472056,1472057,1472058],"delay":1310.3} +{"session_id":"sess-e766a41cd3c9","input_length":356,"output_length":417,"hash_ids":[1472059],"delay":143.5} +{"session_id":"sess-e766a41cd3c9","input_length":996,"output_length":144,"hash_ids":[1472060,1472061],"delay":15785.8} +{"session_id":"sess-e766a41cd3c9","input_length":2803,"output_length":135,"hash_ids":[1472062,1472063,1472064,1472065,1472066,1472067],"delay":872.9} +{"session_id":"sess-e766a41cd3c9","input_length":673,"output_length":104,"hash_ids":[1472068,1472069],"delay":6203.0} +{"session_id":"sess-e766a41cd3c9","input_length":970,"output_length":148,"hash_ids":[1472070,1472071],"delay":3842.2} +{"session_id":"sess-e766a41cd3c9","input_length":2250,"output_length":196,"hash_ids":[1472072,1472073,1472074,1472075,1472076],"delay":256.4} +{"session_id":"sess-e766a41cd3c9","input_length":256,"output_length":911,"hash_ids":[1472077],"delay":837.1} +{"session_id":"sess-e766a41cd3c9","input_length":457,"output_length":37,"hash_ids":[1472078],"delay":270.5} +{"session_id":"sess-e766a41cd3c9","input_length":273,"output_length":115,"hash_ids":[1472079],"delay":4329.2} +{"session_id":"sess-e766a41cd3c9","input_length":1018,"output_length":99,"hash_ids":[1472080,1472081],"delay":897.9} +{"session_id":"sess-e766a41cd3c9","input_length":353,"output_length":422,"hash_ids":[1472082],"delay":2302.5} +{"session_id":"sess-e766a41cd3c9","input_length":1849,"output_length":49,"hash_ids":[1472083,1472084,1472085,1472086],"delay":5306.1} +{"session_id":"sess-e766a41cd3c9","input_length":1315,"output_length":294,"hash_ids":[1472087,1472088,1472089],"delay":558.6} +{"session_id":"sess-eb634ea6453d","input_length":27016,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1476032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-eb634ea6453d","input_length":2397,"output_length":82,"hash_ids":[1476033,1476034,1476035,1476036,1476037],"delay":3478.4} +{"session_id":"sess-eb634ea6453d","input_length":534,"output_length":119,"hash_ids":[1476038,1476039],"delay":4969.8} +{"session_id":"sess-eb634ea6453d","input_length":2967,"output_length":185,"hash_ids":[1476040,1476041,1476042,1476043,1476044,1476045],"delay":18086.7} +{"session_id":"sess-eb634ea6453d","input_length":397,"output_length":509,"hash_ids":[1476046],"delay":1161.2} +{"session_id":"sess-eb634ea6453d","input_length":614,"output_length":56,"hash_ids":[1476047,1476048],"delay":10419.9} +{"session_id":"sess-eb634ea6453d","input_length":203,"output_length":371,"hash_ids":[1476049],"delay":7256.2} +{"session_id":"sess-eb634ea6453d","input_length":1688,"output_length":458,"hash_ids":[1476050,1476051,1476052,1476053],"delay":48251.7} +{"session_id":"sess-eb634ea6453d","input_length":242,"output_length":115,"hash_ids":[1476054],"delay":4190.3} +{"session_id":"sess-eb634ea6453d","input_length":1795,"output_length":182,"hash_ids":[1476055,1476056,1476057,1476058],"delay":756.3} +{"session_id":"sess-eb634ea6453d","input_length":608,"output_length":251,"hash_ids":[1476059,1476060],"delay":422.4} +{"session_id":"sess-eb634ea6453d","input_length":120,"output_length":206,"hash_ids":[1476061],"delay":1871.3} +{"session_id":"sess-eb634ea6453d","input_length":1915,"output_length":268,"hash_ids":[1476062,1476063,1476064,1476065],"delay":893.8} +{"session_id":"sess-eb634ea6453d","input_length":837,"output_length":193,"hash_ids":[1476066,1476067],"delay":8041.4} +{"session_id":"sess-eb634ea6453d","input_length":1973,"output_length":56,"hash_ids":[1476068,1476069,1476070,1476071],"delay":1933.5} +{"session_id":"sess-eb634ea6453d","input_length":704,"output_length":322,"hash_ids":[1476072,1476073],"delay":2733.1} +{"session_id":"sess-eb634ea6453d","input_length":238,"output_length":68,"hash_ids":[1476074],"delay":1449.2} +{"session_id":"sess-eb634ea6453d","input_length":644,"output_length":197,"hash_ids":[1476075,1476076],"delay":99.0} +{"session_id":"sess-eb634ea6453d","input_length":1454,"output_length":159,"hash_ids":[1476077,1476078,1476079],"delay":38985.3} +{"session_id":"sess-eb634ea6453d","input_length":460,"output_length":214,"hash_ids":[1476080],"delay":242.5} +{"session_id":"sess-eb634ea6453d","input_length":882,"output_length":31,"hash_ids":[1476081,1476082],"delay":849.5} +{"session_id":"sess-eb634ea6453d","input_length":792,"output_length":221,"hash_ids":[1476083,1476084],"delay":1713.6} +{"session_id":"sess-eb634ea6453d","input_length":628,"output_length":67,"hash_ids":[1476085,1476086],"delay":15152.8} +{"session_id":"sess-eb634ea6453d","input_length":640,"output_length":717,"hash_ids":[1476087,1476088],"delay":1523.0} +{"session_id":"sess-eb634ea6453d","input_length":2026,"output_length":285,"hash_ids":[1476089,1476090,1476091,1476092],"delay":1178.7} +{"session_id":"sess-eb634ea6453d","input_length":1165,"output_length":407,"hash_ids":[1476093,1476094,1476095],"delay":626.5} +{"session_id":"sess-eb634ea6453d","input_length":476,"output_length":168,"hash_ids":[1476096],"delay":499.6} +{"session_id":"sess-eb634ea6453d","input_length":570,"output_length":602,"hash_ids":[1476097,1476098],"delay":965.9} +{"session_id":"sess-eb634ea6453d","input_length":1328,"output_length":458,"hash_ids":[1476099,1476100,1476101],"delay":6381.1} +{"session_id":"sess-eb634ea6453d","input_length":239,"output_length":375,"hash_ids":[1476102],"delay":464.3} +{"session_id":"sess-eb634ea6453d","input_length":518,"output_length":398,"hash_ids":[1476103,1476104],"delay":675.7} +{"session_id":"sess-a6bd76847b31","input_length":26857,"output_length":208,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1480032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a6bd76847b31","input_length":252,"output_length":102,"hash_ids":[1480033],"delay":945.5} +{"session_id":"sess-a6bd76847b31","input_length":200,"output_length":330,"hash_ids":[1480034],"delay":20395.6} +{"session_id":"sess-a6bd76847b31","input_length":888,"output_length":223,"hash_ids":[1480035,1480036],"delay":12136.2} +{"session_id":"sess-a6bd76847b31","input_length":201,"output_length":121,"hash_ids":[1480037],"delay":239.5} +{"session_id":"sess-a6bd76847b31","input_length":386,"output_length":84,"hash_ids":[1480038],"delay":31374.0} +{"session_id":"sess-a6bd76847b31","input_length":827,"output_length":50,"hash_ids":[1480039,1480040],"delay":32086.0} +{"session_id":"sess-b20b62ecb4be","input_length":28839,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,1484032,1484033,1484034,1484035,1484036],"timestamp":0.0,"group_id":15} +{"session_id":"sess-b20b62ecb4be","input_length":698,"output_length":195,"hash_ids":[1484037,1484038],"delay":1137.3} +{"session_id":"sess-b20b62ecb4be","input_length":385,"output_length":469,"hash_ids":[1484039],"delay":11173.8} +{"session_id":"sess-b20b62ecb4be","input_length":351,"output_length":124,"hash_ids":[1484040],"delay":590.3} +{"session_id":"sess-b20b62ecb4be","input_length":702,"output_length":211,"hash_ids":[1484041,1484042],"delay":1883.2} +{"session_id":"sess-b20b62ecb4be","input_length":2878,"output_length":63,"hash_ids":[1484043,1484044,1484045,1484046,1484047,1484048],"delay":1333.5} +{"session_id":"sess-b20b62ecb4be","input_length":473,"output_length":150,"hash_ids":[1484049],"delay":815.4} +{"session_id":"sess-b20b62ecb4be","input_length":1320,"output_length":149,"hash_ids":[1484050,1484051,1484052],"delay":479.2} +{"session_id":"sess-b20b62ecb4be","input_length":546,"output_length":139,"hash_ids":[1484053,1484054],"delay":1017.4} +{"session_id":"sess-b20b62ecb4be","input_length":2284,"output_length":343,"hash_ids":[1484055,1484056,1484057,1484058,1484059],"delay":332.9} +{"session_id":"sess-b20b62ecb4be","input_length":695,"output_length":271,"hash_ids":[1484060,1484061],"delay":14695.6} +{"session_id":"sess-b20b62ecb4be","input_length":1526,"output_length":81,"hash_ids":[1484062,1484063,1484064],"delay":31339.5} +{"session_id":"sess-b20b62ecb4be","input_length":329,"output_length":1195,"hash_ids":[1484065],"delay":23136.7} +{"session_id":"sess-b20b62ecb4be","input_length":2582,"output_length":139,"hash_ids":[1484066,1484067,1484068,1484069,1484070,1484071],"delay":2584.6} +{"session_id":"sess-b20b62ecb4be","input_length":1306,"output_length":131,"hash_ids":[1484072,1484073,1484074],"delay":485.5} +{"session_id":"sess-b20b62ecb4be","input_length":1785,"output_length":710,"hash_ids":[1484075,1484076,1484077,1484078],"delay":786.9} +{"session_id":"sess-b20b62ecb4be","input_length":1119,"output_length":765,"hash_ids":[1484079,1484080,1484081],"delay":526.3} +{"session_id":"sess-b20b62ecb4be","input_length":861,"output_length":199,"hash_ids":[1484082,1484083],"delay":1005.6} +{"session_id":"sess-b20b62ecb4be","input_length":447,"output_length":54,"hash_ids":[1484084],"delay":486.2} +{"session_id":"sess-b20b62ecb4be","input_length":2493,"output_length":50,"hash_ids":[1484085,1484086,1484087,1484088,1484089],"delay":723.8} +{"session_id":"sess-b20b62ecb4be","input_length":563,"output_length":736,"hash_ids":[1484090,1484091],"delay":19165.6} +{"session_id":"sess-b20b62ecb4be","input_length":941,"output_length":375,"hash_ids":[1484092,1484093],"delay":9160.3} +{"session_id":"sess-b20b62ecb4be","input_length":954,"output_length":472,"hash_ids":[1484094,1484095],"delay":232.4} +{"session_id":"sess-193f757c20fb","input_length":35585,"output_length":1204,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1488032,1488033,1488034,1488035,1488036,1488037,1488038,1488039,1488040,1488041,1488042,1488043,1488044,1488045,1488046,1488047,1488048,1488049],"timestamp":0.0,"group_id":3} +{"session_id":"sess-193f757c20fb","input_length":545,"output_length":64,"hash_ids":[1488050,1488051],"delay":660.2} +{"session_id":"sess-193f757c20fb","input_length":197,"output_length":55,"hash_ids":[1488052],"delay":11446.7} +{"session_id":"sess-193f757c20fb","input_length":1175,"output_length":132,"hash_ids":[1488053,1488054,1488055],"delay":487.6} +{"session_id":"sess-193f757c20fb","input_length":155,"output_length":44,"hash_ids":[1488056],"delay":948.8} +{"session_id":"sess-193f757c20fb","input_length":258,"output_length":446,"hash_ids":[1488057],"delay":23755.8} +{"session_id":"sess-193f757c20fb","input_length":279,"output_length":156,"hash_ids":[1488058],"delay":1306.3} +{"session_id":"sess-193f757c20fb","input_length":645,"output_length":70,"hash_ids":[1488059,1488060],"delay":7612.8} +{"session_id":"sess-193f757c20fb","input_length":859,"output_length":182,"hash_ids":[1488061,1488062],"delay":896.0} +{"session_id":"sess-193f757c20fb","input_length":308,"output_length":80,"hash_ids":[1488063],"delay":775.1} +{"session_id":"sess-193f757c20fb","input_length":893,"output_length":474,"hash_ids":[1488064,1488065],"delay":248.9} +{"session_id":"sess-193f757c20fb","input_length":731,"output_length":269,"hash_ids":[1488066,1488067],"delay":830.8} +{"session_id":"sess-193f757c20fb","input_length":422,"output_length":164,"hash_ids":[1488068],"delay":2282.2} +{"session_id":"sess-193f757c20fb","input_length":552,"output_length":79,"hash_ids":[1488069,1488070],"delay":134.1} +{"session_id":"sess-193f757c20fb","input_length":245,"output_length":51,"hash_ids":[1488071],"delay":531.8} +{"session_id":"sess-193f757c20fb","input_length":318,"output_length":340,"hash_ids":[1488072],"delay":3218.5} +{"session_id":"sess-193f757c20fb","input_length":790,"output_length":402,"hash_ids":[1488073,1488074],"delay":33112.2} +{"session_id":"sess-193f757c20fb","input_length":377,"output_length":91,"hash_ids":[1488075],"delay":6054.4} +{"session_id":"sess-193f757c20fb","input_length":816,"output_length":50,"hash_ids":[1488076,1488077],"delay":394.7} +{"session_id":"sess-193f757c20fb","input_length":349,"output_length":30,"hash_ids":[1488078],"delay":176.9} +{"session_id":"sess-193f757c20fb","input_length":522,"output_length":235,"hash_ids":[1488079,1488080],"delay":596.6} +{"session_id":"sess-193f757c20fb","input_length":775,"output_length":74,"hash_ids":[1488081,1488082],"delay":366.0} +{"session_id":"sess-193f757c20fb","input_length":867,"output_length":365,"hash_ids":[1488083,1488084],"delay":128.4} +{"session_id":"sess-193f757c20fb","input_length":1976,"output_length":118,"hash_ids":[1488085,1488086,1488087,1488088],"delay":218.6} +{"session_id":"sess-193f757c20fb","input_length":1523,"output_length":87,"hash_ids":[1488089,1488090,1488091],"delay":31447.2} +{"session_id":"sess-193f757c20fb","input_length":1844,"output_length":80,"hash_ids":[1488092,1488093,1488094,1488095],"delay":326.2} +{"session_id":"sess-193f757c20fb","input_length":1923,"output_length":363,"hash_ids":[1488096,1488097,1488098,1488099],"delay":465.9} +{"session_id":"sess-ec677bdf3515","input_length":28906,"output_length":129,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1492032,1492033,1492034,1492035,1492036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ec677bdf3515","input_length":2346,"output_length":118,"hash_ids":[1492037,1492038,1492039,1492040,1492041],"delay":8183.2} +{"session_id":"sess-ec677bdf3515","input_length":1825,"output_length":135,"hash_ids":[1492042,1492043,1492044,1492045],"delay":877.2} +{"session_id":"sess-ec677bdf3515","input_length":1115,"output_length":813,"hash_ids":[1492046,1492047,1492048],"delay":302.8} +{"session_id":"sess-ec677bdf3515","input_length":735,"output_length":290,"hash_ids":[1492049,1492050],"delay":536.4} +{"session_id":"sess-ec677bdf3515","input_length":483,"output_length":99,"hash_ids":[1492051],"delay":1942.2} +{"session_id":"sess-ec677bdf3515","input_length":678,"output_length":78,"hash_ids":[1492052,1492053],"delay":411.4} +{"session_id":"sess-ec677bdf3515","input_length":610,"output_length":124,"hash_ids":[1492054,1492055],"delay":781.4} +{"session_id":"sess-ec677bdf3515","input_length":1312,"output_length":179,"hash_ids":[1492056,1492057,1492058],"delay":768.0} +{"session_id":"sess-ec677bdf3515","input_length":403,"output_length":365,"hash_ids":[1492059],"delay":11941.1} +{"session_id":"sess-ec677bdf3515","input_length":815,"output_length":335,"hash_ids":[1492060,1492061],"delay":312.7} +{"session_id":"sess-ec677bdf3515","input_length":730,"output_length":479,"hash_ids":[1492062,1492063],"delay":131.9} +{"session_id":"sess-ec677bdf3515","input_length":1500,"output_length":168,"hash_ids":[1492064,1492065,1492066],"delay":1496.2} +{"session_id":"sess-ec677bdf3515","input_length":1139,"output_length":427,"hash_ids":[1492067,1492068,1492069],"delay":24938.3} +{"session_id":"sess-ec677bdf3515","input_length":780,"output_length":200,"hash_ids":[1492070,1492071],"delay":849.5} +{"session_id":"sess-ec677bdf3515","input_length":362,"output_length":588,"hash_ids":[1492072],"delay":594.6} +{"session_id":"sess-ec677bdf3515","input_length":1009,"output_length":146,"hash_ids":[1492073,1492074],"delay":35082.6} +{"session_id":"sess-ec677bdf3515","input_length":2548,"output_length":175,"hash_ids":[1492075,1492076,1492077,1492078,1492079],"delay":473.5} +{"session_id":"sess-ec677bdf3515","input_length":2540,"output_length":80,"hash_ids":[1492080,1492081,1492082,1492083,1492084],"delay":611.0} +{"session_id":"sess-ec677bdf3515","input_length":670,"output_length":64,"hash_ids":[1492085,1492086],"delay":2062.7} +{"session_id":"sess-792bcc9bb81d","input_length":27240,"output_length":318,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1496032,1496033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-792bcc9bb81d","input_length":430,"output_length":31,"hash_ids":[1496034],"delay":5492.1} +{"session_id":"sess-792bcc9bb81d","input_length":665,"output_length":272,"hash_ids":[1496035,1496036],"delay":14725.1} +{"session_id":"sess-792bcc9bb81d","input_length":749,"output_length":337,"hash_ids":[1496037,1496038],"delay":1295.4} +{"session_id":"sess-792bcc9bb81d","input_length":732,"output_length":101,"hash_ids":[1496039,1496040],"delay":1100.5} +{"session_id":"sess-792bcc9bb81d","input_length":716,"output_length":419,"hash_ids":[1496041,1496042],"delay":29218.9} +{"session_id":"sess-792bcc9bb81d","input_length":663,"output_length":451,"hash_ids":[1496043,1496044],"delay":579.7} +{"session_id":"sess-792bcc9bb81d","input_length":885,"output_length":268,"hash_ids":[1496045,1496046],"delay":2019.9} +{"session_id":"sess-792bcc9bb81d","input_length":1595,"output_length":124,"hash_ids":[1496047,1496048,1496049,1496050],"delay":3046.6} +{"session_id":"sess-792bcc9bb81d","input_length":1850,"output_length":76,"hash_ids":[1496051,1496052,1496053,1496054],"delay":552.2} +{"session_id":"sess-792bcc9bb81d","input_length":2692,"output_length":82,"hash_ids":[1496055,1496056,1496057,1496058,1496059,1496060],"delay":1619.6} +{"session_id":"sess-792bcc9bb81d","input_length":89,"output_length":428,"hash_ids":[1496061],"delay":533.4} +{"session_id":"sess-792bcc9bb81d","input_length":881,"output_length":43,"hash_ids":[1496062,1496063],"delay":395.8} +{"session_id":"sess-792bcc9bb81d","input_length":1115,"output_length":232,"hash_ids":[1496064,1496065,1496066],"delay":14901.0} +{"session_id":"sess-792bcc9bb81d","input_length":303,"output_length":45,"hash_ids":[1496067],"delay":28251.1} +{"session_id":"sess-db4fe9ee3891","input_length":26193,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-db4fe9ee3891","input_length":1034,"output_length":70,"hash_ids":[1496068,1496069,1496070],"delay":2047.6} +{"session_id":"sess-db4fe9ee3891","input_length":1520,"output_length":637,"hash_ids":[1496071,1496072,1496073],"delay":1400.5} +{"session_id":"sess-db4fe9ee3891","input_length":431,"output_length":260,"hash_ids":[1496074],"delay":643.9} +{"session_id":"sess-db4fe9ee3891","input_length":212,"output_length":70,"hash_ids":[1496075],"delay":680.7} +{"session_id":"sess-db4fe9ee3891","input_length":149,"output_length":444,"hash_ids":[1496076],"delay":1253.0} +{"session_id":"sess-db4fe9ee3891","input_length":1684,"output_length":70,"hash_ids":[1496077,1496078,1496079,1496080],"delay":2300.8} +{"session_id":"sess-db4fe9ee3891","input_length":427,"output_length":585,"hash_ids":[1496081],"delay":1145.7} +{"session_id":"sess-db4fe9ee3891","input_length":1865,"output_length":67,"hash_ids":[1496082,1496083,1496084,1496085],"delay":2024.2} +{"session_id":"sess-db4fe9ee3891","input_length":1603,"output_length":253,"hash_ids":[1496086,1496087,1496088,1496089],"delay":2922.9} +{"session_id":"sess-db4fe9ee3891","input_length":469,"output_length":68,"hash_ids":[1496090],"delay":1707.5} +{"session_id":"sess-db4fe9ee3891","input_length":2081,"output_length":1169,"hash_ids":[1496091,1496092,1496093,1496094,1496095],"delay":13569.9} +{"session_id":"sess-db4fe9ee3891","input_length":1450,"output_length":65,"hash_ids":[1496096,1496097,1496098],"delay":753.8} +{"session_id":"sess-db4fe9ee3891","input_length":1340,"output_length":40,"hash_ids":[1496099,1496100,1496101],"delay":319.1} +{"session_id":"sess-db4fe9ee3891","input_length":2678,"output_length":160,"hash_ids":[1496102,1496103,1496104,1496105,1496106,1496107],"delay":112.0} +{"session_id":"sess-db4fe9ee3891","input_length":2102,"output_length":372,"hash_ids":[1496108,1496109,1496110,1496111,1496112],"delay":899.0} +{"session_id":"sess-db4fe9ee3891","input_length":2795,"output_length":286,"hash_ids":[1496113,1496114,1496115,1496116,1496117,1496118],"delay":1292.1} +{"session_id":"sess-db4fe9ee3891","input_length":156,"output_length":307,"hash_ids":[1496119],"delay":1484.6} +{"session_id":"sess-db4fe9ee3891","input_length":2256,"output_length":88,"hash_ids":[1496120,1496121,1496122,1496123,1496124],"delay":2198.9} +{"session_id":"sess-db4fe9ee3891","input_length":525,"output_length":138,"hash_ids":[1496125,1496126],"delay":11091.8} +{"session_id":"sess-db4fe9ee3891","input_length":1051,"output_length":256,"hash_ids":[1496127,1496128,1496129],"delay":2240.7} +{"session_id":"sess-db4fe9ee3891","input_length":1212,"output_length":409,"hash_ids":[1496130,1496131,1496132],"delay":4123.0} +{"session_id":"sess-db4fe9ee3891","input_length":608,"output_length":76,"hash_ids":[1496133,1496134],"delay":1041.2} +{"session_id":"sess-db4fe9ee3891","input_length":661,"output_length":490,"hash_ids":[1496135,1496136],"delay":3846.0} +{"session_id":"sess-db4fe9ee3891","input_length":2717,"output_length":205,"hash_ids":[1496137,1496138,1496139,1496140,1496141,1496142],"delay":343.6} +{"session_id":"sess-aac6b936031e","input_length":31545,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1504032,1504033,1504034,1504035,1504036,1504037,1504038,1504039,1504040,1504041],"timestamp":0.0,"group_id":3} +{"session_id":"sess-aac6b936031e","input_length":951,"output_length":94,"hash_ids":[1504042,1504043],"delay":1305.2} +{"session_id":"sess-aac6b936031e","input_length":2317,"output_length":454,"hash_ids":[1504044,1504045,1504046,1504047,1504048],"delay":674.3} +{"session_id":"sess-f542056c6945","input_length":26945,"output_length":222,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1508032],"timestamp":0.0,"group_id":7} +{"session_id":"sess-f542056c6945","input_length":2241,"output_length":960,"hash_ids":[1508033,1508034,1508035,1508036,1508037],"delay":1250.1} +{"session_id":"sess-f542056c6945","input_length":308,"output_length":1099,"hash_ids":[1508038],"delay":939.6} +{"session_id":"sess-f542056c6945","input_length":633,"output_length":139,"hash_ids":[1508039,1508040],"delay":1491.8} +{"session_id":"sess-f542056c6945","input_length":1747,"output_length":228,"hash_ids":[1508041,1508042,1508043,1508044],"delay":1019.9} +{"session_id":"sess-f542056c6945","input_length":684,"output_length":136,"hash_ids":[1508045,1508046],"delay":581.9} +{"session_id":"sess-f542056c6945","input_length":189,"output_length":99,"hash_ids":[1508047],"delay":1111.4} +{"session_id":"sess-f542056c6945","input_length":403,"output_length":556,"hash_ids":[1508048],"delay":646.6} +{"session_id":"sess-f542056c6945","input_length":1493,"output_length":113,"hash_ids":[1508049,1508050,1508051],"delay":3184.6} +{"session_id":"sess-f542056c6945","input_length":988,"output_length":675,"hash_ids":[1508052,1508053],"delay":1046.6} +{"session_id":"sess-f542056c6945","input_length":882,"output_length":81,"hash_ids":[1508054,1508055],"delay":10565.0} +{"session_id":"sess-f542056c6945","input_length":1399,"output_length":278,"hash_ids":[1508056,1508057,1508058],"delay":237.5} +{"session_id":"sess-f542056c6945","input_length":2832,"output_length":204,"hash_ids":[1508059,1508060,1508061,1508062,1508063,1508064],"delay":1059.3} +{"session_id":"sess-f542056c6945","input_length":1230,"output_length":175,"hash_ids":[1508065,1508066,1508067],"delay":13037.0} +{"session_id":"sess-efcae0c5b2fd","input_length":26767,"output_length":127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1512032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-efcae0c5b2fd","input_length":482,"output_length":391,"hash_ids":[1512033],"delay":5291.7} +{"session_id":"sess-efcae0c5b2fd","input_length":215,"output_length":759,"hash_ids":[1512034],"delay":18875.1} +{"session_id":"sess-efcae0c5b2fd","input_length":706,"output_length":266,"hash_ids":[1512035,1512036],"delay":627.7} +{"session_id":"sess-efcae0c5b2fd","input_length":514,"output_length":167,"hash_ids":[1512037,1512038],"delay":460.7} +{"session_id":"sess-efcae0c5b2fd","input_length":1233,"output_length":65,"hash_ids":[1512039,1512040,1512041],"delay":318.7} +{"session_id":"sess-efcae0c5b2fd","input_length":590,"output_length":932,"hash_ids":[1512042,1512043],"delay":9170.8} +{"session_id":"sess-efcae0c5b2fd","input_length":962,"output_length":174,"hash_ids":[1512044,1512045],"delay":11966.0} +{"session_id":"sess-8c2fa70c7406","input_length":26972,"output_length":259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1516032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8c2fa70c7406","input_length":207,"output_length":118,"hash_ids":[1516033],"delay":1297.3} +{"session_id":"sess-8c2fa70c7406","input_length":1798,"output_length":108,"hash_ids":[1516034,1516035,1516036,1516037],"delay":4267.8} +{"session_id":"sess-8c2fa70c7406","input_length":1058,"output_length":144,"hash_ids":[1516038,1516039,1516040],"delay":856.7} +{"session_id":"sess-8c2fa70c7406","input_length":1683,"output_length":30,"hash_ids":[1516041,1516042,1516043,1516044],"delay":3515.9} +{"session_id":"sess-8c2fa70c7406","input_length":2483,"output_length":319,"hash_ids":[1516045,1516046,1516047,1516048,1516049],"delay":19137.3} +{"session_id":"sess-8c2fa70c7406","input_length":288,"output_length":113,"hash_ids":[1516050],"delay":1773.6} +{"session_id":"sess-8c2fa70c7406","input_length":167,"output_length":307,"hash_ids":[1516051],"delay":8367.4} +{"session_id":"sess-8c2fa70c7406","input_length":1171,"output_length":133,"hash_ids":[1516052,1516053,1516054],"delay":193.7} +{"session_id":"sess-8c2fa70c7406","input_length":875,"output_length":324,"hash_ids":[1516055,1516056],"delay":2061.7} +{"session_id":"sess-8c2fa70c7406","input_length":1658,"output_length":457,"hash_ids":[1516057,1516058,1516059,1516060],"delay":359.1} +{"session_id":"sess-8c2fa70c7406","input_length":199,"output_length":148,"hash_ids":[1516061],"delay":564.6} +{"session_id":"sess-8c2fa70c7406","input_length":2633,"output_length":97,"hash_ids":[1516062,1516063,1516064,1516065,1516066,1516067],"delay":2453.0} +{"session_id":"sess-8c2fa70c7406","input_length":2574,"output_length":73,"hash_ids":[1516068,1516069,1516070,1516071,1516072,1516073],"delay":8902.9} +{"session_id":"sess-8c2fa70c7406","input_length":903,"output_length":128,"hash_ids":[1516074,1516075],"delay":1301.7} +{"session_id":"sess-8c2fa70c7406","input_length":2412,"output_length":170,"hash_ids":[1516076,1516077,1516078,1516079,1516080],"delay":1069.5} +{"session_id":"sess-8c2fa70c7406","input_length":167,"output_length":122,"hash_ids":[1516081],"delay":4697.5} +{"session_id":"sess-8c2fa70c7406","input_length":707,"output_length":148,"hash_ids":[1516082,1516083],"delay":729.5} +{"session_id":"sess-8c2fa70c7406","input_length":368,"output_length":71,"hash_ids":[1516084],"delay":274.0} +{"session_id":"sess-8c2fa70c7406","input_length":1580,"output_length":223,"hash_ids":[1516085,1516086,1516087,1516088],"delay":13837.2} +{"session_id":"sess-8c2fa70c7406","input_length":363,"output_length":199,"hash_ids":[1516089],"delay":3952.6} +{"session_id":"sess-8c2fa70c7406","input_length":841,"output_length":52,"hash_ids":[1516090,1516091],"delay":37882.0} +{"session_id":"sess-8c2fa70c7406","input_length":1040,"output_length":100,"hash_ids":[1516092,1516093,1516094],"delay":232.0} +{"session_id":"sess-8c2fa70c7406","input_length":774,"output_length":308,"hash_ids":[1516095,1516096],"delay":4023.5} +{"session_id":"sess-8c2fa70c7406","input_length":1250,"output_length":1221,"hash_ids":[1516097,1516098,1516099],"delay":1487.2} +{"session_id":"sess-8c2fa70c7406","input_length":1296,"output_length":104,"hash_ids":[1516100,1516101,1516102],"delay":100.1} +{"session_id":"sess-8c2fa70c7406","input_length":1399,"output_length":514,"hash_ids":[1516103,1516104,1516105],"delay":372.0} +{"session_id":"sess-8c2fa70c7406","input_length":451,"output_length":253,"hash_ids":[1516106],"delay":701.8} +{"session_id":"sess-8c2fa70c7406","input_length":554,"output_length":1129,"hash_ids":[1516107,1516108],"delay":757.5} +{"session_id":"sess-443a2fce44d4","input_length":30881,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,1520032,1520033,1520034,1520035,1520036,1520037,1520038,1520039,1520040],"timestamp":0.0,"group_id":4} +{"session_id":"sess-443a2fce44d4","input_length":579,"output_length":452,"hash_ids":[1520041,1520042],"delay":720.1} +{"session_id":"sess-443a2fce44d4","input_length":667,"output_length":88,"hash_ids":[1520043,1520044],"delay":18231.8} +{"session_id":"sess-443a2fce44d4","input_length":252,"output_length":602,"hash_ids":[1520045],"delay":2391.7} +{"session_id":"sess-443a2fce44d4","input_length":2337,"output_length":153,"hash_ids":[1520046,1520047,1520048,1520049,1520050],"delay":44058.9} +{"session_id":"sess-443a2fce44d4","input_length":1945,"output_length":256,"hash_ids":[1520051,1520052,1520053,1520054],"delay":5594.7} +{"session_id":"sess-443a2fce44d4","input_length":373,"output_length":126,"hash_ids":[1520055],"delay":1419.4} +{"session_id":"sess-443a2fce44d4","input_length":978,"output_length":325,"hash_ids":[1520056,1520057],"delay":48049.0} +{"session_id":"sess-443a2fce44d4","input_length":848,"output_length":555,"hash_ids":[1520058,1520059],"delay":713.2} +{"session_id":"sess-443a2fce44d4","input_length":2812,"output_length":71,"hash_ids":[1520060,1520061,1520062,1520063,1520064,1520065],"delay":15025.3} +{"session_id":"sess-443a2fce44d4","input_length":617,"output_length":140,"hash_ids":[1520066,1520067],"delay":2727.7} +{"session_id":"sess-443a2fce44d4","input_length":1709,"output_length":220,"hash_ids":[1520068,1520069,1520070,1520071],"delay":3737.6} +{"session_id":"sess-443a2fce44d4","input_length":1474,"output_length":134,"hash_ids":[1520072,1520073,1520074],"delay":552.6} +{"session_id":"sess-443a2fce44d4","input_length":621,"output_length":407,"hash_ids":[1520075,1520076],"delay":1498.4} +{"session_id":"sess-443a2fce44d4","input_length":158,"output_length":143,"hash_ids":[1520077],"delay":29082.1} +{"session_id":"sess-443a2fce44d4","input_length":254,"output_length":1174,"hash_ids":[1520078],"delay":543.2} +{"session_id":"sess-443a2fce44d4","input_length":96,"output_length":620,"hash_ids":[1520079],"delay":24513.6} +{"session_id":"sess-443a2fce44d4","input_length":1719,"output_length":178,"hash_ids":[1520080,1520081,1520082,1520083],"delay":419.0} +{"session_id":"sess-443a2fce44d4","input_length":519,"output_length":116,"hash_ids":[1520084,1520085],"delay":349.0} +{"session_id":"sess-443a2fce44d4","input_length":435,"output_length":168,"hash_ids":[1520086],"delay":726.9} +{"session_id":"sess-443a2fce44d4","input_length":581,"output_length":495,"hash_ids":[1520087,1520088],"delay":3452.8} +{"session_id":"sess-443a2fce44d4","input_length":713,"output_length":194,"hash_ids":[1520089,1520090],"delay":2877.3} +{"session_id":"sess-443a2fce44d4","input_length":1023,"output_length":280,"hash_ids":[1520091,1520092],"delay":20237.8} +{"session_id":"sess-443a2fce44d4","input_length":844,"output_length":193,"hash_ids":[1520093,1520094],"delay":1626.2} +{"session_id":"sess-443a2fce44d4","input_length":413,"output_length":156,"hash_ids":[1520095],"delay":1334.6} +{"session_id":"sess-443a2fce44d4","input_length":567,"output_length":443,"hash_ids":[1520096,1520097],"delay":152.7} +{"session_id":"sess-443a2fce44d4","input_length":422,"output_length":328,"hash_ids":[1520098],"delay":1019.3} +{"session_id":"sess-443a2fce44d4","input_length":1103,"output_length":223,"hash_ids":[1520099,1520100,1520101],"delay":1193.7} +{"session_id":"sess-443a2fce44d4","input_length":1589,"output_length":110,"hash_ids":[1520102,1520103,1520104,1520105],"delay":552.0} +{"session_id":"sess-0e4b370c279b","input_length":31576,"output_length":166,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1524032,1524033,1524034,1524035,1524036,1524037,1524038,1524039,1524040,1524041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0e4b370c279b","input_length":870,"output_length":84,"hash_ids":[1524042,1524043],"delay":1514.0} +{"session_id":"sess-0e4b370c279b","input_length":263,"output_length":378,"hash_ids":[1524044],"delay":806.2} +{"session_id":"sess-0e4b370c279b","input_length":277,"output_length":198,"hash_ids":[1524045],"delay":3370.8} +{"session_id":"sess-0e4b370c279b","input_length":2227,"output_length":186,"hash_ids":[1524046,1524047,1524048,1524049,1524050],"delay":901.8} +{"session_id":"sess-0e4b370c279b","input_length":603,"output_length":337,"hash_ids":[1524051,1524052],"delay":25998.4} +{"session_id":"sess-0e4b370c279b","input_length":368,"output_length":140,"hash_ids":[1524053],"delay":1998.7} +{"session_id":"sess-0e4b370c279b","input_length":1697,"output_length":77,"hash_ids":[1524054,1524055,1524056,1524057],"delay":226.6} +{"session_id":"sess-0e4b370c279b","input_length":1494,"output_length":766,"hash_ids":[1524058,1524059,1524060],"delay":666.6} +{"session_id":"sess-0e4b370c279b","input_length":1531,"output_length":237,"hash_ids":[1524061,1524062,1524063],"delay":1184.5} +{"session_id":"sess-0e4b370c279b","input_length":752,"output_length":160,"hash_ids":[1524064,1524065],"delay":567.0} +{"session_id":"sess-0e4b370c279b","input_length":645,"output_length":1149,"hash_ids":[1524066,1524067],"delay":10101.3} +{"session_id":"sess-0e4b370c279b","input_length":2833,"output_length":159,"hash_ids":[1524068,1524069,1524070,1524071,1524072,1524073],"delay":201.0} +{"session_id":"sess-0e4b370c279b","input_length":417,"output_length":49,"hash_ids":[1524074],"delay":1041.5} +{"session_id":"sess-0e4b370c279b","input_length":1581,"output_length":638,"hash_ids":[1524075,1524076,1524077,1524078],"delay":1376.0} +{"session_id":"sess-0e4b370c279b","input_length":1560,"output_length":52,"hash_ids":[1524079,1524080,1524081,1524082],"delay":8800.8} +{"session_id":"sess-0e4b370c279b","input_length":628,"output_length":46,"hash_ids":[1524083,1524084],"delay":610.4} +{"session_id":"sess-0e4b370c279b","input_length":1049,"output_length":162,"hash_ids":[1524085,1524086,1524087],"delay":4714.5} +{"session_id":"sess-0e4b370c279b","input_length":502,"output_length":211,"hash_ids":[1524088],"delay":11856.1} +{"session_id":"sess-42b24e6c6e98","input_length":27694,"output_length":1388,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1528032,1528033,1528034],"timestamp":0.0,"group_id":8} +{"session_id":"sess-42b24e6c6e98","input_length":803,"output_length":217,"hash_ids":[1528035,1528036],"delay":1164.8} +{"session_id":"sess-42b24e6c6e98","input_length":317,"output_length":68,"hash_ids":[1528037],"delay":833.5} +{"session_id":"sess-42b24e6c6e98","input_length":1075,"output_length":356,"hash_ids":[1528038,1528039,1528040],"delay":1013.6} +{"session_id":"sess-42b24e6c6e98","input_length":1277,"output_length":125,"hash_ids":[1528041,1528042,1528043],"delay":1548.4} +{"session_id":"sess-a5eb4750e44b","input_length":26137,"output_length":67,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051],"timestamp":0.0,"group_id":15} +{"session_id":"sess-a5eb4750e44b","input_length":291,"output_length":68,"hash_ids":[1528044],"delay":1757.0} +{"session_id":"sess-a5eb4750e44b","input_length":165,"output_length":1243,"hash_ids":[1528045],"delay":1131.6} +{"session_id":"sess-a5eb4750e44b","input_length":310,"output_length":257,"hash_ids":[1528046],"delay":953.9} +{"session_id":"sess-dd87982fc85d","input_length":26789,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,1536032],"timestamp":0.0,"group_id":37} +{"session_id":"sess-dd87982fc85d","input_length":145,"output_length":209,"hash_ids":[1536033],"delay":501.2} +{"session_id":"sess-dd87982fc85d","input_length":951,"output_length":355,"hash_ids":[1536034,1536035],"delay":595.8} +{"session_id":"sess-dd87982fc85d","input_length":1188,"output_length":171,"hash_ids":[1536036,1536037,1536038],"delay":9011.8} +{"session_id":"sess-dd87982fc85d","input_length":852,"output_length":237,"hash_ids":[1536039,1536040],"delay":755.9} +{"session_id":"sess-dd87982fc85d","input_length":1014,"output_length":448,"hash_ids":[1536041,1536042],"delay":19995.0} +{"session_id":"sess-dd87982fc85d","input_length":730,"output_length":304,"hash_ids":[1536043,1536044],"delay":652.0} +{"session_id":"sess-dd87982fc85d","input_length":778,"output_length":61,"hash_ids":[1536045,1536046],"delay":8519.2} +{"session_id":"sess-dd87982fc85d","input_length":523,"output_length":839,"hash_ids":[1536047,1536048],"delay":897.8} +{"session_id":"sess-dd87982fc85d","input_length":259,"output_length":91,"hash_ids":[1536049],"delay":6013.6} +{"session_id":"sess-dd87982fc85d","input_length":719,"output_length":443,"hash_ids":[1536050,1536051],"delay":375.4} +{"session_id":"sess-dd87982fc85d","input_length":363,"output_length":73,"hash_ids":[1536052],"delay":3173.5} +{"session_id":"sess-01e9b2826b5e","input_length":28621,"output_length":33,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1540032,1540033,1540034,1540035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-01e9b2826b5e","input_length":645,"output_length":75,"hash_ids":[1540036,1540037],"delay":3468.9} +{"session_id":"sess-01e9b2826b5e","input_length":2336,"output_length":86,"hash_ids":[1540038,1540039,1540040,1540041,1540042],"delay":1084.7} +{"session_id":"sess-01e9b2826b5e","input_length":347,"output_length":134,"hash_ids":[1540043],"delay":458.8} +{"session_id":"sess-01e9b2826b5e","input_length":873,"output_length":268,"hash_ids":[1540044,1540045],"delay":6954.1} +{"session_id":"sess-01e9b2826b5e","input_length":879,"output_length":118,"hash_ids":[1540046,1540047],"delay":30251.9} +{"session_id":"sess-01e9b2826b5e","input_length":40,"output_length":198,"hash_ids":[1540048],"delay":4340.8} +{"session_id":"sess-01e9b2826b5e","input_length":1181,"output_length":66,"hash_ids":[1540049,1540050,1540051],"delay":48751.7} +{"session_id":"sess-01e9b2826b5e","input_length":1930,"output_length":30,"hash_ids":[1540052,1540053,1540054,1540055],"delay":4320.7} +{"session_id":"sess-01e9b2826b5e","input_length":197,"output_length":396,"hash_ids":[1540056],"delay":2948.3} +{"session_id":"sess-01e9b2826b5e","input_length":2499,"output_length":298,"hash_ids":[1540057,1540058,1540059,1540060,1540061],"delay":2917.3} +{"session_id":"sess-01e9b2826b5e","input_length":637,"output_length":74,"hash_ids":[1540062,1540063],"delay":1010.2} +{"session_id":"sess-01e9b2826b5e","input_length":83,"output_length":367,"hash_ids":[1540064],"delay":232.0} +{"session_id":"sess-01e9b2826b5e","input_length":1145,"output_length":137,"hash_ids":[1540065,1540066,1540067],"delay":680.4} +{"session_id":"sess-01e9b2826b5e","input_length":907,"output_length":30,"hash_ids":[1540068,1540069],"delay":742.6} +{"session_id":"sess-01e9b2826b5e","input_length":2559,"output_length":98,"hash_ids":[1540070,1540071,1540072,1540073,1540074],"delay":44709.0} +{"session_id":"sess-01e9b2826b5e","input_length":1122,"output_length":568,"hash_ids":[1540075,1540076,1540077],"delay":11011.8} +{"session_id":"sess-01e9b2826b5e","input_length":75,"output_length":100,"hash_ids":[1540078],"delay":44415.2} +{"session_id":"sess-94e09c33593e","input_length":28744,"output_length":85,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1544032,1544033,1544034,1544035,1544036],"timestamp":0.0,"group_id":10} +{"session_id":"sess-94e09c33593e","input_length":1477,"output_length":612,"hash_ids":[1544037,1544038,1544039],"delay":10975.3} +{"session_id":"sess-94e09c33593e","input_length":1255,"output_length":445,"hash_ids":[1544040,1544041,1544042],"delay":39143.8} +{"session_id":"sess-94e09c33593e","input_length":1550,"output_length":698,"hash_ids":[1544043,1544044,1544045,1544046],"delay":63.2} +{"session_id":"sess-94e09c33593e","input_length":481,"output_length":251,"hash_ids":[1544047],"delay":772.2} +{"session_id":"sess-94e09c33593e","input_length":319,"output_length":1029,"hash_ids":[1544048],"delay":8834.1} +{"session_id":"sess-94e09c33593e","input_length":414,"output_length":189,"hash_ids":[1544049],"delay":1178.4} +{"session_id":"sess-94e09c33593e","input_length":2559,"output_length":45,"hash_ids":[1544050,1544051,1544052,1544053,1544054],"delay":1316.2} +{"session_id":"sess-94e09c33593e","input_length":343,"output_length":229,"hash_ids":[1544055],"delay":3945.9} +{"session_id":"sess-94e09c33593e","input_length":932,"output_length":414,"hash_ids":[1544056,1544057],"delay":1395.8} +{"session_id":"sess-94e09c33593e","input_length":253,"output_length":160,"hash_ids":[1544058],"delay":12584.2} +{"session_id":"sess-94e09c33593e","input_length":271,"output_length":1081,"hash_ids":[1544059],"delay":1549.9} +{"session_id":"sess-94e09c33593e","input_length":587,"output_length":220,"hash_ids":[1544060,1544061],"delay":2369.1} +{"session_id":"sess-94e09c33593e","input_length":896,"output_length":481,"hash_ids":[1544062,1544063],"delay":5963.5} +{"session_id":"sess-94e09c33593e","input_length":249,"output_length":244,"hash_ids":[1544064],"delay":995.5} +{"session_id":"sess-94e09c33593e","input_length":556,"output_length":680,"hash_ids":[1544065,1544066],"delay":639.8} +{"session_id":"sess-94e09c33593e","input_length":799,"output_length":54,"hash_ids":[1544067,1544068],"delay":4204.6} +{"session_id":"sess-94e09c33593e","input_length":398,"output_length":280,"hash_ids":[1544069],"delay":1762.8} +{"session_id":"sess-94e09c33593e","input_length":779,"output_length":203,"hash_ids":[1544070,1544071],"delay":1312.8} +{"session_id":"sess-94e09c33593e","input_length":941,"output_length":131,"hash_ids":[1544072,1544073],"delay":475.4} +{"session_id":"sess-94e09c33593e","input_length":1314,"output_length":124,"hash_ids":[1544074,1544075,1544076],"delay":11876.1} +{"session_id":"sess-94e09c33593e","input_length":383,"output_length":339,"hash_ids":[1544077],"delay":243.4} +{"session_id":"sess-94e09c33593e","input_length":224,"output_length":703,"hash_ids":[1544078],"delay":4011.4} +{"session_id":"sess-94e09c33593e","input_length":1279,"output_length":1126,"hash_ids":[1544079,1544080,1544081],"delay":633.2} +{"session_id":"sess-94e09c33593e","input_length":887,"output_length":143,"hash_ids":[1544082,1544083],"delay":910.2} +{"session_id":"sess-94e09c33593e","input_length":745,"output_length":84,"hash_ids":[1544084,1544085],"delay":7856.9} +{"session_id":"sess-94e09c33593e","input_length":1578,"output_length":92,"hash_ids":[1544086,1544087,1544088,1544089],"delay":366.6} +{"session_id":"sess-94e09c33593e","input_length":937,"output_length":311,"hash_ids":[1544090,1544091],"delay":795.5} +{"session_id":"sess-94e09c33593e","input_length":1595,"output_length":38,"hash_ids":[1544092,1544093,1544094,1544095],"delay":4133.2} +{"session_id":"sess-94e09c33593e","input_length":856,"output_length":208,"hash_ids":[1544096,1544097],"delay":99.7} +{"session_id":"sess-94e09c33593e","input_length":700,"output_length":56,"hash_ids":[1544098,1544099],"delay":4896.3} +{"session_id":"sess-94e09c33593e","input_length":251,"output_length":662,"hash_ids":[1544100],"delay":102.3} +{"session_id":"sess-088fc6da4a9a","input_length":27052,"output_length":300,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1548032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-088fc6da4a9a","input_length":311,"output_length":64,"hash_ids":[1548033],"delay":1833.0} +{"session_id":"sess-514c42cf7aab","input_length":28874,"output_length":327,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1552032,1552033,1552034,1552035,1552036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-514c42cf7aab","input_length":718,"output_length":112,"hash_ids":[1552037,1552038],"delay":750.8} +{"session_id":"sess-514c42cf7aab","input_length":868,"output_length":193,"hash_ids":[1552039,1552040],"delay":1435.5} +{"session_id":"sess-514c42cf7aab","input_length":709,"output_length":480,"hash_ids":[1552041,1552042],"delay":1780.3} +{"session_id":"sess-514c42cf7aab","input_length":271,"output_length":101,"hash_ids":[1552043],"delay":1833.5} +{"session_id":"sess-514c42cf7aab","input_length":1513,"output_length":173,"hash_ids":[1552044,1552045,1552046],"delay":1967.5} +{"session_id":"sess-514c42cf7aab","input_length":1500,"output_length":146,"hash_ids":[1552047,1552048,1552049],"delay":7634.9} +{"session_id":"sess-514c42cf7aab","input_length":2025,"output_length":153,"hash_ids":[1552050,1552051,1552052,1552053],"delay":355.9} +{"session_id":"sess-514c42cf7aab","input_length":285,"output_length":261,"hash_ids":[1552054],"delay":1020.9} +{"session_id":"sess-514c42cf7aab","input_length":1526,"output_length":1008,"hash_ids":[1552055,1552056,1552057],"delay":1175.1} +{"session_id":"sess-514c42cf7aab","input_length":158,"output_length":60,"hash_ids":[1552058],"delay":206.3} +{"session_id":"sess-514c42cf7aab","input_length":527,"output_length":1222,"hash_ids":[1552059,1552060],"delay":1780.6} +{"session_id":"sess-514c42cf7aab","input_length":739,"output_length":168,"hash_ids":[1552061,1552062],"delay":1009.3} +{"session_id":"sess-514c42cf7aab","input_length":567,"output_length":99,"hash_ids":[1552063,1552064],"delay":219.2} +{"session_id":"sess-514c42cf7aab","input_length":312,"output_length":219,"hash_ids":[1552065],"delay":3909.0} +{"session_id":"sess-514c42cf7aab","input_length":714,"output_length":215,"hash_ids":[1552066,1552067],"delay":411.9} +{"session_id":"sess-514c42cf7aab","input_length":948,"output_length":89,"hash_ids":[1552068,1552069],"delay":698.6} +{"session_id":"sess-514c42cf7aab","input_length":77,"output_length":88,"hash_ids":[1552070],"delay":4342.1} +{"session_id":"sess-514c42cf7aab","input_length":449,"output_length":178,"hash_ids":[1552071],"delay":626.1} +{"session_id":"sess-514c42cf7aab","input_length":275,"output_length":240,"hash_ids":[1552072],"delay":1162.9} +{"session_id":"sess-514c42cf7aab","input_length":302,"output_length":223,"hash_ids":[1552073],"delay":1243.7} +{"session_id":"sess-35de51e4c47a","input_length":27384,"output_length":410,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1556032,1556033],"timestamp":0.0,"group_id":9} +{"session_id":"sess-35de51e4c47a","input_length":713,"output_length":629,"hash_ids":[1556034,1556035],"delay":58669.5} +{"session_id":"sess-35de51e4c47a","input_length":464,"output_length":98,"hash_ids":[1556036],"delay":556.4} +{"session_id":"sess-35de51e4c47a","input_length":444,"output_length":51,"hash_ids":[1556037],"delay":269.7} +{"session_id":"sess-35de51e4c47a","input_length":76,"output_length":630,"hash_ids":[1556038],"delay":2137.7} +{"session_id":"sess-35de51e4c47a","input_length":375,"output_length":305,"hash_ids":[1556039],"delay":1578.9} +{"session_id":"sess-35de51e4c47a","input_length":943,"output_length":347,"hash_ids":[1556040,1556041],"delay":818.0} +{"session_id":"sess-35de51e4c47a","input_length":1327,"output_length":42,"hash_ids":[1556042,1556043,1556044],"delay":560.1} +{"session_id":"sess-35de51e4c47a","input_length":587,"output_length":57,"hash_ids":[1556045,1556046],"delay":629.2} +{"session_id":"sess-35de51e4c47a","input_length":459,"output_length":543,"hash_ids":[1556047],"delay":4650.0} +{"session_id":"sess-35de51e4c47a","input_length":1707,"output_length":458,"hash_ids":[1556048,1556049,1556050,1556051],"delay":7781.9} +{"session_id":"sess-35de51e4c47a","input_length":647,"output_length":190,"hash_ids":[1556052,1556053],"delay":1358.1} +{"session_id":"sess-35de51e4c47a","input_length":423,"output_length":127,"hash_ids":[1556054],"delay":310.9} +{"session_id":"sess-35de51e4c47a","input_length":704,"output_length":440,"hash_ids":[1556055,1556056],"delay":1005.2} +{"session_id":"sess-35de51e4c47a","input_length":280,"output_length":105,"hash_ids":[1556057],"delay":174.2} +{"session_id":"sess-35de51e4c47a","input_length":166,"output_length":272,"hash_ids":[1556058],"delay":537.9} +{"session_id":"sess-35de51e4c47a","input_length":634,"output_length":211,"hash_ids":[1556059,1556060],"delay":623.3} +{"session_id":"sess-35de51e4c47a","input_length":856,"output_length":50,"hash_ids":[1556061,1556062],"delay":19777.3} +{"session_id":"sess-35de51e4c47a","input_length":2765,"output_length":328,"hash_ids":[1556063,1556064,1556065,1556066,1556067,1556068],"delay":3460.1} +{"session_id":"sess-35de51e4c47a","input_length":1539,"output_length":150,"hash_ids":[1556069,1556070,1556071,1556072],"delay":4529.7} +{"session_id":"sess-ce350e7fc975","input_length":27864,"output_length":186,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1560032,1560033,1560034],"timestamp":0.0,"group_id":8} +{"session_id":"sess-ce350e7fc975","input_length":644,"output_length":591,"hash_ids":[1560035,1560036],"delay":1821.2} +{"session_id":"sess-64dda106adb1","input_length":26261,"output_length":367,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-64dda106adb1","input_length":1853,"output_length":258,"hash_ids":[1560037,1560038,1560039,1560040],"delay":20229.5} +{"session_id":"sess-64dda106adb1","input_length":2838,"output_length":114,"hash_ids":[1560041,1560042,1560043,1560044,1560045,1560046],"delay":1822.2} +{"session_id":"sess-64dda106adb1","input_length":2891,"output_length":57,"hash_ids":[1560047,1560048,1560049,1560050,1560051,1560052],"delay":7620.6} +{"session_id":"sess-64dda106adb1","input_length":998,"output_length":552,"hash_ids":[1560053,1560054],"delay":1080.4} +{"session_id":"sess-64dda106adb1","input_length":536,"output_length":89,"hash_ids":[1560055,1560056],"delay":24163.4} +{"session_id":"sess-64dda106adb1","input_length":2821,"output_length":138,"hash_ids":[1560057,1560058,1560059,1560060,1560061,1560062],"delay":3974.3} +{"session_id":"sess-64dda106adb1","input_length":1425,"output_length":334,"hash_ids":[1560063,1560064,1560065],"delay":3035.5} +{"session_id":"sess-64dda106adb1","input_length":669,"output_length":163,"hash_ids":[1560066,1560067],"delay":1634.9} +{"session_id":"sess-64dda106adb1","input_length":687,"output_length":424,"hash_ids":[1560068,1560069],"delay":14969.7} +{"session_id":"sess-64dda106adb1","input_length":375,"output_length":183,"hash_ids":[1560070],"delay":29833.8} +{"session_id":"sess-64dda106adb1","input_length":2851,"output_length":112,"hash_ids":[1560071,1560072,1560073,1560074,1560075,1560076],"delay":4235.9} +{"session_id":"sess-64dda106adb1","input_length":853,"output_length":252,"hash_ids":[1560077,1560078],"delay":6234.3} +{"session_id":"sess-64dda106adb1","input_length":302,"output_length":378,"hash_ids":[1560079],"delay":23667.9} +{"session_id":"sess-64dda106adb1","input_length":652,"output_length":130,"hash_ids":[1560080,1560081],"delay":9970.0} +{"session_id":"sess-64dda106adb1","input_length":1672,"output_length":748,"hash_ids":[1560082,1560083,1560084,1560085],"delay":491.0} +{"session_id":"sess-64dda106adb1","input_length":943,"output_length":36,"hash_ids":[1560086,1560087],"delay":765.7} +{"session_id":"sess-64dda106adb1","input_length":1210,"output_length":164,"hash_ids":[1560088,1560089,1560090],"delay":10572.6} +{"session_id":"sess-64dda106adb1","input_length":235,"output_length":136,"hash_ids":[1560091],"delay":242.2} +{"session_id":"sess-64dda106adb1","input_length":1084,"output_length":72,"hash_ids":[1560092,1560093,1560094],"delay":157.2} +{"session_id":"sess-64dda106adb1","input_length":142,"output_length":172,"hash_ids":[1560095],"delay":613.2} +{"session_id":"sess-64dda106adb1","input_length":340,"output_length":258,"hash_ids":[1560096],"delay":297.4} +{"session_id":"sess-64dda106adb1","input_length":2516,"output_length":1162,"hash_ids":[1560097,1560098,1560099,1560100,1560101],"delay":5422.4} +{"session_id":"sess-64dda106adb1","input_length":1675,"output_length":156,"hash_ids":[1560102,1560103,1560104,1560105],"delay":10671.9} +{"session_id":"sess-64dda106adb1","input_length":525,"output_length":133,"hash_ids":[1560106,1560107],"delay":594.8} +{"session_id":"sess-64dda106adb1","input_length":1624,"output_length":30,"hash_ids":[1560108,1560109,1560110,1560111],"delay":725.1} +{"session_id":"sess-58aba44dce75","input_length":28373,"output_length":351,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1568032,1568033,1568034,1568035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-58aba44dce75","input_length":77,"output_length":51,"hash_ids":[1568036],"delay":6123.5} +{"session_id":"sess-58aba44dce75","input_length":768,"output_length":273,"hash_ids":[1568037,1568038],"delay":785.9} +{"session_id":"sess-58aba44dce75","input_length":812,"output_length":120,"hash_ids":[1568039,1568040],"delay":30835.8} +{"session_id":"sess-58aba44dce75","input_length":506,"output_length":108,"hash_ids":[1568041],"delay":19352.1} +{"session_id":"sess-58aba44dce75","input_length":501,"output_length":152,"hash_ids":[1568042],"delay":1243.5} +{"session_id":"sess-58aba44dce75","input_length":1025,"output_length":334,"hash_ids":[1568043,1568044,1568045],"delay":797.1} +{"session_id":"sess-58aba44dce75","input_length":422,"output_length":126,"hash_ids":[1568046],"delay":1464.6} +{"session_id":"sess-58aba44dce75","input_length":2737,"output_length":64,"hash_ids":[1568047,1568048,1568049,1568050,1568051,1568052],"delay":1957.4} +{"session_id":"sess-58aba44dce75","input_length":365,"output_length":190,"hash_ids":[1568053],"delay":3414.1} +{"session_id":"sess-58aba44dce75","input_length":449,"output_length":103,"hash_ids":[1568054],"delay":787.9} +{"session_id":"sess-58aba44dce75","input_length":1135,"output_length":49,"hash_ids":[1568055,1568056,1568057],"delay":538.6} +{"session_id":"sess-58aba44dce75","input_length":85,"output_length":58,"hash_ids":[1568058],"delay":1747.6} +{"session_id":"sess-58aba44dce75","input_length":612,"output_length":864,"hash_ids":[1568059,1568060],"delay":2894.4} +{"session_id":"sess-58aba44dce75","input_length":173,"output_length":39,"hash_ids":[1568061],"delay":5547.4} +{"session_id":"sess-58aba44dce75","input_length":171,"output_length":100,"hash_ids":[1568062],"delay":845.9} +{"session_id":"sess-58aba44dce75","input_length":1795,"output_length":934,"hash_ids":[1568063,1568064,1568065,1568066],"delay":1363.1} +{"session_id":"sess-58aba44dce75","input_length":515,"output_length":325,"hash_ids":[1568067,1568068],"delay":787.2} +{"session_id":"sess-58aba44dce75","input_length":1301,"output_length":74,"hash_ids":[1568069,1568070,1568071],"delay":10583.3} +{"session_id":"sess-58aba44dce75","input_length":448,"output_length":179,"hash_ids":[1568072],"delay":74.4} +{"session_id":"sess-58aba44dce75","input_length":1247,"output_length":424,"hash_ids":[1568073,1568074,1568075],"delay":4732.1} +{"session_id":"sess-58aba44dce75","input_length":1717,"output_length":1144,"hash_ids":[1568076,1568077,1568078,1568079],"delay":1527.0} +{"session_id":"sess-58aba44dce75","input_length":2223,"output_length":66,"hash_ids":[1568080,1568081,1568082,1568083,1568084],"delay":393.3} +{"session_id":"sess-58aba44dce75","input_length":1856,"output_length":453,"hash_ids":[1568085,1568086,1568087,1568088],"delay":354.3} +{"session_id":"sess-c7ec6296005a","input_length":28025,"output_length":288,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1572032,1572033,1572034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c7ec6296005a","input_length":493,"output_length":572,"hash_ids":[1572035],"delay":922.0} +{"session_id":"sess-c7ec6296005a","input_length":618,"output_length":305,"hash_ids":[1572036,1572037],"delay":721.2} +{"session_id":"sess-c7ec6296005a","input_length":1023,"output_length":416,"hash_ids":[1572038,1572039],"delay":1323.0} +{"session_id":"sess-926968f83a54","input_length":27520,"output_length":93,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1576032,1576033],"timestamp":0.0,"group_id":6} +{"session_id":"sess-926968f83a54","input_length":694,"output_length":324,"hash_ids":[1576034,1576035],"delay":1733.7} +{"session_id":"sess-926968f83a54","input_length":569,"output_length":84,"hash_ids":[1576036,1576037],"delay":1299.0} +{"session_id":"sess-926968f83a54","input_length":121,"output_length":255,"hash_ids":[1576038],"delay":41990.1} +{"session_id":"sess-926968f83a54","input_length":1568,"output_length":76,"hash_ids":[1576039,1576040,1576041,1576042],"delay":12481.5} +{"session_id":"sess-926968f83a54","input_length":71,"output_length":164,"hash_ids":[1576043],"delay":2311.2} +{"session_id":"sess-926968f83a54","input_length":302,"output_length":47,"hash_ids":[1576044],"delay":717.9} +{"session_id":"sess-926968f83a54","input_length":670,"output_length":133,"hash_ids":[1576045,1576046],"delay":1053.0} +{"session_id":"sess-926968f83a54","input_length":1798,"output_length":86,"hash_ids":[1576047,1576048,1576049,1576050],"delay":1094.3} +{"session_id":"sess-926968f83a54","input_length":2983,"output_length":67,"hash_ids":[1576051,1576052,1576053,1576054,1576055,1576056],"delay":1230.6} +{"session_id":"sess-926968f83a54","input_length":580,"output_length":113,"hash_ids":[1576057,1576058],"delay":3051.4} +{"session_id":"sess-926968f83a54","input_length":727,"output_length":30,"hash_ids":[1576059,1576060],"delay":32289.6} +{"session_id":"sess-926968f83a54","input_length":149,"output_length":476,"hash_ids":[1576061],"delay":30850.5} +{"session_id":"sess-926968f83a54","input_length":670,"output_length":55,"hash_ids":[1576062,1576063],"delay":8759.1} +{"session_id":"sess-926968f83a54","input_length":875,"output_length":190,"hash_ids":[1576064,1576065],"delay":31486.4} +{"session_id":"sess-926968f83a54","input_length":1711,"output_length":243,"hash_ids":[1576066,1576067,1576068,1576069],"delay":953.4} +{"session_id":"sess-926968f83a54","input_length":1706,"output_length":237,"hash_ids":[1576070,1576071,1576072,1576073],"delay":2782.1} +{"session_id":"sess-926968f83a54","input_length":371,"output_length":49,"hash_ids":[1576074],"delay":799.2} +{"session_id":"sess-926968f83a54","input_length":1607,"output_length":181,"hash_ids":[1576075,1576076,1576077,1576078],"delay":8618.6} +{"session_id":"sess-926968f83a54","input_length":268,"output_length":30,"hash_ids":[1576079],"delay":1201.0} +{"session_id":"sess-926968f83a54","input_length":608,"output_length":262,"hash_ids":[1576080,1576081],"delay":24042.7} +{"session_id":"sess-926968f83a54","input_length":876,"output_length":166,"hash_ids":[1576082,1576083],"delay":145.8} +{"session_id":"sess-926968f83a54","input_length":1178,"output_length":65,"hash_ids":[1576084,1576085,1576086],"delay":1500.9} +{"session_id":"sess-926968f83a54","input_length":1226,"output_length":475,"hash_ids":[1576087,1576088,1576089],"delay":284.4} +{"session_id":"sess-926968f83a54","input_length":1050,"output_length":545,"hash_ids":[1576090,1576091,1576092],"delay":23124.5} +{"session_id":"sess-926968f83a54","input_length":867,"output_length":149,"hash_ids":[1576093,1576094],"delay":5645.7} +{"session_id":"sess-926968f83a54","input_length":197,"output_length":214,"hash_ids":[1576095],"delay":4698.8} +{"session_id":"sess-926968f83a54","input_length":482,"output_length":502,"hash_ids":[1576096],"delay":1188.1} +{"session_id":"sess-926968f83a54","input_length":644,"output_length":39,"hash_ids":[1576097,1576098],"delay":36332.2} +{"session_id":"sess-926968f83a54","input_length":333,"output_length":447,"hash_ids":[1576099],"delay":414.0} +{"session_id":"sess-926968f83a54","input_length":2966,"output_length":625,"hash_ids":[1576100,1576101,1576102,1576103,1576104,1576105],"delay":588.6} +{"session_id":"sess-926968f83a54","input_length":226,"output_length":205,"hash_ids":[1576106],"delay":266.2} +{"session_id":"sess-926968f83a54","input_length":637,"output_length":254,"hash_ids":[1576107,1576108],"delay":28157.4} +{"session_id":"sess-926968f83a54","input_length":424,"output_length":76,"hash_ids":[1576109],"delay":370.4} +{"session_id":"sess-926968f83a54","input_length":83,"output_length":321,"hash_ids":[1576110],"delay":200.2} +{"session_id":"sess-926968f83a54","input_length":915,"output_length":335,"hash_ids":[1576111,1576112],"delay":331.5} +{"session_id":"sess-03e261aa7718","input_length":31605,"output_length":671,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1580032,1580033,1580034,1580035,1580036,1580037,1580038,1580039,1580040,1580041],"timestamp":0.0,"group_id":3} +{"session_id":"sess-03e261aa7718","input_length":1603,"output_length":210,"hash_ids":[1580042,1580043,1580044,1580045],"delay":25571.4} +{"session_id":"sess-03e261aa7718","input_length":317,"output_length":667,"hash_ids":[1580046],"delay":22928.3} +{"session_id":"sess-03e261aa7718","input_length":1016,"output_length":94,"hash_ids":[1580047,1580048],"delay":2786.9} +{"session_id":"sess-03e261aa7718","input_length":218,"output_length":96,"hash_ids":[1580049],"delay":6871.1} +{"session_id":"sess-03e261aa7718","input_length":810,"output_length":130,"hash_ids":[1580050,1580051],"delay":1244.2} +{"session_id":"sess-03e261aa7718","input_length":800,"output_length":248,"hash_ids":[1580052,1580053],"delay":879.0} +{"session_id":"sess-03e261aa7718","input_length":2217,"output_length":204,"hash_ids":[1580054,1580055,1580056,1580057,1580058],"delay":15304.9} +{"session_id":"sess-03e261aa7718","input_length":1751,"output_length":828,"hash_ids":[1580059,1580060,1580061,1580062],"delay":426.3} +{"session_id":"sess-03e261aa7718","input_length":509,"output_length":260,"hash_ids":[1580063],"delay":222.1} +{"session_id":"sess-03e261aa7718","input_length":622,"output_length":406,"hash_ids":[1580064,1580065],"delay":1360.6} +{"session_id":"sess-03e261aa7718","input_length":1334,"output_length":392,"hash_ids":[1580066,1580067,1580068],"delay":2006.8} +{"session_id":"sess-03e261aa7718","input_length":287,"output_length":84,"hash_ids":[1580069],"delay":6321.1} +{"session_id":"sess-03e261aa7718","input_length":283,"output_length":78,"hash_ids":[1580070],"delay":3282.6} +{"session_id":"sess-03e261aa7718","input_length":782,"output_length":254,"hash_ids":[1580071,1580072],"delay":1590.4} +{"session_id":"sess-03e261aa7718","input_length":438,"output_length":430,"hash_ids":[1580073],"delay":770.3} +{"session_id":"sess-03e261aa7718","input_length":1796,"output_length":295,"hash_ids":[1580074,1580075,1580076,1580077],"delay":2045.6} +{"session_id":"sess-03e261aa7718","input_length":2392,"output_length":346,"hash_ids":[1580078,1580079,1580080,1580081,1580082],"delay":15688.4} +{"session_id":"sess-03e261aa7718","input_length":262,"output_length":133,"hash_ids":[1580083],"delay":455.5} +{"session_id":"sess-03e261aa7718","input_length":1966,"output_length":624,"hash_ids":[1580084,1580085,1580086,1580087],"delay":6370.9} +{"session_id":"sess-03e261aa7718","input_length":880,"output_length":167,"hash_ids":[1580088,1580089],"delay":4039.1} +{"session_id":"sess-03e261aa7718","input_length":492,"output_length":34,"hash_ids":[1580090],"delay":1218.5} +{"session_id":"sess-03e261aa7718","input_length":693,"output_length":506,"hash_ids":[1580091,1580092],"delay":3613.3} +{"session_id":"sess-03e261aa7718","input_length":536,"output_length":1182,"hash_ids":[1580093,1580094],"delay":1029.7} +{"session_id":"sess-03e261aa7718","input_length":1044,"output_length":66,"hash_ids":[1580095,1580096,1580097],"delay":184.3} +{"session_id":"sess-03e261aa7718","input_length":862,"output_length":257,"hash_ids":[1580098,1580099],"delay":634.6} +{"session_id":"sess-03e261aa7718","input_length":565,"output_length":281,"hash_ids":[1580100,1580101],"delay":1687.6} +{"session_id":"sess-936a621cf321","input_length":27920,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,1584032,1584033,1584034],"timestamp":0.0,"group_id":39} +{"session_id":"sess-2755489e8ea1","input_length":28293,"output_length":165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1588032,1588033,1588034,1588035],"timestamp":0.0,"group_id":5} +{"session_id":"sess-2755489e8ea1","input_length":309,"output_length":299,"hash_ids":[1588036],"delay":3085.1} +{"session_id":"sess-2755489e8ea1","input_length":898,"output_length":519,"hash_ids":[1588037,1588038],"delay":16936.2} +{"session_id":"sess-2755489e8ea1","input_length":1817,"output_length":285,"hash_ids":[1588039,1588040,1588041,1588042],"delay":1200.9} +{"session_id":"sess-bce5edd3583f","input_length":29898,"output_length":263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1592032,1592033,1592034,1592035,1592036,1592037,1592038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bce5edd3583f","input_length":2110,"output_length":1259,"hash_ids":[1592039,1592040,1592041,1592042,1592043],"delay":5547.6} +{"session_id":"sess-bce5edd3583f","input_length":2809,"output_length":142,"hash_ids":[1592044,1592045,1592046,1592047,1592048,1592049],"delay":906.6} +{"session_id":"sess-bce5edd3583f","input_length":2741,"output_length":122,"hash_ids":[1592050,1592051,1592052,1592053,1592054,1592055],"delay":542.8} +{"session_id":"sess-bce5edd3583f","input_length":2107,"output_length":90,"hash_ids":[1592056,1592057,1592058,1592059,1592060],"delay":697.0} +{"session_id":"sess-bce5edd3583f","input_length":464,"output_length":415,"hash_ids":[1592061],"delay":371.8} +{"session_id":"sess-bce5edd3583f","input_length":714,"output_length":113,"hash_ids":[1592062,1592063],"delay":734.4} +{"session_id":"sess-bce5edd3583f","input_length":470,"output_length":53,"hash_ids":[1592064],"delay":33984.0} +{"session_id":"sess-bce5edd3583f","input_length":526,"output_length":108,"hash_ids":[1592065,1592066],"delay":596.5} +{"session_id":"sess-bce5edd3583f","input_length":943,"output_length":125,"hash_ids":[1592067,1592068],"delay":4143.3} +{"session_id":"sess-bce5edd3583f","input_length":511,"output_length":312,"hash_ids":[1592069],"delay":2086.9} +{"session_id":"sess-bce5edd3583f","input_length":1836,"output_length":190,"hash_ids":[1592070,1592071,1592072,1592073],"delay":152.2} +{"session_id":"sess-bce5edd3583f","input_length":349,"output_length":399,"hash_ids":[1592074],"delay":1133.9} +{"session_id":"sess-bce5edd3583f","input_length":1839,"output_length":246,"hash_ids":[1592075,1592076,1592077,1592078],"delay":12203.0} +{"session_id":"sess-bce5edd3583f","input_length":861,"output_length":237,"hash_ids":[1592079,1592080],"delay":3512.8} +{"session_id":"sess-bce5edd3583f","input_length":406,"output_length":204,"hash_ids":[1592081],"delay":481.8} +{"session_id":"sess-bce5edd3583f","input_length":1044,"output_length":74,"hash_ids":[1592082,1592083,1592084],"delay":7034.8} +{"session_id":"sess-bce5edd3583f","input_length":347,"output_length":1048,"hash_ids":[1592085],"delay":296.9} +{"session_id":"sess-bce5edd3583f","input_length":925,"output_length":659,"hash_ids":[1592086,1592087],"delay":10324.1} +{"session_id":"sess-bce5edd3583f","input_length":544,"output_length":257,"hash_ids":[1592088,1592089],"delay":31591.9} +{"session_id":"sess-bce5edd3583f","input_length":2345,"output_length":316,"hash_ids":[1592090,1592091,1592092,1592093,1592094],"delay":673.9} +{"session_id":"sess-bce5edd3583f","input_length":346,"output_length":148,"hash_ids":[1592095],"delay":295.2} +{"session_id":"sess-bce5edd3583f","input_length":1598,"output_length":330,"hash_ids":[1592096,1592097,1592098,1592099],"delay":10118.6} +{"session_id":"sess-a98f5bb86b2d","input_length":35389,"output_length":339,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1596032,1596033,1596034,1596035,1596036,1596037,1596038,1596039,1596040,1596041,1596042,1596043,1596044,1596045,1596046,1596047,1596048,1596049],"timestamp":0.0,"group_id":7} +{"session_id":"sess-a98f5bb86b2d","input_length":798,"output_length":116,"hash_ids":[1596050,1596051],"delay":397.2} +{"session_id":"sess-a98f5bb86b2d","input_length":386,"output_length":138,"hash_ids":[1596052],"delay":2730.5} +{"session_id":"sess-a98f5bb86b2d","input_length":246,"output_length":30,"hash_ids":[1596053],"delay":23970.2} +{"session_id":"sess-a98f5bb86b2d","input_length":1258,"output_length":684,"hash_ids":[1596054,1596055,1596056],"delay":20834.2} +{"session_id":"sess-a98f5bb86b2d","input_length":1262,"output_length":228,"hash_ids":[1596057,1596058,1596059],"delay":1753.1} +{"session_id":"sess-a98f5bb86b2d","input_length":769,"output_length":451,"hash_ids":[1596060,1596061],"delay":45772.7} +{"session_id":"sess-a98f5bb86b2d","input_length":794,"output_length":113,"hash_ids":[1596062,1596063],"delay":513.1} +{"session_id":"sess-a98f5bb86b2d","input_length":1036,"output_length":192,"hash_ids":[1596064,1596065,1596066],"delay":175.2} +{"session_id":"sess-a98f5bb86b2d","input_length":2804,"output_length":334,"hash_ids":[1596067,1596068,1596069,1596070,1596071,1596072],"delay":813.4} +{"session_id":"sess-a98f5bb86b2d","input_length":130,"output_length":191,"hash_ids":[1596073],"delay":1392.9} +{"session_id":"sess-a98f5bb86b2d","input_length":203,"output_length":121,"hash_ids":[1596074],"delay":78.1} +{"session_id":"sess-a98f5bb86b2d","input_length":2848,"output_length":48,"hash_ids":[1596075,1596076,1596077,1596078,1596079,1596080],"delay":268.4} +{"session_id":"sess-3474645bd87f","input_length":30146,"output_length":154,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1600032,1600033,1600034,1600035,1600036,1600037,1600038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3474645bd87f","input_length":969,"output_length":194,"hash_ids":[1600039,1600040],"delay":498.6} +{"session_id":"sess-3474645bd87f","input_length":572,"output_length":331,"hash_ids":[1600041,1600042],"delay":17755.9} +{"session_id":"sess-3474645bd87f","input_length":382,"output_length":679,"hash_ids":[1600043],"delay":227.2} +{"session_id":"sess-3474645bd87f","input_length":394,"output_length":597,"hash_ids":[1600044],"delay":768.4} +{"session_id":"sess-3474645bd87f","input_length":801,"output_length":51,"hash_ids":[1600045,1600046],"delay":27569.5} +{"session_id":"sess-3474645bd87f","input_length":670,"output_length":163,"hash_ids":[1600047,1600048],"delay":2128.9} +{"session_id":"sess-3474645bd87f","input_length":1069,"output_length":30,"hash_ids":[1600049,1600050,1600051],"delay":13260.0} +{"session_id":"sess-3474645bd87f","input_length":839,"output_length":30,"hash_ids":[1600052,1600053],"delay":22857.2} +{"session_id":"sess-3474645bd87f","input_length":1017,"output_length":121,"hash_ids":[1600054,1600055],"delay":29477.3} +{"session_id":"sess-3474645bd87f","input_length":1508,"output_length":254,"hash_ids":[1600056,1600057,1600058],"delay":1143.7} +{"session_id":"sess-3474645bd87f","input_length":524,"output_length":109,"hash_ids":[1600059,1600060],"delay":2480.2} +{"session_id":"sess-3474645bd87f","input_length":426,"output_length":154,"hash_ids":[1600061],"delay":2735.7} +{"session_id":"sess-3474645bd87f","input_length":1974,"output_length":63,"hash_ids":[1600062,1600063,1600064,1600065],"delay":176.0} +{"session_id":"sess-3474645bd87f","input_length":586,"output_length":262,"hash_ids":[1600066,1600067],"delay":503.9} +{"session_id":"sess-3474645bd87f","input_length":845,"output_length":1070,"hash_ids":[1600068,1600069],"delay":864.1} +{"session_id":"sess-3474645bd87f","input_length":596,"output_length":679,"hash_ids":[1600070,1600071],"delay":1510.3} +{"session_id":"sess-3474645bd87f","input_length":2433,"output_length":76,"hash_ids":[1600072,1600073,1600074,1600075,1600076],"delay":18769.8} +{"session_id":"sess-3474645bd87f","input_length":1072,"output_length":76,"hash_ids":[1600077,1600078,1600079],"delay":11659.6} +{"session_id":"sess-3474645bd87f","input_length":1114,"output_length":427,"hash_ids":[1600080,1600081,1600082],"delay":5486.4} +{"session_id":"sess-3474645bd87f","input_length":1719,"output_length":161,"hash_ids":[1600083,1600084,1600085,1600086],"delay":28992.4} +{"session_id":"sess-3474645bd87f","input_length":243,"output_length":218,"hash_ids":[1600087],"delay":206.9} +{"session_id":"sess-3474645bd87f","input_length":1798,"output_length":480,"hash_ids":[1600088,1600089,1600090,1600091],"delay":4534.4} +{"session_id":"sess-3474645bd87f","input_length":2262,"output_length":558,"hash_ids":[1600092,1600093,1600094,1600095,1600096],"delay":29934.3} +{"session_id":"sess-3474645bd87f","input_length":530,"output_length":184,"hash_ids":[1600097,1600098],"delay":2050.6} +{"session_id":"sess-3474645bd87f","input_length":842,"output_length":70,"hash_ids":[1600099,1600100],"delay":495.1} +{"session_id":"sess-3474645bd87f","input_length":654,"output_length":146,"hash_ids":[1600101,1600102],"delay":187.5} +{"session_id":"sess-3474645bd87f","input_length":1157,"output_length":103,"hash_ids":[1600103,1600104,1600105],"delay":918.3} +{"session_id":"sess-3474645bd87f","input_length":923,"output_length":114,"hash_ids":[1600106,1600107],"delay":270.2} +{"session_id":"sess-7ebf4f7b1e3c","input_length":28850,"output_length":208,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1604032,1604033,1604034,1604035,1604036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7ebf4f7b1e3c","input_length":473,"output_length":732,"hash_ids":[1604037],"delay":943.7} +{"session_id":"sess-7ebf4f7b1e3c","input_length":2383,"output_length":179,"hash_ids":[1604038,1604039,1604040,1604041,1604042],"delay":3064.5} +{"session_id":"sess-7ebf4f7b1e3c","input_length":822,"output_length":83,"hash_ids":[1604043,1604044],"delay":14891.2} +{"session_id":"sess-7ebf4f7b1e3c","input_length":505,"output_length":706,"hash_ids":[1604045],"delay":1421.6} +{"session_id":"sess-7ebf4f7b1e3c","input_length":1059,"output_length":328,"hash_ids":[1604046,1604047,1604048],"delay":5058.0} +{"session_id":"sess-7ebf4f7b1e3c","input_length":2623,"output_length":454,"hash_ids":[1604049,1604050,1604051,1604052,1604053,1604054],"delay":2043.0} +{"session_id":"sess-7ebf4f7b1e3c","input_length":565,"output_length":425,"hash_ids":[1604055,1604056],"delay":123.4} +{"session_id":"sess-7ebf4f7b1e3c","input_length":132,"output_length":122,"hash_ids":[1604057],"delay":4695.7} +{"session_id":"sess-7ebf4f7b1e3c","input_length":495,"output_length":223,"hash_ids":[1604058],"delay":714.6} +{"session_id":"sess-7ebf4f7b1e3c","input_length":285,"output_length":186,"hash_ids":[1604059],"delay":3271.0} +{"session_id":"sess-340cf0ee0f1b","input_length":27451,"output_length":173,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1608032,1608033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-340cf0ee0f1b","input_length":1492,"output_length":272,"hash_ids":[1608034,1608035,1608036],"delay":1867.3} +{"session_id":"sess-340cf0ee0f1b","input_length":918,"output_length":612,"hash_ids":[1608037,1608038],"delay":1027.9} +{"session_id":"sess-340cf0ee0f1b","input_length":825,"output_length":552,"hash_ids":[1608039,1608040],"delay":305.5} +{"session_id":"sess-340cf0ee0f1b","input_length":1866,"output_length":425,"hash_ids":[1608041,1608042,1608043,1608044],"delay":418.5} +{"session_id":"sess-340cf0ee0f1b","input_length":128,"output_length":338,"hash_ids":[1608045],"delay":873.2} +{"session_id":"sess-340cf0ee0f1b","input_length":1016,"output_length":44,"hash_ids":[1608046,1608047],"delay":55693.5} +{"session_id":"sess-340cf0ee0f1b","input_length":208,"output_length":288,"hash_ids":[1608048],"delay":1594.2} +{"session_id":"sess-340cf0ee0f1b","input_length":498,"output_length":135,"hash_ids":[1608049],"delay":52446.9} +{"session_id":"sess-340cf0ee0f1b","input_length":1575,"output_length":417,"hash_ids":[1608050,1608051,1608052,1608053],"delay":14248.3} +{"session_id":"sess-340cf0ee0f1b","input_length":2562,"output_length":717,"hash_ids":[1608054,1608055,1608056,1608057,1608058,1608059],"delay":6768.1} +{"session_id":"sess-09a6fa41cf3f","input_length":26419,"output_length":42,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851],"timestamp":0.0,"group_id":39} +{"session_id":"sess-09a6fa41cf3f","input_length":1651,"output_length":504,"hash_ids":[1608060,1608061,1608062,1608063],"delay":171.0} +{"session_id":"sess-09a6fa41cf3f","input_length":136,"output_length":161,"hash_ids":[1608064],"delay":1371.4} +{"session_id":"sess-09a6fa41cf3f","input_length":1270,"output_length":178,"hash_ids":[1608065,1608066,1608067],"delay":13663.5} +{"session_id":"sess-09a6fa41cf3f","input_length":577,"output_length":105,"hash_ids":[1608068,1608069],"delay":455.3} +{"session_id":"sess-f3fbef980a4c","input_length":28176,"output_length":85,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1616032,1616033,1616034,1616035],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f3fbef980a4c","input_length":374,"output_length":727,"hash_ids":[1616036],"delay":9949.6} +{"session_id":"sess-f3fbef980a4c","input_length":812,"output_length":136,"hash_ids":[1616037,1616038],"delay":9112.7} +{"session_id":"sess-f3fbef980a4c","input_length":1702,"output_length":360,"hash_ids":[1616039,1616040,1616041,1616042],"delay":18208.8} +{"session_id":"sess-f3fbef980a4c","input_length":905,"output_length":179,"hash_ids":[1616043,1616044],"delay":3661.7} +{"session_id":"sess-caf9073bab45","input_length":30756,"output_length":74,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1620032,1620033,1620034,1620035,1620036,1620037,1620038,1620039,1620040],"timestamp":0.0,"group_id":1} +{"session_id":"sess-caf9073bab45","input_length":1433,"output_length":301,"hash_ids":[1620041,1620042,1620043],"delay":2794.1} +{"session_id":"sess-caf9073bab45","input_length":280,"output_length":157,"hash_ids":[1620044],"delay":2774.5} +{"session_id":"sess-caf9073bab45","input_length":2388,"output_length":119,"hash_ids":[1620045,1620046,1620047,1620048,1620049],"delay":1209.1} +{"session_id":"sess-caf9073bab45","input_length":572,"output_length":599,"hash_ids":[1620050,1620051],"delay":1749.7} +{"session_id":"sess-caf9073bab45","input_length":1581,"output_length":166,"hash_ids":[1620052,1620053,1620054,1620055],"delay":16157.3} +{"session_id":"sess-caf9073bab45","input_length":273,"output_length":56,"hash_ids":[1620056],"delay":81.3} +{"session_id":"sess-caf9073bab45","input_length":1097,"output_length":403,"hash_ids":[1620057,1620058,1620059],"delay":720.7} +{"session_id":"sess-caf9073bab45","input_length":956,"output_length":522,"hash_ids":[1620060,1620061],"delay":8992.5} +{"session_id":"sess-caf9073bab45","input_length":505,"output_length":166,"hash_ids":[1620062],"delay":2710.0} +{"session_id":"sess-caf9073bab45","input_length":467,"output_length":157,"hash_ids":[1620063],"delay":1764.4} +{"session_id":"sess-caf9073bab45","input_length":1990,"output_length":351,"hash_ids":[1620064,1620065,1620066,1620067],"delay":186.2} +{"session_id":"sess-caf9073bab45","input_length":757,"output_length":473,"hash_ids":[1620068,1620069],"delay":20656.4} +{"session_id":"sess-caf9073bab45","input_length":1215,"output_length":125,"hash_ids":[1620070,1620071,1620072],"delay":14518.6} +{"session_id":"sess-caf9073bab45","input_length":141,"output_length":37,"hash_ids":[1620073],"delay":1603.6} +{"session_id":"sess-caf9073bab45","input_length":926,"output_length":191,"hash_ids":[1620074,1620075],"delay":403.2} +{"session_id":"sess-caf9073bab45","input_length":1380,"output_length":323,"hash_ids":[1620076,1620077,1620078],"delay":13869.5} +{"session_id":"sess-caf9073bab45","input_length":2622,"output_length":287,"hash_ids":[1620079,1620080,1620081,1620082,1620083,1620084],"delay":664.2} +{"session_id":"sess-caf9073bab45","input_length":324,"output_length":471,"hash_ids":[1620085],"delay":2155.7} +{"session_id":"sess-caf9073bab45","input_length":456,"output_length":85,"hash_ids":[1620086],"delay":3389.6} +{"session_id":"sess-caf9073bab45","input_length":2167,"output_length":81,"hash_ids":[1620087,1620088,1620089,1620090,1620091],"delay":454.2} +{"session_id":"sess-caf9073bab45","input_length":378,"output_length":142,"hash_ids":[1620092],"delay":1413.7} +{"session_id":"sess-caf9073bab45","input_length":1686,"output_length":315,"hash_ids":[1620093,1620094,1620095,1620096],"delay":361.8} +{"session_id":"sess-caf9073bab45","input_length":1460,"output_length":215,"hash_ids":[1620097,1620098,1620099],"delay":2480.5} +{"session_id":"sess-caf9073bab45","input_length":1562,"output_length":83,"hash_ids":[1620100,1620101,1620102,1620103],"delay":732.9} +{"session_id":"sess-caf9073bab45","input_length":164,"output_length":141,"hash_ids":[1620104],"delay":1083.7} +{"session_id":"sess-caf9073bab45","input_length":858,"output_length":161,"hash_ids":[1620105,1620106],"delay":556.4} +{"session_id":"sess-caf9073bab45","input_length":582,"output_length":520,"hash_ids":[1620107,1620108],"delay":276.6} +{"session_id":"sess-1c8f52ede85c","input_length":30395,"output_length":114,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1624032,1624033,1624034,1624035,1624036,1624037,1624038,1624039],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1c8f52ede85c","input_length":376,"output_length":161,"hash_ids":[1624040],"delay":520.5} +{"session_id":"sess-1c8f52ede85c","input_length":2307,"output_length":134,"hash_ids":[1624041,1624042,1624043,1624044,1624045],"delay":1386.8} +{"session_id":"sess-1c8f52ede85c","input_length":998,"output_length":102,"hash_ids":[1624046,1624047],"delay":643.6} +{"session_id":"sess-1c8f52ede85c","input_length":1030,"output_length":492,"hash_ids":[1624048,1624049,1624050],"delay":797.5} +{"session_id":"sess-1c8f52ede85c","input_length":243,"output_length":296,"hash_ids":[1624051],"delay":6357.4} +{"session_id":"sess-1c8f52ede85c","input_length":2593,"output_length":145,"hash_ids":[1624052,1624053,1624054,1624055,1624056,1624057],"delay":602.8} +{"session_id":"sess-1c8f52ede85c","input_length":2250,"output_length":86,"hash_ids":[1624058,1624059,1624060,1624061,1624062],"delay":309.2} +{"session_id":"sess-1c8f52ede85c","input_length":1232,"output_length":98,"hash_ids":[1624063,1624064,1624065],"delay":160.9} +{"session_id":"sess-1c8f52ede85c","input_length":161,"output_length":359,"hash_ids":[1624066],"delay":1086.0} +{"session_id":"sess-1c8f52ede85c","input_length":372,"output_length":303,"hash_ids":[1624067],"delay":921.6} +{"session_id":"sess-1c8f52ede85c","input_length":399,"output_length":271,"hash_ids":[1624068],"delay":2016.7} +{"session_id":"sess-1c8f52ede85c","input_length":2494,"output_length":156,"hash_ids":[1624069,1624070,1624071,1624072,1624073],"delay":1118.3} +{"session_id":"sess-321472b2a81b","input_length":27318,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1628032,1628033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-321472b2a81b","input_length":611,"output_length":38,"hash_ids":[1628034,1628035],"delay":15363.5} +{"session_id":"sess-321472b2a81b","input_length":118,"output_length":180,"hash_ids":[1628036],"delay":2722.3} +{"session_id":"sess-321472b2a81b","input_length":2071,"output_length":178,"hash_ids":[1628037,1628038,1628039,1628040,1628041],"delay":16249.9} +{"session_id":"sess-321472b2a81b","input_length":420,"output_length":303,"hash_ids":[1628042],"delay":667.1} +{"session_id":"sess-321472b2a81b","input_length":353,"output_length":532,"hash_ids":[1628043],"delay":1864.5} +{"session_id":"sess-321472b2a81b","input_length":62,"output_length":73,"hash_ids":[1628044],"delay":2105.4} +{"session_id":"sess-321472b2a81b","input_length":785,"output_length":548,"hash_ids":[1628045,1628046],"delay":561.9} +{"session_id":"sess-321472b2a81b","input_length":317,"output_length":291,"hash_ids":[1628047],"delay":5674.4} +{"session_id":"sess-321472b2a81b","input_length":713,"output_length":483,"hash_ids":[1628048,1628049],"delay":1563.5} +{"session_id":"sess-321472b2a81b","input_length":1006,"output_length":439,"hash_ids":[1628050,1628051],"delay":2412.6} +{"session_id":"sess-321472b2a81b","input_length":1392,"output_length":154,"hash_ids":[1628052,1628053,1628054],"delay":262.2} +{"session_id":"sess-321472b2a81b","input_length":876,"output_length":328,"hash_ids":[1628055,1628056],"delay":20496.0} +{"session_id":"sess-321472b2a81b","input_length":1197,"output_length":84,"hash_ids":[1628057,1628058,1628059],"delay":496.2} +{"session_id":"sess-321472b2a81b","input_length":1563,"output_length":401,"hash_ids":[1628060,1628061,1628062,1628063],"delay":617.6} +{"session_id":"sess-321472b2a81b","input_length":543,"output_length":76,"hash_ids":[1628064,1628065],"delay":273.9} +{"session_id":"sess-321472b2a81b","input_length":1009,"output_length":1367,"hash_ids":[1628066,1628067],"delay":897.5} +{"session_id":"sess-321472b2a81b","input_length":738,"output_length":298,"hash_ids":[1628068,1628069],"delay":17738.7} +{"session_id":"sess-321472b2a81b","input_length":426,"output_length":260,"hash_ids":[1628070],"delay":2136.4} +{"session_id":"sess-321472b2a81b","input_length":1464,"output_length":126,"hash_ids":[1628071,1628072,1628073],"delay":230.2} +{"session_id":"sess-321472b2a81b","input_length":844,"output_length":532,"hash_ids":[1628074,1628075],"delay":1179.6} +{"session_id":"sess-321472b2a81b","input_length":1191,"output_length":796,"hash_ids":[1628076,1628077,1628078],"delay":22966.3} +{"session_id":"sess-321472b2a81b","input_length":322,"output_length":1101,"hash_ids":[1628079],"delay":786.2} +{"session_id":"sess-321472b2a81b","input_length":1224,"output_length":352,"hash_ids":[1628080,1628081,1628082],"delay":1378.8} +{"session_id":"sess-321472b2a81b","input_length":1348,"output_length":83,"hash_ids":[1628083,1628084,1628085],"delay":768.6} +{"session_id":"sess-321472b2a81b","input_length":1274,"output_length":164,"hash_ids":[1628086,1628087,1628088],"delay":572.8} +{"session_id":"sess-321472b2a81b","input_length":1100,"output_length":302,"hash_ids":[1628089,1628090,1628091],"delay":1407.2} +{"session_id":"sess-321472b2a81b","input_length":1222,"output_length":74,"hash_ids":[1628092,1628093,1628094],"delay":360.4} +{"session_id":"sess-321472b2a81b","input_length":138,"output_length":325,"hash_ids":[1628095],"delay":9037.8} +{"session_id":"sess-321472b2a81b","input_length":1893,"output_length":93,"hash_ids":[1628096,1628097,1628098,1628099],"delay":438.2} +{"session_id":"sess-c6f10caaa4f2","input_length":29846,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1632032,1632033,1632034,1632035,1632036,1632037,1632038],"timestamp":0.0,"group_id":5} +{"session_id":"sess-c6f10caaa4f2","input_length":476,"output_length":191,"hash_ids":[1632039],"delay":940.5} +{"session_id":"sess-c6f10caaa4f2","input_length":595,"output_length":596,"hash_ids":[1632040,1632041],"delay":896.7} +{"session_id":"sess-c6f10caaa4f2","input_length":1991,"output_length":265,"hash_ids":[1632042,1632043,1632044,1632045],"delay":606.9} +{"session_id":"sess-c6f10caaa4f2","input_length":2921,"output_length":1464,"hash_ids":[1632046,1632047,1632048,1632049,1632050,1632051],"delay":355.8} +{"session_id":"sess-c6f10caaa4f2","input_length":566,"output_length":133,"hash_ids":[1632052,1632053],"delay":5520.6} +{"session_id":"sess-c6f10caaa4f2","input_length":1387,"output_length":181,"hash_ids":[1632054,1632055,1632056],"delay":861.9} +{"session_id":"sess-c6f10caaa4f2","input_length":2102,"output_length":347,"hash_ids":[1632057,1632058,1632059,1632060,1632061],"delay":8413.9} +{"session_id":"sess-c6f10caaa4f2","input_length":30,"output_length":368,"hash_ids":[1632062],"delay":1383.1} +{"session_id":"sess-c6f10caaa4f2","input_length":883,"output_length":103,"hash_ids":[1632063,1632064],"delay":27813.4} +{"session_id":"sess-c6f10caaa4f2","input_length":1074,"output_length":216,"hash_ids":[1632065,1632066,1632067],"delay":2276.4} +{"session_id":"sess-fb847340b93d","input_length":27543,"output_length":71,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1636032,1636033],"timestamp":0.0,"group_id":3} +{"session_id":"sess-fb847340b93d","input_length":1550,"output_length":100,"hash_ids":[1636034,1636035,1636036,1636037],"delay":1019.7} +{"session_id":"sess-fb847340b93d","input_length":366,"output_length":169,"hash_ids":[1636038],"delay":2200.9} +{"session_id":"sess-fb847340b93d","input_length":955,"output_length":600,"hash_ids":[1636039,1636040],"delay":15907.0} +{"session_id":"sess-fb847340b93d","input_length":995,"output_length":98,"hash_ids":[1636041,1636042],"delay":1458.5} +{"session_id":"sess-fb847340b93d","input_length":2596,"output_length":135,"hash_ids":[1636043,1636044,1636045,1636046,1636047,1636048],"delay":4206.5} +{"session_id":"sess-fb847340b93d","input_length":2133,"output_length":154,"hash_ids":[1636049,1636050,1636051,1636052,1636053],"delay":4360.7} +{"session_id":"sess-fb847340b93d","input_length":776,"output_length":246,"hash_ids":[1636054,1636055],"delay":59735.9} +{"session_id":"sess-fb847340b93d","input_length":145,"output_length":222,"hash_ids":[1636056],"delay":2839.1} +{"session_id":"sess-fb847340b93d","input_length":443,"output_length":148,"hash_ids":[1636057],"delay":1024.2} +{"session_id":"sess-fb847340b93d","input_length":629,"output_length":62,"hash_ids":[1636058,1636059],"delay":733.6} +{"session_id":"sess-fb847340b93d","input_length":274,"output_length":60,"hash_ids":[1636060],"delay":1763.6} +{"session_id":"sess-fb847340b93d","input_length":1396,"output_length":213,"hash_ids":[1636061,1636062,1636063],"delay":965.7} +{"session_id":"sess-fb847340b93d","input_length":300,"output_length":417,"hash_ids":[1636064],"delay":160.8} +{"session_id":"sess-fb847340b93d","input_length":1446,"output_length":228,"hash_ids":[1636065,1636066,1636067],"delay":435.0} +{"session_id":"sess-fb847340b93d","input_length":1094,"output_length":137,"hash_ids":[1636068,1636069,1636070],"delay":20611.6} +{"session_id":"sess-fb847340b93d","input_length":691,"output_length":30,"hash_ids":[1636071,1636072],"delay":729.4} +{"session_id":"sess-fb847340b93d","input_length":2052,"output_length":207,"hash_ids":[1636073,1636074,1636075,1636076,1636077],"delay":836.9} +{"session_id":"sess-fb847340b93d","input_length":1042,"output_length":450,"hash_ids":[1636078,1636079,1636080],"delay":1708.2} +{"session_id":"sess-fb847340b93d","input_length":1326,"output_length":797,"hash_ids":[1636081,1636082,1636083],"delay":320.2} +{"session_id":"sess-fb847340b93d","input_length":1842,"output_length":301,"hash_ids":[1636084,1636085,1636086,1636087],"delay":8202.7} +{"session_id":"sess-fb847340b93d","input_length":1551,"output_length":153,"hash_ids":[1636088,1636089,1636090,1636091],"delay":245.2} +{"session_id":"sess-fb847340b93d","input_length":526,"output_length":220,"hash_ids":[1636092,1636093],"delay":348.9} +{"session_id":"sess-fb847340b93d","input_length":1959,"output_length":87,"hash_ids":[1636094,1636095,1636096,1636097],"delay":934.2} +{"session_id":"sess-fb847340b93d","input_length":683,"output_length":597,"hash_ids":[1636098,1636099],"delay":268.0} +{"session_id":"sess-fb847340b93d","input_length":390,"output_length":290,"hash_ids":[1636100],"delay":1368.5} +{"session_id":"sess-fb847340b93d","input_length":793,"output_length":318,"hash_ids":[1636101,1636102],"delay":30244.6} +{"session_id":"sess-fb847340b93d","input_length":371,"output_length":45,"hash_ids":[1636103],"delay":823.8} +{"session_id":"sess-fb847340b93d","input_length":663,"output_length":165,"hash_ids":[1636104,1636105],"delay":172.1} +{"session_id":"sess-fb847340b93d","input_length":925,"output_length":140,"hash_ids":[1636106,1636107],"delay":835.0} +{"session_id":"sess-fb847340b93d","input_length":389,"output_length":628,"hash_ids":[1636108],"delay":100.3} +{"session_id":"sess-2652fa18c946","input_length":37511,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1640032,1640033,1640034,1640035,1640036,1640037,1640038,1640039,1640040,1640041,1640042,1640043,1640044,1640045,1640046,1640047,1640048,1640049,1640050,1640051,1640052,1640053],"timestamp":0.0,"group_id":7} +{"session_id":"sess-2652fa18c946","input_length":2106,"output_length":1050,"hash_ids":[1640054,1640055,1640056,1640057,1640058],"delay":2473.1} +{"session_id":"sess-2652fa18c946","input_length":540,"output_length":220,"hash_ids":[1640059,1640060],"delay":71.6} +{"session_id":"sess-2652fa18c946","input_length":1755,"output_length":235,"hash_ids":[1640061,1640062,1640063,1640064],"delay":316.7} +{"session_id":"sess-2652fa18c946","input_length":1261,"output_length":94,"hash_ids":[1640065,1640066,1640067],"delay":11203.3} +{"session_id":"sess-2652fa18c946","input_length":204,"output_length":361,"hash_ids":[1640068],"delay":642.4} +{"session_id":"sess-2652fa18c946","input_length":315,"output_length":112,"hash_ids":[1640069],"delay":13410.3} +{"session_id":"sess-2652fa18c946","input_length":1061,"output_length":778,"hash_ids":[1640070,1640071,1640072],"delay":297.1} +{"session_id":"sess-2652fa18c946","input_length":733,"output_length":48,"hash_ids":[1640073,1640074],"delay":1029.3} +{"session_id":"sess-2652fa18c946","input_length":347,"output_length":556,"hash_ids":[1640075],"delay":10593.1} +{"session_id":"sess-2652fa18c946","input_length":232,"output_length":68,"hash_ids":[1640076],"delay":687.3} +{"session_id":"sess-2652fa18c946","input_length":1815,"output_length":98,"hash_ids":[1640077,1640078,1640079,1640080],"delay":16880.1} +{"session_id":"sess-2652fa18c946","input_length":320,"output_length":272,"hash_ids":[1640081],"delay":2759.0} +{"session_id":"sess-2652fa18c946","input_length":2575,"output_length":213,"hash_ids":[1640082,1640083,1640084,1640085,1640086,1640087],"delay":317.7} +{"session_id":"sess-2652fa18c946","input_length":273,"output_length":79,"hash_ids":[1640088],"delay":878.5} +{"session_id":"sess-2652fa18c946","input_length":667,"output_length":104,"hash_ids":[1640089,1640090],"delay":1496.6} +{"session_id":"sess-2652fa18c946","input_length":2201,"output_length":526,"hash_ids":[1640091,1640092,1640093,1640094,1640095],"delay":11189.8} +{"session_id":"sess-2652fa18c946","input_length":1550,"output_length":553,"hash_ids":[1640096,1640097,1640098,1640099],"delay":953.7} +{"session_id":"sess-2652fa18c946","input_length":872,"output_length":198,"hash_ids":[1640100,1640101],"delay":2451.3} +{"session_id":"sess-b1969ad653ab","input_length":29613,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,1644032,1644033,1644034,1644035,1644036,1644037],"timestamp":0.0,"group_id":22} +{"session_id":"sess-b1969ad653ab","input_length":677,"output_length":146,"hash_ids":[1644038,1644039],"delay":16490.2} +{"session_id":"sess-b1969ad653ab","input_length":67,"output_length":211,"hash_ids":[1644040],"delay":2721.9} +{"session_id":"sess-b1969ad653ab","input_length":772,"output_length":192,"hash_ids":[1644041,1644042],"delay":972.4} +{"session_id":"sess-b1969ad653ab","input_length":360,"output_length":49,"hash_ids":[1644043],"delay":478.7} +{"session_id":"sess-b1969ad653ab","input_length":92,"output_length":222,"hash_ids":[1644044],"delay":1442.6} +{"session_id":"sess-b1969ad653ab","input_length":341,"output_length":199,"hash_ids":[1644045],"delay":648.1} +{"session_id":"sess-b1969ad653ab","input_length":966,"output_length":82,"hash_ids":[1644046,1644047],"delay":716.1} +{"session_id":"sess-b1969ad653ab","input_length":798,"output_length":370,"hash_ids":[1644048,1644049],"delay":1259.8} +{"session_id":"sess-b1969ad653ab","input_length":591,"output_length":113,"hash_ids":[1644050,1644051],"delay":328.6} +{"session_id":"sess-b1969ad653ab","input_length":2546,"output_length":210,"hash_ids":[1644052,1644053,1644054,1644055,1644056],"delay":36439.3} +{"session_id":"sess-b1969ad653ab","input_length":642,"output_length":800,"hash_ids":[1644057,1644058],"delay":781.0} +{"session_id":"sess-b1969ad653ab","input_length":130,"output_length":55,"hash_ids":[1644059],"delay":33263.4} +{"session_id":"sess-b1969ad653ab","input_length":424,"output_length":214,"hash_ids":[1644060],"delay":622.3} +{"session_id":"sess-b1969ad653ab","input_length":1174,"output_length":235,"hash_ids":[1644061,1644062,1644063],"delay":1046.3} +{"session_id":"sess-b1969ad653ab","input_length":259,"output_length":321,"hash_ids":[1644064],"delay":2554.0} +{"session_id":"sess-b1969ad653ab","input_length":1402,"output_length":246,"hash_ids":[1644065,1644066,1644067],"delay":360.0} +{"session_id":"sess-b1969ad653ab","input_length":322,"output_length":680,"hash_ids":[1644068],"delay":477.0} +{"session_id":"sess-b1969ad653ab","input_length":432,"output_length":53,"hash_ids":[1644069],"delay":199.0} +{"session_id":"sess-b1969ad653ab","input_length":1802,"output_length":166,"hash_ids":[1644070,1644071,1644072,1644073],"delay":592.2} +{"session_id":"sess-b1969ad653ab","input_length":159,"output_length":212,"hash_ids":[1644074],"delay":3500.3} +{"session_id":"sess-b1969ad653ab","input_length":932,"output_length":348,"hash_ids":[1644075,1644076],"delay":16895.7} +{"session_id":"sess-b1969ad653ab","input_length":1557,"output_length":231,"hash_ids":[1644077,1644078,1644079,1644080],"delay":2227.6} +{"session_id":"sess-b1969ad653ab","input_length":1024,"output_length":662,"hash_ids":[1644081,1644082],"delay":36987.7} +{"session_id":"sess-b1969ad653ab","input_length":620,"output_length":166,"hash_ids":[1644083,1644084],"delay":5463.1} +{"session_id":"sess-b1969ad653ab","input_length":1200,"output_length":495,"hash_ids":[1644085,1644086,1644087],"delay":1535.9} +{"session_id":"sess-b1969ad653ab","input_length":2513,"output_length":105,"hash_ids":[1644088,1644089,1644090,1644091,1644092],"delay":441.9} +{"session_id":"sess-b1969ad653ab","input_length":228,"output_length":226,"hash_ids":[1644093],"delay":6785.1} +{"session_id":"sess-b1969ad653ab","input_length":2194,"output_length":270,"hash_ids":[1644094,1644095,1644096,1644097,1644098],"delay":4528.7} +{"session_id":"sess-b1969ad653ab","input_length":646,"output_length":620,"hash_ids":[1644099,1644100],"delay":2374.2} +{"session_id":"sess-b1969ad653ab","input_length":1100,"output_length":142,"hash_ids":[1644101,1644102,1644103],"delay":232.2} +{"session_id":"sess-b1969ad653ab","input_length":1457,"output_length":199,"hash_ids":[1644104,1644105,1644106],"delay":193.0} +{"session_id":"sess-de356c2c85b2","input_length":34612,"output_length":108,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1648032,1648033,1648034,1648035,1648036,1648037,1648038,1648039,1648040,1648041,1648042,1648043,1648044,1648045,1648046,1648047],"timestamp":0.0,"group_id":10} +{"session_id":"sess-de356c2c85b2","input_length":622,"output_length":148,"hash_ids":[1648048,1648049],"delay":752.7} +{"session_id":"sess-de356c2c85b2","input_length":397,"output_length":287,"hash_ids":[1648050],"delay":1153.1} +{"session_id":"sess-de356c2c85b2","input_length":208,"output_length":466,"hash_ids":[1648051],"delay":493.2} +{"session_id":"sess-de356c2c85b2","input_length":1215,"output_length":349,"hash_ids":[1648052,1648053,1648054],"delay":25271.0} +{"session_id":"sess-de356c2c85b2","input_length":194,"output_length":1011,"hash_ids":[1648055],"delay":793.3} +{"session_id":"sess-de356c2c85b2","input_length":1272,"output_length":173,"hash_ids":[1648056,1648057,1648058],"delay":212.3} +{"session_id":"sess-de356c2c85b2","input_length":1876,"output_length":118,"hash_ids":[1648059,1648060,1648061,1648062],"delay":7552.6} +{"session_id":"sess-de356c2c85b2","input_length":297,"output_length":370,"hash_ids":[1648063],"delay":2115.0} +{"session_id":"sess-de356c2c85b2","input_length":761,"output_length":426,"hash_ids":[1648064,1648065],"delay":918.0} +{"session_id":"sess-a72f47705119","input_length":26535,"output_length":821,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-a72f47705119","input_length":2417,"output_length":76,"hash_ids":[1648066,1648067,1648068,1648069,1648070],"delay":27584.5} +{"session_id":"sess-a72f47705119","input_length":442,"output_length":704,"hash_ids":[1648071],"delay":5477.8} +{"session_id":"sess-a72f47705119","input_length":564,"output_length":93,"hash_ids":[1648072,1648073],"delay":1162.1} +{"session_id":"sess-a72f47705119","input_length":569,"output_length":133,"hash_ids":[1648074,1648075],"delay":1240.6} +{"session_id":"sess-a72f47705119","input_length":747,"output_length":135,"hash_ids":[1648076,1648077],"delay":936.2} +{"session_id":"sess-a72f47705119","input_length":451,"output_length":30,"hash_ids":[1648078],"delay":608.6} +{"session_id":"sess-a72f47705119","input_length":409,"output_length":48,"hash_ids":[1648079],"delay":27609.8} +{"session_id":"sess-a72f47705119","input_length":2356,"output_length":99,"hash_ids":[1648080,1648081,1648082,1648083,1648084],"delay":17133.9} +{"session_id":"sess-a72f47705119","input_length":2238,"output_length":158,"hash_ids":[1648085,1648086,1648087,1648088,1648089],"delay":2146.4} +{"session_id":"sess-a72f47705119","input_length":419,"output_length":70,"hash_ids":[1648090],"delay":1266.2} +{"session_id":"sess-a72f47705119","input_length":999,"output_length":722,"hash_ids":[1648091,1648092],"delay":852.3} +{"session_id":"sess-a72f47705119","input_length":795,"output_length":159,"hash_ids":[1648093,1648094],"delay":621.0} +{"session_id":"sess-a72f47705119","input_length":196,"output_length":85,"hash_ids":[1648095],"delay":363.7} +{"session_id":"sess-a72f47705119","input_length":267,"output_length":67,"hash_ids":[1648096],"delay":2939.8} +{"session_id":"sess-a72f47705119","input_length":1438,"output_length":176,"hash_ids":[1648097,1648098,1648099],"delay":4309.6} +{"session_id":"sess-a72f47705119","input_length":1010,"output_length":30,"hash_ids":[1648100,1648101],"delay":1507.8} +{"session_id":"sess-a72f47705119","input_length":296,"output_length":312,"hash_ids":[1648102],"delay":470.5} +{"session_id":"sess-a72f47705119","input_length":650,"output_length":290,"hash_ids":[1648103,1648104],"delay":34502.3} +{"session_id":"sess-a72f47705119","input_length":732,"output_length":134,"hash_ids":[1648105,1648106],"delay":1005.4} +{"session_id":"sess-91764b78d6de","input_length":27724,"output_length":457,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1656032,1656033,1656034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-91764b78d6de","input_length":725,"output_length":270,"hash_ids":[1656035,1656036],"delay":2386.8} +{"session_id":"sess-91764b78d6de","input_length":697,"output_length":195,"hash_ids":[1656037,1656038],"delay":2528.8} +{"session_id":"sess-91764b78d6de","input_length":184,"output_length":148,"hash_ids":[1656039],"delay":706.1} +{"session_id":"sess-91764b78d6de","input_length":321,"output_length":147,"hash_ids":[1656040],"delay":4869.8} +{"session_id":"sess-91764b78d6de","input_length":346,"output_length":59,"hash_ids":[1656041],"delay":1110.0} +{"session_id":"sess-91764b78d6de","input_length":2254,"output_length":456,"hash_ids":[1656042,1656043,1656044,1656045,1656046],"delay":128.3} +{"session_id":"sess-91764b78d6de","input_length":801,"output_length":180,"hash_ids":[1656047,1656048],"delay":537.2} +{"session_id":"sess-91764b78d6de","input_length":691,"output_length":91,"hash_ids":[1656049,1656050],"delay":2923.0} +{"session_id":"sess-91764b78d6de","input_length":388,"output_length":156,"hash_ids":[1656051],"delay":2196.4} +{"session_id":"sess-91764b78d6de","input_length":2410,"output_length":243,"hash_ids":[1656052,1656053,1656054,1656055,1656056],"delay":14786.7} +{"session_id":"sess-91764b78d6de","input_length":985,"output_length":356,"hash_ids":[1656057,1656058],"delay":3590.3} +{"session_id":"sess-91764b78d6de","input_length":101,"output_length":53,"hash_ids":[1656059],"delay":724.1} +{"session_id":"sess-5eb1c0454f5b","input_length":29687,"output_length":450,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1660032,1660033,1660034,1660035,1660036,1660037],"timestamp":0.0,"group_id":3} +{"session_id":"sess-5eb1c0454f5b","input_length":2513,"output_length":200,"hash_ids":[1660038,1660039,1660040,1660041,1660042],"delay":327.0} +{"session_id":"sess-5eb1c0454f5b","input_length":1625,"output_length":128,"hash_ids":[1660043,1660044,1660045,1660046],"delay":800.1} +{"session_id":"sess-5eb1c0454f5b","input_length":1188,"output_length":668,"hash_ids":[1660047,1660048,1660049],"delay":847.5} +{"session_id":"sess-5eb1c0454f5b","input_length":339,"output_length":137,"hash_ids":[1660050],"delay":3319.6} +{"session_id":"sess-5eb1c0454f5b","input_length":567,"output_length":134,"hash_ids":[1660051,1660052],"delay":1786.4} +{"session_id":"sess-5eb1c0454f5b","input_length":1956,"output_length":263,"hash_ids":[1660053,1660054,1660055,1660056],"delay":12725.3} +{"session_id":"sess-5eb1c0454f5b","input_length":1176,"output_length":267,"hash_ids":[1660057,1660058,1660059],"delay":3086.9} +{"session_id":"sess-5eb1c0454f5b","input_length":1547,"output_length":144,"hash_ids":[1660060,1660061,1660062,1660063],"delay":38039.6} +{"session_id":"sess-5eb1c0454f5b","input_length":553,"output_length":611,"hash_ids":[1660064,1660065],"delay":5138.7} +{"session_id":"sess-5eb1c0454f5b","input_length":228,"output_length":85,"hash_ids":[1660066],"delay":888.7} +{"session_id":"sess-5eb1c0454f5b","input_length":479,"output_length":112,"hash_ids":[1660067],"delay":1070.6} +{"session_id":"sess-5eb1c0454f5b","input_length":351,"output_length":702,"hash_ids":[1660068],"delay":667.6} +{"session_id":"sess-5eb1c0454f5b","input_length":590,"output_length":275,"hash_ids":[1660069,1660070],"delay":1104.9} +{"session_id":"sess-5eb1c0454f5b","input_length":281,"output_length":1496,"hash_ids":[1660071],"delay":26756.8} +{"session_id":"sess-5eb1c0454f5b","input_length":711,"output_length":132,"hash_ids":[1660072,1660073],"delay":21427.1} +{"session_id":"sess-5eb1c0454f5b","input_length":639,"output_length":284,"hash_ids":[1660074,1660075],"delay":441.4} +{"session_id":"sess-5eb1c0454f5b","input_length":567,"output_length":1180,"hash_ids":[1660076,1660077],"delay":1193.2} +{"session_id":"sess-5eb1c0454f5b","input_length":422,"output_length":193,"hash_ids":[1660078],"delay":636.8} +{"session_id":"sess-5eb1c0454f5b","input_length":1074,"output_length":88,"hash_ids":[1660079,1660080,1660081],"delay":417.8} +{"session_id":"sess-5eb1c0454f5b","input_length":1053,"output_length":56,"hash_ids":[1660082,1660083,1660084],"delay":27562.3} +{"session_id":"sess-5eb1c0454f5b","input_length":726,"output_length":153,"hash_ids":[1660085,1660086],"delay":822.2} +{"session_id":"sess-5eb1c0454f5b","input_length":1898,"output_length":531,"hash_ids":[1660087,1660088,1660089,1660090],"delay":719.7} +{"session_id":"sess-5eb1c0454f5b","input_length":2553,"output_length":416,"hash_ids":[1660091,1660092,1660093,1660094,1660095],"delay":1440.8} +{"session_id":"sess-5eb1c0454f5b","input_length":2071,"output_length":197,"hash_ids":[1660096,1660097,1660098,1660099,1660100],"delay":181.8} +{"session_id":"sess-5eb1c0454f5b","input_length":682,"output_length":184,"hash_ids":[1660101,1660102],"delay":5017.8} +{"session_id":"sess-5eb1c0454f5b","input_length":708,"output_length":738,"hash_ids":[1660103,1660104],"delay":259.3} +{"session_id":"sess-0597a0b9837f","input_length":26538,"output_length":289,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051],"timestamp":0.0,"group_id":5} +{"session_id":"sess-0597a0b9837f","input_length":1099,"output_length":812,"hash_ids":[1660105,1660106,1660107],"delay":2175.3} +{"session_id":"sess-0597a0b9837f","input_length":607,"output_length":124,"hash_ids":[1660108,1660109],"delay":410.0} +{"session_id":"sess-0597a0b9837f","input_length":1880,"output_length":125,"hash_ids":[1660110,1660111,1660112,1660113],"delay":637.1} +{"session_id":"sess-0597a0b9837f","input_length":1361,"output_length":834,"hash_ids":[1660114,1660115,1660116],"delay":24690.4} +{"session_id":"sess-0597a0b9837f","input_length":116,"output_length":338,"hash_ids":[1660117],"delay":199.8} +{"session_id":"sess-0597a0b9837f","input_length":658,"output_length":296,"hash_ids":[1660118,1660119],"delay":2432.5} +{"session_id":"sess-0597a0b9837f","input_length":1254,"output_length":374,"hash_ids":[1660120,1660121,1660122],"delay":21001.0} +{"session_id":"sess-0597a0b9837f","input_length":745,"output_length":303,"hash_ids":[1660123,1660124],"delay":777.8} +{"session_id":"sess-0597a0b9837f","input_length":2919,"output_length":329,"hash_ids":[1660125,1660126,1660127,1660128,1660129,1660130],"delay":1065.4} +{"session_id":"sess-0597a0b9837f","input_length":394,"output_length":506,"hash_ids":[1660131],"delay":620.0} +{"session_id":"sess-0597a0b9837f","input_length":684,"output_length":173,"hash_ids":[1660132,1660133],"delay":1400.2} +{"session_id":"sess-0597a0b9837f","input_length":2749,"output_length":97,"hash_ids":[1660134,1660135,1660136,1660137,1660138,1660139],"delay":1494.6} +{"session_id":"sess-0597a0b9837f","input_length":483,"output_length":102,"hash_ids":[1660140],"delay":1180.0} +{"session_id":"sess-0597a0b9837f","input_length":1116,"output_length":167,"hash_ids":[1660141,1660142,1660143],"delay":817.2} +{"session_id":"sess-0597a0b9837f","input_length":197,"output_length":99,"hash_ids":[1660144],"delay":43981.1} +{"session_id":"sess-0597a0b9837f","input_length":849,"output_length":222,"hash_ids":[1660145,1660146],"delay":2848.1} +{"session_id":"sess-0597a0b9837f","input_length":91,"output_length":123,"hash_ids":[1660147],"delay":630.5} +{"session_id":"sess-0597a0b9837f","input_length":930,"output_length":934,"hash_ids":[1660148,1660149],"delay":484.3} +{"session_id":"sess-0597a0b9837f","input_length":319,"output_length":55,"hash_ids":[1660150],"delay":316.0} +{"session_id":"sess-0597a0b9837f","input_length":2438,"output_length":208,"hash_ids":[1660151,1660152,1660153,1660154,1660155],"delay":912.4} +{"session_id":"sess-0597a0b9837f","input_length":969,"output_length":138,"hash_ids":[1660156,1660157],"delay":892.4} +{"session_id":"sess-0597a0b9837f","input_length":2393,"output_length":193,"hash_ids":[1660158,1660159,1660160,1660161,1660162],"delay":482.2} +{"session_id":"sess-0597a0b9837f","input_length":1199,"output_length":121,"hash_ids":[1660163,1660164,1660165],"delay":1081.6} +{"session_id":"sess-0597a0b9837f","input_length":986,"output_length":542,"hash_ids":[1660166,1660167],"delay":768.7} +{"session_id":"sess-0597a0b9837f","input_length":169,"output_length":349,"hash_ids":[1660168],"delay":262.6} +{"session_id":"sess-0597a0b9837f","input_length":2432,"output_length":727,"hash_ids":[1660169,1660170,1660171,1660172,1660173],"delay":1382.9} +{"session_id":"sess-0597a0b9837f","input_length":859,"output_length":86,"hash_ids":[1660174,1660175],"delay":1583.8} +{"session_id":"sess-0597a0b9837f","input_length":185,"output_length":55,"hash_ids":[1660176],"delay":53.2} +{"session_id":"sess-333ff34bc704","input_length":27806,"output_length":89,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,1668032,1668033,1668034],"timestamp":0.0,"group_id":27} +{"session_id":"sess-333ff34bc704","input_length":327,"output_length":139,"hash_ids":[1668035],"delay":1022.0} +{"session_id":"sess-333ff34bc704","input_length":946,"output_length":765,"hash_ids":[1668036,1668037],"delay":1455.2} +{"session_id":"sess-333ff34bc704","input_length":248,"output_length":101,"hash_ids":[1668038],"delay":2240.0} +{"session_id":"sess-333ff34bc704","input_length":438,"output_length":264,"hash_ids":[1668039],"delay":34916.1} +{"session_id":"sess-333ff34bc704","input_length":569,"output_length":176,"hash_ids":[1668040,1668041],"delay":8729.0} +{"session_id":"sess-333ff34bc704","input_length":1244,"output_length":322,"hash_ids":[1668042,1668043,1668044],"delay":31344.1} +{"session_id":"sess-333ff34bc704","input_length":988,"output_length":80,"hash_ids":[1668045,1668046],"delay":12228.5} +{"session_id":"sess-333ff34bc704","input_length":2887,"output_length":140,"hash_ids":[1668047,1668048,1668049,1668050,1668051,1668052],"delay":1789.5} +{"session_id":"sess-333ff34bc704","input_length":301,"output_length":728,"hash_ids":[1668053],"delay":21809.1} +{"session_id":"sess-333ff34bc704","input_length":1861,"output_length":307,"hash_ids":[1668054,1668055,1668056,1668057],"delay":3221.4} +{"session_id":"sess-333ff34bc704","input_length":439,"output_length":406,"hash_ids":[1668058],"delay":3925.5} +{"session_id":"sess-333ff34bc704","input_length":2242,"output_length":124,"hash_ids":[1668059,1668060,1668061,1668062,1668063],"delay":2334.6} +{"session_id":"sess-333ff34bc704","input_length":1154,"output_length":47,"hash_ids":[1668064,1668065,1668066],"delay":3409.7} +{"session_id":"sess-333ff34bc704","input_length":1946,"output_length":603,"hash_ids":[1668067,1668068,1668069,1668070],"delay":691.6} +{"session_id":"sess-333ff34bc704","input_length":945,"output_length":315,"hash_ids":[1668071,1668072],"delay":38700.1} +{"session_id":"sess-333ff34bc704","input_length":1750,"output_length":121,"hash_ids":[1668073,1668074,1668075,1668076],"delay":609.7} +{"session_id":"sess-333ff34bc704","input_length":279,"output_length":270,"hash_ids":[1668077],"delay":114.0} +{"session_id":"sess-333ff34bc704","input_length":1203,"output_length":118,"hash_ids":[1668078,1668079,1668080],"delay":1978.6} +{"session_id":"sess-333ff34bc704","input_length":350,"output_length":78,"hash_ids":[1668081],"delay":306.8} +{"session_id":"sess-333ff34bc704","input_length":1433,"output_length":84,"hash_ids":[1668082,1668083,1668084],"delay":2752.4} +{"session_id":"sess-333ff34bc704","input_length":1332,"output_length":123,"hash_ids":[1668085,1668086,1668087],"delay":6486.8} +{"session_id":"sess-333ff34bc704","input_length":606,"output_length":375,"hash_ids":[1668088,1668089],"delay":1841.6} +{"session_id":"sess-333ff34bc704","input_length":314,"output_length":125,"hash_ids":[1668090],"delay":500.0} +{"session_id":"sess-333ff34bc704","input_length":2230,"output_length":226,"hash_ids":[1668091,1668092,1668093,1668094,1668095],"delay":4622.7} +{"session_id":"sess-333ff34bc704","input_length":798,"output_length":145,"hash_ids":[1668096,1668097],"delay":2494.6} +{"session_id":"sess-333ff34bc704","input_length":889,"output_length":113,"hash_ids":[1668098,1668099],"delay":821.5} +{"session_id":"sess-333ff34bc704","input_length":2850,"output_length":184,"hash_ids":[1668100,1668101,1668102,1668103,1668104,1668105],"delay":352.0} +{"session_id":"sess-333ff34bc704","input_length":433,"output_length":257,"hash_ids":[1668106],"delay":599.0} +{"session_id":"sess-7640d79c5bbf","input_length":27397,"output_length":470,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1672032,1672033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7640d79c5bbf","input_length":1045,"output_length":239,"hash_ids":[1672034,1672035,1672036],"delay":1937.1} +{"session_id":"sess-7640d79c5bbf","input_length":457,"output_length":211,"hash_ids":[1672037],"delay":2015.8} +{"session_id":"sess-7640d79c5bbf","input_length":2179,"output_length":366,"hash_ids":[1672038,1672039,1672040,1672041,1672042],"delay":7705.8} +{"session_id":"sess-7640d79c5bbf","input_length":1132,"output_length":77,"hash_ids":[1672043,1672044,1672045],"delay":914.0} +{"session_id":"sess-7640d79c5bbf","input_length":1361,"output_length":224,"hash_ids":[1672046,1672047,1672048],"delay":34038.5} +{"session_id":"sess-7640d79c5bbf","input_length":887,"output_length":410,"hash_ids":[1672049,1672050],"delay":1141.8} +{"session_id":"sess-7640d79c5bbf","input_length":426,"output_length":118,"hash_ids":[1672051],"delay":4483.7} +{"session_id":"sess-a8a2be659ccd","input_length":28016,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,1676032,1676033,1676034],"timestamp":0.0,"group_id":11} +{"session_id":"sess-a8a2be659ccd","input_length":1232,"output_length":96,"hash_ids":[1676035,1676036,1676037],"delay":1105.0} +{"session_id":"sess-a8a2be659ccd","input_length":2842,"output_length":150,"hash_ids":[1676038,1676039,1676040,1676041,1676042,1676043],"delay":482.8} +{"session_id":"sess-a8a2be659ccd","input_length":1755,"output_length":141,"hash_ids":[1676044,1676045,1676046,1676047],"delay":4157.3} +{"session_id":"sess-a8a2be659ccd","input_length":2997,"output_length":60,"hash_ids":[1676048,1676049,1676050,1676051,1676052,1676053],"delay":42022.4} +{"session_id":"sess-a8a2be659ccd","input_length":55,"output_length":170,"hash_ids":[1676054],"delay":574.2} +{"session_id":"sess-a8a2be659ccd","input_length":193,"output_length":282,"hash_ids":[1676055],"delay":10055.7} +{"session_id":"sess-a8a2be659ccd","input_length":1372,"output_length":148,"hash_ids":[1676056,1676057,1676058],"delay":1147.8} +{"session_id":"sess-a8a2be659ccd","input_length":2146,"output_length":409,"hash_ids":[1676059,1676060,1676061,1676062,1676063],"delay":534.4} +{"session_id":"sess-a8a2be659ccd","input_length":609,"output_length":312,"hash_ids":[1676064,1676065],"delay":2609.1} +{"session_id":"sess-a8a2be659ccd","input_length":1812,"output_length":102,"hash_ids":[1676066,1676067,1676068,1676069],"delay":282.3} +{"session_id":"sess-a8a2be659ccd","input_length":2480,"output_length":247,"hash_ids":[1676070,1676071,1676072,1676073,1676074],"delay":25452.4} +{"session_id":"sess-a8a2be659ccd","input_length":2220,"output_length":215,"hash_ids":[1676075,1676076,1676077,1676078,1676079],"delay":3003.1} +{"session_id":"sess-a8a2be659ccd","input_length":403,"output_length":50,"hash_ids":[1676080],"delay":1686.2} +{"session_id":"sess-a8a2be659ccd","input_length":2179,"output_length":171,"hash_ids":[1676081,1676082,1676083,1676084,1676085],"delay":4213.0} +{"session_id":"sess-a8a2be659ccd","input_length":580,"output_length":437,"hash_ids":[1676086,1676087],"delay":672.5} +{"session_id":"sess-a8a2be659ccd","input_length":616,"output_length":274,"hash_ids":[1676088,1676089],"delay":4435.5} +{"session_id":"sess-a8a2be659ccd","input_length":256,"output_length":343,"hash_ids":[1676090],"delay":998.4} +{"session_id":"sess-a8a2be659ccd","input_length":348,"output_length":69,"hash_ids":[1676091],"delay":431.4} +{"session_id":"sess-a8a2be659ccd","input_length":459,"output_length":571,"hash_ids":[1676092],"delay":11685.7} +{"session_id":"sess-a8a2be659ccd","input_length":1137,"output_length":78,"hash_ids":[1676093,1676094,1676095],"delay":338.9} +{"session_id":"sess-a8a2be659ccd","input_length":1057,"output_length":196,"hash_ids":[1676096,1676097,1676098],"delay":146.5} +{"session_id":"sess-a8a2be659ccd","input_length":346,"output_length":30,"hash_ids":[1676099],"delay":431.8} +{"session_id":"sess-a8a2be659ccd","input_length":751,"output_length":282,"hash_ids":[1676100,1676101],"delay":169.8} +{"session_id":"sess-a8a2be659ccd","input_length":1280,"output_length":146,"hash_ids":[1676102,1676103,1676104],"delay":7007.2} +{"session_id":"sess-a8a2be659ccd","input_length":2384,"output_length":253,"hash_ids":[1676105,1676106,1676107,1676108,1676109],"delay":393.3} +{"session_id":"sess-c90092fc8e51","input_length":30221,"output_length":495,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1680032,1680033,1680034,1680035,1680036,1680037,1680038,1680039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c90092fc8e51","input_length":880,"output_length":214,"hash_ids":[1680040,1680041],"delay":924.3} +{"session_id":"sess-c90092fc8e51","input_length":163,"output_length":273,"hash_ids":[1680042],"delay":15304.2} +{"session_id":"sess-c90092fc8e51","input_length":592,"output_length":725,"hash_ids":[1680043,1680044],"delay":9313.5} +{"session_id":"sess-c90092fc8e51","input_length":2335,"output_length":474,"hash_ids":[1680045,1680046,1680047,1680048,1680049],"delay":575.0} +{"session_id":"sess-c90092fc8e51","input_length":2551,"output_length":82,"hash_ids":[1680050,1680051,1680052,1680053,1680054],"delay":3785.3} +{"session_id":"sess-c90092fc8e51","input_length":1591,"output_length":403,"hash_ids":[1680055,1680056,1680057,1680058],"delay":1075.0} +{"session_id":"sess-49ca0778045c","input_length":26695,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1684032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-49ca0778045c","input_length":2181,"output_length":292,"hash_ids":[1684033,1684034,1684035,1684036,1684037],"delay":6818.8} +{"session_id":"sess-49ca0778045c","input_length":932,"output_length":82,"hash_ids":[1684038,1684039],"delay":11695.0} +{"session_id":"sess-49ca0778045c","input_length":2763,"output_length":153,"hash_ids":[1684040,1684041,1684042,1684043,1684044,1684045],"delay":1342.0} +{"session_id":"sess-49ca0778045c","input_length":976,"output_length":158,"hash_ids":[1684046,1684047],"delay":1982.3} +{"session_id":"sess-49ca0778045c","input_length":842,"output_length":407,"hash_ids":[1684048,1684049],"delay":600.6} +{"session_id":"sess-49ca0778045c","input_length":420,"output_length":305,"hash_ids":[1684050],"delay":1347.5} +{"session_id":"sess-49ca0778045c","input_length":371,"output_length":67,"hash_ids":[1684051],"delay":1154.4} +{"session_id":"sess-49ca0778045c","input_length":1270,"output_length":156,"hash_ids":[1684052,1684053,1684054],"delay":359.9} +{"session_id":"sess-49ca0778045c","input_length":1242,"output_length":171,"hash_ids":[1684055,1684056,1684057],"delay":1171.1} +{"session_id":"sess-49ca0778045c","input_length":1507,"output_length":156,"hash_ids":[1684058,1684059,1684060],"delay":4615.7} +{"session_id":"sess-49ca0778045c","input_length":1023,"output_length":180,"hash_ids":[1684061,1684062],"delay":954.7} +{"session_id":"sess-49ca0778045c","input_length":2291,"output_length":451,"hash_ids":[1684063,1684064,1684065,1684066,1684067],"delay":11968.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":27657,"output_length":157,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1688032,1688033,1688034],"timestamp":0.0,"group_id":10} +{"session_id":"sess-7ddc2fd7aeae","input_length":2757,"output_length":90,"hash_ids":[1688035,1688036,1688037,1688038,1688039,1688040],"delay":336.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":2868,"output_length":590,"hash_ids":[1688041,1688042,1688043,1688044,1688045,1688046],"delay":2169.2} +{"session_id":"sess-7ddc2fd7aeae","input_length":982,"output_length":736,"hash_ids":[1688047,1688048],"delay":890.6} +{"session_id":"sess-7ddc2fd7aeae","input_length":182,"output_length":392,"hash_ids":[1688049],"delay":834.8} +{"session_id":"sess-7ddc2fd7aeae","input_length":1148,"output_length":84,"hash_ids":[1688050,1688051,1688052],"delay":2585.8} +{"session_id":"sess-7ddc2fd7aeae","input_length":657,"output_length":96,"hash_ids":[1688053,1688054],"delay":30723.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":782,"output_length":360,"hash_ids":[1688055,1688056],"delay":1066.2} +{"session_id":"sess-7ddc2fd7aeae","input_length":941,"output_length":184,"hash_ids":[1688057,1688058],"delay":406.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":1174,"output_length":133,"hash_ids":[1688059,1688060,1688061],"delay":2544.6} +{"session_id":"sess-7ddc2fd7aeae","input_length":693,"output_length":99,"hash_ids":[1688062,1688063],"delay":1760.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":447,"output_length":386,"hash_ids":[1688064],"delay":15715.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":1118,"output_length":89,"hash_ids":[1688065,1688066,1688067],"delay":892.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":648,"output_length":773,"hash_ids":[1688068,1688069],"delay":937.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":2982,"output_length":578,"hash_ids":[1688070,1688071,1688072,1688073,1688074,1688075],"delay":302.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":794,"output_length":183,"hash_ids":[1688076,1688077],"delay":1040.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":143,"output_length":68,"hash_ids":[1688078],"delay":1053.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":2212,"output_length":199,"hash_ids":[1688079,1688080,1688081,1688082,1688083],"delay":27933.7} +{"session_id":"sess-7ddc2fd7aeae","input_length":2386,"output_length":166,"hash_ids":[1688084,1688085,1688086,1688087,1688088],"delay":1121.8} +{"session_id":"sess-7ddc2fd7aeae","input_length":288,"output_length":116,"hash_ids":[1688089],"delay":728.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":1016,"output_length":58,"hash_ids":[1688090,1688091],"delay":461.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":451,"output_length":1284,"hash_ids":[1688092],"delay":6303.4} +{"session_id":"sess-7ddc2fd7aeae","input_length":2012,"output_length":376,"hash_ids":[1688093,1688094,1688095,1688096],"delay":8243.9} +{"session_id":"sess-7ddc2fd7aeae","input_length":1497,"output_length":264,"hash_ids":[1688097,1688098,1688099],"delay":516.8} +{"session_id":"sess-7ddc2fd7aeae","input_length":1136,"output_length":300,"hash_ids":[1688100,1688101,1688102],"delay":2336.0} +{"session_id":"sess-7ddc2fd7aeae","input_length":595,"output_length":142,"hash_ids":[1688103,1688104],"delay":991.3} +{"session_id":"sess-cdb301b2452c","input_length":30013,"output_length":250,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1692032,1692033,1692034,1692035,1692036,1692037,1692038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cdb301b2452c","input_length":688,"output_length":222,"hash_ids":[1692039,1692040],"delay":1107.6} +{"session_id":"sess-cdb301b2452c","input_length":244,"output_length":63,"hash_ids":[1692041],"delay":1747.5} +{"session_id":"sess-cdb301b2452c","input_length":175,"output_length":70,"hash_ids":[1692042],"delay":7067.1} +{"session_id":"sess-cdb301b2452c","input_length":1475,"output_length":176,"hash_ids":[1692043,1692044,1692045],"delay":1284.1} +{"session_id":"sess-c5d0cc4502ea","input_length":32080,"output_length":55,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1696032,1696033,1696034,1696035,1696036,1696037,1696038,1696039,1696040,1696041,1696042],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c5d0cc4502ea","input_length":248,"output_length":314,"hash_ids":[1696043],"delay":5076.2} +{"session_id":"sess-c5d0cc4502ea","input_length":548,"output_length":31,"hash_ids":[1696044,1696045],"delay":14011.5} +{"session_id":"sess-c5d0cc4502ea","input_length":914,"output_length":248,"hash_ids":[1696046,1696047],"delay":7482.8} +{"session_id":"sess-c5d0cc4502ea","input_length":894,"output_length":115,"hash_ids":[1696048,1696049],"delay":3417.8} +{"session_id":"sess-c5d0cc4502ea","input_length":833,"output_length":284,"hash_ids":[1696050,1696051],"delay":1271.4} +{"session_id":"sess-1216e0ebd07c","input_length":32428,"output_length":536,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1700032,1700033,1700034,1700035,1700036,1700037,1700038,1700039,1700040,1700041,1700042,1700043],"timestamp":0.0,"group_id":9} +{"session_id":"sess-1216e0ebd07c","input_length":1208,"output_length":635,"hash_ids":[1700044,1700045,1700046],"delay":6448.4} +{"session_id":"sess-1216e0ebd07c","input_length":1786,"output_length":44,"hash_ids":[1700047,1700048,1700049,1700050],"delay":1411.8} +{"session_id":"sess-1216e0ebd07c","input_length":2389,"output_length":380,"hash_ids":[1700051,1700052,1700053,1700054,1700055],"delay":8313.3} +{"session_id":"sess-1216e0ebd07c","input_length":209,"output_length":99,"hash_ids":[1700056],"delay":27253.3} +{"session_id":"sess-1216e0ebd07c","input_length":999,"output_length":234,"hash_ids":[1700057,1700058],"delay":635.4} +{"session_id":"sess-1216e0ebd07c","input_length":214,"output_length":1181,"hash_ids":[1700059],"delay":326.4} +{"session_id":"sess-8fab54127323","input_length":29310,"output_length":224,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1704032,1704033,1704034,1704035,1704036,1704037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8fab54127323","input_length":736,"output_length":385,"hash_ids":[1704038,1704039],"delay":61922.2} +{"session_id":"sess-8fab54127323","input_length":357,"output_length":231,"hash_ids":[1704040],"delay":8473.8} +{"session_id":"sess-8fab54127323","input_length":2827,"output_length":583,"hash_ids":[1704041,1704042,1704043,1704044,1704045,1704046],"delay":1143.2} +{"session_id":"sess-8fab54127323","input_length":800,"output_length":294,"hash_ids":[1704047,1704048],"delay":50202.7} +{"session_id":"sess-8fab54127323","input_length":1764,"output_length":57,"hash_ids":[1704049,1704050,1704051,1704052],"delay":355.7} +{"session_id":"sess-8fab54127323","input_length":742,"output_length":1304,"hash_ids":[1704053,1704054],"delay":511.6} +{"session_id":"sess-8fab54127323","input_length":1608,"output_length":121,"hash_ids":[1704055,1704056,1704057,1704058],"delay":236.6} +{"session_id":"sess-8fab54127323","input_length":1366,"output_length":357,"hash_ids":[1704059,1704060,1704061],"delay":743.2} +{"session_id":"sess-8fab54127323","input_length":746,"output_length":191,"hash_ids":[1704062,1704063],"delay":672.8} +{"session_id":"sess-8fab54127323","input_length":858,"output_length":73,"hash_ids":[1704064,1704065],"delay":214.9} +{"session_id":"sess-8fab54127323","input_length":1166,"output_length":392,"hash_ids":[1704066,1704067,1704068],"delay":3553.8} +{"session_id":"sess-8fab54127323","input_length":1460,"output_length":449,"hash_ids":[1704069,1704070,1704071],"delay":11885.2} +{"session_id":"sess-aa7ecfdc8f9e","input_length":27106,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1708032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6ee1e4b8efaa","input_length":29719,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1712032,1712033,1712034,1712035,1712036,1712037,1712038],"timestamp":0.0,"group_id":10} +{"session_id":"sess-6ee1e4b8efaa","input_length":2570,"output_length":214,"hash_ids":[1712039,1712040,1712041,1712042,1712043,1712044],"delay":203.6} +{"session_id":"sess-6ee1e4b8efaa","input_length":1718,"output_length":107,"hash_ids":[1712045,1712046,1712047,1712048],"delay":12329.0} +{"session_id":"sess-6ee1e4b8efaa","input_length":369,"output_length":201,"hash_ids":[1712049],"delay":2506.8} +{"session_id":"sess-6ee1e4b8efaa","input_length":600,"output_length":686,"hash_ids":[1712050,1712051],"delay":2103.5} +{"session_id":"sess-6ee1e4b8efaa","input_length":401,"output_length":48,"hash_ids":[1712052],"delay":1846.2} +{"session_id":"sess-6ee1e4b8efaa","input_length":872,"output_length":185,"hash_ids":[1712053,1712054],"delay":2452.2} +{"session_id":"sess-6ee1e4b8efaa","input_length":629,"output_length":410,"hash_ids":[1712055,1712056],"delay":8942.6} +{"session_id":"sess-6ee1e4b8efaa","input_length":2910,"output_length":62,"hash_ids":[1712057,1712058,1712059,1712060,1712061,1712062],"delay":631.2} +{"session_id":"sess-6ee1e4b8efaa","input_length":2968,"output_length":143,"hash_ids":[1712063,1712064,1712065,1712066,1712067,1712068],"delay":420.8} +{"session_id":"sess-6ee1e4b8efaa","input_length":1628,"output_length":143,"hash_ids":[1712069,1712070,1712071,1712072],"delay":376.7} +{"session_id":"sess-6ee1e4b8efaa","input_length":501,"output_length":97,"hash_ids":[1712073],"delay":789.3} +{"session_id":"sess-6ee1e4b8efaa","input_length":1249,"output_length":302,"hash_ids":[1712074,1712075,1712076],"delay":22268.4} +{"session_id":"sess-6ee1e4b8efaa","input_length":865,"output_length":74,"hash_ids":[1712077,1712078],"delay":13548.3} +{"session_id":"sess-6ee1e4b8efaa","input_length":2008,"output_length":450,"hash_ids":[1712079,1712080,1712081,1712082],"delay":354.7} +{"session_id":"sess-6ee1e4b8efaa","input_length":119,"output_length":186,"hash_ids":[1712083],"delay":595.3} +{"session_id":"sess-6ee1e4b8efaa","input_length":26,"output_length":570,"hash_ids":[1712084],"delay":33006.8} +{"session_id":"sess-6ee1e4b8efaa","input_length":396,"output_length":141,"hash_ids":[1712085],"delay":2021.0} +{"session_id":"sess-6ee1e4b8efaa","input_length":424,"output_length":291,"hash_ids":[1712086],"delay":4021.2} +{"session_id":"sess-6ee1e4b8efaa","input_length":1218,"output_length":393,"hash_ids":[1712087,1712088,1712089],"delay":223.5} +{"session_id":"sess-6ee1e4b8efaa","input_length":1569,"output_length":103,"hash_ids":[1712090,1712091,1712092,1712093],"delay":892.8} +{"session_id":"sess-6ee1e4b8efaa","input_length":2866,"output_length":138,"hash_ids":[1712094,1712095,1712096,1712097,1712098,1712099],"delay":8395.5} +{"session_id":"sess-6ee1e4b8efaa","input_length":565,"output_length":364,"hash_ids":[1712100,1712101],"delay":793.7} +{"session_id":"sess-6ee1e4b8efaa","input_length":2640,"output_length":127,"hash_ids":[1712102,1712103,1712104,1712105,1712106,1712107],"delay":1042.7} +{"session_id":"sess-6ee1e4b8efaa","input_length":340,"output_length":251,"hash_ids":[1712108],"delay":183.6} +{"session_id":"sess-eb314274fad4","input_length":29710,"output_length":36,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1716032,1716033,1716034,1716035,1716036,1716037,1716038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-eb314274fad4","input_length":774,"output_length":94,"hash_ids":[1716039,1716040],"delay":1200.0} +{"session_id":"sess-eb314274fad4","input_length":1844,"output_length":68,"hash_ids":[1716041,1716042,1716043,1716044],"delay":506.4} +{"session_id":"sess-eb314274fad4","input_length":232,"output_length":46,"hash_ids":[1716045],"delay":1075.4} +{"session_id":"sess-eb314274fad4","input_length":1193,"output_length":95,"hash_ids":[1716046,1716047,1716048],"delay":1011.3} +{"session_id":"sess-eb314274fad4","input_length":2864,"output_length":359,"hash_ids":[1716049,1716050,1716051,1716052,1716053,1716054],"delay":29179.3} +{"session_id":"sess-eb314274fad4","input_length":2653,"output_length":216,"hash_ids":[1716055,1716056,1716057,1716058,1716059,1716060],"delay":22308.6} +{"session_id":"sess-eb314274fad4","input_length":1724,"output_length":431,"hash_ids":[1716061,1716062,1716063,1716064],"delay":11853.2} +{"session_id":"sess-eb314274fad4","input_length":713,"output_length":86,"hash_ids":[1716065,1716066],"delay":289.8} +{"session_id":"sess-eb314274fad4","input_length":795,"output_length":83,"hash_ids":[1716067,1716068],"delay":941.0} +{"session_id":"sess-eb314274fad4","input_length":1240,"output_length":308,"hash_ids":[1716069,1716070,1716071],"delay":784.3} +{"session_id":"sess-eb314274fad4","input_length":753,"output_length":202,"hash_ids":[1716072,1716073],"delay":3079.0} +{"session_id":"sess-eb314274fad4","input_length":2906,"output_length":162,"hash_ids":[1716074,1716075,1716076,1716077,1716078,1716079],"delay":765.7} +{"session_id":"sess-eb314274fad4","input_length":750,"output_length":425,"hash_ids":[1716080,1716081],"delay":8532.5} +{"session_id":"sess-eb314274fad4","input_length":373,"output_length":371,"hash_ids":[1716082],"delay":412.8} +{"session_id":"sess-eb314274fad4","input_length":918,"output_length":172,"hash_ids":[1716083,1716084],"delay":446.2} +{"session_id":"sess-eb314274fad4","input_length":1170,"output_length":36,"hash_ids":[1716085,1716086,1716087],"delay":1744.3} +{"session_id":"sess-eb314274fad4","input_length":188,"output_length":36,"hash_ids":[1716088],"delay":921.5} +{"session_id":"sess-eb314274fad4","input_length":1416,"output_length":318,"hash_ids":[1716089,1716090,1716091],"delay":505.8} +{"session_id":"sess-eb314274fad4","input_length":1200,"output_length":269,"hash_ids":[1716092,1716093,1716094],"delay":26.5} +{"session_id":"sess-eb314274fad4","input_length":2100,"output_length":538,"hash_ids":[1716095,1716096,1716097,1716098,1716099],"delay":265.7} +{"session_id":"sess-eb314274fad4","input_length":346,"output_length":262,"hash_ids":[1716100],"delay":395.1} +{"session_id":"sess-eb314274fad4","input_length":734,"output_length":345,"hash_ids":[1716101,1716102],"delay":508.5} +{"session_id":"sess-eb314274fad4","input_length":133,"output_length":626,"hash_ids":[1716103],"delay":408.0} +{"session_id":"sess-eb314274fad4","input_length":268,"output_length":257,"hash_ids":[1716104],"delay":259.2} +{"session_id":"sess-eb314274fad4","input_length":1257,"output_length":37,"hash_ids":[1716105,1716106,1716107],"delay":3215.8} +{"session_id":"sess-eb314274fad4","input_length":1126,"output_length":56,"hash_ids":[1716108,1716109,1716110],"delay":364.3} +{"session_id":"sess-45b3876a654c","input_length":26356,"output_length":285,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-45b3876a654c","input_length":795,"output_length":650,"hash_ids":[1716111,1716112],"delay":332.7} +{"session_id":"sess-45b3876a654c","input_length":1287,"output_length":81,"hash_ids":[1716113,1716114,1716115],"delay":11669.1} +{"session_id":"sess-45b3876a654c","input_length":932,"output_length":444,"hash_ids":[1716116,1716117],"delay":1079.3} +{"session_id":"sess-ce5984b5f024","input_length":27016,"output_length":175,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1724032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ce5984b5f024","input_length":807,"output_length":138,"hash_ids":[1724033,1724034],"delay":1447.9} +{"session_id":"sess-ce5984b5f024","input_length":1166,"output_length":570,"hash_ids":[1724035,1724036,1724037],"delay":249.9} +{"session_id":"sess-ce5984b5f024","input_length":656,"output_length":447,"hash_ids":[1724038,1724039],"delay":754.9} +{"session_id":"sess-ce5984b5f024","input_length":2349,"output_length":1046,"hash_ids":[1724040,1724041,1724042,1724043,1724044],"delay":11348.0} +{"session_id":"sess-ce5984b5f024","input_length":2103,"output_length":209,"hash_ids":[1724045,1724046,1724047,1724048,1724049],"delay":1470.7} +{"session_id":"sess-ce5984b5f024","input_length":1891,"output_length":359,"hash_ids":[1724050,1724051,1724052,1724053],"delay":633.3} +{"session_id":"sess-ce5984b5f024","input_length":228,"output_length":119,"hash_ids":[1724054],"delay":439.0} +{"session_id":"sess-ce5984b5f024","input_length":247,"output_length":94,"hash_ids":[1724055],"delay":571.8} +{"session_id":"sess-ce5984b5f024","input_length":885,"output_length":142,"hash_ids":[1724056,1724057],"delay":394.9} +{"session_id":"sess-ce5984b5f024","input_length":1189,"output_length":293,"hash_ids":[1724058,1724059,1724060],"delay":500.7} +{"session_id":"sess-ce5984b5f024","input_length":1661,"output_length":175,"hash_ids":[1724061,1724062,1724063,1724064],"delay":8080.3} +{"session_id":"sess-ce5984b5f024","input_length":1508,"output_length":79,"hash_ids":[1724065,1724066,1724067],"delay":2157.6} +{"session_id":"sess-ce5984b5f024","input_length":1651,"output_length":116,"hash_ids":[1724068,1724069,1724070,1724071],"delay":1649.3} +{"session_id":"sess-ce5984b5f024","input_length":348,"output_length":95,"hash_ids":[1724072],"delay":5998.4} +{"session_id":"sess-ce5984b5f024","input_length":993,"output_length":107,"hash_ids":[1724073,1724074],"delay":5462.3} +{"session_id":"sess-ce5984b5f024","input_length":509,"output_length":477,"hash_ids":[1724075],"delay":251.6} +{"session_id":"sess-ce5984b5f024","input_length":653,"output_length":504,"hash_ids":[1724076,1724077],"delay":3211.2} +{"session_id":"sess-ce5984b5f024","input_length":2481,"output_length":43,"hash_ids":[1724078,1724079,1724080,1724081,1724082],"delay":2342.5} +{"session_id":"sess-ce5984b5f024","input_length":809,"output_length":128,"hash_ids":[1724083,1724084],"delay":441.6} +{"session_id":"sess-ce5984b5f024","input_length":1642,"output_length":150,"hash_ids":[1724085,1724086,1724087,1724088],"delay":123.2} +{"session_id":"sess-ce5984b5f024","input_length":727,"output_length":218,"hash_ids":[1724089,1724090],"delay":1287.4} +{"session_id":"sess-ce5984b5f024","input_length":431,"output_length":539,"hash_ids":[1724091],"delay":14223.9} +{"session_id":"sess-ce5984b5f024","input_length":494,"output_length":256,"hash_ids":[1724092],"delay":1188.4} +{"session_id":"sess-ce5984b5f024","input_length":550,"output_length":107,"hash_ids":[1724093,1724094],"delay":1131.9} +{"session_id":"sess-ce5984b5f024","input_length":470,"output_length":592,"hash_ids":[1724095],"delay":16612.7} +{"session_id":"sess-ce5984b5f024","input_length":1127,"output_length":130,"hash_ids":[1724096,1724097,1724098],"delay":8381.3} +{"session_id":"sess-ce5984b5f024","input_length":1433,"output_length":136,"hash_ids":[1724099,1724100,1724101],"delay":579.1} +{"session_id":"sess-ce5984b5f024","input_length":409,"output_length":54,"hash_ids":[1724102],"delay":885.3} +{"session_id":"sess-ce5984b5f024","input_length":1000,"output_length":30,"hash_ids":[1724103,1724104],"delay":442.4} +{"session_id":"sess-30460db95215","input_length":28222,"output_length":368,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1728032,1728033,1728034,1728035],"timestamp":0.0,"group_id":10} +{"session_id":"sess-30460db95215","input_length":458,"output_length":75,"hash_ids":[1728036],"delay":17689.0} +{"session_id":"sess-30460db95215","input_length":1087,"output_length":186,"hash_ids":[1728037,1728038,1728039],"delay":22788.1} +{"session_id":"sess-30460db95215","input_length":572,"output_length":128,"hash_ids":[1728040,1728041],"delay":21809.6} +{"session_id":"sess-30460db95215","input_length":2056,"output_length":236,"hash_ids":[1728042,1728043,1728044,1728045,1728046],"delay":3274.1} +{"session_id":"sess-30460db95215","input_length":1591,"output_length":163,"hash_ids":[1728047,1728048,1728049,1728050],"delay":22597.3} +{"session_id":"sess-30460db95215","input_length":1506,"output_length":231,"hash_ids":[1728051,1728052,1728053],"delay":2269.7} +{"session_id":"sess-30460db95215","input_length":1839,"output_length":95,"hash_ids":[1728054,1728055,1728056,1728057],"delay":38552.2} +{"session_id":"sess-30460db95215","input_length":2176,"output_length":94,"hash_ids":[1728058,1728059,1728060,1728061,1728062],"delay":719.8} +{"session_id":"sess-b7f4fb0427ef","input_length":30665,"output_length":153,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1732032,1732033,1732034,1732035,1732036,1732037,1732038,1732039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b7f4fb0427ef","input_length":519,"output_length":1069,"hash_ids":[1732040,1732041],"delay":1583.2} +{"session_id":"sess-b7f4fb0427ef","input_length":799,"output_length":127,"hash_ids":[1732042,1732043],"delay":1308.5} +{"session_id":"sess-b7f4fb0427ef","input_length":473,"output_length":119,"hash_ids":[1732044],"delay":538.3} +{"session_id":"sess-b7f4fb0427ef","input_length":730,"output_length":177,"hash_ids":[1732045,1732046],"delay":53946.3} +{"session_id":"sess-b7f4fb0427ef","input_length":53,"output_length":106,"hash_ids":[1732047],"delay":1485.5} +{"session_id":"sess-b7f4fb0427ef","input_length":948,"output_length":166,"hash_ids":[1732048,1732049],"delay":556.7} +{"session_id":"sess-b7f4fb0427ef","input_length":202,"output_length":293,"hash_ids":[1732050],"delay":1352.2} +{"session_id":"sess-3b4f4b74c8a8","input_length":28683,"output_length":363,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1736032,1736033,1736034,1736035,1736036],"timestamp":0.0,"group_id":3} +{"session_id":"sess-3b4f4b74c8a8","input_length":627,"output_length":279,"hash_ids":[1736037,1736038],"delay":371.2} +{"session_id":"sess-3b4f4b74c8a8","input_length":584,"output_length":156,"hash_ids":[1736039,1736040],"delay":681.7} +{"session_id":"sess-7669daf9700d","input_length":27319,"output_length":236,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1740032,1740033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7669daf9700d","input_length":2257,"output_length":73,"hash_ids":[1740034,1740035,1740036,1740037,1740038],"delay":27661.0} +{"session_id":"sess-7669daf9700d","input_length":1009,"output_length":236,"hash_ids":[1740039,1740040],"delay":1095.6} +{"session_id":"sess-f4a8f31fb71c","input_length":26717,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,1744032],"timestamp":0.0,"group_id":41} +{"session_id":"sess-f4a8f31fb71c","input_length":69,"output_length":997,"hash_ids":[1744033],"delay":1814.8} +{"session_id":"sess-f4a8f31fb71c","input_length":650,"output_length":57,"hash_ids":[1744034,1744035],"delay":1609.5} +{"session_id":"sess-f4a8f31fb71c","input_length":583,"output_length":470,"hash_ids":[1744036,1744037],"delay":28840.1} +{"session_id":"sess-f4a8f31fb71c","input_length":1219,"output_length":407,"hash_ids":[1744038,1744039,1744040],"delay":49839.4} +{"session_id":"sess-f4a8f31fb71c","input_length":117,"output_length":299,"hash_ids":[1744041],"delay":899.6} +{"session_id":"sess-f4a8f31fb71c","input_length":765,"output_length":52,"hash_ids":[1744042,1744043],"delay":1956.2} +{"session_id":"sess-f4a8f31fb71c","input_length":1472,"output_length":154,"hash_ids":[1744044,1744045,1744046],"delay":706.4} +{"session_id":"sess-f4a8f31fb71c","input_length":293,"output_length":85,"hash_ids":[1744047],"delay":921.1} +{"session_id":"sess-f4a8f31fb71c","input_length":783,"output_length":113,"hash_ids":[1744048,1744049],"delay":4236.7} +{"session_id":"sess-f4a8f31fb71c","input_length":890,"output_length":414,"hash_ids":[1744050,1744051],"delay":40542.5} +{"session_id":"sess-f4a8f31fb71c","input_length":328,"output_length":114,"hash_ids":[1744052],"delay":614.0} +{"session_id":"sess-f4a8f31fb71c","input_length":1522,"output_length":30,"hash_ids":[1744053,1744054,1744055],"delay":782.4} +{"session_id":"sess-f4a8f31fb71c","input_length":829,"output_length":46,"hash_ids":[1744056,1744057],"delay":393.5} +{"session_id":"sess-f4a8f31fb71c","input_length":1920,"output_length":126,"hash_ids":[1744058,1744059,1744060,1744061],"delay":2710.6} +{"session_id":"sess-f4a8f31fb71c","input_length":388,"output_length":514,"hash_ids":[1744062],"delay":175.3} +{"session_id":"sess-f4a8f31fb71c","input_length":310,"output_length":779,"hash_ids":[1744063],"delay":30720.9} +{"session_id":"sess-f4a8f31fb71c","input_length":475,"output_length":120,"hash_ids":[1744064],"delay":50.8} +{"session_id":"sess-f4a8f31fb71c","input_length":925,"output_length":418,"hash_ids":[1744065,1744066],"delay":508.8} +{"session_id":"sess-f4a8f31fb71c","input_length":233,"output_length":508,"hash_ids":[1744067],"delay":13845.6} +{"session_id":"sess-f4a8f31fb71c","input_length":781,"output_length":87,"hash_ids":[1744068,1744069],"delay":607.8} +{"session_id":"sess-f4a8f31fb71c","input_length":591,"output_length":622,"hash_ids":[1744070,1744071],"delay":576.7} +{"session_id":"sess-f4a8f31fb71c","input_length":1356,"output_length":156,"hash_ids":[1744072,1744073,1744074],"delay":665.2} +{"session_id":"sess-f4a8f31fb71c","input_length":2489,"output_length":64,"hash_ids":[1744075,1744076,1744077,1744078,1744079],"delay":883.0} +{"session_id":"sess-f4a8f31fb71c","input_length":1641,"output_length":199,"hash_ids":[1744080,1744081,1744082,1744083],"delay":667.2} +{"session_id":"sess-f4a8f31fb71c","input_length":846,"output_length":105,"hash_ids":[1744084,1744085],"delay":935.8} +{"session_id":"sess-f4a8f31fb71c","input_length":561,"output_length":683,"hash_ids":[1744086,1744087],"delay":684.8} +{"session_id":"sess-f4a8f31fb71c","input_length":525,"output_length":311,"hash_ids":[1744088,1744089],"delay":812.6} +{"session_id":"sess-f4a8f31fb71c","input_length":1334,"output_length":124,"hash_ids":[1744090,1744091,1744092],"delay":822.1} +{"session_id":"sess-f4a8f31fb71c","input_length":59,"output_length":221,"hash_ids":[1744093],"delay":1066.7} +{"session_id":"sess-f4a8f31fb71c","input_length":1403,"output_length":143,"hash_ids":[1744094,1744095,1744096],"delay":4688.6} +{"session_id":"sess-f4a8f31fb71c","input_length":1544,"output_length":224,"hash_ids":[1744097,1744098,1744099,1744100],"delay":237.7} +{"session_id":"sess-f4a8f31fb71c","input_length":171,"output_length":258,"hash_ids":[1744101],"delay":13830.8} +{"session_id":"sess-f4a8f31fb71c","input_length":546,"output_length":284,"hash_ids":[1744102,1744103],"delay":5248.3} +{"session_id":"sess-f4a8f31fb71c","input_length":122,"output_length":159,"hash_ids":[1744104],"delay":4905.8} +{"session_id":"sess-995a43bccc19","input_length":28161,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1748032,1748033,1748034,1748035],"timestamp":0.0,"group_id":3} +{"session_id":"sess-995a43bccc19","input_length":416,"output_length":130,"hash_ids":[1748036],"delay":636.8} +{"session_id":"sess-995a43bccc19","input_length":394,"output_length":319,"hash_ids":[1748037],"delay":1804.1} +{"session_id":"sess-995a43bccc19","input_length":807,"output_length":75,"hash_ids":[1748038,1748039],"delay":1034.2} +{"session_id":"sess-995a43bccc19","input_length":677,"output_length":457,"hash_ids":[1748040,1748041],"delay":5485.7} +{"session_id":"sess-995a43bccc19","input_length":463,"output_length":163,"hash_ids":[1748042],"delay":1314.0} +{"session_id":"sess-995a43bccc19","input_length":509,"output_length":129,"hash_ids":[1748043],"delay":715.0} +{"session_id":"sess-995a43bccc19","input_length":1565,"output_length":291,"hash_ids":[1748044,1748045,1748046,1748047],"delay":1454.8} +{"session_id":"sess-995a43bccc19","input_length":1549,"output_length":128,"hash_ids":[1748048,1748049,1748050,1748051],"delay":1401.3} +{"session_id":"sess-995a43bccc19","input_length":478,"output_length":135,"hash_ids":[1748052],"delay":1675.2} +{"session_id":"sess-2354b50e93f6","input_length":35518,"output_length":45,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,1752032,1752033,1752034,1752035,1752036,1752037,1752038,1752039,1752040,1752041,1752042,1752043,1752044,1752045,1752046,1752047,1752048,1752049],"timestamp":0.0,"group_id":13} +{"session_id":"sess-2354b50e93f6","input_length":723,"output_length":165,"hash_ids":[1752050,1752051],"delay":1051.8} +{"session_id":"sess-2354b50e93f6","input_length":621,"output_length":536,"hash_ids":[1752052,1752053],"delay":649.6} +{"session_id":"sess-2354b50e93f6","input_length":1201,"output_length":542,"hash_ids":[1752054,1752055,1752056],"delay":1487.8} +{"session_id":"sess-2354b50e93f6","input_length":1366,"output_length":364,"hash_ids":[1752057,1752058,1752059],"delay":3464.7} +{"session_id":"sess-2354b50e93f6","input_length":315,"output_length":55,"hash_ids":[1752060],"delay":467.0} +{"session_id":"sess-2354b50e93f6","input_length":486,"output_length":155,"hash_ids":[1752061],"delay":12887.4} +{"session_id":"sess-2354b50e93f6","input_length":1413,"output_length":94,"hash_ids":[1752062,1752063,1752064],"delay":2109.7} +{"session_id":"sess-2354b50e93f6","input_length":2523,"output_length":71,"hash_ids":[1752065,1752066,1752067,1752068,1752069],"delay":699.2} +{"session_id":"sess-2354b50e93f6","input_length":1571,"output_length":143,"hash_ids":[1752070,1752071,1752072,1752073],"delay":388.6} +{"session_id":"sess-2354b50e93f6","input_length":2355,"output_length":909,"hash_ids":[1752074,1752075,1752076,1752077,1752078],"delay":3179.4} +{"session_id":"sess-2354b50e93f6","input_length":2003,"output_length":86,"hash_ids":[1752079,1752080,1752081,1752082],"delay":1338.0} +{"session_id":"sess-2354b50e93f6","input_length":1159,"output_length":532,"hash_ids":[1752083,1752084,1752085],"delay":15440.5} +{"session_id":"sess-2354b50e93f6","input_length":487,"output_length":103,"hash_ids":[1752086],"delay":631.0} +{"session_id":"sess-2354b50e93f6","input_length":521,"output_length":172,"hash_ids":[1752087,1752088],"delay":175.9} +{"session_id":"sess-2354b50e93f6","input_length":2015,"output_length":156,"hash_ids":[1752089,1752090,1752091,1752092],"delay":1518.9} +{"session_id":"sess-b50e61d34e66","input_length":30513,"output_length":61,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1756032,1756033,1756034,1756035,1756036,1756037,1756038,1756039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b50e61d34e66","input_length":635,"output_length":50,"hash_ids":[1756040,1756041],"delay":36182.1} +{"session_id":"sess-28ec1257b5de","input_length":26920,"output_length":377,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1760032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-28ec1257b5de","input_length":463,"output_length":108,"hash_ids":[1760033],"delay":1978.6} +{"session_id":"sess-ec6b69069dad","input_length":30011,"output_length":407,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1764032,1764033,1764034,1764035,1764036,1764037,1764038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ec6b69069dad","input_length":559,"output_length":30,"hash_ids":[1764039,1764040],"delay":527.6} +{"session_id":"sess-ec6b69069dad","input_length":469,"output_length":43,"hash_ids":[1764041],"delay":1091.1} +{"session_id":"sess-ec6b69069dad","input_length":1171,"output_length":135,"hash_ids":[1764042,1764043,1764044],"delay":18652.1} +{"session_id":"sess-ec6b69069dad","input_length":918,"output_length":54,"hash_ids":[1764045,1764046],"delay":5472.9} +{"session_id":"sess-ec6b69069dad","input_length":1723,"output_length":293,"hash_ids":[1764047,1764048,1764049,1764050],"delay":7448.6} +{"session_id":"sess-ec6b69069dad","input_length":448,"output_length":444,"hash_ids":[1764051],"delay":1147.2} +{"session_id":"sess-ec6b69069dad","input_length":389,"output_length":88,"hash_ids":[1764052],"delay":864.3} +{"session_id":"sess-ec6b69069dad","input_length":389,"output_length":281,"hash_ids":[1764053],"delay":1406.8} +{"session_id":"sess-ec6b69069dad","input_length":1675,"output_length":53,"hash_ids":[1764054,1764055,1764056,1764057],"delay":246.2} +{"session_id":"sess-ec6b69069dad","input_length":824,"output_length":387,"hash_ids":[1764058,1764059],"delay":2138.3} +{"session_id":"sess-ec6b69069dad","input_length":515,"output_length":50,"hash_ids":[1764060,1764061],"delay":753.0} +{"session_id":"sess-ec6b69069dad","input_length":504,"output_length":193,"hash_ids":[1764062],"delay":207.4} +{"session_id":"sess-ec6b69069dad","input_length":2484,"output_length":62,"hash_ids":[1764063,1764064,1764065,1764066,1764067],"delay":15158.8} +{"session_id":"sess-bda3abc035e9","input_length":28195,"output_length":347,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,1768032,1768033,1768034,1768035],"timestamp":0.0,"group_id":11} +{"session_id":"sess-bda3abc035e9","input_length":578,"output_length":393,"hash_ids":[1768036,1768037],"delay":29097.2} +{"session_id":"sess-bda3abc035e9","input_length":412,"output_length":64,"hash_ids":[1768038],"delay":948.0} +{"session_id":"sess-bda3abc035e9","input_length":106,"output_length":255,"hash_ids":[1768039],"delay":2306.2} +{"session_id":"sess-bda3abc035e9","input_length":2425,"output_length":108,"hash_ids":[1768040,1768041,1768042,1768043,1768044],"delay":634.7} +{"session_id":"sess-bda3abc035e9","input_length":1457,"output_length":1298,"hash_ids":[1768045,1768046,1768047],"delay":1293.4} +{"session_id":"sess-bda3abc035e9","input_length":504,"output_length":90,"hash_ids":[1768048],"delay":5292.0} +{"session_id":"sess-bda3abc035e9","input_length":2776,"output_length":37,"hash_ids":[1768049,1768050,1768051,1768052,1768053,1768054],"delay":2349.7} +{"session_id":"sess-bda3abc035e9","input_length":617,"output_length":480,"hash_ids":[1768055,1768056],"delay":3689.3} +{"session_id":"sess-bda3abc035e9","input_length":930,"output_length":154,"hash_ids":[1768057,1768058],"delay":642.4} +{"session_id":"sess-bda3abc035e9","input_length":383,"output_length":34,"hash_ids":[1768059],"delay":305.1} +{"session_id":"sess-bda3abc035e9","input_length":1713,"output_length":76,"hash_ids":[1768060,1768061,1768062,1768063],"delay":2123.5} +{"session_id":"sess-fc60266d87b2","input_length":27244,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,1772032,1772033],"timestamp":0.0,"group_id":15} +{"session_id":"sess-fc60266d87b2","input_length":1720,"output_length":134,"hash_ids":[1772034,1772035,1772036,1772037],"delay":20744.6} +{"session_id":"sess-fc60266d87b2","input_length":539,"output_length":195,"hash_ids":[1772038,1772039],"delay":23018.2} +{"session_id":"sess-fc60266d87b2","input_length":584,"output_length":52,"hash_ids":[1772040,1772041],"delay":6819.1} +{"session_id":"sess-fc60266d87b2","input_length":1630,"output_length":878,"hash_ids":[1772042,1772043,1772044,1772045],"delay":5955.0} +{"session_id":"sess-fc60266d87b2","input_length":628,"output_length":1248,"hash_ids":[1772046,1772047],"delay":2395.5} +{"session_id":"sess-fc60266d87b2","input_length":2181,"output_length":40,"hash_ids":[1772048,1772049,1772050,1772051,1772052],"delay":1394.4} +{"session_id":"sess-fc60266d87b2","input_length":277,"output_length":60,"hash_ids":[1772053],"delay":419.4} +{"session_id":"sess-fc60266d87b2","input_length":412,"output_length":258,"hash_ids":[1772054],"delay":1572.1} +{"session_id":"sess-fc60266d87b2","input_length":502,"output_length":90,"hash_ids":[1772055],"delay":2062.6} +{"session_id":"sess-fc60266d87b2","input_length":1172,"output_length":128,"hash_ids":[1772056,1772057,1772058],"delay":3717.9} +{"session_id":"sess-fc60266d87b2","input_length":2388,"output_length":92,"hash_ids":[1772059,1772060,1772061,1772062,1772063],"delay":20273.6} +{"session_id":"sess-fc60266d87b2","input_length":2146,"output_length":582,"hash_ids":[1772064,1772065,1772066,1772067,1772068],"delay":354.5} +{"session_id":"sess-fc60266d87b2","input_length":550,"output_length":600,"hash_ids":[1772069,1772070],"delay":416.8} +{"session_id":"sess-fc60266d87b2","input_length":377,"output_length":376,"hash_ids":[1772071],"delay":19440.1} +{"session_id":"sess-fc60266d87b2","input_length":741,"output_length":30,"hash_ids":[1772072,1772073],"delay":534.6} +{"session_id":"sess-fc60266d87b2","input_length":677,"output_length":351,"hash_ids":[1772074,1772075],"delay":2762.9} +{"session_id":"sess-fc60266d87b2","input_length":721,"output_length":31,"hash_ids":[1772076,1772077],"delay":2026.8} +{"session_id":"sess-fc60266d87b2","input_length":101,"output_length":65,"hash_ids":[1772078],"delay":18903.8} +{"session_id":"sess-fc60266d87b2","input_length":780,"output_length":94,"hash_ids":[1772079,1772080],"delay":668.9} +{"session_id":"sess-fc60266d87b2","input_length":1217,"output_length":531,"hash_ids":[1772081,1772082,1772083],"delay":21383.1} +{"session_id":"sess-fc60266d87b2","input_length":962,"output_length":98,"hash_ids":[1772084,1772085],"delay":16800.3} +{"session_id":"sess-fc60266d87b2","input_length":323,"output_length":434,"hash_ids":[1772086],"delay":946.4} +{"session_id":"sess-fc60266d87b2","input_length":831,"output_length":476,"hash_ids":[1772087,1772088],"delay":5433.6} +{"session_id":"sess-fc60266d87b2","input_length":2344,"output_length":87,"hash_ids":[1772089,1772090,1772091,1772092,1772093],"delay":2490.4} +{"session_id":"sess-fc60266d87b2","input_length":851,"output_length":54,"hash_ids":[1772094,1772095],"delay":1817.9} +{"session_id":"sess-fc60266d87b2","input_length":970,"output_length":340,"hash_ids":[1772096,1772097],"delay":1312.3} +{"session_id":"sess-fc60266d87b2","input_length":1001,"output_length":1136,"hash_ids":[1772098,1772099],"delay":912.4} +{"session_id":"sess-fc60266d87b2","input_length":574,"output_length":317,"hash_ids":[1772100,1772101],"delay":240.5} +{"session_id":"sess-fc60266d87b2","input_length":1887,"output_length":61,"hash_ids":[1772102,1772103,1772104,1772105],"delay":431.7} +{"session_id":"sess-a3ea8c416b24","input_length":26682,"output_length":39,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1776032],"timestamp":0.0,"group_id":5} +{"session_id":"sess-a3ea8c416b24","input_length":2673,"output_length":45,"hash_ids":[1776033,1776034,1776035,1776036,1776037,1776038],"delay":1339.6} +{"session_id":"sess-a3ea8c416b24","input_length":194,"output_length":236,"hash_ids":[1776039],"delay":2138.2} +{"session_id":"sess-a3ea8c416b24","input_length":181,"output_length":122,"hash_ids":[1776040],"delay":1995.0} +{"session_id":"sess-a3ea8c416b24","input_length":736,"output_length":161,"hash_ids":[1776041,1776042],"delay":16997.0} +{"session_id":"sess-a3ea8c416b24","input_length":2930,"output_length":345,"hash_ids":[1776043,1776044,1776045,1776046,1776047,1776048],"delay":40481.5} +{"session_id":"sess-a3ea8c416b24","input_length":362,"output_length":486,"hash_ids":[1776049],"delay":1552.4} +{"session_id":"sess-a3ea8c416b24","input_length":2034,"output_length":191,"hash_ids":[1776050,1776051,1776052,1776053],"delay":1176.6} +{"session_id":"sess-a3ea8c416b24","input_length":1018,"output_length":528,"hash_ids":[1776054,1776055],"delay":2669.3} +{"session_id":"sess-a3ea8c416b24","input_length":1223,"output_length":60,"hash_ids":[1776056,1776057,1776058],"delay":1018.4} +{"session_id":"sess-a3ea8c416b24","input_length":2219,"output_length":749,"hash_ids":[1776059,1776060,1776061,1776062,1776063],"delay":1897.4} +{"session_id":"sess-a3ea8c416b24","input_length":1511,"output_length":266,"hash_ids":[1776064,1776065,1776066],"delay":15171.1} +{"session_id":"sess-a3ea8c416b24","input_length":624,"output_length":217,"hash_ids":[1776067,1776068],"delay":1147.8} +{"session_id":"sess-a3ea8c416b24","input_length":171,"output_length":95,"hash_ids":[1776069],"delay":1950.2} +{"session_id":"sess-a3ea8c416b24","input_length":865,"output_length":275,"hash_ids":[1776070,1776071],"delay":5134.1} +{"session_id":"sess-a3ea8c416b24","input_length":653,"output_length":122,"hash_ids":[1776072,1776073],"delay":665.7} +{"session_id":"sess-a3ea8c416b24","input_length":1009,"output_length":243,"hash_ids":[1776074,1776075],"delay":177.9} +{"session_id":"sess-a3ea8c416b24","input_length":216,"output_length":172,"hash_ids":[1776076],"delay":5090.6} +{"session_id":"sess-a3ea8c416b24","input_length":270,"output_length":84,"hash_ids":[1776077],"delay":432.4} +{"session_id":"sess-a3ea8c416b24","input_length":505,"output_length":61,"hash_ids":[1776078],"delay":2921.8} +{"session_id":"sess-a3ea8c416b24","input_length":507,"output_length":363,"hash_ids":[1776079],"delay":28949.2} +{"session_id":"sess-a3ea8c416b24","input_length":585,"output_length":62,"hash_ids":[1776080,1776081],"delay":2047.5} +{"session_id":"sess-a3ea8c416b24","input_length":560,"output_length":127,"hash_ids":[1776082,1776083],"delay":794.9} +{"session_id":"sess-a3ea8c416b24","input_length":86,"output_length":137,"hash_ids":[1776084],"delay":294.2} +{"session_id":"sess-a3ea8c416b24","input_length":506,"output_length":81,"hash_ids":[1776085],"delay":493.4} +{"session_id":"sess-a3ea8c416b24","input_length":1544,"output_length":66,"hash_ids":[1776086,1776087,1776088,1776089],"delay":4731.2} +{"session_id":"sess-a3ea8c416b24","input_length":908,"output_length":622,"hash_ids":[1776090,1776091],"delay":745.2} +{"session_id":"sess-a3ea8c416b24","input_length":1660,"output_length":574,"hash_ids":[1776092,1776093,1776094,1776095],"delay":499.9} +{"session_id":"sess-a3ea8c416b24","input_length":773,"output_length":302,"hash_ids":[1776096,1776097],"delay":580.9} +{"session_id":"sess-a3ea8c416b24","input_length":1194,"output_length":591,"hash_ids":[1776098,1776099,1776100],"delay":8033.1} +{"session_id":"sess-a3ea8c416b24","input_length":2425,"output_length":75,"hash_ids":[1776101,1776102,1776103,1776104,1776105],"delay":360.9} +{"session_id":"sess-a3ea8c416b24","input_length":462,"output_length":451,"hash_ids":[1776106],"delay":243.4} +{"session_id":"sess-730d7fbc90cb","input_length":30056,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1780032,1780033,1780034,1780035,1780036,1780037,1780038],"timestamp":0.0,"group_id":5} +{"session_id":"sess-730d7fbc90cb","input_length":854,"output_length":176,"hash_ids":[1780039,1780040],"delay":23597.0} +{"session_id":"sess-730d7fbc90cb","input_length":620,"output_length":913,"hash_ids":[1780041,1780042],"delay":345.7} +{"session_id":"sess-730d7fbc90cb","input_length":1179,"output_length":214,"hash_ids":[1780043,1780044,1780045],"delay":381.4} +{"session_id":"sess-730d7fbc90cb","input_length":1129,"output_length":833,"hash_ids":[1780046,1780047,1780048],"delay":5453.5} +{"session_id":"sess-730d7fbc90cb","input_length":600,"output_length":230,"hash_ids":[1780049,1780050],"delay":1114.9} +{"session_id":"sess-730d7fbc90cb","input_length":1261,"output_length":138,"hash_ids":[1780051,1780052,1780053],"delay":23397.8} +{"session_id":"sess-730d7fbc90cb","input_length":2698,"output_length":160,"hash_ids":[1780054,1780055,1780056,1780057,1780058,1780059],"delay":647.1} +{"session_id":"sess-730d7fbc90cb","input_length":1612,"output_length":373,"hash_ids":[1780060,1780061,1780062,1780063],"delay":222.9} +{"session_id":"sess-730d7fbc90cb","input_length":1405,"output_length":113,"hash_ids":[1780064,1780065,1780066],"delay":344.6} +{"session_id":"sess-730d7fbc90cb","input_length":160,"output_length":109,"hash_ids":[1780067],"delay":1138.2} +{"session_id":"sess-730d7fbc90cb","input_length":176,"output_length":100,"hash_ids":[1780068],"delay":385.5} +{"session_id":"sess-730d7fbc90cb","input_length":177,"output_length":166,"hash_ids":[1780069],"delay":416.2} +{"session_id":"sess-730d7fbc90cb","input_length":495,"output_length":30,"hash_ids":[1780070],"delay":966.1} +{"session_id":"sess-730d7fbc90cb","input_length":525,"output_length":151,"hash_ids":[1780071,1780072],"delay":306.4} +{"session_id":"sess-730d7fbc90cb","input_length":1156,"output_length":49,"hash_ids":[1780073,1780074,1780075],"delay":1536.1} +{"session_id":"sess-730d7fbc90cb","input_length":164,"output_length":95,"hash_ids":[1780076],"delay":11770.1} +{"session_id":"sess-730d7fbc90cb","input_length":1271,"output_length":140,"hash_ids":[1780077,1780078,1780079],"delay":362.6} +{"session_id":"sess-730d7fbc90cb","input_length":284,"output_length":228,"hash_ids":[1780080],"delay":26654.4} +{"session_id":"sess-730d7fbc90cb","input_length":378,"output_length":154,"hash_ids":[1780081],"delay":4118.7} +{"session_id":"sess-bea8b7a5d746","input_length":27201,"output_length":422,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1784032,1784033],"timestamp":0.0,"group_id":8} +{"session_id":"sess-bea8b7a5d746","input_length":2336,"output_length":1113,"hash_ids":[1784034,1784035,1784036,1784037,1784038],"delay":5252.5} +{"session_id":"sess-bea8b7a5d746","input_length":2526,"output_length":561,"hash_ids":[1784039,1784040,1784041,1784042,1784043],"delay":18548.1} +{"session_id":"sess-bea8b7a5d746","input_length":1386,"output_length":47,"hash_ids":[1784044,1784045,1784046],"delay":672.6} +{"session_id":"sess-bea8b7a5d746","input_length":1937,"output_length":121,"hash_ids":[1784047,1784048,1784049,1784050],"delay":11445.9} +{"session_id":"sess-bea8b7a5d746","input_length":654,"output_length":294,"hash_ids":[1784051,1784052],"delay":618.4} +{"session_id":"sess-bea8b7a5d746","input_length":330,"output_length":574,"hash_ids":[1784053],"delay":1680.7} +{"session_id":"sess-bea8b7a5d746","input_length":955,"output_length":249,"hash_ids":[1784054,1784055],"delay":3228.5} +{"session_id":"sess-bea8b7a5d746","input_length":2651,"output_length":30,"hash_ids":[1784056,1784057,1784058,1784059,1784060,1784061],"delay":550.9} +{"session_id":"sess-bea8b7a5d746","input_length":1675,"output_length":106,"hash_ids":[1784062,1784063,1784064,1784065],"delay":2848.5} +{"session_id":"sess-bea8b7a5d746","input_length":2336,"output_length":55,"hash_ids":[1784066,1784067,1784068,1784069,1784070],"delay":9435.2} +{"session_id":"sess-bea8b7a5d746","input_length":1720,"output_length":65,"hash_ids":[1784071,1784072,1784073,1784074],"delay":498.0} +{"session_id":"sess-bea8b7a5d746","input_length":1058,"output_length":83,"hash_ids":[1784075,1784076,1784077],"delay":654.4} +{"session_id":"sess-bea8b7a5d746","input_length":1096,"output_length":113,"hash_ids":[1784078,1784079,1784080],"delay":5514.7} +{"session_id":"sess-bea8b7a5d746","input_length":196,"output_length":306,"hash_ids":[1784081],"delay":194.0} +{"session_id":"sess-bea8b7a5d746","input_length":687,"output_length":167,"hash_ids":[1784082,1784083],"delay":965.8} +{"session_id":"sess-bea8b7a5d746","input_length":292,"output_length":231,"hash_ids":[1784084],"delay":425.9} +{"session_id":"sess-bea8b7a5d746","input_length":389,"output_length":150,"hash_ids":[1784085],"delay":891.0} +{"session_id":"sess-bea8b7a5d746","input_length":296,"output_length":30,"hash_ids":[1784086],"delay":1397.2} +{"session_id":"sess-bea8b7a5d746","input_length":1521,"output_length":154,"hash_ids":[1784087,1784088,1784089],"delay":21307.3} +{"session_id":"sess-bea8b7a5d746","input_length":1900,"output_length":294,"hash_ids":[1784090,1784091,1784092,1784093],"delay":376.6} +{"session_id":"sess-bea8b7a5d746","input_length":159,"output_length":191,"hash_ids":[1784094],"delay":158.1} +{"session_id":"sess-bea8b7a5d746","input_length":2225,"output_length":154,"hash_ids":[1784095,1784096,1784097,1784098,1784099],"delay":233.8} +{"session_id":"sess-bea8b7a5d746","input_length":805,"output_length":93,"hash_ids":[1784100,1784101],"delay":328.4} +{"session_id":"sess-bea8b7a5d746","input_length":724,"output_length":156,"hash_ids":[1784102,1784103],"delay":111.3} +{"session_id":"sess-bea8b7a5d746","input_length":360,"output_length":368,"hash_ids":[1784104],"delay":242.1} +{"session_id":"sess-bea8b7a5d746","input_length":681,"output_length":399,"hash_ids":[1784105,1784106],"delay":305.9} +{"session_id":"sess-bea8b7a5d746","input_length":259,"output_length":117,"hash_ids":[1784107],"delay":1020.5} +{"session_id":"sess-bea8b7a5d746","input_length":210,"output_length":66,"hash_ids":[1784108],"delay":1575.0} +{"session_id":"sess-e937c8c0947c","input_length":29318,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,1788032,1788033,1788034,1788035,1788036,1788037],"timestamp":0.0,"group_id":30} +{"session_id":"sess-e937c8c0947c","input_length":779,"output_length":116,"hash_ids":[1788038,1788039],"delay":1833.0} +{"session_id":"sess-e937c8c0947c","input_length":416,"output_length":662,"hash_ids":[1788040],"delay":14306.8} +{"session_id":"sess-e937c8c0947c","input_length":615,"output_length":1314,"hash_ids":[1788041,1788042],"delay":1256.4} +{"session_id":"sess-e937c8c0947c","input_length":1020,"output_length":42,"hash_ids":[1788043,1788044],"delay":2813.3} +{"session_id":"sess-e937c8c0947c","input_length":1379,"output_length":40,"hash_ids":[1788045,1788046,1788047],"delay":5900.8} +{"session_id":"sess-e937c8c0947c","input_length":680,"output_length":169,"hash_ids":[1788048,1788049],"delay":978.8} +{"session_id":"sess-e937c8c0947c","input_length":246,"output_length":68,"hash_ids":[1788050],"delay":1021.9} +{"session_id":"sess-e937c8c0947c","input_length":201,"output_length":129,"hash_ids":[1788051],"delay":718.9} +{"session_id":"sess-e937c8c0947c","input_length":363,"output_length":125,"hash_ids":[1788052],"delay":1201.8} +{"session_id":"sess-e937c8c0947c","input_length":271,"output_length":252,"hash_ids":[1788053],"delay":14565.9} +{"session_id":"sess-e937c8c0947c","input_length":434,"output_length":590,"hash_ids":[1788054],"delay":2441.1} +{"session_id":"sess-e937c8c0947c","input_length":1375,"output_length":276,"hash_ids":[1788055,1788056,1788057],"delay":406.4} +{"session_id":"sess-e937c8c0947c","input_length":453,"output_length":314,"hash_ids":[1788058],"delay":391.7} +{"session_id":"sess-e937c8c0947c","input_length":1305,"output_length":313,"hash_ids":[1788059,1788060,1788061],"delay":10525.5} +{"session_id":"sess-e937c8c0947c","input_length":2840,"output_length":50,"hash_ids":[1788062,1788063,1788064,1788065,1788066,1788067],"delay":577.5} +{"session_id":"sess-e937c8c0947c","input_length":2733,"output_length":438,"hash_ids":[1788068,1788069,1788070,1788071,1788072,1788073],"delay":906.8} +{"session_id":"sess-e937c8c0947c","input_length":2129,"output_length":127,"hash_ids":[1788074,1788075,1788076,1788077,1788078],"delay":9977.5} +{"session_id":"sess-e937c8c0947c","input_length":1237,"output_length":76,"hash_ids":[1788079,1788080,1788081],"delay":435.8} +{"session_id":"sess-e937c8c0947c","input_length":2583,"output_length":681,"hash_ids":[1788082,1788083,1788084,1788085,1788086,1788087],"delay":852.9} +{"session_id":"sess-3ca1aa75f937","input_length":27699,"output_length":136,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1792032,1792033,1792034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3ca1aa75f937","input_length":634,"output_length":242,"hash_ids":[1792035,1792036],"delay":7549.8} +{"session_id":"sess-3ca1aa75f937","input_length":1404,"output_length":134,"hash_ids":[1792037,1792038,1792039],"delay":65697.1} +{"session_id":"sess-3ca1aa75f937","input_length":1914,"output_length":124,"hash_ids":[1792040,1792041,1792042,1792043],"delay":1644.0} +{"session_id":"sess-3ca1aa75f937","input_length":1315,"output_length":87,"hash_ids":[1792044,1792045,1792046],"delay":388.6} +{"session_id":"sess-3ca1aa75f937","input_length":2622,"output_length":255,"hash_ids":[1792047,1792048,1792049,1792050,1792051,1792052],"delay":1443.1} +{"session_id":"sess-3ca1aa75f937","input_length":928,"output_length":166,"hash_ids":[1792053,1792054],"delay":1350.8} +{"session_id":"sess-3ca1aa75f937","input_length":1609,"output_length":172,"hash_ids":[1792055,1792056,1792057,1792058],"delay":856.4} +{"session_id":"sess-3ca1aa75f937","input_length":455,"output_length":311,"hash_ids":[1792059],"delay":3277.2} +{"session_id":"sess-3ca1aa75f937","input_length":580,"output_length":262,"hash_ids":[1792060,1792061],"delay":2876.2} +{"session_id":"sess-3ca1aa75f937","input_length":1024,"output_length":92,"hash_ids":[1792062,1792063],"delay":3344.9} +{"session_id":"sess-65c87b513ed7","input_length":26631,"output_length":195,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1796032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1ab9dfc4a347","input_length":34522,"output_length":330,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1800032,1800033,1800034,1800035,1800036,1800037,1800038,1800039,1800040,1800041,1800042,1800043,1800044,1800045,1800046,1800047],"timestamp":0.0,"group_id":1} +{"session_id":"sess-1ab9dfc4a347","input_length":473,"output_length":30,"hash_ids":[1800048],"delay":780.4} +{"session_id":"sess-1ab9dfc4a347","input_length":1032,"output_length":940,"hash_ids":[1800049,1800050,1800051],"delay":1082.0} +{"session_id":"sess-1ab9dfc4a347","input_length":2564,"output_length":120,"hash_ids":[1800052,1800053,1800054,1800055,1800056,1800057],"delay":6781.3} +{"session_id":"sess-1ab9dfc4a347","input_length":966,"output_length":244,"hash_ids":[1800058,1800059],"delay":2710.8} +{"session_id":"sess-1ab9dfc4a347","input_length":791,"output_length":179,"hash_ids":[1800060,1800061],"delay":101.4} +{"session_id":"sess-1c18265ae4df","input_length":28862,"output_length":248,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1804032,1804033,1804034,1804035,1804036],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1c18265ae4df","input_length":855,"output_length":74,"hash_ids":[1804037,1804038],"delay":611.7} +{"session_id":"sess-1c18265ae4df","input_length":492,"output_length":658,"hash_ids":[1804039],"delay":14252.2} +{"session_id":"sess-1c18265ae4df","input_length":303,"output_length":111,"hash_ids":[1804040],"delay":678.4} +{"session_id":"sess-1c18265ae4df","input_length":129,"output_length":731,"hash_ids":[1804041],"delay":542.8} +{"session_id":"sess-1c18265ae4df","input_length":1102,"output_length":152,"hash_ids":[1804042,1804043,1804044],"delay":12518.3} +{"session_id":"sess-1c18265ae4df","input_length":181,"output_length":173,"hash_ids":[1804045],"delay":438.1} +{"session_id":"sess-1c18265ae4df","input_length":680,"output_length":1195,"hash_ids":[1804046,1804047],"delay":1015.8} +{"session_id":"sess-1c18265ae4df","input_length":776,"output_length":33,"hash_ids":[1804048,1804049],"delay":199.6} +{"session_id":"sess-1c18265ae4df","input_length":586,"output_length":51,"hash_ids":[1804050,1804051],"delay":705.7} +{"session_id":"sess-1c18265ae4df","input_length":379,"output_length":71,"hash_ids":[1804052],"delay":445.6} +{"session_id":"sess-1c18265ae4df","input_length":380,"output_length":129,"hash_ids":[1804053],"delay":859.0} +{"session_id":"sess-1c18265ae4df","input_length":2563,"output_length":637,"hash_ids":[1804054,1804055,1804056,1804057,1804058,1804059],"delay":536.6} +{"session_id":"sess-1c18265ae4df","input_length":1000,"output_length":431,"hash_ids":[1804060,1804061],"delay":649.6} +{"session_id":"sess-1c18265ae4df","input_length":159,"output_length":265,"hash_ids":[1804062],"delay":12075.7} +{"session_id":"sess-1c18265ae4df","input_length":1271,"output_length":217,"hash_ids":[1804063,1804064,1804065],"delay":379.0} +{"session_id":"sess-1c18265ae4df","input_length":1186,"output_length":183,"hash_ids":[1804066,1804067,1804068],"delay":1796.7} +{"session_id":"sess-1c18265ae4df","input_length":288,"output_length":143,"hash_ids":[1804069],"delay":32151.5} +{"session_id":"sess-1c18265ae4df","input_length":750,"output_length":206,"hash_ids":[1804070,1804071],"delay":3082.5} +{"session_id":"sess-1c18265ae4df","input_length":465,"output_length":204,"hash_ids":[1804072],"delay":42930.3} +{"session_id":"sess-1c18265ae4df","input_length":230,"output_length":1306,"hash_ids":[1804073],"delay":387.1} +{"session_id":"sess-1c18265ae4df","input_length":193,"output_length":52,"hash_ids":[1804074],"delay":804.0} +{"session_id":"sess-1c18265ae4df","input_length":480,"output_length":86,"hash_ids":[1804075],"delay":290.2} +{"session_id":"sess-1c18265ae4df","input_length":520,"output_length":193,"hash_ids":[1804076,1804077],"delay":323.3} +{"session_id":"sess-1c18265ae4df","input_length":2102,"output_length":149,"hash_ids":[1804078,1804079,1804080,1804081,1804082],"delay":538.7} +{"session_id":"sess-1c18265ae4df","input_length":1775,"output_length":462,"hash_ids":[1804083,1804084,1804085,1804086],"delay":330.7} +{"session_id":"sess-1c18265ae4df","input_length":423,"output_length":737,"hash_ids":[1804087],"delay":2096.8} +{"session_id":"sess-1c18265ae4df","input_length":221,"output_length":255,"hash_ids":[1804088],"delay":761.6} +{"session_id":"sess-1c18265ae4df","input_length":390,"output_length":48,"hash_ids":[1804089],"delay":420.7} +{"session_id":"sess-1c18265ae4df","input_length":511,"output_length":197,"hash_ids":[1804090],"delay":256.0} +{"session_id":"sess-1c18265ae4df","input_length":2460,"output_length":289,"hash_ids":[1804091,1804092,1804093,1804094,1804095],"delay":2616.6} +{"session_id":"sess-a4c7899d9881","input_length":26638,"output_length":77,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1808032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a4c7899d9881","input_length":596,"output_length":69,"hash_ids":[1808033,1808034],"delay":1787.4} +{"session_id":"sess-a4c7899d9881","input_length":2409,"output_length":247,"hash_ids":[1808035,1808036,1808037,1808038,1808039],"delay":645.4} +{"session_id":"sess-a4c7899d9881","input_length":941,"output_length":195,"hash_ids":[1808040,1808041],"delay":914.6} +{"session_id":"sess-a4c7899d9881","input_length":1436,"output_length":40,"hash_ids":[1808042,1808043,1808044],"delay":738.5} +{"session_id":"sess-a4c7899d9881","input_length":2140,"output_length":748,"hash_ids":[1808045,1808046,1808047,1808048,1808049],"delay":2379.8} +{"session_id":"sess-a4c7899d9881","input_length":698,"output_length":798,"hash_ids":[1808050,1808051],"delay":785.5} +{"session_id":"sess-a4c7899d9881","input_length":537,"output_length":100,"hash_ids":[1808052,1808053],"delay":1056.7} +{"session_id":"sess-a4c7899d9881","input_length":2090,"output_length":71,"hash_ids":[1808054,1808055,1808056,1808057,1808058],"delay":1390.0} +{"session_id":"sess-a4c7899d9881","input_length":131,"output_length":342,"hash_ids":[1808059],"delay":34812.3} +{"session_id":"sess-a4c7899d9881","input_length":1140,"output_length":144,"hash_ids":[1808060,1808061,1808062],"delay":770.7} +{"session_id":"sess-a4c7899d9881","input_length":566,"output_length":393,"hash_ids":[1808063,1808064],"delay":11596.8} +{"session_id":"sess-a4c7899d9881","input_length":1119,"output_length":208,"hash_ids":[1808065,1808066,1808067],"delay":1945.1} +{"session_id":"sess-a4c7899d9881","input_length":766,"output_length":223,"hash_ids":[1808068,1808069],"delay":1748.5} +{"session_id":"sess-a4c7899d9881","input_length":182,"output_length":144,"hash_ids":[1808070],"delay":1064.9} +{"session_id":"sess-a4c7899d9881","input_length":342,"output_length":56,"hash_ids":[1808071],"delay":1467.0} +{"session_id":"sess-a4c7899d9881","input_length":464,"output_length":332,"hash_ids":[1808072],"delay":1057.8} +{"session_id":"sess-a4c7899d9881","input_length":643,"output_length":247,"hash_ids":[1808073,1808074],"delay":924.1} +{"session_id":"sess-a4c7899d9881","input_length":2924,"output_length":318,"hash_ids":[1808075,1808076,1808077,1808078,1808079,1808080],"delay":10194.4} +{"session_id":"sess-a4c7899d9881","input_length":908,"output_length":124,"hash_ids":[1808081,1808082],"delay":501.8} +{"session_id":"sess-a4c7899d9881","input_length":555,"output_length":316,"hash_ids":[1808083,1808084],"delay":1158.4} +{"session_id":"sess-a4c7899d9881","input_length":1464,"output_length":238,"hash_ids":[1808085,1808086,1808087],"delay":7990.2} +{"session_id":"sess-a4c7899d9881","input_length":1205,"output_length":120,"hash_ids":[1808088,1808089,1808090],"delay":2055.5} +{"session_id":"sess-a4c7899d9881","input_length":1525,"output_length":89,"hash_ids":[1808091,1808092,1808093],"delay":27983.0} +{"session_id":"sess-a4c7899d9881","input_length":2674,"output_length":186,"hash_ids":[1808094,1808095,1808096,1808097,1808098,1808099],"delay":5978.3} +{"session_id":"sess-a4c7899d9881","input_length":611,"output_length":90,"hash_ids":[1808100,1808101],"delay":1298.0} +{"session_id":"sess-a4c7899d9881","input_length":1025,"output_length":129,"hash_ids":[1808102,1808103,1808104],"delay":4570.9} +{"session_id":"sess-a4c7899d9881","input_length":2009,"output_length":102,"hash_ids":[1808105,1808106,1808107,1808108],"delay":491.0} +{"session_id":"sess-3d55797c9afa","input_length":27650,"output_length":343,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1812032,1812033,1812034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3d55797c9afa","input_length":829,"output_length":1313,"hash_ids":[1812035,1812036],"delay":1212.9} +{"session_id":"sess-3d55797c9afa","input_length":497,"output_length":87,"hash_ids":[1812037],"delay":3298.1} +{"session_id":"sess-3d55797c9afa","input_length":591,"output_length":199,"hash_ids":[1812038,1812039],"delay":2311.1} +{"session_id":"sess-3d55797c9afa","input_length":808,"output_length":155,"hash_ids":[1812040,1812041],"delay":1789.2} +{"session_id":"sess-3d55797c9afa","input_length":208,"output_length":291,"hash_ids":[1812042],"delay":1016.9} +{"session_id":"sess-3d55797c9afa","input_length":1186,"output_length":114,"hash_ids":[1812043,1812044,1812045],"delay":704.7} +{"session_id":"sess-3d55797c9afa","input_length":1200,"output_length":137,"hash_ids":[1812046,1812047,1812048],"delay":59144.9} +{"session_id":"sess-3d55797c9afa","input_length":2620,"output_length":76,"hash_ids":[1812049,1812050,1812051,1812052,1812053,1812054],"delay":1255.8} +{"session_id":"sess-3d55797c9afa","input_length":311,"output_length":397,"hash_ids":[1812055],"delay":3839.1} +{"session_id":"sess-3d55797c9afa","input_length":730,"output_length":45,"hash_ids":[1812056,1812057],"delay":481.5} +{"session_id":"sess-3d55797c9afa","input_length":1783,"output_length":825,"hash_ids":[1812058,1812059,1812060,1812061],"delay":7235.9} +{"session_id":"sess-3d55797c9afa","input_length":1776,"output_length":572,"hash_ids":[1812062,1812063,1812064,1812065],"delay":2395.5} +{"session_id":"sess-3d55797c9afa","input_length":1140,"output_length":88,"hash_ids":[1812066,1812067,1812068],"delay":382.9} +{"session_id":"sess-3d55797c9afa","input_length":154,"output_length":80,"hash_ids":[1812069],"delay":612.8} +{"session_id":"sess-3d55797c9afa","input_length":825,"output_length":549,"hash_ids":[1812070,1812071],"delay":700.6} +{"session_id":"sess-c573c3e9c07e","input_length":29512,"output_length":730,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,1816032,1816033,1816034,1816035,1816036,1816037],"timestamp":0.0,"group_id":4} +{"session_id":"sess-c573c3e9c07e","input_length":738,"output_length":349,"hash_ids":[1816038,1816039],"delay":965.6} +{"session_id":"sess-c573c3e9c07e","input_length":137,"output_length":102,"hash_ids":[1816040],"delay":19198.8} +{"session_id":"sess-c573c3e9c07e","input_length":585,"output_length":89,"hash_ids":[1816041,1816042],"delay":1808.8} +{"session_id":"sess-c573c3e9c07e","input_length":535,"output_length":58,"hash_ids":[1816043,1816044],"delay":1158.2} +{"session_id":"sess-c573c3e9c07e","input_length":277,"output_length":363,"hash_ids":[1816045],"delay":1277.4} +{"session_id":"sess-c573c3e9c07e","input_length":851,"output_length":204,"hash_ids":[1816046,1816047],"delay":249.1} +{"session_id":"sess-c573c3e9c07e","input_length":136,"output_length":284,"hash_ids":[1816048],"delay":931.3} +{"session_id":"sess-8eb2763b74fb","input_length":26475,"output_length":310,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-c9f35c1ed802","input_length":32715,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,1824032,1824033,1824034,1824035,1824036,1824037,1824038,1824039,1824040,1824041,1824042,1824043],"timestamp":0.0,"group_id":33} +{"session_id":"sess-c9f35c1ed802","input_length":1572,"output_length":201,"hash_ids":[1824044,1824045,1824046,1824047],"delay":727.5} +{"session_id":"sess-c9f35c1ed802","input_length":511,"output_length":90,"hash_ids":[1824048],"delay":10952.6} +{"session_id":"sess-c9f35c1ed802","input_length":442,"output_length":43,"hash_ids":[1824049],"delay":1279.4} +{"session_id":"sess-c9f35c1ed802","input_length":171,"output_length":157,"hash_ids":[1824050],"delay":360.6} +{"session_id":"sess-c9f35c1ed802","input_length":501,"output_length":178,"hash_ids":[1824051],"delay":2603.6} +{"session_id":"sess-c9f35c1ed802","input_length":73,"output_length":239,"hash_ids":[1824052],"delay":14695.5} +{"session_id":"sess-c9f35c1ed802","input_length":1125,"output_length":308,"hash_ids":[1824053,1824054,1824055],"delay":1460.3} +{"session_id":"sess-c9f35c1ed802","input_length":868,"output_length":145,"hash_ids":[1824056,1824057],"delay":3907.3} +{"session_id":"sess-c9f35c1ed802","input_length":277,"output_length":76,"hash_ids":[1824058],"delay":17140.4} +{"session_id":"sess-c9f35c1ed802","input_length":1040,"output_length":132,"hash_ids":[1824059,1824060,1824061],"delay":2135.4} +{"session_id":"sess-c9f35c1ed802","input_length":2191,"output_length":306,"hash_ids":[1824062,1824063,1824064,1824065,1824066],"delay":779.2} +{"session_id":"sess-c9f35c1ed802","input_length":1252,"output_length":103,"hash_ids":[1824067,1824068,1824069],"delay":513.7} +{"session_id":"sess-c9f35c1ed802","input_length":167,"output_length":51,"hash_ids":[1824070],"delay":1209.1} +{"session_id":"sess-c9f35c1ed802","input_length":373,"output_length":281,"hash_ids":[1824071],"delay":9627.4} +{"session_id":"sess-c9f35c1ed802","input_length":928,"output_length":61,"hash_ids":[1824072,1824073],"delay":1481.4} +{"session_id":"sess-c9f35c1ed802","input_length":850,"output_length":601,"hash_ids":[1824074,1824075],"delay":1733.0} +{"session_id":"sess-c9f35c1ed802","input_length":193,"output_length":95,"hash_ids":[1824076],"delay":783.4} +{"session_id":"sess-c9f35c1ed802","input_length":99,"output_length":135,"hash_ids":[1824077],"delay":2304.3} +{"session_id":"sess-c9f35c1ed802","input_length":55,"output_length":265,"hash_ids":[1824078],"delay":770.3} +{"session_id":"sess-c9f35c1ed802","input_length":386,"output_length":120,"hash_ids":[1824079],"delay":5804.5} +{"session_id":"sess-c9f35c1ed802","input_length":582,"output_length":285,"hash_ids":[1824080,1824081],"delay":1266.5} +{"session_id":"sess-c9f35c1ed802","input_length":1923,"output_length":676,"hash_ids":[1824082,1824083,1824084,1824085],"delay":23481.5} +{"session_id":"sess-c9f35c1ed802","input_length":246,"output_length":218,"hash_ids":[1824086],"delay":180.9} +{"session_id":"sess-c9f35c1ed802","input_length":1431,"output_length":90,"hash_ids":[1824087,1824088,1824089],"delay":11756.3} +{"session_id":"sess-c9f35c1ed802","input_length":1297,"output_length":164,"hash_ids":[1824090,1824091,1824092],"delay":942.0} +{"session_id":"sess-1c8cb1829a81","input_length":34489,"output_length":43,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,1828032,1828033,1828034,1828035,1828036,1828037,1828038,1828039,1828040,1828041,1828042,1828043,1828044,1828045,1828046,1828047],"timestamp":0.0,"group_id":12} +{"session_id":"sess-1c8cb1829a81","input_length":1323,"output_length":449,"hash_ids":[1828048,1828049,1828050],"delay":1005.1} +{"session_id":"sess-1c8cb1829a81","input_length":1015,"output_length":590,"hash_ids":[1828051,1828052],"delay":6960.5} +{"session_id":"sess-1c8cb1829a81","input_length":211,"output_length":351,"hash_ids":[1828053],"delay":773.7} +{"session_id":"sess-1c8cb1829a81","input_length":166,"output_length":166,"hash_ids":[1828054],"delay":12041.8} +{"session_id":"sess-1c8cb1829a81","input_length":457,"output_length":56,"hash_ids":[1828055],"delay":941.7} +{"session_id":"sess-1c8cb1829a81","input_length":825,"output_length":351,"hash_ids":[1828056,1828057],"delay":520.9} +{"session_id":"sess-1c8cb1829a81","input_length":772,"output_length":273,"hash_ids":[1828058,1828059],"delay":4770.3} +{"session_id":"sess-1c8cb1829a81","input_length":1564,"output_length":514,"hash_ids":[1828060,1828061,1828062,1828063],"delay":1788.3} +{"session_id":"sess-1c8cb1829a81","input_length":2204,"output_length":216,"hash_ids":[1828064,1828065,1828066,1828067,1828068],"delay":1056.5} +{"session_id":"sess-1c8cb1829a81","input_length":986,"output_length":167,"hash_ids":[1828069,1828070],"delay":19381.2} +{"session_id":"sess-1c8cb1829a81","input_length":282,"output_length":432,"hash_ids":[1828071],"delay":3366.5} +{"session_id":"sess-1c8cb1829a81","input_length":1367,"output_length":179,"hash_ids":[1828072,1828073,1828074],"delay":5662.2} +{"session_id":"sess-1c8cb1829a81","input_length":616,"output_length":107,"hash_ids":[1828075,1828076],"delay":11743.7} +{"session_id":"sess-1c8cb1829a81","input_length":1179,"output_length":339,"hash_ids":[1828077,1828078,1828079],"delay":253.1} +{"session_id":"sess-1c8cb1829a81","input_length":79,"output_length":172,"hash_ids":[1828080],"delay":287.8} +{"session_id":"sess-1c8cb1829a81","input_length":673,"output_length":72,"hash_ids":[1828081,1828082],"delay":2129.4} +{"session_id":"sess-1c8cb1829a81","input_length":616,"output_length":369,"hash_ids":[1828083,1828084],"delay":459.4} +{"session_id":"sess-1c8cb1829a81","input_length":166,"output_length":474,"hash_ids":[1828085],"delay":6503.1} +{"session_id":"sess-1c8cb1829a81","input_length":294,"output_length":179,"hash_ids":[1828086],"delay":307.7} +{"session_id":"sess-1c8cb1829a81","input_length":2170,"output_length":224,"hash_ids":[1828087,1828088,1828089,1828090,1828091],"delay":342.5} +{"session_id":"sess-1c8cb1829a81","input_length":418,"output_length":767,"hash_ids":[1828092],"delay":392.6} +{"session_id":"sess-1c8cb1829a81","input_length":845,"output_length":38,"hash_ids":[1828093,1828094],"delay":1391.3} +{"session_id":"sess-1c8cb1829a81","input_length":1919,"output_length":81,"hash_ids":[1828095,1828096,1828097,1828098],"delay":353.6} +{"session_id":"sess-1c8cb1829a81","input_length":509,"output_length":88,"hash_ids":[1828099],"delay":1656.3} +{"session_id":"sess-1c8cb1829a81","input_length":1487,"output_length":147,"hash_ids":[1828100,1828101,1828102],"delay":866.8} +{"session_id":"sess-1c8cb1829a81","input_length":271,"output_length":164,"hash_ids":[1828103],"delay":852.7} +{"session_id":"sess-34acea2acef8","input_length":32418,"output_length":258,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1832032,1832033,1832034,1832035,1832036,1832037,1832038,1832039,1832040,1832041,1832042,1832043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-34acea2acef8","input_length":288,"output_length":136,"hash_ids":[1832044],"delay":1398.3} +{"session_id":"sess-34acea2acef8","input_length":1574,"output_length":440,"hash_ids":[1832045,1832046,1832047,1832048],"delay":1642.0} +{"session_id":"sess-34acea2acef8","input_length":970,"output_length":165,"hash_ids":[1832049,1832050],"delay":18818.3} +{"session_id":"sess-34acea2acef8","input_length":305,"output_length":160,"hash_ids":[1832051],"delay":240.3} +{"session_id":"sess-34acea2acef8","input_length":1037,"output_length":169,"hash_ids":[1832052,1832053,1832054],"delay":2320.1} +{"session_id":"sess-34acea2acef8","input_length":741,"output_length":152,"hash_ids":[1832055,1832056],"delay":4099.5} +{"session_id":"sess-34acea2acef8","input_length":1166,"output_length":516,"hash_ids":[1832057,1832058,1832059],"delay":504.3} +{"session_id":"sess-34acea2acef8","input_length":1643,"output_length":525,"hash_ids":[1832060,1832061,1832062,1832063],"delay":899.9} +{"session_id":"sess-34acea2acef8","input_length":1176,"output_length":326,"hash_ids":[1832064,1832065,1832066],"delay":18948.4} +{"session_id":"sess-34acea2acef8","input_length":452,"output_length":88,"hash_ids":[1832067],"delay":539.8} +{"session_id":"sess-34acea2acef8","input_length":170,"output_length":148,"hash_ids":[1832068],"delay":1182.0} +{"session_id":"sess-34acea2acef8","input_length":868,"output_length":34,"hash_ids":[1832069,1832070],"delay":11878.7} +{"session_id":"sess-34acea2acef8","input_length":1613,"output_length":31,"hash_ids":[1832071,1832072,1832073,1832074],"delay":916.3} +{"session_id":"sess-34acea2acef8","input_length":1082,"output_length":135,"hash_ids":[1832075,1832076,1832077],"delay":1784.0} +{"session_id":"sess-34acea2acef8","input_length":456,"output_length":157,"hash_ids":[1832078],"delay":1589.8} +{"session_id":"sess-34acea2acef8","input_length":447,"output_length":376,"hash_ids":[1832079],"delay":383.3} +{"session_id":"sess-34acea2acef8","input_length":2901,"output_length":158,"hash_ids":[1832080,1832081,1832082,1832083,1832084,1832085],"delay":399.2} +{"session_id":"sess-9f5ed9fe177e","input_length":26763,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1836032],"timestamp":0.0,"group_id":6} +{"session_id":"sess-9f5ed9fe177e","input_length":2730,"output_length":100,"hash_ids":[1836033,1836034,1836035,1836036,1836037,1836038],"delay":1020.9} +{"session_id":"sess-9f5ed9fe177e","input_length":2622,"output_length":158,"hash_ids":[1836039,1836040,1836041,1836042,1836043,1836044],"delay":952.5} +{"session_id":"sess-9f5ed9fe177e","input_length":962,"output_length":1358,"hash_ids":[1836045,1836046],"delay":980.5} +{"session_id":"sess-9f5ed9fe177e","input_length":284,"output_length":292,"hash_ids":[1836047],"delay":29283.2} +{"session_id":"sess-9f5ed9fe177e","input_length":2263,"output_length":69,"hash_ids":[1836048,1836049,1836050,1836051,1836052],"delay":2404.0} +{"session_id":"sess-9f5ed9fe177e","input_length":2636,"output_length":180,"hash_ids":[1836053,1836054,1836055,1836056,1836057,1836058],"delay":619.1} +{"session_id":"sess-9f5ed9fe177e","input_length":853,"output_length":92,"hash_ids":[1836059,1836060],"delay":2738.6} +{"session_id":"sess-9f5ed9fe177e","input_length":250,"output_length":222,"hash_ids":[1836061],"delay":12467.7} +{"session_id":"sess-9f5ed9fe177e","input_length":921,"output_length":516,"hash_ids":[1836062,1836063],"delay":968.7} +{"session_id":"sess-9f5ed9fe177e","input_length":2141,"output_length":63,"hash_ids":[1836064,1836065,1836066,1836067,1836068],"delay":6970.9} +{"session_id":"sess-9f5ed9fe177e","input_length":198,"output_length":150,"hash_ids":[1836069],"delay":424.2} +{"session_id":"sess-9f5ed9fe177e","input_length":462,"output_length":674,"hash_ids":[1836070],"delay":479.8} +{"session_id":"sess-9f5ed9fe177e","input_length":553,"output_length":142,"hash_ids":[1836071,1836072],"delay":6705.2} +{"session_id":"sess-9f5ed9fe177e","input_length":1431,"output_length":111,"hash_ids":[1836073,1836074,1836075],"delay":240.7} +{"session_id":"sess-9f5ed9fe177e","input_length":1341,"output_length":188,"hash_ids":[1836076,1836077,1836078],"delay":954.5} +{"session_id":"sess-9f5ed9fe177e","input_length":611,"output_length":255,"hash_ids":[1836079,1836080],"delay":1146.7} +{"session_id":"sess-9f5ed9fe177e","input_length":699,"output_length":184,"hash_ids":[1836081,1836082],"delay":1071.1} +{"session_id":"sess-9f5ed9fe177e","input_length":1413,"output_length":131,"hash_ids":[1836083,1836084,1836085],"delay":10331.6} +{"session_id":"sess-9f5ed9fe177e","input_length":1042,"output_length":368,"hash_ids":[1836086,1836087,1836088],"delay":311.4} +{"session_id":"sess-9f5ed9fe177e","input_length":592,"output_length":390,"hash_ids":[1836089,1836090],"delay":13427.9} +{"session_id":"sess-9f5ed9fe177e","input_length":919,"output_length":81,"hash_ids":[1836091,1836092],"delay":423.9} +{"session_id":"sess-9f5ed9fe177e","input_length":570,"output_length":154,"hash_ids":[1836093,1836094],"delay":223.9} +{"session_id":"sess-9f5ed9fe177e","input_length":1905,"output_length":30,"hash_ids":[1836095,1836096,1836097,1836098],"delay":648.7} +{"session_id":"sess-9f5ed9fe177e","input_length":531,"output_length":120,"hash_ids":[1836099,1836100],"delay":317.2} +{"session_id":"sess-9f5ed9fe177e","input_length":957,"output_length":427,"hash_ids":[1836101,1836102],"delay":283.6} +{"session_id":"sess-9f5ed9fe177e","input_length":628,"output_length":65,"hash_ids":[1836103,1836104],"delay":327.6} +{"session_id":"sess-9f5ed9fe177e","input_length":422,"output_length":302,"hash_ids":[1836105],"delay":500.1} +{"session_id":"sess-9f5ed9fe177e","input_length":587,"output_length":75,"hash_ids":[1836106,1836107],"delay":296.4} +{"session_id":"sess-9f5ed9fe177e","input_length":268,"output_length":89,"hash_ids":[1836108],"delay":9894.6} +{"session_id":"sess-06d21cf61e2a","input_length":37002,"output_length":182,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1840032,1840033,1840034,1840035,1840036,1840037,1840038,1840039,1840040,1840041,1840042,1840043,1840044,1840045,1840046,1840047,1840048,1840049,1840050,1840051,1840052],"timestamp":0.0,"group_id":0} +{"session_id":"sess-06d21cf61e2a","input_length":963,"output_length":137,"hash_ids":[1840053,1840054],"delay":5484.1} +{"session_id":"sess-06d21cf61e2a","input_length":224,"output_length":188,"hash_ids":[1840055],"delay":2527.9} +{"session_id":"sess-523e7be6060e","input_length":29955,"output_length":317,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,1844032,1844033,1844034,1844035,1844036,1844037,1844038],"timestamp":0.0,"group_id":15} +{"session_id":"sess-523e7be6060e","input_length":403,"output_length":577,"hash_ids":[1844039],"delay":531.8} +{"session_id":"sess-523e7be6060e","input_length":419,"output_length":330,"hash_ids":[1844040],"delay":972.8} +{"session_id":"sess-523e7be6060e","input_length":427,"output_length":133,"hash_ids":[1844041],"delay":1232.9} +{"session_id":"sess-523e7be6060e","input_length":457,"output_length":294,"hash_ids":[1844042],"delay":210.7} +{"session_id":"sess-523e7be6060e","input_length":635,"output_length":345,"hash_ids":[1844043,1844044],"delay":546.4} +{"session_id":"sess-523e7be6060e","input_length":2637,"output_length":91,"hash_ids":[1844045,1844046,1844047,1844048,1844049,1844050],"delay":1177.7} +{"session_id":"sess-523e7be6060e","input_length":374,"output_length":115,"hash_ids":[1844051],"delay":673.6} +{"session_id":"sess-523e7be6060e","input_length":448,"output_length":457,"hash_ids":[1844052],"delay":324.4} +{"session_id":"sess-523e7be6060e","input_length":294,"output_length":108,"hash_ids":[1844053],"delay":778.6} +{"session_id":"sess-523e7be6060e","input_length":168,"output_length":61,"hash_ids":[1844054],"delay":894.4} +{"session_id":"sess-523e7be6060e","input_length":238,"output_length":98,"hash_ids":[1844055],"delay":1014.9} +{"session_id":"sess-523e7be6060e","input_length":1306,"output_length":142,"hash_ids":[1844056,1844057,1844058],"delay":859.8} +{"session_id":"sess-523e7be6060e","input_length":851,"output_length":308,"hash_ids":[1844059,1844060],"delay":3081.9} +{"session_id":"sess-523e7be6060e","input_length":572,"output_length":36,"hash_ids":[1844061,1844062],"delay":924.4} +{"session_id":"sess-523e7be6060e","input_length":1815,"output_length":748,"hash_ids":[1844063,1844064,1844065,1844066],"delay":2014.9} +{"session_id":"sess-523e7be6060e","input_length":1710,"output_length":482,"hash_ids":[1844067,1844068,1844069,1844070],"delay":8744.2} +{"session_id":"sess-523e7be6060e","input_length":931,"output_length":630,"hash_ids":[1844071,1844072],"delay":273.9} +{"session_id":"sess-523e7be6060e","input_length":536,"output_length":789,"hash_ids":[1844073,1844074],"delay":7050.1} +{"session_id":"sess-523e7be6060e","input_length":840,"output_length":99,"hash_ids":[1844075,1844076],"delay":1725.4} +{"session_id":"sess-e7860e9a2c93","input_length":37027,"output_length":609,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1848032,1848033,1848034,1848035,1848036,1848037,1848038,1848039,1848040,1848041,1848042,1848043,1848044,1848045,1848046,1848047,1848048,1848049,1848050,1848051,1848052],"timestamp":0.0,"group_id":9} +{"session_id":"sess-a7e74965dabb","input_length":31232,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1852032,1852033,1852034,1852035,1852036,1852037,1852038,1852039,1852040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a7e74965dabb","input_length":2292,"output_length":110,"hash_ids":[1852041,1852042,1852043,1852044,1852045],"delay":3954.3} +{"session_id":"sess-a7e74965dabb","input_length":342,"output_length":88,"hash_ids":[1852046],"delay":803.9} +{"session_id":"sess-a7e74965dabb","input_length":1155,"output_length":157,"hash_ids":[1852047,1852048,1852049],"delay":889.6} +{"session_id":"sess-a7e74965dabb","input_length":1926,"output_length":45,"hash_ids":[1852050,1852051,1852052,1852053],"delay":1357.1} +{"session_id":"sess-a7e74965dabb","input_length":1079,"output_length":212,"hash_ids":[1852054,1852055,1852056],"delay":11391.6} +{"session_id":"sess-a7e74965dabb","input_length":600,"output_length":310,"hash_ids":[1852057,1852058],"delay":357.1} +{"session_id":"sess-a7e74965dabb","input_length":2301,"output_length":82,"hash_ids":[1852059,1852060,1852061,1852062,1852063],"delay":8962.3} +{"session_id":"sess-a7e74965dabb","input_length":229,"output_length":30,"hash_ids":[1852064],"delay":624.2} +{"session_id":"sess-a7e74965dabb","input_length":585,"output_length":331,"hash_ids":[1852065,1852066],"delay":9508.9} +{"session_id":"sess-a7e74965dabb","input_length":989,"output_length":46,"hash_ids":[1852067,1852068],"delay":329.2} +{"session_id":"sess-a7e74965dabb","input_length":881,"output_length":77,"hash_ids":[1852069,1852070],"delay":1628.7} +{"session_id":"sess-a7e74965dabb","input_length":890,"output_length":100,"hash_ids":[1852071,1852072],"delay":4151.0} +{"session_id":"sess-a7e74965dabb","input_length":388,"output_length":194,"hash_ids":[1852073],"delay":30673.9} +{"session_id":"sess-a7e74965dabb","input_length":1696,"output_length":102,"hash_ids":[1852074,1852075,1852076,1852077],"delay":272.1} +{"session_id":"sess-a7e74965dabb","input_length":1884,"output_length":467,"hash_ids":[1852078,1852079,1852080,1852081],"delay":46.5} +{"session_id":"sess-a7e74965dabb","input_length":789,"output_length":236,"hash_ids":[1852082,1852083],"delay":4238.4} +{"session_id":"sess-a7e74965dabb","input_length":635,"output_length":411,"hash_ids":[1852084,1852085],"delay":611.4} +{"session_id":"sess-a7e74965dabb","input_length":1760,"output_length":30,"hash_ids":[1852086,1852087,1852088,1852089],"delay":433.7} +{"session_id":"sess-a7e74965dabb","input_length":2295,"output_length":191,"hash_ids":[1852090,1852091,1852092,1852093,1852094],"delay":326.2} +{"session_id":"sess-a7e74965dabb","input_length":967,"output_length":393,"hash_ids":[1852095,1852096],"delay":1216.4} +{"session_id":"sess-a7e74965dabb","input_length":1793,"output_length":284,"hash_ids":[1852097,1852098,1852099,1852100],"delay":8404.6} +{"session_id":"sess-a7e74965dabb","input_length":2150,"output_length":463,"hash_ids":[1852101,1852102,1852103,1852104,1852105],"delay":417.1} +{"session_id":"sess-a7e74965dabb","input_length":2236,"output_length":285,"hash_ids":[1852106,1852107,1852108,1852109,1852110],"delay":720.4} +{"session_id":"sess-3a2f93c27e9f","input_length":30904,"output_length":469,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,1856032,1856033,1856034,1856035,1856036,1856037,1856038,1856039,1856040],"timestamp":0.0,"group_id":10} +{"session_id":"sess-3a2f93c27e9f","input_length":1895,"output_length":30,"hash_ids":[1856041,1856042,1856043,1856044],"delay":1979.7} +{"session_id":"sess-3a2f93c27e9f","input_length":636,"output_length":315,"hash_ids":[1856045,1856046],"delay":6478.1} +{"session_id":"sess-3a2f93c27e9f","input_length":1245,"output_length":60,"hash_ids":[1856047,1856048,1856049],"delay":2798.6} +{"session_id":"sess-3a2f93c27e9f","input_length":52,"output_length":425,"hash_ids":[1856050],"delay":999.1} +{"session_id":"sess-3a2f93c27e9f","input_length":2885,"output_length":535,"hash_ids":[1856051,1856052,1856053,1856054,1856055,1856056],"delay":696.8} +{"session_id":"sess-3a2f93c27e9f","input_length":606,"output_length":1177,"hash_ids":[1856057,1856058],"delay":2748.2} +{"session_id":"sess-3a2f93c27e9f","input_length":653,"output_length":580,"hash_ids":[1856059,1856060],"delay":2160.0} +{"session_id":"sess-3a2f93c27e9f","input_length":1368,"output_length":341,"hash_ids":[1856061,1856062,1856063],"delay":5587.6} +{"session_id":"sess-3a2f93c27e9f","input_length":1976,"output_length":692,"hash_ids":[1856064,1856065,1856066,1856067],"delay":1273.6} +{"session_id":"sess-3a2f93c27e9f","input_length":353,"output_length":84,"hash_ids":[1856068],"delay":796.6} +{"session_id":"sess-3a2f93c27e9f","input_length":2868,"output_length":340,"hash_ids":[1856069,1856070,1856071,1856072,1856073,1856074],"delay":28966.5} +{"session_id":"sess-3a2f93c27e9f","input_length":1886,"output_length":97,"hash_ids":[1856075,1856076,1856077,1856078],"delay":648.4} +{"session_id":"sess-3a2f93c27e9f","input_length":699,"output_length":271,"hash_ids":[1856079,1856080],"delay":1682.3} +{"session_id":"sess-3a2f93c27e9f","input_length":121,"output_length":158,"hash_ids":[1856081],"delay":3700.7} +{"session_id":"sess-3a2f93c27e9f","input_length":1487,"output_length":512,"hash_ids":[1856082,1856083,1856084],"delay":226.3} +{"session_id":"sess-3a2f93c27e9f","input_length":893,"output_length":138,"hash_ids":[1856085,1856086],"delay":612.3} +{"session_id":"sess-3a2f93c27e9f","input_length":1187,"output_length":431,"hash_ids":[1856087,1856088,1856089],"delay":5682.3} +{"session_id":"sess-3a2f93c27e9f","input_length":87,"output_length":147,"hash_ids":[1856090],"delay":76.6} +{"session_id":"sess-3a2f93c27e9f","input_length":538,"output_length":128,"hash_ids":[1856091,1856092],"delay":6870.0} +{"session_id":"sess-3a2f93c27e9f","input_length":283,"output_length":86,"hash_ids":[1856093],"delay":10491.9} +{"session_id":"sess-3a2f93c27e9f","input_length":1144,"output_length":132,"hash_ids":[1856094,1856095,1856096],"delay":986.0} +{"session_id":"sess-3a2f93c27e9f","input_length":765,"output_length":83,"hash_ids":[1856097,1856098],"delay":2321.2} +{"session_id":"sess-3a2f93c27e9f","input_length":2871,"output_length":399,"hash_ids":[1856099,1856100,1856101,1856102,1856103,1856104],"delay":113.4} +{"session_id":"sess-354f41a2db1b","input_length":26143,"output_length":265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051],"timestamp":0.0,"group_id":5} +{"session_id":"sess-354f41a2db1b","input_length":1860,"output_length":319,"hash_ids":[1856105,1856106,1856107,1856108],"delay":774.8} +{"session_id":"sess-354f41a2db1b","input_length":216,"output_length":30,"hash_ids":[1856109],"delay":1653.1} +{"session_id":"sess-354f41a2db1b","input_length":880,"output_length":620,"hash_ids":[1856110,1856111],"delay":1610.0} +{"session_id":"sess-354f41a2db1b","input_length":1255,"output_length":30,"hash_ids":[1856112,1856113,1856114],"delay":891.5} +{"session_id":"sess-354f41a2db1b","input_length":500,"output_length":122,"hash_ids":[1856115],"delay":4150.2} +{"session_id":"sess-354f41a2db1b","input_length":875,"output_length":102,"hash_ids":[1856116,1856117],"delay":2153.1} +{"session_id":"sess-354f41a2db1b","input_length":406,"output_length":113,"hash_ids":[1856118],"delay":471.8} +{"session_id":"sess-354f41a2db1b","input_length":1153,"output_length":153,"hash_ids":[1856119,1856120,1856121],"delay":39279.8} +{"session_id":"sess-354f41a2db1b","input_length":299,"output_length":1219,"hash_ids":[1856122],"delay":34907.5} +{"session_id":"sess-354f41a2db1b","input_length":1082,"output_length":99,"hash_ids":[1856123,1856124,1856125],"delay":329.1} +{"session_id":"sess-354f41a2db1b","input_length":538,"output_length":78,"hash_ids":[1856126,1856127],"delay":3060.5} +{"session_id":"sess-354f41a2db1b","input_length":436,"output_length":243,"hash_ids":[1856128],"delay":963.8} +{"session_id":"sess-354f41a2db1b","input_length":2235,"output_length":188,"hash_ids":[1856129,1856130,1856131,1856132,1856133],"delay":7576.5} +{"session_id":"sess-354f41a2db1b","input_length":619,"output_length":277,"hash_ids":[1856134,1856135],"delay":2730.8} +{"session_id":"sess-354f41a2db1b","input_length":51,"output_length":282,"hash_ids":[1856136],"delay":857.0} +{"session_id":"sess-354f41a2db1b","input_length":381,"output_length":168,"hash_ids":[1856137],"delay":12514.8} +{"session_id":"sess-354f41a2db1b","input_length":571,"output_length":124,"hash_ids":[1856138,1856139],"delay":680.2} +{"session_id":"sess-354f41a2db1b","input_length":2198,"output_length":399,"hash_ids":[1856140,1856141,1856142,1856143,1856144],"delay":456.1} +{"session_id":"sess-354f41a2db1b","input_length":315,"output_length":257,"hash_ids":[1856145],"delay":2015.1} +{"session_id":"sess-354f41a2db1b","input_length":1580,"output_length":476,"hash_ids":[1856146,1856147,1856148,1856149],"delay":335.7} +{"session_id":"sess-354f41a2db1b","input_length":1745,"output_length":177,"hash_ids":[1856150,1856151,1856152,1856153],"delay":17560.1} +{"session_id":"sess-354f41a2db1b","input_length":1201,"output_length":591,"hash_ids":[1856154,1856155,1856156],"delay":2654.4} +{"session_id":"sess-354f41a2db1b","input_length":1058,"output_length":277,"hash_ids":[1856157,1856158,1856159],"delay":861.5} +{"session_id":"sess-354f41a2db1b","input_length":653,"output_length":432,"hash_ids":[1856160,1856161],"delay":3505.1} +{"session_id":"sess-354f41a2db1b","input_length":1588,"output_length":807,"hash_ids":[1856162,1856163,1856164,1856165],"delay":5983.3} +{"session_id":"sess-354f41a2db1b","input_length":538,"output_length":114,"hash_ids":[1856166,1856167],"delay":909.6} +{"session_id":"sess-354f41a2db1b","input_length":1344,"output_length":45,"hash_ids":[1856168,1856169,1856170],"delay":199.7} +{"session_id":"sess-354f41a2db1b","input_length":1783,"output_length":96,"hash_ids":[1856171,1856172,1856173,1856174],"delay":328.9} +{"session_id":"sess-354f41a2db1b","input_length":1121,"output_length":124,"hash_ids":[1856175,1856176,1856177],"delay":4676.1} +{"session_id":"sess-354f41a2db1b","input_length":652,"output_length":509,"hash_ids":[1856178,1856179],"delay":225.8} +{"session_id":"sess-354f41a2db1b","input_length":832,"output_length":60,"hash_ids":[1856180,1856181],"delay":63.1} +{"session_id":"sess-43e8e2dbfe79","input_length":27213,"output_length":259,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1864032,1864033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0fca3d7a5709","input_length":33269,"output_length":65,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1868032,1868033,1868034,1868035,1868036,1868037,1868038,1868039,1868040,1868041,1868042,1868043,1868044],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0fca3d7a5709","input_length":597,"output_length":471,"hash_ids":[1868045,1868046],"delay":703.9} +{"session_id":"sess-0fca3d7a5709","input_length":1050,"output_length":298,"hash_ids":[1868047,1868048,1868049],"delay":552.0} +{"session_id":"sess-0fca3d7a5709","input_length":393,"output_length":98,"hash_ids":[1868050],"delay":3550.2} +{"session_id":"sess-0fca3d7a5709","input_length":2749,"output_length":30,"hash_ids":[1868051,1868052,1868053,1868054,1868055,1868056],"delay":554.4} +{"session_id":"sess-0fca3d7a5709","input_length":398,"output_length":803,"hash_ids":[1868057],"delay":4669.6} +{"session_id":"sess-0fca3d7a5709","input_length":1325,"output_length":76,"hash_ids":[1868058,1868059,1868060],"delay":407.4} +{"session_id":"sess-561036b8291d","input_length":26892,"output_length":802,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1872032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-561036b8291d","input_length":1131,"output_length":655,"hash_ids":[1872033,1872034,1872035],"delay":14036.2} +{"session_id":"sess-561036b8291d","input_length":2118,"output_length":221,"hash_ids":[1872036,1872037,1872038,1872039,1872040],"delay":345.2} +{"session_id":"sess-561036b8291d","input_length":96,"output_length":316,"hash_ids":[1872041],"delay":1066.9} +{"session_id":"sess-561036b8291d","input_length":373,"output_length":269,"hash_ids":[1872042],"delay":855.6} +{"session_id":"sess-561036b8291d","input_length":334,"output_length":296,"hash_ids":[1872043],"delay":606.1} +{"session_id":"sess-561036b8291d","input_length":772,"output_length":1401,"hash_ids":[1872044,1872045],"delay":351.6} +{"session_id":"sess-561036b8291d","input_length":1135,"output_length":284,"hash_ids":[1872046,1872047,1872048],"delay":496.9} +{"session_id":"sess-561036b8291d","input_length":688,"output_length":30,"hash_ids":[1872049,1872050],"delay":602.1} +{"session_id":"sess-561036b8291d","input_length":211,"output_length":1104,"hash_ids":[1872051],"delay":11166.4} +{"session_id":"sess-0a1994ba1edd","input_length":27048,"output_length":95,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,1876032],"timestamp":0.0,"group_id":25} +{"session_id":"sess-9662b5220587","input_length":33031,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1880032,1880033,1880034,1880035,1880036,1880037,1880038,1880039,1880040,1880041,1880042,1880043,1880044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9662b5220587","input_length":679,"output_length":141,"hash_ids":[1880045,1880046],"delay":21576.6} +{"session_id":"sess-438c43b75180","input_length":32807,"output_length":234,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1884032,1884033,1884034,1884035,1884036,1884037,1884038,1884039,1884040,1884041,1884042,1884043,1884044],"timestamp":0.0,"group_id":2} +{"session_id":"sess-438c43b75180","input_length":1553,"output_length":114,"hash_ids":[1884045,1884046,1884047,1884048],"delay":996.9} +{"session_id":"sess-438c43b75180","input_length":702,"output_length":258,"hash_ids":[1884049,1884050],"delay":371.3} +{"session_id":"sess-438c43b75180","input_length":2155,"output_length":161,"hash_ids":[1884051,1884052,1884053,1884054,1884055],"delay":1411.6} +{"session_id":"sess-438c43b75180","input_length":60,"output_length":223,"hash_ids":[1884056],"delay":3151.5} +{"session_id":"sess-438c43b75180","input_length":928,"output_length":233,"hash_ids":[1884057,1884058],"delay":41691.3} +{"session_id":"sess-438c43b75180","input_length":1519,"output_length":168,"hash_ids":[1884059,1884060,1884061],"delay":4452.3} +{"session_id":"sess-438c43b75180","input_length":2187,"output_length":52,"hash_ids":[1884062,1884063,1884064,1884065,1884066],"delay":17676.6} +{"session_id":"sess-438c43b75180","input_length":491,"output_length":270,"hash_ids":[1884067],"delay":2198.4} +{"session_id":"sess-438c43b75180","input_length":2102,"output_length":616,"hash_ids":[1884068,1884069,1884070,1884071,1884072],"delay":13292.2} +{"session_id":"sess-438c43b75180","input_length":1310,"output_length":60,"hash_ids":[1884073,1884074,1884075],"delay":22471.2} +{"session_id":"sess-438c43b75180","input_length":649,"output_length":59,"hash_ids":[1884076,1884077],"delay":1511.8} +{"session_id":"sess-438c43b75180","input_length":682,"output_length":512,"hash_ids":[1884078,1884079],"delay":1193.8} +{"session_id":"sess-438c43b75180","input_length":628,"output_length":244,"hash_ids":[1884080,1884081],"delay":17557.7} +{"session_id":"sess-438c43b75180","input_length":97,"output_length":96,"hash_ids":[1884082],"delay":1302.1} +{"session_id":"sess-438c43b75180","input_length":254,"output_length":255,"hash_ids":[1884083],"delay":613.9} +{"session_id":"sess-438c43b75180","input_length":1562,"output_length":129,"hash_ids":[1884084,1884085,1884086,1884087],"delay":272.3} +{"session_id":"sess-438c43b75180","input_length":1315,"output_length":232,"hash_ids":[1884088,1884089,1884090],"delay":552.6} +{"session_id":"sess-a925e1b1ba6a","input_length":28599,"output_length":111,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1888032,1888033,1888034,1888035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a925e1b1ba6a","input_length":1105,"output_length":239,"hash_ids":[1888036,1888037,1888038],"delay":1244.8} +{"session_id":"sess-a925e1b1ba6a","input_length":946,"output_length":118,"hash_ids":[1888039,1888040],"delay":924.7} +{"session_id":"sess-a925e1b1ba6a","input_length":303,"output_length":288,"hash_ids":[1888041],"delay":9286.3} +{"session_id":"sess-a925e1b1ba6a","input_length":557,"output_length":127,"hash_ids":[1888042,1888043],"delay":1546.0} +{"session_id":"sess-a925e1b1ba6a","input_length":2470,"output_length":186,"hash_ids":[1888044,1888045,1888046,1888047,1888048],"delay":1352.2} +{"session_id":"sess-a925e1b1ba6a","input_length":385,"output_length":642,"hash_ids":[1888049],"delay":23596.4} +{"session_id":"sess-a925e1b1ba6a","input_length":509,"output_length":93,"hash_ids":[1888050],"delay":16770.5} +{"session_id":"sess-a925e1b1ba6a","input_length":186,"output_length":203,"hash_ids":[1888051],"delay":2693.6} +{"session_id":"sess-a925e1b1ba6a","input_length":739,"output_length":238,"hash_ids":[1888052,1888053],"delay":2178.8} +{"session_id":"sess-a925e1b1ba6a","input_length":347,"output_length":343,"hash_ids":[1888054],"delay":785.3} +{"session_id":"sess-a925e1b1ba6a","input_length":1158,"output_length":115,"hash_ids":[1888055,1888056,1888057],"delay":314.2} +{"session_id":"sess-a925e1b1ba6a","input_length":329,"output_length":145,"hash_ids":[1888058],"delay":129.3} +{"session_id":"sess-a925e1b1ba6a","input_length":536,"output_length":767,"hash_ids":[1888059,1888060],"delay":974.0} +{"session_id":"sess-a925e1b1ba6a","input_length":154,"output_length":905,"hash_ids":[1888061],"delay":332.2} +{"session_id":"sess-fac91fce4a84","input_length":29679,"output_length":747,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,1892032,1892033,1892034,1892035,1892036,1892037],"timestamp":0.0,"group_id":42} +{"session_id":"sess-fac91fce4a84","input_length":569,"output_length":73,"hash_ids":[1892038,1892039],"delay":1097.8} +{"session_id":"sess-fac91fce4a84","input_length":1132,"output_length":42,"hash_ids":[1892040,1892041,1892042],"delay":1634.2} +{"session_id":"sess-fac91fce4a84","input_length":1905,"output_length":120,"hash_ids":[1892043,1892044,1892045,1892046],"delay":944.1} +{"session_id":"sess-fac91fce4a84","input_length":528,"output_length":108,"hash_ids":[1892047,1892048],"delay":17516.1} +{"session_id":"sess-fac91fce4a84","input_length":426,"output_length":143,"hash_ids":[1892049],"delay":4063.7} +{"session_id":"sess-fac91fce4a84","input_length":182,"output_length":198,"hash_ids":[1892050],"delay":9128.0} +{"session_id":"sess-fac91fce4a84","input_length":1082,"output_length":188,"hash_ids":[1892051,1892052,1892053],"delay":774.3} +{"session_id":"sess-fac91fce4a84","input_length":632,"output_length":261,"hash_ids":[1892054,1892055],"delay":22046.7} +{"session_id":"sess-fac91fce4a84","input_length":1074,"output_length":218,"hash_ids":[1892056,1892057,1892058],"delay":630.0} +{"session_id":"sess-fac91fce4a84","input_length":2207,"output_length":302,"hash_ids":[1892059,1892060,1892061,1892062,1892063],"delay":604.0} +{"session_id":"sess-fac91fce4a84","input_length":1895,"output_length":503,"hash_ids":[1892064,1892065,1892066,1892067],"delay":1844.1} +{"session_id":"sess-fac91fce4a84","input_length":796,"output_length":324,"hash_ids":[1892068,1892069],"delay":516.9} +{"session_id":"sess-fac91fce4a84","input_length":2736,"output_length":116,"hash_ids":[1892070,1892071,1892072,1892073,1892074,1892075],"delay":13019.5} +{"session_id":"sess-fac91fce4a84","input_length":1038,"output_length":123,"hash_ids":[1892076,1892077,1892078],"delay":568.8} +{"session_id":"sess-fac91fce4a84","input_length":2974,"output_length":189,"hash_ids":[1892079,1892080,1892081,1892082,1892083,1892084],"delay":311.0} +{"session_id":"sess-fac91fce4a84","input_length":2944,"output_length":127,"hash_ids":[1892085,1892086,1892087,1892088,1892089,1892090],"delay":18084.8} +{"session_id":"sess-fac91fce4a84","input_length":1665,"output_length":163,"hash_ids":[1892091,1892092,1892093,1892094],"delay":468.2} +{"session_id":"sess-fac91fce4a84","input_length":134,"output_length":40,"hash_ids":[1892095],"delay":468.3} +{"session_id":"sess-fac91fce4a84","input_length":2014,"output_length":30,"hash_ids":[1892096,1892097,1892098,1892099],"delay":704.5} +{"session_id":"sess-fac91fce4a84","input_length":615,"output_length":243,"hash_ids":[1892100,1892101],"delay":600.5} +{"session_id":"sess-fac91fce4a84","input_length":1141,"output_length":534,"hash_ids":[1892102,1892103,1892104],"delay":2751.2} +{"session_id":"sess-fac91fce4a84","input_length":1081,"output_length":555,"hash_ids":[1892105,1892106,1892107],"delay":2292.9} +{"session_id":"sess-fac91fce4a84","input_length":1394,"output_length":231,"hash_ids":[1892108,1892109,1892110],"delay":3161.8} +{"session_id":"sess-4559e4774d23","input_length":37218,"output_length":188,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1896032,1896033,1896034,1896035,1896036,1896037,1896038,1896039,1896040,1896041,1896042,1896043,1896044,1896045,1896046,1896047,1896048,1896049,1896050,1896051,1896052],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4559e4774d23","input_length":531,"output_length":68,"hash_ids":[1896053,1896054],"delay":454.0} +{"session_id":"sess-4559e4774d23","input_length":436,"output_length":111,"hash_ids":[1896055],"delay":582.0} +{"session_id":"sess-4559e4774d23","input_length":950,"output_length":165,"hash_ids":[1896056,1896057],"delay":1905.8} +{"session_id":"sess-4559e4774d23","input_length":1426,"output_length":298,"hash_ids":[1896058,1896059,1896060],"delay":2686.4} +{"session_id":"sess-4559e4774d23","input_length":2404,"output_length":512,"hash_ids":[1896061,1896062,1896063,1896064,1896065],"delay":17673.4} +{"session_id":"sess-4559e4774d23","input_length":2372,"output_length":322,"hash_ids":[1896066,1896067,1896068,1896069,1896070],"delay":1086.1} +{"session_id":"sess-4559e4774d23","input_length":738,"output_length":109,"hash_ids":[1896071,1896072],"delay":1035.8} +{"session_id":"sess-4559e4774d23","input_length":578,"output_length":155,"hash_ids":[1896073,1896074],"delay":8523.8} +{"session_id":"sess-4559e4774d23","input_length":1704,"output_length":158,"hash_ids":[1896075,1896076,1896077,1896078],"delay":2310.6} +{"session_id":"sess-4559e4774d23","input_length":409,"output_length":136,"hash_ids":[1896079],"delay":1480.5} +{"session_id":"sess-4559e4774d23","input_length":1964,"output_length":116,"hash_ids":[1896080,1896081,1896082,1896083],"delay":598.2} +{"session_id":"sess-4559e4774d23","input_length":257,"output_length":194,"hash_ids":[1896084],"delay":994.5} +{"session_id":"sess-4559e4774d23","input_length":1213,"output_length":119,"hash_ids":[1896085,1896086,1896087],"delay":2030.9} +{"session_id":"sess-e7d5fdbf9b92","input_length":26834,"output_length":784,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1900032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e7d5fdbf9b92","input_length":2209,"output_length":112,"hash_ids":[1900033,1900034,1900035,1900036,1900037],"delay":1611.7} +{"session_id":"sess-e7d5fdbf9b92","input_length":2432,"output_length":378,"hash_ids":[1900038,1900039,1900040,1900041,1900042],"delay":5938.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":2507,"output_length":184,"hash_ids":[1900043,1900044,1900045,1900046,1900047],"delay":49011.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":423,"output_length":108,"hash_ids":[1900048],"delay":3576.4} +{"session_id":"sess-e7d5fdbf9b92","input_length":1181,"output_length":266,"hash_ids":[1900049,1900050,1900051],"delay":689.3} +{"session_id":"sess-e7d5fdbf9b92","input_length":891,"output_length":279,"hash_ids":[1900052,1900053],"delay":868.8} +{"session_id":"sess-e7d5fdbf9b92","input_length":1844,"output_length":30,"hash_ids":[1900054,1900055,1900056,1900057],"delay":13422.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":609,"output_length":1187,"hash_ids":[1900058,1900059],"delay":942.1} +{"session_id":"sess-e7d5fdbf9b92","input_length":1187,"output_length":169,"hash_ids":[1900060,1900061,1900062],"delay":19697.6} +{"session_id":"sess-e7d5fdbf9b92","input_length":346,"output_length":68,"hash_ids":[1900063],"delay":374.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":756,"output_length":48,"hash_ids":[1900064,1900065],"delay":851.8} +{"session_id":"sess-e7d5fdbf9b92","input_length":2025,"output_length":239,"hash_ids":[1900066,1900067,1900068,1900069],"delay":3523.3} +{"session_id":"sess-e7d5fdbf9b92","input_length":1547,"output_length":227,"hash_ids":[1900070,1900071,1900072,1900073],"delay":6977.7} +{"session_id":"sess-e7d5fdbf9b92","input_length":507,"output_length":136,"hash_ids":[1900074],"delay":1541.6} +{"session_id":"sess-e7d5fdbf9b92","input_length":621,"output_length":293,"hash_ids":[1900075,1900076],"delay":907.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":938,"output_length":111,"hash_ids":[1900077,1900078],"delay":303.2} +{"session_id":"sess-e7d5fdbf9b92","input_length":1626,"output_length":44,"hash_ids":[1900079,1900080,1900081,1900082],"delay":1353.5} +{"session_id":"sess-e7d5fdbf9b92","input_length":507,"output_length":77,"hash_ids":[1900083],"delay":11135.3} +{"session_id":"sess-e7d5fdbf9b92","input_length":341,"output_length":584,"hash_ids":[1900084],"delay":922.0} +{"session_id":"sess-e7d5fdbf9b92","input_length":2580,"output_length":260,"hash_ids":[1900085,1900086,1900087,1900088,1900089,1900090],"delay":924.6} +{"session_id":"sess-e7d5fdbf9b92","input_length":728,"output_length":698,"hash_ids":[1900091,1900092],"delay":3737.1} +{"session_id":"sess-0fcfedbc4428","input_length":37032,"output_length":88,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,1904032,1904033,1904034,1904035,1904036,1904037,1904038,1904039,1904040,1904041,1904042,1904043,1904044,1904045,1904046,1904047,1904048,1904049,1904050,1904051,1904052],"timestamp":0.0,"group_id":13} +{"session_id":"sess-0fcfedbc4428","input_length":2380,"output_length":74,"hash_ids":[1904053,1904054,1904055,1904056,1904057],"delay":2187.1} +{"session_id":"sess-0fcfedbc4428","input_length":330,"output_length":486,"hash_ids":[1904058],"delay":1048.7} +{"session_id":"sess-0fcfedbc4428","input_length":1049,"output_length":178,"hash_ids":[1904059,1904060,1904061],"delay":1507.1} +{"session_id":"sess-0fcfedbc4428","input_length":1669,"output_length":817,"hash_ids":[1904062,1904063,1904064,1904065],"delay":4630.4} +{"session_id":"sess-57c9e2afdbef","input_length":27003,"output_length":125,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1908032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-57c9e2afdbef","input_length":1000,"output_length":57,"hash_ids":[1908033,1908034],"delay":1692.1} +{"session_id":"sess-57c9e2afdbef","input_length":865,"output_length":209,"hash_ids":[1908035,1908036],"delay":1400.7} +{"session_id":"sess-57c9e2afdbef","input_length":490,"output_length":571,"hash_ids":[1908037],"delay":446.3} +{"session_id":"sess-57c9e2afdbef","input_length":133,"output_length":237,"hash_ids":[1908038],"delay":1389.1} +{"session_id":"sess-57c9e2afdbef","input_length":297,"output_length":133,"hash_ids":[1908039],"delay":3355.2} +{"session_id":"sess-57c9e2afdbef","input_length":1161,"output_length":1105,"hash_ids":[1908040,1908041,1908042],"delay":693.5} +{"session_id":"sess-57c9e2afdbef","input_length":515,"output_length":238,"hash_ids":[1908043,1908044],"delay":486.0} +{"session_id":"sess-57c9e2afdbef","input_length":1010,"output_length":93,"hash_ids":[1908045,1908046],"delay":16993.0} +{"session_id":"sess-57c9e2afdbef","input_length":773,"output_length":30,"hash_ids":[1908047,1908048],"delay":35162.9} +{"session_id":"sess-57c9e2afdbef","input_length":1432,"output_length":238,"hash_ids":[1908049,1908050,1908051],"delay":264.7} +{"session_id":"sess-57c9e2afdbef","input_length":438,"output_length":249,"hash_ids":[1908052],"delay":4908.0} +{"session_id":"sess-57c9e2afdbef","input_length":1437,"output_length":362,"hash_ids":[1908053,1908054,1908055],"delay":1558.8} +{"session_id":"sess-57c9e2afdbef","input_length":1995,"output_length":127,"hash_ids":[1908056,1908057,1908058,1908059],"delay":715.7} +{"session_id":"sess-57c9e2afdbef","input_length":662,"output_length":77,"hash_ids":[1908060,1908061],"delay":346.5} +{"session_id":"sess-57c9e2afdbef","input_length":164,"output_length":466,"hash_ids":[1908062],"delay":848.0} +{"session_id":"sess-57c9e2afdbef","input_length":1572,"output_length":106,"hash_ids":[1908063,1908064,1908065,1908066],"delay":476.5} +{"session_id":"sess-57c9e2afdbef","input_length":941,"output_length":162,"hash_ids":[1908067,1908068],"delay":1280.4} +{"session_id":"sess-57c9e2afdbef","input_length":1673,"output_length":113,"hash_ids":[1908069,1908070,1908071,1908072],"delay":24729.4} +{"session_id":"sess-57c9e2afdbef","input_length":1723,"output_length":457,"hash_ids":[1908073,1908074,1908075,1908076],"delay":1083.0} +{"session_id":"sess-57c9e2afdbef","input_length":979,"output_length":106,"hash_ids":[1908077,1908078],"delay":35388.6} +{"session_id":"sess-57c9e2afdbef","input_length":562,"output_length":129,"hash_ids":[1908079,1908080],"delay":317.3} +{"session_id":"sess-57c9e2afdbef","input_length":88,"output_length":192,"hash_ids":[1908081],"delay":498.0} +{"session_id":"sess-850400140168","input_length":29353,"output_length":47,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1912032,1912033,1912034,1912035,1912036,1912037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-850400140168","input_length":878,"output_length":146,"hash_ids":[1912038,1912039],"delay":984.6} +{"session_id":"sess-850400140168","input_length":675,"output_length":354,"hash_ids":[1912040,1912041],"delay":592.3} +{"session_id":"sess-850400140168","input_length":1004,"output_length":194,"hash_ids":[1912042,1912043],"delay":5189.9} +{"session_id":"sess-850400140168","input_length":2143,"output_length":160,"hash_ids":[1912044,1912045,1912046,1912047,1912048],"delay":4416.0} +{"session_id":"sess-850400140168","input_length":2633,"output_length":209,"hash_ids":[1912049,1912050,1912051,1912052,1912053,1912054],"delay":9435.4} +{"session_id":"sess-850400140168","input_length":774,"output_length":148,"hash_ids":[1912055,1912056],"delay":1921.6} +{"session_id":"sess-850400140168","input_length":1196,"output_length":247,"hash_ids":[1912057,1912058,1912059],"delay":687.7} +{"session_id":"sess-850400140168","input_length":1360,"output_length":80,"hash_ids":[1912060,1912061,1912062],"delay":9783.2} +{"session_id":"sess-850400140168","input_length":67,"output_length":50,"hash_ids":[1912063],"delay":2601.0} +{"session_id":"sess-850400140168","input_length":862,"output_length":382,"hash_ids":[1912064,1912065],"delay":262.0} +{"session_id":"sess-850400140168","input_length":585,"output_length":581,"hash_ids":[1912066,1912067],"delay":184.1} +{"session_id":"sess-850400140168","input_length":300,"output_length":156,"hash_ids":[1912068],"delay":626.6} +{"session_id":"sess-850400140168","input_length":491,"output_length":136,"hash_ids":[1912069],"delay":10686.6} +{"session_id":"sess-850400140168","input_length":587,"output_length":144,"hash_ids":[1912070,1912071],"delay":350.0} +{"session_id":"sess-850400140168","input_length":351,"output_length":630,"hash_ids":[1912072],"delay":817.4} +{"session_id":"sess-850400140168","input_length":680,"output_length":159,"hash_ids":[1912073,1912074],"delay":822.4} +{"session_id":"sess-850400140168","input_length":2126,"output_length":205,"hash_ids":[1912075,1912076,1912077,1912078,1912079],"delay":1195.7} +{"session_id":"sess-850400140168","input_length":719,"output_length":167,"hash_ids":[1912080,1912081],"delay":5812.8} +{"session_id":"sess-850400140168","input_length":695,"output_length":74,"hash_ids":[1912082,1912083],"delay":8813.0} +{"session_id":"sess-850400140168","input_length":1477,"output_length":464,"hash_ids":[1912084,1912085,1912086],"delay":1072.7} +{"session_id":"sess-850400140168","input_length":2098,"output_length":278,"hash_ids":[1912087,1912088,1912089,1912090,1912091],"delay":4482.1} +{"session_id":"sess-850400140168","input_length":991,"output_length":130,"hash_ids":[1912092,1912093],"delay":212.5} +{"session_id":"sess-850400140168","input_length":878,"output_length":59,"hash_ids":[1912094,1912095],"delay":864.7} +{"session_id":"sess-850400140168","input_length":485,"output_length":160,"hash_ids":[1912096],"delay":931.8} +{"session_id":"sess-850400140168","input_length":468,"output_length":73,"hash_ids":[1912097],"delay":955.2} +{"session_id":"sess-850400140168","input_length":2468,"output_length":46,"hash_ids":[1912098,1912099,1912100,1912101,1912102],"delay":51.1} +{"session_id":"sess-850400140168","input_length":2147,"output_length":435,"hash_ids":[1912103,1912104,1912105,1912106,1912107],"delay":175.5} +{"session_id":"sess-3c14a324e974","input_length":26675,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,1916032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-3c14a324e974","input_length":1445,"output_length":211,"hash_ids":[1916033,1916034,1916035],"delay":428.2} +{"session_id":"sess-3c14a324e974","input_length":1174,"output_length":35,"hash_ids":[1916036,1916037,1916038],"delay":1686.0} +{"session_id":"sess-3c14a324e974","input_length":664,"output_length":103,"hash_ids":[1916039,1916040],"delay":31118.5} +{"session_id":"sess-3c14a324e974","input_length":1536,"output_length":65,"hash_ids":[1916041,1916042,1916043],"delay":10654.1} +{"session_id":"sess-3c14a324e974","input_length":2600,"output_length":170,"hash_ids":[1916044,1916045,1916046,1916047,1916048,1916049],"delay":27084.9} +{"session_id":"sess-3c14a324e974","input_length":1124,"output_length":79,"hash_ids":[1916050,1916051,1916052],"delay":1373.7} +{"session_id":"sess-3c14a324e974","input_length":601,"output_length":743,"hash_ids":[1916053,1916054],"delay":13455.8} +{"session_id":"sess-f445fd7f294a","input_length":29990,"output_length":231,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,1920032,1920033,1920034,1920035,1920036,1920037,1920038],"timestamp":0.0,"group_id":24} +{"session_id":"sess-f445fd7f294a","input_length":768,"output_length":167,"hash_ids":[1920039,1920040],"delay":1023.4} +{"session_id":"sess-f445fd7f294a","input_length":461,"output_length":36,"hash_ids":[1920041],"delay":1035.6} +{"session_id":"sess-f445fd7f294a","input_length":772,"output_length":177,"hash_ids":[1920042,1920043],"delay":653.2} +{"session_id":"sess-f445fd7f294a","input_length":537,"output_length":930,"hash_ids":[1920044,1920045],"delay":399.7} +{"session_id":"sess-f445fd7f294a","input_length":1452,"output_length":108,"hash_ids":[1920046,1920047,1920048],"delay":291.3} +{"session_id":"sess-f445fd7f294a","input_length":696,"output_length":266,"hash_ids":[1920049,1920050],"delay":341.3} +{"session_id":"sess-f445fd7f294a","input_length":873,"output_length":209,"hash_ids":[1920051,1920052],"delay":831.7} +{"session_id":"sess-f445fd7f294a","input_length":421,"output_length":133,"hash_ids":[1920053],"delay":10453.1} +{"session_id":"sess-f445fd7f294a","input_length":2547,"output_length":206,"hash_ids":[1920054,1920055,1920056,1920057,1920058],"delay":9885.8} +{"session_id":"sess-f445fd7f294a","input_length":303,"output_length":110,"hash_ids":[1920059],"delay":1452.2} +{"session_id":"sess-f445fd7f294a","input_length":163,"output_length":1290,"hash_ids":[1920060],"delay":98.3} +{"session_id":"sess-f445fd7f294a","input_length":402,"output_length":30,"hash_ids":[1920061],"delay":8208.6} +{"session_id":"sess-f445fd7f294a","input_length":203,"output_length":841,"hash_ids":[1920062],"delay":3784.0} +{"session_id":"sess-f445fd7f294a","input_length":987,"output_length":103,"hash_ids":[1920063,1920064],"delay":732.6} +{"session_id":"sess-f445fd7f294a","input_length":616,"output_length":126,"hash_ids":[1920065,1920066],"delay":831.1} +{"session_id":"sess-f445fd7f294a","input_length":573,"output_length":177,"hash_ids":[1920067,1920068],"delay":3062.4} +{"session_id":"sess-f445fd7f294a","input_length":531,"output_length":63,"hash_ids":[1920069,1920070],"delay":479.3} +{"session_id":"sess-f445fd7f294a","input_length":1034,"output_length":697,"hash_ids":[1920071,1920072,1920073],"delay":41455.6} +{"session_id":"sess-f445fd7f294a","input_length":1078,"output_length":174,"hash_ids":[1920074,1920075,1920076],"delay":810.9} +{"session_id":"sess-f445fd7f294a","input_length":2445,"output_length":39,"hash_ids":[1920077,1920078,1920079,1920080,1920081],"delay":875.5} +{"session_id":"sess-80a41efcc4fb","input_length":28664,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,1924032,1924033,1924034,1924035],"timestamp":0.0,"group_id":11} +{"session_id":"sess-80a41efcc4fb","input_length":1013,"output_length":251,"hash_ids":[1924036,1924037],"delay":3074.1} +{"session_id":"sess-80a41efcc4fb","input_length":1909,"output_length":123,"hash_ids":[1924038,1924039,1924040,1924041],"delay":3431.2} +{"session_id":"sess-80a41efcc4fb","input_length":1167,"output_length":599,"hash_ids":[1924042,1924043,1924044],"delay":523.6} +{"session_id":"sess-80a41efcc4fb","input_length":251,"output_length":125,"hash_ids":[1924045],"delay":10361.4} +{"session_id":"sess-80a41efcc4fb","input_length":1909,"output_length":768,"hash_ids":[1924046,1924047,1924048,1924049],"delay":627.1} +{"session_id":"sess-80a41efcc4fb","input_length":874,"output_length":474,"hash_ids":[1924050,1924051],"delay":2618.5} +{"session_id":"sess-80a41efcc4fb","input_length":1722,"output_length":198,"hash_ids":[1924052,1924053,1924054,1924055],"delay":2140.1} +{"session_id":"sess-80a41efcc4fb","input_length":1296,"output_length":746,"hash_ids":[1924056,1924057,1924058],"delay":690.3} +{"session_id":"sess-80a41efcc4fb","input_length":1489,"output_length":92,"hash_ids":[1924059,1924060,1924061],"delay":4133.0} +{"session_id":"sess-80a41efcc4fb","input_length":2131,"output_length":164,"hash_ids":[1924062,1924063,1924064,1924065,1924066],"delay":808.1} +{"session_id":"sess-80a41efcc4fb","input_length":662,"output_length":417,"hash_ids":[1924067,1924068],"delay":833.8} +{"session_id":"sess-80a41efcc4fb","input_length":520,"output_length":135,"hash_ids":[1924069,1924070],"delay":356.3} +{"session_id":"sess-80a41efcc4fb","input_length":691,"output_length":1123,"hash_ids":[1924071,1924072],"delay":453.8} +{"session_id":"sess-80a41efcc4fb","input_length":1128,"output_length":483,"hash_ids":[1924073,1924074,1924075],"delay":10416.0} +{"session_id":"sess-80a41efcc4fb","input_length":599,"output_length":243,"hash_ids":[1924076,1924077],"delay":852.9} +{"session_id":"sess-80a41efcc4fb","input_length":61,"output_length":285,"hash_ids":[1924078],"delay":21660.2} +{"session_id":"sess-80a41efcc4fb","input_length":280,"output_length":412,"hash_ids":[1924079],"delay":2217.9} +{"session_id":"sess-80a41efcc4fb","input_length":962,"output_length":230,"hash_ids":[1924080,1924081],"delay":446.2} +{"session_id":"sess-80a41efcc4fb","input_length":1795,"output_length":83,"hash_ids":[1924082,1924083,1924084,1924085],"delay":5604.3} +{"session_id":"sess-80a41efcc4fb","input_length":2589,"output_length":169,"hash_ids":[1924086,1924087,1924088,1924089,1924090,1924091],"delay":854.1} +{"session_id":"sess-80a41efcc4fb","input_length":884,"output_length":308,"hash_ids":[1924092,1924093],"delay":7718.8} +{"session_id":"sess-80a41efcc4fb","input_length":1480,"output_length":105,"hash_ids":[1924094,1924095,1924096],"delay":381.4} +{"session_id":"sess-80a41efcc4fb","input_length":287,"output_length":507,"hash_ids":[1924097],"delay":1206.1} +{"session_id":"sess-094b0e9f1db2","input_length":30398,"output_length":320,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,1928032,1928033,1928034,1928035,1928036,1928037,1928038,1928039],"timestamp":0.0,"group_id":29} +{"session_id":"sess-094b0e9f1db2","input_length":2492,"output_length":101,"hash_ids":[1928040,1928041,1928042,1928043,1928044],"delay":1150.8} +{"session_id":"sess-094b0e9f1db2","input_length":465,"output_length":220,"hash_ids":[1928045],"delay":2081.9} +{"session_id":"sess-094b0e9f1db2","input_length":2260,"output_length":367,"hash_ids":[1928046,1928047,1928048,1928049,1928050],"delay":580.1} +{"session_id":"sess-094b0e9f1db2","input_length":218,"output_length":295,"hash_ids":[1928051],"delay":17190.8} +{"session_id":"sess-094b0e9f1db2","input_length":612,"output_length":737,"hash_ids":[1928052,1928053],"delay":959.1} +{"session_id":"sess-094b0e9f1db2","input_length":680,"output_length":304,"hash_ids":[1928054,1928055],"delay":1019.1} +{"session_id":"sess-094b0e9f1db2","input_length":334,"output_length":218,"hash_ids":[1928056],"delay":1281.1} +{"session_id":"sess-094b0e9f1db2","input_length":665,"output_length":182,"hash_ids":[1928057,1928058],"delay":359.8} +{"session_id":"sess-094b0e9f1db2","input_length":908,"output_length":154,"hash_ids":[1928059,1928060],"delay":6195.0} +{"session_id":"sess-094b0e9f1db2","input_length":449,"output_length":115,"hash_ids":[1928061],"delay":1905.0} +{"session_id":"sess-094b0e9f1db2","input_length":2136,"output_length":176,"hash_ids":[1928062,1928063,1928064,1928065,1928066],"delay":570.0} +{"session_id":"sess-094b0e9f1db2","input_length":204,"output_length":195,"hash_ids":[1928067],"delay":1533.7} +{"session_id":"sess-094b0e9f1db2","input_length":2362,"output_length":275,"hash_ids":[1928068,1928069,1928070,1928071,1928072],"delay":10056.9} +{"session_id":"sess-094b0e9f1db2","input_length":582,"output_length":762,"hash_ids":[1928073,1928074],"delay":21520.1} +{"session_id":"sess-094b0e9f1db2","input_length":684,"output_length":193,"hash_ids":[1928075,1928076],"delay":1298.1} +{"session_id":"sess-094b0e9f1db2","input_length":183,"output_length":206,"hash_ids":[1928077],"delay":1359.8} +{"session_id":"sess-094b0e9f1db2","input_length":1558,"output_length":1234,"hash_ids":[1928078,1928079,1928080,1928081],"delay":427.2} +{"session_id":"sess-094b0e9f1db2","input_length":1457,"output_length":491,"hash_ids":[1928082,1928083,1928084],"delay":6399.6} +{"session_id":"sess-094b0e9f1db2","input_length":1767,"output_length":89,"hash_ids":[1928085,1928086,1928087,1928088],"delay":224.8} +{"session_id":"sess-094b0e9f1db2","input_length":40,"output_length":230,"hash_ids":[1928089],"delay":1209.0} +{"session_id":"sess-094b0e9f1db2","input_length":310,"output_length":55,"hash_ids":[1928090],"delay":13214.0} +{"session_id":"sess-094b0e9f1db2","input_length":1618,"output_length":234,"hash_ids":[1928091,1928092,1928093,1928094],"delay":1249.2} +{"session_id":"sess-094b0e9f1db2","input_length":1792,"output_length":240,"hash_ids":[1928095,1928096,1928097,1928098],"delay":262.6} +{"session_id":"sess-094b0e9f1db2","input_length":1337,"output_length":312,"hash_ids":[1928099,1928100,1928101],"delay":310.7} +{"session_id":"sess-094b0e9f1db2","input_length":1346,"output_length":92,"hash_ids":[1928102,1928103,1928104],"delay":178.2} +{"session_id":"sess-094b0e9f1db2","input_length":826,"output_length":285,"hash_ids":[1928105,1928106],"delay":592.2} +{"session_id":"sess-df31dbcb744b","input_length":34125,"output_length":391,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1932032,1932033,1932034,1932035,1932036,1932037,1932038,1932039,1932040,1932041,1932042,1932043,1932044,1932045,1932046],"timestamp":0.0,"group_id":2} +{"session_id":"sess-df31dbcb744b","input_length":2020,"output_length":253,"hash_ids":[1932047,1932048,1932049,1932050],"delay":1956.2} +{"session_id":"sess-df31dbcb744b","input_length":1147,"output_length":233,"hash_ids":[1932051,1932052,1932053],"delay":693.2} +{"session_id":"sess-df31dbcb744b","input_length":1767,"output_length":451,"hash_ids":[1932054,1932055,1932056,1932057],"delay":7684.2} +{"session_id":"sess-df31dbcb744b","input_length":293,"output_length":30,"hash_ids":[1932058],"delay":1443.4} +{"session_id":"sess-df31dbcb744b","input_length":1316,"output_length":636,"hash_ids":[1932059,1932060,1932061],"delay":1043.1} +{"session_id":"sess-df31dbcb744b","input_length":833,"output_length":1079,"hash_ids":[1932062,1932063],"delay":31124.5} +{"session_id":"sess-df31dbcb744b","input_length":1233,"output_length":100,"hash_ids":[1932064,1932065,1932066],"delay":6717.6} +{"session_id":"sess-df31dbcb744b","input_length":510,"output_length":120,"hash_ids":[1932067],"delay":274.0} +{"session_id":"sess-df31dbcb744b","input_length":2758,"output_length":476,"hash_ids":[1932068,1932069,1932070,1932071,1932072,1932073],"delay":2311.4} +{"session_id":"sess-df31dbcb744b","input_length":1116,"output_length":570,"hash_ids":[1932074,1932075,1932076],"delay":2079.6} +{"session_id":"sess-df31dbcb744b","input_length":1108,"output_length":93,"hash_ids":[1932077,1932078,1932079],"delay":9680.1} +{"session_id":"sess-df31dbcb744b","input_length":1016,"output_length":100,"hash_ids":[1932080,1932081],"delay":9104.8} +{"session_id":"sess-df31dbcb744b","input_length":1505,"output_length":360,"hash_ids":[1932082,1932083,1932084],"delay":810.0} +{"session_id":"sess-df31dbcb744b","input_length":935,"output_length":426,"hash_ids":[1932085,1932086],"delay":805.7} +{"session_id":"sess-df31dbcb744b","input_length":157,"output_length":63,"hash_ids":[1932087],"delay":5488.5} +{"session_id":"sess-df31dbcb744b","input_length":510,"output_length":269,"hash_ids":[1932088],"delay":269.7} +{"session_id":"sess-df31dbcb744b","input_length":2478,"output_length":358,"hash_ids":[1932089,1932090,1932091,1932092,1932093],"delay":1416.7} +{"session_id":"sess-df31dbcb744b","input_length":526,"output_length":251,"hash_ids":[1932094,1932095],"delay":52.6} +{"session_id":"sess-df31dbcb744b","input_length":251,"output_length":423,"hash_ids":[1932096],"delay":8835.6} +{"session_id":"sess-df31dbcb744b","input_length":542,"output_length":258,"hash_ids":[1932097,1932098],"delay":413.2} +{"session_id":"sess-df31dbcb744b","input_length":704,"output_length":218,"hash_ids":[1932099,1932100],"delay":1257.9} +{"session_id":"sess-df31dbcb744b","input_length":483,"output_length":388,"hash_ids":[1932101],"delay":167.3} +{"session_id":"sess-4d9c4d074851","input_length":28398,"output_length":422,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1936032,1936033,1936034,1936035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4d9c4d074851","input_length":943,"output_length":216,"hash_ids":[1936036,1936037],"delay":635.1} +{"session_id":"sess-4d9c4d074851","input_length":157,"output_length":166,"hash_ids":[1936038],"delay":5660.3} +{"session_id":"sess-4d9c4d074851","input_length":1262,"output_length":282,"hash_ids":[1936039,1936040,1936041],"delay":574.1} +{"session_id":"sess-4d9c4d074851","input_length":45,"output_length":130,"hash_ids":[1936042],"delay":14222.6} +{"session_id":"sess-4d9c4d074851","input_length":1398,"output_length":315,"hash_ids":[1936043,1936044,1936045],"delay":2984.0} +{"session_id":"sess-4d9c4d074851","input_length":2832,"output_length":236,"hash_ids":[1936046,1936047,1936048,1936049,1936050,1936051],"delay":1244.8} +{"session_id":"sess-4d9c4d074851","input_length":410,"output_length":104,"hash_ids":[1936052],"delay":6674.9} +{"session_id":"sess-4d9c4d074851","input_length":714,"output_length":59,"hash_ids":[1936053,1936054],"delay":3244.3} +{"session_id":"sess-4d9c4d074851","input_length":2339,"output_length":250,"hash_ids":[1936055,1936056,1936057,1936058,1936059],"delay":688.1} +{"session_id":"sess-4d9c4d074851","input_length":997,"output_length":476,"hash_ids":[1936060,1936061],"delay":13347.9} +{"session_id":"sess-4d9c4d074851","input_length":371,"output_length":243,"hash_ids":[1936062],"delay":7672.3} +{"session_id":"sess-4d9c4d074851","input_length":1232,"output_length":212,"hash_ids":[1936063,1936064,1936065],"delay":624.6} +{"session_id":"sess-4d9c4d074851","input_length":1579,"output_length":38,"hash_ids":[1936066,1936067,1936068,1936069],"delay":991.0} +{"session_id":"sess-4d9c4d074851","input_length":1839,"output_length":200,"hash_ids":[1936070,1936071,1936072,1936073],"delay":2263.5} +{"session_id":"sess-4d9c4d074851","input_length":1790,"output_length":122,"hash_ids":[1936074,1936075,1936076,1936077],"delay":427.2} +{"session_id":"sess-4d9c4d074851","input_length":1131,"output_length":411,"hash_ids":[1936078,1936079,1936080],"delay":536.8} +{"session_id":"sess-cd5e9ffba204","input_length":28828,"output_length":34,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1940032,1940033,1940034,1940035,1940036],"timestamp":0.0,"group_id":5} +{"session_id":"sess-cd5e9ffba204","input_length":2190,"output_length":445,"hash_ids":[1940037,1940038,1940039,1940040,1940041],"delay":2658.7} +{"session_id":"sess-cd5e9ffba204","input_length":89,"output_length":167,"hash_ids":[1940042],"delay":890.3} +{"session_id":"sess-cd5e9ffba204","input_length":1283,"output_length":424,"hash_ids":[1940043,1940044,1940045],"delay":821.8} +{"session_id":"sess-cd5e9ffba204","input_length":498,"output_length":191,"hash_ids":[1940046],"delay":270.8} +{"session_id":"sess-cd5e9ffba204","input_length":1127,"output_length":259,"hash_ids":[1940047,1940048,1940049],"delay":2737.3} +{"session_id":"sess-cd5e9ffba204","input_length":316,"output_length":222,"hash_ids":[1940050],"delay":1159.3} +{"session_id":"sess-cd5e9ffba204","input_length":881,"output_length":54,"hash_ids":[1940051,1940052],"delay":31459.8} +{"session_id":"sess-cd5e9ffba204","input_length":816,"output_length":714,"hash_ids":[1940053,1940054],"delay":2083.8} +{"session_id":"sess-cd5e9ffba204","input_length":2934,"output_length":265,"hash_ids":[1940055,1940056,1940057,1940058,1940059,1940060],"delay":1253.2} +{"session_id":"sess-cd5e9ffba204","input_length":363,"output_length":495,"hash_ids":[1940061],"delay":40339.7} +{"session_id":"sess-cd5e9ffba204","input_length":19,"output_length":151,"hash_ids":[1940062],"delay":4997.6} +{"session_id":"sess-cd5e9ffba204","input_length":454,"output_length":86,"hash_ids":[1940063],"delay":1205.2} +{"session_id":"sess-cd5e9ffba204","input_length":560,"output_length":42,"hash_ids":[1940064,1940065],"delay":859.3} +{"session_id":"sess-cd5e9ffba204","input_length":1745,"output_length":174,"hash_ids":[1940066,1940067,1940068,1940069],"delay":26930.9} +{"session_id":"sess-cd5e9ffba204","input_length":1497,"output_length":894,"hash_ids":[1940070,1940071,1940072],"delay":786.9} +{"session_id":"sess-cd5e9ffba204","input_length":1393,"output_length":198,"hash_ids":[1940073,1940074,1940075],"delay":577.2} +{"session_id":"sess-cd5e9ffba204","input_length":2069,"output_length":672,"hash_ids":[1940076,1940077,1940078,1940079,1940080],"delay":4696.8} +{"session_id":"sess-cd5e9ffba204","input_length":135,"output_length":154,"hash_ids":[1940081],"delay":1041.4} +{"session_id":"sess-cd5e9ffba204","input_length":2767,"output_length":56,"hash_ids":[1940082,1940083,1940084,1940085,1940086,1940087],"delay":1010.4} +{"session_id":"sess-cd5e9ffba204","input_length":1440,"output_length":222,"hash_ids":[1940088,1940089,1940090],"delay":255.5} +{"session_id":"sess-cd5e9ffba204","input_length":158,"output_length":30,"hash_ids":[1940091],"delay":10632.9} +{"session_id":"sess-cd5e9ffba204","input_length":838,"output_length":389,"hash_ids":[1940092,1940093],"delay":341.3} +{"session_id":"sess-cd5e9ffba204","input_length":1899,"output_length":222,"hash_ids":[1940094,1940095,1940096,1940097],"delay":596.1} +{"session_id":"sess-cd5e9ffba204","input_length":217,"output_length":30,"hash_ids":[1940098],"delay":173.2} +{"session_id":"sess-cd5e9ffba204","input_length":790,"output_length":209,"hash_ids":[1940099,1940100],"delay":254.1} +{"session_id":"sess-cd5e9ffba204","input_length":872,"output_length":300,"hash_ids":[1940101,1940102],"delay":278.0} +{"session_id":"sess-cd5e9ffba204","input_length":354,"output_length":399,"hash_ids":[1940103],"delay":123.5} +{"session_id":"sess-cbdbfee1886b","input_length":28028,"output_length":156,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,1944032,1944033,1944034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-cbdbfee1886b","input_length":1600,"output_length":142,"hash_ids":[1944035,1944036,1944037,1944038],"delay":1574.1} +{"session_id":"sess-cbdbfee1886b","input_length":674,"output_length":123,"hash_ids":[1944039,1944040],"delay":173.7} +{"session_id":"sess-cbdbfee1886b","input_length":2316,"output_length":63,"hash_ids":[1944041,1944042,1944043,1944044,1944045],"delay":3103.9} +{"session_id":"sess-cbdbfee1886b","input_length":1220,"output_length":77,"hash_ids":[1944046,1944047,1944048],"delay":609.8} +{"session_id":"sess-cbdbfee1886b","input_length":802,"output_length":737,"hash_ids":[1944049,1944050],"delay":683.7} +{"session_id":"sess-cbdbfee1886b","input_length":577,"output_length":254,"hash_ids":[1944051,1944052],"delay":3919.2} +{"session_id":"sess-cbdbfee1886b","input_length":1425,"output_length":129,"hash_ids":[1944053,1944054,1944055],"delay":963.5} +{"session_id":"sess-cbdbfee1886b","input_length":446,"output_length":191,"hash_ids":[1944056],"delay":902.0} +{"session_id":"sess-cbdbfee1886b","input_length":338,"output_length":232,"hash_ids":[1944057],"delay":1670.6} +{"session_id":"sess-cbdbfee1886b","input_length":2435,"output_length":99,"hash_ids":[1944058,1944059,1944060,1944061,1944062],"delay":1316.9} +{"session_id":"sess-cbdbfee1886b","input_length":1586,"output_length":800,"hash_ids":[1944063,1944064,1944065,1944066],"delay":1094.7} +{"session_id":"sess-cbdbfee1886b","input_length":1381,"output_length":151,"hash_ids":[1944067,1944068,1944069],"delay":480.4} +{"session_id":"sess-cbdbfee1886b","input_length":673,"output_length":122,"hash_ids":[1944070,1944071],"delay":2766.9} +{"session_id":"sess-cbdbfee1886b","input_length":172,"output_length":757,"hash_ids":[1944072],"delay":427.1} +{"session_id":"sess-cbdbfee1886b","input_length":686,"output_length":224,"hash_ids":[1944073,1944074],"delay":1000.4} +{"session_id":"sess-cbdbfee1886b","input_length":1095,"output_length":318,"hash_ids":[1944075,1944076,1944077],"delay":2660.0} +{"session_id":"sess-cbdbfee1886b","input_length":1983,"output_length":213,"hash_ids":[1944078,1944079,1944080,1944081],"delay":629.5} +{"session_id":"sess-cbdbfee1886b","input_length":297,"output_length":114,"hash_ids":[1944082],"delay":1475.1} +{"session_id":"sess-cbdbfee1886b","input_length":324,"output_length":824,"hash_ids":[1944083],"delay":1168.6} +{"session_id":"sess-cbdbfee1886b","input_length":71,"output_length":469,"hash_ids":[1944084],"delay":40428.2} +{"session_id":"sess-cbdbfee1886b","input_length":1358,"output_length":398,"hash_ids":[1944085,1944086,1944087],"delay":647.0} +{"session_id":"sess-cbdbfee1886b","input_length":237,"output_length":311,"hash_ids":[1944088],"delay":227.7} +{"session_id":"sess-9ebf72110641","input_length":31596,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1948032,1948033,1948034,1948035,1948036,1948037,1948038,1948039,1948040,1948041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9ebf72110641","input_length":277,"output_length":563,"hash_ids":[1948042],"delay":2106.8} +{"session_id":"sess-9ebf72110641","input_length":406,"output_length":407,"hash_ids":[1948043],"delay":588.3} +{"session_id":"sess-9ebf72110641","input_length":846,"output_length":151,"hash_ids":[1948044,1948045],"delay":452.1} +{"session_id":"sess-9ebf72110641","input_length":489,"output_length":1417,"hash_ids":[1948046],"delay":709.4} +{"session_id":"sess-9ebf72110641","input_length":545,"output_length":30,"hash_ids":[1948047,1948048],"delay":5769.9} +{"session_id":"sess-9ebf72110641","input_length":1465,"output_length":150,"hash_ids":[1948049,1948050,1948051],"delay":4836.8} +{"session_id":"sess-9ebf72110641","input_length":361,"output_length":236,"hash_ids":[1948052],"delay":1382.9} +{"session_id":"sess-9ebf72110641","input_length":1127,"output_length":160,"hash_ids":[1948053,1948054,1948055],"delay":3058.5} +{"session_id":"sess-9ebf72110641","input_length":322,"output_length":35,"hash_ids":[1948056],"delay":1441.6} +{"session_id":"sess-9ebf72110641","input_length":160,"output_length":507,"hash_ids":[1948057],"delay":18267.9} +{"session_id":"sess-9ebf72110641","input_length":112,"output_length":468,"hash_ids":[1948058],"delay":14606.2} +{"session_id":"sess-9ebf72110641","input_length":794,"output_length":538,"hash_ids":[1948059,1948060],"delay":2324.7} +{"session_id":"sess-9ebf72110641","input_length":1727,"output_length":681,"hash_ids":[1948061,1948062,1948063,1948064],"delay":1112.6} +{"session_id":"sess-9ebf72110641","input_length":2577,"output_length":1286,"hash_ids":[1948065,1948066,1948067,1948068,1948069,1948070],"delay":1147.7} +{"session_id":"sess-9ebf72110641","input_length":725,"output_length":274,"hash_ids":[1948071,1948072],"delay":1579.2} +{"session_id":"sess-9ebf72110641","input_length":1481,"output_length":170,"hash_ids":[1948073,1948074,1948075],"delay":437.3} +{"session_id":"sess-9ebf72110641","input_length":2615,"output_length":116,"hash_ids":[1948076,1948077,1948078,1948079,1948080,1948081],"delay":984.0} +{"session_id":"sess-9ebf72110641","input_length":421,"output_length":121,"hash_ids":[1948082],"delay":674.0} +{"session_id":"sess-9ebf72110641","input_length":767,"output_length":819,"hash_ids":[1948083,1948084],"delay":5442.3} +{"session_id":"sess-9ebf72110641","input_length":2559,"output_length":380,"hash_ids":[1948085,1948086,1948087,1948088,1948089],"delay":160.6} +{"session_id":"sess-9ebf72110641","input_length":2324,"output_length":149,"hash_ids":[1948090,1948091,1948092,1948093,1948094],"delay":988.1} +{"session_id":"sess-9ebf72110641","input_length":1471,"output_length":56,"hash_ids":[1948095,1948096,1948097],"delay":8008.6} +{"session_id":"sess-9ebf72110641","input_length":425,"output_length":188,"hash_ids":[1948098],"delay":254.3} +{"session_id":"sess-f76ac5661581","input_length":28193,"output_length":412,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1952032,1952033,1952034,1952035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f76ac5661581","input_length":1021,"output_length":118,"hash_ids":[1952036,1952037],"delay":812.9} +{"session_id":"sess-f76ac5661581","input_length":743,"output_length":181,"hash_ids":[1952038,1952039],"delay":605.3} +{"session_id":"sess-f76ac5661581","input_length":1860,"output_length":139,"hash_ids":[1952040,1952041,1952042,1952043],"delay":1971.2} +{"session_id":"sess-f76ac5661581","input_length":790,"output_length":198,"hash_ids":[1952044,1952045],"delay":40980.3} +{"session_id":"sess-f76ac5661581","input_length":1138,"output_length":75,"hash_ids":[1952046,1952047,1952048],"delay":1387.4} +{"session_id":"sess-f76ac5661581","input_length":170,"output_length":267,"hash_ids":[1952049],"delay":14607.6} +{"session_id":"sess-f76ac5661581","input_length":259,"output_length":170,"hash_ids":[1952050],"delay":490.2} +{"session_id":"sess-f76ac5661581","input_length":1108,"output_length":958,"hash_ids":[1952051,1952052,1952053],"delay":1496.1} +{"session_id":"sess-12dee3ed2504","input_length":27568,"output_length":395,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,1956032,1956033],"timestamp":0.0,"group_id":13} +{"session_id":"sess-12dee3ed2504","input_length":445,"output_length":219,"hash_ids":[1956034],"delay":28039.4} +{"session_id":"sess-12dee3ed2504","input_length":2642,"output_length":187,"hash_ids":[1956035,1956036,1956037,1956038,1956039,1956040],"delay":14131.3} +{"session_id":"sess-12dee3ed2504","input_length":244,"output_length":122,"hash_ids":[1956041],"delay":58806.6} +{"session_id":"sess-12dee3ed2504","input_length":731,"output_length":47,"hash_ids":[1956042,1956043],"delay":3197.2} +{"session_id":"sess-12dee3ed2504","input_length":986,"output_length":147,"hash_ids":[1956044,1956045],"delay":679.7} +{"session_id":"sess-12dee3ed2504","input_length":533,"output_length":279,"hash_ids":[1956046,1956047],"delay":12541.7} +{"session_id":"sess-12dee3ed2504","input_length":1540,"output_length":82,"hash_ids":[1956048,1956049,1956050,1956051],"delay":2629.8} +{"session_id":"sess-12dee3ed2504","input_length":1470,"output_length":51,"hash_ids":[1956052,1956053,1956054],"delay":977.1} +{"session_id":"sess-12dee3ed2504","input_length":1778,"output_length":36,"hash_ids":[1956055,1956056,1956057,1956058],"delay":621.4} +{"session_id":"sess-12dee3ed2504","input_length":835,"output_length":94,"hash_ids":[1956059,1956060],"delay":2474.3} +{"session_id":"sess-12dee3ed2504","input_length":1395,"output_length":630,"hash_ids":[1956061,1956062,1956063],"delay":31865.2} +{"session_id":"sess-12dee3ed2504","input_length":892,"output_length":72,"hash_ids":[1956064,1956065],"delay":8111.5} +{"session_id":"sess-12dee3ed2504","input_length":1820,"output_length":433,"hash_ids":[1956066,1956067,1956068,1956069],"delay":12679.9} +{"session_id":"sess-12dee3ed2504","input_length":775,"output_length":101,"hash_ids":[1956070,1956071],"delay":1031.8} +{"session_id":"sess-12dee3ed2504","input_length":693,"output_length":358,"hash_ids":[1956072,1956073],"delay":481.5} +{"session_id":"sess-12dee3ed2504","input_length":132,"output_length":371,"hash_ids":[1956074],"delay":3956.8} +{"session_id":"sess-12dee3ed2504","input_length":691,"output_length":77,"hash_ids":[1956075,1956076],"delay":639.6} +{"session_id":"sess-12dee3ed2504","input_length":271,"output_length":30,"hash_ids":[1956077],"delay":1472.9} +{"session_id":"sess-3064ba0c98a8","input_length":27828,"output_length":431,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,1960032,1960033,1960034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-3064ba0c98a8","input_length":362,"output_length":324,"hash_ids":[1960035],"delay":858.0} +{"session_id":"sess-3064ba0c98a8","input_length":686,"output_length":138,"hash_ids":[1960036,1960037],"delay":5790.7} +{"session_id":"sess-3064ba0c98a8","input_length":1578,"output_length":187,"hash_ids":[1960038,1960039,1960040,1960041],"delay":360.1} +{"session_id":"sess-3064ba0c98a8","input_length":799,"output_length":62,"hash_ids":[1960042,1960043],"delay":1247.3} +{"session_id":"sess-3064ba0c98a8","input_length":888,"output_length":262,"hash_ids":[1960044,1960045],"delay":3485.7} +{"session_id":"sess-3064ba0c98a8","input_length":1058,"output_length":137,"hash_ids":[1960046,1960047,1960048],"delay":15195.9} +{"session_id":"sess-3064ba0c98a8","input_length":168,"output_length":287,"hash_ids":[1960049],"delay":163.7} +{"session_id":"sess-3064ba0c98a8","input_length":2517,"output_length":1352,"hash_ids":[1960050,1960051,1960052,1960053,1960054],"delay":7238.7} +{"session_id":"sess-3064ba0c98a8","input_length":850,"output_length":459,"hash_ids":[1960055,1960056],"delay":359.9} +{"session_id":"sess-3064ba0c98a8","input_length":2254,"output_length":80,"hash_ids":[1960057,1960058,1960059,1960060,1960061],"delay":1816.0} +{"session_id":"sess-3064ba0c98a8","input_length":1496,"output_length":135,"hash_ids":[1960062,1960063,1960064],"delay":635.2} +{"session_id":"sess-3064ba0c98a8","input_length":570,"output_length":146,"hash_ids":[1960065,1960066],"delay":3146.1} +{"session_id":"sess-3064ba0c98a8","input_length":674,"output_length":355,"hash_ids":[1960067,1960068],"delay":365.1} +{"session_id":"sess-3064ba0c98a8","input_length":442,"output_length":964,"hash_ids":[1960069],"delay":2004.5} +{"session_id":"sess-3064ba0c98a8","input_length":1186,"output_length":175,"hash_ids":[1960070,1960071,1960072],"delay":666.6} +{"session_id":"sess-3064ba0c98a8","input_length":805,"output_length":64,"hash_ids":[1960073,1960074],"delay":5688.4} +{"session_id":"sess-3064ba0c98a8","input_length":2937,"output_length":306,"hash_ids":[1960075,1960076,1960077,1960078,1960079,1960080],"delay":1680.6} +{"session_id":"sess-3064ba0c98a8","input_length":923,"output_length":956,"hash_ids":[1960081,1960082],"delay":4140.2} +{"session_id":"sess-3064ba0c98a8","input_length":1374,"output_length":137,"hash_ids":[1960083,1960084,1960085],"delay":33218.0} +{"session_id":"sess-3064ba0c98a8","input_length":897,"output_length":109,"hash_ids":[1960086,1960087],"delay":373.7} +{"session_id":"sess-3064ba0c98a8","input_length":2649,"output_length":289,"hash_ids":[1960088,1960089,1960090,1960091,1960092,1960093],"delay":14393.4} +{"session_id":"sess-3064ba0c98a8","input_length":1116,"output_length":178,"hash_ids":[1960094,1960095,1960096],"delay":558.8} +{"session_id":"sess-3064ba0c98a8","input_length":2300,"output_length":140,"hash_ids":[1960097,1960098,1960099,1960100,1960101],"delay":18776.6} +{"session_id":"sess-3064ba0c98a8","input_length":401,"output_length":265,"hash_ids":[1960102],"delay":156.1} +{"session_id":"sess-a3710f706533","input_length":28441,"output_length":107,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1964032,1964033,1964034,1964035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a3710f706533","input_length":408,"output_length":297,"hash_ids":[1964036],"delay":16274.8} +{"session_id":"sess-a3710f706533","input_length":1408,"output_length":374,"hash_ids":[1964037,1964038,1964039],"delay":2656.4} +{"session_id":"sess-a3710f706533","input_length":2586,"output_length":426,"hash_ids":[1964040,1964041,1964042,1964043,1964044,1964045],"delay":690.7} +{"session_id":"sess-a3710f706533","input_length":819,"output_length":567,"hash_ids":[1964046,1964047],"delay":2315.9} +{"session_id":"sess-a3710f706533","input_length":777,"output_length":890,"hash_ids":[1964048,1964049],"delay":21857.2} +{"session_id":"sess-a3710f706533","input_length":1158,"output_length":121,"hash_ids":[1964050,1964051,1964052],"delay":15516.5} +{"session_id":"sess-a3710f706533","input_length":527,"output_length":56,"hash_ids":[1964053,1964054],"delay":1888.6} +{"session_id":"sess-a3710f706533","input_length":804,"output_length":132,"hash_ids":[1964055,1964056],"delay":22008.0} +{"session_id":"sess-a3710f706533","input_length":949,"output_length":47,"hash_ids":[1964057,1964058],"delay":34996.1} +{"session_id":"sess-a3710f706533","input_length":987,"output_length":793,"hash_ids":[1964059,1964060],"delay":871.4} +{"session_id":"sess-a3710f706533","input_length":208,"output_length":329,"hash_ids":[1964061],"delay":1128.7} +{"session_id":"sess-a3710f706533","input_length":532,"output_length":200,"hash_ids":[1964062,1964063],"delay":3436.2} +{"session_id":"sess-a3710f706533","input_length":86,"output_length":204,"hash_ids":[1964064],"delay":12300.6} +{"session_id":"sess-986258371158","input_length":29392,"output_length":221,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1968032,1968033,1968034,1968035,1968036,1968037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-986258371158","input_length":1992,"output_length":811,"hash_ids":[1968038,1968039,1968040,1968041],"delay":1129.9} +{"session_id":"sess-986258371158","input_length":789,"output_length":1462,"hash_ids":[1968042,1968043],"delay":889.1} +{"session_id":"sess-986258371158","input_length":1496,"output_length":441,"hash_ids":[1968044,1968045,1968046],"delay":20257.7} +{"session_id":"sess-986258371158","input_length":554,"output_length":325,"hash_ids":[1968047,1968048],"delay":12105.9} +{"session_id":"sess-986258371158","input_length":2421,"output_length":82,"hash_ids":[1968049,1968050,1968051,1968052,1968053],"delay":475.1} +{"session_id":"sess-353102792e13","input_length":26312,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451],"timestamp":0.0,"group_id":42} +{"session_id":"sess-353102792e13","input_length":1145,"output_length":152,"hash_ids":[1968054,1968055,1968056],"delay":46949.5} +{"session_id":"sess-29adfacad8d0","input_length":26519,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851],"timestamp":0.0,"group_id":34} +{"session_id":"sess-29adfacad8d0","input_length":819,"output_length":109,"hash_ids":[1968057,1968058],"delay":3717.8} +{"session_id":"sess-29adfacad8d0","input_length":2257,"output_length":80,"hash_ids":[1968059,1968060,1968061,1968062,1968063],"delay":329.8} +{"session_id":"sess-29adfacad8d0","input_length":654,"output_length":176,"hash_ids":[1968064,1968065],"delay":13143.2} +{"session_id":"sess-29adfacad8d0","input_length":1335,"output_length":481,"hash_ids":[1968066,1968067,1968068],"delay":39685.2} +{"session_id":"sess-29adfacad8d0","input_length":1261,"output_length":389,"hash_ids":[1968069,1968070,1968071],"delay":408.6} +{"session_id":"sess-29adfacad8d0","input_length":141,"output_length":598,"hash_ids":[1968072],"delay":18620.1} +{"session_id":"sess-29adfacad8d0","input_length":574,"output_length":289,"hash_ids":[1968073,1968074],"delay":784.5} +{"session_id":"sess-29adfacad8d0","input_length":93,"output_length":173,"hash_ids":[1968075],"delay":937.3} +{"session_id":"sess-29adfacad8d0","input_length":1087,"output_length":212,"hash_ids":[1968076,1968077,1968078],"delay":3940.9} +{"session_id":"sess-29adfacad8d0","input_length":1629,"output_length":460,"hash_ids":[1968079,1968080,1968081,1968082],"delay":634.0} +{"session_id":"sess-29adfacad8d0","input_length":977,"output_length":414,"hash_ids":[1968083,1968084],"delay":1889.2} +{"session_id":"sess-18f7592c3b60","input_length":28257,"output_length":250,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,1980032,1980033,1980034,1980035],"timestamp":0.0,"group_id":11} +{"session_id":"sess-18f7592c3b60","input_length":228,"output_length":47,"hash_ids":[1980036],"delay":414.8} +{"session_id":"sess-18f7592c3b60","input_length":1535,"output_length":228,"hash_ids":[1980037,1980038,1980039],"delay":1920.7} +{"session_id":"sess-18f7592c3b60","input_length":2572,"output_length":159,"hash_ids":[1980040,1980041,1980042,1980043,1980044,1980045],"delay":8334.4} +{"session_id":"sess-18f7592c3b60","input_length":338,"output_length":215,"hash_ids":[1980046],"delay":647.9} +{"session_id":"sess-fb8aec98069e","input_length":26341,"output_length":198,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb8aec98069e","input_length":726,"output_length":301,"hash_ids":[1980047,1980048],"delay":3397.4} +{"session_id":"sess-fb8aec98069e","input_length":238,"output_length":695,"hash_ids":[1980049],"delay":1956.9} +{"session_id":"sess-fb8aec98069e","input_length":1812,"output_length":114,"hash_ids":[1980050,1980051,1980052,1980053],"delay":1553.8} +{"session_id":"sess-fb8aec98069e","input_length":1436,"output_length":273,"hash_ids":[1980054,1980055,1980056],"delay":45224.7} +{"session_id":"sess-fb8aec98069e","input_length":818,"output_length":221,"hash_ids":[1980057,1980058],"delay":2013.3} +{"session_id":"sess-fb8aec98069e","input_length":299,"output_length":383,"hash_ids":[1980059],"delay":3759.4} +{"session_id":"sess-fb8aec98069e","input_length":1162,"output_length":71,"hash_ids":[1980060,1980061,1980062],"delay":1804.8} +{"session_id":"sess-fb8aec98069e","input_length":1069,"output_length":217,"hash_ids":[1980063,1980064,1980065],"delay":3817.6} +{"session_id":"sess-fb8aec98069e","input_length":1564,"output_length":280,"hash_ids":[1980066,1980067,1980068,1980069],"delay":963.1} +{"session_id":"sess-fb8aec98069e","input_length":1361,"output_length":117,"hash_ids":[1980070,1980071,1980072],"delay":1344.0} +{"session_id":"sess-fb8aec98069e","input_length":1457,"output_length":121,"hash_ids":[1980073,1980074,1980075],"delay":20875.0} +{"session_id":"sess-fb8aec98069e","input_length":768,"output_length":193,"hash_ids":[1980076,1980077],"delay":14115.7} +{"session_id":"sess-fb8aec98069e","input_length":1721,"output_length":193,"hash_ids":[1980078,1980079,1980080,1980081],"delay":2995.4} +{"session_id":"sess-fb8aec98069e","input_length":125,"output_length":403,"hash_ids":[1980082],"delay":918.6} +{"session_id":"sess-fb8aec98069e","input_length":196,"output_length":157,"hash_ids":[1980083],"delay":10500.7} +{"session_id":"sess-fb8aec98069e","input_length":2637,"output_length":214,"hash_ids":[1980084,1980085,1980086,1980087,1980088,1980089],"delay":1985.6} +{"session_id":"sess-fb8aec98069e","input_length":881,"output_length":165,"hash_ids":[1980090,1980091],"delay":3558.8} +{"session_id":"sess-fb8aec98069e","input_length":516,"output_length":135,"hash_ids":[1980092,1980093],"delay":6406.5} +{"session_id":"sess-fb8aec98069e","input_length":467,"output_length":310,"hash_ids":[1980094],"delay":1280.7} +{"session_id":"sess-fb8aec98069e","input_length":727,"output_length":177,"hash_ids":[1980095,1980096],"delay":1602.0} +{"session_id":"sess-fb8aec98069e","input_length":466,"output_length":147,"hash_ids":[1980097],"delay":4057.5} +{"session_id":"sess-fb8aec98069e","input_length":385,"output_length":198,"hash_ids":[1980098],"delay":223.7} +{"session_id":"sess-fb8aec98069e","input_length":405,"output_length":1166,"hash_ids":[1980099],"delay":913.3} +{"session_id":"sess-477d523c31f3","input_length":29839,"output_length":244,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1988032,1988033,1988034,1988035,1988036,1988037,1988038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-477d523c31f3","input_length":1529,"output_length":1186,"hash_ids":[1988039,1988040,1988041],"delay":765.0} +{"session_id":"sess-477d523c31f3","input_length":1658,"output_length":37,"hash_ids":[1988042,1988043,1988044,1988045],"delay":68086.7} +{"session_id":"sess-477d523c31f3","input_length":1170,"output_length":33,"hash_ids":[1988046,1988047,1988048],"delay":819.0} +{"session_id":"sess-477d523c31f3","input_length":482,"output_length":434,"hash_ids":[1988049],"delay":3126.8} +{"session_id":"sess-477d523c31f3","input_length":1925,"output_length":141,"hash_ids":[1988050,1988051,1988052,1988053],"delay":1626.1} +{"session_id":"sess-477d523c31f3","input_length":1610,"output_length":391,"hash_ids":[1988054,1988055,1988056,1988057],"delay":190.4} +{"session_id":"sess-477d523c31f3","input_length":340,"output_length":150,"hash_ids":[1988058],"delay":1923.3} +{"session_id":"sess-477d523c31f3","input_length":204,"output_length":50,"hash_ids":[1988059],"delay":2129.1} +{"session_id":"sess-477d523c31f3","input_length":729,"output_length":126,"hash_ids":[1988060,1988061],"delay":1425.5} +{"session_id":"sess-477d523c31f3","input_length":683,"output_length":101,"hash_ids":[1988062,1988063],"delay":578.3} +{"session_id":"sess-477d523c31f3","input_length":1715,"output_length":110,"hash_ids":[1988064,1988065,1988066,1988067],"delay":305.0} +{"session_id":"sess-477d523c31f3","input_length":1600,"output_length":62,"hash_ids":[1988068,1988069,1988070,1988071],"delay":414.6} +{"session_id":"sess-477d523c31f3","input_length":366,"output_length":94,"hash_ids":[1988072],"delay":1089.9} +{"session_id":"sess-477d523c31f3","input_length":448,"output_length":544,"hash_ids":[1988073],"delay":266.5} +{"session_id":"sess-477d523c31f3","input_length":256,"output_length":159,"hash_ids":[1988074],"delay":947.3} +{"session_id":"sess-477d523c31f3","input_length":1032,"output_length":516,"hash_ids":[1988075,1988076,1988077],"delay":456.4} +{"session_id":"sess-477d523c31f3","input_length":1704,"output_length":289,"hash_ids":[1988078,1988079,1988080,1988081],"delay":1326.4} +{"session_id":"sess-477d523c31f3","input_length":499,"output_length":299,"hash_ids":[1988082],"delay":18717.1} +{"session_id":"sess-477d523c31f3","input_length":994,"output_length":167,"hash_ids":[1988083,1988084],"delay":611.6} +{"session_id":"sess-477d523c31f3","input_length":1302,"output_length":453,"hash_ids":[1988085,1988086,1988087],"delay":11129.6} +{"session_id":"sess-477d523c31f3","input_length":1214,"output_length":135,"hash_ids":[1988088,1988089,1988090],"delay":456.0} +{"session_id":"sess-477d523c31f3","input_length":1948,"output_length":242,"hash_ids":[1988091,1988092,1988093,1988094],"delay":3142.4} +{"session_id":"sess-477d523c31f3","input_length":197,"output_length":209,"hash_ids":[1988095],"delay":151.7} +{"session_id":"sess-477d523c31f3","input_length":1699,"output_length":32,"hash_ids":[1988096,1988097,1988098,1988099],"delay":2748.0} +{"session_id":"sess-477d523c31f3","input_length":298,"output_length":484,"hash_ids":[1988100],"delay":1959.8} +{"session_id":"sess-477d523c31f3","input_length":212,"output_length":164,"hash_ids":[1988101],"delay":21812.4} +{"session_id":"sess-477d523c31f3","input_length":729,"output_length":629,"hash_ids":[1988102,1988103],"delay":1312.2} +{"session_id":"sess-2a5978790d66","input_length":27669,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,1992032,1992033,1992034],"timestamp":0.0,"group_id":21} +{"session_id":"sess-2a5978790d66","input_length":1239,"output_length":305,"hash_ids":[1992035,1992036,1992037],"delay":478.5} +{"session_id":"sess-2a5978790d66","input_length":498,"output_length":830,"hash_ids":[1992038],"delay":16712.3} +{"session_id":"sess-2a5978790d66","input_length":1441,"output_length":133,"hash_ids":[1992039,1992040,1992041],"delay":1134.2} +{"session_id":"sess-2a5978790d66","input_length":431,"output_length":185,"hash_ids":[1992042],"delay":328.0} +{"session_id":"sess-2a5978790d66","input_length":1755,"output_length":68,"hash_ids":[1992043,1992044,1992045,1992046],"delay":367.4} +{"session_id":"sess-2a5978790d66","input_length":904,"output_length":223,"hash_ids":[1992047,1992048],"delay":779.9} +{"session_id":"sess-2a5978790d66","input_length":585,"output_length":219,"hash_ids":[1992049,1992050],"delay":476.3} +{"session_id":"sess-2a5978790d66","input_length":574,"output_length":102,"hash_ids":[1992051,1992052],"delay":496.6} +{"session_id":"sess-2a5978790d66","input_length":2779,"output_length":224,"hash_ids":[1992053,1992054,1992055,1992056,1992057,1992058],"delay":3930.5} +{"session_id":"sess-2a5978790d66","input_length":1909,"output_length":51,"hash_ids":[1992059,1992060,1992061,1992062],"delay":698.9} +{"session_id":"sess-2a5978790d66","input_length":519,"output_length":85,"hash_ids":[1992063,1992064],"delay":798.1} +{"session_id":"sess-2a5978790d66","input_length":2356,"output_length":222,"hash_ids":[1992065,1992066,1992067,1992068,1992069],"delay":3343.7} +{"session_id":"sess-2a5978790d66","input_length":577,"output_length":315,"hash_ids":[1992070,1992071],"delay":1656.3} +{"session_id":"sess-2a5978790d66","input_length":166,"output_length":64,"hash_ids":[1992072],"delay":12410.9} +{"session_id":"sess-2a5978790d66","input_length":489,"output_length":75,"hash_ids":[1992073],"delay":694.7} +{"session_id":"sess-2a5978790d66","input_length":246,"output_length":401,"hash_ids":[1992074],"delay":3884.1} +{"session_id":"sess-2a5978790d66","input_length":388,"output_length":216,"hash_ids":[1992075],"delay":1582.3} +{"session_id":"sess-2a5978790d66","input_length":1307,"output_length":190,"hash_ids":[1992076,1992077,1992078],"delay":15217.5} +{"session_id":"sess-2a5978790d66","input_length":449,"output_length":94,"hash_ids":[1992079],"delay":782.2} +{"session_id":"sess-2a5978790d66","input_length":2131,"output_length":558,"hash_ids":[1992080,1992081,1992082,1992083,1992084],"delay":9232.9} +{"session_id":"sess-2a5978790d66","input_length":844,"output_length":76,"hash_ids":[1992085,1992086],"delay":1039.2} +{"session_id":"sess-2a5978790d66","input_length":463,"output_length":200,"hash_ids":[1992087],"delay":37666.6} +{"session_id":"sess-2a5978790d66","input_length":272,"output_length":674,"hash_ids":[1992088],"delay":225.2} +{"session_id":"sess-2a5978790d66","input_length":585,"output_length":217,"hash_ids":[1992089,1992090],"delay":212.0} +{"session_id":"sess-2a5978790d66","input_length":2548,"output_length":211,"hash_ids":[1992091,1992092,1992093,1992094,1992095],"delay":2170.0} +{"session_id":"sess-2a5978790d66","input_length":765,"output_length":138,"hash_ids":[1992096,1992097],"delay":7995.8} +{"session_id":"sess-2a5978790d66","input_length":1807,"output_length":133,"hash_ids":[1992098,1992099,1992100,1992101],"delay":9510.0} +{"session_id":"sess-2a5978790d66","input_length":367,"output_length":252,"hash_ids":[1992102],"delay":441.6} +{"session_id":"sess-2a5978790d66","input_length":1767,"output_length":30,"hash_ids":[1992103,1992104,1992105,1992106],"delay":3387.3} +{"session_id":"sess-417fd71bd7de","input_length":30189,"output_length":107,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,1996032,1996033,1996034,1996035,1996036,1996037,1996038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9c7fbd680404","input_length":29207,"output_length":648,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,2000032,2000033,2000034,2000035,2000036,2000037],"timestamp":0.0,"group_id":21} +{"session_id":"sess-9c7fbd680404","input_length":598,"output_length":89,"hash_ids":[2000038,2000039],"delay":2513.7} +{"session_id":"sess-9c7fbd680404","input_length":289,"output_length":932,"hash_ids":[2000040],"delay":260.3} +{"session_id":"sess-9c7fbd680404","input_length":762,"output_length":141,"hash_ids":[2000041,2000042],"delay":27821.5} +{"session_id":"sess-9c7fbd680404","input_length":185,"output_length":374,"hash_ids":[2000043],"delay":25864.3} +{"session_id":"sess-9c7fbd680404","input_length":1429,"output_length":96,"hash_ids":[2000044,2000045,2000046],"delay":289.1} +{"session_id":"sess-9c7fbd680404","input_length":471,"output_length":58,"hash_ids":[2000047],"delay":3196.3} +{"session_id":"sess-9c7fbd680404","input_length":748,"output_length":105,"hash_ids":[2000048,2000049],"delay":778.1} +{"session_id":"sess-9c7fbd680404","input_length":450,"output_length":307,"hash_ids":[2000050],"delay":1721.4} +{"session_id":"sess-9c7fbd680404","input_length":263,"output_length":446,"hash_ids":[2000051],"delay":470.1} +{"session_id":"sess-9c7fbd680404","input_length":539,"output_length":316,"hash_ids":[2000052,2000053],"delay":21603.8} +{"session_id":"sess-9c7fbd680404","input_length":97,"output_length":539,"hash_ids":[2000054],"delay":523.9} +{"session_id":"sess-9c7fbd680404","input_length":1424,"output_length":324,"hash_ids":[2000055,2000056,2000057],"delay":31265.6} +{"session_id":"sess-9c7fbd680404","input_length":1652,"output_length":636,"hash_ids":[2000058,2000059,2000060,2000061],"delay":18747.6} +{"session_id":"sess-9c7fbd680404","input_length":459,"output_length":352,"hash_ids":[2000062],"delay":397.9} +{"session_id":"sess-9c7fbd680404","input_length":1258,"output_length":173,"hash_ids":[2000063,2000064,2000065],"delay":168.7} +{"session_id":"sess-9c7fbd680404","input_length":528,"output_length":93,"hash_ids":[2000066,2000067],"delay":207.4} +{"session_id":"sess-9c7fbd680404","input_length":1368,"output_length":71,"hash_ids":[2000068,2000069,2000070],"delay":805.6} +{"session_id":"sess-9c7fbd680404","input_length":858,"output_length":321,"hash_ids":[2000071,2000072],"delay":615.6} +{"session_id":"sess-9c7fbd680404","input_length":914,"output_length":138,"hash_ids":[2000073,2000074],"delay":430.4} +{"session_id":"sess-9c7fbd680404","input_length":972,"output_length":177,"hash_ids":[2000075,2000076],"delay":2939.9} +{"session_id":"sess-9c7fbd680404","input_length":649,"output_length":119,"hash_ids":[2000077,2000078],"delay":6816.3} +{"session_id":"sess-9c7fbd680404","input_length":326,"output_length":294,"hash_ids":[2000079],"delay":1610.3} +{"session_id":"sess-9c7fbd680404","input_length":345,"output_length":53,"hash_ids":[2000080],"delay":665.9} +{"session_id":"sess-6834e1f40b27","input_length":26244,"output_length":349,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6834e1f40b27","input_length":1586,"output_length":130,"hash_ids":[2000081,2000082,2000083,2000084],"delay":66403.9} +{"session_id":"sess-6834e1f40b27","input_length":1306,"output_length":643,"hash_ids":[2000085,2000086,2000087],"delay":622.8} +{"session_id":"sess-6834e1f40b27","input_length":429,"output_length":267,"hash_ids":[2000088],"delay":545.6} +{"session_id":"sess-6834e1f40b27","input_length":343,"output_length":96,"hash_ids":[2000089],"delay":187.6} +{"session_id":"sess-6834e1f40b27","input_length":423,"output_length":81,"hash_ids":[2000090],"delay":896.3} +{"session_id":"sess-6834e1f40b27","input_length":319,"output_length":186,"hash_ids":[2000091],"delay":2968.7} +{"session_id":"sess-6834e1f40b27","input_length":1791,"output_length":594,"hash_ids":[2000092,2000093,2000094,2000095],"delay":19663.4} +{"session_id":"sess-6834e1f40b27","input_length":274,"output_length":688,"hash_ids":[2000096],"delay":340.2} +{"session_id":"sess-6834e1f40b27","input_length":1345,"output_length":469,"hash_ids":[2000097,2000098,2000099],"delay":2641.4} +{"session_id":"sess-6834e1f40b27","input_length":232,"output_length":534,"hash_ids":[2000100],"delay":1204.1} +{"session_id":"sess-6834e1f40b27","input_length":274,"output_length":374,"hash_ids":[2000101],"delay":1350.5} +{"session_id":"sess-9aaeddc22efc","input_length":32521,"output_length":101,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2008032,2008033,2008034,2008035,2008036,2008037,2008038,2008039,2008040,2008041,2008042,2008043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9aaeddc22efc","input_length":998,"output_length":86,"hash_ids":[2008044,2008045],"delay":1078.7} +{"session_id":"sess-9aaeddc22efc","input_length":112,"output_length":57,"hash_ids":[2008046],"delay":5061.1} +{"session_id":"sess-9aaeddc22efc","input_length":246,"output_length":44,"hash_ids":[2008047],"delay":11348.2} +{"session_id":"sess-9aaeddc22efc","input_length":2440,"output_length":143,"hash_ids":[2008048,2008049,2008050,2008051,2008052],"delay":26260.2} +{"session_id":"sess-9aaeddc22efc","input_length":1734,"output_length":137,"hash_ids":[2008053,2008054,2008055,2008056],"delay":2533.6} +{"session_id":"sess-9aaeddc22efc","input_length":270,"output_length":258,"hash_ids":[2008057],"delay":1366.4} +{"session_id":"sess-9aaeddc22efc","input_length":740,"output_length":109,"hash_ids":[2008058,2008059],"delay":814.2} +{"session_id":"sess-9aaeddc22efc","input_length":636,"output_length":124,"hash_ids":[2008060,2008061],"delay":429.4} +{"session_id":"sess-9aaeddc22efc","input_length":1147,"output_length":760,"hash_ids":[2008062,2008063,2008064],"delay":1027.5} +{"session_id":"sess-9aaeddc22efc","input_length":837,"output_length":191,"hash_ids":[2008065,2008066],"delay":1180.2} +{"session_id":"sess-9aaeddc22efc","input_length":1337,"output_length":764,"hash_ids":[2008067,2008068,2008069],"delay":395.8} +{"session_id":"sess-9aaeddc22efc","input_length":501,"output_length":169,"hash_ids":[2008070],"delay":255.6} +{"session_id":"sess-9aaeddc22efc","input_length":201,"output_length":205,"hash_ids":[2008071],"delay":19801.4} +{"session_id":"sess-9aaeddc22efc","input_length":439,"output_length":220,"hash_ids":[2008072],"delay":656.4} +{"session_id":"sess-9aaeddc22efc","input_length":1087,"output_length":371,"hash_ids":[2008073,2008074,2008075],"delay":1721.1} +{"session_id":"sess-9aaeddc22efc","input_length":1055,"output_length":264,"hash_ids":[2008076,2008077,2008078],"delay":1977.1} +{"session_id":"sess-9aaeddc22efc","input_length":692,"output_length":463,"hash_ids":[2008079,2008080],"delay":231.9} +{"session_id":"sess-9aaeddc22efc","input_length":531,"output_length":272,"hash_ids":[2008081,2008082],"delay":32361.6} +{"session_id":"sess-9aaeddc22efc","input_length":1456,"output_length":63,"hash_ids":[2008083,2008084,2008085],"delay":310.1} +{"session_id":"sess-697b0a20a11b","input_length":29728,"output_length":1112,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2012032,2012033,2012034,2012035,2012036,2012037,2012038],"timestamp":0.0,"group_id":14} +{"session_id":"sess-697b0a20a11b","input_length":1728,"output_length":553,"hash_ids":[2012039,2012040,2012041,2012042],"delay":379.2} +{"session_id":"sess-697b0a20a11b","input_length":601,"output_length":154,"hash_ids":[2012043,2012044],"delay":1986.4} +{"session_id":"sess-697b0a20a11b","input_length":513,"output_length":243,"hash_ids":[2012045,2012046],"delay":1083.8} +{"session_id":"sess-697b0a20a11b","input_length":1703,"output_length":47,"hash_ids":[2012047,2012048,2012049,2012050],"delay":3114.3} +{"session_id":"sess-697b0a20a11b","input_length":457,"output_length":390,"hash_ids":[2012051],"delay":8630.6} +{"session_id":"sess-697b0a20a11b","input_length":1687,"output_length":154,"hash_ids":[2012052,2012053,2012054,2012055],"delay":406.7} +{"session_id":"sess-697b0a20a11b","input_length":974,"output_length":149,"hash_ids":[2012056,2012057],"delay":55197.2} +{"session_id":"sess-697b0a20a11b","input_length":307,"output_length":866,"hash_ids":[2012058],"delay":552.3} +{"session_id":"sess-697b0a20a11b","input_length":953,"output_length":671,"hash_ids":[2012059,2012060],"delay":1113.0} +{"session_id":"sess-697b0a20a11b","input_length":470,"output_length":927,"hash_ids":[2012061],"delay":14135.4} +{"session_id":"sess-697b0a20a11b","input_length":2037,"output_length":102,"hash_ids":[2012062,2012063,2012064,2012065],"delay":560.4} +{"session_id":"sess-697b0a20a11b","input_length":827,"output_length":420,"hash_ids":[2012066,2012067],"delay":5744.4} +{"session_id":"sess-697b0a20a11b","input_length":187,"output_length":450,"hash_ids":[2012068],"delay":166.3} +{"session_id":"sess-697b0a20a11b","input_length":1105,"output_length":60,"hash_ids":[2012069,2012070,2012071],"delay":1446.8} +{"session_id":"sess-697b0a20a11b","input_length":471,"output_length":483,"hash_ids":[2012072],"delay":317.4} +{"session_id":"sess-697b0a20a11b","input_length":1639,"output_length":229,"hash_ids":[2012073,2012074,2012075,2012076],"delay":1794.6} +{"session_id":"sess-697b0a20a11b","input_length":746,"output_length":113,"hash_ids":[2012077,2012078],"delay":432.5} +{"session_id":"sess-697b0a20a11b","input_length":823,"output_length":109,"hash_ids":[2012079,2012080],"delay":209.4} +{"session_id":"sess-697b0a20a11b","input_length":2453,"output_length":269,"hash_ids":[2012081,2012082,2012083,2012084,2012085],"delay":465.7} +{"session_id":"sess-697b0a20a11b","input_length":888,"output_length":229,"hash_ids":[2012086,2012087],"delay":840.9} +{"session_id":"sess-697b0a20a11b","input_length":1666,"output_length":94,"hash_ids":[2012088,2012089,2012090,2012091],"delay":5215.6} +{"session_id":"sess-697b0a20a11b","input_length":1512,"output_length":85,"hash_ids":[2012092,2012093,2012094],"delay":12933.9} +{"session_id":"sess-697b0a20a11b","input_length":1028,"output_length":245,"hash_ids":[2012095,2012096,2012097],"delay":129.7} +{"session_id":"sess-697b0a20a11b","input_length":1459,"output_length":210,"hash_ids":[2012098,2012099,2012100],"delay":2837.0} +{"session_id":"sess-697b0a20a11b","input_length":520,"output_length":327,"hash_ids":[2012101,2012102],"delay":529.9} +{"session_id":"sess-f2d2662c9a57","input_length":26911,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2016032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-f2d2662c9a57","input_length":2044,"output_length":416,"hash_ids":[2016033,2016034,2016035,2016036],"delay":4102.8} +{"session_id":"sess-f2d2662c9a57","input_length":925,"output_length":52,"hash_ids":[2016037,2016038],"delay":856.4} +{"session_id":"sess-f2d2662c9a57","input_length":445,"output_length":310,"hash_ids":[2016039],"delay":2159.6} +{"session_id":"sess-f2d2662c9a57","input_length":1040,"output_length":439,"hash_ids":[2016040,2016041,2016042],"delay":1472.5} +{"session_id":"sess-f2d2662c9a57","input_length":829,"output_length":375,"hash_ids":[2016043,2016044],"delay":785.5} +{"session_id":"sess-f2d2662c9a57","input_length":821,"output_length":80,"hash_ids":[2016045,2016046],"delay":4327.9} +{"session_id":"sess-f2d2662c9a57","input_length":1431,"output_length":122,"hash_ids":[2016047,2016048,2016049],"delay":233.5} +{"session_id":"sess-f2d2662c9a57","input_length":357,"output_length":91,"hash_ids":[2016050],"delay":1123.5} +{"session_id":"sess-f2d2662c9a57","input_length":350,"output_length":81,"hash_ids":[2016051],"delay":2693.1} +{"session_id":"sess-f2d2662c9a57","input_length":195,"output_length":306,"hash_ids":[2016052],"delay":644.0} +{"session_id":"sess-aa25ee65e5ac","input_length":26145,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-aa25ee65e5ac","input_length":1084,"output_length":122,"hash_ids":[2016053,2016054,2016055],"delay":3791.2} +{"session_id":"sess-aa25ee65e5ac","input_length":473,"output_length":463,"hash_ids":[2016056],"delay":382.5} +{"session_id":"sess-aa25ee65e5ac","input_length":1348,"output_length":1010,"hash_ids":[2016057,2016058,2016059],"delay":1139.3} +{"session_id":"sess-aa25ee65e5ac","input_length":1751,"output_length":613,"hash_ids":[2016060,2016061,2016062,2016063],"delay":296.4} +{"session_id":"sess-aa25ee65e5ac","input_length":1150,"output_length":596,"hash_ids":[2016064,2016065,2016066],"delay":558.0} +{"session_id":"sess-aa25ee65e5ac","input_length":281,"output_length":83,"hash_ids":[2016067],"delay":293.7} +{"session_id":"sess-aa25ee65e5ac","input_length":278,"output_length":333,"hash_ids":[2016068],"delay":583.4} +{"session_id":"sess-aa25ee65e5ac","input_length":2585,"output_length":144,"hash_ids":[2016069,2016070,2016071,2016072,2016073,2016074],"delay":346.6} +{"session_id":"sess-aa25ee65e5ac","input_length":1899,"output_length":194,"hash_ids":[2016075,2016076,2016077,2016078],"delay":1080.7} +{"session_id":"sess-aa25ee65e5ac","input_length":444,"output_length":30,"hash_ids":[2016079],"delay":1075.1} +{"session_id":"sess-aa25ee65e5ac","input_length":685,"output_length":160,"hash_ids":[2016080,2016081],"delay":681.0} +{"session_id":"sess-aa25ee65e5ac","input_length":2058,"output_length":67,"hash_ids":[2016082,2016083,2016084,2016085,2016086],"delay":402.4} +{"session_id":"sess-aa25ee65e5ac","input_length":2617,"output_length":328,"hash_ids":[2016087,2016088,2016089,2016090,2016091,2016092],"delay":350.7} +{"session_id":"sess-aa25ee65e5ac","input_length":546,"output_length":344,"hash_ids":[2016093,2016094],"delay":480.3} +{"session_id":"sess-aa25ee65e5ac","input_length":707,"output_length":628,"hash_ids":[2016095,2016096],"delay":1626.1} +{"session_id":"sess-aa25ee65e5ac","input_length":2700,"output_length":305,"hash_ids":[2016097,2016098,2016099,2016100,2016101,2016102],"delay":506.6} +{"session_id":"sess-aa25ee65e5ac","input_length":119,"output_length":79,"hash_ids":[2016103],"delay":871.1} +{"session_id":"sess-aa25ee65e5ac","input_length":1617,"output_length":272,"hash_ids":[2016104,2016105,2016106,2016107],"delay":3928.2} +{"session_id":"sess-aa25ee65e5ac","input_length":150,"output_length":31,"hash_ids":[2016108],"delay":440.5} +{"session_id":"sess-aa25ee65e5ac","input_length":198,"output_length":402,"hash_ids":[2016109],"delay":1002.4} +{"session_id":"sess-aa25ee65e5ac","input_length":305,"output_length":104,"hash_ids":[2016110],"delay":20666.0} +{"session_id":"sess-aa25ee65e5ac","input_length":142,"output_length":233,"hash_ids":[2016111],"delay":441.1} +{"session_id":"sess-aa25ee65e5ac","input_length":1709,"output_length":298,"hash_ids":[2016112,2016113,2016114,2016115],"delay":731.9} +{"session_id":"sess-aa25ee65e5ac","input_length":448,"output_length":356,"hash_ids":[2016116],"delay":465.0} +{"session_id":"sess-aa25ee65e5ac","input_length":2648,"output_length":68,"hash_ids":[2016117,2016118,2016119,2016120,2016121,2016122],"delay":424.2} +{"session_id":"sess-aa25ee65e5ac","input_length":369,"output_length":269,"hash_ids":[2016123],"delay":594.2} +{"session_id":"sess-aa25ee65e5ac","input_length":1203,"output_length":64,"hash_ids":[2016124,2016125,2016126],"delay":19802.5} +{"session_id":"sess-aa25ee65e5ac","input_length":1228,"output_length":30,"hash_ids":[2016127,2016128,2016129],"delay":5885.2} +{"session_id":"sess-23ea81e082d5","input_length":29288,"output_length":798,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2024032,2024033,2024034,2024035,2024036,2024037],"timestamp":0.0,"group_id":12} +{"session_id":"sess-23ea81e082d5","input_length":2976,"output_length":223,"hash_ids":[2024038,2024039,2024040,2024041,2024042,2024043],"delay":3043.0} +{"session_id":"sess-23ea81e082d5","input_length":1110,"output_length":59,"hash_ids":[2024044,2024045,2024046],"delay":2369.8} +{"session_id":"sess-23ea81e082d5","input_length":1943,"output_length":229,"hash_ids":[2024047,2024048,2024049,2024050],"delay":303.3} +{"session_id":"sess-23ea81e082d5","input_length":2021,"output_length":50,"hash_ids":[2024051,2024052,2024053,2024054],"delay":2340.7} +{"session_id":"sess-23ea81e082d5","input_length":381,"output_length":190,"hash_ids":[2024055],"delay":17205.7} +{"session_id":"sess-23ea81e082d5","input_length":193,"output_length":117,"hash_ids":[2024056],"delay":31067.4} +{"session_id":"sess-23ea81e082d5","input_length":1472,"output_length":182,"hash_ids":[2024057,2024058,2024059],"delay":579.7} +{"session_id":"sess-23ea81e082d5","input_length":408,"output_length":45,"hash_ids":[2024060],"delay":497.3} +{"session_id":"sess-853fd74b60b8","input_length":30328,"output_length":369,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2028032,2028033,2028034,2028035,2028036,2028037,2028038,2028039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-853fd74b60b8","input_length":654,"output_length":130,"hash_ids":[2028040,2028041],"delay":2197.9} +{"session_id":"sess-853fd74b60b8","input_length":120,"output_length":111,"hash_ids":[2028042],"delay":1730.9} +{"session_id":"sess-853fd74b60b8","input_length":333,"output_length":337,"hash_ids":[2028043],"delay":21972.3} +{"session_id":"sess-853fd74b60b8","input_length":651,"output_length":788,"hash_ids":[2028044,2028045],"delay":32007.9} +{"session_id":"sess-853fd74b60b8","input_length":973,"output_length":216,"hash_ids":[2028046,2028047],"delay":51294.5} +{"session_id":"sess-853fd74b60b8","input_length":1048,"output_length":354,"hash_ids":[2028048,2028049,2028050],"delay":1640.9} +{"session_id":"sess-853fd74b60b8","input_length":607,"output_length":90,"hash_ids":[2028051,2028052],"delay":3746.4} +{"session_id":"sess-853fd74b60b8","input_length":1184,"output_length":84,"hash_ids":[2028053,2028054,2028055],"delay":696.7} +{"session_id":"sess-853fd74b60b8","input_length":1193,"output_length":159,"hash_ids":[2028056,2028057,2028058],"delay":2016.0} +{"session_id":"sess-853fd74b60b8","input_length":2780,"output_length":726,"hash_ids":[2028059,2028060,2028061,2028062,2028063,2028064],"delay":416.1} +{"session_id":"sess-853fd74b60b8","input_length":1100,"output_length":599,"hash_ids":[2028065,2028066,2028067],"delay":140.8} +{"session_id":"sess-853fd74b60b8","input_length":213,"output_length":150,"hash_ids":[2028068],"delay":1321.2} +{"session_id":"sess-853fd74b60b8","input_length":373,"output_length":202,"hash_ids":[2028069],"delay":332.0} +{"session_id":"sess-853fd74b60b8","input_length":1358,"output_length":484,"hash_ids":[2028070,2028071,2028072],"delay":1147.8} +{"session_id":"sess-853fd74b60b8","input_length":626,"output_length":133,"hash_ids":[2028073,2028074],"delay":910.9} +{"session_id":"sess-853fd74b60b8","input_length":665,"output_length":86,"hash_ids":[2028075,2028076],"delay":484.8} +{"session_id":"sess-853fd74b60b8","input_length":941,"output_length":320,"hash_ids":[2028077,2028078],"delay":346.8} +{"session_id":"sess-853fd74b60b8","input_length":291,"output_length":43,"hash_ids":[2028079],"delay":457.1} +{"session_id":"sess-853fd74b60b8","input_length":325,"output_length":31,"hash_ids":[2028080],"delay":41086.0} +{"session_id":"sess-853fd74b60b8","input_length":121,"output_length":131,"hash_ids":[2028081],"delay":2760.0} +{"session_id":"sess-853fd74b60b8","input_length":862,"output_length":30,"hash_ids":[2028082,2028083],"delay":2313.3} +{"session_id":"sess-853fd74b60b8","input_length":2768,"output_length":51,"hash_ids":[2028084,2028085,2028086,2028087,2028088,2028089],"delay":653.4} +{"session_id":"sess-853fd74b60b8","input_length":993,"output_length":161,"hash_ids":[2028090,2028091],"delay":580.8} +{"session_id":"sess-853fd74b60b8","input_length":758,"output_length":108,"hash_ids":[2028092,2028093],"delay":2665.9} +{"session_id":"sess-853fd74b60b8","input_length":320,"output_length":225,"hash_ids":[2028094],"delay":133.4} +{"session_id":"sess-853fd74b60b8","input_length":1425,"output_length":48,"hash_ids":[2028095,2028096,2028097],"delay":15615.3} +{"session_id":"sess-853fd74b60b8","input_length":469,"output_length":312,"hash_ids":[2028098],"delay":10343.3} +{"session_id":"sess-853fd74b60b8","input_length":843,"output_length":30,"hash_ids":[2028099,2028100],"delay":1981.0} +{"session_id":"sess-853fd74b60b8","input_length":305,"output_length":282,"hash_ids":[2028101],"delay":232.4} +{"session_id":"sess-853fd74b60b8","input_length":1307,"output_length":197,"hash_ids":[2028102,2028103,2028104],"delay":3231.2} +{"session_id":"sess-853fd74b60b8","input_length":809,"output_length":539,"hash_ids":[2028105,2028106],"delay":413.6} +{"session_id":"sess-853fd74b60b8","input_length":239,"output_length":123,"hash_ids":[2028107],"delay":678.8} +{"session_id":"sess-853fd74b60b8","input_length":841,"output_length":369,"hash_ids":[2028108,2028109],"delay":544.5} +{"session_id":"sess-56de3bad7f38","input_length":27578,"output_length":438,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2032032,2032033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-56de3bad7f38","input_length":1072,"output_length":870,"hash_ids":[2032034,2032035,2032036],"delay":2175.0} +{"session_id":"sess-56de3bad7f38","input_length":1109,"output_length":1160,"hash_ids":[2032037,2032038,2032039],"delay":2059.9} +{"session_id":"sess-56de3bad7f38","input_length":434,"output_length":91,"hash_ids":[2032040],"delay":35472.6} +{"session_id":"sess-56de3bad7f38","input_length":1040,"output_length":289,"hash_ids":[2032041,2032042,2032043],"delay":1312.5} +{"session_id":"sess-48e63fee0a05","input_length":27541,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,2036032,2036033],"timestamp":0.0,"group_id":17} +{"session_id":"sess-48e63fee0a05","input_length":2110,"output_length":722,"hash_ids":[2036034,2036035,2036036,2036037,2036038],"delay":6636.2} +{"session_id":"sess-48e63fee0a05","input_length":320,"output_length":260,"hash_ids":[2036039],"delay":36483.4} +{"session_id":"sess-48e63fee0a05","input_length":1124,"output_length":241,"hash_ids":[2036040,2036041,2036042],"delay":4829.0} +{"session_id":"sess-48e63fee0a05","input_length":1627,"output_length":242,"hash_ids":[2036043,2036044,2036045,2036046],"delay":990.6} +{"session_id":"sess-48e63fee0a05","input_length":1582,"output_length":226,"hash_ids":[2036047,2036048,2036049,2036050],"delay":245.1} +{"session_id":"sess-48e63fee0a05","input_length":512,"output_length":53,"hash_ids":[2036051],"delay":437.8} +{"session_id":"sess-48e63fee0a05","input_length":2440,"output_length":261,"hash_ids":[2036052,2036053,2036054,2036055,2036056],"delay":1653.4} +{"session_id":"sess-48e63fee0a05","input_length":1012,"output_length":255,"hash_ids":[2036057,2036058],"delay":696.1} +{"session_id":"sess-48e63fee0a05","input_length":2067,"output_length":115,"hash_ids":[2036059,2036060,2036061,2036062,2036063],"delay":5050.0} +{"session_id":"sess-48e63fee0a05","input_length":424,"output_length":350,"hash_ids":[2036064],"delay":961.5} +{"session_id":"sess-48e63fee0a05","input_length":1034,"output_length":141,"hash_ids":[2036065,2036066,2036067],"delay":462.0} +{"session_id":"sess-48e63fee0a05","input_length":1018,"output_length":884,"hash_ids":[2036068,2036069],"delay":7203.1} +{"session_id":"sess-48e63fee0a05","input_length":1898,"output_length":97,"hash_ids":[2036070,2036071,2036072,2036073],"delay":352.8} +{"session_id":"sess-48e63fee0a05","input_length":1507,"output_length":145,"hash_ids":[2036074,2036075,2036076],"delay":290.9} +{"session_id":"sess-48e63fee0a05","input_length":1380,"output_length":884,"hash_ids":[2036077,2036078,2036079],"delay":676.0} +{"session_id":"sess-48e63fee0a05","input_length":691,"output_length":385,"hash_ids":[2036080,2036081],"delay":1089.8} +{"session_id":"sess-48e63fee0a05","input_length":808,"output_length":127,"hash_ids":[2036082,2036083],"delay":225.5} +{"session_id":"sess-48e63fee0a05","input_length":721,"output_length":83,"hash_ids":[2036084,2036085],"delay":3778.6} +{"session_id":"sess-48e63fee0a05","input_length":2998,"output_length":180,"hash_ids":[2036086,2036087,2036088,2036089,2036090,2036091],"delay":460.5} +{"session_id":"sess-48e63fee0a05","input_length":686,"output_length":465,"hash_ids":[2036092,2036093],"delay":1876.0} +{"session_id":"sess-48e63fee0a05","input_length":2331,"output_length":196,"hash_ids":[2036094,2036095,2036096,2036097,2036098],"delay":403.2} +{"session_id":"sess-48e63fee0a05","input_length":1073,"output_length":212,"hash_ids":[2036099,2036100,2036101],"delay":189.9} +{"session_id":"sess-48e63fee0a05","input_length":1541,"output_length":99,"hash_ids":[2036102,2036103,2036104,2036105],"delay":489.2} +{"session_id":"sess-ce55e0caafe4","input_length":33051,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,2040032,2040033,2040034,2040035,2040036,2040037,2040038,2040039,2040040,2040041,2040042,2040043,2040044],"timestamp":0.0,"group_id":27} +{"session_id":"sess-ce55e0caafe4","input_length":570,"output_length":191,"hash_ids":[2040045,2040046],"delay":584.5} +{"session_id":"sess-ce55e0caafe4","input_length":771,"output_length":239,"hash_ids":[2040047,2040048],"delay":2597.6} +{"session_id":"sess-ce55e0caafe4","input_length":1126,"output_length":30,"hash_ids":[2040049,2040050,2040051],"delay":15113.0} +{"session_id":"sess-ce55e0caafe4","input_length":220,"output_length":489,"hash_ids":[2040052],"delay":1625.0} +{"session_id":"sess-ce55e0caafe4","input_length":1361,"output_length":166,"hash_ids":[2040053,2040054,2040055],"delay":1021.9} +{"session_id":"sess-ce55e0caafe4","input_length":2869,"output_length":300,"hash_ids":[2040056,2040057,2040058,2040059,2040060,2040061],"delay":457.8} +{"session_id":"sess-ce55e0caafe4","input_length":616,"output_length":57,"hash_ids":[2040062,2040063],"delay":9953.8} +{"session_id":"sess-ce55e0caafe4","input_length":301,"output_length":85,"hash_ids":[2040064],"delay":525.9} +{"session_id":"sess-ce55e0caafe4","input_length":842,"output_length":69,"hash_ids":[2040065,2040066],"delay":1557.4} +{"session_id":"sess-ce55e0caafe4","input_length":1257,"output_length":332,"hash_ids":[2040067,2040068,2040069],"delay":452.0} +{"session_id":"sess-9f057db74382","input_length":29310,"output_length":331,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2044032,2044033,2044034,2044035,2044036,2044037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9f057db74382","input_length":2144,"output_length":32,"hash_ids":[2044038,2044039,2044040,2044041,2044042],"delay":1402.6} +{"session_id":"sess-9f057db74382","input_length":1939,"output_length":681,"hash_ids":[2044043,2044044,2044045,2044046],"delay":1620.3} +{"session_id":"sess-9f057db74382","input_length":1821,"output_length":198,"hash_ids":[2044047,2044048,2044049,2044050],"delay":3265.8} +{"session_id":"sess-9f057db74382","input_length":533,"output_length":39,"hash_ids":[2044051,2044052],"delay":6273.7} +{"session_id":"sess-9f057db74382","input_length":804,"output_length":197,"hash_ids":[2044053,2044054],"delay":493.8} +{"session_id":"sess-9f057db74382","input_length":2260,"output_length":44,"hash_ids":[2044055,2044056,2044057,2044058,2044059],"delay":9896.3} +{"session_id":"sess-9f057db74382","input_length":661,"output_length":186,"hash_ids":[2044060,2044061],"delay":2654.1} +{"session_id":"sess-9f057db74382","input_length":726,"output_length":151,"hash_ids":[2044062,2044063],"delay":20499.3} +{"session_id":"sess-9f057db74382","input_length":1226,"output_length":521,"hash_ids":[2044064,2044065,2044066],"delay":288.1} +{"session_id":"sess-9f057db74382","input_length":1943,"output_length":50,"hash_ids":[2044067,2044068,2044069,2044070],"delay":11354.1} +{"session_id":"sess-9f057db74382","input_length":188,"output_length":56,"hash_ids":[2044071],"delay":760.6} +{"session_id":"sess-9f057db74382","input_length":325,"output_length":468,"hash_ids":[2044072],"delay":363.9} +{"session_id":"sess-9f057db74382","input_length":339,"output_length":293,"hash_ids":[2044073],"delay":16561.8} +{"session_id":"sess-9f057db74382","input_length":1290,"output_length":223,"hash_ids":[2044074,2044075,2044076],"delay":13326.2} +{"session_id":"sess-9f057db74382","input_length":322,"output_length":188,"hash_ids":[2044077],"delay":10251.9} +{"session_id":"sess-9f057db74382","input_length":1180,"output_length":240,"hash_ids":[2044078,2044079,2044080],"delay":1551.2} +{"session_id":"sess-9f057db74382","input_length":609,"output_length":54,"hash_ids":[2044081,2044082],"delay":245.8} +{"session_id":"sess-9f057db74382","input_length":809,"output_length":1139,"hash_ids":[2044083,2044084],"delay":1283.1} +{"session_id":"sess-9f057db74382","input_length":1497,"output_length":142,"hash_ids":[2044085,2044086,2044087],"delay":10916.6} +{"session_id":"sess-9f057db74382","input_length":546,"output_length":234,"hash_ids":[2044088,2044089],"delay":605.3} +{"session_id":"sess-9f057db74382","input_length":2267,"output_length":58,"hash_ids":[2044090,2044091,2044092,2044093,2044094],"delay":1264.6} +{"session_id":"sess-9f057db74382","input_length":1223,"output_length":147,"hash_ids":[2044095,2044096,2044097],"delay":2798.9} +{"session_id":"sess-9f057db74382","input_length":674,"output_length":387,"hash_ids":[2044098,2044099],"delay":450.2} +{"session_id":"sess-9f057db74382","input_length":759,"output_length":93,"hash_ids":[2044100,2044101],"delay":498.6} +{"session_id":"sess-9f057db74382","input_length":925,"output_length":109,"hash_ids":[2044102,2044103],"delay":535.8} +{"session_id":"sess-9f057db74382","input_length":2036,"output_length":205,"hash_ids":[2044104,2044105,2044106,2044107],"delay":553.7} +{"session_id":"sess-f63075b88c1d","input_length":29630,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2048032,2048033,2048034,2048035,2048036,2048037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f63075b88c1d","input_length":908,"output_length":123,"hash_ids":[2048038,2048039],"delay":372.5} +{"session_id":"sess-f63075b88c1d","input_length":200,"output_length":959,"hash_ids":[2048040],"delay":523.7} +{"session_id":"sess-f63075b88c1d","input_length":505,"output_length":260,"hash_ids":[2048041],"delay":3181.7} +{"session_id":"sess-f63075b88c1d","input_length":350,"output_length":155,"hash_ids":[2048042],"delay":2032.3} +{"session_id":"sess-f63075b88c1d","input_length":294,"output_length":83,"hash_ids":[2048043],"delay":1017.5} +{"session_id":"sess-f63075b88c1d","input_length":160,"output_length":425,"hash_ids":[2048044],"delay":762.4} +{"session_id":"sess-f63075b88c1d","input_length":1233,"output_length":448,"hash_ids":[2048045,2048046,2048047],"delay":22072.1} +{"session_id":"sess-f63075b88c1d","input_length":427,"output_length":282,"hash_ids":[2048048],"delay":2414.4} +{"session_id":"sess-f63075b88c1d","input_length":186,"output_length":241,"hash_ids":[2048049],"delay":7552.2} +{"session_id":"sess-f63075b88c1d","input_length":259,"output_length":31,"hash_ids":[2048050],"delay":9922.5} +{"session_id":"sess-f63075b88c1d","input_length":1375,"output_length":910,"hash_ids":[2048051,2048052,2048053],"delay":898.1} +{"session_id":"sess-f63075b88c1d","input_length":564,"output_length":252,"hash_ids":[2048054,2048055],"delay":1180.3} +{"session_id":"sess-f63075b88c1d","input_length":2768,"output_length":743,"hash_ids":[2048056,2048057,2048058,2048059,2048060,2048061],"delay":1061.9} +{"session_id":"sess-f63075b88c1d","input_length":957,"output_length":119,"hash_ids":[2048062,2048063],"delay":684.2} +{"session_id":"sess-f63075b88c1d","input_length":295,"output_length":298,"hash_ids":[2048064],"delay":846.9} +{"session_id":"sess-f63075b88c1d","input_length":1398,"output_length":162,"hash_ids":[2048065,2048066,2048067],"delay":120.4} +{"session_id":"sess-f63075b88c1d","input_length":2098,"output_length":138,"hash_ids":[2048068,2048069,2048070,2048071,2048072],"delay":1804.9} +{"session_id":"sess-f63075b88c1d","input_length":317,"output_length":50,"hash_ids":[2048073],"delay":1241.0} +{"session_id":"sess-f63075b88c1d","input_length":196,"output_length":821,"hash_ids":[2048074],"delay":917.1} +{"session_id":"sess-f63075b88c1d","input_length":2601,"output_length":161,"hash_ids":[2048075,2048076,2048077,2048078,2048079,2048080],"delay":158.3} +{"session_id":"sess-f63075b88c1d","input_length":2058,"output_length":113,"hash_ids":[2048081,2048082,2048083,2048084,2048085],"delay":934.0} +{"session_id":"sess-f63075b88c1d","input_length":1746,"output_length":524,"hash_ids":[2048086,2048087,2048088,2048089],"delay":308.5} +{"session_id":"sess-f63075b88c1d","input_length":1558,"output_length":225,"hash_ids":[2048090,2048091,2048092,2048093],"delay":635.9} +{"session_id":"sess-f63075b88c1d","input_length":280,"output_length":742,"hash_ids":[2048094],"delay":169.0} +{"session_id":"sess-f63075b88c1d","input_length":2493,"output_length":131,"hash_ids":[2048095,2048096,2048097,2048098,2048099],"delay":399.5} +{"session_id":"sess-f63075b88c1d","input_length":605,"output_length":354,"hash_ids":[2048100,2048101],"delay":199.3} +{"session_id":"sess-f63075b88c1d","input_length":1141,"output_length":303,"hash_ids":[2048102,2048103,2048104],"delay":9607.3} +{"session_id":"sess-0ceadfdce1e9","input_length":27552,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,2052032,2052033],"timestamp":0.0,"group_id":17} +{"session_id":"sess-0ceadfdce1e9","input_length":678,"output_length":385,"hash_ids":[2052034,2052035],"delay":7569.5} +{"session_id":"sess-0ceadfdce1e9","input_length":1160,"output_length":186,"hash_ids":[2052036,2052037,2052038],"delay":50421.4} +{"session_id":"sess-0ceadfdce1e9","input_length":1108,"output_length":141,"hash_ids":[2052039,2052040,2052041],"delay":9851.4} +{"session_id":"sess-0ceadfdce1e9","input_length":326,"output_length":67,"hash_ids":[2052042],"delay":1006.9} +{"session_id":"sess-0ceadfdce1e9","input_length":1866,"output_length":117,"hash_ids":[2052043,2052044,2052045,2052046],"delay":3133.2} +{"session_id":"sess-0ceadfdce1e9","input_length":630,"output_length":175,"hash_ids":[2052047,2052048],"delay":958.9} +{"session_id":"sess-0ceadfdce1e9","input_length":93,"output_length":272,"hash_ids":[2052049],"delay":1767.5} +{"session_id":"sess-0ceadfdce1e9","input_length":258,"output_length":100,"hash_ids":[2052050],"delay":356.1} +{"session_id":"sess-0ceadfdce1e9","input_length":202,"output_length":74,"hash_ids":[2052051],"delay":625.6} +{"session_id":"sess-0ceadfdce1e9","input_length":1870,"output_length":174,"hash_ids":[2052052,2052053,2052054,2052055],"delay":1170.2} +{"session_id":"sess-0ceadfdce1e9","input_length":831,"output_length":869,"hash_ids":[2052056,2052057],"delay":1045.3} +{"session_id":"sess-bfebc8b429f5","input_length":28633,"output_length":56,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2056032,2056033,2056034,2056035],"timestamp":0.0,"group_id":4} +{"session_id":"sess-bfebc8b429f5","input_length":708,"output_length":447,"hash_ids":[2056036,2056037],"delay":23531.5} +{"session_id":"sess-bfebc8b429f5","input_length":573,"output_length":30,"hash_ids":[2056038,2056039],"delay":255.8} +{"session_id":"sess-bfebc8b429f5","input_length":634,"output_length":60,"hash_ids":[2056040,2056041],"delay":764.8} +{"session_id":"sess-bfebc8b429f5","input_length":423,"output_length":513,"hash_ids":[2056042],"delay":3666.8} +{"session_id":"sess-bfebc8b429f5","input_length":988,"output_length":291,"hash_ids":[2056043,2056044],"delay":3983.3} +{"session_id":"sess-bfebc8b429f5","input_length":956,"output_length":46,"hash_ids":[2056045,2056046],"delay":2721.2} +{"session_id":"sess-bfebc8b429f5","input_length":1542,"output_length":140,"hash_ids":[2056047,2056048,2056049,2056050],"delay":2920.2} +{"session_id":"sess-2239c71a77f5","input_length":31960,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2060032,2060033,2060034,2060035,2060036,2060037,2060038,2060039,2060040,2060041,2060042],"timestamp":0.0,"group_id":9} +{"session_id":"sess-2239c71a77f5","input_length":595,"output_length":355,"hash_ids":[2060043,2060044],"delay":56061.7} +{"session_id":"sess-2239c71a77f5","input_length":376,"output_length":422,"hash_ids":[2060045],"delay":1008.9} +{"session_id":"sess-2239c71a77f5","input_length":310,"output_length":279,"hash_ids":[2060046],"delay":967.7} +{"session_id":"sess-2239c71a77f5","input_length":2839,"output_length":30,"hash_ids":[2060047,2060048,2060049,2060050,2060051,2060052],"delay":1354.8} +{"session_id":"sess-2239c71a77f5","input_length":980,"output_length":229,"hash_ids":[2060053,2060054],"delay":1943.7} +{"session_id":"sess-2239c71a77f5","input_length":2023,"output_length":624,"hash_ids":[2060055,2060056,2060057,2060058],"delay":1175.5} +{"session_id":"sess-2239c71a77f5","input_length":938,"output_length":405,"hash_ids":[2060059,2060060],"delay":451.4} +{"session_id":"sess-2239c71a77f5","input_length":373,"output_length":605,"hash_ids":[2060061],"delay":3393.3} +{"session_id":"sess-2239c71a77f5","input_length":646,"output_length":60,"hash_ids":[2060062,2060063],"delay":31392.3} +{"session_id":"sess-6459b74f2c25","input_length":32312,"output_length":176,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2064032,2064033,2064034,2064035,2064036,2064037,2064038,2064039,2064040,2064041,2064042,2064043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6459b74f2c25","input_length":1519,"output_length":195,"hash_ids":[2064044,2064045,2064046],"delay":3301.2} +{"session_id":"sess-6459b74f2c25","input_length":1566,"output_length":563,"hash_ids":[2064047,2064048,2064049,2064050],"delay":1752.5} +{"session_id":"sess-6459b74f2c25","input_length":1344,"output_length":112,"hash_ids":[2064051,2064052,2064053],"delay":337.5} +{"session_id":"sess-6459b74f2c25","input_length":527,"output_length":388,"hash_ids":[2064054,2064055],"delay":23473.5} +{"session_id":"sess-6459b74f2c25","input_length":2328,"output_length":431,"hash_ids":[2064056,2064057,2064058,2064059,2064060],"delay":1799.4} +{"session_id":"sess-6459b74f2c25","input_length":918,"output_length":186,"hash_ids":[2064061,2064062],"delay":1787.8} +{"session_id":"sess-6459b74f2c25","input_length":1046,"output_length":91,"hash_ids":[2064063,2064064,2064065],"delay":744.0} +{"session_id":"sess-6459b74f2c25","input_length":540,"output_length":1408,"hash_ids":[2064066,2064067],"delay":793.3} +{"session_id":"sess-6459b74f2c25","input_length":762,"output_length":87,"hash_ids":[2064068,2064069],"delay":287.0} +{"session_id":"sess-6459b74f2c25","input_length":442,"output_length":199,"hash_ids":[2064070],"delay":614.1} +{"session_id":"sess-6459b74f2c25","input_length":378,"output_length":222,"hash_ids":[2064071],"delay":1546.7} +{"session_id":"sess-6459b74f2c25","input_length":863,"output_length":80,"hash_ids":[2064072,2064073],"delay":5624.6} +{"session_id":"sess-6459b74f2c25","input_length":841,"output_length":395,"hash_ids":[2064074,2064075],"delay":1804.4} +{"session_id":"sess-f28ac55b8e70","input_length":28630,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2068032,2068033,2068034,2068035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f28ac55b8e70","input_length":1039,"output_length":276,"hash_ids":[2068036,2068037,2068038],"delay":1186.9} +{"session_id":"sess-f28ac55b8e70","input_length":1220,"output_length":139,"hash_ids":[2068039,2068040,2068041],"delay":1241.5} +{"session_id":"sess-f28ac55b8e70","input_length":2134,"output_length":56,"hash_ids":[2068042,2068043,2068044,2068045,2068046],"delay":34684.6} +{"session_id":"sess-f28ac55b8e70","input_length":331,"output_length":105,"hash_ids":[2068047],"delay":295.8} +{"session_id":"sess-f28ac55b8e70","input_length":1062,"output_length":342,"hash_ids":[2068048,2068049,2068050],"delay":17684.6} +{"session_id":"sess-f28ac55b8e70","input_length":2242,"output_length":217,"hash_ids":[2068051,2068052,2068053,2068054,2068055],"delay":10626.6} +{"session_id":"sess-f28ac55b8e70","input_length":239,"output_length":87,"hash_ids":[2068056],"delay":1198.3} +{"session_id":"sess-f28ac55b8e70","input_length":2655,"output_length":138,"hash_ids":[2068057,2068058,2068059,2068060,2068061,2068062],"delay":8088.0} +{"session_id":"sess-f28ac55b8e70","input_length":476,"output_length":196,"hash_ids":[2068063],"delay":539.2} +{"session_id":"sess-f28ac55b8e70","input_length":2168,"output_length":448,"hash_ids":[2068064,2068065,2068066,2068067,2068068],"delay":4188.8} +{"session_id":"sess-f28ac55b8e70","input_length":238,"output_length":337,"hash_ids":[2068069],"delay":1148.2} +{"session_id":"sess-f28ac55b8e70","input_length":686,"output_length":187,"hash_ids":[2068070,2068071],"delay":917.7} +{"session_id":"sess-f28ac55b8e70","input_length":628,"output_length":310,"hash_ids":[2068072,2068073],"delay":24763.8} +{"session_id":"sess-f28ac55b8e70","input_length":834,"output_length":32,"hash_ids":[2068074,2068075],"delay":14817.7} +{"session_id":"sess-f28ac55b8e70","input_length":867,"output_length":52,"hash_ids":[2068076,2068077],"delay":929.5} +{"session_id":"sess-f28ac55b8e70","input_length":2139,"output_length":160,"hash_ids":[2068078,2068079,2068080,2068081,2068082],"delay":924.7} +{"session_id":"sess-f28ac55b8e70","input_length":1583,"output_length":717,"hash_ids":[2068083,2068084,2068085,2068086],"delay":445.6} +{"session_id":"sess-f28ac55b8e70","input_length":2167,"output_length":304,"hash_ids":[2068087,2068088,2068089,2068090,2068091],"delay":8270.6} +{"session_id":"sess-f28ac55b8e70","input_length":1749,"output_length":175,"hash_ids":[2068092,2068093,2068094,2068095],"delay":13297.8} +{"session_id":"sess-f28ac55b8e70","input_length":2093,"output_length":64,"hash_ids":[2068096,2068097,2068098,2068099,2068100],"delay":373.0} +{"session_id":"sess-f28ac55b8e70","input_length":1830,"output_length":296,"hash_ids":[2068101,2068102,2068103,2068104],"delay":735.2} +{"session_id":"sess-18d8cc33d469","input_length":29168,"output_length":79,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,2072032,2072033,2072034,2072035,2072036],"timestamp":0.0,"group_id":33} +{"session_id":"sess-18d8cc33d469","input_length":2370,"output_length":324,"hash_ids":[2072037,2072038,2072039,2072040,2072041],"delay":2180.8} +{"session_id":"sess-18d8cc33d469","input_length":368,"output_length":907,"hash_ids":[2072042],"delay":2929.3} +{"session_id":"sess-18d8cc33d469","input_length":642,"output_length":186,"hash_ids":[2072043,2072044],"delay":5801.6} +{"session_id":"sess-18d8cc33d469","input_length":184,"output_length":250,"hash_ids":[2072045],"delay":2995.3} +{"session_id":"sess-18d8cc33d469","input_length":361,"output_length":55,"hash_ids":[2072046],"delay":727.9} +{"session_id":"sess-18d8cc33d469","input_length":751,"output_length":105,"hash_ids":[2072047,2072048],"delay":394.9} +{"session_id":"sess-18d8cc33d469","input_length":849,"output_length":231,"hash_ids":[2072049,2072050],"delay":1089.1} +{"session_id":"sess-18d8cc33d469","input_length":2344,"output_length":226,"hash_ids":[2072051,2072052,2072053,2072054,2072055],"delay":1360.4} +{"session_id":"sess-b9bd35861c15","input_length":28110,"output_length":210,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2076032,2076033,2076034],"timestamp":0.0,"group_id":14} +{"session_id":"sess-b9bd35861c15","input_length":332,"output_length":59,"hash_ids":[2076035],"delay":1083.1} +{"session_id":"sess-b9bd35861c15","input_length":1043,"output_length":440,"hash_ids":[2076036,2076037,2076038],"delay":778.3} +{"session_id":"sess-b9bd35861c15","input_length":2487,"output_length":312,"hash_ids":[2076039,2076040,2076041,2076042,2076043],"delay":6712.4} +{"session_id":"sess-b9bd35861c15","input_length":891,"output_length":728,"hash_ids":[2076044,2076045],"delay":355.5} +{"session_id":"sess-b9bd35861c15","input_length":241,"output_length":133,"hash_ids":[2076046],"delay":4475.8} +{"session_id":"sess-b9bd35861c15","input_length":2929,"output_length":198,"hash_ids":[2076047,2076048,2076049,2076050,2076051,2076052],"delay":3511.4} +{"session_id":"sess-b9bd35861c15","input_length":1547,"output_length":544,"hash_ids":[2076053,2076054,2076055,2076056],"delay":9243.2} +{"session_id":"sess-b9bd35861c15","input_length":698,"output_length":724,"hash_ids":[2076057,2076058],"delay":2229.0} +{"session_id":"sess-b9bd35861c15","input_length":800,"output_length":773,"hash_ids":[2076059,2076060],"delay":3217.0} +{"session_id":"sess-b9bd35861c15","input_length":2036,"output_length":908,"hash_ids":[2076061,2076062,2076063,2076064],"delay":723.8} +{"session_id":"sess-b9bd35861c15","input_length":486,"output_length":292,"hash_ids":[2076065],"delay":2215.0} +{"session_id":"sess-b9bd35861c15","input_length":1270,"output_length":114,"hash_ids":[2076066,2076067,2076068],"delay":1256.7} +{"session_id":"sess-b9bd35861c15","input_length":836,"output_length":59,"hash_ids":[2076069,2076070],"delay":23877.9} +{"session_id":"sess-b9bd35861c15","input_length":149,"output_length":1095,"hash_ids":[2076071],"delay":1137.1} +{"session_id":"sess-b9bd35861c15","input_length":501,"output_length":69,"hash_ids":[2076072],"delay":690.2} +{"session_id":"sess-b9bd35861c15","input_length":1534,"output_length":248,"hash_ids":[2076073,2076074,2076075],"delay":1742.2} +{"session_id":"sess-b9bd35861c15","input_length":1583,"output_length":334,"hash_ids":[2076076,2076077,2076078,2076079],"delay":925.6} +{"session_id":"sess-b9bd35861c15","input_length":2095,"output_length":313,"hash_ids":[2076080,2076081,2076082,2076083,2076084],"delay":814.3} +{"session_id":"sess-b9bd35861c15","input_length":464,"output_length":101,"hash_ids":[2076085],"delay":132.2} +{"session_id":"sess-b9bd35861c15","input_length":334,"output_length":269,"hash_ids":[2076086],"delay":7581.8} +{"session_id":"sess-b9bd35861c15","input_length":206,"output_length":84,"hash_ids":[2076087],"delay":993.3} +{"session_id":"sess-c641a8ca5ea9","input_length":28529,"output_length":407,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2080032,2080033,2080034,2080035],"timestamp":0.0,"group_id":9} +{"session_id":"sess-c641a8ca5ea9","input_length":1361,"output_length":98,"hash_ids":[2080036,2080037,2080038],"delay":5332.1} +{"session_id":"sess-c641a8ca5ea9","input_length":1421,"output_length":301,"hash_ids":[2080039,2080040,2080041],"delay":2238.2} +{"session_id":"sess-c641a8ca5ea9","input_length":369,"output_length":38,"hash_ids":[2080042],"delay":3720.2} +{"session_id":"sess-c641a8ca5ea9","input_length":743,"output_length":164,"hash_ids":[2080043,2080044],"delay":3180.9} +{"session_id":"sess-995f58a18e88","input_length":30087,"output_length":187,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2084032,2084033,2084034,2084035,2084036,2084037,2084038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-995f58a18e88","input_length":654,"output_length":103,"hash_ids":[2084039,2084040],"delay":1990.4} +{"session_id":"sess-995f58a18e88","input_length":441,"output_length":89,"hash_ids":[2084041],"delay":659.5} +{"session_id":"sess-995f58a18e88","input_length":473,"output_length":105,"hash_ids":[2084042],"delay":696.4} +{"session_id":"sess-995f58a18e88","input_length":262,"output_length":87,"hash_ids":[2084043],"delay":33686.9} +{"session_id":"sess-995f58a18e88","input_length":1977,"output_length":373,"hash_ids":[2084044,2084045,2084046,2084047],"delay":454.4} +{"session_id":"sess-995f58a18e88","input_length":1932,"output_length":470,"hash_ids":[2084048,2084049,2084050,2084051],"delay":14783.8} +{"session_id":"sess-995f58a18e88","input_length":1806,"output_length":810,"hash_ids":[2084052,2084053,2084054,2084055],"delay":1658.2} +{"session_id":"sess-995f58a18e88","input_length":413,"output_length":224,"hash_ids":[2084056],"delay":50243.0} +{"session_id":"sess-b37f3785b715","input_length":26476,"output_length":247,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251],"timestamp":0.0,"group_id":11} +{"session_id":"sess-b37f3785b715","input_length":518,"output_length":90,"hash_ids":[2084057,2084058],"delay":36428.1} +{"session_id":"sess-b37f3785b715","input_length":1701,"output_length":159,"hash_ids":[2084059,2084060,2084061,2084062],"delay":3578.4} +{"session_id":"sess-b37f3785b715","input_length":390,"output_length":141,"hash_ids":[2084063],"delay":763.8} +{"session_id":"sess-b37f3785b715","input_length":2989,"output_length":83,"hash_ids":[2084064,2084065,2084066,2084067,2084068,2084069],"delay":947.8} +{"session_id":"sess-b37f3785b715","input_length":1631,"output_length":102,"hash_ids":[2084070,2084071,2084072,2084073],"delay":1268.2} +{"session_id":"sess-b37f3785b715","input_length":1164,"output_length":86,"hash_ids":[2084074,2084075,2084076],"delay":283.9} +{"session_id":"sess-b37f3785b715","input_length":939,"output_length":310,"hash_ids":[2084077,2084078],"delay":1296.1} +{"session_id":"sess-b37f3785b715","input_length":1678,"output_length":102,"hash_ids":[2084079,2084080,2084081,2084082],"delay":1565.4} +{"session_id":"sess-b37f3785b715","input_length":1977,"output_length":375,"hash_ids":[2084083,2084084,2084085,2084086],"delay":16892.5} +{"session_id":"sess-b37f3785b715","input_length":1490,"output_length":908,"hash_ids":[2084087,2084088,2084089],"delay":275.6} +{"session_id":"sess-b37f3785b715","input_length":2279,"output_length":146,"hash_ids":[2084090,2084091,2084092,2084093,2084094],"delay":3721.2} +{"session_id":"sess-b37f3785b715","input_length":1417,"output_length":107,"hash_ids":[2084095,2084096,2084097],"delay":17319.0} +{"session_id":"sess-b37f3785b715","input_length":1663,"output_length":250,"hash_ids":[2084098,2084099,2084100,2084101],"delay":19458.0} +{"session_id":"sess-b37f3785b715","input_length":521,"output_length":637,"hash_ids":[2084102,2084103],"delay":1361.4} +{"session_id":"sess-b37f3785b715","input_length":523,"output_length":54,"hash_ids":[2084104,2084105],"delay":4042.2} +{"session_id":"sess-b37f3785b715","input_length":978,"output_length":189,"hash_ids":[2084106,2084107],"delay":174.5} +{"session_id":"sess-b37f3785b715","input_length":166,"output_length":679,"hash_ids":[2084108],"delay":442.8} +{"session_id":"sess-b37f3785b715","input_length":198,"output_length":457,"hash_ids":[2084109],"delay":125.3} +{"session_id":"sess-b37f3785b715","input_length":573,"output_length":283,"hash_ids":[2084110,2084111],"delay":2678.1} +{"session_id":"sess-b37f3785b715","input_length":589,"output_length":493,"hash_ids":[2084112,2084113],"delay":602.2} +{"session_id":"sess-b37f3785b715","input_length":942,"output_length":65,"hash_ids":[2084114,2084115],"delay":981.1} +{"session_id":"sess-b37f3785b715","input_length":941,"output_length":115,"hash_ids":[2084116,2084117],"delay":223.6} +{"session_id":"sess-b37f3785b715","input_length":582,"output_length":267,"hash_ids":[2084118,2084119],"delay":3147.6} +{"session_id":"sess-b37f3785b715","input_length":863,"output_length":666,"hash_ids":[2084120,2084121],"delay":475.6} +{"session_id":"sess-b37f3785b715","input_length":727,"output_length":543,"hash_ids":[2084122,2084123],"delay":161.1} +{"session_id":"sess-b37f3785b715","input_length":836,"output_length":120,"hash_ids":[2084124,2084125],"delay":7073.3} +{"session_id":"sess-b37f3785b715","input_length":2229,"output_length":232,"hash_ids":[2084126,2084127,2084128,2084129,2084130],"delay":207.9} +{"session_id":"sess-0b3272750e85","input_length":31211,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,2092032,2092033,2092034,2092035,2092036,2092037,2092038,2092039,2092040],"timestamp":0.0,"group_id":46} +{"session_id":"sess-0b3272750e85","input_length":1502,"output_length":167,"hash_ids":[2092041,2092042,2092043],"delay":6197.9} +{"session_id":"sess-0b3272750e85","input_length":827,"output_length":104,"hash_ids":[2092044,2092045],"delay":677.6} +{"session_id":"sess-0b3272750e85","input_length":1261,"output_length":118,"hash_ids":[2092046,2092047,2092048],"delay":526.9} +{"session_id":"sess-0b3272750e85","input_length":81,"output_length":346,"hash_ids":[2092049],"delay":2690.2} +{"session_id":"sess-0b3272750e85","input_length":683,"output_length":147,"hash_ids":[2092050,2092051],"delay":470.9} +{"session_id":"sess-0b3272750e85","input_length":362,"output_length":424,"hash_ids":[2092052],"delay":3201.7} +{"session_id":"sess-0b3272750e85","input_length":304,"output_length":543,"hash_ids":[2092053],"delay":818.6} +{"session_id":"sess-0b3272750e85","input_length":2507,"output_length":217,"hash_ids":[2092054,2092055,2092056,2092057,2092058],"delay":356.9} +{"session_id":"sess-0b3272750e85","input_length":477,"output_length":76,"hash_ids":[2092059],"delay":1711.5} +{"session_id":"sess-0b3272750e85","input_length":182,"output_length":95,"hash_ids":[2092060],"delay":666.0} +{"session_id":"sess-0b3272750e85","input_length":306,"output_length":443,"hash_ids":[2092061],"delay":13822.4} +{"session_id":"sess-0b3272750e85","input_length":905,"output_length":319,"hash_ids":[2092062,2092063],"delay":369.6} +{"session_id":"sess-0b3272750e85","input_length":423,"output_length":78,"hash_ids":[2092064],"delay":895.3} +{"session_id":"sess-0b3272750e85","input_length":1327,"output_length":114,"hash_ids":[2092065,2092066,2092067],"delay":3404.8} +{"session_id":"sess-0b3272750e85","input_length":1114,"output_length":183,"hash_ids":[2092068,2092069,2092070],"delay":1049.8} +{"session_id":"sess-0b3272750e85","input_length":319,"output_length":157,"hash_ids":[2092071],"delay":8422.3} +{"session_id":"sess-0b3272750e85","input_length":1636,"output_length":70,"hash_ids":[2092072,2092073,2092074,2092075],"delay":439.6} +{"session_id":"sess-0b3272750e85","input_length":334,"output_length":187,"hash_ids":[2092076],"delay":15007.7} +{"session_id":"sess-0b3272750e85","input_length":122,"output_length":231,"hash_ids":[2092077],"delay":662.6} +{"session_id":"sess-0b3272750e85","input_length":1050,"output_length":244,"hash_ids":[2092078,2092079,2092080],"delay":1316.8} +{"session_id":"sess-0b3272750e85","input_length":185,"output_length":136,"hash_ids":[2092081],"delay":1428.2} +{"session_id":"sess-635d8023d85e","input_length":30508,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2096032,2096033,2096034,2096035,2096036,2096037,2096038,2096039],"timestamp":0.0,"group_id":9} +{"session_id":"sess-635d8023d85e","input_length":162,"output_length":149,"hash_ids":[2096040],"delay":9366.6} +{"session_id":"sess-635d8023d85e","input_length":2026,"output_length":76,"hash_ids":[2096041,2096042,2096043,2096044],"delay":11026.1} +{"session_id":"sess-635d8023d85e","input_length":2376,"output_length":338,"hash_ids":[2096045,2096046,2096047,2096048,2096049],"delay":1962.4} +{"session_id":"sess-635d8023d85e","input_length":246,"output_length":74,"hash_ids":[2096050],"delay":2320.6} +{"session_id":"sess-a0b6fb9fd6aa","input_length":27590,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,2100032,2100033],"timestamp":0.0,"group_id":16} +{"session_id":"sess-a0b6fb9fd6aa","input_length":205,"output_length":251,"hash_ids":[2100034],"delay":456.1} +{"session_id":"sess-a0b6fb9fd6aa","input_length":316,"output_length":237,"hash_ids":[2100035],"delay":41232.7} +{"session_id":"sess-a0b6fb9fd6aa","input_length":2150,"output_length":276,"hash_ids":[2100036,2100037,2100038,2100039,2100040],"delay":3599.5} +{"session_id":"sess-a0b6fb9fd6aa","input_length":1309,"output_length":220,"hash_ids":[2100041,2100042,2100043],"delay":6057.8} +{"session_id":"sess-a0b6fb9fd6aa","input_length":367,"output_length":115,"hash_ids":[2100044],"delay":943.6} +{"session_id":"sess-a0b6fb9fd6aa","input_length":2488,"output_length":74,"hash_ids":[2100045,2100046,2100047,2100048,2100049],"delay":1271.6} +{"session_id":"sess-a0b6fb9fd6aa","input_length":193,"output_length":30,"hash_ids":[2100050],"delay":41079.7} +{"session_id":"sess-a0b6fb9fd6aa","input_length":1270,"output_length":338,"hash_ids":[2100051,2100052,2100053],"delay":505.7} +{"session_id":"sess-a0b6fb9fd6aa","input_length":995,"output_length":170,"hash_ids":[2100054,2100055],"delay":33697.2} +{"session_id":"sess-a0b6fb9fd6aa","input_length":410,"output_length":244,"hash_ids":[2100056],"delay":20381.3} +{"session_id":"sess-a0b6fb9fd6aa","input_length":962,"output_length":368,"hash_ids":[2100057,2100058],"delay":1177.5} +{"session_id":"sess-a0b6fb9fd6aa","input_length":1392,"output_length":470,"hash_ids":[2100059,2100060,2100061],"delay":6298.5} +{"session_id":"sess-a0b6fb9fd6aa","input_length":1330,"output_length":104,"hash_ids":[2100062,2100063,2100064],"delay":581.9} +{"session_id":"sess-a0b6fb9fd6aa","input_length":530,"output_length":99,"hash_ids":[2100065,2100066],"delay":6255.9} +{"session_id":"sess-a0b6fb9fd6aa","input_length":338,"output_length":63,"hash_ids":[2100067],"delay":4058.8} +{"session_id":"sess-a0b6fb9fd6aa","input_length":342,"output_length":472,"hash_ids":[2100068],"delay":999.2} +{"session_id":"sess-a0b6fb9fd6aa","input_length":919,"output_length":62,"hash_ids":[2100069,2100070],"delay":398.3} +{"session_id":"sess-a0b6fb9fd6aa","input_length":642,"output_length":216,"hash_ids":[2100071,2100072],"delay":522.9} +{"session_id":"sess-00bcdbe9905c","input_length":26834,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2104032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-00bcdbe9905c","input_length":1443,"output_length":300,"hash_ids":[2104033,2104034,2104035],"delay":6734.3} +{"session_id":"sess-00bcdbe9905c","input_length":1174,"output_length":160,"hash_ids":[2104036,2104037,2104038],"delay":19023.3} +{"session_id":"sess-00bcdbe9905c","input_length":209,"output_length":618,"hash_ids":[2104039],"delay":1081.4} +{"session_id":"sess-00bcdbe9905c","input_length":586,"output_length":311,"hash_ids":[2104040,2104041],"delay":285.6} +{"session_id":"sess-00bcdbe9905c","input_length":92,"output_length":158,"hash_ids":[2104042],"delay":2355.7} +{"session_id":"sess-00bcdbe9905c","input_length":883,"output_length":252,"hash_ids":[2104043,2104044],"delay":1803.5} +{"session_id":"sess-00bcdbe9905c","input_length":1655,"output_length":72,"hash_ids":[2104045,2104046,2104047,2104048],"delay":733.8} +{"session_id":"sess-00bcdbe9905c","input_length":69,"output_length":112,"hash_ids":[2104049],"delay":61279.4} +{"session_id":"sess-00bcdbe9905c","input_length":941,"output_length":145,"hash_ids":[2104050,2104051],"delay":4803.5} +{"session_id":"sess-00bcdbe9905c","input_length":285,"output_length":279,"hash_ids":[2104052],"delay":5615.2} +{"session_id":"sess-00bcdbe9905c","input_length":1392,"output_length":91,"hash_ids":[2104053,2104054,2104055],"delay":1238.7} +{"session_id":"sess-00bcdbe9905c","input_length":1033,"output_length":259,"hash_ids":[2104056,2104057,2104058],"delay":468.2} +{"session_id":"sess-00bcdbe9905c","input_length":590,"output_length":172,"hash_ids":[2104059,2104060],"delay":7077.9} +{"session_id":"sess-00bcdbe9905c","input_length":1991,"output_length":594,"hash_ids":[2104061,2104062,2104063,2104064],"delay":2035.6} +{"session_id":"sess-00bcdbe9905c","input_length":652,"output_length":558,"hash_ids":[2104065,2104066],"delay":834.9} +{"session_id":"sess-00bcdbe9905c","input_length":237,"output_length":314,"hash_ids":[2104067],"delay":788.0} +{"session_id":"sess-00bcdbe9905c","input_length":871,"output_length":30,"hash_ids":[2104068,2104069],"delay":200.0} +{"session_id":"sess-00bcdbe9905c","input_length":896,"output_length":56,"hash_ids":[2104070,2104071],"delay":8989.3} +{"session_id":"sess-00bcdbe9905c","input_length":1249,"output_length":1281,"hash_ids":[2104072,2104073,2104074],"delay":38695.8} +{"session_id":"sess-00bcdbe9905c","input_length":1281,"output_length":1303,"hash_ids":[2104075,2104076,2104077],"delay":1218.7} +{"session_id":"sess-00bcdbe9905c","input_length":680,"output_length":200,"hash_ids":[2104078,2104079],"delay":425.8} +{"session_id":"sess-0b52801ff2a9","input_length":36375,"output_length":61,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2108032,2108033,2108034,2108035,2108036,2108037,2108038,2108039,2108040,2108041,2108042,2108043,2108044,2108045,2108046,2108047,2108048,2108049,2108050,2108051],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0b52801ff2a9","input_length":1466,"output_length":280,"hash_ids":[2108052,2108053,2108054],"delay":2998.0} +{"session_id":"sess-0b52801ff2a9","input_length":1921,"output_length":111,"hash_ids":[2108055,2108056,2108057,2108058],"delay":35330.2} +{"session_id":"sess-0b52801ff2a9","input_length":475,"output_length":205,"hash_ids":[2108059],"delay":419.7} +{"session_id":"sess-0b52801ff2a9","input_length":1515,"output_length":185,"hash_ids":[2108060,2108061,2108062],"delay":980.1} +{"session_id":"sess-0b52801ff2a9","input_length":140,"output_length":863,"hash_ids":[2108063],"delay":4020.3} +{"session_id":"sess-0b52801ff2a9","input_length":1836,"output_length":1076,"hash_ids":[2108064,2108065,2108066,2108067],"delay":690.1} +{"session_id":"sess-dd8e0e1f421e","input_length":31063,"output_length":293,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,2112032,2112033,2112034,2112035,2112036,2112037,2112038,2112039,2112040],"timestamp":0.0,"group_id":5} +{"session_id":"sess-dd8e0e1f421e","input_length":460,"output_length":186,"hash_ids":[2112041],"delay":3600.4} +{"session_id":"sess-dd8e0e1f421e","input_length":198,"output_length":103,"hash_ids":[2112042],"delay":386.1} +{"session_id":"sess-dd8e0e1f421e","input_length":1904,"output_length":359,"hash_ids":[2112043,2112044,2112045,2112046],"delay":1026.1} +{"session_id":"sess-dd8e0e1f421e","input_length":1030,"output_length":56,"hash_ids":[2112047,2112048,2112049],"delay":893.1} +{"session_id":"sess-dd8e0e1f421e","input_length":1600,"output_length":106,"hash_ids":[2112050,2112051,2112052,2112053],"delay":13273.8} +{"session_id":"sess-dd8e0e1f421e","input_length":466,"output_length":296,"hash_ids":[2112054],"delay":443.2} +{"session_id":"sess-dd8e0e1f421e","input_length":792,"output_length":110,"hash_ids":[2112055,2112056],"delay":331.4} +{"session_id":"sess-dd8e0e1f421e","input_length":262,"output_length":1359,"hash_ids":[2112057],"delay":11163.3} +{"session_id":"sess-b4e4b57f510f","input_length":27386,"output_length":192,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2116032,2116033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b4e4b57f510f","input_length":353,"output_length":57,"hash_ids":[2116034],"delay":944.1} +{"session_id":"sess-b4e4b57f510f","input_length":2210,"output_length":147,"hash_ids":[2116035,2116036,2116037,2116038,2116039],"delay":512.7} +{"session_id":"sess-b4e4b57f510f","input_length":843,"output_length":830,"hash_ids":[2116040,2116041],"delay":2620.2} +{"session_id":"sess-b4e4b57f510f","input_length":271,"output_length":189,"hash_ids":[2116042],"delay":1184.3} +{"session_id":"sess-b4e4b57f510f","input_length":483,"output_length":287,"hash_ids":[2116043],"delay":52068.7} +{"session_id":"sess-b4e4b57f510f","input_length":1463,"output_length":136,"hash_ids":[2116044,2116045,2116046],"delay":529.9} +{"session_id":"sess-b4e4b57f510f","input_length":2074,"output_length":597,"hash_ids":[2116047,2116048,2116049,2116050,2116051],"delay":10200.2} +{"session_id":"sess-b4e4b57f510f","input_length":2878,"output_length":35,"hash_ids":[2116052,2116053,2116054,2116055,2116056,2116057],"delay":10176.3} +{"session_id":"sess-b4e4b57f510f","input_length":572,"output_length":59,"hash_ids":[2116058,2116059],"delay":8554.3} +{"session_id":"sess-b4e4b57f510f","input_length":2137,"output_length":106,"hash_ids":[2116060,2116061,2116062,2116063,2116064],"delay":466.8} +{"session_id":"sess-b4e4b57f510f","input_length":1536,"output_length":458,"hash_ids":[2116065,2116066,2116067],"delay":1002.4} +{"session_id":"sess-b4e4b57f510f","input_length":320,"output_length":88,"hash_ids":[2116068],"delay":191.9} +{"session_id":"sess-b4e4b57f510f","input_length":201,"output_length":78,"hash_ids":[2116069],"delay":639.5} +{"session_id":"sess-b4e4b57f510f","input_length":957,"output_length":195,"hash_ids":[2116070,2116071],"delay":1337.6} +{"session_id":"sess-b4e4b57f510f","input_length":257,"output_length":128,"hash_ids":[2116072],"delay":24995.3} +{"session_id":"sess-b4e4b57f510f","input_length":577,"output_length":234,"hash_ids":[2116073,2116074],"delay":2039.1} +{"session_id":"sess-b4e4b57f510f","input_length":949,"output_length":945,"hash_ids":[2116075,2116076],"delay":420.7} +{"session_id":"sess-b4e4b57f510f","input_length":739,"output_length":337,"hash_ids":[2116077,2116078],"delay":940.2} +{"session_id":"sess-b4e4b57f510f","input_length":1545,"output_length":126,"hash_ids":[2116079,2116080,2116081,2116082],"delay":1974.7} +{"session_id":"sess-b4e4b57f510f","input_length":832,"output_length":80,"hash_ids":[2116083,2116084],"delay":8126.0} +{"session_id":"sess-b4e4b57f510f","input_length":1159,"output_length":187,"hash_ids":[2116085,2116086,2116087],"delay":11293.8} +{"session_id":"sess-b4e4b57f510f","input_length":1520,"output_length":328,"hash_ids":[2116088,2116089,2116090],"delay":9699.0} +{"session_id":"sess-b4e4b57f510f","input_length":1261,"output_length":463,"hash_ids":[2116091,2116092,2116093],"delay":643.9} +{"session_id":"sess-a2a7001f3bc0","input_length":27130,"output_length":394,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2120032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a2a7001f3bc0","input_length":435,"output_length":574,"hash_ids":[2120033],"delay":761.2} +{"session_id":"sess-a2a7001f3bc0","input_length":1584,"output_length":232,"hash_ids":[2120034,2120035,2120036,2120037],"delay":1448.5} +{"session_id":"sess-a2a7001f3bc0","input_length":250,"output_length":301,"hash_ids":[2120038],"delay":493.2} +{"session_id":"sess-a2a7001f3bc0","input_length":729,"output_length":532,"hash_ids":[2120039,2120040],"delay":47263.0} +{"session_id":"sess-a2a7001f3bc0","input_length":617,"output_length":215,"hash_ids":[2120041,2120042],"delay":874.7} +{"session_id":"sess-a2a7001f3bc0","input_length":1886,"output_length":563,"hash_ids":[2120043,2120044,2120045,2120046],"delay":532.8} +{"session_id":"sess-a2a7001f3bc0","input_length":585,"output_length":561,"hash_ids":[2120047,2120048],"delay":452.6} +{"session_id":"sess-a2a7001f3bc0","input_length":461,"output_length":799,"hash_ids":[2120049],"delay":563.7} +{"session_id":"sess-a2a7001f3bc0","input_length":1192,"output_length":219,"hash_ids":[2120050,2120051,2120052],"delay":4169.7} +{"session_id":"sess-a2a7001f3bc0","input_length":2133,"output_length":434,"hash_ids":[2120053,2120054,2120055,2120056,2120057],"delay":4115.7} +{"session_id":"sess-a2a7001f3bc0","input_length":368,"output_length":178,"hash_ids":[2120058],"delay":2146.3} +{"session_id":"sess-a2a7001f3bc0","input_length":674,"output_length":233,"hash_ids":[2120059,2120060],"delay":2796.8} +{"session_id":"sess-a2a7001f3bc0","input_length":972,"output_length":328,"hash_ids":[2120061,2120062],"delay":13895.7} +{"session_id":"sess-a2a7001f3bc0","input_length":144,"output_length":58,"hash_ids":[2120063],"delay":386.0} +{"session_id":"sess-a2a7001f3bc0","input_length":385,"output_length":379,"hash_ids":[2120064],"delay":2223.8} +{"session_id":"sess-a2a7001f3bc0","input_length":2891,"output_length":791,"hash_ids":[2120065,2120066,2120067,2120068,2120069,2120070],"delay":904.4} +{"session_id":"sess-a2a7001f3bc0","input_length":1280,"output_length":30,"hash_ids":[2120071,2120072,2120073],"delay":884.4} +{"session_id":"sess-a2a7001f3bc0","input_length":596,"output_length":37,"hash_ids":[2120074,2120075],"delay":720.9} +{"session_id":"sess-a2a7001f3bc0","input_length":316,"output_length":200,"hash_ids":[2120076],"delay":2534.7} +{"session_id":"sess-a2a7001f3bc0","input_length":520,"output_length":350,"hash_ids":[2120077,2120078],"delay":887.8} +{"session_id":"sess-a2a7001f3bc0","input_length":963,"output_length":83,"hash_ids":[2120079,2120080],"delay":548.4} +{"session_id":"sess-a2a7001f3bc0","input_length":1764,"output_length":163,"hash_ids":[2120081,2120082,2120083,2120084],"delay":1873.3} +{"session_id":"sess-a2a7001f3bc0","input_length":1430,"output_length":446,"hash_ids":[2120085,2120086,2120087],"delay":35386.0} +{"session_id":"sess-a2a7001f3bc0","input_length":1900,"output_length":30,"hash_ids":[2120088,2120089,2120090,2120091],"delay":784.5} +{"session_id":"sess-a2a7001f3bc0","input_length":2847,"output_length":43,"hash_ids":[2120092,2120093,2120094,2120095,2120096,2120097],"delay":1480.4} +{"session_id":"sess-a2a7001f3bc0","input_length":1902,"output_length":400,"hash_ids":[2120098,2120099,2120100,2120101],"delay":5604.6} +{"session_id":"sess-3439df34062f","input_length":27114,"output_length":267,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,2124032],"timestamp":0.0,"group_id":22} +{"session_id":"sess-3439df34062f","input_length":451,"output_length":338,"hash_ids":[2124033],"delay":11561.1} +{"session_id":"sess-3439df34062f","input_length":313,"output_length":106,"hash_ids":[2124034],"delay":448.0} +{"session_id":"sess-3439df34062f","input_length":421,"output_length":404,"hash_ids":[2124035],"delay":1696.4} +{"session_id":"sess-3439df34062f","input_length":282,"output_length":697,"hash_ids":[2124036],"delay":5233.0} +{"session_id":"sess-3439df34062f","input_length":641,"output_length":103,"hash_ids":[2124037,2124038],"delay":2187.1} +{"session_id":"sess-3439df34062f","input_length":266,"output_length":38,"hash_ids":[2124039],"delay":2140.7} +{"session_id":"sess-3439df34062f","input_length":1571,"output_length":75,"hash_ids":[2124040,2124041,2124042,2124043],"delay":72822.6} +{"session_id":"sess-3439df34062f","input_length":1063,"output_length":327,"hash_ids":[2124044,2124045,2124046],"delay":27008.8} +{"session_id":"sess-3439df34062f","input_length":388,"output_length":285,"hash_ids":[2124047],"delay":1529.7} +{"session_id":"sess-3439df34062f","input_length":1025,"output_length":564,"hash_ids":[2124048,2124049,2124050],"delay":25605.6} +{"session_id":"sess-3439df34062f","input_length":725,"output_length":161,"hash_ids":[2124051,2124052],"delay":702.2} +{"session_id":"sess-3439df34062f","input_length":647,"output_length":100,"hash_ids":[2124053,2124054],"delay":1232.4} +{"session_id":"sess-3439df34062f","input_length":721,"output_length":185,"hash_ids":[2124055,2124056],"delay":1990.3} +{"session_id":"sess-3439df34062f","input_length":572,"output_length":62,"hash_ids":[2124057,2124058],"delay":1649.0} +{"session_id":"sess-3439df34062f","input_length":1544,"output_length":204,"hash_ids":[2124059,2124060,2124061,2124062],"delay":10038.0} +{"session_id":"sess-3439df34062f","input_length":2265,"output_length":96,"hash_ids":[2124063,2124064,2124065,2124066,2124067],"delay":980.3} +{"session_id":"sess-db3e77665516","input_length":26881,"output_length":74,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,2128032],"timestamp":0.0,"group_id":8} +{"session_id":"sess-2a7e7591247c","input_length":27320,"output_length":52,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2132032,2132033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2a7e7591247c","input_length":457,"output_length":1143,"hash_ids":[2132034],"delay":78650.3} +{"session_id":"sess-2a7e7591247c","input_length":861,"output_length":120,"hash_ids":[2132035,2132036],"delay":189.6} +{"session_id":"sess-2a7e7591247c","input_length":275,"output_length":88,"hash_ids":[2132037],"delay":2763.3} +{"session_id":"sess-2a7e7591247c","input_length":596,"output_length":263,"hash_ids":[2132038,2132039],"delay":2718.5} +{"session_id":"sess-2a7e7591247c","input_length":2179,"output_length":154,"hash_ids":[2132040,2132041,2132042,2132043,2132044],"delay":998.0} +{"session_id":"sess-2a7e7591247c","input_length":388,"output_length":444,"hash_ids":[2132045],"delay":16021.2} +{"session_id":"sess-2a7e7591247c","input_length":864,"output_length":79,"hash_ids":[2132046,2132047],"delay":18577.4} +{"session_id":"sess-2a7e7591247c","input_length":632,"output_length":141,"hash_ids":[2132048,2132049],"delay":904.3} +{"session_id":"sess-2a7e7591247c","input_length":111,"output_length":130,"hash_ids":[2132050],"delay":1077.4} +{"session_id":"sess-53a86dde43c8","input_length":31582,"output_length":353,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2136032,2136033,2136034,2136035,2136036,2136037,2136038,2136039,2136040,2136041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-53a86dde43c8","input_length":1153,"output_length":68,"hash_ids":[2136042,2136043,2136044],"delay":8273.5} +{"session_id":"sess-53a86dde43c8","input_length":1230,"output_length":212,"hash_ids":[2136045,2136046,2136047],"delay":22770.5} +{"session_id":"sess-53a86dde43c8","input_length":1093,"output_length":461,"hash_ids":[2136048,2136049,2136050],"delay":12525.4} +{"session_id":"sess-e51cf7d782d0","input_length":28396,"output_length":95,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2140032,2140033,2140034,2140035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e51cf7d782d0","input_length":921,"output_length":159,"hash_ids":[2140036,2140037],"delay":22437.6} +{"session_id":"sess-e51cf7d782d0","input_length":2496,"output_length":671,"hash_ids":[2140038,2140039,2140040,2140041,2140042],"delay":4118.3} +{"session_id":"sess-e51cf7d782d0","input_length":956,"output_length":72,"hash_ids":[2140043,2140044],"delay":26373.4} +{"session_id":"sess-e51cf7d782d0","input_length":1243,"output_length":158,"hash_ids":[2140045,2140046,2140047],"delay":371.3} +{"session_id":"sess-e51cf7d782d0","input_length":410,"output_length":564,"hash_ids":[2140048],"delay":16585.7} +{"session_id":"sess-e51cf7d782d0","input_length":1038,"output_length":80,"hash_ids":[2140049,2140050,2140051],"delay":1578.2} +{"session_id":"sess-e51cf7d782d0","input_length":164,"output_length":201,"hash_ids":[2140052],"delay":1985.6} +{"session_id":"sess-e51cf7d782d0","input_length":640,"output_length":1404,"hash_ids":[2140053,2140054],"delay":1101.8} +{"session_id":"sess-e51cf7d782d0","input_length":1292,"output_length":215,"hash_ids":[2140055,2140056,2140057],"delay":476.3} +{"session_id":"sess-e51cf7d782d0","input_length":622,"output_length":281,"hash_ids":[2140058,2140059],"delay":4750.6} +{"session_id":"sess-e51cf7d782d0","input_length":909,"output_length":161,"hash_ids":[2140060,2140061],"delay":11909.6} +{"session_id":"sess-e51cf7d782d0","input_length":786,"output_length":348,"hash_ids":[2140062,2140063],"delay":1027.8} +{"session_id":"sess-e51cf7d782d0","input_length":286,"output_length":396,"hash_ids":[2140064],"delay":9774.7} +{"session_id":"sess-e51cf7d782d0","input_length":2662,"output_length":341,"hash_ids":[2140065,2140066,2140067,2140068,2140069,2140070],"delay":1079.9} +{"session_id":"sess-e51cf7d782d0","input_length":600,"output_length":638,"hash_ids":[2140071,2140072],"delay":374.1} +{"session_id":"sess-e51cf7d782d0","input_length":985,"output_length":59,"hash_ids":[2140073,2140074],"delay":555.0} +{"session_id":"sess-e51cf7d782d0","input_length":511,"output_length":109,"hash_ids":[2140075],"delay":5373.5} +{"session_id":"sess-e51cf7d782d0","input_length":583,"output_length":130,"hash_ids":[2140076,2140077],"delay":477.7} +{"session_id":"sess-e51cf7d782d0","input_length":239,"output_length":253,"hash_ids":[2140078],"delay":7209.9} +{"session_id":"sess-e51cf7d782d0","input_length":653,"output_length":349,"hash_ids":[2140079,2140080],"delay":590.1} +{"session_id":"sess-e51cf7d782d0","input_length":692,"output_length":263,"hash_ids":[2140081,2140082],"delay":362.6} +{"session_id":"sess-e51cf7d782d0","input_length":817,"output_length":103,"hash_ids":[2140083,2140084],"delay":252.1} +{"session_id":"sess-e51cf7d782d0","input_length":2957,"output_length":374,"hash_ids":[2140085,2140086,2140087,2140088,2140089,2140090],"delay":399.9} +{"session_id":"sess-e51cf7d782d0","input_length":1245,"output_length":215,"hash_ids":[2140091,2140092,2140093],"delay":419.0} +{"session_id":"sess-e51cf7d782d0","input_length":1126,"output_length":426,"hash_ids":[2140094,2140095,2140096],"delay":7960.5} +{"session_id":"sess-e51cf7d782d0","input_length":607,"output_length":231,"hash_ids":[2140097,2140098],"delay":697.7} +{"session_id":"sess-6484b4e1b022","input_length":28791,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2144032,2144033,2144034,2144035,2144036],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6484b4e1b022","input_length":1623,"output_length":372,"hash_ids":[2144037,2144038,2144039,2144040],"delay":76398.7} +{"session_id":"sess-6484b4e1b022","input_length":660,"output_length":125,"hash_ids":[2144041,2144042],"delay":815.6} +{"session_id":"sess-6484b4e1b022","input_length":1847,"output_length":1049,"hash_ids":[2144043,2144044,2144045,2144046],"delay":523.6} +{"session_id":"sess-6484b4e1b022","input_length":370,"output_length":171,"hash_ids":[2144047],"delay":1204.7} +{"session_id":"sess-6484b4e1b022","input_length":1382,"output_length":241,"hash_ids":[2144048,2144049,2144050],"delay":2529.3} +{"session_id":"sess-6484b4e1b022","input_length":82,"output_length":416,"hash_ids":[2144051],"delay":3090.7} +{"session_id":"sess-6484b4e1b022","input_length":1838,"output_length":381,"hash_ids":[2144052,2144053,2144054,2144055],"delay":985.1} +{"session_id":"sess-2ab6a862ff8d","input_length":28340,"output_length":531,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,2148032,2148033,2148034,2148035],"timestamp":0.0,"group_id":36} +{"session_id":"sess-2ab6a862ff8d","input_length":2655,"output_length":423,"hash_ids":[2148036,2148037,2148038,2148039,2148040,2148041],"delay":1141.0} +{"session_id":"sess-2ab6a862ff8d","input_length":625,"output_length":30,"hash_ids":[2148042,2148043],"delay":510.5} +{"session_id":"sess-2ab6a862ff8d","input_length":2992,"output_length":679,"hash_ids":[2148044,2148045,2148046,2148047,2148048,2148049],"delay":437.7} +{"session_id":"sess-2ab6a862ff8d","input_length":258,"output_length":94,"hash_ids":[2148050],"delay":903.6} +{"session_id":"sess-2ab6a862ff8d","input_length":146,"output_length":296,"hash_ids":[2148051],"delay":5410.6} +{"session_id":"sess-2ab6a862ff8d","input_length":1373,"output_length":197,"hash_ids":[2148052,2148053,2148054],"delay":16435.3} +{"session_id":"sess-2ab6a862ff8d","input_length":446,"output_length":474,"hash_ids":[2148055],"delay":1227.0} +{"session_id":"sess-2ab6a862ff8d","input_length":2515,"output_length":30,"hash_ids":[2148056,2148057,2148058,2148059,2148060],"delay":1168.2} +{"session_id":"sess-2ab6a862ff8d","input_length":361,"output_length":124,"hash_ids":[2148061],"delay":7592.5} +{"session_id":"sess-2ab6a862ff8d","input_length":1691,"output_length":200,"hash_ids":[2148062,2148063,2148064,2148065],"delay":502.5} +{"session_id":"sess-2ab6a862ff8d","input_length":166,"output_length":378,"hash_ids":[2148066],"delay":46258.3} +{"session_id":"sess-2ab6a862ff8d","input_length":686,"output_length":285,"hash_ids":[2148067,2148068],"delay":464.0} +{"session_id":"sess-2ab6a862ff8d","input_length":1508,"output_length":436,"hash_ids":[2148069,2148070,2148071],"delay":33745.3} +{"session_id":"sess-2ab6a862ff8d","input_length":452,"output_length":379,"hash_ids":[2148072],"delay":1935.3} +{"session_id":"sess-2ab6a862ff8d","input_length":447,"output_length":77,"hash_ids":[2148073],"delay":1653.6} +{"session_id":"sess-2ab6a862ff8d","input_length":947,"output_length":104,"hash_ids":[2148074,2148075],"delay":359.0} +{"session_id":"sess-2ab6a862ff8d","input_length":642,"output_length":122,"hash_ids":[2148076,2148077],"delay":9834.5} +{"session_id":"sess-2ab6a862ff8d","input_length":728,"output_length":147,"hash_ids":[2148078,2148079],"delay":2843.9} +{"session_id":"sess-2ab6a862ff8d","input_length":1426,"output_length":347,"hash_ids":[2148080,2148081,2148082],"delay":430.6} +{"session_id":"sess-2ab6a862ff8d","input_length":357,"output_length":665,"hash_ids":[2148083],"delay":1902.6} +{"session_id":"sess-2ab6a862ff8d","input_length":257,"output_length":78,"hash_ids":[2148084],"delay":311.1} +{"session_id":"sess-2ab6a862ff8d","input_length":384,"output_length":278,"hash_ids":[2148085],"delay":3363.3} +{"session_id":"sess-2ab6a862ff8d","input_length":2412,"output_length":321,"hash_ids":[2148086,2148087,2148088,2148089,2148090],"delay":368.8} +{"session_id":"sess-2ab6a862ff8d","input_length":1307,"output_length":246,"hash_ids":[2148091,2148092,2148093],"delay":866.6} +{"session_id":"sess-2ab6a862ff8d","input_length":583,"output_length":129,"hash_ids":[2148094,2148095],"delay":3883.9} +{"session_id":"sess-2ab6a862ff8d","input_length":1417,"output_length":128,"hash_ids":[2148096,2148097,2148098],"delay":892.4} +{"session_id":"sess-2ab6a862ff8d","input_length":420,"output_length":216,"hash_ids":[2148099],"delay":3060.4} +{"session_id":"sess-2ab6a862ff8d","input_length":563,"output_length":58,"hash_ids":[2148100,2148101],"delay":441.7} +{"session_id":"sess-2ab6a862ff8d","input_length":443,"output_length":215,"hash_ids":[2148102],"delay":243.5} +{"session_id":"sess-2ab6a862ff8d","input_length":1019,"output_length":825,"hash_ids":[2148103,2148104],"delay":217.7} +{"session_id":"sess-778e8ffc6316","input_length":33182,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2152032,2152033,2152034,2152035,2152036,2152037,2152038,2152039,2152040,2152041,2152042,2152043,2152044],"timestamp":0.0,"group_id":4} +{"session_id":"sess-778e8ffc6316","input_length":1186,"output_length":177,"hash_ids":[2152045,2152046,2152047],"delay":5589.9} +{"session_id":"sess-778e8ffc6316","input_length":511,"output_length":87,"hash_ids":[2152048],"delay":17150.2} +{"session_id":"sess-778e8ffc6316","input_length":1043,"output_length":468,"hash_ids":[2152049,2152050,2152051],"delay":415.8} +{"session_id":"sess-778e8ffc6316","input_length":194,"output_length":119,"hash_ids":[2152052],"delay":934.3} +{"session_id":"sess-778e8ffc6316","input_length":1637,"output_length":77,"hash_ids":[2152053,2152054,2152055,2152056],"delay":1273.3} +{"session_id":"sess-778e8ffc6316","input_length":394,"output_length":1169,"hash_ids":[2152057],"delay":1344.3} +{"session_id":"sess-778e8ffc6316","input_length":178,"output_length":338,"hash_ids":[2152058],"delay":28153.6} +{"session_id":"sess-778e8ffc6316","input_length":2043,"output_length":107,"hash_ids":[2152059,2152060,2152061,2152062],"delay":2808.3} +{"session_id":"sess-778e8ffc6316","input_length":1102,"output_length":324,"hash_ids":[2152063,2152064,2152065],"delay":1972.9} +{"session_id":"sess-778e8ffc6316","input_length":345,"output_length":306,"hash_ids":[2152066],"delay":1530.8} +{"session_id":"sess-778e8ffc6316","input_length":896,"output_length":106,"hash_ids":[2152067,2152068],"delay":1418.6} +{"session_id":"sess-778e8ffc6316","input_length":438,"output_length":204,"hash_ids":[2152069],"delay":687.4} +{"session_id":"sess-9adec5632ab4","input_length":27210,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2156032,2156033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9adec5632ab4","input_length":692,"output_length":142,"hash_ids":[2156034,2156035],"delay":27270.9} +{"session_id":"sess-a856c8bbeaff","input_length":26185,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a856c8bbeaff","input_length":795,"output_length":92,"hash_ids":[2156036,2156037],"delay":695.9} +{"session_id":"sess-a856c8bbeaff","input_length":1645,"output_length":695,"hash_ids":[2156038,2156039,2156040,2156041],"delay":9990.8} +{"session_id":"sess-a856c8bbeaff","input_length":359,"output_length":280,"hash_ids":[2156042],"delay":1084.1} +{"session_id":"sess-a856c8bbeaff","input_length":1150,"output_length":139,"hash_ids":[2156043,2156044,2156045],"delay":324.7} +{"session_id":"sess-a856c8bbeaff","input_length":798,"output_length":409,"hash_ids":[2156046,2156047],"delay":1584.6} +{"session_id":"sess-a856c8bbeaff","input_length":1978,"output_length":41,"hash_ids":[2156048,2156049,2156050,2156051],"delay":35677.8} +{"session_id":"sess-a856c8bbeaff","input_length":56,"output_length":189,"hash_ids":[2156052],"delay":1095.9} +{"session_id":"sess-a856c8bbeaff","input_length":1588,"output_length":330,"hash_ids":[2156053,2156054,2156055,2156056],"delay":525.9} +{"session_id":"sess-a856c8bbeaff","input_length":657,"output_length":256,"hash_ids":[2156057,2156058],"delay":26934.8} +{"session_id":"sess-a856c8bbeaff","input_length":535,"output_length":122,"hash_ids":[2156059,2156060],"delay":273.4} +{"session_id":"sess-a856c8bbeaff","input_length":2069,"output_length":362,"hash_ids":[2156061,2156062,2156063,2156064,2156065],"delay":729.9} +{"session_id":"sess-a856c8bbeaff","input_length":1013,"output_length":30,"hash_ids":[2156066,2156067],"delay":18905.9} +{"session_id":"sess-a856c8bbeaff","input_length":1497,"output_length":67,"hash_ids":[2156068,2156069,2156070],"delay":17209.8} +{"session_id":"sess-a856c8bbeaff","input_length":902,"output_length":204,"hash_ids":[2156071,2156072],"delay":153.1} +{"session_id":"sess-a856c8bbeaff","input_length":887,"output_length":1198,"hash_ids":[2156073,2156074],"delay":201.9} +{"session_id":"sess-a856c8bbeaff","input_length":215,"output_length":575,"hash_ids":[2156075],"delay":3508.1} +{"session_id":"sess-a856c8bbeaff","input_length":671,"output_length":109,"hash_ids":[2156076,2156077],"delay":242.3} +{"session_id":"sess-a856c8bbeaff","input_length":425,"output_length":30,"hash_ids":[2156078],"delay":4598.8} +{"session_id":"sess-a856c8bbeaff","input_length":345,"output_length":211,"hash_ids":[2156079],"delay":3113.5} +{"session_id":"sess-a856c8bbeaff","input_length":796,"output_length":98,"hash_ids":[2156080,2156081],"delay":45921.2} +{"session_id":"sess-a856c8bbeaff","input_length":988,"output_length":368,"hash_ids":[2156082,2156083],"delay":1680.2} +{"session_id":"sess-a856c8bbeaff","input_length":753,"output_length":148,"hash_ids":[2156084,2156085],"delay":657.8} +{"session_id":"sess-a856c8bbeaff","input_length":251,"output_length":428,"hash_ids":[2156086],"delay":17407.2} +{"session_id":"sess-a856c8bbeaff","input_length":400,"output_length":161,"hash_ids":[2156087],"delay":277.4} +{"session_id":"sess-a856c8bbeaff","input_length":1387,"output_length":109,"hash_ids":[2156088,2156089,2156090],"delay":22432.6} +{"session_id":"sess-a856c8bbeaff","input_length":963,"output_length":143,"hash_ids":[2156091,2156092],"delay":4982.3} +{"session_id":"sess-a856c8bbeaff","input_length":1124,"output_length":269,"hash_ids":[2156093,2156094,2156095],"delay":2653.7} +{"session_id":"sess-a856c8bbeaff","input_length":885,"output_length":30,"hash_ids":[2156096,2156097],"delay":9529.6} +{"session_id":"sess-a856c8bbeaff","input_length":366,"output_length":191,"hash_ids":[2156098],"delay":1369.7} +{"session_id":"sess-a856c8bbeaff","input_length":1894,"output_length":343,"hash_ids":[2156099,2156100,2156101,2156102],"delay":767.9} +{"session_id":"sess-a856c8bbeaff","input_length":2068,"output_length":34,"hash_ids":[2156103,2156104,2156105,2156106,2156107],"delay":2703.6} +{"session_id":"sess-a856c8bbeaff","input_length":821,"output_length":62,"hash_ids":[2156108,2156109],"delay":499.4} +{"session_id":"sess-a856c8bbeaff","input_length":176,"output_length":137,"hash_ids":[2156110],"delay":487.4} +{"session_id":"sess-940563a76e8e","input_length":37601,"output_length":1012,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,2164032,2164033,2164034,2164035,2164036,2164037,2164038,2164039,2164040,2164041,2164042,2164043,2164044,2164045,2164046,2164047,2164048,2164049,2164050,2164051,2164052,2164053],"timestamp":0.0,"group_id":44} +{"session_id":"sess-940563a76e8e","input_length":170,"output_length":618,"hash_ids":[2164054],"delay":1149.0} +{"session_id":"sess-940563a76e8e","input_length":315,"output_length":264,"hash_ids":[2164055],"delay":568.6} +{"session_id":"sess-940563a76e8e","input_length":504,"output_length":495,"hash_ids":[2164056],"delay":1467.8} +{"session_id":"sess-940563a76e8e","input_length":173,"output_length":276,"hash_ids":[2164057],"delay":8411.3} +{"session_id":"sess-940563a76e8e","input_length":1053,"output_length":391,"hash_ids":[2164058,2164059,2164060],"delay":1093.8} +{"session_id":"sess-940563a76e8e","input_length":954,"output_length":531,"hash_ids":[2164061,2164062],"delay":854.6} +{"session_id":"sess-940563a76e8e","input_length":1354,"output_length":176,"hash_ids":[2164063,2164064,2164065],"delay":735.3} +{"session_id":"sess-940563a76e8e","input_length":451,"output_length":33,"hash_ids":[2164066],"delay":8660.9} +{"session_id":"sess-940563a76e8e","input_length":1564,"output_length":115,"hash_ids":[2164067,2164068,2164069,2164070],"delay":202.0} +{"session_id":"sess-940563a76e8e","input_length":159,"output_length":129,"hash_ids":[2164071],"delay":1872.8} +{"session_id":"sess-940563a76e8e","input_length":674,"output_length":394,"hash_ids":[2164072,2164073],"delay":6972.2} +{"session_id":"sess-940563a76e8e","input_length":315,"output_length":674,"hash_ids":[2164074],"delay":2972.9} +{"session_id":"sess-940563a76e8e","input_length":974,"output_length":356,"hash_ids":[2164075,2164076],"delay":7014.3} +{"session_id":"sess-940563a76e8e","input_length":797,"output_length":155,"hash_ids":[2164077,2164078],"delay":8191.2} +{"session_id":"sess-940563a76e8e","input_length":1422,"output_length":287,"hash_ids":[2164079,2164080,2164081],"delay":4511.7} +{"session_id":"sess-940563a76e8e","input_length":621,"output_length":234,"hash_ids":[2164082,2164083],"delay":547.1} +{"session_id":"sess-940563a76e8e","input_length":367,"output_length":116,"hash_ids":[2164084],"delay":1098.4} +{"session_id":"sess-940563a76e8e","input_length":1838,"output_length":93,"hash_ids":[2164085,2164086,2164087,2164088],"delay":5682.5} +{"session_id":"sess-940563a76e8e","input_length":1494,"output_length":529,"hash_ids":[2164089,2164090,2164091],"delay":1053.8} +{"session_id":"sess-940563a76e8e","input_length":366,"output_length":595,"hash_ids":[2164092],"delay":7275.4} +{"session_id":"sess-940563a76e8e","input_length":632,"output_length":254,"hash_ids":[2164093,2164094],"delay":78.1} +{"session_id":"sess-940563a76e8e","input_length":1441,"output_length":237,"hash_ids":[2164095,2164096,2164097],"delay":304.9} +{"session_id":"sess-940563a76e8e","input_length":433,"output_length":149,"hash_ids":[2164098],"delay":966.5} +{"session_id":"sess-b3779fc90573","input_length":27966,"output_length":646,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,2168032,2168033,2168034],"timestamp":0.0,"group_id":38} +{"session_id":"sess-b3779fc90573","input_length":423,"output_length":515,"hash_ids":[2168035],"delay":14955.4} +{"session_id":"sess-b3779fc90573","input_length":1541,"output_length":374,"hash_ids":[2168036,2168037,2168038,2168039],"delay":8374.9} +{"session_id":"sess-b3779fc90573","input_length":565,"output_length":103,"hash_ids":[2168040,2168041],"delay":5239.0} +{"session_id":"sess-b3779fc90573","input_length":920,"output_length":138,"hash_ids":[2168042,2168043],"delay":562.1} +{"session_id":"sess-b3779fc90573","input_length":2966,"output_length":399,"hash_ids":[2168044,2168045,2168046,2168047,2168048,2168049],"delay":235.1} +{"session_id":"sess-b3779fc90573","input_length":137,"output_length":78,"hash_ids":[2168050],"delay":874.0} +{"session_id":"sess-b3779fc90573","input_length":627,"output_length":122,"hash_ids":[2168051,2168052],"delay":692.1} +{"session_id":"sess-b3779fc90573","input_length":1229,"output_length":104,"hash_ids":[2168053,2168054,2168055],"delay":1441.2} +{"session_id":"sess-b3779fc90573","input_length":1264,"output_length":598,"hash_ids":[2168056,2168057,2168058],"delay":3479.6} +{"session_id":"sess-b3779fc90573","input_length":571,"output_length":1379,"hash_ids":[2168059,2168060],"delay":457.9} +{"session_id":"sess-b3779fc90573","input_length":651,"output_length":45,"hash_ids":[2168061,2168062],"delay":604.1} +{"session_id":"sess-b3779fc90573","input_length":2074,"output_length":188,"hash_ids":[2168063,2168064,2168065,2168066,2168067],"delay":851.3} +{"session_id":"sess-b3779fc90573","input_length":783,"output_length":369,"hash_ids":[2168068,2168069],"delay":5995.2} +{"session_id":"sess-b3779fc90573","input_length":264,"output_length":152,"hash_ids":[2168070],"delay":38400.5} +{"session_id":"sess-b3779fc90573","input_length":510,"output_length":86,"hash_ids":[2168071],"delay":1034.3} +{"session_id":"sess-b3779fc90573","input_length":828,"output_length":108,"hash_ids":[2168072,2168073],"delay":204.8} +{"session_id":"sess-b3779fc90573","input_length":730,"output_length":384,"hash_ids":[2168074,2168075],"delay":2933.0} +{"session_id":"sess-e3c614bc9e0e","input_length":27175,"output_length":204,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2172032,2172033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e3c614bc9e0e","input_length":1495,"output_length":248,"hash_ids":[2172034,2172035,2172036],"delay":2897.6} +{"session_id":"sess-e3c614bc9e0e","input_length":1500,"output_length":162,"hash_ids":[2172037,2172038,2172039],"delay":1206.7} +{"session_id":"sess-e3c614bc9e0e","input_length":1477,"output_length":61,"hash_ids":[2172040,2172041,2172042],"delay":70853.5} +{"session_id":"sess-e3c614bc9e0e","input_length":1017,"output_length":270,"hash_ids":[2172043,2172044],"delay":166.0} +{"session_id":"sess-e3c614bc9e0e","input_length":971,"output_length":52,"hash_ids":[2172045,2172046],"delay":11412.6} +{"session_id":"sess-e3c614bc9e0e","input_length":2361,"output_length":1069,"hash_ids":[2172047,2172048,2172049,2172050,2172051],"delay":764.7} +{"session_id":"sess-e3c614bc9e0e","input_length":1262,"output_length":447,"hash_ids":[2172052,2172053,2172054],"delay":876.8} +{"session_id":"sess-e3c614bc9e0e","input_length":1348,"output_length":731,"hash_ids":[2172055,2172056,2172057],"delay":982.5} +{"session_id":"sess-e3c614bc9e0e","input_length":649,"output_length":716,"hash_ids":[2172058,2172059],"delay":1104.7} +{"session_id":"sess-858c72e9e57e","input_length":33911,"output_length":313,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2176032,2176033,2176034,2176035,2176036,2176037,2176038,2176039,2176040,2176041,2176042,2176043,2176044,2176045,2176046],"timestamp":0.0,"group_id":0} +{"session_id":"sess-858c72e9e57e","input_length":929,"output_length":77,"hash_ids":[2176047,2176048],"delay":742.3} +{"session_id":"sess-858c72e9e57e","input_length":448,"output_length":234,"hash_ids":[2176049],"delay":383.4} +{"session_id":"sess-858c72e9e57e","input_length":1218,"output_length":334,"hash_ids":[2176050,2176051,2176052],"delay":14685.6} +{"session_id":"sess-858c72e9e57e","input_length":847,"output_length":45,"hash_ids":[2176053,2176054],"delay":1007.8} +{"session_id":"sess-858c72e9e57e","input_length":605,"output_length":216,"hash_ids":[2176055,2176056],"delay":2007.5} +{"session_id":"sess-858c72e9e57e","input_length":2575,"output_length":30,"hash_ids":[2176057,2176058,2176059,2176060,2176061,2176062],"delay":1193.4} +{"session_id":"sess-858c72e9e57e","input_length":1998,"output_length":243,"hash_ids":[2176063,2176064,2176065,2176066],"delay":1321.9} +{"session_id":"sess-858c72e9e57e","input_length":2123,"output_length":910,"hash_ids":[2176067,2176068,2176069,2176070,2176071],"delay":3670.9} +{"session_id":"sess-858c72e9e57e","input_length":336,"output_length":150,"hash_ids":[2176072],"delay":5941.1} +{"session_id":"sess-858c72e9e57e","input_length":252,"output_length":30,"hash_ids":[2176073],"delay":493.4} +{"session_id":"sess-858c72e9e57e","input_length":1145,"output_length":168,"hash_ids":[2176074,2176075,2176076],"delay":15494.7} +{"session_id":"sess-858c72e9e57e","input_length":694,"output_length":183,"hash_ids":[2176077,2176078],"delay":720.8} +{"session_id":"sess-858c72e9e57e","input_length":1189,"output_length":195,"hash_ids":[2176079,2176080,2176081],"delay":752.0} +{"session_id":"sess-858c72e9e57e","input_length":513,"output_length":595,"hash_ids":[2176082,2176083],"delay":318.7} +{"session_id":"sess-858c72e9e57e","input_length":2459,"output_length":300,"hash_ids":[2176084,2176085,2176086,2176087,2176088],"delay":6833.1} +{"session_id":"sess-858c72e9e57e","input_length":2387,"output_length":30,"hash_ids":[2176089,2176090,2176091,2176092,2176093],"delay":2772.8} +{"session_id":"sess-858c72e9e57e","input_length":420,"output_length":126,"hash_ids":[2176094],"delay":2248.8} +{"session_id":"sess-858c72e9e57e","input_length":702,"output_length":986,"hash_ids":[2176095,2176096],"delay":441.7} +{"session_id":"sess-858c72e9e57e","input_length":1728,"output_length":333,"hash_ids":[2176097,2176098,2176099,2176100],"delay":787.3} +{"session_id":"sess-858c72e9e57e","input_length":96,"output_length":97,"hash_ids":[2176101],"delay":1064.7} +{"session_id":"sess-858c72e9e57e","input_length":685,"output_length":117,"hash_ids":[2176102,2176103],"delay":112.4} +{"session_id":"sess-858c72e9e57e","input_length":1877,"output_length":100,"hash_ids":[2176104,2176105,2176106,2176107],"delay":281.5} +{"session_id":"sess-858c72e9e57e","input_length":143,"output_length":580,"hash_ids":[2176108],"delay":16203.2} +{"session_id":"sess-86ee2945d642","input_length":31716,"output_length":37,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2180032,2180033,2180034,2180035,2180036,2180037,2180038,2180039,2180040,2180041],"timestamp":0.0,"group_id":1} +{"session_id":"sess-86ee2945d642","input_length":2947,"output_length":264,"hash_ids":[2180042,2180043,2180044,2180045,2180046,2180047],"delay":2708.6} +{"session_id":"sess-86ee2945d642","input_length":1834,"output_length":253,"hash_ids":[2180048,2180049,2180050,2180051],"delay":1324.4} +{"session_id":"sess-86ee2945d642","input_length":290,"output_length":478,"hash_ids":[2180052],"delay":660.3} +{"session_id":"sess-86ee2945d642","input_length":454,"output_length":59,"hash_ids":[2180053],"delay":2127.6} +{"session_id":"sess-86ee2945d642","input_length":932,"output_length":403,"hash_ids":[2180054,2180055],"delay":31497.7} +{"session_id":"sess-86ee2945d642","input_length":1518,"output_length":942,"hash_ids":[2180056,2180057,2180058],"delay":713.2} +{"session_id":"sess-86ee2945d642","input_length":1097,"output_length":717,"hash_ids":[2180059,2180060,2180061],"delay":1810.5} +{"session_id":"sess-86ee2945d642","input_length":2399,"output_length":43,"hash_ids":[2180062,2180063,2180064,2180065,2180066],"delay":34832.2} +{"session_id":"sess-86ee2945d642","input_length":289,"output_length":60,"hash_ids":[2180067],"delay":2770.1} +{"session_id":"sess-86ee2945d642","input_length":2045,"output_length":145,"hash_ids":[2180068,2180069,2180070,2180071],"delay":305.3} +{"session_id":"sess-86ee2945d642","input_length":1367,"output_length":819,"hash_ids":[2180072,2180073,2180074],"delay":652.9} +{"session_id":"sess-86ee2945d642","input_length":1538,"output_length":118,"hash_ids":[2180075,2180076,2180077,2180078],"delay":36381.9} +{"session_id":"sess-86ee2945d642","input_length":763,"output_length":85,"hash_ids":[2180079,2180080],"delay":462.5} +{"session_id":"sess-86ee2945d642","input_length":1352,"output_length":231,"hash_ids":[2180081,2180082,2180083],"delay":210.8} +{"session_id":"sess-86ee2945d642","input_length":376,"output_length":128,"hash_ids":[2180084],"delay":229.0} +{"session_id":"sess-86ee2945d642","input_length":380,"output_length":37,"hash_ids":[2180085],"delay":27176.9} +{"session_id":"sess-86ee2945d642","input_length":232,"output_length":42,"hash_ids":[2180086],"delay":26367.5} +{"session_id":"sess-86ee2945d642","input_length":572,"output_length":124,"hash_ids":[2180087,2180088],"delay":571.3} +{"session_id":"sess-86ee2945d642","input_length":1726,"output_length":245,"hash_ids":[2180089,2180090,2180091,2180092],"delay":527.7} +{"session_id":"sess-86ee2945d642","input_length":802,"output_length":96,"hash_ids":[2180093,2180094],"delay":1267.7} +{"session_id":"sess-86ee2945d642","input_length":343,"output_length":315,"hash_ids":[2180095],"delay":516.9} +{"session_id":"sess-86ee2945d642","input_length":878,"output_length":240,"hash_ids":[2180096,2180097],"delay":9018.6} +{"session_id":"sess-86ee2945d642","input_length":484,"output_length":61,"hash_ids":[2180098],"delay":426.4} +{"session_id":"sess-86ee2945d642","input_length":827,"output_length":758,"hash_ids":[2180099,2180100],"delay":349.6} +{"session_id":"sess-16eac3b3403f","input_length":26600,"output_length":118,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851],"timestamp":0.0,"group_id":49} +{"session_id":"sess-16eac3b3403f","input_length":851,"output_length":419,"hash_ids":[2180101,2180102],"delay":1656.2} +{"session_id":"sess-16eac3b3403f","input_length":1593,"output_length":156,"hash_ids":[2180103,2180104,2180105,2180106],"delay":2388.3} +{"session_id":"sess-16eac3b3403f","input_length":301,"output_length":200,"hash_ids":[2180107],"delay":1774.9} +{"session_id":"sess-d201f7aee2b5","input_length":31391,"output_length":136,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2188032,2188033,2188034,2188035,2188036,2188037,2188038,2188039,2188040,2188041],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d201f7aee2b5","input_length":196,"output_length":97,"hash_ids":[2188042],"delay":9433.3} +{"session_id":"sess-d201f7aee2b5","input_length":2222,"output_length":566,"hash_ids":[2188043,2188044,2188045,2188046,2188047],"delay":148.8} +{"session_id":"sess-d201f7aee2b5","input_length":1909,"output_length":242,"hash_ids":[2188048,2188049,2188050,2188051],"delay":1560.3} +{"session_id":"sess-d201f7aee2b5","input_length":149,"output_length":294,"hash_ids":[2188052],"delay":1461.5} +{"session_id":"sess-d201f7aee2b5","input_length":1928,"output_length":163,"hash_ids":[2188053,2188054,2188055,2188056],"delay":15912.5} +{"session_id":"sess-d201f7aee2b5","input_length":1289,"output_length":84,"hash_ids":[2188057,2188058,2188059],"delay":3053.5} +{"session_id":"sess-d201f7aee2b5","input_length":415,"output_length":193,"hash_ids":[2188060],"delay":9850.7} +{"session_id":"sess-d201f7aee2b5","input_length":621,"output_length":283,"hash_ids":[2188061,2188062],"delay":2715.8} +{"session_id":"sess-d201f7aee2b5","input_length":1868,"output_length":170,"hash_ids":[2188063,2188064,2188065,2188066],"delay":292.9} +{"session_id":"sess-d201f7aee2b5","input_length":364,"output_length":376,"hash_ids":[2188067],"delay":1126.4} +{"session_id":"sess-d201f7aee2b5","input_length":1136,"output_length":419,"hash_ids":[2188068,2188069,2188070],"delay":621.0} +{"session_id":"sess-d201f7aee2b5","input_length":2005,"output_length":319,"hash_ids":[2188071,2188072,2188073,2188074],"delay":7166.6} +{"session_id":"sess-d201f7aee2b5","input_length":336,"output_length":144,"hash_ids":[2188075],"delay":1444.8} +{"session_id":"sess-d201f7aee2b5","input_length":849,"output_length":40,"hash_ids":[2188076,2188077],"delay":201.3} +{"session_id":"sess-d201f7aee2b5","input_length":309,"output_length":288,"hash_ids":[2188078],"delay":775.1} +{"session_id":"sess-d201f7aee2b5","input_length":570,"output_length":56,"hash_ids":[2188079,2188080],"delay":715.7} +{"session_id":"sess-d201f7aee2b5","input_length":875,"output_length":1137,"hash_ids":[2188081,2188082],"delay":648.6} +{"session_id":"sess-d201f7aee2b5","input_length":1542,"output_length":136,"hash_ids":[2188083,2188084,2188085,2188086],"delay":465.4} +{"session_id":"sess-d201f7aee2b5","input_length":723,"output_length":81,"hash_ids":[2188087,2188088],"delay":1977.3} +{"session_id":"sess-d201f7aee2b5","input_length":373,"output_length":531,"hash_ids":[2188089],"delay":876.4} +{"session_id":"sess-d201f7aee2b5","input_length":679,"output_length":44,"hash_ids":[2188090,2188091],"delay":131.5} +{"session_id":"sess-d201f7aee2b5","input_length":283,"output_length":260,"hash_ids":[2188092],"delay":596.0} +{"session_id":"sess-d201f7aee2b5","input_length":522,"output_length":89,"hash_ids":[2188093,2188094],"delay":12069.0} +{"session_id":"sess-d201f7aee2b5","input_length":171,"output_length":1276,"hash_ids":[2188095],"delay":2469.4} +{"session_id":"sess-d201f7aee2b5","input_length":984,"output_length":92,"hash_ids":[2188096,2188097],"delay":26236.7} +{"session_id":"sess-d201f7aee2b5","input_length":2570,"output_length":501,"hash_ids":[2188098,2188099,2188100,2188101,2188102,2188103],"delay":1685.7} +{"session_id":"sess-77f50e5a8528","input_length":36147,"output_length":215,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,2192032,2192033,2192034,2192035,2192036,2192037,2192038,2192039,2192040,2192041,2192042,2192043,2192044,2192045,2192046,2192047,2192048,2192049,2192050],"timestamp":0.0,"group_id":21} +{"session_id":"sess-77f50e5a8528","input_length":753,"output_length":603,"hash_ids":[2192051,2192052],"delay":6349.1} +{"session_id":"sess-77f50e5a8528","input_length":371,"output_length":1217,"hash_ids":[2192053],"delay":1158.8} +{"session_id":"sess-77f50e5a8528","input_length":2919,"output_length":1152,"hash_ids":[2192054,2192055,2192056,2192057,2192058,2192059],"delay":840.9} +{"session_id":"sess-77f50e5a8528","input_length":1064,"output_length":233,"hash_ids":[2192060,2192061,2192062],"delay":1020.9} +{"session_id":"sess-77f50e5a8528","input_length":514,"output_length":132,"hash_ids":[2192063,2192064],"delay":5107.2} +{"session_id":"sess-77f50e5a8528","input_length":101,"output_length":111,"hash_ids":[2192065],"delay":3605.2} +{"session_id":"sess-77f50e5a8528","input_length":1375,"output_length":105,"hash_ids":[2192066,2192067,2192068],"delay":795.5} +{"session_id":"sess-77f50e5a8528","input_length":871,"output_length":338,"hash_ids":[2192069,2192070],"delay":2382.3} +{"session_id":"sess-77f50e5a8528","input_length":804,"output_length":173,"hash_ids":[2192071,2192072],"delay":378.7} +{"session_id":"sess-77f50e5a8528","input_length":1581,"output_length":298,"hash_ids":[2192073,2192074,2192075,2192076],"delay":1468.0} +{"session_id":"sess-77f50e5a8528","input_length":735,"output_length":408,"hash_ids":[2192077,2192078],"delay":756.6} +{"session_id":"sess-77f50e5a8528","input_length":1492,"output_length":180,"hash_ids":[2192079,2192080,2192081],"delay":1820.4} +{"session_id":"sess-c76edf698dd2","input_length":26986,"output_length":449,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2196032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c76edf698dd2","input_length":1344,"output_length":959,"hash_ids":[2196033,2196034,2196035],"delay":2665.7} +{"session_id":"sess-c76edf698dd2","input_length":704,"output_length":30,"hash_ids":[2196036,2196037],"delay":520.9} +{"session_id":"sess-c76edf698dd2","input_length":173,"output_length":665,"hash_ids":[2196038],"delay":14990.4} +{"session_id":"sess-c76edf698dd2","input_length":430,"output_length":536,"hash_ids":[2196039],"delay":2633.9} +{"session_id":"sess-c76edf698dd2","input_length":2753,"output_length":59,"hash_ids":[2196040,2196041,2196042,2196043,2196044,2196045],"delay":5208.4} +{"session_id":"sess-c76edf698dd2","input_length":313,"output_length":77,"hash_ids":[2196046],"delay":11280.5} +{"session_id":"sess-c76edf698dd2","input_length":561,"output_length":528,"hash_ids":[2196047,2196048],"delay":706.9} +{"session_id":"sess-c76edf698dd2","input_length":1856,"output_length":256,"hash_ids":[2196049,2196050,2196051,2196052],"delay":2166.0} +{"session_id":"sess-c76edf698dd2","input_length":785,"output_length":571,"hash_ids":[2196053,2196054],"delay":16007.4} +{"session_id":"sess-c76edf698dd2","input_length":426,"output_length":135,"hash_ids":[2196055],"delay":1950.9} +{"session_id":"sess-c76edf698dd2","input_length":1070,"output_length":281,"hash_ids":[2196056,2196057,2196058],"delay":11316.3} +{"session_id":"sess-c76edf698dd2","input_length":652,"output_length":93,"hash_ids":[2196059,2196060],"delay":24543.3} +{"session_id":"sess-c76edf698dd2","input_length":628,"output_length":166,"hash_ids":[2196061,2196062],"delay":24336.5} +{"session_id":"sess-c76edf698dd2","input_length":329,"output_length":1458,"hash_ids":[2196063],"delay":423.9} +{"session_id":"sess-c76edf698dd2","input_length":1171,"output_length":330,"hash_ids":[2196064,2196065,2196066],"delay":1692.8} +{"session_id":"sess-c76edf698dd2","input_length":1951,"output_length":216,"hash_ids":[2196067,2196068,2196069,2196070],"delay":975.9} +{"session_id":"sess-c76edf698dd2","input_length":1772,"output_length":208,"hash_ids":[2196071,2196072,2196073,2196074],"delay":212.8} +{"session_id":"sess-c76edf698dd2","input_length":1381,"output_length":105,"hash_ids":[2196075,2196076,2196077],"delay":2402.9} +{"session_id":"sess-8cc9dc4589ef","input_length":28411,"output_length":43,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2200032,2200033,2200034,2200035],"timestamp":0.0,"group_id":4} +{"session_id":"sess-8cc9dc4589ef","input_length":302,"output_length":135,"hash_ids":[2200036],"delay":787.9} +{"session_id":"sess-8cc9dc4589ef","input_length":112,"output_length":95,"hash_ids":[2200037],"delay":1756.5} +{"session_id":"sess-8cc9dc4589ef","input_length":639,"output_length":353,"hash_ids":[2200038,2200039],"delay":1969.1} +{"session_id":"sess-8cc9dc4589ef","input_length":762,"output_length":97,"hash_ids":[2200040,2200041],"delay":1362.7} +{"session_id":"sess-8cc9dc4589ef","input_length":1995,"output_length":163,"hash_ids":[2200042,2200043,2200044,2200045],"delay":1500.1} +{"session_id":"sess-8cc9dc4589ef","input_length":1382,"output_length":384,"hash_ids":[2200046,2200047,2200048],"delay":1472.8} +{"session_id":"sess-8cc9dc4589ef","input_length":2113,"output_length":223,"hash_ids":[2200049,2200050,2200051,2200052,2200053],"delay":561.8} +{"session_id":"sess-8cc9dc4589ef","input_length":1794,"output_length":138,"hash_ids":[2200054,2200055,2200056,2200057],"delay":7035.7} +{"session_id":"sess-8cc9dc4589ef","input_length":981,"output_length":778,"hash_ids":[2200058,2200059],"delay":602.6} +{"session_id":"sess-8cc9dc4589ef","input_length":484,"output_length":624,"hash_ids":[2200060],"delay":1009.9} +{"session_id":"sess-8cc9dc4589ef","input_length":766,"output_length":68,"hash_ids":[2200061,2200062],"delay":7897.3} +{"session_id":"sess-8cc9dc4589ef","input_length":1086,"output_length":125,"hash_ids":[2200063,2200064,2200065],"delay":1975.7} +{"session_id":"sess-8cc9dc4589ef","input_length":2320,"output_length":91,"hash_ids":[2200066,2200067,2200068,2200069,2200070],"delay":1999.5} +{"session_id":"sess-8cc9dc4589ef","input_length":370,"output_length":131,"hash_ids":[2200071],"delay":512.0} +{"session_id":"sess-8cc9dc4589ef","input_length":1031,"output_length":736,"hash_ids":[2200072,2200073,2200074],"delay":4702.6} +{"session_id":"sess-8cc9dc4589ef","input_length":388,"output_length":125,"hash_ids":[2200075],"delay":1002.2} +{"session_id":"sess-8cc9dc4589ef","input_length":1160,"output_length":275,"hash_ids":[2200076,2200077,2200078],"delay":1016.5} +{"session_id":"sess-8cc9dc4589ef","input_length":732,"output_length":30,"hash_ids":[2200079,2200080],"delay":241.8} +{"session_id":"sess-8cc9dc4589ef","input_length":1388,"output_length":88,"hash_ids":[2200081,2200082,2200083],"delay":354.4} +{"session_id":"sess-8cc9dc4589ef","input_length":354,"output_length":202,"hash_ids":[2200084],"delay":403.4} +{"session_id":"sess-8cc9dc4589ef","input_length":519,"output_length":250,"hash_ids":[2200085,2200086],"delay":361.2} +{"session_id":"sess-8cc9dc4589ef","input_length":968,"output_length":231,"hash_ids":[2200087,2200088],"delay":674.6} +{"session_id":"sess-8cc9dc4589ef","input_length":1248,"output_length":30,"hash_ids":[2200089,2200090,2200091],"delay":1531.0} +{"session_id":"sess-8cc9dc4589ef","input_length":1418,"output_length":57,"hash_ids":[2200092,2200093,2200094],"delay":8145.3} +{"session_id":"sess-8cc9dc4589ef","input_length":247,"output_length":438,"hash_ids":[2200095],"delay":254.1} +{"session_id":"sess-8cc9dc4589ef","input_length":1159,"output_length":50,"hash_ids":[2200096,2200097,2200098],"delay":522.4} +{"session_id":"sess-8cc9dc4589ef","input_length":1743,"output_length":392,"hash_ids":[2200099,2200100,2200101,2200102],"delay":1582.5} +{"session_id":"sess-8cc9dc4589ef","input_length":677,"output_length":139,"hash_ids":[2200103,2200104],"delay":4141.4} +{"session_id":"sess-8cc9dc4589ef","input_length":297,"output_length":136,"hash_ids":[2200105],"delay":163.0} +{"session_id":"sess-8cc9dc4589ef","input_length":1281,"output_length":260,"hash_ids":[2200106,2200107,2200108],"delay":1102.6} +{"session_id":"sess-8cc9dc4589ef","input_length":310,"output_length":1135,"hash_ids":[2200109],"delay":1669.0} +{"session_id":"sess-6b9b990d0a4e","input_length":31420,"output_length":141,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2204032,2204033,2204034,2204035,2204036,2204037,2204038,2204039,2204040,2204041],"timestamp":0.0,"group_id":7} +{"session_id":"sess-6b9b990d0a4e","input_length":2697,"output_length":169,"hash_ids":[2204042,2204043,2204044,2204045,2204046,2204047],"delay":798.9} +{"session_id":"sess-6b9b990d0a4e","input_length":297,"output_length":263,"hash_ids":[2204048],"delay":380.7} +{"session_id":"sess-6b9b990d0a4e","input_length":550,"output_length":255,"hash_ids":[2204049,2204050],"delay":948.8} +{"session_id":"sess-6b9b990d0a4e","input_length":776,"output_length":72,"hash_ids":[2204051,2204052],"delay":1020.3} +{"session_id":"sess-6b9b990d0a4e","input_length":1366,"output_length":288,"hash_ids":[2204053,2204054,2204055],"delay":5749.0} +{"session_id":"sess-6b9b990d0a4e","input_length":1283,"output_length":588,"hash_ids":[2204056,2204057,2204058],"delay":538.4} +{"session_id":"sess-6b9b990d0a4e","input_length":168,"output_length":250,"hash_ids":[2204059],"delay":14131.7} +{"session_id":"sess-6b9b990d0a4e","input_length":414,"output_length":66,"hash_ids":[2204060],"delay":115.7} +{"session_id":"sess-6b9b990d0a4e","input_length":2270,"output_length":256,"hash_ids":[2204061,2204062,2204063,2204064,2204065],"delay":7117.8} +{"session_id":"sess-6b9b990d0a4e","input_length":1094,"output_length":376,"hash_ids":[2204066,2204067,2204068],"delay":1598.5} +{"session_id":"sess-6b9b990d0a4e","input_length":693,"output_length":314,"hash_ids":[2204069,2204070],"delay":885.5} +{"session_id":"sess-6b9b990d0a4e","input_length":1813,"output_length":126,"hash_ids":[2204071,2204072,2204073,2204074],"delay":1008.6} +{"session_id":"sess-6b9b990d0a4e","input_length":152,"output_length":245,"hash_ids":[2204075],"delay":12137.5} +{"session_id":"sess-6b9b990d0a4e","input_length":1600,"output_length":92,"hash_ids":[2204076,2204077,2204078,2204079],"delay":1375.2} +{"session_id":"sess-6b9b990d0a4e","input_length":1152,"output_length":622,"hash_ids":[2204080,2204081,2204082],"delay":14760.5} +{"session_id":"sess-6b9b990d0a4e","input_length":906,"output_length":425,"hash_ids":[2204083,2204084],"delay":434.5} +{"session_id":"sess-6b9b990d0a4e","input_length":1464,"output_length":335,"hash_ids":[2204085,2204086,2204087],"delay":1409.3} +{"session_id":"sess-6b9b990d0a4e","input_length":1016,"output_length":231,"hash_ids":[2204088,2204089],"delay":1286.2} +{"session_id":"sess-6b9b990d0a4e","input_length":589,"output_length":57,"hash_ids":[2204090,2204091],"delay":3712.4} +{"session_id":"sess-6b9b990d0a4e","input_length":657,"output_length":1371,"hash_ids":[2204092,2204093],"delay":631.9} +{"session_id":"sess-6b9b990d0a4e","input_length":1682,"output_length":752,"hash_ids":[2204094,2204095,2204096,2204097],"delay":572.5} +{"session_id":"sess-6b9b990d0a4e","input_length":896,"output_length":223,"hash_ids":[2204098,2204099],"delay":518.4} +{"session_id":"sess-6b9b990d0a4e","input_length":1641,"output_length":694,"hash_ids":[2204100,2204101,2204102,2204103],"delay":206.8} +{"session_id":"sess-46ee5e6f51fc","input_length":27494,"output_length":275,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2208032,2208033],"timestamp":0.0,"group_id":13} +{"session_id":"sess-46ee5e6f51fc","input_length":1072,"output_length":535,"hash_ids":[2208034,2208035,2208036],"delay":3841.0} +{"session_id":"sess-46ee5e6f51fc","input_length":182,"output_length":151,"hash_ids":[2208037],"delay":17201.3} +{"session_id":"sess-46ee5e6f51fc","input_length":2768,"output_length":508,"hash_ids":[2208038,2208039,2208040,2208041,2208042,2208043],"delay":12331.1} +{"session_id":"sess-46ee5e6f51fc","input_length":1243,"output_length":61,"hash_ids":[2208044,2208045,2208046],"delay":428.8} +{"session_id":"sess-46ee5e6f51fc","input_length":245,"output_length":580,"hash_ids":[2208047],"delay":450.0} +{"session_id":"sess-46ee5e6f51fc","input_length":648,"output_length":181,"hash_ids":[2208048,2208049],"delay":17423.7} +{"session_id":"sess-46ee5e6f51fc","input_length":317,"output_length":167,"hash_ids":[2208050],"delay":615.2} +{"session_id":"sess-46ee5e6f51fc","input_length":2578,"output_length":92,"hash_ids":[2208051,2208052,2208053,2208054,2208055,2208056],"delay":1812.4} +{"session_id":"sess-46ee5e6f51fc","input_length":320,"output_length":196,"hash_ids":[2208057],"delay":1473.8} +{"session_id":"sess-46ee5e6f51fc","input_length":913,"output_length":145,"hash_ids":[2208058,2208059],"delay":24653.4} +{"session_id":"sess-46ee5e6f51fc","input_length":2675,"output_length":213,"hash_ids":[2208060,2208061,2208062,2208063,2208064,2208065],"delay":31965.7} +{"session_id":"sess-46ee5e6f51fc","input_length":131,"output_length":92,"hash_ids":[2208066],"delay":1757.8} +{"session_id":"sess-46ee5e6f51fc","input_length":1503,"output_length":722,"hash_ids":[2208067,2208068,2208069],"delay":527.7} +{"session_id":"sess-46ee5e6f51fc","input_length":1420,"output_length":170,"hash_ids":[2208070,2208071,2208072],"delay":18048.3} +{"session_id":"sess-46ee5e6f51fc","input_length":501,"output_length":87,"hash_ids":[2208073],"delay":947.0} +{"session_id":"sess-26b9ac7646a1","input_length":34804,"output_length":313,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,2212032,2212033,2212034,2212035,2212036,2212037,2212038,2212039,2212040,2212041,2212042,2212043,2212044,2212045,2212046,2212047],"timestamp":0.0,"group_id":5} +{"session_id":"sess-26b9ac7646a1","input_length":1315,"output_length":55,"hash_ids":[2212048,2212049,2212050],"delay":472.1} +{"session_id":"sess-26b9ac7646a1","input_length":2212,"output_length":55,"hash_ids":[2212051,2212052,2212053,2212054,2212055],"delay":2546.9} +{"session_id":"sess-26b9ac7646a1","input_length":1591,"output_length":167,"hash_ids":[2212056,2212057,2212058,2212059],"delay":11649.6} +{"session_id":"sess-26b9ac7646a1","input_length":508,"output_length":160,"hash_ids":[2212060],"delay":6147.8} +{"session_id":"sess-26b9ac7646a1","input_length":520,"output_length":526,"hash_ids":[2212061,2212062],"delay":19033.4} +{"session_id":"sess-26b9ac7646a1","input_length":286,"output_length":275,"hash_ids":[2212063],"delay":313.9} +{"session_id":"sess-26b9ac7646a1","input_length":193,"output_length":201,"hash_ids":[2212064],"delay":682.3} +{"session_id":"sess-26b9ac7646a1","input_length":1891,"output_length":178,"hash_ids":[2212065,2212066,2212067,2212068],"delay":724.3} +{"session_id":"sess-26b9ac7646a1","input_length":752,"output_length":102,"hash_ids":[2212069,2212070],"delay":30790.9} +{"session_id":"sess-26b9ac7646a1","input_length":878,"output_length":436,"hash_ids":[2212071,2212072],"delay":10635.3} +{"session_id":"sess-26b9ac7646a1","input_length":2083,"output_length":675,"hash_ids":[2212073,2212074,2212075,2212076,2212077],"delay":11289.8} +{"session_id":"sess-26b9ac7646a1","input_length":1112,"output_length":123,"hash_ids":[2212078,2212079,2212080],"delay":430.0} +{"session_id":"sess-26b9ac7646a1","input_length":1923,"output_length":192,"hash_ids":[2212081,2212082,2212083,2212084],"delay":573.2} +{"session_id":"sess-26b9ac7646a1","input_length":374,"output_length":183,"hash_ids":[2212085],"delay":681.2} +{"session_id":"sess-26b9ac7646a1","input_length":1018,"output_length":78,"hash_ids":[2212086,2212087],"delay":427.0} +{"session_id":"sess-26b9ac7646a1","input_length":1299,"output_length":341,"hash_ids":[2212088,2212089,2212090],"delay":8678.7} +{"session_id":"sess-26b9ac7646a1","input_length":736,"output_length":109,"hash_ids":[2212091,2212092],"delay":3347.3} +{"session_id":"sess-26b9ac7646a1","input_length":2788,"output_length":743,"hash_ids":[2212093,2212094,2212095,2212096,2212097,2212098],"delay":122.1} +{"session_id":"sess-26b9ac7646a1","input_length":1360,"output_length":40,"hash_ids":[2212099,2212100,2212101],"delay":1495.2} +{"session_id":"sess-26b9ac7646a1","input_length":1419,"output_length":119,"hash_ids":[2212102,2212103,2212104],"delay":136.2} +{"session_id":"sess-4be225f798ca","input_length":29203,"output_length":182,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2216032,2216033,2216034,2216035,2216036,2216037],"timestamp":0.0,"group_id":9} +{"session_id":"sess-4be225f798ca","input_length":1405,"output_length":115,"hash_ids":[2216038,2216039,2216040],"delay":13309.2} +{"session_id":"sess-4be225f798ca","input_length":2248,"output_length":603,"hash_ids":[2216041,2216042,2216043,2216044,2216045],"delay":1415.7} +{"session_id":"sess-4be225f798ca","input_length":1871,"output_length":238,"hash_ids":[2216046,2216047,2216048,2216049],"delay":2432.5} +{"session_id":"sess-4be225f798ca","input_length":1239,"output_length":127,"hash_ids":[2216050,2216051,2216052],"delay":740.6} +{"session_id":"sess-4be225f798ca","input_length":1463,"output_length":634,"hash_ids":[2216053,2216054,2216055],"delay":14280.2} +{"session_id":"sess-4be225f798ca","input_length":513,"output_length":65,"hash_ids":[2216056,2216057],"delay":15835.3} +{"session_id":"sess-4be225f798ca","input_length":1456,"output_length":410,"hash_ids":[2216058,2216059,2216060],"delay":3109.4} +{"session_id":"sess-4be225f798ca","input_length":1216,"output_length":58,"hash_ids":[2216061,2216062,2216063],"delay":14334.5} +{"session_id":"sess-4be225f798ca","input_length":2501,"output_length":34,"hash_ids":[2216064,2216065,2216066,2216067,2216068],"delay":1895.2} +{"session_id":"sess-4be225f798ca","input_length":463,"output_length":346,"hash_ids":[2216069],"delay":587.3} +{"session_id":"sess-4be225f798ca","input_length":2202,"output_length":30,"hash_ids":[2216070,2216071,2216072,2216073,2216074],"delay":1232.9} +{"session_id":"sess-4be225f798ca","input_length":170,"output_length":270,"hash_ids":[2216075],"delay":816.0} +{"session_id":"sess-4be225f798ca","input_length":1694,"output_length":62,"hash_ids":[2216076,2216077,2216078,2216079],"delay":248.9} +{"session_id":"sess-4be225f798ca","input_length":1080,"output_length":69,"hash_ids":[2216080,2216081,2216082],"delay":315.7} +{"session_id":"sess-4be225f798ca","input_length":2964,"output_length":99,"hash_ids":[2216083,2216084,2216085,2216086,2216087,2216088],"delay":584.1} +{"session_id":"sess-4be225f798ca","input_length":2180,"output_length":202,"hash_ids":[2216089,2216090,2216091,2216092,2216093],"delay":132.1} +{"session_id":"sess-4be225f798ca","input_length":1267,"output_length":44,"hash_ids":[2216094,2216095,2216096],"delay":704.8} +{"session_id":"sess-4be225f798ca","input_length":2269,"output_length":543,"hash_ids":[2216097,2216098,2216099,2216100,2216101],"delay":201.7} +{"session_id":"sess-4be225f798ca","input_length":1500,"output_length":287,"hash_ids":[2216102,2216103,2216104],"delay":369.2} +{"session_id":"sess-4be225f798ca","input_length":613,"output_length":99,"hash_ids":[2216105,2216106],"delay":310.0} +{"session_id":"sess-4be225f798ca","input_length":933,"output_length":479,"hash_ids":[2216107,2216108],"delay":119.9} +{"session_id":"sess-c84514a6107c","input_length":28268,"output_length":218,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2220032,2220033,2220034,2220035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c84514a6107c","input_length":951,"output_length":166,"hash_ids":[2220036,2220037],"delay":589.8} +{"session_id":"sess-c84514a6107c","input_length":1104,"output_length":278,"hash_ids":[2220038,2220039,2220040],"delay":4200.1} +{"session_id":"sess-c84514a6107c","input_length":1312,"output_length":337,"hash_ids":[2220041,2220042,2220043],"delay":1199.5} +{"session_id":"sess-c84514a6107c","input_length":707,"output_length":193,"hash_ids":[2220044,2220045],"delay":295.1} +{"session_id":"sess-c84514a6107c","input_length":518,"output_length":100,"hash_ids":[2220046,2220047],"delay":253.7} +{"session_id":"sess-c84514a6107c","input_length":501,"output_length":734,"hash_ids":[2220048],"delay":43071.8} +{"session_id":"sess-c84514a6107c","input_length":770,"output_length":107,"hash_ids":[2220049,2220050],"delay":2140.1} +{"session_id":"sess-c84514a6107c","input_length":617,"output_length":35,"hash_ids":[2220051,2220052],"delay":3699.9} +{"session_id":"sess-c84514a6107c","input_length":834,"output_length":110,"hash_ids":[2220053,2220054],"delay":955.7} +{"session_id":"sess-c84514a6107c","input_length":1028,"output_length":133,"hash_ids":[2220055,2220056,2220057],"delay":505.7} +{"session_id":"sess-c84514a6107c","input_length":811,"output_length":162,"hash_ids":[2220058,2220059],"delay":16492.9} +{"session_id":"sess-c84514a6107c","input_length":627,"output_length":109,"hash_ids":[2220060,2220061],"delay":474.6} +{"session_id":"sess-c84514a6107c","input_length":403,"output_length":69,"hash_ids":[2220062],"delay":314.2} +{"session_id":"sess-c84514a6107c","input_length":444,"output_length":253,"hash_ids":[2220063],"delay":295.2} +{"session_id":"sess-4a87d018272b","input_length":26835,"output_length":330,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2224032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4a87d018272b","input_length":902,"output_length":268,"hash_ids":[2224033,2224034],"delay":256.7} +{"session_id":"sess-4a87d018272b","input_length":951,"output_length":122,"hash_ids":[2224035,2224036],"delay":1457.5} +{"session_id":"sess-4a87d018272b","input_length":185,"output_length":583,"hash_ids":[2224037],"delay":927.7} +{"session_id":"sess-4a87d018272b","input_length":464,"output_length":185,"hash_ids":[2224038],"delay":282.6} +{"session_id":"sess-4a87d018272b","input_length":706,"output_length":347,"hash_ids":[2224039,2224040],"delay":376.8} +{"session_id":"sess-4a87d018272b","input_length":894,"output_length":213,"hash_ids":[2224041,2224042],"delay":1583.8} +{"session_id":"sess-4a87d018272b","input_length":321,"output_length":110,"hash_ids":[2224043],"delay":163.4} +{"session_id":"sess-4a87d018272b","input_length":1928,"output_length":901,"hash_ids":[2224044,2224045,2224046,2224047],"delay":768.2} +{"session_id":"sess-4a87d018272b","input_length":1519,"output_length":199,"hash_ids":[2224048,2224049,2224050],"delay":10376.0} +{"session_id":"sess-4a87d018272b","input_length":139,"output_length":121,"hash_ids":[2224051],"delay":48801.7} +{"session_id":"sess-4a87d018272b","input_length":1074,"output_length":39,"hash_ids":[2224052,2224053,2224054],"delay":1621.0} +{"session_id":"sess-4a87d018272b","input_length":396,"output_length":198,"hash_ids":[2224055],"delay":11581.4} +{"session_id":"sess-4a87d018272b","input_length":241,"output_length":227,"hash_ids":[2224056],"delay":1631.1} +{"session_id":"sess-4a87d018272b","input_length":1409,"output_length":154,"hash_ids":[2224057,2224058,2224059],"delay":3746.1} +{"session_id":"sess-4a87d018272b","input_length":993,"output_length":172,"hash_ids":[2224060,2224061],"delay":3233.2} +{"session_id":"sess-4a87d018272b","input_length":2157,"output_length":258,"hash_ids":[2224062,2224063,2224064,2224065,2224066],"delay":796.1} +{"session_id":"sess-4a87d018272b","input_length":1783,"output_length":714,"hash_ids":[2224067,2224068,2224069,2224070],"delay":40349.3} +{"session_id":"sess-4a87d018272b","input_length":466,"output_length":361,"hash_ids":[2224071],"delay":621.3} +{"session_id":"sess-4a87d018272b","input_length":2622,"output_length":74,"hash_ids":[2224072,2224073,2224074,2224075,2224076,2224077],"delay":606.5} +{"session_id":"sess-4a87d018272b","input_length":1453,"output_length":58,"hash_ids":[2224078,2224079,2224080],"delay":437.2} +{"session_id":"sess-4a87d018272b","input_length":1346,"output_length":143,"hash_ids":[2224081,2224082,2224083],"delay":437.8} +{"session_id":"sess-4a87d018272b","input_length":2685,"output_length":94,"hash_ids":[2224084,2224085,2224086,2224087,2224088,2224089],"delay":1832.4} +{"session_id":"sess-4a87d018272b","input_length":500,"output_length":209,"hash_ids":[2224090],"delay":157.7} +{"session_id":"sess-4a87d018272b","input_length":230,"output_length":225,"hash_ids":[2224091],"delay":329.2} +{"session_id":"sess-4a87d018272b","input_length":352,"output_length":176,"hash_ids":[2224092],"delay":1650.8} +{"session_id":"sess-4a87d018272b","input_length":1339,"output_length":748,"hash_ids":[2224093,2224094,2224095],"delay":582.6} +{"session_id":"sess-4a87d018272b","input_length":287,"output_length":775,"hash_ids":[2224096],"delay":12615.7} +{"session_id":"sess-4a87d018272b","input_length":1499,"output_length":80,"hash_ids":[2224097,2224098,2224099],"delay":1546.5} +{"session_id":"sess-4a87d018272b","input_length":821,"output_length":332,"hash_ids":[2224100,2224101],"delay":3029.2} +{"session_id":"sess-f7bffb922b74","input_length":29219,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2228032,2228033,2228034,2228035,2228036,2228037],"timestamp":0.0,"group_id":14} +{"session_id":"sess-f7bffb922b74","input_length":1454,"output_length":160,"hash_ids":[2228038,2228039,2228040],"delay":2715.3} +{"session_id":"sess-f7bffb922b74","input_length":505,"output_length":92,"hash_ids":[2228041],"delay":19305.9} +{"session_id":"sess-f7bffb922b74","input_length":2411,"output_length":159,"hash_ids":[2228042,2228043,2228044,2228045,2228046],"delay":9820.6} +{"session_id":"sess-f7bffb922b74","input_length":572,"output_length":101,"hash_ids":[2228047,2228048],"delay":2414.4} +{"session_id":"sess-f7bffb922b74","input_length":1159,"output_length":197,"hash_ids":[2228049,2228050,2228051],"delay":880.9} +{"session_id":"sess-f7bffb922b74","input_length":476,"output_length":201,"hash_ids":[2228052],"delay":1263.3} +{"session_id":"sess-f7bffb922b74","input_length":780,"output_length":32,"hash_ids":[2228053,2228054],"delay":1353.1} +{"session_id":"sess-f7bffb922b74","input_length":144,"output_length":308,"hash_ids":[2228055],"delay":11220.5} +{"session_id":"sess-f7bffb922b74","input_length":1853,"output_length":327,"hash_ids":[2228056,2228057,2228058,2228059],"delay":781.8} +{"session_id":"sess-f7bffb922b74","input_length":322,"output_length":311,"hash_ids":[2228060],"delay":2546.3} +{"session_id":"sess-f7bffb922b74","input_length":446,"output_length":296,"hash_ids":[2228061],"delay":1802.9} +{"session_id":"sess-f7bffb922b74","input_length":376,"output_length":263,"hash_ids":[2228062],"delay":213.4} +{"session_id":"sess-f7bffb922b74","input_length":646,"output_length":583,"hash_ids":[2228063,2228064],"delay":3575.8} +{"session_id":"sess-f7bffb922b74","input_length":906,"output_length":358,"hash_ids":[2228065,2228066],"delay":560.9} +{"session_id":"sess-f7bffb922b74","input_length":1041,"output_length":84,"hash_ids":[2228067,2228068,2228069],"delay":805.6} +{"session_id":"sess-f7bffb922b74","input_length":1849,"output_length":220,"hash_ids":[2228070,2228071,2228072,2228073],"delay":14656.2} +{"session_id":"sess-f7bffb922b74","input_length":696,"output_length":228,"hash_ids":[2228074,2228075],"delay":2056.7} +{"session_id":"sess-f7bffb922b74","input_length":89,"output_length":148,"hash_ids":[2228076],"delay":331.8} +{"session_id":"sess-f7bffb922b74","input_length":810,"output_length":75,"hash_ids":[2228077,2228078],"delay":19057.3} +{"session_id":"sess-f7bffb922b74","input_length":680,"output_length":125,"hash_ids":[2228079,2228080],"delay":2686.5} +{"session_id":"sess-f7bffb922b74","input_length":2653,"output_length":1298,"hash_ids":[2228081,2228082,2228083,2228084,2228085,2228086],"delay":389.3} +{"session_id":"sess-f7bffb922b74","input_length":141,"output_length":110,"hash_ids":[2228087],"delay":30678.9} +{"session_id":"sess-f7bffb922b74","input_length":2516,"output_length":362,"hash_ids":[2228088,2228089,2228090,2228091,2228092],"delay":1631.1} +{"session_id":"sess-f7bffb922b74","input_length":1528,"output_length":134,"hash_ids":[2228093,2228094,2228095],"delay":498.0} +{"session_id":"sess-f7bffb922b74","input_length":396,"output_length":176,"hash_ids":[2228096],"delay":272.7} +{"session_id":"sess-f7bffb922b74","input_length":339,"output_length":206,"hash_ids":[2228097],"delay":7807.5} +{"session_id":"sess-f7bffb922b74","input_length":2616,"output_length":241,"hash_ids":[2228098,2228099,2228100,2228101,2228102,2228103],"delay":306.4} +{"session_id":"sess-f7bffb922b74","input_length":1356,"output_length":164,"hash_ids":[2228104,2228105,2228106],"delay":1590.4} +{"session_id":"sess-f7bffb922b74","input_length":356,"output_length":35,"hash_ids":[2228107],"delay":3839.6} +{"session_id":"sess-f9653a72d01e","input_length":28321,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2232032,2232033,2232034,2232035],"timestamp":0.0,"group_id":12} +{"session_id":"sess-f9653a72d01e","input_length":910,"output_length":266,"hash_ids":[2232036,2232037],"delay":1419.5} +{"session_id":"sess-f9653a72d01e","input_length":931,"output_length":732,"hash_ids":[2232038,2232039],"delay":5532.8} +{"session_id":"sess-f9653a72d01e","input_length":449,"output_length":1031,"hash_ids":[2232040],"delay":597.1} +{"session_id":"sess-f9653a72d01e","input_length":274,"output_length":1012,"hash_ids":[2232041],"delay":13145.2} +{"session_id":"sess-f9653a72d01e","input_length":856,"output_length":168,"hash_ids":[2232042,2232043],"delay":12711.2} +{"session_id":"sess-f9653a72d01e","input_length":29,"output_length":30,"hash_ids":[2232044],"delay":949.5} +{"session_id":"sess-f9653a72d01e","input_length":142,"output_length":197,"hash_ids":[2232045],"delay":254.4} +{"session_id":"sess-f9653a72d01e","input_length":240,"output_length":684,"hash_ids":[2232046],"delay":47814.5} +{"session_id":"sess-f9653a72d01e","input_length":1556,"output_length":120,"hash_ids":[2232047,2232048,2232049,2232050],"delay":752.6} +{"session_id":"sess-f9653a72d01e","input_length":655,"output_length":101,"hash_ids":[2232051,2232052],"delay":1963.4} +{"session_id":"sess-f9653a72d01e","input_length":1457,"output_length":183,"hash_ids":[2232053,2232054,2232055],"delay":1891.2} +{"session_id":"sess-f9653a72d01e","input_length":1227,"output_length":1300,"hash_ids":[2232056,2232057,2232058],"delay":914.0} +{"session_id":"sess-f9653a72d01e","input_length":211,"output_length":44,"hash_ids":[2232059],"delay":2420.0} +{"session_id":"sess-f9653a72d01e","input_length":101,"output_length":57,"hash_ids":[2232060],"delay":2592.6} +{"session_id":"sess-f9653a72d01e","input_length":763,"output_length":715,"hash_ids":[2232061,2232062],"delay":1009.9} +{"session_id":"sess-f9653a72d01e","input_length":489,"output_length":123,"hash_ids":[2232063],"delay":306.0} +{"session_id":"sess-f9653a72d01e","input_length":580,"output_length":96,"hash_ids":[2232064,2232065],"delay":881.5} +{"session_id":"sess-f9653a72d01e","input_length":1053,"output_length":406,"hash_ids":[2232066,2232067,2232068],"delay":1044.8} +{"session_id":"sess-f9653a72d01e","input_length":390,"output_length":351,"hash_ids":[2232069],"delay":608.4} +{"session_id":"sess-f9653a72d01e","input_length":114,"output_length":359,"hash_ids":[2232070],"delay":16158.6} +{"session_id":"sess-f9653a72d01e","input_length":1135,"output_length":697,"hash_ids":[2232071,2232072,2232073],"delay":24676.0} +{"session_id":"sess-f9653a72d01e","input_length":374,"output_length":332,"hash_ids":[2232074],"delay":670.8} +{"session_id":"sess-f9653a72d01e","input_length":955,"output_length":177,"hash_ids":[2232075,2232076],"delay":566.9} +{"session_id":"sess-f9653a72d01e","input_length":1395,"output_length":196,"hash_ids":[2232077,2232078,2232079],"delay":1189.9} +{"session_id":"sess-f9653a72d01e","input_length":389,"output_length":361,"hash_ids":[2232080],"delay":766.4} +{"session_id":"sess-f9653a72d01e","input_length":667,"output_length":127,"hash_ids":[2232081,2232082],"delay":811.6} +{"session_id":"sess-f9653a72d01e","input_length":646,"output_length":1079,"hash_ids":[2232083,2232084],"delay":355.4} +{"session_id":"sess-f9653a72d01e","input_length":2526,"output_length":91,"hash_ids":[2232085,2232086,2232087,2232088,2232089],"delay":740.3} +{"session_id":"sess-f9653a72d01e","input_length":293,"output_length":284,"hash_ids":[2232090],"delay":831.2} +{"session_id":"sess-f9653a72d01e","input_length":1960,"output_length":151,"hash_ids":[2232091,2232092,2232093,2232094],"delay":253.4} +{"session_id":"sess-f9653a72d01e","input_length":322,"output_length":234,"hash_ids":[2232095],"delay":1503.0} +{"session_id":"sess-f9653a72d01e","input_length":978,"output_length":143,"hash_ids":[2232096,2232097],"delay":2215.0} +{"session_id":"sess-6ab0816d7d3d","input_length":29221,"output_length":542,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2236032,2236033,2236034,2236035,2236036,2236037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6ab0816d7d3d","input_length":2271,"output_length":81,"hash_ids":[2236038,2236039,2236040,2236041,2236042],"delay":2879.9} +{"session_id":"sess-6ab0816d7d3d","input_length":1532,"output_length":93,"hash_ids":[2236043,2236044,2236045],"delay":1698.9} +{"session_id":"sess-6ab0816d7d3d","input_length":989,"output_length":123,"hash_ids":[2236046,2236047],"delay":709.5} +{"session_id":"sess-6ab0816d7d3d","input_length":1117,"output_length":286,"hash_ids":[2236048,2236049,2236050],"delay":917.7} +{"session_id":"sess-6ab0816d7d3d","input_length":2833,"output_length":329,"hash_ids":[2236051,2236052,2236053,2236054,2236055,2236056],"delay":507.4} +{"session_id":"sess-6ab0816d7d3d","input_length":561,"output_length":121,"hash_ids":[2236057,2236058],"delay":263.0} +{"session_id":"sess-6ab0816d7d3d","input_length":1844,"output_length":620,"hash_ids":[2236059,2236060,2236061,2236062],"delay":28040.0} +{"session_id":"sess-6ab0816d7d3d","input_length":544,"output_length":62,"hash_ids":[2236063,2236064],"delay":353.1} +{"session_id":"sess-6ab0816d7d3d","input_length":588,"output_length":487,"hash_ids":[2236065,2236066],"delay":776.7} +{"session_id":"sess-6ab0816d7d3d","input_length":508,"output_length":122,"hash_ids":[2236067],"delay":38735.8} +{"session_id":"sess-6ab0816d7d3d","input_length":1537,"output_length":30,"hash_ids":[2236068,2236069,2236070,2236071],"delay":593.0} +{"session_id":"sess-6ab0816d7d3d","input_length":1718,"output_length":415,"hash_ids":[2236072,2236073,2236074,2236075],"delay":4798.8} +{"session_id":"sess-6ab0816d7d3d","input_length":219,"output_length":64,"hash_ids":[2236076],"delay":228.8} +{"session_id":"sess-6ab0816d7d3d","input_length":621,"output_length":67,"hash_ids":[2236077,2236078],"delay":682.0} +{"session_id":"sess-6ab0816d7d3d","input_length":1650,"output_length":647,"hash_ids":[2236079,2236080,2236081,2236082],"delay":15044.7} +{"session_id":"sess-6ab0816d7d3d","input_length":864,"output_length":239,"hash_ids":[2236083,2236084],"delay":1341.9} +{"session_id":"sess-6ab0816d7d3d","input_length":961,"output_length":182,"hash_ids":[2236085,2236086],"delay":378.2} +{"session_id":"sess-6ab0816d7d3d","input_length":482,"output_length":1458,"hash_ids":[2236087],"delay":834.2} +{"session_id":"sess-6ab0816d7d3d","input_length":1195,"output_length":360,"hash_ids":[2236088,2236089,2236090],"delay":240.4} +{"session_id":"sess-6ab0816d7d3d","input_length":200,"output_length":365,"hash_ids":[2236091],"delay":8687.9} +{"session_id":"sess-6ab0816d7d3d","input_length":2019,"output_length":30,"hash_ids":[2236092,2236093,2236094,2236095],"delay":538.2} +{"session_id":"sess-a394d91b8750","input_length":26163,"output_length":1126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851],"timestamp":0.0,"group_id":24} +{"session_id":"sess-a394d91b8750","input_length":946,"output_length":280,"hash_ids":[2236096,2236097],"delay":4244.9} +{"session_id":"sess-a394d91b8750","input_length":643,"output_length":133,"hash_ids":[2236098,2236099],"delay":466.0} +{"session_id":"sess-a394d91b8750","input_length":459,"output_length":238,"hash_ids":[2236100],"delay":377.9} +{"session_id":"sess-a394d91b8750","input_length":452,"output_length":278,"hash_ids":[2236101],"delay":537.7} +{"session_id":"sess-a394d91b8750","input_length":302,"output_length":120,"hash_ids":[2236102],"delay":12093.4} +{"session_id":"sess-a394d91b8750","input_length":2488,"output_length":139,"hash_ids":[2236103,2236104,2236105,2236106,2236107],"delay":7659.3} +{"session_id":"sess-a394d91b8750","input_length":582,"output_length":308,"hash_ids":[2236108,2236109],"delay":37660.2} +{"session_id":"sess-a394d91b8750","input_length":263,"output_length":448,"hash_ids":[2236110],"delay":1054.1} +{"session_id":"sess-a394d91b8750","input_length":829,"output_length":43,"hash_ids":[2236111,2236112],"delay":4131.7} +{"session_id":"sess-a394d91b8750","input_length":1801,"output_length":241,"hash_ids":[2236113,2236114,2236115,2236116],"delay":14898.2} +{"session_id":"sess-a394d91b8750","input_length":864,"output_length":201,"hash_ids":[2236117,2236118],"delay":448.0} +{"session_id":"sess-a394d91b8750","input_length":399,"output_length":151,"hash_ids":[2236119],"delay":9294.1} +{"session_id":"sess-a394d91b8750","input_length":1170,"output_length":263,"hash_ids":[2236120,2236121,2236122],"delay":3533.4} +{"session_id":"sess-a394d91b8750","input_length":479,"output_length":441,"hash_ids":[2236123],"delay":1142.2} +{"session_id":"sess-a394d91b8750","input_length":1050,"output_length":140,"hash_ids":[2236124,2236125,2236126],"delay":4626.5} +{"session_id":"sess-a394d91b8750","input_length":1348,"output_length":160,"hash_ids":[2236127,2236128,2236129],"delay":3798.7} +{"session_id":"sess-a394d91b8750","input_length":906,"output_length":522,"hash_ids":[2236130,2236131],"delay":702.3} +{"session_id":"sess-a394d91b8750","input_length":2473,"output_length":127,"hash_ids":[2236132,2236133,2236134,2236135,2236136],"delay":80.0} +{"session_id":"sess-a394d91b8750","input_length":1402,"output_length":243,"hash_ids":[2236137,2236138,2236139],"delay":212.8} +{"session_id":"sess-a394d91b8750","input_length":940,"output_length":161,"hash_ids":[2236140,2236141],"delay":791.7} +{"session_id":"sess-a394d91b8750","input_length":519,"output_length":147,"hash_ids":[2236142,2236143],"delay":111.2} +{"session_id":"sess-a394d91b8750","input_length":2201,"output_length":181,"hash_ids":[2236144,2236145,2236146,2236147,2236148],"delay":682.8} +{"session_id":"sess-a394d91b8750","input_length":1070,"output_length":454,"hash_ids":[2236149,2236150,2236151],"delay":770.3} +{"session_id":"sess-a394d91b8750","input_length":1233,"output_length":152,"hash_ids":[2236152,2236153,2236154],"delay":1244.7} +{"session_id":"sess-a394d91b8750","input_length":665,"output_length":189,"hash_ids":[2236155,2236156],"delay":996.4} +{"session_id":"sess-a394d91b8750","input_length":746,"output_length":108,"hash_ids":[2236157,2236158],"delay":564.8} +{"session_id":"sess-a394d91b8750","input_length":498,"output_length":167,"hash_ids":[2236159],"delay":189.1} +{"session_id":"sess-a394d91b8750","input_length":557,"output_length":935,"hash_ids":[2236160,2236161],"delay":348.8} +{"session_id":"sess-a394d91b8750","input_length":955,"output_length":212,"hash_ids":[2236162,2236163],"delay":245.9} +{"session_id":"sess-a394d91b8750","input_length":1757,"output_length":153,"hash_ids":[2236164,2236165,2236166,2236167],"delay":137.5} +{"session_id":"sess-4da12504fae8","input_length":28538,"output_length":883,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2244032,2244033,2244034,2244035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4da12504fae8","input_length":595,"output_length":467,"hash_ids":[2244036,2244037],"delay":1710.5} +{"session_id":"sess-4da12504fae8","input_length":505,"output_length":202,"hash_ids":[2244038],"delay":577.3} +{"session_id":"sess-4da12504fae8","input_length":309,"output_length":40,"hash_ids":[2244039],"delay":1625.7} +{"session_id":"sess-4da12504fae8","input_length":905,"output_length":67,"hash_ids":[2244040,2244041],"delay":622.3} +{"session_id":"sess-4da12504fae8","input_length":675,"output_length":1419,"hash_ids":[2244042,2244043],"delay":780.9} +{"session_id":"sess-4da12504fae8","input_length":1235,"output_length":158,"hash_ids":[2244044,2244045,2244046],"delay":1592.4} +{"session_id":"sess-4da12504fae8","input_length":325,"output_length":363,"hash_ids":[2244047],"delay":3266.4} +{"session_id":"sess-4da12504fae8","input_length":2364,"output_length":114,"hash_ids":[2244048,2244049,2244050,2244051,2244052],"delay":3425.5} +{"session_id":"sess-4da12504fae8","input_length":2501,"output_length":372,"hash_ids":[2244053,2244054,2244055,2244056,2244057],"delay":359.9} +{"session_id":"sess-4da12504fae8","input_length":935,"output_length":208,"hash_ids":[2244058,2244059],"delay":2186.0} +{"session_id":"sess-4da12504fae8","input_length":2734,"output_length":65,"hash_ids":[2244060,2244061,2244062,2244063,2244064,2244065],"delay":522.1} +{"session_id":"sess-4da12504fae8","input_length":585,"output_length":812,"hash_ids":[2244066,2244067],"delay":1811.3} +{"session_id":"sess-4da12504fae8","input_length":1188,"output_length":55,"hash_ids":[2244068,2244069,2244070],"delay":2959.5} +{"session_id":"sess-4da12504fae8","input_length":510,"output_length":148,"hash_ids":[2244071],"delay":356.7} +{"session_id":"sess-4da12504fae8","input_length":274,"output_length":1393,"hash_ids":[2244072],"delay":1610.5} +{"session_id":"sess-4da12504fae8","input_length":359,"output_length":751,"hash_ids":[2244073],"delay":1386.5} +{"session_id":"sess-4da12504fae8","input_length":566,"output_length":426,"hash_ids":[2244074,2244075],"delay":1145.4} +{"session_id":"sess-4da12504fae8","input_length":1104,"output_length":332,"hash_ids":[2244076,2244077,2244078],"delay":298.1} +{"session_id":"sess-4da12504fae8","input_length":1247,"output_length":301,"hash_ids":[2244079,2244080,2244081],"delay":291.4} +{"session_id":"sess-4da12504fae8","input_length":520,"output_length":228,"hash_ids":[2244082,2244083],"delay":435.1} +{"session_id":"sess-4da12504fae8","input_length":1306,"output_length":305,"hash_ids":[2244084,2244085,2244086],"delay":473.0} +{"session_id":"sess-4da12504fae8","input_length":279,"output_length":1204,"hash_ids":[2244087],"delay":809.3} +{"session_id":"sess-4da12504fae8","input_length":1234,"output_length":177,"hash_ids":[2244088,2244089,2244090],"delay":401.0} +{"session_id":"sess-4da12504fae8","input_length":61,"output_length":493,"hash_ids":[2244091],"delay":239.7} +{"session_id":"sess-4da12504fae8","input_length":431,"output_length":47,"hash_ids":[2244092],"delay":667.7} +{"session_id":"sess-4da12504fae8","input_length":805,"output_length":45,"hash_ids":[2244093,2244094],"delay":159.9} +{"session_id":"sess-4da12504fae8","input_length":918,"output_length":375,"hash_ids":[2244095,2244096],"delay":720.3} +{"session_id":"sess-4da12504fae8","input_length":343,"output_length":322,"hash_ids":[2244097],"delay":1073.8} +{"session_id":"sess-faccec126a98","input_length":29489,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2248032,2248033,2248034,2248035,2248036,2248037],"timestamp":0.0,"group_id":7} +{"session_id":"sess-faccec126a98","input_length":1913,"output_length":484,"hash_ids":[2248038,2248039,2248040,2248041],"delay":23348.1} +{"session_id":"sess-faccec126a98","input_length":2674,"output_length":39,"hash_ids":[2248042,2248043,2248044,2248045,2248046,2248047],"delay":1268.7} +{"session_id":"sess-387f290164c2","input_length":27020,"output_length":273,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,2252032],"timestamp":0.0,"group_id":26} +{"session_id":"sess-387f290164c2","input_length":251,"output_length":415,"hash_ids":[2252033],"delay":1459.2} +{"session_id":"sess-387f290164c2","input_length":652,"output_length":853,"hash_ids":[2252034,2252035],"delay":8985.9} +{"session_id":"sess-387f290164c2","input_length":1130,"output_length":102,"hash_ids":[2252036,2252037,2252038],"delay":1207.4} +{"session_id":"sess-387f290164c2","input_length":404,"output_length":328,"hash_ids":[2252039],"delay":681.5} +{"session_id":"sess-387f290164c2","input_length":155,"output_length":540,"hash_ids":[2252040],"delay":1686.9} +{"session_id":"sess-387f290164c2","input_length":244,"output_length":791,"hash_ids":[2252041],"delay":1041.2} +{"session_id":"sess-387f290164c2","input_length":750,"output_length":198,"hash_ids":[2252042,2252043],"delay":875.3} +{"session_id":"sess-387f290164c2","input_length":642,"output_length":648,"hash_ids":[2252044,2252045],"delay":2384.1} +{"session_id":"sess-387f290164c2","input_length":707,"output_length":31,"hash_ids":[2252046,2252047],"delay":505.6} +{"session_id":"sess-387f290164c2","input_length":290,"output_length":76,"hash_ids":[2252048],"delay":823.0} +{"session_id":"sess-387f290164c2","input_length":1019,"output_length":199,"hash_ids":[2252049,2252050],"delay":4260.0} +{"session_id":"sess-c5da81e95993","input_length":27357,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2256032,2256033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c5da81e95993","input_length":1780,"output_length":185,"hash_ids":[2256034,2256035,2256036,2256037],"delay":873.7} +{"session_id":"sess-c5da81e95993","input_length":851,"output_length":177,"hash_ids":[2256038,2256039],"delay":10263.7} +{"session_id":"sess-c5da81e95993","input_length":1452,"output_length":151,"hash_ids":[2256040,2256041,2256042],"delay":214.6} +{"session_id":"sess-c5da81e95993","input_length":1012,"output_length":324,"hash_ids":[2256043,2256044],"delay":5581.8} +{"session_id":"sess-c5da81e95993","input_length":1342,"output_length":111,"hash_ids":[2256045,2256046,2256047],"delay":30008.2} +{"session_id":"sess-c5da81e95993","input_length":1130,"output_length":252,"hash_ids":[2256048,2256049,2256050],"delay":39524.5} +{"session_id":"sess-c5da81e95993","input_length":1228,"output_length":225,"hash_ids":[2256051,2256052,2256053],"delay":13444.3} +{"session_id":"sess-c5da81e95993","input_length":600,"output_length":78,"hash_ids":[2256054,2256055],"delay":1636.0} +{"session_id":"sess-c5da81e95993","input_length":934,"output_length":311,"hash_ids":[2256056,2256057],"delay":530.3} +{"session_id":"sess-c5da81e95993","input_length":1355,"output_length":30,"hash_ids":[2256058,2256059,2256060],"delay":4736.8} +{"session_id":"sess-c5da81e95993","input_length":1134,"output_length":465,"hash_ids":[2256061,2256062,2256063],"delay":921.7} +{"session_id":"sess-c5da81e95993","input_length":2210,"output_length":38,"hash_ids":[2256064,2256065,2256066,2256067,2256068],"delay":203.3} +{"session_id":"sess-c5da81e95993","input_length":554,"output_length":201,"hash_ids":[2256069,2256070],"delay":7982.0} +{"session_id":"sess-c5da81e95993","input_length":466,"output_length":236,"hash_ids":[2256071],"delay":880.1} +{"session_id":"sess-9f8f3d362701","input_length":29562,"output_length":47,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,2260032,2260033,2260034,2260035,2260036,2260037],"timestamp":0.0,"group_id":19} +{"session_id":"sess-9f8f3d362701","input_length":932,"output_length":317,"hash_ids":[2260038,2260039],"delay":2077.2} +{"session_id":"sess-9f8f3d362701","input_length":136,"output_length":890,"hash_ids":[2260040],"delay":1782.3} +{"session_id":"sess-9f8f3d362701","input_length":923,"output_length":298,"hash_ids":[2260041,2260042],"delay":2455.6} +{"session_id":"sess-9f8f3d362701","input_length":267,"output_length":168,"hash_ids":[2260043],"delay":430.3} +{"session_id":"sess-9f8f3d362701","input_length":991,"output_length":820,"hash_ids":[2260044,2260045],"delay":6539.9} +{"session_id":"sess-9f8f3d362701","input_length":2418,"output_length":291,"hash_ids":[2260046,2260047,2260048,2260049,2260050],"delay":4593.0} +{"session_id":"sess-9f8f3d362701","input_length":1771,"output_length":73,"hash_ids":[2260051,2260052,2260053,2260054],"delay":583.6} +{"session_id":"sess-9f8f3d362701","input_length":2482,"output_length":38,"hash_ids":[2260055,2260056,2260057,2260058,2260059],"delay":35271.1} +{"session_id":"sess-9f8f3d362701","input_length":641,"output_length":462,"hash_ids":[2260060,2260061],"delay":2375.1} +{"session_id":"sess-9f8f3d362701","input_length":538,"output_length":220,"hash_ids":[2260062,2260063],"delay":603.5} +{"session_id":"sess-9f8f3d362701","input_length":258,"output_length":71,"hash_ids":[2260064],"delay":13062.3} +{"session_id":"sess-9f8f3d362701","input_length":429,"output_length":740,"hash_ids":[2260065],"delay":772.5} +{"session_id":"sess-9f8f3d362701","input_length":489,"output_length":260,"hash_ids":[2260066],"delay":191.6} +{"session_id":"sess-9f8f3d362701","input_length":901,"output_length":361,"hash_ids":[2260067,2260068],"delay":19774.8} +{"session_id":"sess-9f8f3d362701","input_length":1535,"output_length":309,"hash_ids":[2260069,2260070,2260071],"delay":916.1} +{"session_id":"sess-9f8f3d362701","input_length":1784,"output_length":215,"hash_ids":[2260072,2260073,2260074,2260075],"delay":1257.1} +{"session_id":"sess-9f8f3d362701","input_length":2040,"output_length":1203,"hash_ids":[2260076,2260077,2260078,2260079],"delay":1049.0} +{"session_id":"sess-9f8f3d362701","input_length":320,"output_length":221,"hash_ids":[2260080],"delay":294.3} +{"session_id":"sess-9f8f3d362701","input_length":334,"output_length":200,"hash_ids":[2260081],"delay":531.8} +{"session_id":"sess-9f8f3d362701","input_length":858,"output_length":158,"hash_ids":[2260082,2260083],"delay":3922.4} +{"session_id":"sess-9f8f3d362701","input_length":1825,"output_length":141,"hash_ids":[2260084,2260085,2260086,2260087],"delay":507.6} +{"session_id":"sess-9f8f3d362701","input_length":285,"output_length":128,"hash_ids":[2260088],"delay":25017.7} +{"session_id":"sess-9f8f3d362701","input_length":2528,"output_length":117,"hash_ids":[2260089,2260090,2260091,2260092,2260093],"delay":275.3} +{"session_id":"sess-9f8f3d362701","input_length":1897,"output_length":30,"hash_ids":[2260094,2260095,2260096,2260097],"delay":946.1} +{"session_id":"sess-9f8f3d362701","input_length":1479,"output_length":325,"hash_ids":[2260098,2260099,2260100],"delay":422.5} +{"session_id":"sess-4b35fda1411a","input_length":33848,"output_length":751,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2264032,2264033,2264034,2264035,2264036,2264037,2264038,2264039,2264040,2264041,2264042,2264043,2264044,2264045,2264046],"timestamp":0.0,"group_id":4} +{"session_id":"sess-4b35fda1411a","input_length":669,"output_length":443,"hash_ids":[2264047,2264048],"delay":18584.7} +{"session_id":"sess-4b35fda1411a","input_length":1122,"output_length":87,"hash_ids":[2264049,2264050,2264051],"delay":32319.8} +{"session_id":"sess-4b35fda1411a","input_length":66,"output_length":248,"hash_ids":[2264052],"delay":1212.5} +{"session_id":"sess-4b35fda1411a","input_length":1497,"output_length":42,"hash_ids":[2264053,2264054,2264055],"delay":1570.0} +{"session_id":"sess-4b35fda1411a","input_length":441,"output_length":30,"hash_ids":[2264056],"delay":1656.8} +{"session_id":"sess-4b35fda1411a","input_length":131,"output_length":234,"hash_ids":[2264057],"delay":1778.9} +{"session_id":"sess-4b35fda1411a","input_length":2328,"output_length":394,"hash_ids":[2264058,2264059,2264060,2264061,2264062],"delay":289.5} +{"session_id":"sess-4b35fda1411a","input_length":2723,"output_length":224,"hash_ids":[2264063,2264064,2264065,2264066,2264067,2264068],"delay":2480.2} +{"session_id":"sess-4b35fda1411a","input_length":727,"output_length":213,"hash_ids":[2264069,2264070],"delay":3777.4} +{"session_id":"sess-4b35fda1411a","input_length":1003,"output_length":44,"hash_ids":[2264071,2264072],"delay":886.3} +{"session_id":"sess-4b35fda1411a","input_length":1411,"output_length":239,"hash_ids":[2264073,2264074,2264075],"delay":1566.5} +{"session_id":"sess-4b35fda1411a","input_length":1508,"output_length":218,"hash_ids":[2264076,2264077,2264078],"delay":772.2} +{"session_id":"sess-4b35fda1411a","input_length":1394,"output_length":1203,"hash_ids":[2264079,2264080,2264081],"delay":14218.3} +{"session_id":"sess-4b35fda1411a","input_length":1890,"output_length":61,"hash_ids":[2264082,2264083,2264084,2264085],"delay":296.4} +{"session_id":"sess-4b35fda1411a","input_length":2487,"output_length":82,"hash_ids":[2264086,2264087,2264088,2264089,2264090],"delay":19296.0} +{"session_id":"sess-4b35fda1411a","input_length":317,"output_length":68,"hash_ids":[2264091],"delay":621.5} +{"session_id":"sess-4b35fda1411a","input_length":980,"output_length":135,"hash_ids":[2264092,2264093],"delay":243.0} +{"session_id":"sess-4b35fda1411a","input_length":196,"output_length":101,"hash_ids":[2264094],"delay":657.0} +{"session_id":"sess-4b35fda1411a","input_length":693,"output_length":114,"hash_ids":[2264095,2264096],"delay":304.0} +{"session_id":"sess-4b35fda1411a","input_length":1943,"output_length":1042,"hash_ids":[2264097,2264098,2264099,2264100],"delay":2260.7} +{"session_id":"sess-4b35fda1411a","input_length":586,"output_length":120,"hash_ids":[2264101,2264102],"delay":17608.9} +{"session_id":"sess-4b35fda1411a","input_length":1207,"output_length":284,"hash_ids":[2264103,2264104,2264105],"delay":2072.9} +{"session_id":"sess-3ec7802e6300","input_length":26841,"output_length":53,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2268032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-3ec7802e6300","input_length":644,"output_length":308,"hash_ids":[2268033,2268034],"delay":51138.3} +{"session_id":"sess-3ec7802e6300","input_length":663,"output_length":317,"hash_ids":[2268035,2268036],"delay":845.5} +{"session_id":"sess-3ec7802e6300","input_length":285,"output_length":206,"hash_ids":[2268037],"delay":821.9} +{"session_id":"sess-3ec7802e6300","input_length":1837,"output_length":118,"hash_ids":[2268038,2268039,2268040,2268041],"delay":16678.2} +{"session_id":"sess-3ec7802e6300","input_length":1966,"output_length":181,"hash_ids":[2268042,2268043,2268044,2268045],"delay":283.2} +{"session_id":"sess-3ec7802e6300","input_length":975,"output_length":125,"hash_ids":[2268046,2268047],"delay":185.9} +{"session_id":"sess-3ec7802e6300","input_length":439,"output_length":30,"hash_ids":[2268048],"delay":1258.0} +{"session_id":"sess-3ec7802e6300","input_length":496,"output_length":416,"hash_ids":[2268049],"delay":3715.3} +{"session_id":"sess-3ec7802e6300","input_length":339,"output_length":177,"hash_ids":[2268050],"delay":877.3} +{"session_id":"sess-3ec7802e6300","input_length":1783,"output_length":202,"hash_ids":[2268051,2268052,2268053,2268054],"delay":13845.3} +{"session_id":"sess-3ec7802e6300","input_length":297,"output_length":96,"hash_ids":[2268055],"delay":610.2} +{"session_id":"sess-3ec7802e6300","input_length":1312,"output_length":83,"hash_ids":[2268056,2268057,2268058],"delay":2752.4} +{"session_id":"sess-3ec7802e6300","input_length":878,"output_length":100,"hash_ids":[2268059,2268060],"delay":444.1} +{"session_id":"sess-3ec7802e6300","input_length":601,"output_length":99,"hash_ids":[2268061,2268062],"delay":663.1} +{"session_id":"sess-3ec7802e6300","input_length":1005,"output_length":336,"hash_ids":[2268063,2268064],"delay":5344.7} +{"session_id":"sess-3ec7802e6300","input_length":1433,"output_length":295,"hash_ids":[2268065,2268066,2268067],"delay":3194.3} +{"session_id":"sess-3ec7802e6300","input_length":357,"output_length":71,"hash_ids":[2268068],"delay":404.9} +{"session_id":"sess-3ec7802e6300","input_length":1683,"output_length":91,"hash_ids":[2268069,2268070,2268071,2268072],"delay":833.6} +{"session_id":"sess-3ec7802e6300","input_length":210,"output_length":187,"hash_ids":[2268073],"delay":350.7} +{"session_id":"sess-3ec7802e6300","input_length":990,"output_length":481,"hash_ids":[2268074,2268075],"delay":2037.0} +{"session_id":"sess-3ec7802e6300","input_length":1465,"output_length":742,"hash_ids":[2268076,2268077,2268078],"delay":26272.4} +{"session_id":"sess-3ec7802e6300","input_length":389,"output_length":43,"hash_ids":[2268079],"delay":10891.0} +{"session_id":"sess-3ec7802e6300","input_length":417,"output_length":221,"hash_ids":[2268080],"delay":3164.7} +{"session_id":"sess-3ec7802e6300","input_length":342,"output_length":144,"hash_ids":[2268081],"delay":297.5} +{"session_id":"sess-3ec7802e6300","input_length":1048,"output_length":723,"hash_ids":[2268082,2268083,2268084],"delay":4616.1} +{"session_id":"sess-3ec7802e6300","input_length":362,"output_length":96,"hash_ids":[2268085],"delay":455.2} +{"session_id":"sess-3ec7802e6300","input_length":187,"output_length":505,"hash_ids":[2268086],"delay":12947.3} +{"session_id":"sess-3ec7802e6300","input_length":1230,"output_length":235,"hash_ids":[2268087,2268088,2268089],"delay":2610.7} +{"session_id":"sess-3ec7802e6300","input_length":542,"output_length":106,"hash_ids":[2268090,2268091],"delay":2125.9} +{"session_id":"sess-3ec7802e6300","input_length":257,"output_length":357,"hash_ids":[2268092],"delay":3363.0} +{"session_id":"sess-3ec7802e6300","input_length":476,"output_length":132,"hash_ids":[2268093],"delay":930.2} +{"session_id":"sess-3ec7802e6300","input_length":1198,"output_length":472,"hash_ids":[2268094,2268095,2268096],"delay":629.7} +{"session_id":"sess-3ec7802e6300","input_length":434,"output_length":597,"hash_ids":[2268097],"delay":866.9} +{"session_id":"sess-3ec7802e6300","input_length":600,"output_length":58,"hash_ids":[2268098,2268099],"delay":11674.7} +{"session_id":"sess-3ec7802e6300","input_length":1829,"output_length":1381,"hash_ids":[2268100,2268101,2268102,2268103],"delay":117.3} +{"session_id":"sess-cc9cbe303075","input_length":26500,"output_length":423,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051],"timestamp":0.0,"group_id":15} +{"session_id":"sess-cc9cbe303075","input_length":436,"output_length":164,"hash_ids":[2268104],"delay":986.0} +{"session_id":"sess-cc9cbe303075","input_length":164,"output_length":441,"hash_ids":[2268105],"delay":3947.4} +{"session_id":"sess-cc9cbe303075","input_length":605,"output_length":332,"hash_ids":[2268106,2268107],"delay":2649.4} +{"session_id":"sess-cc9cbe303075","input_length":2649,"output_length":165,"hash_ids":[2268108,2268109,2268110,2268111,2268112,2268113],"delay":1447.9} +{"session_id":"sess-cc9cbe303075","input_length":856,"output_length":161,"hash_ids":[2268114,2268115],"delay":350.0} +{"session_id":"sess-cc9cbe303075","input_length":395,"output_length":164,"hash_ids":[2268116],"delay":11095.1} +{"session_id":"sess-cc9cbe303075","input_length":744,"output_length":181,"hash_ids":[2268117,2268118],"delay":1162.7} +{"session_id":"sess-cc9cbe303075","input_length":2178,"output_length":48,"hash_ids":[2268119,2268120,2268121,2268122,2268123],"delay":422.3} +{"session_id":"sess-cc9cbe303075","input_length":186,"output_length":191,"hash_ids":[2268124],"delay":17682.1} +{"session_id":"sess-cc9cbe303075","input_length":516,"output_length":207,"hash_ids":[2268125,2268126],"delay":640.9} +{"session_id":"sess-cc9cbe303075","input_length":1113,"output_length":128,"hash_ids":[2268127,2268128,2268129],"delay":503.9} +{"session_id":"sess-cc9cbe303075","input_length":751,"output_length":364,"hash_ids":[2268130,2268131],"delay":588.8} +{"session_id":"sess-cc9cbe303075","input_length":1182,"output_length":167,"hash_ids":[2268132,2268133,2268134],"delay":1047.9} +{"session_id":"sess-cc9cbe303075","input_length":282,"output_length":264,"hash_ids":[2268135],"delay":572.2} +{"session_id":"sess-cc9cbe303075","input_length":2448,"output_length":1101,"hash_ids":[2268136,2268137,2268138,2268139,2268140],"delay":392.4} +{"session_id":"sess-cc9cbe303075","input_length":206,"output_length":48,"hash_ids":[2268141],"delay":569.0} +{"session_id":"sess-cc9cbe303075","input_length":752,"output_length":212,"hash_ids":[2268142,2268143],"delay":8320.2} +{"session_id":"sess-cc9cbe303075","input_length":610,"output_length":333,"hash_ids":[2268144,2268145],"delay":347.5} +{"session_id":"sess-cc9cbe303075","input_length":360,"output_length":91,"hash_ids":[2268146],"delay":899.9} +{"session_id":"sess-cc9cbe303075","input_length":225,"output_length":44,"hash_ids":[2268147],"delay":770.3} +{"session_id":"sess-cc9cbe303075","input_length":1862,"output_length":302,"hash_ids":[2268148,2268149,2268150,2268151],"delay":380.9} +{"session_id":"sess-cc9cbe303075","input_length":2253,"output_length":176,"hash_ids":[2268152,2268153,2268154,2268155,2268156],"delay":1160.8} +{"session_id":"sess-cc9cbe303075","input_length":1824,"output_length":259,"hash_ids":[2268157,2268158,2268159,2268160],"delay":14260.8} +{"session_id":"sess-cc9cbe303075","input_length":1944,"output_length":551,"hash_ids":[2268161,2268162,2268163,2268164],"delay":412.1} +{"session_id":"sess-cc9cbe303075","input_length":289,"output_length":117,"hash_ids":[2268165],"delay":603.1} +{"session_id":"sess-cc9cbe303075","input_length":2303,"output_length":188,"hash_ids":[2268166,2268167,2268168,2268169,2268170],"delay":537.6} +{"session_id":"sess-cc9cbe303075","input_length":902,"output_length":191,"hash_ids":[2268171,2268172],"delay":136.7} +{"session_id":"sess-cc9cbe303075","input_length":758,"output_length":61,"hash_ids":[2268173,2268174],"delay":431.5} +{"session_id":"sess-cc9cbe303075","input_length":959,"output_length":90,"hash_ids":[2268175,2268176],"delay":249.5} +{"session_id":"sess-cc9cbe303075","input_length":551,"output_length":636,"hash_ids":[2268177,2268178],"delay":548.1} +{"session_id":"sess-09ac274b3edd","input_length":27029,"output_length":37,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2276032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-09ac274b3edd","input_length":189,"output_length":518,"hash_ids":[2276033],"delay":290.5} +{"session_id":"sess-09ac274b3edd","input_length":516,"output_length":63,"hash_ids":[2276034,2276035],"delay":6362.0} +{"session_id":"sess-09ac274b3edd","input_length":780,"output_length":227,"hash_ids":[2276036,2276037],"delay":3769.7} +{"session_id":"sess-09ac274b3edd","input_length":803,"output_length":88,"hash_ids":[2276038,2276039],"delay":8007.2} +{"session_id":"sess-09ac274b3edd","input_length":1183,"output_length":400,"hash_ids":[2276040,2276041,2276042],"delay":2116.7} +{"session_id":"sess-09ac274b3edd","input_length":669,"output_length":357,"hash_ids":[2276043,2276044],"delay":7678.2} +{"session_id":"sess-09ac274b3edd","input_length":1461,"output_length":611,"hash_ids":[2276045,2276046,2276047],"delay":1084.4} +{"session_id":"sess-09ac274b3edd","input_length":573,"output_length":261,"hash_ids":[2276048,2276049],"delay":2330.8} +{"session_id":"sess-09ac274b3edd","input_length":1864,"output_length":222,"hash_ids":[2276050,2276051,2276052,2276053],"delay":5580.0} +{"session_id":"sess-09ac274b3edd","input_length":690,"output_length":167,"hash_ids":[2276054,2276055],"delay":1933.0} +{"session_id":"sess-09ac274b3edd","input_length":188,"output_length":417,"hash_ids":[2276056],"delay":8800.2} +{"session_id":"sess-09ac274b3edd","input_length":852,"output_length":107,"hash_ids":[2276057,2276058],"delay":1176.3} +{"session_id":"sess-09ac274b3edd","input_length":261,"output_length":146,"hash_ids":[2276059],"delay":2652.8} +{"session_id":"sess-09ac274b3edd","input_length":230,"output_length":565,"hash_ids":[2276060],"delay":327.3} +{"session_id":"sess-09ac274b3edd","input_length":233,"output_length":360,"hash_ids":[2276061],"delay":39684.1} +{"session_id":"sess-09ac274b3edd","input_length":650,"output_length":249,"hash_ids":[2276062,2276063],"delay":2830.0} +{"session_id":"sess-09ac274b3edd","input_length":837,"output_length":99,"hash_ids":[2276064,2276065],"delay":8541.6} +{"session_id":"sess-09ac274b3edd","input_length":372,"output_length":39,"hash_ids":[2276066],"delay":1524.5} +{"session_id":"sess-09ac274b3edd","input_length":841,"output_length":394,"hash_ids":[2276067,2276068],"delay":23135.3} +{"session_id":"sess-09ac274b3edd","input_length":208,"output_length":316,"hash_ids":[2276069],"delay":1006.4} +{"session_id":"sess-09ac274b3edd","input_length":333,"output_length":128,"hash_ids":[2276070],"delay":296.6} +{"session_id":"sess-09ac274b3edd","input_length":948,"output_length":169,"hash_ids":[2276071,2276072],"delay":459.5} +{"session_id":"sess-09ac274b3edd","input_length":1329,"output_length":346,"hash_ids":[2276073,2276074,2276075],"delay":13103.2} +{"session_id":"sess-09ac274b3edd","input_length":747,"output_length":113,"hash_ids":[2276076,2276077],"delay":715.5} +{"session_id":"sess-09ac274b3edd","input_length":2885,"output_length":41,"hash_ids":[2276078,2276079,2276080,2276081,2276082,2276083],"delay":188.5} +{"session_id":"sess-09ac274b3edd","input_length":2568,"output_length":209,"hash_ids":[2276084,2276085,2276086,2276087,2276088,2276089],"delay":379.5} +{"session_id":"sess-09ac274b3edd","input_length":2302,"output_length":96,"hash_ids":[2276090,2276091,2276092,2276093,2276094],"delay":1240.7} +{"session_id":"sess-09ac274b3edd","input_length":392,"output_length":98,"hash_ids":[2276095],"delay":495.4} +{"session_id":"sess-09ac274b3edd","input_length":517,"output_length":130,"hash_ids":[2276096,2276097],"delay":227.5} +{"session_id":"sess-09ac274b3edd","input_length":2752,"output_length":371,"hash_ids":[2276098,2276099,2276100,2276101,2276102,2276103],"delay":10858.5} +{"session_id":"sess-9e97c54a2132","input_length":32656,"output_length":177,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2280032,2280033,2280034,2280035,2280036,2280037,2280038,2280039,2280040,2280041,2280042,2280043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9e97c54a2132","input_length":41,"output_length":293,"hash_ids":[2280044],"delay":21545.8} +{"session_id":"sess-9e97c54a2132","input_length":275,"output_length":310,"hash_ids":[2280045],"delay":17085.2} +{"session_id":"sess-9e97c54a2132","input_length":887,"output_length":168,"hash_ids":[2280046,2280047],"delay":588.3} +{"session_id":"sess-9e97c54a2132","input_length":925,"output_length":135,"hash_ids":[2280048,2280049],"delay":1229.5} +{"session_id":"sess-9e97c54a2132","input_length":179,"output_length":380,"hash_ids":[2280050],"delay":546.5} +{"session_id":"sess-9e97c54a2132","input_length":501,"output_length":62,"hash_ids":[2280051],"delay":2061.7} +{"session_id":"sess-9e97c54a2132","input_length":960,"output_length":48,"hash_ids":[2280052,2280053],"delay":10684.1} +{"session_id":"sess-9e97c54a2132","input_length":792,"output_length":86,"hash_ids":[2280054,2280055],"delay":9013.8} +{"session_id":"sess-9e97c54a2132","input_length":688,"output_length":919,"hash_ids":[2280056,2280057],"delay":712.1} +{"session_id":"sess-9e97c54a2132","input_length":269,"output_length":160,"hash_ids":[2280058],"delay":1582.3} +{"session_id":"sess-9e97c54a2132","input_length":1918,"output_length":249,"hash_ids":[2280059,2280060,2280061,2280062],"delay":32311.2} +{"session_id":"sess-9e97c54a2132","input_length":2143,"output_length":210,"hash_ids":[2280063,2280064,2280065,2280066,2280067],"delay":493.4} +{"session_id":"sess-9e97c54a2132","input_length":554,"output_length":1214,"hash_ids":[2280068,2280069],"delay":1727.1} +{"session_id":"sess-9e97c54a2132","input_length":208,"output_length":50,"hash_ids":[2280070],"delay":766.0} +{"session_id":"sess-9e97c54a2132","input_length":917,"output_length":80,"hash_ids":[2280071,2280072],"delay":3949.6} +{"session_id":"sess-9e97c54a2132","input_length":151,"output_length":122,"hash_ids":[2280073],"delay":1796.4} +{"session_id":"sess-9e97c54a2132","input_length":1262,"output_length":85,"hash_ids":[2280074,2280075,2280076],"delay":785.9} +{"session_id":"sess-9e97c54a2132","input_length":2102,"output_length":734,"hash_ids":[2280077,2280078,2280079,2280080,2280081],"delay":457.7} +{"session_id":"sess-9e97c54a2132","input_length":1480,"output_length":151,"hash_ids":[2280082,2280083,2280084],"delay":1305.8} +{"session_id":"sess-9e97c54a2132","input_length":2028,"output_length":714,"hash_ids":[2280085,2280086,2280087,2280088],"delay":926.8} +{"session_id":"sess-9e97c54a2132","input_length":2143,"output_length":298,"hash_ids":[2280089,2280090,2280091,2280092,2280093],"delay":4502.9} +{"session_id":"sess-9e97c54a2132","input_length":752,"output_length":122,"hash_ids":[2280094,2280095],"delay":1323.8} +{"session_id":"sess-9e97c54a2132","input_length":593,"output_length":212,"hash_ids":[2280096,2280097],"delay":137.5} +{"session_id":"sess-9e97c54a2132","input_length":1770,"output_length":624,"hash_ids":[2280098,2280099,2280100,2280101],"delay":854.3} +{"session_id":"sess-9e97c54a2132","input_length":402,"output_length":62,"hash_ids":[2280102],"delay":950.5} +{"session_id":"sess-4e5748ee0ddb","input_length":28732,"output_length":392,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,2284032,2284033,2284034,2284035,2284036],"timestamp":0.0,"group_id":18} +{"session_id":"sess-4e5748ee0ddb","input_length":1278,"output_length":89,"hash_ids":[2284037,2284038,2284039],"delay":464.3} +{"session_id":"sess-258394308f3a","input_length":28012,"output_length":400,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2288032,2288033,2288034],"timestamp":0.0,"group_id":3} +{"session_id":"sess-258394308f3a","input_length":813,"output_length":186,"hash_ids":[2288035,2288036],"delay":17496.3} +{"session_id":"sess-258394308f3a","input_length":492,"output_length":116,"hash_ids":[2288037],"delay":912.1} +{"session_id":"sess-258394308f3a","input_length":453,"output_length":44,"hash_ids":[2288038],"delay":730.5} +{"session_id":"sess-258394308f3a","input_length":426,"output_length":142,"hash_ids":[2288039],"delay":20062.9} +{"session_id":"sess-258394308f3a","input_length":1427,"output_length":579,"hash_ids":[2288040,2288041,2288042],"delay":1699.4} +{"session_id":"sess-258394308f3a","input_length":437,"output_length":147,"hash_ids":[2288043],"delay":2076.8} +{"session_id":"sess-258394308f3a","input_length":912,"output_length":94,"hash_ids":[2288044,2288045],"delay":1738.3} +{"session_id":"sess-258394308f3a","input_length":34,"output_length":123,"hash_ids":[2288046],"delay":5101.4} +{"session_id":"sess-258394308f3a","input_length":546,"output_length":198,"hash_ids":[2288047,2288048],"delay":6872.0} +{"session_id":"sess-258394308f3a","input_length":1581,"output_length":965,"hash_ids":[2288049,2288050,2288051,2288052],"delay":6683.4} +{"session_id":"sess-258394308f3a","input_length":814,"output_length":134,"hash_ids":[2288053,2288054],"delay":8154.2} +{"session_id":"sess-258394308f3a","input_length":1872,"output_length":88,"hash_ids":[2288055,2288056,2288057,2288058],"delay":1261.3} +{"session_id":"sess-258394308f3a","input_length":901,"output_length":52,"hash_ids":[2288059,2288060],"delay":10234.0} +{"session_id":"sess-258394308f3a","input_length":2964,"output_length":292,"hash_ids":[2288061,2288062,2288063,2288064,2288065,2288066],"delay":249.5} +{"session_id":"sess-258394308f3a","input_length":1417,"output_length":170,"hash_ids":[2288067,2288068,2288069],"delay":755.5} +{"session_id":"sess-258394308f3a","input_length":240,"output_length":140,"hash_ids":[2288070],"delay":1238.4} +{"session_id":"sess-258394308f3a","input_length":574,"output_length":271,"hash_ids":[2288071,2288072],"delay":616.4} +{"session_id":"sess-258394308f3a","input_length":670,"output_length":525,"hash_ids":[2288073,2288074],"delay":4366.7} +{"session_id":"sess-258394308f3a","input_length":597,"output_length":162,"hash_ids":[2288075,2288076],"delay":379.0} +{"session_id":"sess-258394308f3a","input_length":198,"output_length":484,"hash_ids":[2288077],"delay":27795.0} +{"session_id":"sess-258394308f3a","input_length":1505,"output_length":561,"hash_ids":[2288078,2288079,2288080],"delay":613.5} +{"session_id":"sess-258394308f3a","input_length":1300,"output_length":30,"hash_ids":[2288081,2288082,2288083],"delay":432.3} +{"session_id":"sess-258394308f3a","input_length":957,"output_length":57,"hash_ids":[2288084,2288085],"delay":108.8} +{"session_id":"sess-258394308f3a","input_length":1863,"output_length":108,"hash_ids":[2288086,2288087,2288088,2288089],"delay":841.8} +{"session_id":"sess-258394308f3a","input_length":722,"output_length":661,"hash_ids":[2288090,2288091],"delay":857.2} +{"session_id":"sess-258394308f3a","input_length":839,"output_length":240,"hash_ids":[2288092,2288093],"delay":10645.6} +{"session_id":"sess-258394308f3a","input_length":1992,"output_length":136,"hash_ids":[2288094,2288095,2288096,2288097],"delay":934.0} +{"session_id":"sess-258394308f3a","input_length":424,"output_length":588,"hash_ids":[2288098],"delay":807.5} +{"session_id":"sess-258394308f3a","input_length":172,"output_length":468,"hash_ids":[2288099],"delay":1666.2} +{"session_id":"sess-258394308f3a","input_length":102,"output_length":431,"hash_ids":[2288100],"delay":697.1} +{"session_id":"sess-d4dd7b0c21bc","input_length":27500,"output_length":497,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2292032,2292033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d4dd7b0c21bc","input_length":1592,"output_length":288,"hash_ids":[2292034,2292035,2292036,2292037],"delay":600.8} +{"session_id":"sess-d4dd7b0c21bc","input_length":1093,"output_length":274,"hash_ids":[2292038,2292039,2292040],"delay":424.1} +{"session_id":"sess-d4dd7b0c21bc","input_length":791,"output_length":329,"hash_ids":[2292041,2292042],"delay":762.3} +{"session_id":"sess-d4dd7b0c21bc","input_length":492,"output_length":256,"hash_ids":[2292043],"delay":49614.4} +{"session_id":"sess-d4dd7b0c21bc","input_length":572,"output_length":286,"hash_ids":[2292044,2292045],"delay":1021.9} +{"session_id":"sess-d4dd7b0c21bc","input_length":413,"output_length":30,"hash_ids":[2292046],"delay":7277.3} +{"session_id":"sess-d4dd7b0c21bc","input_length":1545,"output_length":77,"hash_ids":[2292047,2292048,2292049,2292050],"delay":1772.1} +{"session_id":"sess-d4dd7b0c21bc","input_length":145,"output_length":97,"hash_ids":[2292051],"delay":443.4} +{"session_id":"sess-d4dd7b0c21bc","input_length":602,"output_length":1323,"hash_ids":[2292052,2292053],"delay":1380.8} +{"session_id":"sess-d4dd7b0c21bc","input_length":848,"output_length":170,"hash_ids":[2292054,2292055],"delay":3611.7} +{"session_id":"sess-d4dd7b0c21bc","input_length":897,"output_length":377,"hash_ids":[2292056,2292057],"delay":961.5} +{"session_id":"sess-d4dd7b0c21bc","input_length":1100,"output_length":573,"hash_ids":[2292058,2292059,2292060],"delay":598.2} +{"session_id":"sess-d4dd7b0c21bc","input_length":1226,"output_length":58,"hash_ids":[2292061,2292062,2292063],"delay":433.8} +{"session_id":"sess-d4dd7b0c21bc","input_length":1438,"output_length":161,"hash_ids":[2292064,2292065,2292066],"delay":367.0} +{"session_id":"sess-d4dd7b0c21bc","input_length":702,"output_length":234,"hash_ids":[2292067,2292068],"delay":627.9} +{"session_id":"sess-d4dd7b0c21bc","input_length":248,"output_length":522,"hash_ids":[2292069],"delay":3051.0} +{"session_id":"sess-d4dd7b0c21bc","input_length":164,"output_length":112,"hash_ids":[2292070],"delay":547.0} +{"session_id":"sess-d4dd7b0c21bc","input_length":2278,"output_length":327,"hash_ids":[2292071,2292072,2292073,2292074,2292075],"delay":1626.0} +{"session_id":"sess-ba23cbd57246","input_length":29877,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2296032,2296033,2296034,2296035,2296036,2296037,2296038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ba23cbd57246","input_length":845,"output_length":34,"hash_ids":[2296039,2296040],"delay":282.7} +{"session_id":"sess-ba23cbd57246","input_length":1015,"output_length":100,"hash_ids":[2296041,2296042],"delay":2281.6} +{"session_id":"sess-ba23cbd57246","input_length":1896,"output_length":83,"hash_ids":[2296043,2296044,2296045,2296046],"delay":34085.2} +{"session_id":"sess-ba23cbd57246","input_length":1423,"output_length":434,"hash_ids":[2296047,2296048,2296049],"delay":514.2} +{"session_id":"sess-ba23cbd57246","input_length":1790,"output_length":300,"hash_ids":[2296050,2296051,2296052,2296053],"delay":4324.6} +{"session_id":"sess-ba23cbd57246","input_length":420,"output_length":78,"hash_ids":[2296054],"delay":1181.7} +{"session_id":"sess-ba23cbd57246","input_length":2429,"output_length":249,"hash_ids":[2296055,2296056,2296057,2296058,2296059],"delay":718.4} +{"session_id":"sess-ba23cbd57246","input_length":1609,"output_length":30,"hash_ids":[2296060,2296061,2296062,2296063],"delay":1426.9} +{"session_id":"sess-ba23cbd57246","input_length":419,"output_length":174,"hash_ids":[2296064],"delay":25359.7} +{"session_id":"sess-ba23cbd57246","input_length":151,"output_length":195,"hash_ids":[2296065],"delay":9784.0} +{"session_id":"sess-ba23cbd57246","input_length":369,"output_length":79,"hash_ids":[2296066],"delay":2211.1} +{"session_id":"sess-ba23cbd57246","input_length":2416,"output_length":141,"hash_ids":[2296067,2296068,2296069,2296070,2296071],"delay":1503.0} +{"session_id":"sess-ba23cbd57246","input_length":887,"output_length":30,"hash_ids":[2296072,2296073],"delay":19766.0} +{"session_id":"sess-638e57464da0","input_length":31344,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2300032,2300033,2300034,2300035,2300036,2300037,2300038,2300039,2300040,2300041],"timestamp":0.0,"group_id":7} +{"session_id":"sess-638e57464da0","input_length":457,"output_length":120,"hash_ids":[2300042],"delay":322.0} +{"session_id":"sess-638e57464da0","input_length":652,"output_length":248,"hash_ids":[2300043,2300044],"delay":5697.8} +{"session_id":"sess-638e57464da0","input_length":1059,"output_length":422,"hash_ids":[2300045,2300046,2300047],"delay":12488.1} +{"session_id":"sess-638e57464da0","input_length":554,"output_length":77,"hash_ids":[2300048,2300049],"delay":19032.6} +{"session_id":"sess-638e57464da0","input_length":494,"output_length":283,"hash_ids":[2300050],"delay":15259.7} +{"session_id":"sess-638e57464da0","input_length":1009,"output_length":435,"hash_ids":[2300051,2300052],"delay":22056.0} +{"session_id":"sess-638e57464da0","input_length":2466,"output_length":1082,"hash_ids":[2300053,2300054,2300055,2300056,2300057],"delay":363.7} +{"session_id":"sess-638e57464da0","input_length":310,"output_length":748,"hash_ids":[2300058],"delay":379.3} +{"session_id":"sess-638e57464da0","input_length":2144,"output_length":111,"hash_ids":[2300059,2300060,2300061,2300062,2300063],"delay":1085.0} +{"session_id":"sess-638e57464da0","input_length":548,"output_length":314,"hash_ids":[2300064,2300065],"delay":585.6} +{"session_id":"sess-638e57464da0","input_length":169,"output_length":133,"hash_ids":[2300066],"delay":527.1} +{"session_id":"sess-638e57464da0","input_length":375,"output_length":102,"hash_ids":[2300067],"delay":320.9} +{"session_id":"sess-638e57464da0","input_length":160,"output_length":223,"hash_ids":[2300068],"delay":14680.0} +{"session_id":"sess-638e57464da0","input_length":1366,"output_length":306,"hash_ids":[2300069,2300070,2300071],"delay":574.1} +{"session_id":"sess-638e57464da0","input_length":2778,"output_length":1143,"hash_ids":[2300072,2300073,2300074,2300075,2300076,2300077],"delay":12200.7} +{"session_id":"sess-638e57464da0","input_length":1955,"output_length":180,"hash_ids":[2300078,2300079,2300080,2300081],"delay":5954.7} +{"session_id":"sess-638e57464da0","input_length":2871,"output_length":363,"hash_ids":[2300082,2300083,2300084,2300085,2300086,2300087],"delay":3502.1} +{"session_id":"sess-638e57464da0","input_length":452,"output_length":274,"hash_ids":[2300088],"delay":430.4} +{"session_id":"sess-638e57464da0","input_length":140,"output_length":176,"hash_ids":[2300089],"delay":8863.2} +{"session_id":"sess-638e57464da0","input_length":433,"output_length":178,"hash_ids":[2300090],"delay":12742.5} +{"session_id":"sess-638e57464da0","input_length":2603,"output_length":30,"hash_ids":[2300091,2300092,2300093,2300094,2300095,2300096],"delay":616.7} +{"session_id":"sess-638e57464da0","input_length":206,"output_length":942,"hash_ids":[2300097],"delay":515.0} +{"session_id":"sess-638e57464da0","input_length":2194,"output_length":147,"hash_ids":[2300098,2300099,2300100,2300101,2300102],"delay":526.9} +{"session_id":"sess-638e57464da0","input_length":357,"output_length":30,"hash_ids":[2300103],"delay":5173.1} +{"session_id":"sess-036cf8611fcc","input_length":27079,"output_length":356,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,2304032],"timestamp":0.0,"group_id":36} +{"session_id":"sess-036cf8611fcc","input_length":308,"output_length":185,"hash_ids":[2304033],"delay":4730.3} +{"session_id":"sess-036cf8611fcc","input_length":260,"output_length":103,"hash_ids":[2304034],"delay":32743.0} +{"session_id":"sess-036cf8611fcc","input_length":344,"output_length":192,"hash_ids":[2304035],"delay":2245.4} +{"session_id":"sess-036cf8611fcc","input_length":835,"output_length":30,"hash_ids":[2304036,2304037],"delay":159.2} +{"session_id":"sess-036cf8611fcc","input_length":287,"output_length":292,"hash_ids":[2304038],"delay":1509.3} +{"session_id":"sess-7f73874620bc","input_length":30161,"output_length":437,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2308032,2308033,2308034,2308035,2308036,2308037,2308038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7f73874620bc","input_length":2114,"output_length":259,"hash_ids":[2308039,2308040,2308041,2308042,2308043],"delay":800.4} +{"session_id":"sess-7f73874620bc","input_length":1219,"output_length":161,"hash_ids":[2308044,2308045,2308046],"delay":683.3} +{"session_id":"sess-7f73874620bc","input_length":1774,"output_length":185,"hash_ids":[2308047,2308048,2308049,2308050],"delay":8306.1} +{"session_id":"sess-7f73874620bc","input_length":842,"output_length":193,"hash_ids":[2308051,2308052],"delay":1672.2} +{"session_id":"sess-7f73874620bc","input_length":408,"output_length":222,"hash_ids":[2308053],"delay":2803.2} +{"session_id":"sess-7f73874620bc","input_length":125,"output_length":236,"hash_ids":[2308054],"delay":206.5} +{"session_id":"sess-7f73874620bc","input_length":657,"output_length":94,"hash_ids":[2308055,2308056],"delay":12152.2} +{"session_id":"sess-7f73874620bc","input_length":809,"output_length":38,"hash_ids":[2308057,2308058],"delay":4016.1} +{"session_id":"sess-7f73874620bc","input_length":133,"output_length":911,"hash_ids":[2308059],"delay":2016.5} +{"session_id":"sess-7f73874620bc","input_length":2354,"output_length":343,"hash_ids":[2308060,2308061,2308062,2308063,2308064],"delay":728.2} +{"session_id":"sess-7f73874620bc","input_length":294,"output_length":359,"hash_ids":[2308065],"delay":223.4} +{"session_id":"sess-7f73874620bc","input_length":866,"output_length":53,"hash_ids":[2308066,2308067],"delay":1422.6} +{"session_id":"sess-7f73874620bc","input_length":820,"output_length":213,"hash_ids":[2308068,2308069],"delay":2330.7} +{"session_id":"sess-7f73874620bc","input_length":1657,"output_length":416,"hash_ids":[2308070,2308071,2308072,2308073],"delay":1917.8} +{"session_id":"sess-7f73874620bc","input_length":1349,"output_length":93,"hash_ids":[2308074,2308075,2308076],"delay":637.5} +{"session_id":"sess-7f73874620bc","input_length":1822,"output_length":357,"hash_ids":[2308077,2308078,2308079,2308080],"delay":2101.0} +{"session_id":"sess-7f73874620bc","input_length":848,"output_length":366,"hash_ids":[2308081,2308082],"delay":854.1} +{"session_id":"sess-7f73874620bc","input_length":1065,"output_length":382,"hash_ids":[2308083,2308084,2308085],"delay":2560.3} +{"session_id":"sess-7f73874620bc","input_length":1787,"output_length":183,"hash_ids":[2308086,2308087,2308088,2308089],"delay":270.3} +{"session_id":"sess-7f73874620bc","input_length":911,"output_length":1122,"hash_ids":[2308090,2308091],"delay":845.7} +{"session_id":"sess-7f73874620bc","input_length":2011,"output_length":465,"hash_ids":[2308092,2308093,2308094,2308095],"delay":1421.6} +{"session_id":"sess-7f73874620bc","input_length":1348,"output_length":779,"hash_ids":[2308096,2308097,2308098],"delay":245.0} +{"session_id":"sess-7f73874620bc","input_length":1185,"output_length":678,"hash_ids":[2308099,2308100,2308101],"delay":367.7} +{"session_id":"sess-2b4007be57f3","input_length":26513,"output_length":490,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251],"timestamp":0.0,"group_id":16} +{"session_id":"sess-2b4007be57f3","input_length":533,"output_length":496,"hash_ids":[2308102,2308103],"delay":846.7} +{"session_id":"sess-2b4007be57f3","input_length":1470,"output_length":202,"hash_ids":[2308104,2308105,2308106],"delay":670.9} +{"session_id":"sess-2b4007be57f3","input_length":342,"output_length":215,"hash_ids":[2308107],"delay":961.9} +{"session_id":"sess-2b4007be57f3","input_length":1200,"output_length":545,"hash_ids":[2308108,2308109,2308110],"delay":1588.2} +{"session_id":"sess-2b4007be57f3","input_length":549,"output_length":797,"hash_ids":[2308111,2308112],"delay":2532.2} +{"session_id":"sess-2b4007be57f3","input_length":280,"output_length":266,"hash_ids":[2308113],"delay":6604.5} +{"session_id":"sess-2b4007be57f3","input_length":761,"output_length":170,"hash_ids":[2308114,2308115],"delay":576.9} +{"session_id":"sess-2b4007be57f3","input_length":2138,"output_length":237,"hash_ids":[2308116,2308117,2308118,2308119,2308120],"delay":1871.2} +{"session_id":"sess-2b4007be57f3","input_length":311,"output_length":137,"hash_ids":[2308121],"delay":1870.2} +{"session_id":"sess-2b4007be57f3","input_length":566,"output_length":569,"hash_ids":[2308122,2308123],"delay":675.9} +{"session_id":"sess-2b4007be57f3","input_length":570,"output_length":235,"hash_ids":[2308124,2308125],"delay":422.8} +{"session_id":"sess-2b4007be57f3","input_length":592,"output_length":142,"hash_ids":[2308126,2308127],"delay":626.4} +{"session_id":"sess-2b4007be57f3","input_length":1627,"output_length":88,"hash_ids":[2308128,2308129,2308130,2308131],"delay":1466.6} +{"session_id":"sess-2b4007be57f3","input_length":180,"output_length":582,"hash_ids":[2308132],"delay":1450.0} +{"session_id":"sess-2b4007be57f3","input_length":1699,"output_length":172,"hash_ids":[2308133,2308134,2308135,2308136],"delay":6918.5} +{"session_id":"sess-2b4007be57f3","input_length":222,"output_length":367,"hash_ids":[2308137],"delay":416.6} +{"session_id":"sess-2b4007be57f3","input_length":717,"output_length":123,"hash_ids":[2308138,2308139],"delay":870.2} +{"session_id":"sess-2b4007be57f3","input_length":1064,"output_length":188,"hash_ids":[2308140,2308141,2308142],"delay":1344.1} +{"session_id":"sess-2b4007be57f3","input_length":1272,"output_length":69,"hash_ids":[2308143,2308144,2308145],"delay":13228.4} +{"session_id":"sess-2b4007be57f3","input_length":2441,"output_length":264,"hash_ids":[2308146,2308147,2308148,2308149,2308150],"delay":1568.0} +{"session_id":"sess-2b4007be57f3","input_length":1924,"output_length":713,"hash_ids":[2308151,2308152,2308153,2308154],"delay":2199.9} +{"session_id":"sess-2b4007be57f3","input_length":480,"output_length":35,"hash_ids":[2308155],"delay":4929.3} +{"session_id":"sess-2b4007be57f3","input_length":684,"output_length":77,"hash_ids":[2308156,2308157],"delay":2781.7} +{"session_id":"sess-2b4007be57f3","input_length":704,"output_length":361,"hash_ids":[2308158,2308159],"delay":346.8} +{"session_id":"sess-2b4007be57f3","input_length":1493,"output_length":114,"hash_ids":[2308160,2308161,2308162],"delay":977.1} +{"session_id":"sess-2b4007be57f3","input_length":473,"output_length":239,"hash_ids":[2308163],"delay":16156.9} +{"session_id":"sess-2b4007be57f3","input_length":293,"output_length":354,"hash_ids":[2308164],"delay":182.1} +{"session_id":"sess-2b4007be57f3","input_length":811,"output_length":207,"hash_ids":[2308165,2308166],"delay":3891.1} +{"session_id":"sess-2b4007be57f3","input_length":2755,"output_length":336,"hash_ids":[2308167,2308168,2308169,2308170,2308171,2308172],"delay":1423.9} +{"session_id":"sess-2b4007be57f3","input_length":269,"output_length":332,"hash_ids":[2308173],"delay":1104.2} +{"session_id":"sess-13c843f6cd7d","input_length":30456,"output_length":737,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2316032,2316033,2316034,2316035,2316036,2316037,2316038,2316039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-13c843f6cd7d","input_length":1782,"output_length":132,"hash_ids":[2316040,2316041,2316042,2316043],"delay":25967.3} +{"session_id":"sess-13c843f6cd7d","input_length":598,"output_length":136,"hash_ids":[2316044,2316045],"delay":14017.0} +{"session_id":"sess-13c843f6cd7d","input_length":306,"output_length":99,"hash_ids":[2316046],"delay":1293.8} +{"session_id":"sess-13c843f6cd7d","input_length":583,"output_length":170,"hash_ids":[2316047,2316048],"delay":9087.0} +{"session_id":"sess-13c843f6cd7d","input_length":1032,"output_length":70,"hash_ids":[2316049,2316050,2316051],"delay":736.3} +{"session_id":"sess-13c843f6cd7d","input_length":755,"output_length":114,"hash_ids":[2316052,2316053],"delay":15149.8} +{"session_id":"sess-13c843f6cd7d","input_length":538,"output_length":446,"hash_ids":[2316054,2316055],"delay":3299.6} +{"session_id":"sess-13c843f6cd7d","input_length":847,"output_length":145,"hash_ids":[2316056,2316057],"delay":1718.9} +{"session_id":"sess-13c843f6cd7d","input_length":2890,"output_length":566,"hash_ids":[2316058,2316059,2316060,2316061,2316062,2316063],"delay":353.4} +{"session_id":"sess-13c843f6cd7d","input_length":573,"output_length":91,"hash_ids":[2316064,2316065],"delay":806.4} +{"session_id":"sess-7a31a4678b3b","input_length":29973,"output_length":191,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2320032,2320033,2320034,2320035,2320036,2320037,2320038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7a31a4678b3b","input_length":547,"output_length":165,"hash_ids":[2320039,2320040],"delay":7640.3} +{"session_id":"sess-7a31a4678b3b","input_length":619,"output_length":345,"hash_ids":[2320041,2320042],"delay":22779.4} +{"session_id":"sess-7a31a4678b3b","input_length":2171,"output_length":593,"hash_ids":[2320043,2320044,2320045,2320046,2320047],"delay":681.2} +{"session_id":"sess-7a31a4678b3b","input_length":1135,"output_length":98,"hash_ids":[2320048,2320049,2320050],"delay":751.1} +{"session_id":"sess-7a31a4678b3b","input_length":2700,"output_length":102,"hash_ids":[2320051,2320052,2320053,2320054,2320055,2320056],"delay":3822.0} +{"session_id":"sess-7a31a4678b3b","input_length":1809,"output_length":249,"hash_ids":[2320057,2320058,2320059,2320060],"delay":54966.8} +{"session_id":"sess-7a31a4678b3b","input_length":899,"output_length":392,"hash_ids":[2320061,2320062],"delay":15437.1} +{"session_id":"sess-7a31a4678b3b","input_length":951,"output_length":452,"hash_ids":[2320063,2320064],"delay":8610.2} +{"session_id":"sess-7a31a4678b3b","input_length":662,"output_length":30,"hash_ids":[2320065,2320066],"delay":1455.7} +{"session_id":"sess-7a31a4678b3b","input_length":487,"output_length":133,"hash_ids":[2320067],"delay":47153.1} +{"session_id":"sess-7a31a4678b3b","input_length":1814,"output_length":639,"hash_ids":[2320068,2320069,2320070,2320071],"delay":881.9} +{"session_id":"sess-7a31a4678b3b","input_length":1120,"output_length":753,"hash_ids":[2320072,2320073,2320074],"delay":8995.8} +{"session_id":"sess-7a31a4678b3b","input_length":1538,"output_length":249,"hash_ids":[2320075,2320076,2320077,2320078],"delay":1639.8} +{"session_id":"sess-7a31a4678b3b","input_length":1784,"output_length":147,"hash_ids":[2320079,2320080,2320081,2320082],"delay":217.8} +{"session_id":"sess-7a31a4678b3b","input_length":87,"output_length":239,"hash_ids":[2320083],"delay":1597.5} +{"session_id":"sess-7a31a4678b3b","input_length":395,"output_length":1310,"hash_ids":[2320084],"delay":1600.8} +{"session_id":"sess-7a31a4678b3b","input_length":628,"output_length":251,"hash_ids":[2320085,2320086],"delay":1057.6} +{"session_id":"sess-7a31a4678b3b","input_length":743,"output_length":283,"hash_ids":[2320087,2320088],"delay":22264.1} +{"session_id":"sess-7a31a4678b3b","input_length":556,"output_length":321,"hash_ids":[2320089,2320090],"delay":1159.4} +{"session_id":"sess-7a31a4678b3b","input_length":349,"output_length":193,"hash_ids":[2320091],"delay":2022.6} +{"session_id":"sess-7a31a4678b3b","input_length":1976,"output_length":157,"hash_ids":[2320092,2320093,2320094,2320095],"delay":302.2} +{"session_id":"sess-7a31a4678b3b","input_length":1575,"output_length":43,"hash_ids":[2320096,2320097,2320098,2320099],"delay":385.3} +{"session_id":"sess-7a31a4678b3b","input_length":1279,"output_length":167,"hash_ids":[2320100,2320101,2320102],"delay":209.0} +{"session_id":"sess-7a31a4678b3b","input_length":880,"output_length":554,"hash_ids":[2320103,2320104],"delay":328.3} +{"session_id":"sess-569c1297259e","input_length":32998,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2324032,2324033,2324034,2324035,2324036,2324037,2324038,2324039,2324040,2324041,2324042,2324043,2324044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-569c1297259e","input_length":2421,"output_length":298,"hash_ids":[2324045,2324046,2324047,2324048,2324049],"delay":55320.9} +{"session_id":"sess-569c1297259e","input_length":1031,"output_length":135,"hash_ids":[2324050,2324051,2324052],"delay":4530.8} +{"session_id":"sess-569c1297259e","input_length":742,"output_length":30,"hash_ids":[2324053,2324054],"delay":1127.3} +{"session_id":"sess-569c1297259e","input_length":1330,"output_length":90,"hash_ids":[2324055,2324056,2324057],"delay":323.5} +{"session_id":"sess-569c1297259e","input_length":408,"output_length":764,"hash_ids":[2324058],"delay":3528.6} +{"session_id":"sess-569c1297259e","input_length":204,"output_length":900,"hash_ids":[2324059],"delay":31663.1} +{"session_id":"sess-569c1297259e","input_length":484,"output_length":112,"hash_ids":[2324060],"delay":1674.8} +{"session_id":"sess-569c1297259e","input_length":191,"output_length":600,"hash_ids":[2324061],"delay":1003.2} +{"session_id":"sess-569c1297259e","input_length":308,"output_length":505,"hash_ids":[2324062],"delay":571.9} +{"session_id":"sess-569c1297259e","input_length":1041,"output_length":89,"hash_ids":[2324063,2324064,2324065],"delay":7075.4} +{"session_id":"sess-569c1297259e","input_length":1607,"output_length":90,"hash_ids":[2324066,2324067,2324068,2324069],"delay":1270.4} +{"session_id":"sess-569c1297259e","input_length":828,"output_length":718,"hash_ids":[2324070,2324071],"delay":3285.9} +{"session_id":"sess-569c1297259e","input_length":415,"output_length":156,"hash_ids":[2324072],"delay":3737.0} +{"session_id":"sess-569c1297259e","input_length":1850,"output_length":559,"hash_ids":[2324073,2324074,2324075,2324076],"delay":569.2} +{"session_id":"sess-569c1297259e","input_length":247,"output_length":96,"hash_ids":[2324077],"delay":18870.3} +{"session_id":"sess-569c1297259e","input_length":117,"output_length":247,"hash_ids":[2324078],"delay":16264.2} +{"session_id":"sess-569c1297259e","input_length":1671,"output_length":211,"hash_ids":[2324079,2324080,2324081,2324082],"delay":905.4} +{"session_id":"sess-569c1297259e","input_length":824,"output_length":121,"hash_ids":[2324083,2324084],"delay":578.4} +{"session_id":"sess-569c1297259e","input_length":286,"output_length":96,"hash_ids":[2324085],"delay":1191.2} +{"session_id":"sess-569c1297259e","input_length":751,"output_length":534,"hash_ids":[2324086,2324087],"delay":5207.7} +{"session_id":"sess-569c1297259e","input_length":1115,"output_length":214,"hash_ids":[2324088,2324089,2324090],"delay":662.9} +{"session_id":"sess-569c1297259e","input_length":1205,"output_length":91,"hash_ids":[2324091,2324092,2324093],"delay":217.5} +{"session_id":"sess-a72eeb8e03ee","input_length":28040,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2328032,2328033,2328034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a72eeb8e03ee","input_length":1626,"output_length":203,"hash_ids":[2328035,2328036,2328037,2328038],"delay":10618.4} +{"session_id":"sess-a72eeb8e03ee","input_length":1522,"output_length":103,"hash_ids":[2328039,2328040,2328041],"delay":66510.3} +{"session_id":"sess-a72eeb8e03ee","input_length":1083,"output_length":420,"hash_ids":[2328042,2328043,2328044],"delay":4475.8} +{"session_id":"sess-a72eeb8e03ee","input_length":1080,"output_length":32,"hash_ids":[2328045,2328046,2328047],"delay":1247.9} +{"session_id":"sess-a72eeb8e03ee","input_length":1614,"output_length":50,"hash_ids":[2328048,2328049,2328050,2328051],"delay":788.9} +{"session_id":"sess-a72eeb8e03ee","input_length":412,"output_length":45,"hash_ids":[2328052],"delay":12960.9} +{"session_id":"sess-a72eeb8e03ee","input_length":1015,"output_length":123,"hash_ids":[2328053,2328054],"delay":2420.5} +{"session_id":"sess-a72eeb8e03ee","input_length":2244,"output_length":352,"hash_ids":[2328055,2328056,2328057,2328058,2328059],"delay":6677.8} +{"session_id":"sess-a72eeb8e03ee","input_length":658,"output_length":536,"hash_ids":[2328060,2328061],"delay":24633.8} +{"session_id":"sess-a72eeb8e03ee","input_length":104,"output_length":454,"hash_ids":[2328062],"delay":497.0} +{"session_id":"sess-a72eeb8e03ee","input_length":894,"output_length":224,"hash_ids":[2328063,2328064],"delay":1303.1} +{"session_id":"sess-a72eeb8e03ee","input_length":2187,"output_length":164,"hash_ids":[2328065,2328066,2328067,2328068,2328069],"delay":8270.4} +{"session_id":"sess-a72eeb8e03ee","input_length":398,"output_length":437,"hash_ids":[2328070],"delay":20193.2} +{"session_id":"sess-a72eeb8e03ee","input_length":1699,"output_length":177,"hash_ids":[2328071,2328072,2328073,2328074],"delay":11723.4} +{"session_id":"sess-a72eeb8e03ee","input_length":1018,"output_length":188,"hash_ids":[2328075,2328076],"delay":596.0} +{"session_id":"sess-a72eeb8e03ee","input_length":361,"output_length":445,"hash_ids":[2328077],"delay":2112.0} +{"session_id":"sess-a72eeb8e03ee","input_length":722,"output_length":276,"hash_ids":[2328078,2328079],"delay":14093.7} +{"session_id":"sess-a72eeb8e03ee","input_length":884,"output_length":76,"hash_ids":[2328080,2328081],"delay":1250.8} +{"session_id":"sess-a72eeb8e03ee","input_length":234,"output_length":79,"hash_ids":[2328082],"delay":7826.6} +{"session_id":"sess-a72eeb8e03ee","input_length":2078,"output_length":337,"hash_ids":[2328083,2328084,2328085,2328086,2328087],"delay":7263.5} +{"session_id":"sess-a72eeb8e03ee","input_length":595,"output_length":596,"hash_ids":[2328088,2328089],"delay":110.5} +{"session_id":"sess-a72eeb8e03ee","input_length":426,"output_length":271,"hash_ids":[2328090],"delay":3790.1} +{"session_id":"sess-a72eeb8e03ee","input_length":2075,"output_length":506,"hash_ids":[2328091,2328092,2328093,2328094,2328095],"delay":1609.3} +{"session_id":"sess-a72eeb8e03ee","input_length":650,"output_length":1019,"hash_ids":[2328096,2328097],"delay":638.6} +{"session_id":"sess-a72eeb8e03ee","input_length":214,"output_length":103,"hash_ids":[2328098],"delay":3667.3} +{"session_id":"sess-a72eeb8e03ee","input_length":432,"output_length":97,"hash_ids":[2328099],"delay":1421.6} +{"session_id":"sess-a72eeb8e03ee","input_length":222,"output_length":556,"hash_ids":[2328100],"delay":571.2} +{"session_id":"sess-a72eeb8e03ee","input_length":972,"output_length":348,"hash_ids":[2328101,2328102],"delay":193.1} +{"session_id":"sess-a72eeb8e03ee","input_length":574,"output_length":558,"hash_ids":[2328103,2328104],"delay":224.4} +{"session_id":"sess-a72eeb8e03ee","input_length":244,"output_length":148,"hash_ids":[2328105],"delay":408.7} +{"session_id":"sess-9effbf4ca7ea","input_length":33099,"output_length":89,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,2332032,2332033,2332034,2332035,2332036,2332037,2332038,2332039,2332040,2332041,2332042,2332043,2332044],"timestamp":0.0,"group_id":6} +{"session_id":"sess-9effbf4ca7ea","input_length":977,"output_length":408,"hash_ids":[2332045,2332046],"delay":1099.2} +{"session_id":"sess-9effbf4ca7ea","input_length":2164,"output_length":43,"hash_ids":[2332047,2332048,2332049,2332050,2332051],"delay":21327.7} +{"session_id":"sess-9effbf4ca7ea","input_length":2558,"output_length":467,"hash_ids":[2332052,2332053,2332054,2332055,2332056],"delay":4357.6} +{"session_id":"sess-9effbf4ca7ea","input_length":1712,"output_length":221,"hash_ids":[2332057,2332058,2332059,2332060],"delay":1935.7} +{"session_id":"sess-9effbf4ca7ea","input_length":137,"output_length":134,"hash_ids":[2332061],"delay":6760.5} +{"session_id":"sess-9effbf4ca7ea","input_length":459,"output_length":167,"hash_ids":[2332062],"delay":12411.0} +{"session_id":"sess-02c604dcdd1b","input_length":29038,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,2336032,2336033,2336034,2336035,2336036],"timestamp":0.0,"group_id":32} +{"session_id":"sess-02c604dcdd1b","input_length":1198,"output_length":309,"hash_ids":[2336037,2336038,2336039],"delay":1652.6} +{"session_id":"sess-02c604dcdd1b","input_length":2066,"output_length":40,"hash_ids":[2336040,2336041,2336042,2336043,2336044],"delay":1383.6} +{"session_id":"sess-02c604dcdd1b","input_length":459,"output_length":247,"hash_ids":[2336045],"delay":568.8} +{"session_id":"sess-02c604dcdd1b","input_length":534,"output_length":449,"hash_ids":[2336046,2336047],"delay":152.6} +{"session_id":"sess-02c604dcdd1b","input_length":809,"output_length":223,"hash_ids":[2336048,2336049],"delay":207.4} +{"session_id":"sess-516b7c1e95cc","input_length":26769,"output_length":228,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,2340032],"timestamp":0.0,"group_id":21} +{"session_id":"sess-516b7c1e95cc","input_length":2081,"output_length":88,"hash_ids":[2340033,2340034,2340035,2340036,2340037],"delay":21672.3} +{"session_id":"sess-516b7c1e95cc","input_length":528,"output_length":74,"hash_ids":[2340038,2340039],"delay":675.6} +{"session_id":"sess-516b7c1e95cc","input_length":285,"output_length":207,"hash_ids":[2340040],"delay":2756.8} +{"session_id":"sess-516b7c1e95cc","input_length":2094,"output_length":349,"hash_ids":[2340041,2340042,2340043,2340044,2340045],"delay":13698.8} +{"session_id":"sess-516b7c1e95cc","input_length":839,"output_length":474,"hash_ids":[2340046,2340047],"delay":23611.3} +{"session_id":"sess-516b7c1e95cc","input_length":585,"output_length":155,"hash_ids":[2340048,2340049],"delay":5093.1} +{"session_id":"sess-516b7c1e95cc","input_length":332,"output_length":81,"hash_ids":[2340050],"delay":439.9} +{"session_id":"sess-516b7c1e95cc","input_length":697,"output_length":104,"hash_ids":[2340051,2340052],"delay":3688.7} +{"session_id":"sess-516b7c1e95cc","input_length":2839,"output_length":154,"hash_ids":[2340053,2340054,2340055,2340056,2340057,2340058],"delay":753.0} +{"session_id":"sess-516b7c1e95cc","input_length":1273,"output_length":498,"hash_ids":[2340059,2340060,2340061],"delay":50266.1} +{"session_id":"sess-516b7c1e95cc","input_length":1411,"output_length":658,"hash_ids":[2340062,2340063,2340064],"delay":895.1} +{"session_id":"sess-516b7c1e95cc","input_length":428,"output_length":463,"hash_ids":[2340065],"delay":599.1} +{"session_id":"sess-516b7c1e95cc","input_length":715,"output_length":545,"hash_ids":[2340066,2340067],"delay":732.9} +{"session_id":"sess-516b7c1e95cc","input_length":1534,"output_length":785,"hash_ids":[2340068,2340069,2340070],"delay":459.7} +{"session_id":"sess-516b7c1e95cc","input_length":1020,"output_length":388,"hash_ids":[2340071,2340072],"delay":41662.3} +{"session_id":"sess-516b7c1e95cc","input_length":218,"output_length":183,"hash_ids":[2340073],"delay":2597.1} +{"session_id":"sess-516b7c1e95cc","input_length":1602,"output_length":180,"hash_ids":[2340074,2340075,2340076,2340077],"delay":329.3} +{"session_id":"sess-516b7c1e95cc","input_length":1859,"output_length":1048,"hash_ids":[2340078,2340079,2340080,2340081],"delay":34708.3} +{"session_id":"sess-516b7c1e95cc","input_length":431,"output_length":320,"hash_ids":[2340082],"delay":633.2} +{"session_id":"sess-516b7c1e95cc","input_length":305,"output_length":641,"hash_ids":[2340083],"delay":403.9} +{"session_id":"sess-516b7c1e95cc","input_length":1911,"output_length":117,"hash_ids":[2340084,2340085,2340086,2340087],"delay":675.4} +{"session_id":"sess-516b7c1e95cc","input_length":2433,"output_length":364,"hash_ids":[2340088,2340089,2340090,2340091,2340092],"delay":18652.5} +{"session_id":"sess-516b7c1e95cc","input_length":1560,"output_length":135,"hash_ids":[2340093,2340094,2340095,2340096],"delay":3733.2} +{"session_id":"sess-516b7c1e95cc","input_length":622,"output_length":99,"hash_ids":[2340097,2340098],"delay":1026.1} +{"session_id":"sess-516b7c1e95cc","input_length":1167,"output_length":79,"hash_ids":[2340099,2340100,2340101],"delay":496.8} +{"session_id":"sess-ffcddd67fc33","input_length":30544,"output_length":837,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2344032,2344033,2344034,2344035,2344036,2344037,2344038,2344039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ffcddd67fc33","input_length":1404,"output_length":30,"hash_ids":[2344040,2344041,2344042],"delay":36453.4} +{"session_id":"sess-ffcddd67fc33","input_length":2612,"output_length":36,"hash_ids":[2344043,2344044,2344045,2344046,2344047,2344048],"delay":1072.1} +{"session_id":"sess-ffcddd67fc33","input_length":229,"output_length":246,"hash_ids":[2344049],"delay":3200.1} +{"session_id":"sess-ffcddd67fc33","input_length":1462,"output_length":418,"hash_ids":[2344050,2344051,2344052],"delay":3887.8} +{"session_id":"sess-ffcddd67fc33","input_length":199,"output_length":418,"hash_ids":[2344053],"delay":2103.3} +{"session_id":"sess-aa46809b390d","input_length":30481,"output_length":236,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2348032,2348033,2348034,2348035,2348036,2348037,2348038,2348039],"timestamp":0.0,"group_id":3} +{"session_id":"sess-aa46809b390d","input_length":509,"output_length":122,"hash_ids":[2348040],"delay":564.8} +{"session_id":"sess-aa46809b390d","input_length":1257,"output_length":46,"hash_ids":[2348041,2348042,2348043],"delay":56277.4} +{"session_id":"sess-aa46809b390d","input_length":275,"output_length":192,"hash_ids":[2348044],"delay":2828.8} +{"session_id":"sess-aa46809b390d","input_length":490,"output_length":161,"hash_ids":[2348045],"delay":419.1} +{"session_id":"sess-aa46809b390d","input_length":2310,"output_length":100,"hash_ids":[2348046,2348047,2348048,2348049,2348050],"delay":24990.5} +{"session_id":"sess-aa46809b390d","input_length":271,"output_length":626,"hash_ids":[2348051],"delay":2603.4} +{"session_id":"sess-aa46809b390d","input_length":1193,"output_length":447,"hash_ids":[2348052,2348053,2348054],"delay":31580.2} +{"session_id":"sess-aa46809b390d","input_length":596,"output_length":268,"hash_ids":[2348055,2348056],"delay":1024.0} +{"session_id":"sess-aa46809b390d","input_length":1025,"output_length":111,"hash_ids":[2348057,2348058,2348059],"delay":26475.7} +{"session_id":"sess-aa46809b390d","input_length":1346,"output_length":374,"hash_ids":[2348060,2348061,2348062],"delay":1575.2} +{"session_id":"sess-aa46809b390d","input_length":1234,"output_length":287,"hash_ids":[2348063,2348064,2348065],"delay":1478.4} +{"session_id":"sess-aa46809b390d","input_length":1112,"output_length":124,"hash_ids":[2348066,2348067,2348068],"delay":359.9} +{"session_id":"sess-aa46809b390d","input_length":552,"output_length":151,"hash_ids":[2348069,2348070],"delay":1400.6} +{"session_id":"sess-aa46809b390d","input_length":128,"output_length":123,"hash_ids":[2348071],"delay":10557.3} +{"session_id":"sess-aa46809b390d","input_length":449,"output_length":153,"hash_ids":[2348072],"delay":458.2} +{"session_id":"sess-aa46809b390d","input_length":1318,"output_length":147,"hash_ids":[2348073,2348074,2348075],"delay":577.5} +{"session_id":"sess-aa46809b390d","input_length":1800,"output_length":102,"hash_ids":[2348076,2348077,2348078,2348079],"delay":1543.1} +{"session_id":"sess-aa46809b390d","input_length":1480,"output_length":363,"hash_ids":[2348080,2348081,2348082],"delay":670.6} +{"session_id":"sess-aa46809b390d","input_length":1053,"output_length":74,"hash_ids":[2348083,2348084,2348085],"delay":353.5} +{"session_id":"sess-aa46809b390d","input_length":884,"output_length":250,"hash_ids":[2348086,2348087],"delay":737.7} +{"session_id":"sess-aa46809b390d","input_length":1630,"output_length":491,"hash_ids":[2348088,2348089,2348090,2348091],"delay":308.4} +{"session_id":"sess-aa46809b390d","input_length":258,"output_length":108,"hash_ids":[2348092],"delay":112.0} +{"session_id":"sess-aa46809b390d","input_length":579,"output_length":71,"hash_ids":[2348093,2348094],"delay":434.2} +{"session_id":"sess-aa46809b390d","input_length":1217,"output_length":124,"hash_ids":[2348095,2348096,2348097],"delay":2783.0} +{"session_id":"sess-aa46809b390d","input_length":848,"output_length":866,"hash_ids":[2348098,2348099],"delay":714.8} +{"session_id":"sess-aa46809b390d","input_length":434,"output_length":30,"hash_ids":[2348100],"delay":149.0} +{"session_id":"sess-5f7a68d07e63","input_length":26560,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5f7a68d07e63","input_length":2447,"output_length":186,"hash_ids":[2348101,2348102,2348103,2348104,2348105],"delay":14584.8} +{"session_id":"sess-5f7a68d07e63","input_length":1531,"output_length":338,"hash_ids":[2348106,2348107,2348108],"delay":1853.5} +{"session_id":"sess-5f7a68d07e63","input_length":2142,"output_length":319,"hash_ids":[2348109,2348110,2348111,2348112,2348113],"delay":35251.4} +{"session_id":"sess-5f7a68d07e63","input_length":670,"output_length":236,"hash_ids":[2348114,2348115],"delay":3709.9} +{"session_id":"sess-5f7a68d07e63","input_length":219,"output_length":934,"hash_ids":[2348116],"delay":408.7} +{"session_id":"sess-5f7a68d07e63","input_length":204,"output_length":313,"hash_ids":[2348117],"delay":10813.3} +{"session_id":"sess-5f7a68d07e63","input_length":1757,"output_length":415,"hash_ids":[2348118,2348119,2348120,2348121],"delay":735.3} +{"session_id":"sess-5f7a68d07e63","input_length":1139,"output_length":33,"hash_ids":[2348122,2348123,2348124],"delay":1224.2} +{"session_id":"sess-5f7a68d07e63","input_length":492,"output_length":193,"hash_ids":[2348125],"delay":140.0} +{"session_id":"sess-5f7a68d07e63","input_length":268,"output_length":601,"hash_ids":[2348126],"delay":4414.5} +{"session_id":"sess-5f7a68d07e63","input_length":571,"output_length":77,"hash_ids":[2348127,2348128],"delay":585.4} +{"session_id":"sess-5f7a68d07e63","input_length":352,"output_length":355,"hash_ids":[2348129],"delay":489.0} +{"session_id":"sess-5f7a68d07e63","input_length":415,"output_length":90,"hash_ids":[2348130],"delay":2636.5} +{"session_id":"sess-5f7a68d07e63","input_length":2573,"output_length":38,"hash_ids":[2348131,2348132,2348133,2348134,2348135,2348136],"delay":647.7} +{"session_id":"sess-5f7a68d07e63","input_length":862,"output_length":114,"hash_ids":[2348137,2348138],"delay":486.9} +{"session_id":"sess-5f7a68d07e63","input_length":874,"output_length":68,"hash_ids":[2348139,2348140],"delay":881.0} +{"session_id":"sess-5f7a68d07e63","input_length":369,"output_length":232,"hash_ids":[2348141],"delay":1218.4} +{"session_id":"sess-5f7a68d07e63","input_length":1166,"output_length":176,"hash_ids":[2348142,2348143,2348144],"delay":310.8} +{"session_id":"sess-5f7a68d07e63","input_length":1240,"output_length":424,"hash_ids":[2348145,2348146,2348147],"delay":716.1} +{"session_id":"sess-5f7a68d07e63","input_length":280,"output_length":164,"hash_ids":[2348148],"delay":478.7} +{"session_id":"sess-5f7a68d07e63","input_length":101,"output_length":64,"hash_ids":[2348149],"delay":10717.9} +{"session_id":"sess-5f7a68d07e63","input_length":2642,"output_length":120,"hash_ids":[2348150,2348151,2348152,2348153,2348154,2348155],"delay":15151.6} +{"session_id":"sess-5f7a68d07e63","input_length":506,"output_length":136,"hash_ids":[2348156],"delay":510.4} +{"session_id":"sess-5f7a68d07e63","input_length":2210,"output_length":377,"hash_ids":[2348157,2348158,2348159,2348160,2348161],"delay":991.4} +{"session_id":"sess-5f7a68d07e63","input_length":346,"output_length":813,"hash_ids":[2348162],"delay":837.5} +{"session_id":"sess-5f7a68d07e63","input_length":862,"output_length":461,"hash_ids":[2348163,2348164],"delay":1398.2} +{"session_id":"sess-5f7a68d07e63","input_length":2821,"output_length":226,"hash_ids":[2348165,2348166,2348167,2348168,2348169,2348170],"delay":100.2} +{"session_id":"sess-dbe6c897e9d4","input_length":26461,"output_length":377,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-dbe6c897e9d4","input_length":535,"output_length":46,"hash_ids":[2348171,2348172],"delay":2902.4} +{"session_id":"sess-dbe6c897e9d4","input_length":388,"output_length":260,"hash_ids":[2348173],"delay":249.7} +{"session_id":"sess-dbe6c897e9d4","input_length":590,"output_length":694,"hash_ids":[2348174,2348175],"delay":435.3} +{"session_id":"sess-dbe6c897e9d4","input_length":376,"output_length":65,"hash_ids":[2348176],"delay":3865.2} +{"session_id":"sess-dbe6c897e9d4","input_length":278,"output_length":37,"hash_ids":[2348177],"delay":322.8} +{"session_id":"sess-dbe6c897e9d4","input_length":1402,"output_length":54,"hash_ids":[2348178,2348179,2348180],"delay":56756.4} +{"session_id":"sess-dbe6c897e9d4","input_length":390,"output_length":236,"hash_ids":[2348181],"delay":14580.4} +{"session_id":"sess-dbe6c897e9d4","input_length":406,"output_length":429,"hash_ids":[2348182],"delay":44714.4} +{"session_id":"sess-dbe6c897e9d4","input_length":869,"output_length":249,"hash_ids":[2348183,2348184],"delay":1979.7} +{"session_id":"sess-dbe6c897e9d4","input_length":473,"output_length":106,"hash_ids":[2348185],"delay":3961.4} +{"session_id":"sess-dbe6c897e9d4","input_length":630,"output_length":112,"hash_ids":[2348186,2348187],"delay":7537.1} +{"session_id":"sess-dbe6c897e9d4","input_length":529,"output_length":231,"hash_ids":[2348188,2348189],"delay":1270.6} +{"session_id":"sess-dbe6c897e9d4","input_length":2651,"output_length":135,"hash_ids":[2348190,2348191,2348192,2348193,2348194,2348195],"delay":584.5} +{"session_id":"sess-dbe6c897e9d4","input_length":2401,"output_length":196,"hash_ids":[2348196,2348197,2348198,2348199,2348200],"delay":17593.7} +{"session_id":"sess-dbe6c897e9d4","input_length":811,"output_length":233,"hash_ids":[2348201,2348202],"delay":499.8} +{"session_id":"sess-dbe6c897e9d4","input_length":1301,"output_length":193,"hash_ids":[2348203,2348204,2348205],"delay":425.1} +{"session_id":"sess-dbe6c897e9d4","input_length":1440,"output_length":213,"hash_ids":[2348206,2348207,2348208],"delay":2527.3} +{"session_id":"sess-dbe6c897e9d4","input_length":248,"output_length":50,"hash_ids":[2348209],"delay":304.4} +{"session_id":"sess-dbe6c897e9d4","input_length":591,"output_length":451,"hash_ids":[2348210,2348211],"delay":777.7} +{"session_id":"sess-dbe6c897e9d4","input_length":2680,"output_length":411,"hash_ids":[2348212,2348213,2348214,2348215,2348216,2348217],"delay":8636.7} +{"session_id":"sess-dbe6c897e9d4","input_length":2013,"output_length":381,"hash_ids":[2348218,2348219,2348220,2348221],"delay":997.1} +{"session_id":"sess-dbe6c897e9d4","input_length":1765,"output_length":141,"hash_ids":[2348222,2348223,2348224,2348225],"delay":1472.5} +{"session_id":"sess-6f131aff23d9","input_length":30166,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,2360032,2360033,2360034,2360035,2360036,2360037,2360038],"timestamp":0.0,"group_id":35} +{"session_id":"sess-6f131aff23d9","input_length":585,"output_length":122,"hash_ids":[2360039,2360040],"delay":3117.0} +{"session_id":"sess-6f131aff23d9","input_length":397,"output_length":946,"hash_ids":[2360041],"delay":2123.8} +{"session_id":"sess-6f131aff23d9","input_length":928,"output_length":173,"hash_ids":[2360042,2360043],"delay":638.2} +{"session_id":"sess-6f131aff23d9","input_length":575,"output_length":250,"hash_ids":[2360044,2360045],"delay":124.7} +{"session_id":"sess-6f131aff23d9","input_length":941,"output_length":64,"hash_ids":[2360046,2360047],"delay":2274.1} +{"session_id":"sess-6f131aff23d9","input_length":1538,"output_length":167,"hash_ids":[2360048,2360049,2360050,2360051],"delay":23160.0} +{"session_id":"sess-6f131aff23d9","input_length":1087,"output_length":504,"hash_ids":[2360052,2360053,2360054],"delay":3660.1} +{"session_id":"sess-6f131aff23d9","input_length":2084,"output_length":106,"hash_ids":[2360055,2360056,2360057,2360058,2360059],"delay":41786.2} +{"session_id":"sess-6f131aff23d9","input_length":799,"output_length":66,"hash_ids":[2360060,2360061],"delay":1684.0} +{"session_id":"sess-6f131aff23d9","input_length":417,"output_length":152,"hash_ids":[2360062],"delay":653.3} +{"session_id":"sess-6f131aff23d9","input_length":247,"output_length":88,"hash_ids":[2360063],"delay":10111.0} +{"session_id":"sess-6f131aff23d9","input_length":996,"output_length":222,"hash_ids":[2360064,2360065],"delay":202.9} +{"session_id":"sess-6f131aff23d9","input_length":341,"output_length":297,"hash_ids":[2360066],"delay":677.3} +{"session_id":"sess-6f131aff23d9","input_length":360,"output_length":408,"hash_ids":[2360067],"delay":25778.7} +{"session_id":"sess-6f131aff23d9","input_length":1079,"output_length":835,"hash_ids":[2360068,2360069,2360070],"delay":314.6} +{"session_id":"sess-6f131aff23d9","input_length":1161,"output_length":118,"hash_ids":[2360071,2360072,2360073],"delay":16479.5} +{"session_id":"sess-6f131aff23d9","input_length":542,"output_length":56,"hash_ids":[2360074,2360075],"delay":1567.0} +{"session_id":"sess-6f131aff23d9","input_length":593,"output_length":52,"hash_ids":[2360076,2360077],"delay":27225.6} +{"session_id":"sess-6f131aff23d9","input_length":710,"output_length":320,"hash_ids":[2360078,2360079],"delay":25466.4} +{"session_id":"sess-6f131aff23d9","input_length":482,"output_length":123,"hash_ids":[2360080],"delay":3521.2} +{"session_id":"sess-6f131aff23d9","input_length":830,"output_length":200,"hash_ids":[2360081,2360082],"delay":85.1} +{"session_id":"sess-6f131aff23d9","input_length":561,"output_length":85,"hash_ids":[2360083,2360084],"delay":656.7} +{"session_id":"sess-6f131aff23d9","input_length":2918,"output_length":185,"hash_ids":[2360085,2360086,2360087,2360088,2360089,2360090],"delay":1406.7} +{"session_id":"sess-6f131aff23d9","input_length":1319,"output_length":118,"hash_ids":[2360091,2360092,2360093],"delay":2483.5} +{"session_id":"sess-6f131aff23d9","input_length":686,"output_length":44,"hash_ids":[2360094,2360095],"delay":1573.0} +{"session_id":"sess-6f131aff23d9","input_length":834,"output_length":355,"hash_ids":[2360096,2360097],"delay":7426.3} +{"session_id":"sess-6f131aff23d9","input_length":1447,"output_length":407,"hash_ids":[2360098,2360099,2360100],"delay":7320.0} +{"session_id":"sess-87cd33c190ce","input_length":29865,"output_length":66,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2364032,2364033,2364034,2364035,2364036,2364037,2364038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-87cd33c190ce","input_length":1110,"output_length":460,"hash_ids":[2364039,2364040,2364041],"delay":1440.4} +{"session_id":"sess-87cd33c190ce","input_length":434,"output_length":188,"hash_ids":[2364042],"delay":408.3} +{"session_id":"sess-87cd33c190ce","input_length":615,"output_length":129,"hash_ids":[2364043,2364044],"delay":1494.5} +{"session_id":"sess-87cd33c190ce","input_length":742,"output_length":316,"hash_ids":[2364045,2364046],"delay":1607.9} +{"session_id":"sess-87cd33c190ce","input_length":309,"output_length":300,"hash_ids":[2364047],"delay":1816.6} +{"session_id":"sess-87cd33c190ce","input_length":869,"output_length":462,"hash_ids":[2364048,2364049],"delay":16932.2} +{"session_id":"sess-87cd33c190ce","input_length":1829,"output_length":434,"hash_ids":[2364050,2364051,2364052,2364053],"delay":978.6} +{"session_id":"sess-87cd33c190ce","input_length":120,"output_length":814,"hash_ids":[2364054],"delay":60850.9} +{"session_id":"sess-87cd33c190ce","input_length":601,"output_length":269,"hash_ids":[2364055,2364056],"delay":1567.9} +{"session_id":"sess-87cd33c190ce","input_length":287,"output_length":71,"hash_ids":[2364057],"delay":13161.3} +{"session_id":"sess-87cd33c190ce","input_length":873,"output_length":355,"hash_ids":[2364058,2364059],"delay":2832.0} +{"session_id":"sess-87cd33c190ce","input_length":287,"output_length":229,"hash_ids":[2364060],"delay":517.2} +{"session_id":"sess-87cd33c190ce","input_length":167,"output_length":290,"hash_ids":[2364061],"delay":643.0} +{"session_id":"sess-87cd33c190ce","input_length":1090,"output_length":266,"hash_ids":[2364062,2364063,2364064],"delay":2499.3} +{"session_id":"sess-87cd33c190ce","input_length":864,"output_length":98,"hash_ids":[2364065,2364066],"delay":184.7} +{"session_id":"sess-87cd33c190ce","input_length":470,"output_length":143,"hash_ids":[2364067],"delay":935.5} +{"session_id":"sess-254def583597","input_length":33156,"output_length":269,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2368032,2368033,2368034,2368035,2368036,2368037,2368038,2368039,2368040,2368041,2368042,2368043,2368044],"timestamp":0.0,"group_id":1} +{"session_id":"sess-254def583597","input_length":1785,"output_length":257,"hash_ids":[2368045,2368046,2368047,2368048],"delay":7451.2} +{"session_id":"sess-254def583597","input_length":193,"output_length":754,"hash_ids":[2368049],"delay":1718.8} +{"session_id":"sess-0d9f96a13f0b","input_length":27602,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2372032,2372033],"timestamp":0.0,"group_id":9} +{"session_id":"sess-0d9f96a13f0b","input_length":571,"output_length":87,"hash_ids":[2372034,2372035],"delay":2737.8} +{"session_id":"sess-0d9f96a13f0b","input_length":1367,"output_length":114,"hash_ids":[2372036,2372037,2372038],"delay":1886.1} +{"session_id":"sess-0d9f96a13f0b","input_length":2123,"output_length":213,"hash_ids":[2372039,2372040,2372041,2372042,2372043],"delay":664.0} +{"session_id":"sess-0d9f96a13f0b","input_length":2128,"output_length":177,"hash_ids":[2372044,2372045,2372046,2372047,2372048],"delay":1862.1} +{"session_id":"sess-0d9f96a13f0b","input_length":1366,"output_length":302,"hash_ids":[2372049,2372050,2372051],"delay":12894.8} +{"session_id":"sess-0d9f96a13f0b","input_length":863,"output_length":87,"hash_ids":[2372052,2372053],"delay":808.2} +{"session_id":"sess-0d9f96a13f0b","input_length":236,"output_length":349,"hash_ids":[2372054],"delay":133.8} +{"session_id":"sess-0d9f96a13f0b","input_length":1332,"output_length":426,"hash_ids":[2372055,2372056,2372057],"delay":393.2} +{"session_id":"sess-58c5d90e1ce1","input_length":30337,"output_length":174,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2376032,2376033,2376034,2376035,2376036,2376037,2376038,2376039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-58c5d90e1ce1","input_length":1594,"output_length":61,"hash_ids":[2376040,2376041,2376042,2376043],"delay":17345.6} +{"session_id":"sess-58c5d90e1ce1","input_length":1434,"output_length":40,"hash_ids":[2376044,2376045,2376046],"delay":3175.8} +{"session_id":"sess-58c5d90e1ce1","input_length":176,"output_length":30,"hash_ids":[2376047],"delay":1663.6} +{"session_id":"sess-58c5d90e1ce1","input_length":2266,"output_length":72,"hash_ids":[2376048,2376049,2376050,2376051,2376052],"delay":10660.7} +{"session_id":"sess-58c5d90e1ce1","input_length":1519,"output_length":43,"hash_ids":[2376053,2376054,2376055],"delay":278.2} +{"session_id":"sess-58c5d90e1ce1","input_length":2612,"output_length":594,"hash_ids":[2376056,2376057,2376058,2376059,2376060,2376061],"delay":10297.5} +{"session_id":"sess-58c5d90e1ce1","input_length":780,"output_length":221,"hash_ids":[2376062,2376063],"delay":696.7} +{"session_id":"sess-58c5d90e1ce1","input_length":1147,"output_length":96,"hash_ids":[2376064,2376065,2376066],"delay":2050.8} +{"session_id":"sess-58c5d90e1ce1","input_length":28,"output_length":30,"hash_ids":[2376067],"delay":52113.8} +{"session_id":"sess-58c5d90e1ce1","input_length":1100,"output_length":724,"hash_ids":[2376068,2376069,2376070],"delay":276.5} +{"session_id":"sess-58c5d90e1ce1","input_length":763,"output_length":427,"hash_ids":[2376071,2376072],"delay":8757.8} +{"session_id":"sess-58c5d90e1ce1","input_length":638,"output_length":303,"hash_ids":[2376073,2376074],"delay":744.0} +{"session_id":"sess-58c5d90e1ce1","input_length":1459,"output_length":465,"hash_ids":[2376075,2376076,2376077],"delay":642.8} +{"session_id":"sess-58c5d90e1ce1","input_length":309,"output_length":109,"hash_ids":[2376078],"delay":1191.4} +{"session_id":"sess-58c5d90e1ce1","input_length":2341,"output_length":227,"hash_ids":[2376079,2376080,2376081,2376082,2376083],"delay":2315.4} +{"session_id":"sess-58c5d90e1ce1","input_length":2242,"output_length":123,"hash_ids":[2376084,2376085,2376086,2376087,2376088],"delay":481.1} +{"session_id":"sess-58c5d90e1ce1","input_length":866,"output_length":232,"hash_ids":[2376089,2376090],"delay":849.2} +{"session_id":"sess-58c5d90e1ce1","input_length":1960,"output_length":32,"hash_ids":[2376091,2376092,2376093,2376094],"delay":459.1} +{"session_id":"sess-58c5d90e1ce1","input_length":759,"output_length":213,"hash_ids":[2376095,2376096],"delay":200.1} +{"session_id":"sess-58c5d90e1ce1","input_length":2476,"output_length":53,"hash_ids":[2376097,2376098,2376099,2376100,2376101],"delay":1453.4} +{"session_id":"sess-58c5d90e1ce1","input_length":1026,"output_length":43,"hash_ids":[2376102,2376103,2376104],"delay":11940.2} +{"session_id":"sess-58c5d90e1ce1","input_length":1228,"output_length":462,"hash_ids":[2376105,2376106,2376107],"delay":610.0} +{"session_id":"sess-58c5d90e1ce1","input_length":445,"output_length":216,"hash_ids":[2376108],"delay":437.7} +{"session_id":"sess-58c5d90e1ce1","input_length":773,"output_length":89,"hash_ids":[2376109,2376110],"delay":150.8} +{"session_id":"sess-64fd3767312a","input_length":37543,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2380032,2380033,2380034,2380035,2380036,2380037,2380038,2380039,2380040,2380041,2380042,2380043,2380044,2380045,2380046,2380047,2380048,2380049,2380050,2380051,2380052,2380053],"timestamp":0.0,"group_id":0} +{"session_id":"sess-64fd3767312a","input_length":685,"output_length":383,"hash_ids":[2380054,2380055],"delay":537.2} +{"session_id":"sess-64fd3767312a","input_length":1176,"output_length":64,"hash_ids":[2380056,2380057,2380058],"delay":1118.2} +{"session_id":"sess-64fd3767312a","input_length":2409,"output_length":1270,"hash_ids":[2380059,2380060,2380061,2380062,2380063],"delay":12629.1} +{"session_id":"sess-64fd3767312a","input_length":959,"output_length":30,"hash_ids":[2380064,2380065],"delay":799.1} +{"session_id":"sess-64fd3767312a","input_length":199,"output_length":147,"hash_ids":[2380066],"delay":668.4} +{"session_id":"sess-64fd3767312a","input_length":1510,"output_length":583,"hash_ids":[2380067,2380068,2380069],"delay":1980.5} +{"session_id":"sess-64fd3767312a","input_length":759,"output_length":72,"hash_ids":[2380070,2380071],"delay":23229.5} +{"session_id":"sess-64fd3767312a","input_length":894,"output_length":502,"hash_ids":[2380072,2380073],"delay":21791.2} +{"session_id":"sess-64fd3767312a","input_length":1532,"output_length":400,"hash_ids":[2380074,2380075,2380076],"delay":7969.0} +{"session_id":"sess-64fd3767312a","input_length":864,"output_length":182,"hash_ids":[2380077,2380078],"delay":1976.5} +{"session_id":"sess-64fd3767312a","input_length":470,"output_length":356,"hash_ids":[2380079],"delay":1167.5} +{"session_id":"sess-d384ceb8bb1b","input_length":27617,"output_length":108,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2384032,2384033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d384ceb8bb1b","input_length":565,"output_length":351,"hash_ids":[2384034,2384035],"delay":435.1} +{"session_id":"sess-d384ceb8bb1b","input_length":413,"output_length":85,"hash_ids":[2384036],"delay":15523.7} +{"session_id":"sess-d384ceb8bb1b","input_length":414,"output_length":91,"hash_ids":[2384037],"delay":1666.2} +{"session_id":"sess-d384ceb8bb1b","input_length":122,"output_length":137,"hash_ids":[2384038],"delay":18422.4} +{"session_id":"sess-d384ceb8bb1b","input_length":1928,"output_length":324,"hash_ids":[2384039,2384040,2384041,2384042],"delay":42595.5} +{"session_id":"sess-d384ceb8bb1b","input_length":2207,"output_length":369,"hash_ids":[2384043,2384044,2384045,2384046,2384047],"delay":1748.6} +{"session_id":"sess-d384ceb8bb1b","input_length":2029,"output_length":82,"hash_ids":[2384048,2384049,2384050,2384051],"delay":825.2} +{"session_id":"sess-d384ceb8bb1b","input_length":382,"output_length":123,"hash_ids":[2384052],"delay":1124.0} +{"session_id":"sess-d384ceb8bb1b","input_length":752,"output_length":123,"hash_ids":[2384053,2384054],"delay":6953.9} +{"session_id":"sess-d384ceb8bb1b","input_length":526,"output_length":315,"hash_ids":[2384055,2384056],"delay":2047.8} +{"session_id":"sess-d384ceb8bb1b","input_length":931,"output_length":103,"hash_ids":[2384057,2384058],"delay":1162.3} +{"session_id":"sess-d384ceb8bb1b","input_length":553,"output_length":684,"hash_ids":[2384059,2384060],"delay":3392.4} +{"session_id":"sess-d384ceb8bb1b","input_length":2495,"output_length":246,"hash_ids":[2384061,2384062,2384063,2384064,2384065],"delay":1445.0} +{"session_id":"sess-d384ceb8bb1b","input_length":1019,"output_length":90,"hash_ids":[2384066,2384067],"delay":3187.1} +{"session_id":"sess-d384ceb8bb1b","input_length":1707,"output_length":324,"hash_ids":[2384068,2384069,2384070,2384071],"delay":686.2} +{"session_id":"sess-d384ceb8bb1b","input_length":1641,"output_length":241,"hash_ids":[2384072,2384073,2384074,2384075],"delay":1815.5} +{"session_id":"sess-d384ceb8bb1b","input_length":1546,"output_length":30,"hash_ids":[2384076,2384077,2384078,2384079],"delay":13348.0} +{"session_id":"sess-d384ceb8bb1b","input_length":2005,"output_length":249,"hash_ids":[2384080,2384081,2384082,2384083],"delay":20738.3} +{"session_id":"sess-d384ceb8bb1b","input_length":514,"output_length":203,"hash_ids":[2384084,2384085],"delay":1789.7} +{"session_id":"sess-d384ceb8bb1b","input_length":257,"output_length":30,"hash_ids":[2384086],"delay":398.8} +{"session_id":"sess-d384ceb8bb1b","input_length":1195,"output_length":30,"hash_ids":[2384087,2384088,2384089],"delay":173.4} +{"session_id":"sess-d384ceb8bb1b","input_length":2129,"output_length":59,"hash_ids":[2384090,2384091,2384092,2384093,2384094],"delay":241.6} +{"session_id":"sess-d384ceb8bb1b","input_length":166,"output_length":788,"hash_ids":[2384095],"delay":542.5} +{"session_id":"sess-d384ceb8bb1b","input_length":586,"output_length":772,"hash_ids":[2384096,2384097],"delay":4492.5} +{"session_id":"sess-d384ceb8bb1b","input_length":623,"output_length":83,"hash_ids":[2384098,2384099],"delay":776.8} +{"session_id":"sess-d384ceb8bb1b","input_length":2243,"output_length":237,"hash_ids":[2384100,2384101,2384102,2384103,2384104],"delay":597.9} +{"session_id":"sess-7d8ed10db0bf","input_length":28396,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2388032,2388033,2388034,2388035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7d8ed10db0bf","input_length":891,"output_length":200,"hash_ids":[2388036,2388037],"delay":14342.9} +{"session_id":"sess-7d8ed10db0bf","input_length":605,"output_length":505,"hash_ids":[2388038,2388039],"delay":14440.4} +{"session_id":"sess-7d8ed10db0bf","input_length":343,"output_length":70,"hash_ids":[2388040],"delay":691.9} +{"session_id":"sess-7d8ed10db0bf","input_length":570,"output_length":430,"hash_ids":[2388041,2388042],"delay":8052.6} +{"session_id":"sess-7d8ed10db0bf","input_length":81,"output_length":150,"hash_ids":[2388043],"delay":128.9} +{"session_id":"sess-7d8ed10db0bf","input_length":1395,"output_length":94,"hash_ids":[2388044,2388045,2388046],"delay":617.1} +{"session_id":"sess-7d8ed10db0bf","input_length":1061,"output_length":149,"hash_ids":[2388047,2388048,2388049],"delay":404.6} +{"session_id":"sess-7d8ed10db0bf","input_length":1154,"output_length":424,"hash_ids":[2388050,2388051,2388052],"delay":446.5} +{"session_id":"sess-7d8ed10db0bf","input_length":1154,"output_length":149,"hash_ids":[2388053,2388054,2388055],"delay":1905.4} +{"session_id":"sess-7d8ed10db0bf","input_length":1505,"output_length":66,"hash_ids":[2388056,2388057,2388058],"delay":1106.7} +{"session_id":"sess-7d8ed10db0bf","input_length":692,"output_length":640,"hash_ids":[2388059,2388060],"delay":9716.3} +{"session_id":"sess-7d8ed10db0bf","input_length":2812,"output_length":316,"hash_ids":[2388061,2388062,2388063,2388064,2388065,2388066],"delay":652.7} +{"session_id":"sess-7d8ed10db0bf","input_length":2267,"output_length":392,"hash_ids":[2388067,2388068,2388069,2388070,2388071],"delay":1942.9} +{"session_id":"sess-7d8ed10db0bf","input_length":301,"output_length":100,"hash_ids":[2388072],"delay":1313.7} +{"session_id":"sess-7d8ed10db0bf","input_length":292,"output_length":254,"hash_ids":[2388073],"delay":10676.4} +{"session_id":"sess-7d8ed10db0bf","input_length":563,"output_length":285,"hash_ids":[2388074,2388075],"delay":700.9} +{"session_id":"sess-e806941ff3ef","input_length":26229,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e806941ff3ef","input_length":2154,"output_length":118,"hash_ids":[2388076,2388077,2388078,2388079,2388080],"delay":471.0} +{"session_id":"sess-e806941ff3ef","input_length":2681,"output_length":653,"hash_ids":[2388081,2388082,2388083,2388084,2388085,2388086],"delay":3314.7} +{"session_id":"sess-e806941ff3ef","input_length":905,"output_length":300,"hash_ids":[2388087,2388088],"delay":316.5} +{"session_id":"sess-e806941ff3ef","input_length":612,"output_length":83,"hash_ids":[2388089,2388090],"delay":480.3} +{"session_id":"sess-e806941ff3ef","input_length":258,"output_length":252,"hash_ids":[2388091],"delay":2012.1} +{"session_id":"sess-e806941ff3ef","input_length":352,"output_length":72,"hash_ids":[2388092],"delay":1385.7} +{"session_id":"sess-e806941ff3ef","input_length":1650,"output_length":129,"hash_ids":[2388093,2388094,2388095,2388096],"delay":1138.3} +{"session_id":"sess-e806941ff3ef","input_length":719,"output_length":202,"hash_ids":[2388097,2388098],"delay":4237.9} +{"session_id":"sess-e806941ff3ef","input_length":609,"output_length":172,"hash_ids":[2388099,2388100],"delay":4196.7} +{"session_id":"sess-e806941ff3ef","input_length":151,"output_length":472,"hash_ids":[2388101],"delay":644.3} +{"session_id":"sess-e806941ff3ef","input_length":635,"output_length":436,"hash_ids":[2388102,2388103],"delay":5795.3} +{"session_id":"sess-e806941ff3ef","input_length":1623,"output_length":93,"hash_ids":[2388104,2388105,2388106,2388107],"delay":302.4} +{"session_id":"sess-e806941ff3ef","input_length":1262,"output_length":255,"hash_ids":[2388108,2388109,2388110],"delay":1412.5} +{"session_id":"sess-e806941ff3ef","input_length":836,"output_length":249,"hash_ids":[2388111,2388112],"delay":27991.8} +{"session_id":"sess-e806941ff3ef","input_length":851,"output_length":66,"hash_ids":[2388113,2388114],"delay":8149.8} +{"session_id":"sess-e806941ff3ef","input_length":230,"output_length":30,"hash_ids":[2388115],"delay":3142.5} +{"session_id":"sess-e806941ff3ef","input_length":508,"output_length":159,"hash_ids":[2388116],"delay":7945.1} +{"session_id":"sess-e806941ff3ef","input_length":641,"output_length":611,"hash_ids":[2388117,2388118],"delay":5527.8} +{"session_id":"sess-e806941ff3ef","input_length":905,"output_length":197,"hash_ids":[2388119,2388120],"delay":2486.8} +{"session_id":"sess-e806941ff3ef","input_length":682,"output_length":166,"hash_ids":[2388121,2388122],"delay":1029.1} +{"session_id":"sess-e806941ff3ef","input_length":451,"output_length":75,"hash_ids":[2388123],"delay":1011.2} +{"session_id":"sess-e806941ff3ef","input_length":932,"output_length":352,"hash_ids":[2388124,2388125],"delay":535.3} +{"session_id":"sess-e806941ff3ef","input_length":746,"output_length":215,"hash_ids":[2388126,2388127],"delay":691.4} +{"session_id":"sess-e806941ff3ef","input_length":390,"output_length":648,"hash_ids":[2388128],"delay":465.0} +{"session_id":"sess-e806941ff3ef","input_length":426,"output_length":102,"hash_ids":[2388129],"delay":1212.3} +{"session_id":"sess-e806941ff3ef","input_length":993,"output_length":125,"hash_ids":[2388130,2388131],"delay":766.6} +{"session_id":"sess-c23c367c85bd","input_length":28729,"output_length":88,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2396032,2396033,2396034,2396035,2396036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c23c367c85bd","input_length":244,"output_length":68,"hash_ids":[2396037],"delay":537.4} +{"session_id":"sess-c23c367c85bd","input_length":1413,"output_length":43,"hash_ids":[2396038,2396039,2396040],"delay":1508.9} +{"session_id":"sess-c23c367c85bd","input_length":622,"output_length":141,"hash_ids":[2396041,2396042],"delay":420.3} +{"session_id":"sess-c23c367c85bd","input_length":575,"output_length":370,"hash_ids":[2396043,2396044],"delay":1022.2} +{"session_id":"sess-c23c367c85bd","input_length":569,"output_length":90,"hash_ids":[2396045,2396046],"delay":19671.2} +{"session_id":"sess-c23c367c85bd","input_length":1006,"output_length":299,"hash_ids":[2396047,2396048],"delay":1456.7} +{"session_id":"sess-c23c367c85bd","input_length":1045,"output_length":417,"hash_ids":[2396049,2396050,2396051],"delay":13375.9} +{"session_id":"sess-c23c367c85bd","input_length":955,"output_length":368,"hash_ids":[2396052,2396053],"delay":1014.8} +{"session_id":"sess-c23c367c85bd","input_length":1264,"output_length":117,"hash_ids":[2396054,2396055,2396056],"delay":43301.5} +{"session_id":"sess-c23c367c85bd","input_length":2279,"output_length":167,"hash_ids":[2396057,2396058,2396059,2396060,2396061],"delay":2673.0} +{"session_id":"sess-c23c367c85bd","input_length":701,"output_length":478,"hash_ids":[2396062,2396063],"delay":1257.2} +{"session_id":"sess-c23c367c85bd","input_length":455,"output_length":257,"hash_ids":[2396064],"delay":449.1} +{"session_id":"sess-c23c367c85bd","input_length":2059,"output_length":192,"hash_ids":[2396065,2396066,2396067,2396068,2396069],"delay":750.0} +{"session_id":"sess-c23c367c85bd","input_length":309,"output_length":78,"hash_ids":[2396070],"delay":13550.5} +{"session_id":"sess-c23c367c85bd","input_length":1535,"output_length":95,"hash_ids":[2396071,2396072,2396073],"delay":1398.7} +{"session_id":"sess-c23c367c85bd","input_length":532,"output_length":303,"hash_ids":[2396074,2396075],"delay":178.7} +{"session_id":"sess-c23c367c85bd","input_length":2092,"output_length":296,"hash_ids":[2396076,2396077,2396078,2396079,2396080],"delay":502.8} +{"session_id":"sess-c23c367c85bd","input_length":643,"output_length":72,"hash_ids":[2396081,2396082],"delay":777.6} +{"session_id":"sess-c23c367c85bd","input_length":1370,"output_length":234,"hash_ids":[2396083,2396084,2396085],"delay":499.3} +{"session_id":"sess-c23c367c85bd","input_length":2017,"output_length":157,"hash_ids":[2396086,2396087,2396088,2396089],"delay":221.2} +{"session_id":"sess-c23c367c85bd","input_length":2117,"output_length":104,"hash_ids":[2396090,2396091,2396092,2396093,2396094],"delay":928.7} +{"session_id":"sess-c23c367c85bd","input_length":1104,"output_length":210,"hash_ids":[2396095,2396096,2396097],"delay":488.2} +{"session_id":"sess-c23c367c85bd","input_length":79,"output_length":77,"hash_ids":[2396098],"delay":18543.2} +{"session_id":"sess-c23c367c85bd","input_length":1567,"output_length":42,"hash_ids":[2396099,2396100,2396101,2396102],"delay":1023.7} +{"session_id":"sess-c23c367c85bd","input_length":421,"output_length":321,"hash_ids":[2396103],"delay":276.8} +{"session_id":"sess-c23c367c85bd","input_length":1534,"output_length":57,"hash_ids":[2396104,2396105,2396106],"delay":317.2} +{"session_id":"sess-c23c367c85bd","input_length":273,"output_length":88,"hash_ids":[2396107],"delay":1573.0} +{"session_id":"sess-c23c367c85bd","input_length":1866,"output_length":369,"hash_ids":[2396108,2396109,2396110,2396111],"delay":492.1} +{"session_id":"sess-223e3be3cbb6","input_length":31375,"output_length":324,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2400032,2400033,2400034,2400035,2400036,2400037,2400038,2400039,2400040,2400041],"timestamp":0.0,"group_id":3} +{"session_id":"sess-223e3be3cbb6","input_length":1604,"output_length":46,"hash_ids":[2400042,2400043,2400044,2400045],"delay":1025.4} +{"session_id":"sess-223e3be3cbb6","input_length":730,"output_length":58,"hash_ids":[2400046,2400047],"delay":54752.0} +{"session_id":"sess-223e3be3cbb6","input_length":1352,"output_length":191,"hash_ids":[2400048,2400049,2400050],"delay":198.2} +{"session_id":"sess-223e3be3cbb6","input_length":2008,"output_length":271,"hash_ids":[2400051,2400052,2400053,2400054],"delay":414.2} +{"session_id":"sess-223e3be3cbb6","input_length":815,"output_length":266,"hash_ids":[2400055,2400056],"delay":15817.2} +{"session_id":"sess-223e3be3cbb6","input_length":746,"output_length":200,"hash_ids":[2400057,2400058],"delay":419.8} +{"session_id":"sess-223e3be3cbb6","input_length":336,"output_length":149,"hash_ids":[2400059],"delay":1886.1} +{"session_id":"sess-223e3be3cbb6","input_length":304,"output_length":74,"hash_ids":[2400060],"delay":553.5} +{"session_id":"sess-223e3be3cbb6","input_length":2362,"output_length":47,"hash_ids":[2400061,2400062,2400063,2400064,2400065],"delay":10983.2} +{"session_id":"sess-223e3be3cbb6","input_length":1176,"output_length":91,"hash_ids":[2400066,2400067,2400068],"delay":6729.6} +{"session_id":"sess-223e3be3cbb6","input_length":285,"output_length":456,"hash_ids":[2400069],"delay":2297.5} +{"session_id":"sess-223e3be3cbb6","input_length":419,"output_length":149,"hash_ids":[2400070],"delay":781.5} +{"session_id":"sess-223e3be3cbb6","input_length":1239,"output_length":143,"hash_ids":[2400071,2400072,2400073],"delay":352.7} +{"session_id":"sess-223e3be3cbb6","input_length":2789,"output_length":223,"hash_ids":[2400074,2400075,2400076,2400077,2400078,2400079],"delay":7271.1} +{"session_id":"sess-223e3be3cbb6","input_length":544,"output_length":252,"hash_ids":[2400080,2400081],"delay":12397.2} +{"session_id":"sess-223e3be3cbb6","input_length":1037,"output_length":150,"hash_ids":[2400082,2400083,2400084],"delay":431.6} +{"session_id":"sess-223e3be3cbb6","input_length":546,"output_length":259,"hash_ids":[2400085,2400086],"delay":4410.1} +{"session_id":"sess-223e3be3cbb6","input_length":785,"output_length":128,"hash_ids":[2400087,2400088],"delay":233.5} +{"session_id":"sess-223e3be3cbb6","input_length":2979,"output_length":975,"hash_ids":[2400089,2400090,2400091,2400092,2400093,2400094],"delay":86.5} +{"session_id":"sess-223e3be3cbb6","input_length":992,"output_length":128,"hash_ids":[2400095,2400096],"delay":812.4} +{"session_id":"sess-223e3be3cbb6","input_length":1275,"output_length":385,"hash_ids":[2400097,2400098,2400099],"delay":1374.7} +{"session_id":"sess-223e3be3cbb6","input_length":2112,"output_length":114,"hash_ids":[2400100,2400101,2400102,2400103,2400104],"delay":1108.4} +{"session_id":"sess-223e3be3cbb6","input_length":362,"output_length":103,"hash_ids":[2400105],"delay":306.1} +{"session_id":"sess-223e3be3cbb6","input_length":974,"output_length":396,"hash_ids":[2400106,2400107],"delay":5455.2} +{"session_id":"sess-66327532a461","input_length":26484,"output_length":235,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-66327532a461","input_length":757,"output_length":105,"hash_ids":[2400108,2400109],"delay":433.6} +{"session_id":"sess-66327532a461","input_length":1421,"output_length":179,"hash_ids":[2400110,2400111,2400112],"delay":363.3} +{"session_id":"sess-66327532a461","input_length":720,"output_length":68,"hash_ids":[2400113,2400114],"delay":868.1} +{"session_id":"sess-66327532a461","input_length":1817,"output_length":113,"hash_ids":[2400115,2400116,2400117,2400118],"delay":1865.4} +{"session_id":"sess-66327532a461","input_length":1438,"output_length":766,"hash_ids":[2400119,2400120,2400121],"delay":473.6} +{"session_id":"sess-66327532a461","input_length":2079,"output_length":137,"hash_ids":[2400122,2400123,2400124,2400125,2400126],"delay":33274.2} +{"session_id":"sess-66327532a461","input_length":143,"output_length":128,"hash_ids":[2400127],"delay":1200.0} +{"session_id":"sess-66327532a461","input_length":703,"output_length":87,"hash_ids":[2400128,2400129],"delay":7613.9} +{"session_id":"sess-66327532a461","input_length":2509,"output_length":171,"hash_ids":[2400130,2400131,2400132,2400133,2400134],"delay":13338.1} +{"session_id":"sess-66327532a461","input_length":594,"output_length":165,"hash_ids":[2400135,2400136],"delay":265.2} +{"session_id":"sess-66327532a461","input_length":669,"output_length":61,"hash_ids":[2400137,2400138],"delay":5570.9} +{"session_id":"sess-66327532a461","input_length":794,"output_length":63,"hash_ids":[2400139,2400140],"delay":235.9} +{"session_id":"sess-66327532a461","input_length":982,"output_length":529,"hash_ids":[2400141,2400142],"delay":1590.6} +{"session_id":"sess-66327532a461","input_length":1008,"output_length":77,"hash_ids":[2400143,2400144],"delay":184.7} +{"session_id":"sess-66327532a461","input_length":441,"output_length":257,"hash_ids":[2400145],"delay":451.3} +{"session_id":"sess-66327532a461","input_length":147,"output_length":663,"hash_ids":[2400146],"delay":518.8} +{"session_id":"sess-66327532a461","input_length":333,"output_length":78,"hash_ids":[2400147],"delay":32815.8} +{"session_id":"sess-66327532a461","input_length":2629,"output_length":1313,"hash_ids":[2400148,2400149,2400150,2400151,2400152,2400153],"delay":39569.4} +{"session_id":"sess-66327532a461","input_length":898,"output_length":64,"hash_ids":[2400154,2400155],"delay":690.4} +{"session_id":"sess-66327532a461","input_length":1044,"output_length":765,"hash_ids":[2400156,2400157,2400158],"delay":105.9} +{"session_id":"sess-66327532a461","input_length":1265,"output_length":130,"hash_ids":[2400159,2400160,2400161],"delay":14373.3} +{"session_id":"sess-66327532a461","input_length":2352,"output_length":671,"hash_ids":[2400162,2400163,2400164,2400165,2400166],"delay":218.1} +{"session_id":"sess-66327532a461","input_length":2016,"output_length":896,"hash_ids":[2400167,2400168,2400169,2400170],"delay":298.0} +{"session_id":"sess-66327532a461","input_length":475,"output_length":564,"hash_ids":[2400171],"delay":383.7} +{"session_id":"sess-66327532a461","input_length":145,"output_length":275,"hash_ids":[2400172],"delay":555.5} +{"session_id":"sess-66327532a461","input_length":1874,"output_length":463,"hash_ids":[2400173,2400174,2400175,2400176],"delay":234.2} +{"session_id":"sess-9ad3320d4ef4","input_length":26221,"output_length":667,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251],"timestamp":0.0,"group_id":6} +{"session_id":"sess-9ad3320d4ef4","input_length":638,"output_length":1166,"hash_ids":[2400177,2400178],"delay":124.6} +{"session_id":"sess-9ad3320d4ef4","input_length":1296,"output_length":208,"hash_ids":[2400179,2400180,2400181],"delay":1051.6} +{"session_id":"sess-9ad3320d4ef4","input_length":299,"output_length":451,"hash_ids":[2400182],"delay":573.8} +{"session_id":"sess-9ad3320d4ef4","input_length":615,"output_length":75,"hash_ids":[2400183,2400184],"delay":595.1} +{"session_id":"sess-9ad3320d4ef4","input_length":857,"output_length":314,"hash_ids":[2400185,2400186],"delay":661.5} +{"session_id":"sess-9ad3320d4ef4","input_length":766,"output_length":259,"hash_ids":[2400187,2400188],"delay":1773.3} +{"session_id":"sess-9ad3320d4ef4","input_length":2317,"output_length":102,"hash_ids":[2400189,2400190,2400191,2400192,2400193],"delay":3393.1} +{"session_id":"sess-9ad3320d4ef4","input_length":337,"output_length":131,"hash_ids":[2400194],"delay":1038.2} +{"session_id":"sess-9ad3320d4ef4","input_length":1027,"output_length":565,"hash_ids":[2400195,2400196,2400197],"delay":770.7} +{"session_id":"sess-9ad3320d4ef4","input_length":532,"output_length":428,"hash_ids":[2400198,2400199],"delay":250.9} +{"session_id":"sess-9ad3320d4ef4","input_length":418,"output_length":820,"hash_ids":[2400200],"delay":2065.3} +{"session_id":"sess-9ad3320d4ef4","input_length":624,"output_length":359,"hash_ids":[2400201,2400202],"delay":1281.5} +{"session_id":"sess-9ad3320d4ef4","input_length":2280,"output_length":45,"hash_ids":[2400203,2400204,2400205,2400206,2400207],"delay":1572.7} +{"session_id":"sess-9ad3320d4ef4","input_length":1623,"output_length":168,"hash_ids":[2400208,2400209,2400210,2400211],"delay":7071.0} +{"session_id":"sess-9ad3320d4ef4","input_length":2535,"output_length":563,"hash_ids":[2400212,2400213,2400214,2400215,2400216],"delay":18808.8} +{"session_id":"sess-9ad3320d4ef4","input_length":419,"output_length":898,"hash_ids":[2400217],"delay":386.1} +{"session_id":"sess-956ce9be21a7","input_length":29325,"output_length":43,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2412032,2412033,2412034,2412035,2412036,2412037],"timestamp":0.0,"group_id":13} +{"session_id":"sess-956ce9be21a7","input_length":565,"output_length":109,"hash_ids":[2412038,2412039],"delay":20952.8} +{"session_id":"sess-956ce9be21a7","input_length":612,"output_length":489,"hash_ids":[2412040,2412041],"delay":33769.0} +{"session_id":"sess-956ce9be21a7","input_length":855,"output_length":133,"hash_ids":[2412042,2412043],"delay":6301.9} +{"session_id":"sess-956ce9be21a7","input_length":1033,"output_length":163,"hash_ids":[2412044,2412045,2412046],"delay":2389.7} +{"session_id":"sess-956ce9be21a7","input_length":621,"output_length":375,"hash_ids":[2412047,2412048],"delay":714.2} +{"session_id":"sess-956ce9be21a7","input_length":1195,"output_length":251,"hash_ids":[2412049,2412050,2412051],"delay":17790.0} +{"session_id":"sess-956ce9be21a7","input_length":1553,"output_length":467,"hash_ids":[2412052,2412053,2412054,2412055],"delay":764.8} +{"session_id":"sess-956ce9be21a7","input_length":2492,"output_length":367,"hash_ids":[2412056,2412057,2412058,2412059,2412060],"delay":1568.3} +{"session_id":"sess-956ce9be21a7","input_length":332,"output_length":111,"hash_ids":[2412061],"delay":1275.6} +{"session_id":"sess-956ce9be21a7","input_length":2561,"output_length":77,"hash_ids":[2412062,2412063,2412064,2412065,2412066,2412067],"delay":250.3} +{"session_id":"sess-956ce9be21a7","input_length":733,"output_length":154,"hash_ids":[2412068,2412069],"delay":461.3} +{"session_id":"sess-956ce9be21a7","input_length":2636,"output_length":285,"hash_ids":[2412070,2412071,2412072,2412073,2412074,2412075],"delay":2963.0} +{"session_id":"sess-956ce9be21a7","input_length":426,"output_length":355,"hash_ids":[2412076],"delay":1255.5} +{"session_id":"sess-956ce9be21a7","input_length":499,"output_length":300,"hash_ids":[2412077],"delay":364.6} +{"session_id":"sess-956ce9be21a7","input_length":656,"output_length":40,"hash_ids":[2412078,2412079],"delay":810.4} +{"session_id":"sess-956ce9be21a7","input_length":911,"output_length":335,"hash_ids":[2412080,2412081],"delay":1459.4} +{"session_id":"sess-8fcc511c078b","input_length":28274,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2416032,2416033,2416034,2416035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8fcc511c078b","input_length":1957,"output_length":84,"hash_ids":[2416036,2416037,2416038,2416039],"delay":2709.3} +{"session_id":"sess-8fcc511c078b","input_length":1654,"output_length":37,"hash_ids":[2416040,2416041,2416042,2416043],"delay":8102.7} +{"session_id":"sess-8fcc511c078b","input_length":1487,"output_length":114,"hash_ids":[2416044,2416045,2416046],"delay":2157.7} +{"session_id":"sess-8fcc511c078b","input_length":909,"output_length":239,"hash_ids":[2416047,2416048],"delay":2836.5} +{"session_id":"sess-8fcc511c078b","input_length":923,"output_length":785,"hash_ids":[2416049,2416050],"delay":1248.6} +{"session_id":"sess-8fcc511c078b","input_length":1396,"output_length":152,"hash_ids":[2416051,2416052,2416053],"delay":735.7} +{"session_id":"sess-8fcc511c078b","input_length":425,"output_length":367,"hash_ids":[2416054],"delay":31973.8} +{"session_id":"sess-8fcc511c078b","input_length":1460,"output_length":216,"hash_ids":[2416055,2416056,2416057],"delay":1402.7} +{"session_id":"sess-8fcc511c078b","input_length":1025,"output_length":328,"hash_ids":[2416058,2416059,2416060],"delay":1907.4} +{"session_id":"sess-8fcc511c078b","input_length":613,"output_length":42,"hash_ids":[2416061,2416062],"delay":988.4} +{"session_id":"sess-8fcc511c078b","input_length":695,"output_length":93,"hash_ids":[2416063,2416064],"delay":1488.1} +{"session_id":"sess-8fcc511c078b","input_length":2579,"output_length":56,"hash_ids":[2416065,2416066,2416067,2416068,2416069,2416070],"delay":4471.8} +{"session_id":"sess-8fcc511c078b","input_length":162,"output_length":264,"hash_ids":[2416071],"delay":1073.8} +{"session_id":"sess-8fcc511c078b","input_length":1618,"output_length":802,"hash_ids":[2416072,2416073,2416074,2416075],"delay":10274.6} +{"session_id":"sess-8fcc511c078b","input_length":1169,"output_length":230,"hash_ids":[2416076,2416077,2416078],"delay":1083.0} +{"session_id":"sess-8fcc511c078b","input_length":379,"output_length":288,"hash_ids":[2416079],"delay":1922.1} +{"session_id":"sess-8fcc511c078b","input_length":858,"output_length":337,"hash_ids":[2416080,2416081],"delay":13566.1} +{"session_id":"sess-8fcc511c078b","input_length":1279,"output_length":192,"hash_ids":[2416082,2416083,2416084],"delay":729.8} +{"session_id":"sess-8fcc511c078b","input_length":2440,"output_length":263,"hash_ids":[2416085,2416086,2416087,2416088,2416089],"delay":21135.4} +{"session_id":"sess-8fcc511c078b","input_length":1712,"output_length":292,"hash_ids":[2416090,2416091,2416092,2416093],"delay":927.6} +{"session_id":"sess-8fcc511c078b","input_length":1068,"output_length":699,"hash_ids":[2416094,2416095,2416096],"delay":308.9} +{"session_id":"sess-8fcc511c078b","input_length":218,"output_length":286,"hash_ids":[2416097],"delay":1874.4} +{"session_id":"sess-8fcc511c078b","input_length":2524,"output_length":83,"hash_ids":[2416098,2416099,2416100,2416101,2416102],"delay":1357.0} +{"session_id":"sess-8fcc511c078b","input_length":512,"output_length":437,"hash_ids":[2416103],"delay":169.7} +{"session_id":"sess-8fcc511c078b","input_length":381,"output_length":136,"hash_ids":[2416104],"delay":301.4} +{"session_id":"sess-8fcc511c078b","input_length":302,"output_length":67,"hash_ids":[2416105],"delay":110.7} +{"session_id":"sess-8fcc511c078b","input_length":454,"output_length":388,"hash_ids":[2416106],"delay":881.1} +{"session_id":"sess-d6aafc07d68b","input_length":27713,"output_length":41,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2420032,2420033,2420034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d6aafc07d68b","input_length":1902,"output_length":30,"hash_ids":[2420035,2420036,2420037,2420038],"delay":1784.2} +{"session_id":"sess-d6aafc07d68b","input_length":1762,"output_length":875,"hash_ids":[2420039,2420040,2420041,2420042],"delay":4765.8} +{"session_id":"sess-d6aafc07d68b","input_length":113,"output_length":311,"hash_ids":[2420043],"delay":1735.9} +{"session_id":"sess-d6aafc07d68b","input_length":1325,"output_length":337,"hash_ids":[2420044,2420045,2420046],"delay":40069.9} +{"session_id":"sess-d6aafc07d68b","input_length":2307,"output_length":106,"hash_ids":[2420047,2420048,2420049,2420050,2420051],"delay":1320.1} +{"session_id":"sess-d6aafc07d68b","input_length":711,"output_length":339,"hash_ids":[2420052,2420053],"delay":1635.3} +{"session_id":"sess-d6aafc07d68b","input_length":527,"output_length":392,"hash_ids":[2420054,2420055],"delay":11424.7} +{"session_id":"sess-d6aafc07d68b","input_length":468,"output_length":409,"hash_ids":[2420056],"delay":911.4} +{"session_id":"sess-d6aafc07d68b","input_length":1519,"output_length":119,"hash_ids":[2420057,2420058,2420059],"delay":6922.6} +{"session_id":"sess-d6aafc07d68b","input_length":1144,"output_length":196,"hash_ids":[2420060,2420061,2420062],"delay":3355.1} +{"session_id":"sess-d6aafc07d68b","input_length":494,"output_length":377,"hash_ids":[2420063],"delay":1932.9} +{"session_id":"sess-d6aafc07d68b","input_length":915,"output_length":128,"hash_ids":[2420064,2420065],"delay":450.1} +{"session_id":"sess-d6aafc07d68b","input_length":321,"output_length":129,"hash_ids":[2420066],"delay":7944.5} +{"session_id":"sess-d6aafc07d68b","input_length":139,"output_length":284,"hash_ids":[2420067],"delay":2114.0} +{"session_id":"sess-d6aafc07d68b","input_length":720,"output_length":371,"hash_ids":[2420068,2420069],"delay":746.0} +{"session_id":"sess-d6aafc07d68b","input_length":1223,"output_length":78,"hash_ids":[2420070,2420071,2420072],"delay":2224.1} +{"session_id":"sess-d6aafc07d68b","input_length":1593,"output_length":157,"hash_ids":[2420073,2420074,2420075,2420076],"delay":584.9} +{"session_id":"sess-d6aafc07d68b","input_length":998,"output_length":164,"hash_ids":[2420077,2420078],"delay":11525.3} +{"session_id":"sess-d6aafc07d68b","input_length":1292,"output_length":388,"hash_ids":[2420079,2420080,2420081],"delay":199.1} +{"session_id":"sess-d6aafc07d68b","input_length":690,"output_length":61,"hash_ids":[2420082,2420083],"delay":1767.5} +{"session_id":"sess-d6aafc07d68b","input_length":180,"output_length":243,"hash_ids":[2420084],"delay":847.7} +{"session_id":"sess-d6aafc07d68b","input_length":172,"output_length":139,"hash_ids":[2420085],"delay":1038.5} +{"session_id":"sess-d6aafc07d68b","input_length":1142,"output_length":177,"hash_ids":[2420086,2420087,2420088],"delay":991.6} +{"session_id":"sess-d6aafc07d68b","input_length":1008,"output_length":182,"hash_ids":[2420089,2420090],"delay":2783.6} +{"session_id":"sess-d6aafc07d68b","input_length":220,"output_length":197,"hash_ids":[2420091],"delay":4753.0} +{"session_id":"sess-d6aafc07d68b","input_length":738,"output_length":625,"hash_ids":[2420092,2420093],"delay":1030.0} +{"session_id":"sess-d6aafc07d68b","input_length":2167,"output_length":191,"hash_ids":[2420094,2420095,2420096,2420097,2420098],"delay":12700.2} +{"session_id":"sess-d6aafc07d68b","input_length":2904,"output_length":193,"hash_ids":[2420099,2420100,2420101,2420102,2420103,2420104],"delay":129.1} +{"session_id":"sess-d6aafc07d68b","input_length":865,"output_length":173,"hash_ids":[2420105,2420106],"delay":809.7} +{"session_id":"sess-888cc4754544","input_length":34239,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2424032,2424033,2424034,2424035,2424036,2424037,2424038,2424039,2424040,2424041,2424042,2424043,2424044,2424045,2424046],"timestamp":0.0,"group_id":10} +{"session_id":"sess-888cc4754544","input_length":294,"output_length":113,"hash_ids":[2424047],"delay":1385.7} +{"session_id":"sess-888cc4754544","input_length":1024,"output_length":349,"hash_ids":[2424048,2424049],"delay":374.3} +{"session_id":"sess-888cc4754544","input_length":219,"output_length":196,"hash_ids":[2424050],"delay":43725.4} +{"session_id":"sess-888cc4754544","input_length":264,"output_length":196,"hash_ids":[2424051],"delay":437.0} +{"session_id":"sess-888cc4754544","input_length":2908,"output_length":101,"hash_ids":[2424052,2424053,2424054,2424055,2424056,2424057],"delay":659.4} +{"session_id":"sess-888cc4754544","input_length":536,"output_length":402,"hash_ids":[2424058,2424059],"delay":1993.6} +{"session_id":"sess-888cc4754544","input_length":217,"output_length":746,"hash_ids":[2424060],"delay":647.6} +{"session_id":"sess-888cc4754544","input_length":450,"output_length":583,"hash_ids":[2424061],"delay":436.1} +{"session_id":"sess-888cc4754544","input_length":1253,"output_length":252,"hash_ids":[2424062,2424063,2424064],"delay":1009.3} +{"session_id":"sess-888cc4754544","input_length":1738,"output_length":471,"hash_ids":[2424065,2424066,2424067,2424068],"delay":368.5} +{"session_id":"sess-888cc4754544","input_length":801,"output_length":635,"hash_ids":[2424069,2424070],"delay":15822.4} +{"session_id":"sess-888cc4754544","input_length":421,"output_length":374,"hash_ids":[2424071],"delay":1481.6} +{"session_id":"sess-888cc4754544","input_length":1255,"output_length":955,"hash_ids":[2424072,2424073,2424074],"delay":9045.4} +{"session_id":"sess-888cc4754544","input_length":132,"output_length":113,"hash_ids":[2424075],"delay":8667.1} +{"session_id":"sess-888cc4754544","input_length":449,"output_length":336,"hash_ids":[2424076],"delay":575.3} +{"session_id":"sess-888cc4754544","input_length":1000,"output_length":263,"hash_ids":[2424077,2424078],"delay":1150.8} +{"session_id":"sess-888cc4754544","input_length":2293,"output_length":691,"hash_ids":[2424079,2424080,2424081,2424082,2424083],"delay":780.1} +{"session_id":"sess-888cc4754544","input_length":764,"output_length":197,"hash_ids":[2424084,2424085],"delay":24870.7} +{"session_id":"sess-888cc4754544","input_length":152,"output_length":477,"hash_ids":[2424086],"delay":1038.6} +{"session_id":"sess-2dda50db3cb2","input_length":26536,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2dda50db3cb2","input_length":355,"output_length":206,"hash_ids":[2424087],"delay":388.8} +{"session_id":"sess-2dda50db3cb2","input_length":716,"output_length":189,"hash_ids":[2424088,2424089],"delay":3282.8} +{"session_id":"sess-2dda50db3cb2","input_length":1561,"output_length":112,"hash_ids":[2424090,2424091,2424092,2424093],"delay":29826.7} +{"session_id":"sess-2dda50db3cb2","input_length":2368,"output_length":627,"hash_ids":[2424094,2424095,2424096,2424097,2424098],"delay":1066.5} +{"session_id":"sess-2dda50db3cb2","input_length":1861,"output_length":153,"hash_ids":[2424099,2424100,2424101,2424102],"delay":2853.5} +{"session_id":"sess-2dda50db3cb2","input_length":1352,"output_length":294,"hash_ids":[2424103,2424104,2424105],"delay":8010.6} +{"session_id":"sess-2dda50db3cb2","input_length":530,"output_length":562,"hash_ids":[2424106,2424107],"delay":801.4} +{"session_id":"sess-2dda50db3cb2","input_length":702,"output_length":159,"hash_ids":[2424108,2424109],"delay":966.5} +{"session_id":"sess-2dda50db3cb2","input_length":510,"output_length":289,"hash_ids":[2424110],"delay":1103.4} +{"session_id":"sess-2dda50db3cb2","input_length":291,"output_length":142,"hash_ids":[2424111],"delay":120.4} +{"session_id":"sess-2dda50db3cb2","input_length":685,"output_length":463,"hash_ids":[2424112,2424113],"delay":1382.1} +{"session_id":"sess-2dda50db3cb2","input_length":863,"output_length":90,"hash_ids":[2424114,2424115],"delay":2525.1} +{"session_id":"sess-2dda50db3cb2","input_length":2451,"output_length":85,"hash_ids":[2424116,2424117,2424118,2424119,2424120],"delay":6076.4} +{"session_id":"sess-2dda50db3cb2","input_length":990,"output_length":627,"hash_ids":[2424121,2424122],"delay":1339.3} +{"session_id":"sess-e1167e5b2dc1","input_length":28048,"output_length":173,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2432032,2432033,2432034],"timestamp":0.0,"group_id":9} +{"session_id":"sess-e1167e5b2dc1","input_length":148,"output_length":81,"hash_ids":[2432035],"delay":2440.7} +{"session_id":"sess-e1167e5b2dc1","input_length":397,"output_length":35,"hash_ids":[2432036],"delay":1200.3} +{"session_id":"sess-e1167e5b2dc1","input_length":2335,"output_length":81,"hash_ids":[2432037,2432038,2432039,2432040,2432041],"delay":1310.2} +{"session_id":"sess-e1167e5b2dc1","input_length":2947,"output_length":79,"hash_ids":[2432042,2432043,2432044,2432045,2432046,2432047],"delay":4427.6} +{"session_id":"sess-e1167e5b2dc1","input_length":579,"output_length":68,"hash_ids":[2432048,2432049],"delay":5337.8} +{"session_id":"sess-e1167e5b2dc1","input_length":238,"output_length":113,"hash_ids":[2432050],"delay":926.8} +{"session_id":"sess-e1167e5b2dc1","input_length":1090,"output_length":162,"hash_ids":[2432051,2432052,2432053],"delay":32647.4} +{"session_id":"sess-e1167e5b2dc1","input_length":2055,"output_length":267,"hash_ids":[2432054,2432055,2432056,2432057,2432058],"delay":32413.0} +{"session_id":"sess-e1167e5b2dc1","input_length":121,"output_length":186,"hash_ids":[2432059],"delay":43378.1} +{"session_id":"sess-e1167e5b2dc1","input_length":1186,"output_length":244,"hash_ids":[2432060,2432061,2432062],"delay":591.7} +{"session_id":"sess-e1167e5b2dc1","input_length":1035,"output_length":99,"hash_ids":[2432063,2432064,2432065],"delay":1620.9} +{"session_id":"sess-e1167e5b2dc1","input_length":511,"output_length":629,"hash_ids":[2432066],"delay":275.9} +{"session_id":"sess-e1167e5b2dc1","input_length":779,"output_length":713,"hash_ids":[2432067,2432068],"delay":1178.3} +{"session_id":"sess-e1167e5b2dc1","input_length":2301,"output_length":333,"hash_ids":[2432069,2432070,2432071,2432072,2432073],"delay":541.5} +{"session_id":"sess-e1167e5b2dc1","input_length":859,"output_length":492,"hash_ids":[2432074,2432075],"delay":1265.7} +{"session_id":"sess-e1167e5b2dc1","input_length":912,"output_length":287,"hash_ids":[2432076,2432077],"delay":375.3} +{"session_id":"sess-e1167e5b2dc1","input_length":1587,"output_length":361,"hash_ids":[2432078,2432079,2432080,2432081],"delay":8975.2} +{"session_id":"sess-e1167e5b2dc1","input_length":943,"output_length":172,"hash_ids":[2432082,2432083],"delay":2054.3} +{"session_id":"sess-e1167e5b2dc1","input_length":1371,"output_length":98,"hash_ids":[2432084,2432085,2432086],"delay":37515.9} +{"session_id":"sess-e1167e5b2dc1","input_length":893,"output_length":588,"hash_ids":[2432087,2432088],"delay":2125.2} +{"session_id":"sess-e1167e5b2dc1","input_length":1237,"output_length":543,"hash_ids":[2432089,2432090,2432091],"delay":227.8} +{"session_id":"sess-e1167e5b2dc1","input_length":403,"output_length":573,"hash_ids":[2432092],"delay":192.6} +{"session_id":"sess-e1167e5b2dc1","input_length":690,"output_length":285,"hash_ids":[2432093,2432094],"delay":328.1} +{"session_id":"sess-e1167e5b2dc1","input_length":1600,"output_length":76,"hash_ids":[2432095,2432096,2432097,2432098],"delay":183.0} +{"session_id":"sess-e1167e5b2dc1","input_length":866,"output_length":637,"hash_ids":[2432099,2432100],"delay":1063.2} +{"session_id":"sess-7daf98cecc76","input_length":32503,"output_length":62,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2436032,2436033,2436034,2436035,2436036,2436037,2436038,2436039,2436040,2436041,2436042,2436043],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7daf98cecc76","input_length":409,"output_length":375,"hash_ids":[2436044],"delay":47396.8} +{"session_id":"sess-7daf98cecc76","input_length":1072,"output_length":275,"hash_ids":[2436045,2436046,2436047],"delay":5843.6} +{"session_id":"sess-7daf98cecc76","input_length":907,"output_length":79,"hash_ids":[2436048,2436049],"delay":330.3} +{"session_id":"sess-7daf98cecc76","input_length":2942,"output_length":107,"hash_ids":[2436050,2436051,2436052,2436053,2436054,2436055],"delay":16192.0} +{"session_id":"sess-186c0aaa5794","input_length":31246,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2440032,2440033,2440034,2440035,2440036,2440037,2440038,2440039,2440040,2440041],"timestamp":0.0,"group_id":7} +{"session_id":"sess-186c0aaa5794","input_length":249,"output_length":151,"hash_ids":[2440042],"delay":1054.4} +{"session_id":"sess-186c0aaa5794","input_length":2508,"output_length":1149,"hash_ids":[2440043,2440044,2440045,2440046,2440047],"delay":201.5} +{"session_id":"sess-186c0aaa5794","input_length":446,"output_length":249,"hash_ids":[2440048],"delay":985.5} +{"session_id":"sess-186c0aaa5794","input_length":531,"output_length":353,"hash_ids":[2440049,2440050],"delay":2406.5} +{"session_id":"sess-186c0aaa5794","input_length":1242,"output_length":380,"hash_ids":[2440051,2440052,2440053],"delay":352.1} +{"session_id":"sess-186c0aaa5794","input_length":2073,"output_length":171,"hash_ids":[2440054,2440055,2440056,2440057,2440058],"delay":292.0} +{"session_id":"sess-186c0aaa5794","input_length":1220,"output_length":409,"hash_ids":[2440059,2440060,2440061],"delay":3115.1} +{"session_id":"sess-186c0aaa5794","input_length":833,"output_length":41,"hash_ids":[2440062,2440063],"delay":3776.8} +{"session_id":"sess-186c0aaa5794","input_length":1061,"output_length":129,"hash_ids":[2440064,2440065,2440066],"delay":444.1} +{"session_id":"sess-186c0aaa5794","input_length":2310,"output_length":425,"hash_ids":[2440067,2440068,2440069,2440070,2440071],"delay":6402.2} +{"session_id":"sess-186c0aaa5794","input_length":1838,"output_length":226,"hash_ids":[2440072,2440073,2440074,2440075],"delay":405.9} +{"session_id":"sess-186c0aaa5794","input_length":926,"output_length":319,"hash_ids":[2440076,2440077],"delay":478.2} +{"session_id":"sess-186c0aaa5794","input_length":2197,"output_length":1190,"hash_ids":[2440078,2440079,2440080,2440081,2440082],"delay":607.6} +{"session_id":"sess-186c0aaa5794","input_length":1863,"output_length":164,"hash_ids":[2440083,2440084,2440085,2440086],"delay":263.7} +{"session_id":"sess-6485ae6060fa","input_length":28148,"output_length":39,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2444032,2444033,2444034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6485ae6060fa","input_length":857,"output_length":289,"hash_ids":[2444035,2444036],"delay":389.7} +{"session_id":"sess-6485ae6060fa","input_length":1828,"output_length":234,"hash_ids":[2444037,2444038,2444039,2444040],"delay":1521.7} +{"session_id":"sess-6485ae6060fa","input_length":1304,"output_length":262,"hash_ids":[2444041,2444042,2444043],"delay":621.0} +{"session_id":"sess-6485ae6060fa","input_length":70,"output_length":626,"hash_ids":[2444044],"delay":497.4} +{"session_id":"sess-6485ae6060fa","input_length":171,"output_length":198,"hash_ids":[2444045],"delay":701.8} +{"session_id":"sess-6485ae6060fa","input_length":978,"output_length":463,"hash_ids":[2444046,2444047],"delay":2522.1} +{"session_id":"sess-6485ae6060fa","input_length":431,"output_length":283,"hash_ids":[2444048],"delay":1518.3} +{"session_id":"sess-6485ae6060fa","input_length":617,"output_length":40,"hash_ids":[2444049,2444050],"delay":567.5} +{"session_id":"sess-6485ae6060fa","input_length":1411,"output_length":174,"hash_ids":[2444051,2444052,2444053],"delay":1230.9} +{"session_id":"sess-6485ae6060fa","input_length":1460,"output_length":367,"hash_ids":[2444054,2444055,2444056],"delay":3413.8} +{"session_id":"sess-6485ae6060fa","input_length":1376,"output_length":210,"hash_ids":[2444057,2444058,2444059],"delay":1192.0} +{"session_id":"sess-0a6198aaf872","input_length":29515,"output_length":315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2448032,2448033,2448034,2448035,2448036,2448037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0a6198aaf872","input_length":975,"output_length":56,"hash_ids":[2448038,2448039],"delay":13035.9} +{"session_id":"sess-0a6198aaf872","input_length":2462,"output_length":163,"hash_ids":[2448040,2448041,2448042,2448043,2448044],"delay":2073.3} +{"session_id":"sess-0a6198aaf872","input_length":524,"output_length":269,"hash_ids":[2448045,2448046],"delay":572.0} +{"session_id":"sess-0a6198aaf872","input_length":275,"output_length":601,"hash_ids":[2448047],"delay":1908.8} +{"session_id":"sess-0a6198aaf872","input_length":591,"output_length":96,"hash_ids":[2448048,2448049],"delay":2299.5} +{"session_id":"sess-0a6198aaf872","input_length":1273,"output_length":140,"hash_ids":[2448050,2448051,2448052],"delay":1634.2} +{"session_id":"sess-0a6198aaf872","input_length":666,"output_length":517,"hash_ids":[2448053,2448054],"delay":104.2} +{"session_id":"sess-0a6198aaf872","input_length":2496,"output_length":31,"hash_ids":[2448055,2448056,2448057,2448058,2448059],"delay":398.5} +{"session_id":"sess-0a6198aaf872","input_length":2953,"output_length":184,"hash_ids":[2448060,2448061,2448062,2448063,2448064,2448065],"delay":2095.1} +{"session_id":"sess-0a6198aaf872","input_length":1222,"output_length":353,"hash_ids":[2448066,2448067,2448068],"delay":947.9} +{"session_id":"sess-0a6198aaf872","input_length":1742,"output_length":337,"hash_ids":[2448069,2448070,2448071,2448072],"delay":620.7} +{"session_id":"sess-0a6198aaf872","input_length":106,"output_length":174,"hash_ids":[2448073],"delay":1214.7} +{"session_id":"sess-0a6198aaf872","input_length":1676,"output_length":205,"hash_ids":[2448074,2448075,2448076,2448077],"delay":370.8} +{"session_id":"sess-0a6198aaf872","input_length":449,"output_length":243,"hash_ids":[2448078],"delay":1420.5} +{"session_id":"sess-0a6198aaf872","input_length":1372,"output_length":250,"hash_ids":[2448079,2448080,2448081],"delay":11721.5} +{"session_id":"sess-0a6198aaf872","input_length":943,"output_length":193,"hash_ids":[2448082,2448083],"delay":648.3} +{"session_id":"sess-0a6198aaf872","input_length":301,"output_length":107,"hash_ids":[2448084],"delay":1776.8} +{"session_id":"sess-0a6198aaf872","input_length":421,"output_length":102,"hash_ids":[2448085],"delay":499.3} +{"session_id":"sess-0a6198aaf872","input_length":2747,"output_length":223,"hash_ids":[2448086,2448087,2448088,2448089,2448090,2448091],"delay":9404.8} +{"session_id":"sess-0a6198aaf872","input_length":1282,"output_length":63,"hash_ids":[2448092,2448093,2448094],"delay":9388.1} +{"session_id":"sess-5fd19b0bb7a4","input_length":27789,"output_length":1378,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2452032,2452033,2452034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5fd19b0bb7a4","input_length":735,"output_length":614,"hash_ids":[2452035,2452036],"delay":5791.6} +{"session_id":"sess-5fd19b0bb7a4","input_length":367,"output_length":69,"hash_ids":[2452037],"delay":2374.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":2381,"output_length":168,"hash_ids":[2452038,2452039,2452040,2452041,2452042],"delay":1207.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":1040,"output_length":781,"hash_ids":[2452043,2452044,2452045],"delay":1166.9} +{"session_id":"sess-5fd19b0bb7a4","input_length":568,"output_length":52,"hash_ids":[2452046,2452047],"delay":1954.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":821,"output_length":99,"hash_ids":[2452048,2452049],"delay":920.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":971,"output_length":140,"hash_ids":[2452050,2452051],"delay":587.5} +{"session_id":"sess-5fd19b0bb7a4","input_length":2156,"output_length":364,"hash_ids":[2452052,2452053,2452054,2452055,2452056],"delay":675.6} +{"session_id":"sess-5fd19b0bb7a4","input_length":1626,"output_length":208,"hash_ids":[2452057,2452058,2452059,2452060],"delay":731.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":394,"output_length":336,"hash_ids":[2452061],"delay":965.6} +{"session_id":"sess-5fd19b0bb7a4","input_length":237,"output_length":337,"hash_ids":[2452062],"delay":682.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":1329,"output_length":49,"hash_ids":[2452063,2452064,2452065],"delay":3398.0} +{"session_id":"sess-5fd19b0bb7a4","input_length":1146,"output_length":275,"hash_ids":[2452066,2452067,2452068],"delay":1687.5} +{"session_id":"sess-5fd19b0bb7a4","input_length":564,"output_length":592,"hash_ids":[2452069,2452070],"delay":241.3} +{"session_id":"sess-5fd19b0bb7a4","input_length":1064,"output_length":164,"hash_ids":[2452071,2452072,2452073],"delay":12847.3} +{"session_id":"sess-5fd19b0bb7a4","input_length":1105,"output_length":1033,"hash_ids":[2452074,2452075,2452076],"delay":4410.3} +{"session_id":"sess-f4ef949bb9c5","input_length":28001,"output_length":155,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2456032,2456033,2456034],"timestamp":0.0,"group_id":4} +{"session_id":"sess-f4ef949bb9c5","input_length":817,"output_length":39,"hash_ids":[2456035,2456036],"delay":2802.6} +{"session_id":"sess-f4ef949bb9c5","input_length":1791,"output_length":208,"hash_ids":[2456037,2456038,2456039,2456040],"delay":333.2} +{"session_id":"sess-f4ef949bb9c5","input_length":2797,"output_length":316,"hash_ids":[2456041,2456042,2456043,2456044,2456045,2456046],"delay":2409.0} +{"session_id":"sess-f4ef949bb9c5","input_length":731,"output_length":113,"hash_ids":[2456047,2456048],"delay":379.0} +{"session_id":"sess-f4ef949bb9c5","input_length":822,"output_length":498,"hash_ids":[2456049,2456050],"delay":32926.1} +{"session_id":"sess-f4ef949bb9c5","input_length":327,"output_length":416,"hash_ids":[2456051],"delay":649.8} +{"session_id":"sess-f4ef949bb9c5","input_length":177,"output_length":290,"hash_ids":[2456052],"delay":1039.9} +{"session_id":"sess-f4ef949bb9c5","input_length":880,"output_length":60,"hash_ids":[2456053,2456054],"delay":1402.1} +{"session_id":"sess-f4ef949bb9c5","input_length":654,"output_length":181,"hash_ids":[2456055,2456056],"delay":556.4} +{"session_id":"sess-f4ef949bb9c5","input_length":1941,"output_length":1062,"hash_ids":[2456057,2456058,2456059,2456060],"delay":382.1} +{"session_id":"sess-f4ef949bb9c5","input_length":500,"output_length":101,"hash_ids":[2456061],"delay":419.2} +{"session_id":"sess-f4ef949bb9c5","input_length":566,"output_length":100,"hash_ids":[2456062,2456063],"delay":14496.0} +{"session_id":"sess-f4ef949bb9c5","input_length":798,"output_length":755,"hash_ids":[2456064,2456065],"delay":3473.0} +{"session_id":"sess-f4ef949bb9c5","input_length":284,"output_length":183,"hash_ids":[2456066],"delay":6109.6} +{"session_id":"sess-f4ef949bb9c5","input_length":1434,"output_length":167,"hash_ids":[2456067,2456068,2456069],"delay":11934.8} +{"session_id":"sess-f4ef949bb9c5","input_length":1283,"output_length":406,"hash_ids":[2456070,2456071,2456072],"delay":239.4} +{"session_id":"sess-f4ef949bb9c5","input_length":184,"output_length":392,"hash_ids":[2456073],"delay":17090.6} +{"session_id":"sess-f4ef949bb9c5","input_length":619,"output_length":123,"hash_ids":[2456074,2456075],"delay":650.1} +{"session_id":"sess-f4ef949bb9c5","input_length":693,"output_length":285,"hash_ids":[2456076,2456077],"delay":574.5} +{"session_id":"sess-f4ef949bb9c5","input_length":2034,"output_length":263,"hash_ids":[2456078,2456079,2456080,2456081],"delay":786.0} +{"session_id":"sess-f4ef949bb9c5","input_length":1824,"output_length":339,"hash_ids":[2456082,2456083,2456084,2456085],"delay":1636.7} +{"session_id":"sess-f4ef949bb9c5","input_length":1058,"output_length":233,"hash_ids":[2456086,2456087,2456088],"delay":3647.5} +{"session_id":"sess-f4ef949bb9c5","input_length":1397,"output_length":113,"hash_ids":[2456089,2456090,2456091],"delay":6256.8} +{"session_id":"sess-f4ef949bb9c5","input_length":1191,"output_length":206,"hash_ids":[2456092,2456093,2456094],"delay":50.2} +{"session_id":"sess-f4ef949bb9c5","input_length":347,"output_length":479,"hash_ids":[2456095],"delay":9703.7} +{"session_id":"sess-f4ef949bb9c5","input_length":490,"output_length":43,"hash_ids":[2456096],"delay":61.3} +{"session_id":"sess-f4ef949bb9c5","input_length":769,"output_length":68,"hash_ids":[2456097,2456098],"delay":1735.9} +{"session_id":"sess-f4ef949bb9c5","input_length":510,"output_length":209,"hash_ids":[2456099],"delay":252.7} +{"session_id":"sess-f4ef949bb9c5","input_length":1483,"output_length":374,"hash_ids":[2456100,2456101,2456102],"delay":13638.4} +{"session_id":"sess-5625fd16f3bc","input_length":30817,"output_length":348,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2460032,2460033,2460034,2460035,2460036,2460037,2460038,2460039,2460040],"timestamp":0.0,"group_id":12} +{"session_id":"sess-5625fd16f3bc","input_length":250,"output_length":30,"hash_ids":[2460041],"delay":6124.2} +{"session_id":"sess-5625fd16f3bc","input_length":1257,"output_length":796,"hash_ids":[2460042,2460043,2460044],"delay":24155.2} +{"session_id":"sess-5625fd16f3bc","input_length":1414,"output_length":318,"hash_ids":[2460045,2460046,2460047],"delay":56587.6} +{"session_id":"sess-5625fd16f3bc","input_length":1264,"output_length":128,"hash_ids":[2460048,2460049,2460050],"delay":1560.8} +{"session_id":"sess-5625fd16f3bc","input_length":298,"output_length":174,"hash_ids":[2460051],"delay":6665.5} +{"session_id":"sess-5625fd16f3bc","input_length":151,"output_length":507,"hash_ids":[2460052],"delay":364.4} +{"session_id":"sess-5625fd16f3bc","input_length":102,"output_length":566,"hash_ids":[2460053],"delay":15466.5} +{"session_id":"sess-5625fd16f3bc","input_length":816,"output_length":492,"hash_ids":[2460054,2460055],"delay":467.7} +{"session_id":"sess-5625fd16f3bc","input_length":244,"output_length":71,"hash_ids":[2460056],"delay":1506.4} +{"session_id":"sess-5625fd16f3bc","input_length":357,"output_length":281,"hash_ids":[2460057],"delay":946.9} +{"session_id":"sess-5625fd16f3bc","input_length":1113,"output_length":120,"hash_ids":[2460058,2460059,2460060],"delay":1022.0} +{"session_id":"sess-5625fd16f3bc","input_length":543,"output_length":579,"hash_ids":[2460061,2460062],"delay":461.9} +{"session_id":"sess-5625fd16f3bc","input_length":810,"output_length":261,"hash_ids":[2460063,2460064],"delay":10780.9} +{"session_id":"sess-5625fd16f3bc","input_length":1399,"output_length":174,"hash_ids":[2460065,2460066,2460067],"delay":297.9} +{"session_id":"sess-5625fd16f3bc","input_length":276,"output_length":478,"hash_ids":[2460068],"delay":647.4} +{"session_id":"sess-5625fd16f3bc","input_length":202,"output_length":148,"hash_ids":[2460069],"delay":1436.0} +{"session_id":"sess-5625fd16f3bc","input_length":1955,"output_length":321,"hash_ids":[2460070,2460071,2460072,2460073],"delay":1661.2} +{"session_id":"sess-5625fd16f3bc","input_length":2273,"output_length":131,"hash_ids":[2460074,2460075,2460076,2460077,2460078],"delay":938.9} +{"session_id":"sess-5625fd16f3bc","input_length":982,"output_length":143,"hash_ids":[2460079,2460080],"delay":854.1} +{"session_id":"sess-5625fd16f3bc","input_length":585,"output_length":288,"hash_ids":[2460081,2460082],"delay":11214.3} +{"session_id":"sess-5625fd16f3bc","input_length":2583,"output_length":76,"hash_ids":[2460083,2460084,2460085,2460086,2460087,2460088],"delay":11531.0} +{"session_id":"sess-5625fd16f3bc","input_length":1076,"output_length":158,"hash_ids":[2460089,2460090,2460091],"delay":526.0} +{"session_id":"sess-5625fd16f3bc","input_length":252,"output_length":537,"hash_ids":[2460092],"delay":149.3} +{"session_id":"sess-5625fd16f3bc","input_length":1389,"output_length":122,"hash_ids":[2460093,2460094,2460095],"delay":19232.9} +{"session_id":"sess-5625fd16f3bc","input_length":1013,"output_length":1143,"hash_ids":[2460096,2460097],"delay":7828.1} +{"session_id":"sess-5625fd16f3bc","input_length":2918,"output_length":356,"hash_ids":[2460098,2460099,2460100,2460101,2460102,2460103],"delay":603.5} +{"session_id":"sess-5625fd16f3bc","input_length":266,"output_length":58,"hash_ids":[2460104],"delay":190.3} +{"session_id":"sess-c1b9c75f96be","input_length":28663,"output_length":261,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,2464032,2464033,2464034,2464035],"timestamp":0.0,"group_id":26} +{"session_id":"sess-c1b9c75f96be","input_length":656,"output_length":36,"hash_ids":[2464036,2464037],"delay":6380.9} +{"session_id":"sess-c1b9c75f96be","input_length":992,"output_length":396,"hash_ids":[2464038,2464039],"delay":355.2} +{"session_id":"sess-c1b9c75f96be","input_length":635,"output_length":576,"hash_ids":[2464040,2464041],"delay":659.4} +{"session_id":"sess-c1b9c75f96be","input_length":1601,"output_length":537,"hash_ids":[2464042,2464043,2464044,2464045],"delay":475.9} +{"session_id":"sess-c1b9c75f96be","input_length":2229,"output_length":102,"hash_ids":[2464046,2464047,2464048,2464049,2464050],"delay":1883.1} +{"session_id":"sess-c1b9c75f96be","input_length":1135,"output_length":159,"hash_ids":[2464051,2464052,2464053],"delay":9665.0} +{"session_id":"sess-c1b9c75f96be","input_length":1076,"output_length":203,"hash_ids":[2464054,2464055,2464056],"delay":333.0} +{"session_id":"sess-c1b9c75f96be","input_length":2912,"output_length":863,"hash_ids":[2464057,2464058,2464059,2464060,2464061,2464062],"delay":602.9} +{"session_id":"sess-c1b9c75f96be","input_length":2243,"output_length":203,"hash_ids":[2464063,2464064,2464065,2464066,2464067],"delay":368.0} +{"session_id":"sess-c1b9c75f96be","input_length":1153,"output_length":143,"hash_ids":[2464068,2464069,2464070],"delay":742.8} +{"session_id":"sess-c1b9c75f96be","input_length":464,"output_length":45,"hash_ids":[2464071],"delay":947.0} +{"session_id":"sess-c1b9c75f96be","input_length":2248,"output_length":363,"hash_ids":[2464072,2464073,2464074,2464075,2464076],"delay":26130.8} +{"session_id":"sess-c1b9c75f96be","input_length":213,"output_length":175,"hash_ids":[2464077],"delay":5342.3} +{"session_id":"sess-c1b9c75f96be","input_length":2503,"output_length":206,"hash_ids":[2464078,2464079,2464080,2464081,2464082],"delay":406.2} +{"session_id":"sess-c1b9c75f96be","input_length":458,"output_length":242,"hash_ids":[2464083],"delay":181.5} +{"session_id":"sess-c1b9c75f96be","input_length":626,"output_length":85,"hash_ids":[2464084,2464085],"delay":1611.6} +{"session_id":"sess-c1b9c75f96be","input_length":300,"output_length":159,"hash_ids":[2464086],"delay":18840.2} +{"session_id":"sess-c1b9c75f96be","input_length":1075,"output_length":42,"hash_ids":[2464087,2464088,2464089],"delay":326.2} +{"session_id":"sess-c1b9c75f96be","input_length":603,"output_length":112,"hash_ids":[2464090,2464091],"delay":249.5} +{"session_id":"sess-c1b9c75f96be","input_length":352,"output_length":562,"hash_ids":[2464092],"delay":7480.3} +{"session_id":"sess-c1b9c75f96be","input_length":1980,"output_length":340,"hash_ids":[2464093,2464094,2464095,2464096],"delay":1331.5} +{"session_id":"sess-c1b9c75f96be","input_length":555,"output_length":192,"hash_ids":[2464097,2464098],"delay":498.2} +{"session_id":"sess-c1b9c75f96be","input_length":663,"output_length":334,"hash_ids":[2464099,2464100],"delay":521.3} +{"session_id":"sess-c1b9c75f96be","input_length":234,"output_length":129,"hash_ids":[2464101],"delay":1644.3} +{"session_id":"sess-c1b9c75f96be","input_length":1187,"output_length":211,"hash_ids":[2464102,2464103,2464104],"delay":370.7} +{"session_id":"sess-c1b9c75f96be","input_length":1285,"output_length":223,"hash_ids":[2464105,2464106,2464107],"delay":1851.9} +{"session_id":"sess-88d3a5d16918","input_length":29281,"output_length":308,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2468032,2468033,2468034,2468035,2468036,2468037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-88d3a5d16918","input_length":317,"output_length":506,"hash_ids":[2468038],"delay":23154.1} +{"session_id":"sess-88d3a5d16918","input_length":739,"output_length":388,"hash_ids":[2468039,2468040],"delay":7048.8} +{"session_id":"sess-88d3a5d16918","input_length":2160,"output_length":114,"hash_ids":[2468041,2468042,2468043,2468044,2468045],"delay":542.7} +{"session_id":"sess-88d3a5d16918","input_length":1086,"output_length":268,"hash_ids":[2468046,2468047,2468048],"delay":1477.5} +{"session_id":"sess-88d3a5d16918","input_length":1357,"output_length":366,"hash_ids":[2468049,2468050,2468051],"delay":12963.4} +{"session_id":"sess-88d3a5d16918","input_length":575,"output_length":107,"hash_ids":[2468052,2468053],"delay":179.2} +{"session_id":"sess-88d3a5d16918","input_length":2817,"output_length":824,"hash_ids":[2468054,2468055,2468056,2468057,2468058,2468059],"delay":25886.5} +{"session_id":"sess-88d3a5d16918","input_length":906,"output_length":1468,"hash_ids":[2468060,2468061],"delay":1727.8} +{"session_id":"sess-88d3a5d16918","input_length":2268,"output_length":837,"hash_ids":[2468062,2468063,2468064,2468065,2468066],"delay":1480.9} +{"session_id":"sess-88d3a5d16918","input_length":240,"output_length":198,"hash_ids":[2468067],"delay":853.9} +{"session_id":"sess-88d3a5d16918","input_length":881,"output_length":61,"hash_ids":[2468068,2468069],"delay":3117.0} +{"session_id":"sess-88d3a5d16918","input_length":2973,"output_length":547,"hash_ids":[2468070,2468071,2468072,2468073,2468074,2468075],"delay":337.1} +{"session_id":"sess-88d3a5d16918","input_length":931,"output_length":290,"hash_ids":[2468076,2468077],"delay":1776.8} +{"session_id":"sess-88d3a5d16918","input_length":1019,"output_length":55,"hash_ids":[2468078,2468079],"delay":570.2} +{"session_id":"sess-88d3a5d16918","input_length":516,"output_length":182,"hash_ids":[2468080,2468081],"delay":357.6} +{"session_id":"sess-88d3a5d16918","input_length":816,"output_length":903,"hash_ids":[2468082,2468083],"delay":1282.6} +{"session_id":"sess-88d3a5d16918","input_length":745,"output_length":30,"hash_ids":[2468084,2468085],"delay":216.1} +{"session_id":"sess-88d3a5d16918","input_length":972,"output_length":318,"hash_ids":[2468086,2468087],"delay":744.0} +{"session_id":"sess-88d3a5d16918","input_length":1508,"output_length":221,"hash_ids":[2468088,2468089,2468090],"delay":305.3} +{"session_id":"sess-88d3a5d16918","input_length":696,"output_length":51,"hash_ids":[2468091,2468092],"delay":411.2} +{"session_id":"sess-88d3a5d16918","input_length":341,"output_length":109,"hash_ids":[2468093],"delay":501.3} +{"session_id":"sess-88d3a5d16918","input_length":1903,"output_length":277,"hash_ids":[2468094,2468095,2468096,2468097],"delay":188.0} +{"session_id":"sess-88d3a5d16918","input_length":91,"output_length":151,"hash_ids":[2468098],"delay":371.3} +{"session_id":"sess-88d3a5d16918","input_length":841,"output_length":140,"hash_ids":[2468099,2468100],"delay":734.3} +{"session_id":"sess-ec5950c10844","input_length":29463,"output_length":169,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2472032,2472033,2472034,2472035,2472036,2472037],"timestamp":0.0,"group_id":12} +{"session_id":"sess-ec5950c10844","input_length":1866,"output_length":556,"hash_ids":[2472038,2472039,2472040,2472041],"delay":30336.3} +{"session_id":"sess-ec5950c10844","input_length":251,"output_length":130,"hash_ids":[2472042],"delay":391.9} +{"session_id":"sess-ec5950c10844","input_length":2191,"output_length":54,"hash_ids":[2472043,2472044,2472045,2472046,2472047],"delay":2106.6} +{"session_id":"sess-ec5950c10844","input_length":860,"output_length":639,"hash_ids":[2472048,2472049],"delay":1531.1} +{"session_id":"sess-ec5950c10844","input_length":335,"output_length":434,"hash_ids":[2472050],"delay":507.6} +{"session_id":"sess-ec5950c10844","input_length":1198,"output_length":190,"hash_ids":[2472051,2472052,2472053],"delay":314.3} +{"session_id":"sess-ec5950c10844","input_length":1198,"output_length":36,"hash_ids":[2472054,2472055,2472056],"delay":670.3} +{"session_id":"sess-ec5950c10844","input_length":176,"output_length":30,"hash_ids":[2472057],"delay":470.5} +{"session_id":"sess-c24e9d67b08b","input_length":34532,"output_length":269,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2476032,2476033,2476034,2476035,2476036,2476037,2476038,2476039,2476040,2476041,2476042,2476043,2476044,2476045,2476046,2476047],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c24e9d67b08b","input_length":846,"output_length":103,"hash_ids":[2476048,2476049],"delay":1716.4} +{"session_id":"sess-c24e9d67b08b","input_length":372,"output_length":530,"hash_ids":[2476050],"delay":1393.5} +{"session_id":"sess-c24e9d67b08b","input_length":1672,"output_length":308,"hash_ids":[2476051,2476052,2476053,2476054],"delay":27889.4} +{"session_id":"sess-c24e9d67b08b","input_length":972,"output_length":197,"hash_ids":[2476055,2476056],"delay":2918.1} +{"session_id":"sess-c24e9d67b08b","input_length":1507,"output_length":68,"hash_ids":[2476057,2476058,2476059],"delay":1017.1} +{"session_id":"sess-c24e9d67b08b","input_length":1153,"output_length":94,"hash_ids":[2476060,2476061,2476062],"delay":12608.8} +{"session_id":"sess-c24e9d67b08b","input_length":348,"output_length":85,"hash_ids":[2476063],"delay":1232.7} +{"session_id":"sess-c24e9d67b08b","input_length":1509,"output_length":66,"hash_ids":[2476064,2476065,2476066],"delay":582.9} +{"session_id":"sess-c24e9d67b08b","input_length":1106,"output_length":362,"hash_ids":[2476067,2476068,2476069],"delay":44522.3} +{"session_id":"sess-c24e9d67b08b","input_length":775,"output_length":185,"hash_ids":[2476070,2476071],"delay":947.3} +{"session_id":"sess-c24e9d67b08b","input_length":330,"output_length":204,"hash_ids":[2476072],"delay":500.0} +{"session_id":"sess-c24e9d67b08b","input_length":616,"output_length":135,"hash_ids":[2476073,2476074],"delay":961.6} +{"session_id":"sess-c24e9d67b08b","input_length":748,"output_length":60,"hash_ids":[2476075,2476076],"delay":6260.7} +{"session_id":"sess-c24e9d67b08b","input_length":941,"output_length":191,"hash_ids":[2476077,2476078],"delay":19021.1} +{"session_id":"sess-c24e9d67b08b","input_length":681,"output_length":102,"hash_ids":[2476079,2476080],"delay":20290.8} +{"session_id":"sess-c24e9d67b08b","input_length":318,"output_length":316,"hash_ids":[2476081],"delay":150.0} +{"session_id":"sess-c24e9d67b08b","input_length":469,"output_length":141,"hash_ids":[2476082],"delay":2579.8} +{"session_id":"sess-c24e9d67b08b","input_length":758,"output_length":414,"hash_ids":[2476083,2476084],"delay":644.7} +{"session_id":"sess-c24e9d67b08b","input_length":916,"output_length":125,"hash_ids":[2476085,2476086],"delay":528.0} +{"session_id":"sess-c24e9d67b08b","input_length":2356,"output_length":594,"hash_ids":[2476087,2476088,2476089,2476090,2476091],"delay":315.8} +{"session_id":"sess-c24e9d67b08b","input_length":384,"output_length":139,"hash_ids":[2476092],"delay":1712.8} +{"session_id":"sess-c24e9d67b08b","input_length":833,"output_length":277,"hash_ids":[2476093,2476094],"delay":1204.6} +{"session_id":"sess-c24e9d67b08b","input_length":1767,"output_length":958,"hash_ids":[2476095,2476096,2476097,2476098],"delay":136.4} +{"session_id":"sess-c24e9d67b08b","input_length":239,"output_length":297,"hash_ids":[2476099],"delay":309.9} +{"session_id":"sess-c24e9d67b08b","input_length":1333,"output_length":403,"hash_ids":[2476100,2476101,2476102],"delay":187.2} +{"session_id":"sess-c24e9d67b08b","input_length":846,"output_length":160,"hash_ids":[2476103,2476104],"delay":8986.2} +{"session_id":"sess-e018b862daf1","input_length":32992,"output_length":743,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,2480032,2480033,2480034,2480035,2480036,2480037,2480038,2480039,2480040,2480041,2480042,2480043,2480044],"timestamp":0.0,"group_id":19} +{"session_id":"sess-e018b862daf1","input_length":1269,"output_length":162,"hash_ids":[2480045,2480046,2480047],"delay":6023.0} +{"session_id":"sess-e018b862daf1","input_length":2308,"output_length":200,"hash_ids":[2480048,2480049,2480050,2480051,2480052],"delay":1826.1} +{"session_id":"sess-e018b862daf1","input_length":934,"output_length":290,"hash_ids":[2480053,2480054],"delay":777.3} +{"session_id":"sess-e018b862daf1","input_length":1454,"output_length":241,"hash_ids":[2480055,2480056,2480057],"delay":7547.0} +{"session_id":"sess-e018b862daf1","input_length":936,"output_length":191,"hash_ids":[2480058,2480059],"delay":15546.9} +{"session_id":"sess-e018b862daf1","input_length":513,"output_length":162,"hash_ids":[2480060,2480061],"delay":698.2} +{"session_id":"sess-e018b862daf1","input_length":1982,"output_length":398,"hash_ids":[2480062,2480063,2480064,2480065],"delay":8778.6} +{"session_id":"sess-e018b862daf1","input_length":1397,"output_length":32,"hash_ids":[2480066,2480067,2480068],"delay":2981.7} +{"session_id":"sess-e018b862daf1","input_length":917,"output_length":146,"hash_ids":[2480069,2480070],"delay":707.5} +{"session_id":"sess-e018b862daf1","input_length":2024,"output_length":241,"hash_ids":[2480071,2480072,2480073,2480074],"delay":4633.1} +{"session_id":"sess-8e1ba416f1aa","input_length":29202,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2484032,2484033,2484034,2484035,2484036,2484037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8e1ba416f1aa","input_length":109,"output_length":1288,"hash_ids":[2484038],"delay":16991.4} +{"session_id":"sess-8e1ba416f1aa","input_length":822,"output_length":198,"hash_ids":[2484039,2484040],"delay":142.6} +{"session_id":"sess-8e1ba416f1aa","input_length":2109,"output_length":121,"hash_ids":[2484041,2484042,2484043,2484044,2484045],"delay":663.0} +{"session_id":"sess-8e1ba416f1aa","input_length":284,"output_length":406,"hash_ids":[2484046],"delay":63410.7} +{"session_id":"sess-8e1ba416f1aa","input_length":225,"output_length":472,"hash_ids":[2484047],"delay":405.1} +{"session_id":"sess-8e1ba416f1aa","input_length":637,"output_length":178,"hash_ids":[2484048,2484049],"delay":982.6} +{"session_id":"sess-8e1ba416f1aa","input_length":830,"output_length":34,"hash_ids":[2484050,2484051],"delay":55923.7} +{"session_id":"sess-8e1ba416f1aa","input_length":1379,"output_length":261,"hash_ids":[2484052,2484053,2484054],"delay":1068.9} +{"session_id":"sess-8e1ba416f1aa","input_length":328,"output_length":55,"hash_ids":[2484055],"delay":837.9} +{"session_id":"sess-8e1ba416f1aa","input_length":2041,"output_length":110,"hash_ids":[2484056,2484057,2484058,2484059],"delay":9387.7} +{"session_id":"sess-8e1ba416f1aa","input_length":88,"output_length":138,"hash_ids":[2484060],"delay":926.1} +{"session_id":"sess-8e1ba416f1aa","input_length":641,"output_length":204,"hash_ids":[2484061,2484062],"delay":1679.6} +{"session_id":"sess-8e1ba416f1aa","input_length":891,"output_length":304,"hash_ids":[2484063,2484064],"delay":1956.0} +{"session_id":"sess-8e1ba416f1aa","input_length":2297,"output_length":106,"hash_ids":[2484065,2484066,2484067,2484068,2484069],"delay":675.8} +{"session_id":"sess-8e1ba416f1aa","input_length":839,"output_length":98,"hash_ids":[2484070,2484071],"delay":10768.0} +{"session_id":"sess-8e1ba416f1aa","input_length":517,"output_length":108,"hash_ids":[2484072,2484073],"delay":1795.6} +{"session_id":"sess-8e1ba416f1aa","input_length":283,"output_length":311,"hash_ids":[2484074],"delay":1134.4} +{"session_id":"sess-8e1ba416f1aa","input_length":463,"output_length":43,"hash_ids":[2484075],"delay":1253.2} +{"session_id":"sess-8e1ba416f1aa","input_length":2078,"output_length":30,"hash_ids":[2484076,2484077,2484078,2484079,2484080],"delay":393.1} +{"session_id":"sess-8e1ba416f1aa","input_length":852,"output_length":538,"hash_ids":[2484081,2484082],"delay":12669.8} +{"session_id":"sess-8e1ba416f1aa","input_length":1199,"output_length":56,"hash_ids":[2484083,2484084,2484085],"delay":858.6} +{"session_id":"sess-8e1ba416f1aa","input_length":2053,"output_length":1012,"hash_ids":[2484086,2484087,2484088,2484089,2484090],"delay":851.9} +{"session_id":"sess-8e1ba416f1aa","input_length":856,"output_length":643,"hash_ids":[2484091,2484092],"delay":359.5} +{"session_id":"sess-8e1ba416f1aa","input_length":1222,"output_length":84,"hash_ids":[2484093,2484094,2484095],"delay":12605.8} +{"session_id":"sess-8e1ba416f1aa","input_length":674,"output_length":75,"hash_ids":[2484096,2484097],"delay":1455.8} +{"session_id":"sess-8e1ba416f1aa","input_length":1050,"output_length":98,"hash_ids":[2484098,2484099,2484100],"delay":7417.7} +{"session_id":"sess-8e1ba416f1aa","input_length":550,"output_length":891,"hash_ids":[2484101,2484102],"delay":1204.2} +{"session_id":"sess-8e1ba416f1aa","input_length":2598,"output_length":163,"hash_ids":[2484103,2484104,2484105,2484106,2484107,2484108],"delay":1306.7} +{"session_id":"sess-296c003f8cbe","input_length":27521,"output_length":1166,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2488032,2488033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-296c003f8cbe","input_length":1063,"output_length":537,"hash_ids":[2488034,2488035,2488036],"delay":1030.2} +{"session_id":"sess-296c003f8cbe","input_length":1224,"output_length":238,"hash_ids":[2488037,2488038,2488039],"delay":1189.0} +{"session_id":"sess-296c003f8cbe","input_length":364,"output_length":304,"hash_ids":[2488040],"delay":1501.0} +{"session_id":"sess-296c003f8cbe","input_length":555,"output_length":159,"hash_ids":[2488041,2488042],"delay":6574.2} +{"session_id":"sess-296c003f8cbe","input_length":757,"output_length":77,"hash_ids":[2488043,2488044],"delay":396.4} +{"session_id":"sess-296c003f8cbe","input_length":2188,"output_length":156,"hash_ids":[2488045,2488046,2488047,2488048,2488049],"delay":212.1} +{"session_id":"sess-296c003f8cbe","input_length":1817,"output_length":663,"hash_ids":[2488050,2488051,2488052,2488053],"delay":14956.0} +{"session_id":"sess-296c003f8cbe","input_length":1011,"output_length":320,"hash_ids":[2488054,2488055],"delay":790.3} +{"session_id":"sess-296c003f8cbe","input_length":677,"output_length":196,"hash_ids":[2488056,2488057],"delay":276.4} +{"session_id":"sess-296c003f8cbe","input_length":570,"output_length":101,"hash_ids":[2488058,2488059],"delay":577.2} +{"session_id":"sess-296c003f8cbe","input_length":1171,"output_length":907,"hash_ids":[2488060,2488061,2488062],"delay":2160.4} +{"session_id":"sess-296c003f8cbe","input_length":721,"output_length":533,"hash_ids":[2488063,2488064],"delay":809.1} +{"session_id":"sess-296c003f8cbe","input_length":255,"output_length":30,"hash_ids":[2488065],"delay":1999.2} +{"session_id":"sess-296c003f8cbe","input_length":1026,"output_length":387,"hash_ids":[2488066,2488067,2488068],"delay":1736.9} +{"session_id":"sess-296c003f8cbe","input_length":285,"output_length":214,"hash_ids":[2488069],"delay":1758.4} +{"session_id":"sess-296c003f8cbe","input_length":918,"output_length":80,"hash_ids":[2488070,2488071],"delay":4948.2} +{"session_id":"sess-296c003f8cbe","input_length":555,"output_length":72,"hash_ids":[2488072,2488073],"delay":700.0} +{"session_id":"sess-296c003f8cbe","input_length":1437,"output_length":167,"hash_ids":[2488074,2488075,2488076],"delay":13339.8} +{"session_id":"sess-296c003f8cbe","input_length":182,"output_length":91,"hash_ids":[2488077],"delay":14407.2} +{"session_id":"sess-296c003f8cbe","input_length":1486,"output_length":161,"hash_ids":[2488078,2488079,2488080],"delay":1670.5} +{"session_id":"sess-296c003f8cbe","input_length":867,"output_length":75,"hash_ids":[2488081,2488082],"delay":186.9} +{"session_id":"sess-296c003f8cbe","input_length":466,"output_length":30,"hash_ids":[2488083],"delay":699.4} +{"session_id":"sess-296c003f8cbe","input_length":199,"output_length":279,"hash_ids":[2488084],"delay":1029.1} +{"session_id":"sess-296c003f8cbe","input_length":657,"output_length":353,"hash_ids":[2488085,2488086],"delay":1058.5} +{"session_id":"sess-296c003f8cbe","input_length":1232,"output_length":145,"hash_ids":[2488087,2488088,2488089],"delay":915.4} +{"session_id":"sess-296c003f8cbe","input_length":234,"output_length":122,"hash_ids":[2488090],"delay":5148.7} +{"session_id":"sess-296c003f8cbe","input_length":2540,"output_length":180,"hash_ids":[2488091,2488092,2488093,2488094,2488095],"delay":277.5} +{"session_id":"sess-296c003f8cbe","input_length":1279,"output_length":93,"hash_ids":[2488096,2488097,2488098],"delay":288.3} +{"session_id":"sess-296c003f8cbe","input_length":786,"output_length":274,"hash_ids":[2488099,2488100],"delay":5631.0} +{"session_id":"sess-8baf555d40de","input_length":27081,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2492032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8baf555d40de","input_length":2080,"output_length":44,"hash_ids":[2492033,2492034,2492035,2492036,2492037],"delay":1297.4} +{"session_id":"sess-8baf555d40de","input_length":381,"output_length":414,"hash_ids":[2492038],"delay":1046.5} +{"session_id":"sess-8baf555d40de","input_length":476,"output_length":169,"hash_ids":[2492039],"delay":1201.5} +{"session_id":"sess-8baf555d40de","input_length":264,"output_length":340,"hash_ids":[2492040],"delay":554.1} +{"session_id":"sess-8baf555d40de","input_length":812,"output_length":70,"hash_ids":[2492041,2492042],"delay":567.1} +{"session_id":"sess-8baf555d40de","input_length":769,"output_length":265,"hash_ids":[2492043,2492044],"delay":2873.8} +{"session_id":"sess-8baf555d40de","input_length":1904,"output_length":82,"hash_ids":[2492045,2492046,2492047,2492048],"delay":1063.7} +{"session_id":"sess-8baf555d40de","input_length":261,"output_length":83,"hash_ids":[2492049],"delay":313.1} +{"session_id":"sess-8baf555d40de","input_length":501,"output_length":123,"hash_ids":[2492050],"delay":411.6} +{"session_id":"sess-8baf555d40de","input_length":980,"output_length":285,"hash_ids":[2492051,2492052],"delay":261.5} +{"session_id":"sess-8baf555d40de","input_length":1075,"output_length":91,"hash_ids":[2492053,2492054,2492055],"delay":411.7} +{"session_id":"sess-8baf555d40de","input_length":1383,"output_length":629,"hash_ids":[2492056,2492057,2492058],"delay":2284.3} +{"session_id":"sess-68dea8ef15a0","input_length":33266,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2496032,2496033,2496034,2496035,2496036,2496037,2496038,2496039,2496040,2496041,2496042,2496043,2496044],"timestamp":0.0,"group_id":14} +{"session_id":"sess-68dea8ef15a0","input_length":1022,"output_length":317,"hash_ids":[2496045,2496046],"delay":3459.8} +{"session_id":"sess-68dea8ef15a0","input_length":179,"output_length":343,"hash_ids":[2496047],"delay":3843.4} +{"session_id":"sess-68dea8ef15a0","input_length":2585,"output_length":238,"hash_ids":[2496048,2496049,2496050,2496051,2496052,2496053],"delay":808.2} +{"session_id":"sess-68dea8ef15a0","input_length":340,"output_length":307,"hash_ids":[2496054],"delay":1569.3} +{"session_id":"sess-68dea8ef15a0","input_length":893,"output_length":669,"hash_ids":[2496055,2496056],"delay":645.5} +{"session_id":"sess-68dea8ef15a0","input_length":2160,"output_length":307,"hash_ids":[2496057,2496058,2496059,2496060,2496061],"delay":9501.6} +{"session_id":"sess-68dea8ef15a0","input_length":843,"output_length":99,"hash_ids":[2496062,2496063],"delay":1844.5} +{"session_id":"sess-68dea8ef15a0","input_length":975,"output_length":60,"hash_ids":[2496064,2496065],"delay":25216.7} +{"session_id":"sess-68dea8ef15a0","input_length":2079,"output_length":108,"hash_ids":[2496066,2496067,2496068,2496069,2496070],"delay":2057.7} +{"session_id":"sess-68dea8ef15a0","input_length":360,"output_length":30,"hash_ids":[2496071],"delay":1033.9} +{"session_id":"sess-68dea8ef15a0","input_length":1279,"output_length":1172,"hash_ids":[2496072,2496073,2496074],"delay":671.4} +{"session_id":"sess-68dea8ef15a0","input_length":2847,"output_length":162,"hash_ids":[2496075,2496076,2496077,2496078,2496079,2496080],"delay":24614.2} +{"session_id":"sess-68dea8ef15a0","input_length":216,"output_length":891,"hash_ids":[2496081],"delay":234.8} +{"session_id":"sess-68dea8ef15a0","input_length":687,"output_length":636,"hash_ids":[2496082,2496083],"delay":704.3} +{"session_id":"sess-68dea8ef15a0","input_length":845,"output_length":128,"hash_ids":[2496084,2496085],"delay":1498.6} +{"session_id":"sess-68dea8ef15a0","input_length":656,"output_length":974,"hash_ids":[2496086,2496087],"delay":1769.3} +{"session_id":"sess-68dea8ef15a0","input_length":563,"output_length":96,"hash_ids":[2496088,2496089],"delay":790.7} +{"session_id":"sess-68dea8ef15a0","input_length":1378,"output_length":180,"hash_ids":[2496090,2496091,2496092],"delay":8924.3} +{"session_id":"sess-68dea8ef15a0","input_length":696,"output_length":110,"hash_ids":[2496093,2496094],"delay":1244.2} +{"session_id":"sess-68dea8ef15a0","input_length":2608,"output_length":58,"hash_ids":[2496095,2496096,2496097,2496098,2496099,2496100],"delay":193.6} +{"session_id":"sess-68dea8ef15a0","input_length":1077,"output_length":298,"hash_ids":[2496101,2496102,2496103],"delay":150.6} +{"session_id":"sess-68dea8ef15a0","input_length":443,"output_length":436,"hash_ids":[2496104],"delay":83.2} +{"session_id":"sess-fd74aec09567","input_length":28293,"output_length":51,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2500032,2500033,2500034,2500035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-fd74aec09567","input_length":1192,"output_length":348,"hash_ids":[2500036,2500037,2500038],"delay":875.1} +{"session_id":"sess-fd74aec09567","input_length":706,"output_length":162,"hash_ids":[2500039,2500040],"delay":365.3} +{"session_id":"sess-fd74aec09567","input_length":259,"output_length":611,"hash_ids":[2500041],"delay":3017.1} +{"session_id":"sess-fd74aec09567","input_length":544,"output_length":291,"hash_ids":[2500042,2500043],"delay":3747.3} +{"session_id":"sess-fd74aec09567","input_length":737,"output_length":140,"hash_ids":[2500044,2500045],"delay":2450.3} +{"session_id":"sess-fd74aec09567","input_length":1386,"output_length":127,"hash_ids":[2500046,2500047,2500048],"delay":1398.0} +{"session_id":"sess-fd74aec09567","input_length":919,"output_length":223,"hash_ids":[2500049,2500050],"delay":763.7} +{"session_id":"sess-d7f3f017feb0","input_length":29613,"output_length":55,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2504032,2504033,2504034,2504035,2504036,2504037],"timestamp":0.0,"group_id":4} +{"session_id":"sess-d7f3f017feb0","input_length":546,"output_length":176,"hash_ids":[2504038,2504039],"delay":768.4} +{"session_id":"sess-d7f3f017feb0","input_length":655,"output_length":243,"hash_ids":[2504040,2504041],"delay":668.9} +{"session_id":"sess-d7f3f017feb0","input_length":328,"output_length":781,"hash_ids":[2504042],"delay":452.0} +{"session_id":"sess-d7f3f017feb0","input_length":533,"output_length":99,"hash_ids":[2504043,2504044],"delay":555.0} +{"session_id":"sess-d7f3f017feb0","input_length":331,"output_length":30,"hash_ids":[2504045],"delay":581.5} +{"session_id":"sess-d7f3f017feb0","input_length":658,"output_length":45,"hash_ids":[2504046,2504047],"delay":5845.6} +{"session_id":"sess-d7f3f017feb0","input_length":2570,"output_length":207,"hash_ids":[2504048,2504049,2504050,2504051,2504052,2504053],"delay":954.0} +{"session_id":"sess-d7f3f017feb0","input_length":2579,"output_length":79,"hash_ids":[2504054,2504055,2504056,2504057,2504058,2504059],"delay":359.4} +{"session_id":"sess-d7f3f017feb0","input_length":1089,"output_length":304,"hash_ids":[2504060,2504061,2504062],"delay":721.7} +{"session_id":"sess-d7f3f017feb0","input_length":487,"output_length":87,"hash_ids":[2504063],"delay":1176.8} +{"session_id":"sess-d7f3f017feb0","input_length":858,"output_length":322,"hash_ids":[2504064,2504065],"delay":647.9} +{"session_id":"sess-d7f3f017feb0","input_length":1737,"output_length":422,"hash_ids":[2504066,2504067,2504068,2504069],"delay":846.1} +{"session_id":"sess-d7f3f017feb0","input_length":1271,"output_length":155,"hash_ids":[2504070,2504071,2504072],"delay":7067.0} +{"session_id":"sess-d7f3f017feb0","input_length":454,"output_length":333,"hash_ids":[2504073],"delay":835.2} +{"session_id":"sess-d7f3f017feb0","input_length":397,"output_length":176,"hash_ids":[2504074],"delay":368.3} +{"session_id":"sess-d7f3f017feb0","input_length":100,"output_length":106,"hash_ids":[2504075],"delay":576.1} +{"session_id":"sess-c13de5f1e42b","input_length":28571,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2508032,2508033,2508034,2508035],"timestamp":0.0,"group_id":9} +{"session_id":"sess-c13de5f1e42b","input_length":813,"output_length":93,"hash_ids":[2508036,2508037],"delay":5012.4} +{"session_id":"sess-c13de5f1e42b","input_length":735,"output_length":478,"hash_ids":[2508038,2508039],"delay":669.3} +{"session_id":"sess-c13de5f1e42b","input_length":673,"output_length":496,"hash_ids":[2508040,2508041],"delay":427.5} +{"session_id":"sess-c13de5f1e42b","input_length":1273,"output_length":182,"hash_ids":[2508042,2508043,2508044],"delay":1331.1} +{"session_id":"sess-c13de5f1e42b","input_length":1746,"output_length":344,"hash_ids":[2508045,2508046,2508047,2508048],"delay":473.8} +{"session_id":"sess-c13de5f1e42b","input_length":899,"output_length":158,"hash_ids":[2508049,2508050],"delay":11824.8} +{"session_id":"sess-c13de5f1e42b","input_length":1643,"output_length":86,"hash_ids":[2508051,2508052,2508053,2508054],"delay":995.6} +{"session_id":"sess-c13de5f1e42b","input_length":2999,"output_length":200,"hash_ids":[2508055,2508056,2508057,2508058,2508059,2508060],"delay":948.5} +{"session_id":"sess-c13de5f1e42b","input_length":1630,"output_length":51,"hash_ids":[2508061,2508062,2508063,2508064],"delay":3397.8} +{"session_id":"sess-c13de5f1e42b","input_length":360,"output_length":253,"hash_ids":[2508065],"delay":782.7} +{"session_id":"sess-c13de5f1e42b","input_length":1678,"output_length":185,"hash_ids":[2508066,2508067,2508068,2508069],"delay":592.3} +{"session_id":"sess-c13de5f1e42b","input_length":1162,"output_length":76,"hash_ids":[2508070,2508071,2508072],"delay":1371.6} +{"session_id":"sess-c13de5f1e42b","input_length":272,"output_length":279,"hash_ids":[2508073],"delay":348.1} +{"session_id":"sess-c13de5f1e42b","input_length":749,"output_length":472,"hash_ids":[2508074,2508075],"delay":585.8} +{"session_id":"sess-c13de5f1e42b","input_length":1178,"output_length":76,"hash_ids":[2508076,2508077,2508078],"delay":1871.2} +{"session_id":"sess-c13de5f1e42b","input_length":941,"output_length":183,"hash_ids":[2508079,2508080],"delay":828.7} +{"session_id":"sess-c13de5f1e42b","input_length":2945,"output_length":213,"hash_ids":[2508081,2508082,2508083,2508084,2508085,2508086],"delay":2540.5} +{"session_id":"sess-c13de5f1e42b","input_length":2378,"output_length":704,"hash_ids":[2508087,2508088,2508089,2508090,2508091],"delay":14033.5} +{"session_id":"sess-c13de5f1e42b","input_length":577,"output_length":164,"hash_ids":[2508092,2508093],"delay":1370.5} +{"session_id":"sess-c13de5f1e42b","input_length":213,"output_length":129,"hash_ids":[2508094],"delay":250.0} +{"session_id":"sess-c13de5f1e42b","input_length":1417,"output_length":143,"hash_ids":[2508095,2508096,2508097],"delay":10643.0} +{"session_id":"sess-c13de5f1e42b","input_length":860,"output_length":113,"hash_ids":[2508098,2508099],"delay":418.4} +{"session_id":"sess-c13de5f1e42b","input_length":880,"output_length":186,"hash_ids":[2508100,2508101],"delay":4374.4} +{"session_id":"sess-c13de5f1e42b","input_length":959,"output_length":152,"hash_ids":[2508102,2508103],"delay":383.7} +{"session_id":"sess-c13de5f1e42b","input_length":777,"output_length":209,"hash_ids":[2508104,2508105],"delay":1817.5} +{"session_id":"sess-c13de5f1e42b","input_length":810,"output_length":106,"hash_ids":[2508106,2508107],"delay":626.0} +{"session_id":"sess-c13de5f1e42b","input_length":368,"output_length":192,"hash_ids":[2508108],"delay":2929.6} +{"session_id":"sess-3475cefa1980","input_length":27758,"output_length":694,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2512032,2512033,2512034],"timestamp":0.0,"group_id":4} +{"session_id":"sess-3475cefa1980","input_length":880,"output_length":179,"hash_ids":[2512035,2512036],"delay":17303.9} +{"session_id":"sess-3475cefa1980","input_length":106,"output_length":54,"hash_ids":[2512037],"delay":624.8} +{"session_id":"sess-3475cefa1980","input_length":1681,"output_length":119,"hash_ids":[2512038,2512039,2512040,2512041],"delay":3401.1} +{"session_id":"sess-3475cefa1980","input_length":468,"output_length":129,"hash_ids":[2512042],"delay":1505.8} +{"session_id":"sess-3475cefa1980","input_length":1080,"output_length":246,"hash_ids":[2512043,2512044,2512045],"delay":12195.5} +{"session_id":"sess-3475cefa1980","input_length":601,"output_length":162,"hash_ids":[2512046,2512047],"delay":15108.8} +{"session_id":"sess-3475cefa1980","input_length":1975,"output_length":268,"hash_ids":[2512048,2512049,2512050,2512051],"delay":312.5} +{"session_id":"sess-3475cefa1980","input_length":512,"output_length":55,"hash_ids":[2512052],"delay":3693.5} +{"session_id":"sess-3475cefa1980","input_length":221,"output_length":294,"hash_ids":[2512053],"delay":543.3} +{"session_id":"sess-3475cefa1980","input_length":1135,"output_length":98,"hash_ids":[2512054,2512055,2512056],"delay":12621.2} +{"session_id":"sess-3475cefa1980","input_length":556,"output_length":432,"hash_ids":[2512057,2512058],"delay":1793.4} +{"session_id":"sess-3475cefa1980","input_length":225,"output_length":293,"hash_ids":[2512059],"delay":580.2} +{"session_id":"sess-3475cefa1980","input_length":1854,"output_length":51,"hash_ids":[2512060,2512061,2512062,2512063],"delay":2008.4} +{"session_id":"sess-3475cefa1980","input_length":2502,"output_length":103,"hash_ids":[2512064,2512065,2512066,2512067,2512068],"delay":13932.1} +{"session_id":"sess-3475cefa1980","input_length":62,"output_length":428,"hash_ids":[2512069],"delay":1192.0} +{"session_id":"sess-3475cefa1980","input_length":363,"output_length":186,"hash_ids":[2512070],"delay":1304.4} +{"session_id":"sess-3475cefa1980","input_length":296,"output_length":227,"hash_ids":[2512071],"delay":314.4} +{"session_id":"sess-3475cefa1980","input_length":2207,"output_length":380,"hash_ids":[2512072,2512073,2512074,2512075,2512076],"delay":4198.2} +{"session_id":"sess-3475cefa1980","input_length":217,"output_length":311,"hash_ids":[2512077],"delay":37950.9} +{"session_id":"sess-3475cefa1980","input_length":1976,"output_length":95,"hash_ids":[2512078,2512079,2512080,2512081],"delay":11609.4} +{"session_id":"sess-3475cefa1980","input_length":75,"output_length":68,"hash_ids":[2512082],"delay":438.9} +{"session_id":"sess-3475cefa1980","input_length":414,"output_length":164,"hash_ids":[2512083],"delay":799.1} +{"session_id":"sess-3475cefa1980","input_length":1587,"output_length":209,"hash_ids":[2512084,2512085,2512086,2512087],"delay":609.2} +{"session_id":"sess-3475cefa1980","input_length":458,"output_length":151,"hash_ids":[2512088],"delay":27778.9} +{"session_id":"sess-3475cefa1980","input_length":588,"output_length":196,"hash_ids":[2512089,2512090],"delay":1183.2} +{"session_id":"sess-3475cefa1980","input_length":1151,"output_length":200,"hash_ids":[2512091,2512092,2512093],"delay":686.8} +{"session_id":"sess-3475cefa1980","input_length":589,"output_length":395,"hash_ids":[2512094,2512095],"delay":251.9} +{"session_id":"sess-3475cefa1980","input_length":209,"output_length":669,"hash_ids":[2512096],"delay":1177.8} +{"session_id":"sess-3475cefa1980","input_length":742,"output_length":172,"hash_ids":[2512097,2512098],"delay":362.6} +{"session_id":"sess-3475cefa1980","input_length":425,"output_length":383,"hash_ids":[2512099],"delay":315.1} +{"session_id":"sess-3475cefa1980","input_length":110,"output_length":190,"hash_ids":[2512100],"delay":214.0} +{"session_id":"sess-3475cefa1980","input_length":414,"output_length":454,"hash_ids":[2512101],"delay":10003.1} +{"session_id":"sess-3475cefa1980","input_length":2533,"output_length":123,"hash_ids":[2512102,2512103,2512104,2512105,2512106],"delay":393.8} +{"session_id":"sess-2d2eb24cdf8a","input_length":27465,"output_length":132,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2516032,2516033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2d2eb24cdf8a","input_length":185,"output_length":131,"hash_ids":[2516034],"delay":3954.4} +{"session_id":"sess-2d2eb24cdf8a","input_length":892,"output_length":719,"hash_ids":[2516035,2516036],"delay":5126.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":283,"output_length":140,"hash_ids":[2516037],"delay":369.0} +{"session_id":"sess-2d2eb24cdf8a","input_length":300,"output_length":237,"hash_ids":[2516038],"delay":45207.2} +{"session_id":"sess-2d2eb24cdf8a","input_length":2191,"output_length":199,"hash_ids":[2516039,2516040,2516041,2516042,2516043],"delay":280.5} +{"session_id":"sess-2d2eb24cdf8a","input_length":1909,"output_length":167,"hash_ids":[2516044,2516045,2516046,2516047],"delay":1141.4} +{"session_id":"sess-2d2eb24cdf8a","input_length":1701,"output_length":111,"hash_ids":[2516048,2516049,2516050,2516051],"delay":2501.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":937,"output_length":30,"hash_ids":[2516052,2516053],"delay":2345.9} +{"session_id":"sess-2d2eb24cdf8a","input_length":84,"output_length":38,"hash_ids":[2516054],"delay":4407.5} +{"session_id":"sess-2d2eb24cdf8a","input_length":761,"output_length":130,"hash_ids":[2516055,2516056],"delay":3894.5} +{"session_id":"sess-2d2eb24cdf8a","input_length":147,"output_length":269,"hash_ids":[2516057],"delay":669.9} +{"session_id":"sess-2d2eb24cdf8a","input_length":537,"output_length":407,"hash_ids":[2516058,2516059],"delay":21475.2} +{"session_id":"sess-2d2eb24cdf8a","input_length":164,"output_length":164,"hash_ids":[2516060],"delay":3801.6} +{"session_id":"sess-2d2eb24cdf8a","input_length":180,"output_length":719,"hash_ids":[2516061],"delay":1187.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":1976,"output_length":721,"hash_ids":[2516062,2516063,2516064,2516065],"delay":1555.4} +{"session_id":"sess-2d2eb24cdf8a","input_length":793,"output_length":208,"hash_ids":[2516066,2516067],"delay":696.3} +{"session_id":"sess-2d2eb24cdf8a","input_length":1604,"output_length":85,"hash_ids":[2516068,2516069,2516070,2516071],"delay":1142.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":1761,"output_length":308,"hash_ids":[2516072,2516073,2516074,2516075],"delay":278.2} +{"session_id":"sess-2d2eb24cdf8a","input_length":2442,"output_length":52,"hash_ids":[2516076,2516077,2516078,2516079,2516080],"delay":1813.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":427,"output_length":234,"hash_ids":[2516081],"delay":245.0} +{"session_id":"sess-2d2eb24cdf8a","input_length":1183,"output_length":182,"hash_ids":[2516082,2516083,2516084],"delay":1948.3} +{"session_id":"sess-2d2eb24cdf8a","input_length":850,"output_length":363,"hash_ids":[2516085,2516086],"delay":239.1} +{"session_id":"sess-2d2eb24cdf8a","input_length":565,"output_length":499,"hash_ids":[2516087,2516088],"delay":17978.0} +{"session_id":"sess-2d2eb24cdf8a","input_length":2428,"output_length":98,"hash_ids":[2516089,2516090,2516091,2516092,2516093],"delay":837.9} +{"session_id":"sess-2d2eb24cdf8a","input_length":540,"output_length":156,"hash_ids":[2516094,2516095],"delay":4349.5} +{"session_id":"sess-9592ac767037","input_length":27967,"output_length":227,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2520032,2520033,2520034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9592ac767037","input_length":1865,"output_length":203,"hash_ids":[2520035,2520036,2520037,2520038],"delay":1183.5} +{"session_id":"sess-9592ac767037","input_length":1874,"output_length":360,"hash_ids":[2520039,2520040,2520041,2520042],"delay":16014.5} +{"session_id":"sess-9592ac767037","input_length":1471,"output_length":165,"hash_ids":[2520043,2520044,2520045],"delay":1483.5} +{"session_id":"sess-9592ac767037","input_length":499,"output_length":34,"hash_ids":[2520046],"delay":667.7} +{"session_id":"sess-9592ac767037","input_length":574,"output_length":245,"hash_ids":[2520047,2520048],"delay":625.3} +{"session_id":"sess-9592ac767037","input_length":2647,"output_length":433,"hash_ids":[2520049,2520050,2520051,2520052,2520053,2520054],"delay":54663.3} +{"session_id":"sess-9592ac767037","input_length":1095,"output_length":364,"hash_ids":[2520055,2520056,2520057],"delay":2865.8} +{"session_id":"sess-9592ac767037","input_length":1613,"output_length":329,"hash_ids":[2520058,2520059,2520060,2520061],"delay":1453.4} +{"session_id":"sess-9592ac767037","input_length":1063,"output_length":383,"hash_ids":[2520062,2520063,2520064],"delay":203.3} +{"session_id":"sess-9592ac767037","input_length":428,"output_length":95,"hash_ids":[2520065],"delay":885.6} +{"session_id":"sess-9592ac767037","input_length":1403,"output_length":676,"hash_ids":[2520066,2520067,2520068],"delay":31912.7} +{"session_id":"sess-9592ac767037","input_length":571,"output_length":100,"hash_ids":[2520069,2520070],"delay":2545.6} +{"session_id":"sess-9592ac767037","input_length":2688,"output_length":117,"hash_ids":[2520071,2520072,2520073,2520074,2520075,2520076],"delay":14284.9} +{"session_id":"sess-9592ac767037","input_length":456,"output_length":326,"hash_ids":[2520077],"delay":235.4} +{"session_id":"sess-9592ac767037","input_length":365,"output_length":36,"hash_ids":[2520078],"delay":1820.6} +{"session_id":"sess-9592ac767037","input_length":1166,"output_length":575,"hash_ids":[2520079,2520080,2520081],"delay":2181.2} +{"session_id":"sess-9592ac767037","input_length":369,"output_length":85,"hash_ids":[2520082],"delay":406.0} +{"session_id":"sess-9592ac767037","input_length":1719,"output_length":103,"hash_ids":[2520083,2520084,2520085,2520086],"delay":2800.4} +{"session_id":"sess-9592ac767037","input_length":1667,"output_length":184,"hash_ids":[2520087,2520088,2520089,2520090],"delay":10839.0} +{"session_id":"sess-9592ac767037","input_length":992,"output_length":425,"hash_ids":[2520091,2520092],"delay":71.1} +{"session_id":"sess-9592ac767037","input_length":1397,"output_length":267,"hash_ids":[2520093,2520094,2520095],"delay":17385.2} +{"session_id":"sess-9592ac767037","input_length":292,"output_length":257,"hash_ids":[2520096],"delay":454.9} +{"session_id":"sess-9592ac767037","input_length":542,"output_length":62,"hash_ids":[2520097,2520098],"delay":584.9} +{"session_id":"sess-9592ac767037","input_length":1216,"output_length":902,"hash_ids":[2520099,2520100,2520101],"delay":258.7} +{"session_id":"sess-9592ac767037","input_length":580,"output_length":338,"hash_ids":[2520102,2520103],"delay":392.6} +{"session_id":"sess-9592ac767037","input_length":222,"output_length":1014,"hash_ids":[2520104],"delay":10348.9} +{"session_id":"sess-cc7d27161e25","input_length":26889,"output_length":435,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2524032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cc7d27161e25","input_length":138,"output_length":50,"hash_ids":[2524033],"delay":2062.7} +{"session_id":"sess-1f9c7a3cac1c","input_length":26654,"output_length":196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,2528032],"timestamp":0.0,"group_id":32} +{"session_id":"sess-1f9c7a3cac1c","input_length":821,"output_length":420,"hash_ids":[2528033,2528034],"delay":917.7} +{"session_id":"sess-1f9c7a3cac1c","input_length":125,"output_length":1130,"hash_ids":[2528035],"delay":881.6} +{"session_id":"sess-1f9c7a3cac1c","input_length":731,"output_length":504,"hash_ids":[2528036,2528037],"delay":1336.9} +{"session_id":"sess-1f9c7a3cac1c","input_length":636,"output_length":231,"hash_ids":[2528038,2528039],"delay":2094.0} +{"session_id":"sess-1f9c7a3cac1c","input_length":2056,"output_length":386,"hash_ids":[2528040,2528041,2528042,2528043,2528044],"delay":20869.3} +{"session_id":"sess-1f9c7a3cac1c","input_length":199,"output_length":1001,"hash_ids":[2528045],"delay":870.2} +{"session_id":"sess-1f9c7a3cac1c","input_length":1306,"output_length":100,"hash_ids":[2528046,2528047,2528048],"delay":41322.1} +{"session_id":"sess-1f9c7a3cac1c","input_length":1348,"output_length":468,"hash_ids":[2528049,2528050,2528051],"delay":2791.2} +{"session_id":"sess-1f9c7a3cac1c","input_length":2570,"output_length":105,"hash_ids":[2528052,2528053,2528054,2528055,2528056,2528057],"delay":606.8} +{"session_id":"sess-1f9c7a3cac1c","input_length":285,"output_length":361,"hash_ids":[2528058],"delay":25364.5} +{"session_id":"sess-1f9c7a3cac1c","input_length":1393,"output_length":407,"hash_ids":[2528059,2528060,2528061],"delay":4045.4} +{"session_id":"sess-1f9c7a3cac1c","input_length":350,"output_length":86,"hash_ids":[2528062],"delay":605.5} +{"session_id":"sess-1f9c7a3cac1c","input_length":410,"output_length":289,"hash_ids":[2528063],"delay":13489.4} +{"session_id":"sess-1f9c7a3cac1c","input_length":2421,"output_length":273,"hash_ids":[2528064,2528065,2528066,2528067,2528068],"delay":180.0} +{"session_id":"sess-1f9c7a3cac1c","input_length":939,"output_length":167,"hash_ids":[2528069,2528070],"delay":658.6} +{"session_id":"sess-1f9c7a3cac1c","input_length":181,"output_length":267,"hash_ids":[2528071],"delay":3029.4} +{"session_id":"sess-1f9c7a3cac1c","input_length":612,"output_length":383,"hash_ids":[2528072,2528073],"delay":527.2} +{"session_id":"sess-1f9c7a3cac1c","input_length":808,"output_length":30,"hash_ids":[2528074,2528075],"delay":46903.6} +{"session_id":"sess-1f9c7a3cac1c","input_length":1581,"output_length":116,"hash_ids":[2528076,2528077,2528078,2528079],"delay":40792.2} +{"session_id":"sess-1f9c7a3cac1c","input_length":634,"output_length":47,"hash_ids":[2528080,2528081],"delay":264.6} +{"session_id":"sess-1f9c7a3cac1c","input_length":1327,"output_length":140,"hash_ids":[2528082,2528083,2528084],"delay":826.2} +{"session_id":"sess-1f9c7a3cac1c","input_length":2750,"output_length":596,"hash_ids":[2528085,2528086,2528087,2528088,2528089,2528090],"delay":860.8} +{"session_id":"sess-1f9c7a3cac1c","input_length":286,"output_length":293,"hash_ids":[2528091],"delay":318.1} +{"session_id":"sess-1f9c7a3cac1c","input_length":262,"output_length":157,"hash_ids":[2528092],"delay":894.6} +{"session_id":"sess-1f9c7a3cac1c","input_length":742,"output_length":548,"hash_ids":[2528093,2528094],"delay":8597.7} +{"session_id":"sess-1f9c7a3cac1c","input_length":2303,"output_length":425,"hash_ids":[2528095,2528096,2528097,2528098,2528099],"delay":309.0} +{"session_id":"sess-1f9c7a3cac1c","input_length":1639,"output_length":122,"hash_ids":[2528100,2528101,2528102,2528103],"delay":717.4} +{"session_id":"sess-1f9c7a3cac1c","input_length":632,"output_length":508,"hash_ids":[2528104,2528105],"delay":327.8} +{"session_id":"sess-51427a2225d0","input_length":31661,"output_length":236,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,2532032,2532033,2532034,2532035,2532036,2532037,2532038,2532039,2532040,2532041],"timestamp":0.0,"group_id":8} +{"session_id":"sess-51427a2225d0","input_length":1785,"output_length":358,"hash_ids":[2532042,2532043,2532044,2532045],"delay":2501.0} +{"session_id":"sess-51427a2225d0","input_length":185,"output_length":184,"hash_ids":[2532046],"delay":3356.6} +{"session_id":"sess-51427a2225d0","input_length":939,"output_length":165,"hash_ids":[2532047,2532048],"delay":2382.3} +{"session_id":"sess-51427a2225d0","input_length":1078,"output_length":352,"hash_ids":[2532049,2532050,2532051],"delay":801.4} +{"session_id":"sess-51427a2225d0","input_length":2810,"output_length":254,"hash_ids":[2532052,2532053,2532054,2532055,2532056,2532057],"delay":844.1} +{"session_id":"sess-51427a2225d0","input_length":1081,"output_length":492,"hash_ids":[2532058,2532059,2532060],"delay":827.1} +{"session_id":"sess-51427a2225d0","input_length":741,"output_length":120,"hash_ids":[2532061,2532062],"delay":538.8} +{"session_id":"sess-51427a2225d0","input_length":1016,"output_length":489,"hash_ids":[2532063,2532064],"delay":55329.0} +{"session_id":"sess-51427a2225d0","input_length":215,"output_length":409,"hash_ids":[2532065],"delay":1405.0} +{"session_id":"sess-51427a2225d0","input_length":436,"output_length":183,"hash_ids":[2532066],"delay":363.5} +{"session_id":"sess-51427a2225d0","input_length":2030,"output_length":88,"hash_ids":[2532067,2532068,2532069,2532070],"delay":6090.0} +{"session_id":"sess-51427a2225d0","input_length":282,"output_length":883,"hash_ids":[2532071],"delay":497.5} +{"session_id":"sess-51427a2225d0","input_length":832,"output_length":147,"hash_ids":[2532072,2532073],"delay":324.4} +{"session_id":"sess-51427a2225d0","input_length":559,"output_length":206,"hash_ids":[2532074,2532075],"delay":4946.4} +{"session_id":"sess-51427a2225d0","input_length":1188,"output_length":163,"hash_ids":[2532076,2532077,2532078],"delay":570.4} +{"session_id":"sess-51427a2225d0","input_length":742,"output_length":279,"hash_ids":[2532079,2532080],"delay":936.5} +{"session_id":"sess-51427a2225d0","input_length":1664,"output_length":93,"hash_ids":[2532081,2532082,2532083,2532084],"delay":84.7} +{"session_id":"sess-51427a2225d0","input_length":293,"output_length":417,"hash_ids":[2532085],"delay":2262.9} +{"session_id":"sess-51427a2225d0","input_length":452,"output_length":350,"hash_ids":[2532086],"delay":1118.8} +{"session_id":"sess-51427a2225d0","input_length":376,"output_length":240,"hash_ids":[2532087],"delay":5994.1} +{"session_id":"sess-51427a2225d0","input_length":588,"output_length":30,"hash_ids":[2532088,2532089],"delay":636.2} +{"session_id":"sess-51427a2225d0","input_length":120,"output_length":250,"hash_ids":[2532090],"delay":324.7} +{"session_id":"sess-51427a2225d0","input_length":598,"output_length":165,"hash_ids":[2532091,2532092],"delay":776.5} +{"session_id":"sess-51427a2225d0","input_length":1005,"output_length":156,"hash_ids":[2532093,2532094],"delay":1421.3} +{"session_id":"sess-51427a2225d0","input_length":862,"output_length":371,"hash_ids":[2532095,2532096],"delay":710.7} +{"session_id":"sess-51427a2225d0","input_length":447,"output_length":525,"hash_ids":[2532097],"delay":6461.5} +{"session_id":"sess-51427a2225d0","input_length":137,"output_length":231,"hash_ids":[2532098],"delay":241.9} +{"session_id":"sess-51427a2225d0","input_length":1112,"output_length":51,"hash_ids":[2532099,2532100,2532101],"delay":3467.3} +{"session_id":"sess-51427a2225d0","input_length":2068,"output_length":393,"hash_ids":[2532102,2532103,2532104,2532105,2532106],"delay":500.3} +{"session_id":"sess-43560a2823c3","input_length":26761,"output_length":363,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2536032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-43560a2823c3","input_length":672,"output_length":640,"hash_ids":[2536033,2536034],"delay":233.4} +{"session_id":"sess-43560a2823c3","input_length":130,"output_length":154,"hash_ids":[2536035],"delay":1374.0} +{"session_id":"sess-43560a2823c3","input_length":1088,"output_length":50,"hash_ids":[2536036,2536037,2536038],"delay":2421.3} +{"session_id":"sess-43560a2823c3","input_length":1472,"output_length":244,"hash_ids":[2536039,2536040,2536041],"delay":4692.9} +{"session_id":"sess-43560a2823c3","input_length":1442,"output_length":314,"hash_ids":[2536042,2536043,2536044],"delay":990.8} +{"session_id":"sess-43560a2823c3","input_length":730,"output_length":106,"hash_ids":[2536045,2536046],"delay":11163.1} +{"session_id":"sess-43560a2823c3","input_length":281,"output_length":37,"hash_ids":[2536047],"delay":3068.8} +{"session_id":"sess-43560a2823c3","input_length":262,"output_length":30,"hash_ids":[2536048],"delay":1645.5} +{"session_id":"sess-43560a2823c3","input_length":242,"output_length":248,"hash_ids":[2536049],"delay":1388.8} +{"session_id":"sess-43560a2823c3","input_length":1563,"output_length":117,"hash_ids":[2536050,2536051,2536052,2536053],"delay":871.6} +{"session_id":"sess-43560a2823c3","input_length":2549,"output_length":394,"hash_ids":[2536054,2536055,2536056,2536057,2536058],"delay":717.8} +{"session_id":"sess-43560a2823c3","input_length":2226,"output_length":215,"hash_ids":[2536059,2536060,2536061,2536062,2536063],"delay":43437.6} +{"session_id":"sess-43560a2823c3","input_length":98,"output_length":471,"hash_ids":[2536064],"delay":49202.2} +{"session_id":"sess-43560a2823c3","input_length":2082,"output_length":275,"hash_ids":[2536065,2536066,2536067,2536068,2536069],"delay":601.2} +{"session_id":"sess-43560a2823c3","input_length":2842,"output_length":249,"hash_ids":[2536070,2536071,2536072,2536073,2536074,2536075],"delay":651.7} +{"session_id":"sess-43560a2823c3","input_length":1268,"output_length":242,"hash_ids":[2536076,2536077,2536078],"delay":407.8} +{"session_id":"sess-43560a2823c3","input_length":1656,"output_length":114,"hash_ids":[2536079,2536080,2536081,2536082],"delay":1310.6} +{"session_id":"sess-43560a2823c3","input_length":120,"output_length":126,"hash_ids":[2536083],"delay":333.6} +{"session_id":"sess-43560a2823c3","input_length":1679,"output_length":33,"hash_ids":[2536084,2536085,2536086,2536087],"delay":329.9} +{"session_id":"sess-43560a2823c3","input_length":1827,"output_length":103,"hash_ids":[2536088,2536089,2536090,2536091],"delay":1053.3} +{"session_id":"sess-43560a2823c3","input_length":126,"output_length":471,"hash_ids":[2536092],"delay":27920.7} +{"session_id":"sess-43560a2823c3","input_length":46,"output_length":347,"hash_ids":[2536093],"delay":912.7} +{"session_id":"sess-43560a2823c3","input_length":1600,"output_length":81,"hash_ids":[2536094,2536095,2536096,2536097],"delay":10122.1} +{"session_id":"sess-43560a2823c3","input_length":444,"output_length":45,"hash_ids":[2536098],"delay":1295.6} +{"session_id":"sess-43560a2823c3","input_length":1085,"output_length":93,"hash_ids":[2536099,2536100,2536101],"delay":1340.6} +{"session_id":"sess-43560a2823c3","input_length":738,"output_length":178,"hash_ids":[2536102,2536103],"delay":255.9} +{"session_id":"sess-43560a2823c3","input_length":801,"output_length":56,"hash_ids":[2536104,2536105],"delay":4776.3} +{"session_id":"sess-43560a2823c3","input_length":336,"output_length":741,"hash_ids":[2536106],"delay":219.9} +{"session_id":"sess-43560a2823c3","input_length":602,"output_length":222,"hash_ids":[2536107,2536108],"delay":72.3} +{"session_id":"sess-43560a2823c3","input_length":269,"output_length":117,"hash_ids":[2536109],"delay":486.6} +{"session_id":"sess-43560a2823c3","input_length":436,"output_length":340,"hash_ids":[2536110],"delay":191.5} +{"session_id":"sess-ebb0f73a612d","input_length":27227,"output_length":637,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,2540032,2540033],"timestamp":0.0,"group_id":5} +{"session_id":"sess-27e43bf820f7","input_length":27863,"output_length":136,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,2544032,2544033,2544034],"timestamp":0.0,"group_id":28} +{"session_id":"sess-27e43bf820f7","input_length":55,"output_length":445,"hash_ids":[2544035],"delay":6619.1} +{"session_id":"sess-27e43bf820f7","input_length":821,"output_length":394,"hash_ids":[2544036,2544037],"delay":1367.7} +{"session_id":"sess-27e43bf820f7","input_length":537,"output_length":594,"hash_ids":[2544038,2544039],"delay":1900.4} +{"session_id":"sess-27e43bf820f7","input_length":785,"output_length":599,"hash_ids":[2544040,2544041],"delay":1434.6} +{"session_id":"sess-27e43bf820f7","input_length":509,"output_length":634,"hash_ids":[2544042],"delay":300.9} +{"session_id":"sess-27e43bf820f7","input_length":1583,"output_length":189,"hash_ids":[2544043,2544044,2544045,2544046],"delay":1410.8} +{"session_id":"sess-27e43bf820f7","input_length":891,"output_length":370,"hash_ids":[2544047,2544048],"delay":541.3} +{"session_id":"sess-27e43bf820f7","input_length":1968,"output_length":281,"hash_ids":[2544049,2544050,2544051,2544052],"delay":943.5} +{"session_id":"sess-27e43bf820f7","input_length":1451,"output_length":422,"hash_ids":[2544053,2544054,2544055],"delay":546.4} +{"session_id":"sess-27e43bf820f7","input_length":705,"output_length":170,"hash_ids":[2544056,2544057],"delay":416.9} +{"session_id":"sess-27e43bf820f7","input_length":394,"output_length":52,"hash_ids":[2544058],"delay":1077.0} +{"session_id":"sess-27e43bf820f7","input_length":1383,"output_length":285,"hash_ids":[2544059,2544060,2544061],"delay":9888.4} +{"session_id":"sess-27e43bf820f7","input_length":381,"output_length":36,"hash_ids":[2544062],"delay":953.1} +{"session_id":"sess-27e43bf820f7","input_length":1333,"output_length":255,"hash_ids":[2544063,2544064,2544065],"delay":1616.4} +{"session_id":"sess-27e43bf820f7","input_length":538,"output_length":349,"hash_ids":[2544066,2544067],"delay":6205.5} +{"session_id":"sess-27e43bf820f7","input_length":2653,"output_length":144,"hash_ids":[2544068,2544069,2544070,2544071,2544072,2544073],"delay":10656.4} +{"session_id":"sess-27e43bf820f7","input_length":2576,"output_length":84,"hash_ids":[2544074,2544075,2544076,2544077,2544078,2544079],"delay":1570.8} +{"session_id":"sess-27e43bf820f7","input_length":235,"output_length":103,"hash_ids":[2544080],"delay":625.4} +{"session_id":"sess-27e43bf820f7","input_length":831,"output_length":1144,"hash_ids":[2544081,2544082],"delay":1823.7} +{"session_id":"sess-27e43bf820f7","input_length":628,"output_length":623,"hash_ids":[2544083,2544084],"delay":549.2} +{"session_id":"sess-27e43bf820f7","input_length":2066,"output_length":1070,"hash_ids":[2544085,2544086,2544087,2544088,2544089],"delay":6690.0} +{"session_id":"sess-27e43bf820f7","input_length":918,"output_length":493,"hash_ids":[2544090,2544091],"delay":248.0} +{"session_id":"sess-27e43bf820f7","input_length":998,"output_length":143,"hash_ids":[2544092,2544093],"delay":130.5} +{"session_id":"sess-27e43bf820f7","input_length":940,"output_length":154,"hash_ids":[2544094,2544095],"delay":20342.5} +{"session_id":"sess-27e43bf820f7","input_length":928,"output_length":1064,"hash_ids":[2544096,2544097],"delay":12067.9} +{"session_id":"sess-fe50ebf933e0","input_length":26318,"output_length":33,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451],"timestamp":0.0,"group_id":7} +{"session_id":"sess-fe50ebf933e0","input_length":248,"output_length":151,"hash_ids":[2544098],"delay":5744.5} +{"session_id":"sess-fe50ebf933e0","input_length":733,"output_length":454,"hash_ids":[2544099,2544100],"delay":398.5} +{"session_id":"sess-fe50ebf933e0","input_length":2374,"output_length":267,"hash_ids":[2544101,2544102,2544103,2544104,2544105],"delay":9636.2} +{"session_id":"sess-fe50ebf933e0","input_length":349,"output_length":192,"hash_ids":[2544106],"delay":1088.4} +{"session_id":"sess-fe50ebf933e0","input_length":2884,"output_length":39,"hash_ids":[2544107,2544108,2544109,2544110,2544111,2544112],"delay":10462.7} +{"session_id":"sess-fe50ebf933e0","input_length":1283,"output_length":140,"hash_ids":[2544113,2544114,2544115],"delay":715.0} +{"session_id":"sess-fe50ebf933e0","input_length":1904,"output_length":361,"hash_ids":[2544116,2544117,2544118,2544119],"delay":2965.7} +{"session_id":"sess-fe50ebf933e0","input_length":775,"output_length":259,"hash_ids":[2544120,2544121],"delay":1086.1} +{"session_id":"sess-fe50ebf933e0","input_length":1289,"output_length":155,"hash_ids":[2544122,2544123,2544124],"delay":920.3} +{"session_id":"sess-fe50ebf933e0","input_length":1180,"output_length":270,"hash_ids":[2544125,2544126,2544127],"delay":1045.6} +{"session_id":"sess-fe50ebf933e0","input_length":1179,"output_length":125,"hash_ids":[2544128,2544129,2544130],"delay":624.9} +{"session_id":"sess-fe50ebf933e0","input_length":1611,"output_length":371,"hash_ids":[2544131,2544132,2544133,2544134],"delay":1170.3} +{"session_id":"sess-fe50ebf933e0","input_length":286,"output_length":430,"hash_ids":[2544135],"delay":30043.6} +{"session_id":"sess-fe50ebf933e0","input_length":746,"output_length":52,"hash_ids":[2544136,2544137],"delay":1170.4} +{"session_id":"sess-fe50ebf933e0","input_length":1648,"output_length":56,"hash_ids":[2544138,2544139,2544140,2544141],"delay":311.4} +{"session_id":"sess-fe50ebf933e0","input_length":714,"output_length":91,"hash_ids":[2544142,2544143],"delay":448.6} +{"session_id":"sess-fe50ebf933e0","input_length":534,"output_length":304,"hash_ids":[2544144,2544145],"delay":145.9} +{"session_id":"sess-fe50ebf933e0","input_length":1920,"output_length":344,"hash_ids":[2544146,2544147,2544148,2544149],"delay":1181.0} +{"session_id":"sess-fe50ebf933e0","input_length":2488,"output_length":547,"hash_ids":[2544150,2544151,2544152,2544153,2544154],"delay":1446.6} +{"session_id":"sess-fe50ebf933e0","input_length":2761,"output_length":822,"hash_ids":[2544155,2544156,2544157,2544158,2544159,2544160],"delay":842.0} +{"session_id":"sess-fe50ebf933e0","input_length":1877,"output_length":62,"hash_ids":[2544161,2544162,2544163,2544164],"delay":228.4} +{"session_id":"sess-fe50ebf933e0","input_length":486,"output_length":493,"hash_ids":[2544165],"delay":21800.1} +{"session_id":"sess-fe50ebf933e0","input_length":876,"output_length":98,"hash_ids":[2544166,2544167],"delay":708.2} +{"session_id":"sess-fe50ebf933e0","input_length":763,"output_length":1037,"hash_ids":[2544168,2544169],"delay":399.2} +{"session_id":"sess-fe50ebf933e0","input_length":1008,"output_length":97,"hash_ids":[2544170,2544171],"delay":1835.7} +{"session_id":"sess-57427a14781d","input_length":31302,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2552032,2552033,2552034,2552035,2552036,2552037,2552038,2552039,2552040,2552041],"timestamp":0.0,"group_id":2} +{"session_id":"sess-57427a14781d","input_length":270,"output_length":254,"hash_ids":[2552042],"delay":1597.3} +{"session_id":"sess-453d8a7ee34a","input_length":29030,"output_length":541,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2556032,2556033,2556034,2556035,2556036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-9061cc51a4b4","input_length":29646,"output_length":85,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2560032,2560033,2560034,2560035,2560036,2560037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9061cc51a4b4","input_length":280,"output_length":52,"hash_ids":[2560038],"delay":981.8} +{"session_id":"sess-9061cc51a4b4","input_length":504,"output_length":256,"hash_ids":[2560039],"delay":13876.5} +{"session_id":"sess-9061cc51a4b4","input_length":2067,"output_length":335,"hash_ids":[2560040,2560041,2560042,2560043,2560044],"delay":2310.0} +{"session_id":"sess-9061cc51a4b4","input_length":482,"output_length":1476,"hash_ids":[2560045],"delay":8200.7} +{"session_id":"sess-9061cc51a4b4","input_length":1984,"output_length":82,"hash_ids":[2560046,2560047,2560048,2560049],"delay":1570.6} +{"session_id":"sess-9061cc51a4b4","input_length":1883,"output_length":388,"hash_ids":[2560050,2560051,2560052,2560053],"delay":749.4} +{"session_id":"sess-9061cc51a4b4","input_length":274,"output_length":77,"hash_ids":[2560054],"delay":17273.2} +{"session_id":"sess-9061cc51a4b4","input_length":281,"output_length":47,"hash_ids":[2560055],"delay":1699.2} +{"session_id":"sess-9061cc51a4b4","input_length":152,"output_length":189,"hash_ids":[2560056],"delay":426.9} +{"session_id":"sess-9061cc51a4b4","input_length":386,"output_length":606,"hash_ids":[2560057],"delay":539.2} +{"session_id":"sess-9061cc51a4b4","input_length":1148,"output_length":174,"hash_ids":[2560058,2560059,2560060],"delay":47729.6} +{"session_id":"sess-9061cc51a4b4","input_length":2960,"output_length":40,"hash_ids":[2560061,2560062,2560063,2560064,2560065,2560066],"delay":1178.8} +{"session_id":"sess-9061cc51a4b4","input_length":983,"output_length":124,"hash_ids":[2560067,2560068],"delay":398.2} +{"session_id":"sess-9061cc51a4b4","input_length":812,"output_length":87,"hash_ids":[2560069,2560070],"delay":14761.2} +{"session_id":"sess-9061cc51a4b4","input_length":2673,"output_length":122,"hash_ids":[2560071,2560072,2560073,2560074,2560075,2560076],"delay":570.3} +{"session_id":"sess-9061cc51a4b4","input_length":1149,"output_length":63,"hash_ids":[2560077,2560078,2560079],"delay":465.2} +{"session_id":"sess-b7a13127e942","input_length":26394,"output_length":776,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b7a13127e942","input_length":823,"output_length":603,"hash_ids":[2560080,2560081],"delay":1444.4} +{"session_id":"sess-b7a13127e942","input_length":474,"output_length":723,"hash_ids":[2560082],"delay":2487.0} +{"session_id":"sess-b7a13127e942","input_length":443,"output_length":259,"hash_ids":[2560083],"delay":373.3} +{"session_id":"sess-b7a13127e942","input_length":201,"output_length":85,"hash_ids":[2560084],"delay":4763.9} +{"session_id":"sess-b7a13127e942","input_length":559,"output_length":193,"hash_ids":[2560085,2560086],"delay":11013.0} +{"session_id":"sess-b7a13127e942","input_length":491,"output_length":216,"hash_ids":[2560087],"delay":598.3} +{"session_id":"sess-b7a13127e942","input_length":490,"output_length":126,"hash_ids":[2560088],"delay":780.8} +{"session_id":"sess-b7a13127e942","input_length":1234,"output_length":75,"hash_ids":[2560089,2560090,2560091],"delay":8972.5} +{"session_id":"sess-b7a13127e942","input_length":2420,"output_length":30,"hash_ids":[2560092,2560093,2560094,2560095,2560096],"delay":1928.6} +{"session_id":"sess-b7a13127e942","input_length":618,"output_length":132,"hash_ids":[2560097,2560098],"delay":24327.4} +{"session_id":"sess-b7a13127e942","input_length":619,"output_length":228,"hash_ids":[2560099,2560100],"delay":1232.7} +{"session_id":"sess-b7a13127e942","input_length":965,"output_length":378,"hash_ids":[2560101,2560102],"delay":1063.1} +{"session_id":"sess-b7a13127e942","input_length":1732,"output_length":54,"hash_ids":[2560103,2560104,2560105,2560106],"delay":1046.8} +{"session_id":"sess-b7a13127e942","input_length":419,"output_length":95,"hash_ids":[2560107],"delay":3368.2} +{"session_id":"sess-b7a13127e942","input_length":835,"output_length":151,"hash_ids":[2560108,2560109],"delay":2965.0} +{"session_id":"sess-b7a13127e942","input_length":678,"output_length":175,"hash_ids":[2560110,2560111],"delay":35515.7} +{"session_id":"sess-b7a13127e942","input_length":619,"output_length":710,"hash_ids":[2560112,2560113],"delay":2572.2} +{"session_id":"sess-b7a13127e942","input_length":408,"output_length":169,"hash_ids":[2560114],"delay":983.1} +{"session_id":"sess-b7a13127e942","input_length":2052,"output_length":127,"hash_ids":[2560115,2560116,2560117,2560118,2560119],"delay":3434.8} +{"session_id":"sess-b7a13127e942","input_length":1443,"output_length":74,"hash_ids":[2560120,2560121,2560122],"delay":5931.1} +{"session_id":"sess-b7a13127e942","input_length":593,"output_length":169,"hash_ids":[2560123,2560124],"delay":841.7} +{"session_id":"sess-b7a13127e942","input_length":474,"output_length":82,"hash_ids":[2560125],"delay":487.3} +{"session_id":"sess-b7a13127e942","input_length":1321,"output_length":563,"hash_ids":[2560126,2560127,2560128],"delay":228.9} +{"session_id":"sess-b7a13127e942","input_length":2419,"output_length":331,"hash_ids":[2560129,2560130,2560131,2560132,2560133],"delay":521.5} +{"session_id":"sess-b7a13127e942","input_length":1347,"output_length":86,"hash_ids":[2560134,2560135,2560136],"delay":633.7} +{"session_id":"sess-b7a13127e942","input_length":828,"output_length":270,"hash_ids":[2560137,2560138],"delay":3023.2} +{"session_id":"sess-b7a13127e942","input_length":1809,"output_length":192,"hash_ids":[2560139,2560140,2560141,2560142],"delay":208.7} +{"session_id":"sess-b7a13127e942","input_length":668,"output_length":341,"hash_ids":[2560143,2560144],"delay":10248.8} +{"session_id":"sess-b7a13127e942","input_length":625,"output_length":92,"hash_ids":[2560145,2560146],"delay":881.2} +{"session_id":"sess-b7a13127e942","input_length":989,"output_length":312,"hash_ids":[2560147,2560148],"delay":235.3} +{"session_id":"sess-b7a13127e942","input_length":1359,"output_length":317,"hash_ids":[2560149,2560150,2560151],"delay":232.8} +{"session_id":"sess-b7a13127e942","input_length":1029,"output_length":146,"hash_ids":[2560152,2560153,2560154],"delay":9328.6} +{"session_id":"sess-fb7d98e59d2c","input_length":27168,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2568032,2568033],"timestamp":0.0,"group_id":12} +{"session_id":"sess-fb7d98e59d2c","input_length":958,"output_length":69,"hash_ids":[2568034,2568035],"delay":776.9} +{"session_id":"sess-fb7d98e59d2c","input_length":778,"output_length":130,"hash_ids":[2568036,2568037],"delay":1045.4} +{"session_id":"sess-fb7d98e59d2c","input_length":374,"output_length":219,"hash_ids":[2568038],"delay":2338.9} +{"session_id":"sess-fb7d98e59d2c","input_length":1156,"output_length":222,"hash_ids":[2568039,2568040,2568041],"delay":745.5} +{"session_id":"sess-fb7d98e59d2c","input_length":512,"output_length":186,"hash_ids":[2568042],"delay":1782.7} +{"session_id":"sess-fb7d98e59d2c","input_length":1097,"output_length":113,"hash_ids":[2568043,2568044,2568045],"delay":638.3} +{"session_id":"sess-fb7d98e59d2c","input_length":684,"output_length":148,"hash_ids":[2568046,2568047],"delay":37327.8} +{"session_id":"sess-fb7d98e59d2c","input_length":747,"output_length":1061,"hash_ids":[2568048,2568049],"delay":222.8} +{"session_id":"sess-fb7d98e59d2c","input_length":2350,"output_length":299,"hash_ids":[2568050,2568051,2568052,2568053,2568054],"delay":3992.9} +{"session_id":"sess-fb7d98e59d2c","input_length":451,"output_length":80,"hash_ids":[2568055],"delay":712.2} +{"session_id":"sess-fb7d98e59d2c","input_length":294,"output_length":46,"hash_ids":[2568056],"delay":7147.9} +{"session_id":"sess-fb7d98e59d2c","input_length":2578,"output_length":334,"hash_ids":[2568057,2568058,2568059,2568060,2568061,2568062],"delay":466.9} +{"session_id":"sess-fb7d98e59d2c","input_length":2943,"output_length":99,"hash_ids":[2568063,2568064,2568065,2568066,2568067,2568068],"delay":10051.3} +{"session_id":"sess-1d970e87f523","input_length":27472,"output_length":106,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2572032,2572033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1d970e87f523","input_length":614,"output_length":330,"hash_ids":[2572034,2572035],"delay":734.0} +{"session_id":"sess-1d970e87f523","input_length":358,"output_length":93,"hash_ids":[2572036],"delay":150.5} +{"session_id":"sess-1d970e87f523","input_length":245,"output_length":78,"hash_ids":[2572037],"delay":2037.2} +{"session_id":"sess-1d970e87f523","input_length":1194,"output_length":194,"hash_ids":[2572038,2572039,2572040],"delay":594.4} +{"session_id":"sess-1d970e87f523","input_length":1165,"output_length":461,"hash_ids":[2572041,2572042,2572043],"delay":35281.7} +{"session_id":"sess-1d970e87f523","input_length":1032,"output_length":397,"hash_ids":[2572044,2572045,2572046],"delay":16403.8} +{"session_id":"sess-1d970e87f523","input_length":2337,"output_length":213,"hash_ids":[2572047,2572048,2572049,2572050,2572051],"delay":7569.7} +{"session_id":"sess-1d970e87f523","input_length":585,"output_length":182,"hash_ids":[2572052,2572053],"delay":2986.1} +{"session_id":"sess-1d970e87f523","input_length":742,"output_length":37,"hash_ids":[2572054,2572055],"delay":1413.9} +{"session_id":"sess-1d970e87f523","input_length":1365,"output_length":66,"hash_ids":[2572056,2572057,2572058],"delay":283.9} +{"session_id":"sess-1d970e87f523","input_length":1851,"output_length":401,"hash_ids":[2572059,2572060,2572061,2572062],"delay":1441.6} +{"session_id":"sess-1d970e87f523","input_length":299,"output_length":345,"hash_ids":[2572063],"delay":268.0} +{"session_id":"sess-1d970e87f523","input_length":263,"output_length":310,"hash_ids":[2572064],"delay":1103.7} +{"session_id":"sess-1d970e87f523","input_length":1385,"output_length":81,"hash_ids":[2572065,2572066,2572067],"delay":1905.3} +{"session_id":"sess-e1e078f00c4d","input_length":27392,"output_length":165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,2576032,2576033],"timestamp":0.0,"group_id":26} +{"session_id":"sess-e1e078f00c4d","input_length":321,"output_length":60,"hash_ids":[2576034],"delay":38315.2} +{"session_id":"sess-e1e078f00c4d","input_length":1609,"output_length":1032,"hash_ids":[2576035,2576036,2576037,2576038],"delay":8143.9} +{"session_id":"sess-e1e078f00c4d","input_length":162,"output_length":159,"hash_ids":[2576039],"delay":6281.1} +{"session_id":"sess-e1e078f00c4d","input_length":1961,"output_length":67,"hash_ids":[2576040,2576041,2576042,2576043],"delay":7786.8} +{"session_id":"sess-e1e078f00c4d","input_length":1651,"output_length":527,"hash_ids":[2576044,2576045,2576046,2576047],"delay":891.0} +{"session_id":"sess-e1e078f00c4d","input_length":394,"output_length":687,"hash_ids":[2576048],"delay":1172.4} +{"session_id":"sess-e1e078f00c4d","input_length":467,"output_length":194,"hash_ids":[2576049],"delay":838.4} +{"session_id":"sess-e1e078f00c4d","input_length":286,"output_length":132,"hash_ids":[2576050],"delay":220.4} +{"session_id":"sess-e1e078f00c4d","input_length":669,"output_length":103,"hash_ids":[2576051,2576052],"delay":793.0} +{"session_id":"sess-e1e078f00c4d","input_length":175,"output_length":31,"hash_ids":[2576053],"delay":4188.8} +{"session_id":"sess-e1e078f00c4d","input_length":1032,"output_length":96,"hash_ids":[2576054,2576055,2576056],"delay":6131.9} +{"session_id":"sess-e1e078f00c4d","input_length":1771,"output_length":300,"hash_ids":[2576057,2576058,2576059,2576060],"delay":825.1} +{"session_id":"sess-e1e078f00c4d","input_length":133,"output_length":106,"hash_ids":[2576061],"delay":1505.3} +{"session_id":"sess-e1e078f00c4d","input_length":781,"output_length":235,"hash_ids":[2576062,2576063],"delay":1142.5} +{"session_id":"sess-e1e078f00c4d","input_length":1003,"output_length":99,"hash_ids":[2576064,2576065],"delay":2112.4} +{"session_id":"sess-e1e078f00c4d","input_length":1516,"output_length":87,"hash_ids":[2576066,2576067,2576068],"delay":723.3} +{"session_id":"sess-e1e078f00c4d","input_length":628,"output_length":101,"hash_ids":[2576069,2576070],"delay":2618.1} +{"session_id":"sess-e1e078f00c4d","input_length":1484,"output_length":480,"hash_ids":[2576071,2576072,2576073],"delay":15484.5} +{"session_id":"sess-d63a86cf41c1","input_length":30863,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2580032,2580033,2580034,2580035,2580036,2580037,2580038,2580039,2580040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d63a86cf41c1","input_length":758,"output_length":170,"hash_ids":[2580041,2580042],"delay":1338.5} +{"session_id":"sess-d63a86cf41c1","input_length":1695,"output_length":103,"hash_ids":[2580043,2580044,2580045,2580046],"delay":1302.8} +{"session_id":"sess-d63a86cf41c1","input_length":801,"output_length":228,"hash_ids":[2580047,2580048],"delay":534.3} +{"session_id":"sess-d63a86cf41c1","input_length":1088,"output_length":583,"hash_ids":[2580049,2580050,2580051],"delay":147.7} +{"session_id":"sess-d63a86cf41c1","input_length":575,"output_length":209,"hash_ids":[2580052,2580053],"delay":963.6} +{"session_id":"sess-d63a86cf41c1","input_length":695,"output_length":87,"hash_ids":[2580054,2580055],"delay":4276.5} +{"session_id":"sess-d63a86cf41c1","input_length":1701,"output_length":161,"hash_ids":[2580056,2580057,2580058,2580059],"delay":12558.3} +{"session_id":"sess-d63a86cf41c1","input_length":282,"output_length":556,"hash_ids":[2580060],"delay":2090.1} +{"session_id":"sess-d63a86cf41c1","input_length":171,"output_length":166,"hash_ids":[2580061],"delay":582.6} +{"session_id":"sess-d63a86cf41c1","input_length":787,"output_length":196,"hash_ids":[2580062,2580063],"delay":1805.2} +{"session_id":"sess-d63a86cf41c1","input_length":1467,"output_length":968,"hash_ids":[2580064,2580065,2580066],"delay":3608.2} +{"session_id":"sess-d63a86cf41c1","input_length":1151,"output_length":328,"hash_ids":[2580067,2580068,2580069],"delay":3522.6} +{"session_id":"sess-d63a86cf41c1","input_length":806,"output_length":162,"hash_ids":[2580070,2580071],"delay":9310.9} +{"session_id":"sess-d63a86cf41c1","input_length":463,"output_length":127,"hash_ids":[2580072],"delay":628.8} +{"session_id":"sess-d63a86cf41c1","input_length":256,"output_length":1411,"hash_ids":[2580073],"delay":22570.6} +{"session_id":"sess-d63a86cf41c1","input_length":195,"output_length":902,"hash_ids":[2580074],"delay":304.6} +{"session_id":"sess-d63a86cf41c1","input_length":406,"output_length":1367,"hash_ids":[2580075],"delay":347.4} +{"session_id":"sess-d63a86cf41c1","input_length":409,"output_length":733,"hash_ids":[2580076],"delay":9129.9} +{"session_id":"sess-d63a86cf41c1","input_length":208,"output_length":318,"hash_ids":[2580077],"delay":1599.1} +{"session_id":"sess-d63a86cf41c1","input_length":1244,"output_length":117,"hash_ids":[2580078,2580079,2580080],"delay":13097.6} +{"session_id":"sess-d63a86cf41c1","input_length":1621,"output_length":634,"hash_ids":[2580081,2580082,2580083,2580084],"delay":1169.2} +{"session_id":"sess-d63a86cf41c1","input_length":318,"output_length":110,"hash_ids":[2580085],"delay":3088.2} +{"session_id":"sess-d63a86cf41c1","input_length":1238,"output_length":229,"hash_ids":[2580086,2580087,2580088],"delay":9576.3} +{"session_id":"sess-d63a86cf41c1","input_length":1055,"output_length":373,"hash_ids":[2580089,2580090,2580091],"delay":8759.9} +{"session_id":"sess-d63a86cf41c1","input_length":620,"output_length":173,"hash_ids":[2580092,2580093],"delay":213.9} +{"session_id":"sess-d63a86cf41c1","input_length":174,"output_length":156,"hash_ids":[2580094],"delay":217.3} +{"session_id":"sess-d63a86cf41c1","input_length":1157,"output_length":436,"hash_ids":[2580095,2580096,2580097],"delay":344.9} +{"session_id":"sess-d63a86cf41c1","input_length":772,"output_length":54,"hash_ids":[2580098,2580099],"delay":376.5} +{"session_id":"sess-d63a86cf41c1","input_length":291,"output_length":158,"hash_ids":[2580100],"delay":7422.9} +{"session_id":"sess-3e1075f6819f","input_length":26710,"output_length":274,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2584032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3e1075f6819f","input_length":1246,"output_length":600,"hash_ids":[2584033,2584034,2584035],"delay":807.5} +{"session_id":"sess-3e1075f6819f","input_length":546,"output_length":174,"hash_ids":[2584036,2584037],"delay":2220.5} +{"session_id":"sess-3e1075f6819f","input_length":691,"output_length":77,"hash_ids":[2584038,2584039],"delay":3694.3} +{"session_id":"sess-3e1075f6819f","input_length":1221,"output_length":60,"hash_ids":[2584040,2584041,2584042],"delay":872.3} +{"session_id":"sess-3e1075f6819f","input_length":1126,"output_length":100,"hash_ids":[2584043,2584044,2584045],"delay":17730.2} +{"session_id":"sess-3e1075f6819f","input_length":303,"output_length":113,"hash_ids":[2584046],"delay":26042.5} +{"session_id":"sess-3e1075f6819f","input_length":699,"output_length":240,"hash_ids":[2584047,2584048],"delay":454.8} +{"session_id":"sess-3e1075f6819f","input_length":299,"output_length":250,"hash_ids":[2584049],"delay":1926.2} +{"session_id":"sess-3e1075f6819f","input_length":255,"output_length":333,"hash_ids":[2584050],"delay":32785.2} +{"session_id":"sess-3e1075f6819f","input_length":451,"output_length":328,"hash_ids":[2584051],"delay":2412.0} +{"session_id":"sess-3e1075f6819f","input_length":494,"output_length":283,"hash_ids":[2584052],"delay":315.7} +{"session_id":"sess-3e1075f6819f","input_length":837,"output_length":92,"hash_ids":[2584053,2584054],"delay":780.1} +{"session_id":"sess-3e1075f6819f","input_length":332,"output_length":182,"hash_ids":[2584055],"delay":804.3} +{"session_id":"sess-3e1075f6819f","input_length":1307,"output_length":158,"hash_ids":[2584056,2584057,2584058],"delay":273.5} +{"session_id":"sess-3e1075f6819f","input_length":181,"output_length":226,"hash_ids":[2584059],"delay":725.9} +{"session_id":"sess-3e1075f6819f","input_length":482,"output_length":84,"hash_ids":[2584060],"delay":728.7} +{"session_id":"sess-3e1075f6819f","input_length":1223,"output_length":197,"hash_ids":[2584061,2584062,2584063],"delay":49280.1} +{"session_id":"sess-3e1075f6819f","input_length":2577,"output_length":319,"hash_ids":[2584064,2584065,2584066,2584067,2584068,2584069],"delay":4743.4} +{"session_id":"sess-3e1075f6819f","input_length":680,"output_length":39,"hash_ids":[2584070,2584071],"delay":816.6} +{"session_id":"sess-3e1075f6819f","input_length":569,"output_length":522,"hash_ids":[2584072,2584073],"delay":1621.9} +{"session_id":"sess-3e1075f6819f","input_length":1349,"output_length":33,"hash_ids":[2584074,2584075,2584076],"delay":727.9} +{"session_id":"sess-9b12edcf0ea6","input_length":28393,"output_length":138,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,2588032,2588033,2588034,2588035],"timestamp":0.0,"group_id":36} +{"session_id":"sess-9b12edcf0ea6","input_length":2507,"output_length":387,"hash_ids":[2588036,2588037,2588038,2588039,2588040],"delay":3664.7} +{"session_id":"sess-9b12edcf0ea6","input_length":647,"output_length":152,"hash_ids":[2588041,2588042],"delay":3635.6} +{"session_id":"sess-9b12edcf0ea6","input_length":1043,"output_length":218,"hash_ids":[2588043,2588044,2588045],"delay":15080.8} +{"session_id":"sess-9b12edcf0ea6","input_length":404,"output_length":221,"hash_ids":[2588046],"delay":1052.0} +{"session_id":"sess-9b12edcf0ea6","input_length":728,"output_length":290,"hash_ids":[2588047,2588048],"delay":1229.7} +{"session_id":"sess-9b12edcf0ea6","input_length":520,"output_length":450,"hash_ids":[2588049,2588050],"delay":10288.3} +{"session_id":"sess-9b12edcf0ea6","input_length":1511,"output_length":699,"hash_ids":[2588051,2588052,2588053],"delay":1761.2} +{"session_id":"sess-9b12edcf0ea6","input_length":1193,"output_length":190,"hash_ids":[2588054,2588055,2588056],"delay":1810.9} +{"session_id":"sess-9b12edcf0ea6","input_length":1125,"output_length":98,"hash_ids":[2588057,2588058,2588059],"delay":232.2} +{"session_id":"sess-9b12edcf0ea6","input_length":316,"output_length":402,"hash_ids":[2588060],"delay":451.0} +{"session_id":"sess-9b12edcf0ea6","input_length":290,"output_length":164,"hash_ids":[2588061],"delay":581.2} +{"session_id":"sess-19ab5f6e9cb3","input_length":30710,"output_length":711,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2592032,2592033,2592034,2592035,2592036,2592037,2592038,2592039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-19ab5f6e9cb3","input_length":2015,"output_length":989,"hash_ids":[2592040,2592041,2592042,2592043],"delay":923.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":831,"output_length":219,"hash_ids":[2592044,2592045],"delay":673.0} +{"session_id":"sess-19ab5f6e9cb3","input_length":84,"output_length":248,"hash_ids":[2592046],"delay":5630.9} +{"session_id":"sess-19ab5f6e9cb3","input_length":1476,"output_length":231,"hash_ids":[2592047,2592048,2592049],"delay":5236.0} +{"session_id":"sess-19ab5f6e9cb3","input_length":336,"output_length":1334,"hash_ids":[2592050],"delay":702.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":171,"output_length":123,"hash_ids":[2592051],"delay":553.9} +{"session_id":"sess-19ab5f6e9cb3","input_length":1222,"output_length":425,"hash_ids":[2592052,2592053,2592054],"delay":372.4} +{"session_id":"sess-19ab5f6e9cb3","input_length":450,"output_length":44,"hash_ids":[2592055],"delay":1179.1} +{"session_id":"sess-19ab5f6e9cb3","input_length":631,"output_length":1073,"hash_ids":[2592056,2592057],"delay":679.8} +{"session_id":"sess-19ab5f6e9cb3","input_length":533,"output_length":245,"hash_ids":[2592058,2592059],"delay":7842.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":398,"output_length":386,"hash_ids":[2592060],"delay":214.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":1072,"output_length":251,"hash_ids":[2592061,2592062,2592063],"delay":383.5} +{"session_id":"sess-19ab5f6e9cb3","input_length":1082,"output_length":368,"hash_ids":[2592064,2592065,2592066],"delay":1832.2} +{"session_id":"sess-19ab5f6e9cb3","input_length":1164,"output_length":834,"hash_ids":[2592067,2592068,2592069],"delay":3165.5} +{"session_id":"sess-19ab5f6e9cb3","input_length":1600,"output_length":405,"hash_ids":[2592070,2592071,2592072,2592073],"delay":1551.1} +{"session_id":"sess-19ab5f6e9cb3","input_length":501,"output_length":120,"hash_ids":[2592074],"delay":301.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":279,"output_length":184,"hash_ids":[2592075],"delay":11958.2} +{"session_id":"sess-19ab5f6e9cb3","input_length":2130,"output_length":174,"hash_ids":[2592076,2592077,2592078,2592079,2592080],"delay":607.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":212,"output_length":96,"hash_ids":[2592081],"delay":145.5} +{"session_id":"sess-19ab5f6e9cb3","input_length":1185,"output_length":74,"hash_ids":[2592082,2592083,2592084],"delay":2359.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":984,"output_length":30,"hash_ids":[2592085,2592086],"delay":1253.3} +{"session_id":"sess-19ab5f6e9cb3","input_length":478,"output_length":96,"hash_ids":[2592087],"delay":380.5} +{"session_id":"sess-19ab5f6e9cb3","input_length":1106,"output_length":122,"hash_ids":[2592088,2592089,2592090],"delay":855.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":1137,"output_length":30,"hash_ids":[2592091,2592092,2592093],"delay":366.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":105,"output_length":77,"hash_ids":[2592094],"delay":501.7} +{"session_id":"sess-19ab5f6e9cb3","input_length":1203,"output_length":188,"hash_ids":[2592095,2592096,2592097],"delay":258.3} +{"session_id":"sess-19ab5f6e9cb3","input_length":1220,"output_length":762,"hash_ids":[2592098,2592099,2592100],"delay":5608.6} +{"session_id":"sess-19ab5f6e9cb3","input_length":554,"output_length":152,"hash_ids":[2592101,2592102],"delay":139.2} +{"session_id":"sess-16de314ead84","input_length":29470,"output_length":158,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,2596032,2596033,2596034,2596035,2596036,2596037],"timestamp":0.0,"group_id":22} +{"session_id":"sess-16de314ead84","input_length":150,"output_length":881,"hash_ids":[2596038],"delay":1674.7} +{"session_id":"sess-16de314ead84","input_length":2432,"output_length":1201,"hash_ids":[2596039,2596040,2596041,2596042,2596043],"delay":2135.7} +{"session_id":"sess-16de314ead84","input_length":301,"output_length":203,"hash_ids":[2596044],"delay":1947.8} +{"session_id":"sess-16de314ead84","input_length":987,"output_length":219,"hash_ids":[2596045,2596046],"delay":15570.3} +{"session_id":"sess-16de314ead84","input_length":751,"output_length":622,"hash_ids":[2596047,2596048],"delay":17251.1} +{"session_id":"sess-16de314ead84","input_length":1542,"output_length":192,"hash_ids":[2596049,2596050,2596051,2596052],"delay":575.4} +{"session_id":"sess-16de314ead84","input_length":984,"output_length":154,"hash_ids":[2596053,2596054],"delay":931.0} +{"session_id":"sess-16de314ead84","input_length":1597,"output_length":76,"hash_ids":[2596055,2596056,2596057,2596058],"delay":1083.7} +{"session_id":"sess-16de314ead84","input_length":609,"output_length":1407,"hash_ids":[2596059,2596060],"delay":1598.6} +{"session_id":"sess-16de314ead84","input_length":110,"output_length":121,"hash_ids":[2596061],"delay":952.9} +{"session_id":"sess-16de314ead84","input_length":247,"output_length":269,"hash_ids":[2596062],"delay":911.4} +{"session_id":"sess-16de314ead84","input_length":777,"output_length":30,"hash_ids":[2596063,2596064],"delay":1226.5} +{"session_id":"sess-16de314ead84","input_length":205,"output_length":129,"hash_ids":[2596065],"delay":3241.9} +{"session_id":"sess-16de314ead84","input_length":1505,"output_length":33,"hash_ids":[2596066,2596067,2596068],"delay":1359.9} +{"session_id":"sess-16de314ead84","input_length":420,"output_length":202,"hash_ids":[2596069],"delay":2446.1} +{"session_id":"sess-16de314ead84","input_length":987,"output_length":394,"hash_ids":[2596070,2596071],"delay":304.8} +{"session_id":"sess-16de314ead84","input_length":807,"output_length":260,"hash_ids":[2596072,2596073],"delay":455.6} +{"session_id":"sess-16de314ead84","input_length":1438,"output_length":111,"hash_ids":[2596074,2596075,2596076],"delay":1842.5} +{"session_id":"sess-16de314ead84","input_length":1983,"output_length":442,"hash_ids":[2596077,2596078,2596079,2596080],"delay":21255.1} +{"session_id":"sess-16de314ead84","input_length":2970,"output_length":121,"hash_ids":[2596081,2596082,2596083,2596084,2596085,2596086],"delay":448.4} +{"session_id":"sess-16de314ead84","input_length":1574,"output_length":1098,"hash_ids":[2596087,2596088,2596089,2596090],"delay":270.2} +{"session_id":"sess-16de314ead84","input_length":1222,"output_length":86,"hash_ids":[2596091,2596092,2596093],"delay":2404.6} +{"session_id":"sess-16de314ead84","input_length":122,"output_length":113,"hash_ids":[2596094],"delay":474.0} +{"session_id":"sess-16de314ead84","input_length":1846,"output_length":72,"hash_ids":[2596095,2596096,2596097,2596098],"delay":644.5} +{"session_id":"sess-16de314ead84","input_length":1133,"output_length":158,"hash_ids":[2596099,2596100,2596101],"delay":392.4} +{"session_id":"sess-16de314ead84","input_length":322,"output_length":41,"hash_ids":[2596102],"delay":201.7} +{"session_id":"sess-afafa7491f06","input_length":27449,"output_length":188,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,2600032,2600033],"timestamp":0.0,"group_id":15} +{"session_id":"sess-afafa7491f06","input_length":2399,"output_length":706,"hash_ids":[2600034,2600035,2600036,2600037,2600038],"delay":5142.4} +{"session_id":"sess-afafa7491f06","input_length":1689,"output_length":205,"hash_ids":[2600039,2600040,2600041,2600042],"delay":46230.3} +{"session_id":"sess-afafa7491f06","input_length":118,"output_length":228,"hash_ids":[2600043],"delay":1793.5} +{"session_id":"sess-afafa7491f06","input_length":2093,"output_length":124,"hash_ids":[2600044,2600045,2600046,2600047,2600048],"delay":2237.8} +{"session_id":"sess-afafa7491f06","input_length":2916,"output_length":305,"hash_ids":[2600049,2600050,2600051,2600052,2600053,2600054],"delay":1270.7} +{"session_id":"sess-afafa7491f06","input_length":2080,"output_length":113,"hash_ids":[2600055,2600056,2600057,2600058,2600059],"delay":1553.0} +{"session_id":"sess-afafa7491f06","input_length":2095,"output_length":132,"hash_ids":[2600060,2600061,2600062,2600063,2600064],"delay":582.0} +{"session_id":"sess-afafa7491f06","input_length":739,"output_length":317,"hash_ids":[2600065,2600066],"delay":1688.4} +{"session_id":"sess-afafa7491f06","input_length":148,"output_length":180,"hash_ids":[2600067],"delay":12174.9} +{"session_id":"sess-afafa7491f06","input_length":1531,"output_length":178,"hash_ids":[2600068,2600069,2600070],"delay":912.5} +{"session_id":"sess-afafa7491f06","input_length":615,"output_length":517,"hash_ids":[2600071,2600072],"delay":222.9} +{"session_id":"sess-afafa7491f06","input_length":846,"output_length":119,"hash_ids":[2600073,2600074],"delay":237.0} +{"session_id":"sess-afafa7491f06","input_length":2458,"output_length":1136,"hash_ids":[2600075,2600076,2600077,2600078,2600079],"delay":14884.6} +{"session_id":"sess-afafa7491f06","input_length":262,"output_length":81,"hash_ids":[2600080],"delay":385.7} +{"session_id":"sess-afafa7491f06","input_length":910,"output_length":442,"hash_ids":[2600081,2600082],"delay":283.8} +{"session_id":"sess-afafa7491f06","input_length":409,"output_length":454,"hash_ids":[2600083],"delay":4146.3} +{"session_id":"sess-afafa7491f06","input_length":937,"output_length":294,"hash_ids":[2600084,2600085],"delay":208.1} +{"session_id":"sess-afafa7491f06","input_length":943,"output_length":450,"hash_ids":[2600086,2600087],"delay":234.0} +{"session_id":"sess-afafa7491f06","input_length":1575,"output_length":46,"hash_ids":[2600088,2600089,2600090,2600091],"delay":373.6} +{"session_id":"sess-afafa7491f06","input_length":307,"output_length":151,"hash_ids":[2600092],"delay":263.6} +{"session_id":"sess-afafa7491f06","input_length":2331,"output_length":125,"hash_ids":[2600093,2600094,2600095,2600096,2600097],"delay":2757.4} +{"session_id":"sess-afafa7491f06","input_length":466,"output_length":116,"hash_ids":[2600098],"delay":309.8} +{"session_id":"sess-afafa7491f06","input_length":1244,"output_length":351,"hash_ids":[2600099,2600100,2600101],"delay":138.0} +{"session_id":"sess-afafa7491f06","input_length":79,"output_length":555,"hash_ids":[2600102],"delay":432.7} +{"session_id":"sess-afafa7491f06","input_length":1313,"output_length":229,"hash_ids":[2600103,2600104,2600105],"delay":192.4} +{"session_id":"sess-e8a920a85f86","input_length":29430,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2604032,2604033,2604034,2604035,2604036,2604037],"timestamp":0.0,"group_id":7} +{"session_id":"sess-e8a920a85f86","input_length":1014,"output_length":91,"hash_ids":[2604038,2604039],"delay":6733.4} +{"session_id":"sess-e8a920a85f86","input_length":641,"output_length":93,"hash_ids":[2604040,2604041],"delay":1340.9} +{"session_id":"sess-e8a920a85f86","input_length":1570,"output_length":190,"hash_ids":[2604042,2604043,2604044,2604045],"delay":30947.9} +{"session_id":"sess-e8a920a85f86","input_length":798,"output_length":364,"hash_ids":[2604046,2604047],"delay":9662.2} +{"session_id":"sess-e8a920a85f86","input_length":1148,"output_length":253,"hash_ids":[2604048,2604049,2604050],"delay":69759.3} +{"session_id":"sess-e8a920a85f86","input_length":2787,"output_length":184,"hash_ids":[2604051,2604052,2604053,2604054,2604055,2604056],"delay":24025.3} +{"session_id":"sess-e8a920a85f86","input_length":743,"output_length":649,"hash_ids":[2604057,2604058],"delay":5474.7} +{"session_id":"sess-e8a920a85f86","input_length":354,"output_length":77,"hash_ids":[2604059],"delay":1720.0} +{"session_id":"sess-e8a920a85f86","input_length":152,"output_length":156,"hash_ids":[2604060],"delay":2060.8} +{"session_id":"sess-e8a920a85f86","input_length":535,"output_length":227,"hash_ids":[2604061,2604062],"delay":27417.8} +{"session_id":"sess-e8a920a85f86","input_length":330,"output_length":599,"hash_ids":[2604063],"delay":527.2} +{"session_id":"sess-e8a920a85f86","input_length":220,"output_length":103,"hash_ids":[2604064],"delay":4369.5} +{"session_id":"sess-e8a920a85f86","input_length":739,"output_length":169,"hash_ids":[2604065,2604066],"delay":654.9} +{"session_id":"sess-e8a920a85f86","input_length":1216,"output_length":124,"hash_ids":[2604067,2604068,2604069],"delay":2151.3} +{"session_id":"sess-e8a920a85f86","input_length":1668,"output_length":30,"hash_ids":[2604070,2604071,2604072,2604073],"delay":691.7} +{"session_id":"sess-e8a920a85f86","input_length":167,"output_length":730,"hash_ids":[2604074],"delay":599.2} +{"session_id":"sess-e8a920a85f86","input_length":586,"output_length":355,"hash_ids":[2604075,2604076],"delay":356.1} +{"session_id":"sess-e8a920a85f86","input_length":232,"output_length":554,"hash_ids":[2604077],"delay":679.1} +{"session_id":"sess-e8a920a85f86","input_length":543,"output_length":283,"hash_ids":[2604078,2604079],"delay":23453.9} +{"session_id":"sess-e8a920a85f86","input_length":705,"output_length":78,"hash_ids":[2604080,2604081],"delay":985.7} +{"session_id":"sess-e8a920a85f86","input_length":1037,"output_length":265,"hash_ids":[2604082,2604083,2604084],"delay":631.9} +{"session_id":"sess-e8a920a85f86","input_length":435,"output_length":185,"hash_ids":[2604085],"delay":4327.6} +{"session_id":"sess-e8a920a85f86","input_length":1613,"output_length":52,"hash_ids":[2604086,2604087,2604088,2604089],"delay":6560.0} +{"session_id":"sess-e8a920a85f86","input_length":675,"output_length":215,"hash_ids":[2604090,2604091],"delay":1936.0} +{"session_id":"sess-e8a920a85f86","input_length":2447,"output_length":30,"hash_ids":[2604092,2604093,2604094,2604095,2604096],"delay":353.1} +{"session_id":"sess-e8a920a85f86","input_length":235,"output_length":379,"hash_ids":[2604097],"delay":13656.7} +{"session_id":"sess-e8a920a85f86","input_length":2161,"output_length":880,"hash_ids":[2604098,2604099,2604100,2604101,2604102],"delay":1721.5} +{"session_id":"sess-e8a920a85f86","input_length":684,"output_length":111,"hash_ids":[2604103,2604104],"delay":628.6} +{"session_id":"sess-e8a920a85f86","input_length":397,"output_length":163,"hash_ids":[2604105],"delay":206.2} +{"session_id":"sess-e8a920a85f86","input_length":630,"output_length":157,"hash_ids":[2604106,2604107],"delay":798.6} +{"session_id":"sess-e8a920a85f86","input_length":260,"output_length":244,"hash_ids":[2604108],"delay":5110.2} +{"session_id":"sess-e8a920a85f86","input_length":1153,"output_length":88,"hash_ids":[2604109,2604110,2604111],"delay":15230.4} +{"session_id":"sess-cc6c031f1833","input_length":26125,"output_length":776,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-cc6c031f1833","input_length":1801,"output_length":694,"hash_ids":[2604112,2604113,2604114,2604115],"delay":956.5} +{"session_id":"sess-cc6c031f1833","input_length":2841,"output_length":121,"hash_ids":[2604116,2604117,2604118,2604119,2604120,2604121],"delay":449.0} +{"session_id":"sess-cc6c031f1833","input_length":996,"output_length":214,"hash_ids":[2604122,2604123],"delay":3987.7} +{"session_id":"sess-cc6c031f1833","input_length":2845,"output_length":295,"hash_ids":[2604124,2604125,2604126,2604127,2604128,2604129],"delay":2126.6} +{"session_id":"sess-cc6c031f1833","input_length":1967,"output_length":213,"hash_ids":[2604130,2604131,2604132,2604133],"delay":999.4} +{"session_id":"sess-cc6c031f1833","input_length":436,"output_length":177,"hash_ids":[2604134],"delay":841.3} +{"session_id":"sess-cc6c031f1833","input_length":1905,"output_length":150,"hash_ids":[2604135,2604136,2604137,2604138],"delay":1938.7} +{"session_id":"sess-cc6c031f1833","input_length":2547,"output_length":342,"hash_ids":[2604139,2604140,2604141,2604142,2604143],"delay":9963.0} +{"session_id":"sess-cc6c031f1833","input_length":120,"output_length":226,"hash_ids":[2604144],"delay":16897.9} +{"session_id":"sess-cc6c031f1833","input_length":277,"output_length":81,"hash_ids":[2604145],"delay":533.5} +{"session_id":"sess-219a7a194c8d","input_length":32338,"output_length":1073,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2612032,2612033,2612034,2612035,2612036,2612037,2612038,2612039,2612040,2612041,2612042,2612043],"timestamp":0.0,"group_id":1} +{"session_id":"sess-219a7a194c8d","input_length":674,"output_length":554,"hash_ids":[2612044,2612045],"delay":2642.0} +{"session_id":"sess-219a7a194c8d","input_length":1152,"output_length":208,"hash_ids":[2612046,2612047,2612048],"delay":746.4} +{"session_id":"sess-219a7a194c8d","input_length":515,"output_length":132,"hash_ids":[2612049,2612050],"delay":1451.2} +{"session_id":"sess-219a7a194c8d","input_length":1812,"output_length":93,"hash_ids":[2612051,2612052,2612053,2612054],"delay":385.3} +{"session_id":"sess-219a7a194c8d","input_length":1594,"output_length":610,"hash_ids":[2612055,2612056,2612057,2612058],"delay":8141.4} +{"session_id":"sess-219a7a194c8d","input_length":358,"output_length":146,"hash_ids":[2612059],"delay":59.3} +{"session_id":"sess-219a7a194c8d","input_length":752,"output_length":77,"hash_ids":[2612060,2612061],"delay":9986.2} +{"session_id":"sess-219a7a194c8d","input_length":1251,"output_length":45,"hash_ids":[2612062,2612063,2612064],"delay":22274.8} +{"session_id":"sess-219a7a194c8d","input_length":113,"output_length":255,"hash_ids":[2612065],"delay":204.6} +{"session_id":"sess-219a7a194c8d","input_length":1128,"output_length":194,"hash_ids":[2612066,2612067,2612068],"delay":143.6} +{"session_id":"sess-219a7a194c8d","input_length":912,"output_length":315,"hash_ids":[2612069,2612070],"delay":511.1} +{"session_id":"sess-219a7a194c8d","input_length":781,"output_length":228,"hash_ids":[2612071,2612072],"delay":2369.8} +{"session_id":"sess-219a7a194c8d","input_length":1125,"output_length":167,"hash_ids":[2612073,2612074,2612075],"delay":19168.5} +{"session_id":"sess-219a7a194c8d","input_length":297,"output_length":1142,"hash_ids":[2612076],"delay":19417.8} +{"session_id":"sess-219a7a194c8d","input_length":1237,"output_length":30,"hash_ids":[2612077,2612078,2612079],"delay":11350.6} +{"session_id":"sess-219a7a194c8d","input_length":1296,"output_length":480,"hash_ids":[2612080,2612081,2612082],"delay":662.8} +{"session_id":"sess-219a7a194c8d","input_length":2341,"output_length":229,"hash_ids":[2612083,2612084,2612085,2612086,2612087],"delay":15273.8} +{"session_id":"sess-219a7a194c8d","input_length":2203,"output_length":47,"hash_ids":[2612088,2612089,2612090,2612091,2612092],"delay":1629.4} +{"session_id":"sess-219a7a194c8d","input_length":555,"output_length":198,"hash_ids":[2612093,2612094],"delay":316.0} +{"session_id":"sess-219a7a194c8d","input_length":1028,"output_length":392,"hash_ids":[2612095,2612096,2612097],"delay":144.6} +{"session_id":"sess-219a7a194c8d","input_length":188,"output_length":140,"hash_ids":[2612098],"delay":1495.8} +{"session_id":"sess-219a7a194c8d","input_length":2604,"output_length":356,"hash_ids":[2612099,2612100,2612101,2612102,2612103,2612104],"delay":216.1} +{"session_id":"sess-219a7a194c8d","input_length":848,"output_length":396,"hash_ids":[2612105,2612106],"delay":5774.3} +{"session_id":"sess-a6422ccb5bcc","input_length":27510,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,2616032,2616033],"timestamp":0.0,"group_id":26} +{"session_id":"sess-a6422ccb5bcc","input_length":453,"output_length":127,"hash_ids":[2616034],"delay":33856.7} +{"session_id":"sess-a6422ccb5bcc","input_length":764,"output_length":118,"hash_ids":[2616035,2616036],"delay":1553.3} +{"session_id":"sess-a6422ccb5bcc","input_length":850,"output_length":387,"hash_ids":[2616037,2616038],"delay":9054.7} +{"session_id":"sess-a6422ccb5bcc","input_length":2274,"output_length":234,"hash_ids":[2616039,2616040,2616041,2616042,2616043],"delay":8223.8} +{"session_id":"sess-a6422ccb5bcc","input_length":2333,"output_length":495,"hash_ids":[2616044,2616045,2616046,2616047,2616048],"delay":9136.0} +{"session_id":"sess-a6422ccb5bcc","input_length":950,"output_length":32,"hash_ids":[2616049,2616050],"delay":257.5} +{"session_id":"sess-a6422ccb5bcc","input_length":1887,"output_length":183,"hash_ids":[2616051,2616052,2616053,2616054],"delay":88.9} +{"session_id":"sess-a6422ccb5bcc","input_length":2524,"output_length":112,"hash_ids":[2616055,2616056,2616057,2616058,2616059],"delay":5721.6} +{"session_id":"sess-a6422ccb5bcc","input_length":235,"output_length":300,"hash_ids":[2616060],"delay":1731.0} +{"session_id":"sess-a6422ccb5bcc","input_length":1418,"output_length":774,"hash_ids":[2616061,2616062,2616063],"delay":1150.3} +{"session_id":"sess-a6422ccb5bcc","input_length":2319,"output_length":231,"hash_ids":[2616064,2616065,2616066,2616067,2616068],"delay":7465.5} +{"session_id":"sess-a6422ccb5bcc","input_length":623,"output_length":520,"hash_ids":[2616069,2616070],"delay":3299.4} +{"session_id":"sess-a6422ccb5bcc","input_length":386,"output_length":123,"hash_ids":[2616071],"delay":2886.5} +{"session_id":"sess-a6422ccb5bcc","input_length":1683,"output_length":63,"hash_ids":[2616072,2616073,2616074,2616075],"delay":1470.7} +{"session_id":"sess-a6422ccb5bcc","input_length":1238,"output_length":159,"hash_ids":[2616076,2616077,2616078],"delay":1138.8} +{"session_id":"sess-a6422ccb5bcc","input_length":518,"output_length":352,"hash_ids":[2616079,2616080],"delay":560.0} +{"session_id":"sess-a6422ccb5bcc","input_length":212,"output_length":204,"hash_ids":[2616081],"delay":9371.9} +{"session_id":"sess-a6422ccb5bcc","input_length":324,"output_length":235,"hash_ids":[2616082],"delay":4234.4} +{"session_id":"sess-a6422ccb5bcc","input_length":256,"output_length":435,"hash_ids":[2616083],"delay":254.0} +{"session_id":"sess-a6422ccb5bcc","input_length":729,"output_length":77,"hash_ids":[2616084,2616085],"delay":2645.2} +{"session_id":"sess-a6422ccb5bcc","input_length":174,"output_length":755,"hash_ids":[2616086],"delay":3824.6} +{"session_id":"sess-a6422ccb5bcc","input_length":2514,"output_length":30,"hash_ids":[2616087,2616088,2616089,2616090,2616091],"delay":816.1} +{"session_id":"sess-a6422ccb5bcc","input_length":663,"output_length":270,"hash_ids":[2616092,2616093],"delay":315.0} +{"session_id":"sess-a6422ccb5bcc","input_length":427,"output_length":430,"hash_ids":[2616094],"delay":14593.1} +{"session_id":"sess-a6422ccb5bcc","input_length":630,"output_length":73,"hash_ids":[2616095,2616096],"delay":8574.9} +{"session_id":"sess-a6422ccb5bcc","input_length":942,"output_length":226,"hash_ids":[2616097,2616098],"delay":13468.5} +{"session_id":"sess-a6422ccb5bcc","input_length":330,"output_length":66,"hash_ids":[2616099],"delay":444.5} +{"session_id":"sess-a6422ccb5bcc","input_length":2595,"output_length":182,"hash_ids":[2616100,2616101,2616102,2616103,2616104,2616105],"delay":4485.3} +{"session_id":"sess-a6422ccb5bcc","input_length":371,"output_length":178,"hash_ids":[2616106],"delay":56.1} +{"session_id":"sess-5feb2b509d47","input_length":31421,"output_length":137,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2620032,2620033,2620034,2620035,2620036,2620037,2620038,2620039,2620040,2620041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5feb2b509d47","input_length":1699,"output_length":293,"hash_ids":[2620042,2620043,2620044,2620045],"delay":3329.3} +{"session_id":"sess-5feb2b509d47","input_length":560,"output_length":467,"hash_ids":[2620046,2620047],"delay":349.5} +{"session_id":"sess-5feb2b509d47","input_length":1699,"output_length":30,"hash_ids":[2620048,2620049,2620050,2620051],"delay":465.7} +{"session_id":"sess-5feb2b509d47","input_length":338,"output_length":204,"hash_ids":[2620052],"delay":917.0} +{"session_id":"sess-5feb2b509d47","input_length":708,"output_length":46,"hash_ids":[2620053,2620054],"delay":1163.4} +{"session_id":"sess-4e59ab0b5b58","input_length":26370,"output_length":1014,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-4e59ab0b5b58","input_length":2656,"output_length":231,"hash_ids":[2620055,2620056,2620057,2620058,2620059,2620060],"delay":24153.8} +{"session_id":"sess-4e59ab0b5b58","input_length":139,"output_length":194,"hash_ids":[2620061],"delay":2548.5} +{"session_id":"sess-4e59ab0b5b58","input_length":2643,"output_length":379,"hash_ids":[2620062,2620063,2620064,2620065,2620066,2620067],"delay":6699.7} +{"session_id":"sess-4e59ab0b5b58","input_length":2069,"output_length":336,"hash_ids":[2620068,2620069,2620070,2620071,2620072],"delay":786.2} +{"session_id":"sess-4e59ab0b5b58","input_length":2417,"output_length":95,"hash_ids":[2620073,2620074,2620075,2620076,2620077],"delay":1228.3} +{"session_id":"sess-4e59ab0b5b58","input_length":244,"output_length":65,"hash_ids":[2620078],"delay":927.1} +{"session_id":"sess-4e59ab0b5b58","input_length":1178,"output_length":90,"hash_ids":[2620079,2620080,2620081],"delay":12524.5} +{"session_id":"sess-4e59ab0b5b58","input_length":1942,"output_length":152,"hash_ids":[2620082,2620083,2620084,2620085],"delay":532.2} +{"session_id":"sess-4e59ab0b5b58","input_length":705,"output_length":441,"hash_ids":[2620086,2620087],"delay":580.8} +{"session_id":"sess-c6461e70246c","input_length":27571,"output_length":88,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2628032,2628033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c6461e70246c","input_length":994,"output_length":31,"hash_ids":[2628034,2628035],"delay":11627.7} +{"session_id":"sess-c6461e70246c","input_length":758,"output_length":273,"hash_ids":[2628036,2628037],"delay":2242.8} +{"session_id":"sess-c6461e70246c","input_length":1202,"output_length":434,"hash_ids":[2628038,2628039,2628040],"delay":3062.9} +{"session_id":"sess-c6461e70246c","input_length":235,"output_length":778,"hash_ids":[2628041],"delay":1091.3} +{"session_id":"sess-c6461e70246c","input_length":368,"output_length":1145,"hash_ids":[2628042],"delay":13233.2} +{"session_id":"sess-c6461e70246c","input_length":1073,"output_length":394,"hash_ids":[2628043,2628044,2628045],"delay":939.0} +{"session_id":"sess-c6461e70246c","input_length":168,"output_length":665,"hash_ids":[2628046],"delay":1519.6} +{"session_id":"sess-c6461e70246c","input_length":653,"output_length":371,"hash_ids":[2628047,2628048],"delay":977.5} +{"session_id":"sess-c6461e70246c","input_length":641,"output_length":30,"hash_ids":[2628049,2628050],"delay":1308.0} +{"session_id":"sess-c6461e70246c","input_length":82,"output_length":257,"hash_ids":[2628051],"delay":11717.5} +{"session_id":"sess-c6461e70246c","input_length":1475,"output_length":406,"hash_ids":[2628052,2628053,2628054],"delay":38806.3} +{"session_id":"sess-c6461e70246c","input_length":193,"output_length":119,"hash_ids":[2628055],"delay":735.1} +{"session_id":"sess-c6461e70246c","input_length":838,"output_length":306,"hash_ids":[2628056,2628057],"delay":1159.8} +{"session_id":"sess-c6461e70246c","input_length":304,"output_length":412,"hash_ids":[2628058],"delay":552.3} +{"session_id":"sess-c6461e70246c","input_length":294,"output_length":30,"hash_ids":[2628059],"delay":3140.2} +{"session_id":"sess-c6461e70246c","input_length":1544,"output_length":105,"hash_ids":[2628060,2628061,2628062,2628063],"delay":613.1} +{"session_id":"sess-c6461e70246c","input_length":605,"output_length":78,"hash_ids":[2628064,2628065],"delay":1221.7} +{"session_id":"sess-c6461e70246c","input_length":1756,"output_length":414,"hash_ids":[2628066,2628067,2628068,2628069],"delay":170.0} +{"session_id":"sess-c6461e70246c","input_length":798,"output_length":230,"hash_ids":[2628070,2628071],"delay":8797.9} +{"session_id":"sess-c6461e70246c","input_length":772,"output_length":90,"hash_ids":[2628072,2628073],"delay":381.3} +{"session_id":"sess-c6461e70246c","input_length":1518,"output_length":47,"hash_ids":[2628074,2628075,2628076],"delay":16655.1} +{"session_id":"sess-c6461e70246c","input_length":1363,"output_length":751,"hash_ids":[2628077,2628078,2628079],"delay":500.9} +{"session_id":"sess-c6461e70246c","input_length":1192,"output_length":592,"hash_ids":[2628080,2628081,2628082],"delay":332.2} +{"session_id":"sess-c6461e70246c","input_length":2067,"output_length":244,"hash_ids":[2628083,2628084,2628085,2628086,2628087],"delay":2007.7} +{"session_id":"sess-c6461e70246c","input_length":419,"output_length":354,"hash_ids":[2628088],"delay":420.2} +{"session_id":"sess-c6461e70246c","input_length":1595,"output_length":846,"hash_ids":[2628089,2628090,2628091,2628092],"delay":1704.4} +{"session_id":"sess-c6461e70246c","input_length":414,"output_length":100,"hash_ids":[2628093],"delay":1496.3} +{"session_id":"sess-c6461e70246c","input_length":2418,"output_length":332,"hash_ids":[2628094,2628095,2628096,2628097,2628098],"delay":1012.3} +{"session_id":"sess-c6461e70246c","input_length":632,"output_length":142,"hash_ids":[2628099,2628100],"delay":2240.5} +{"session_id":"sess-c6461e70246c","input_length":688,"output_length":127,"hash_ids":[2628101,2628102],"delay":131.6} +{"session_id":"sess-c6461e70246c","input_length":109,"output_length":307,"hash_ids":[2628103],"delay":201.2} +{"session_id":"sess-f5fd6e78b300","input_length":26548,"output_length":243,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-f5fd6e78b300","input_length":412,"output_length":193,"hash_ids":[2628104],"delay":3949.2} +{"session_id":"sess-f5fd6e78b300","input_length":1212,"output_length":251,"hash_ids":[2628105,2628106,2628107],"delay":809.6} +{"session_id":"sess-f5fd6e78b300","input_length":326,"output_length":513,"hash_ids":[2628108],"delay":18491.4} +{"session_id":"sess-f5fd6e78b300","input_length":278,"output_length":1008,"hash_ids":[2628109],"delay":289.0} +{"session_id":"sess-f5fd6e78b300","input_length":1981,"output_length":107,"hash_ids":[2628110,2628111,2628112,2628113],"delay":4548.9} +{"session_id":"sess-f5fd6e78b300","input_length":1260,"output_length":195,"hash_ids":[2628114,2628115,2628116],"delay":829.1} +{"session_id":"sess-e93357a29b54","input_length":27105,"output_length":525,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2636032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-e93357a29b54","input_length":1229,"output_length":900,"hash_ids":[2636033,2636034,2636035],"delay":26388.3} +{"session_id":"sess-e93357a29b54","input_length":372,"output_length":195,"hash_ids":[2636036],"delay":1344.5} +{"session_id":"sess-e93357a29b54","input_length":2181,"output_length":348,"hash_ids":[2636037,2636038,2636039,2636040,2636041],"delay":837.4} +{"session_id":"sess-e93357a29b54","input_length":1567,"output_length":448,"hash_ids":[2636042,2636043,2636044,2636045],"delay":386.1} +{"session_id":"sess-e93357a29b54","input_length":689,"output_length":90,"hash_ids":[2636046,2636047],"delay":1165.2} +{"session_id":"sess-b5f4f8fba7d0","input_length":30772,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2640032,2640033,2640034,2640035,2640036,2640037,2640038,2640039,2640040],"timestamp":0.0,"group_id":4} +{"session_id":"sess-b5f4f8fba7d0","input_length":1468,"output_length":194,"hash_ids":[2640041,2640042,2640043],"delay":1012.0} +{"session_id":"sess-b5f4f8fba7d0","input_length":2633,"output_length":861,"hash_ids":[2640044,2640045,2640046,2640047,2640048,2640049],"delay":3155.1} +{"session_id":"sess-b5f4f8fba7d0","input_length":215,"output_length":421,"hash_ids":[2640050],"delay":969.4} +{"session_id":"sess-b5f4f8fba7d0","input_length":296,"output_length":588,"hash_ids":[2640051],"delay":2617.4} +{"session_id":"sess-b5f4f8fba7d0","input_length":880,"output_length":491,"hash_ids":[2640052,2640053],"delay":662.1} +{"session_id":"sess-b5f4f8fba7d0","input_length":1313,"output_length":106,"hash_ids":[2640054,2640055,2640056],"delay":11990.5} +{"session_id":"sess-3667b1664502","input_length":27426,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2644032,2644033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3667b1664502","input_length":1742,"output_length":44,"hash_ids":[2644034,2644035,2644036,2644037],"delay":1170.3} +{"session_id":"sess-3667b1664502","input_length":2024,"output_length":266,"hash_ids":[2644038,2644039,2644040,2644041],"delay":21749.4} +{"session_id":"sess-3667b1664502","input_length":1960,"output_length":452,"hash_ids":[2644042,2644043,2644044,2644045],"delay":1569.5} +{"session_id":"sess-3667b1664502","input_length":1007,"output_length":75,"hash_ids":[2644046,2644047],"delay":912.7} +{"session_id":"sess-3667b1664502","input_length":837,"output_length":116,"hash_ids":[2644048,2644049],"delay":969.5} +{"session_id":"sess-3667b1664502","input_length":1781,"output_length":500,"hash_ids":[2644050,2644051,2644052,2644053],"delay":1705.0} +{"session_id":"sess-3667b1664502","input_length":1616,"output_length":48,"hash_ids":[2644054,2644055,2644056,2644057],"delay":6958.7} +{"session_id":"sess-3667b1664502","input_length":916,"output_length":117,"hash_ids":[2644058,2644059],"delay":561.9} +{"session_id":"sess-3667b1664502","input_length":891,"output_length":368,"hash_ids":[2644060,2644061],"delay":1350.9} +{"session_id":"sess-3667b1664502","input_length":663,"output_length":51,"hash_ids":[2644062,2644063],"delay":227.8} +{"session_id":"sess-3667b1664502","input_length":2542,"output_length":283,"hash_ids":[2644064,2644065,2644066,2644067,2644068],"delay":18076.7} +{"session_id":"sess-3667b1664502","input_length":2995,"output_length":30,"hash_ids":[2644069,2644070,2644071,2644072,2644073,2644074],"delay":297.6} +{"session_id":"sess-3667b1664502","input_length":474,"output_length":80,"hash_ids":[2644075],"delay":16936.9} +{"session_id":"sess-3667b1664502","input_length":985,"output_length":130,"hash_ids":[2644076,2644077],"delay":10105.0} +{"session_id":"sess-3667b1664502","input_length":1470,"output_length":69,"hash_ids":[2644078,2644079,2644080],"delay":14951.3} +{"session_id":"sess-3667b1664502","input_length":531,"output_length":1445,"hash_ids":[2644081,2644082],"delay":2447.4} +{"session_id":"sess-3667b1664502","input_length":986,"output_length":77,"hash_ids":[2644083,2644084],"delay":1032.9} +{"session_id":"sess-3667b1664502","input_length":1735,"output_length":93,"hash_ids":[2644085,2644086,2644087,2644088],"delay":486.8} +{"session_id":"sess-3667b1664502","input_length":2718,"output_length":105,"hash_ids":[2644089,2644090,2644091,2644092,2644093,2644094],"delay":637.0} +{"session_id":"sess-3667b1664502","input_length":457,"output_length":855,"hash_ids":[2644095],"delay":1262.0} +{"session_id":"sess-3667b1664502","input_length":1107,"output_length":597,"hash_ids":[2644096,2644097,2644098],"delay":4269.1} +{"session_id":"sess-3667b1664502","input_length":1487,"output_length":105,"hash_ids":[2644099,2644100,2644101],"delay":798.6} +{"session_id":"sess-3a88962e996c","input_length":27032,"output_length":113,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2648032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3a88962e996c","input_length":2135,"output_length":127,"hash_ids":[2648033,2648034,2648035,2648036,2648037],"delay":797.2} +{"session_id":"sess-3a88962e996c","input_length":1445,"output_length":314,"hash_ids":[2648038,2648039,2648040],"delay":2151.1} +{"session_id":"sess-3a88962e996c","input_length":2454,"output_length":613,"hash_ids":[2648041,2648042,2648043,2648044,2648045],"delay":4488.8} +{"session_id":"sess-20f10019ea8f","input_length":27067,"output_length":287,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,2652032],"timestamp":0.0,"group_id":21} +{"session_id":"sess-20f10019ea8f","input_length":2166,"output_length":594,"hash_ids":[2652033,2652034,2652035,2652036,2652037],"delay":1596.8} +{"session_id":"sess-20f10019ea8f","input_length":1110,"output_length":113,"hash_ids":[2652038,2652039,2652040],"delay":579.6} +{"session_id":"sess-20f10019ea8f","input_length":981,"output_length":407,"hash_ids":[2652041,2652042],"delay":960.6} +{"session_id":"sess-20f10019ea8f","input_length":234,"output_length":271,"hash_ids":[2652043],"delay":1462.1} +{"session_id":"sess-20f10019ea8f","input_length":899,"output_length":376,"hash_ids":[2652044,2652045],"delay":318.9} +{"session_id":"sess-20f10019ea8f","input_length":1996,"output_length":214,"hash_ids":[2652046,2652047,2652048,2652049],"delay":5091.9} +{"session_id":"sess-20f10019ea8f","input_length":2370,"output_length":177,"hash_ids":[2652050,2652051,2652052,2652053,2652054],"delay":953.4} +{"session_id":"sess-20f10019ea8f","input_length":1215,"output_length":125,"hash_ids":[2652055,2652056,2652057],"delay":341.1} +{"session_id":"sess-20f10019ea8f","input_length":204,"output_length":854,"hash_ids":[2652058],"delay":530.5} +{"session_id":"sess-20f10019ea8f","input_length":1613,"output_length":43,"hash_ids":[2652059,2652060,2652061,2652062],"delay":510.3} +{"session_id":"sess-20f10019ea8f","input_length":1064,"output_length":89,"hash_ids":[2652063,2652064,2652065],"delay":904.4} +{"session_id":"sess-20f10019ea8f","input_length":2832,"output_length":605,"hash_ids":[2652066,2652067,2652068,2652069,2652070,2652071],"delay":50759.8} +{"session_id":"sess-20f10019ea8f","input_length":700,"output_length":84,"hash_ids":[2652072,2652073],"delay":1169.1} +{"session_id":"sess-20f10019ea8f","input_length":329,"output_length":249,"hash_ids":[2652074],"delay":5452.1} +{"session_id":"sess-20f10019ea8f","input_length":474,"output_length":587,"hash_ids":[2652075],"delay":561.6} +{"session_id":"sess-20f10019ea8f","input_length":230,"output_length":197,"hash_ids":[2652076],"delay":880.2} +{"session_id":"sess-20f10019ea8f","input_length":1760,"output_length":493,"hash_ids":[2652077,2652078,2652079,2652080],"delay":274.7} +{"session_id":"sess-20f10019ea8f","input_length":833,"output_length":54,"hash_ids":[2652081,2652082],"delay":5529.1} +{"session_id":"sess-20f10019ea8f","input_length":897,"output_length":248,"hash_ids":[2652083,2652084],"delay":443.3} +{"session_id":"sess-20f10019ea8f","input_length":733,"output_length":158,"hash_ids":[2652085,2652086],"delay":466.7} +{"session_id":"sess-20f10019ea8f","input_length":2221,"output_length":491,"hash_ids":[2652087,2652088,2652089,2652090,2652091],"delay":148.7} +{"session_id":"sess-20f10019ea8f","input_length":640,"output_length":55,"hash_ids":[2652092,2652093],"delay":1074.9} +{"session_id":"sess-20f10019ea8f","input_length":131,"output_length":185,"hash_ids":[2652094],"delay":1949.7} +{"session_id":"sess-20f10019ea8f","input_length":1273,"output_length":106,"hash_ids":[2652095,2652096,2652097],"delay":2055.0} +{"session_id":"sess-20f10019ea8f","input_length":513,"output_length":470,"hash_ids":[2652098,2652099],"delay":1653.4} +{"session_id":"sess-20f10019ea8f","input_length":97,"output_length":169,"hash_ids":[2652100],"delay":1367.0} +{"session_id":"sess-20f10019ea8f","input_length":1213,"output_length":120,"hash_ids":[2652101,2652102,2652103],"delay":599.1} +{"session_id":"sess-20f10019ea8f","input_length":552,"output_length":240,"hash_ids":[2652104,2652105],"delay":444.1} +{"session_id":"sess-4543cf7427cf","input_length":28786,"output_length":184,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2656032,2656033,2656034,2656035,2656036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4543cf7427cf","input_length":735,"output_length":303,"hash_ids":[2656037,2656038],"delay":10273.7} +{"session_id":"sess-4543cf7427cf","input_length":404,"output_length":462,"hash_ids":[2656039],"delay":3338.3} +{"session_id":"sess-4543cf7427cf","input_length":761,"output_length":58,"hash_ids":[2656040,2656041],"delay":2627.6} +{"session_id":"sess-4543cf7427cf","input_length":974,"output_length":774,"hash_ids":[2656042,2656043],"delay":11143.1} +{"session_id":"sess-4543cf7427cf","input_length":513,"output_length":936,"hash_ids":[2656044,2656045],"delay":1869.8} +{"session_id":"sess-4543cf7427cf","input_length":515,"output_length":178,"hash_ids":[2656046,2656047],"delay":4318.0} +{"session_id":"sess-4543cf7427cf","input_length":1806,"output_length":77,"hash_ids":[2656048,2656049,2656050,2656051],"delay":48530.3} +{"session_id":"sess-4543cf7427cf","input_length":979,"output_length":30,"hash_ids":[2656052,2656053],"delay":1090.7} +{"session_id":"sess-4543cf7427cf","input_length":2006,"output_length":59,"hash_ids":[2656054,2656055,2656056,2656057],"delay":733.6} +{"session_id":"sess-4543cf7427cf","input_length":2837,"output_length":191,"hash_ids":[2656058,2656059,2656060,2656061,2656062,2656063],"delay":218.4} +{"session_id":"sess-4543cf7427cf","input_length":559,"output_length":296,"hash_ids":[2656064,2656065],"delay":6894.7} +{"session_id":"sess-4543cf7427cf","input_length":541,"output_length":563,"hash_ids":[2656066,2656067],"delay":24413.9} +{"session_id":"sess-4543cf7427cf","input_length":442,"output_length":77,"hash_ids":[2656068],"delay":29547.3} +{"session_id":"sess-4543cf7427cf","input_length":382,"output_length":919,"hash_ids":[2656069],"delay":20020.1} +{"session_id":"sess-4543cf7427cf","input_length":841,"output_length":83,"hash_ids":[2656070,2656071],"delay":18174.4} +{"session_id":"sess-e62864189c21","input_length":26235,"output_length":425,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051],"timestamp":0.0,"group_id":25} +{"session_id":"sess-e62864189c21","input_length":104,"output_length":95,"hash_ids":[2656072],"delay":15858.8} +{"session_id":"sess-e62864189c21","input_length":561,"output_length":318,"hash_ids":[2656073,2656074],"delay":1757.0} +{"session_id":"sess-e62864189c21","input_length":846,"output_length":382,"hash_ids":[2656075,2656076],"delay":436.3} +{"session_id":"sess-e62864189c21","input_length":1916,"output_length":360,"hash_ids":[2656077,2656078,2656079,2656080],"delay":999.5} +{"session_id":"sess-e62864189c21","input_length":803,"output_length":281,"hash_ids":[2656081,2656082],"delay":451.5} +{"session_id":"sess-e62864189c21","input_length":508,"output_length":345,"hash_ids":[2656083],"delay":1286.3} +{"session_id":"sess-e62864189c21","input_length":632,"output_length":660,"hash_ids":[2656084,2656085],"delay":4911.0} +{"session_id":"sess-e62864189c21","input_length":585,"output_length":30,"hash_ids":[2656086,2656087],"delay":8931.4} +{"session_id":"sess-660089b8a07b","input_length":31709,"output_length":254,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2664032,2664033,2664034,2664035,2664036,2664037,2664038,2664039,2664040,2664041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-660089b8a07b","input_length":579,"output_length":108,"hash_ids":[2664042,2664043],"delay":1499.9} +{"session_id":"sess-660089b8a07b","input_length":455,"output_length":143,"hash_ids":[2664044],"delay":11365.2} +{"session_id":"sess-660089b8a07b","input_length":2496,"output_length":272,"hash_ids":[2664045,2664046,2664047,2664048,2664049],"delay":864.5} +{"session_id":"sess-660089b8a07b","input_length":2505,"output_length":621,"hash_ids":[2664050,2664051,2664052,2664053,2664054],"delay":582.6} +{"session_id":"sess-660089b8a07b","input_length":1074,"output_length":714,"hash_ids":[2664055,2664056,2664057],"delay":861.1} +{"session_id":"sess-660089b8a07b","input_length":757,"output_length":240,"hash_ids":[2664058,2664059],"delay":534.1} +{"session_id":"sess-660089b8a07b","input_length":451,"output_length":162,"hash_ids":[2664060],"delay":647.8} +{"session_id":"sess-660089b8a07b","input_length":1657,"output_length":142,"hash_ids":[2664061,2664062,2664063,2664064],"delay":1148.3} +{"session_id":"sess-660089b8a07b","input_length":1405,"output_length":542,"hash_ids":[2664065,2664066,2664067],"delay":27788.5} +{"session_id":"sess-660089b8a07b","input_length":216,"output_length":1443,"hash_ids":[2664068],"delay":1433.9} +{"session_id":"sess-660089b8a07b","input_length":960,"output_length":106,"hash_ids":[2664069,2664070],"delay":2848.3} +{"session_id":"sess-660089b8a07b","input_length":498,"output_length":438,"hash_ids":[2664071],"delay":650.4} +{"session_id":"sess-660089b8a07b","input_length":853,"output_length":165,"hash_ids":[2664072,2664073],"delay":763.3} +{"session_id":"sess-660089b8a07b","input_length":773,"output_length":130,"hash_ids":[2664074,2664075],"delay":17273.5} +{"session_id":"sess-660089b8a07b","input_length":1316,"output_length":176,"hash_ids":[2664076,2664077,2664078],"delay":346.1} +{"session_id":"sess-660089b8a07b","input_length":510,"output_length":111,"hash_ids":[2664079],"delay":350.1} +{"session_id":"sess-660089b8a07b","input_length":1158,"output_length":504,"hash_ids":[2664080,2664081,2664082],"delay":3157.5} +{"session_id":"sess-9c576cbf8d67","input_length":26705,"output_length":144,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2668032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-9c576cbf8d67","input_length":778,"output_length":137,"hash_ids":[2668033,2668034],"delay":10874.7} +{"session_id":"sess-9c576cbf8d67","input_length":2945,"output_length":167,"hash_ids":[2668035,2668036,2668037,2668038,2668039,2668040],"delay":5483.5} +{"session_id":"sess-9c576cbf8d67","input_length":2587,"output_length":473,"hash_ids":[2668041,2668042,2668043,2668044,2668045,2668046],"delay":10242.5} +{"session_id":"sess-9c576cbf8d67","input_length":1813,"output_length":71,"hash_ids":[2668047,2668048,2668049,2668050],"delay":2953.0} +{"session_id":"sess-9c576cbf8d67","input_length":1070,"output_length":156,"hash_ids":[2668051,2668052,2668053],"delay":1968.6} +{"session_id":"sess-9c576cbf8d67","input_length":930,"output_length":99,"hash_ids":[2668054,2668055],"delay":22427.6} +{"session_id":"sess-9c576cbf8d67","input_length":338,"output_length":386,"hash_ids":[2668056],"delay":348.8} +{"session_id":"sess-9c576cbf8d67","input_length":1640,"output_length":249,"hash_ids":[2668057,2668058,2668059,2668060],"delay":187.6} +{"session_id":"sess-9c576cbf8d67","input_length":2090,"output_length":317,"hash_ids":[2668061,2668062,2668063,2668064,2668065],"delay":1644.5} +{"session_id":"sess-9c576cbf8d67","input_length":212,"output_length":182,"hash_ids":[2668066],"delay":287.7} +{"session_id":"sess-9c576cbf8d67","input_length":867,"output_length":192,"hash_ids":[2668067,2668068],"delay":2090.0} +{"session_id":"sess-9c576cbf8d67","input_length":101,"output_length":192,"hash_ids":[2668069],"delay":1369.5} +{"session_id":"sess-9c576cbf8d67","input_length":998,"output_length":927,"hash_ids":[2668070,2668071],"delay":693.0} +{"session_id":"sess-9c576cbf8d67","input_length":1915,"output_length":152,"hash_ids":[2668072,2668073,2668074,2668075],"delay":594.5} +{"session_id":"sess-9c576cbf8d67","input_length":815,"output_length":592,"hash_ids":[2668076,2668077],"delay":403.5} +{"session_id":"sess-9c576cbf8d67","input_length":706,"output_length":75,"hash_ids":[2668078,2668079],"delay":1488.9} +{"session_id":"sess-9c576cbf8d67","input_length":2183,"output_length":193,"hash_ids":[2668080,2668081,2668082,2668083,2668084],"delay":1343.5} +{"session_id":"sess-9c576cbf8d67","input_length":2494,"output_length":224,"hash_ids":[2668085,2668086,2668087,2668088,2668089],"delay":260.4} +{"session_id":"sess-9c576cbf8d67","input_length":1136,"output_length":423,"hash_ids":[2668090,2668091,2668092],"delay":616.3} +{"session_id":"sess-9c576cbf8d67","input_length":645,"output_length":93,"hash_ids":[2668093,2668094],"delay":1571.3} +{"session_id":"sess-9c576cbf8d67","input_length":1115,"output_length":73,"hash_ids":[2668095,2668096,2668097],"delay":684.5} +{"session_id":"sess-9c576cbf8d67","input_length":616,"output_length":375,"hash_ids":[2668098,2668099],"delay":3515.3} +{"session_id":"sess-f600440933e3","input_length":30818,"output_length":343,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2672032,2672033,2672034,2672035,2672036,2672037,2672038,2672039,2672040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f600440933e3","input_length":915,"output_length":37,"hash_ids":[2672041,2672042],"delay":2248.7} +{"session_id":"sess-f600440933e3","input_length":2767,"output_length":48,"hash_ids":[2672043,2672044,2672045,2672046,2672047,2672048],"delay":698.3} +{"session_id":"sess-f600440933e3","input_length":1034,"output_length":347,"hash_ids":[2672049,2672050,2672051],"delay":465.5} +{"session_id":"sess-f600440933e3","input_length":717,"output_length":30,"hash_ids":[2672052,2672053],"delay":1206.1} +{"session_id":"sess-efba58d3d34f","input_length":26842,"output_length":250,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2676032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-efba58d3d34f","input_length":846,"output_length":30,"hash_ids":[2676033,2676034],"delay":1872.7} +{"session_id":"sess-efba58d3d34f","input_length":2783,"output_length":47,"hash_ids":[2676035,2676036,2676037,2676038,2676039,2676040],"delay":2373.6} +{"session_id":"sess-efba58d3d34f","input_length":905,"output_length":271,"hash_ids":[2676041,2676042],"delay":652.3} +{"session_id":"sess-efba58d3d34f","input_length":386,"output_length":108,"hash_ids":[2676043],"delay":40515.4} +{"session_id":"sess-efba58d3d34f","input_length":257,"output_length":405,"hash_ids":[2676044],"delay":711.3} +{"session_id":"sess-efba58d3d34f","input_length":661,"output_length":199,"hash_ids":[2676045,2676046],"delay":582.1} +{"session_id":"sess-efba58d3d34f","input_length":2472,"output_length":98,"hash_ids":[2676047,2676048,2676049,2676050,2676051],"delay":26829.0} +{"session_id":"sess-efba58d3d34f","input_length":651,"output_length":132,"hash_ids":[2676052,2676053],"delay":925.1} +{"session_id":"sess-efba58d3d34f","input_length":674,"output_length":333,"hash_ids":[2676054,2676055],"delay":1513.2} +{"session_id":"sess-efba58d3d34f","input_length":569,"output_length":177,"hash_ids":[2676056,2676057],"delay":727.0} +{"session_id":"sess-efba58d3d34f","input_length":293,"output_length":391,"hash_ids":[2676058],"delay":523.5} +{"session_id":"sess-efba58d3d34f","input_length":435,"output_length":192,"hash_ids":[2676059],"delay":1064.8} +{"session_id":"sess-efba58d3d34f","input_length":100,"output_length":33,"hash_ids":[2676060],"delay":17720.9} +{"session_id":"sess-efba58d3d34f","input_length":1217,"output_length":30,"hash_ids":[2676061,2676062,2676063],"delay":5474.1} +{"session_id":"sess-efba58d3d34f","input_length":837,"output_length":73,"hash_ids":[2676064,2676065],"delay":666.0} +{"session_id":"sess-efba58d3d34f","input_length":2780,"output_length":547,"hash_ids":[2676066,2676067,2676068,2676069,2676070,2676071],"delay":11498.8} +{"session_id":"sess-efba58d3d34f","input_length":356,"output_length":130,"hash_ids":[2676072],"delay":16557.6} +{"session_id":"sess-efba58d3d34f","input_length":319,"output_length":198,"hash_ids":[2676073],"delay":2892.1} +{"session_id":"sess-efba58d3d34f","input_length":1090,"output_length":33,"hash_ids":[2676074,2676075,2676076],"delay":10003.4} +{"session_id":"sess-efba58d3d34f","input_length":961,"output_length":107,"hash_ids":[2676077,2676078],"delay":1821.9} +{"session_id":"sess-efba58d3d34f","input_length":1219,"output_length":391,"hash_ids":[2676079,2676080,2676081],"delay":314.9} +{"session_id":"sess-efba58d3d34f","input_length":1013,"output_length":406,"hash_ids":[2676082,2676083],"delay":1626.0} +{"session_id":"sess-efba58d3d34f","input_length":317,"output_length":803,"hash_ids":[2676084],"delay":6764.0} +{"session_id":"sess-efba58d3d34f","input_length":305,"output_length":211,"hash_ids":[2676085],"delay":1504.7} +{"session_id":"sess-efba58d3d34f","input_length":693,"output_length":50,"hash_ids":[2676086,2676087],"delay":519.2} +{"session_id":"sess-efba58d3d34f","input_length":320,"output_length":112,"hash_ids":[2676088],"delay":296.2} +{"session_id":"sess-f6e69c0be93f","input_length":30500,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2680032,2680033,2680034,2680035,2680036,2680037,2680038,2680039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f6e69c0be93f","input_length":210,"output_length":54,"hash_ids":[2680040],"delay":5034.5} +{"session_id":"sess-f6e69c0be93f","input_length":289,"output_length":79,"hash_ids":[2680041],"delay":789.3} +{"session_id":"sess-f6e69c0be93f","input_length":2590,"output_length":103,"hash_ids":[2680042,2680043,2680044,2680045,2680046,2680047],"delay":1284.7} +{"session_id":"sess-f6e69c0be93f","input_length":373,"output_length":756,"hash_ids":[2680048],"delay":1939.7} +{"session_id":"sess-f6e69c0be93f","input_length":610,"output_length":55,"hash_ids":[2680049,2680050],"delay":4155.0} +{"session_id":"sess-f6e69c0be93f","input_length":909,"output_length":242,"hash_ids":[2680051,2680052],"delay":15662.8} +{"session_id":"sess-f6e69c0be93f","input_length":523,"output_length":708,"hash_ids":[2680053,2680054],"delay":1068.8} +{"session_id":"sess-f6e69c0be93f","input_length":1379,"output_length":697,"hash_ids":[2680055,2680056,2680057],"delay":1934.0} +{"session_id":"sess-f6e69c0be93f","input_length":1107,"output_length":344,"hash_ids":[2680058,2680059,2680060],"delay":27785.5} +{"session_id":"sess-f6e69c0be93f","input_length":1131,"output_length":260,"hash_ids":[2680061,2680062,2680063],"delay":487.4} +{"session_id":"sess-f6e69c0be93f","input_length":1187,"output_length":143,"hash_ids":[2680064,2680065,2680066],"delay":743.5} +{"session_id":"sess-f6e69c0be93f","input_length":585,"output_length":244,"hash_ids":[2680067,2680068],"delay":373.0} +{"session_id":"sess-f6e69c0be93f","input_length":1243,"output_length":163,"hash_ids":[2680069,2680070,2680071],"delay":16489.7} +{"session_id":"sess-f6e69c0be93f","input_length":1653,"output_length":192,"hash_ids":[2680072,2680073,2680074,2680075],"delay":203.8} +{"session_id":"sess-f6e69c0be93f","input_length":1153,"output_length":125,"hash_ids":[2680076,2680077,2680078],"delay":1112.9} +{"session_id":"sess-f6e69c0be93f","input_length":1383,"output_length":69,"hash_ids":[2680079,2680080,2680081],"delay":718.7} +{"session_id":"sess-f6e69c0be93f","input_length":473,"output_length":67,"hash_ids":[2680082],"delay":173.9} +{"session_id":"sess-f6e69c0be93f","input_length":783,"output_length":83,"hash_ids":[2680083,2680084],"delay":1535.3} +{"session_id":"sess-f6e69c0be93f","input_length":396,"output_length":1132,"hash_ids":[2680085],"delay":4696.4} +{"session_id":"sess-f6e69c0be93f","input_length":2041,"output_length":95,"hash_ids":[2680086,2680087,2680088,2680089],"delay":7697.4} +{"session_id":"sess-f6e69c0be93f","input_length":249,"output_length":278,"hash_ids":[2680090],"delay":9024.6} +{"session_id":"sess-f6e69c0be93f","input_length":676,"output_length":306,"hash_ids":[2680091,2680092],"delay":1812.4} +{"session_id":"sess-f6e69c0be93f","input_length":476,"output_length":596,"hash_ids":[2680093],"delay":17087.8} +{"session_id":"sess-f6e69c0be93f","input_length":883,"output_length":264,"hash_ids":[2680094,2680095],"delay":3464.4} +{"session_id":"sess-f6e69c0be93f","input_length":1714,"output_length":117,"hash_ids":[2680096,2680097,2680098,2680099],"delay":219.5} +{"session_id":"sess-f6e69c0be93f","input_length":737,"output_length":76,"hash_ids":[2680100,2680101],"delay":221.6} +{"session_id":"sess-f6e69c0be93f","input_length":2336,"output_length":301,"hash_ids":[2680102,2680103,2680104,2680105,2680106],"delay":196.9} +{"session_id":"sess-5f0add9c78f0","input_length":29413,"output_length":443,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2684032,2684033,2684034,2684035,2684036,2684037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5f0add9c78f0","input_length":1065,"output_length":206,"hash_ids":[2684038,2684039,2684040],"delay":11207.3} +{"session_id":"sess-5f0add9c78f0","input_length":1118,"output_length":1002,"hash_ids":[2684041,2684042,2684043],"delay":2720.4} +{"session_id":"sess-5f0add9c78f0","input_length":922,"output_length":38,"hash_ids":[2684044,2684045],"delay":310.3} +{"session_id":"sess-5f0add9c78f0","input_length":2201,"output_length":148,"hash_ids":[2684046,2684047,2684048,2684049,2684050],"delay":3476.5} +{"session_id":"sess-5f0add9c78f0","input_length":894,"output_length":579,"hash_ids":[2684051,2684052],"delay":577.8} +{"session_id":"sess-5f0add9c78f0","input_length":2183,"output_length":308,"hash_ids":[2684053,2684054,2684055,2684056,2684057],"delay":650.4} +{"session_id":"sess-ce10cb13ef1d","input_length":26463,"output_length":1315,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ce10cb13ef1d","input_length":364,"output_length":394,"hash_ids":[2684058],"delay":851.3} +{"session_id":"sess-ce10cb13ef1d","input_length":365,"output_length":217,"hash_ids":[2684059],"delay":26902.1} +{"session_id":"sess-94618a699239","input_length":29963,"output_length":167,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2692032,2692033,2692034,2692035,2692036,2692037,2692038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-94618a699239","input_length":1578,"output_length":150,"hash_ids":[2692039,2692040,2692041,2692042],"delay":199.7} +{"session_id":"sess-94618a699239","input_length":2357,"output_length":377,"hash_ids":[2692043,2692044,2692045,2692046,2692047],"delay":2888.0} +{"session_id":"sess-94618a699239","input_length":948,"output_length":59,"hash_ids":[2692048,2692049],"delay":13513.3} +{"session_id":"sess-94618a699239","input_length":265,"output_length":59,"hash_ids":[2692050],"delay":836.3} +{"session_id":"sess-3e705673ec85","input_length":30953,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2696032,2696033,2696034,2696035,2696036,2696037,2696038,2696039,2696040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3e705673ec85","input_length":738,"output_length":300,"hash_ids":[2696041,2696042],"delay":1388.1} +{"session_id":"sess-3e705673ec85","input_length":356,"output_length":84,"hash_ids":[2696043],"delay":3070.8} +{"session_id":"sess-3e705673ec85","input_length":624,"output_length":245,"hash_ids":[2696044,2696045],"delay":143.4} +{"session_id":"sess-3e705673ec85","input_length":609,"output_length":156,"hash_ids":[2696046,2696047],"delay":2116.8} +{"session_id":"sess-3e705673ec85","input_length":220,"output_length":881,"hash_ids":[2696048],"delay":901.2} +{"session_id":"sess-3e705673ec85","input_length":651,"output_length":114,"hash_ids":[2696049,2696050],"delay":3458.0} +{"session_id":"sess-3e705673ec85","input_length":1541,"output_length":199,"hash_ids":[2696051,2696052,2696053,2696054],"delay":1481.7} +{"session_id":"sess-3e705673ec85","input_length":437,"output_length":349,"hash_ids":[2696055],"delay":4130.7} +{"session_id":"sess-3e705673ec85","input_length":1567,"output_length":85,"hash_ids":[2696056,2696057,2696058,2696059],"delay":422.2} +{"session_id":"sess-3e705673ec85","input_length":510,"output_length":101,"hash_ids":[2696060],"delay":13974.8} +{"session_id":"sess-3e705673ec85","input_length":973,"output_length":222,"hash_ids":[2696061,2696062],"delay":11122.6} +{"session_id":"sess-3e705673ec85","input_length":455,"output_length":347,"hash_ids":[2696063],"delay":554.3} +{"session_id":"sess-3e705673ec85","input_length":400,"output_length":614,"hash_ids":[2696064],"delay":8485.0} +{"session_id":"sess-3e705673ec85","input_length":188,"output_length":87,"hash_ids":[2696065],"delay":353.7} +{"session_id":"sess-3e705673ec85","input_length":1941,"output_length":108,"hash_ids":[2696066,2696067,2696068,2696069],"delay":764.4} +{"session_id":"sess-3e705673ec85","input_length":983,"output_length":165,"hash_ids":[2696070,2696071],"delay":482.7} +{"session_id":"sess-3e705673ec85","input_length":1465,"output_length":176,"hash_ids":[2696072,2696073,2696074],"delay":18611.3} +{"session_id":"sess-3e705673ec85","input_length":846,"output_length":629,"hash_ids":[2696075,2696076],"delay":2079.4} +{"session_id":"sess-3e705673ec85","input_length":2188,"output_length":88,"hash_ids":[2696077,2696078,2696079,2696080,2696081],"delay":4199.6} +{"session_id":"sess-3e705673ec85","input_length":1141,"output_length":153,"hash_ids":[2696082,2696083,2696084],"delay":584.6} +{"session_id":"sess-3e705673ec85","input_length":1386,"output_length":45,"hash_ids":[2696085,2696086,2696087],"delay":623.4} +{"session_id":"sess-3e705673ec85","input_length":245,"output_length":174,"hash_ids":[2696088],"delay":591.5} +{"session_id":"sess-3e705673ec85","input_length":1567,"output_length":831,"hash_ids":[2696089,2696090,2696091,2696092],"delay":193.9} +{"session_id":"sess-3e705673ec85","input_length":408,"output_length":68,"hash_ids":[2696093],"delay":436.9} +{"session_id":"sess-60e6e79a824e","input_length":27110,"output_length":706,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2700032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-60e6e79a824e","input_length":2857,"output_length":698,"hash_ids":[2700033,2700034,2700035,2700036,2700037,2700038],"delay":484.2} +{"session_id":"sess-60e6e79a824e","input_length":248,"output_length":369,"hash_ids":[2700039],"delay":779.7} +{"session_id":"sess-60e6e79a824e","input_length":417,"output_length":123,"hash_ids":[2700040],"delay":10294.1} +{"session_id":"sess-60e6e79a824e","input_length":1064,"output_length":103,"hash_ids":[2700041,2700042,2700043],"delay":42455.1} +{"session_id":"sess-60e6e79a824e","input_length":265,"output_length":298,"hash_ids":[2700044],"delay":1296.8} +{"session_id":"sess-60e6e79a824e","input_length":1429,"output_length":74,"hash_ids":[2700045,2700046,2700047],"delay":419.9} +{"session_id":"sess-60e6e79a824e","input_length":2483,"output_length":319,"hash_ids":[2700048,2700049,2700050,2700051,2700052],"delay":1294.6} +{"session_id":"sess-60e6e79a824e","input_length":517,"output_length":462,"hash_ids":[2700053,2700054],"delay":686.8} +{"session_id":"sess-60e6e79a824e","input_length":383,"output_length":965,"hash_ids":[2700055],"delay":1083.7} +{"session_id":"sess-60e6e79a824e","input_length":296,"output_length":260,"hash_ids":[2700056],"delay":1544.0} +{"session_id":"sess-60e6e79a824e","input_length":1596,"output_length":729,"hash_ids":[2700057,2700058,2700059,2700060],"delay":628.7} +{"session_id":"sess-60e6e79a824e","input_length":1420,"output_length":625,"hash_ids":[2700061,2700062,2700063],"delay":9547.1} +{"session_id":"sess-60e6e79a824e","input_length":1299,"output_length":207,"hash_ids":[2700064,2700065,2700066],"delay":1437.7} +{"session_id":"sess-60e6e79a824e","input_length":529,"output_length":545,"hash_ids":[2700067,2700068],"delay":844.4} +{"session_id":"sess-60e6e79a824e","input_length":704,"output_length":216,"hash_ids":[2700069,2700070],"delay":385.4} +{"session_id":"sess-60e6e79a824e","input_length":311,"output_length":76,"hash_ids":[2700071],"delay":7499.8} +{"session_id":"sess-60e6e79a824e","input_length":1675,"output_length":252,"hash_ids":[2700072,2700073,2700074,2700075],"delay":1675.2} +{"session_id":"sess-60e6e79a824e","input_length":440,"output_length":420,"hash_ids":[2700076],"delay":2597.5} +{"session_id":"sess-60e6e79a824e","input_length":719,"output_length":210,"hash_ids":[2700077,2700078],"delay":993.7} +{"session_id":"sess-60e6e79a824e","input_length":2105,"output_length":74,"hash_ids":[2700079,2700080,2700081,2700082,2700083],"delay":318.5} +{"session_id":"sess-60e6e79a824e","input_length":670,"output_length":33,"hash_ids":[2700084,2700085],"delay":253.9} +{"session_id":"sess-60e6e79a824e","input_length":1379,"output_length":620,"hash_ids":[2700086,2700087,2700088],"delay":615.5} +{"session_id":"sess-60e6e79a824e","input_length":1212,"output_length":207,"hash_ids":[2700089,2700090,2700091],"delay":4465.9} +{"session_id":"sess-60e6e79a824e","input_length":464,"output_length":295,"hash_ids":[2700092],"delay":1071.5} +{"session_id":"sess-60e6e79a824e","input_length":641,"output_length":207,"hash_ids":[2700093,2700094],"delay":8713.1} +{"session_id":"sess-60e6e79a824e","input_length":1059,"output_length":267,"hash_ids":[2700095,2700096,2700097],"delay":321.5} +{"session_id":"sess-60e6e79a824e","input_length":257,"output_length":59,"hash_ids":[2700098],"delay":8704.0} +{"session_id":"sess-60e6e79a824e","input_length":757,"output_length":352,"hash_ids":[2700099,2700100],"delay":27057.7} +{"session_id":"sess-60e6e79a824e","input_length":1024,"output_length":183,"hash_ids":[2700101,2700102],"delay":10868.4} +{"session_id":"sess-60e6e79a824e","input_length":142,"output_length":144,"hash_ids":[2700103],"delay":18099.9} +{"session_id":"sess-3657fe36faca","input_length":36630,"output_length":400,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2704032,2704033,2704034,2704035,2704036,2704037,2704038,2704039,2704040,2704041,2704042,2704043,2704044,2704045,2704046,2704047,2704048,2704049,2704050,2704051],"timestamp":0.0,"group_id":14} +{"session_id":"sess-3657fe36faca","input_length":383,"output_length":385,"hash_ids":[2704052],"delay":2443.7} +{"session_id":"sess-3657fe36faca","input_length":476,"output_length":111,"hash_ids":[2704053],"delay":9306.5} +{"session_id":"sess-3657fe36faca","input_length":215,"output_length":834,"hash_ids":[2704054],"delay":45818.9} +{"session_id":"sess-3657fe36faca","input_length":259,"output_length":133,"hash_ids":[2704055],"delay":704.2} +{"session_id":"sess-3657fe36faca","input_length":558,"output_length":161,"hash_ids":[2704056,2704057],"delay":1261.5} +{"session_id":"sess-3657fe36faca","input_length":842,"output_length":86,"hash_ids":[2704058,2704059],"delay":31300.7} +{"session_id":"sess-3657fe36faca","input_length":1053,"output_length":69,"hash_ids":[2704060,2704061,2704062],"delay":7448.8} +{"session_id":"sess-8d39bee9d199","input_length":26975,"output_length":265,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,2708032],"timestamp":0.0,"group_id":36} +{"session_id":"sess-8d39bee9d199","input_length":177,"output_length":251,"hash_ids":[2708033],"delay":3374.0} +{"session_id":"sess-8d39bee9d199","input_length":837,"output_length":65,"hash_ids":[2708034,2708035],"delay":2373.1} +{"session_id":"sess-8d39bee9d199","input_length":2684,"output_length":241,"hash_ids":[2708036,2708037,2708038,2708039,2708040,2708041],"delay":871.9} +{"session_id":"sess-8d39bee9d199","input_length":2301,"output_length":135,"hash_ids":[2708042,2708043,2708044,2708045,2708046],"delay":1094.2} +{"session_id":"sess-8d39bee9d199","input_length":1392,"output_length":154,"hash_ids":[2708047,2708048,2708049],"delay":789.3} +{"session_id":"sess-8d39bee9d199","input_length":596,"output_length":131,"hash_ids":[2708050,2708051],"delay":1366.4} +{"session_id":"sess-8d39bee9d199","input_length":648,"output_length":126,"hash_ids":[2708052,2708053],"delay":499.8} +{"session_id":"sess-6007c26ecf9a","input_length":30292,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2712032,2712033,2712034,2712035,2712036,2712037,2712038,2712039],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6007c26ecf9a","input_length":528,"output_length":142,"hash_ids":[2712040,2712041],"delay":26276.0} +{"session_id":"sess-6007c26ecf9a","input_length":88,"output_length":860,"hash_ids":[2712042],"delay":3005.9} +{"session_id":"sess-6007c26ecf9a","input_length":2281,"output_length":451,"hash_ids":[2712043,2712044,2712045,2712046,2712047],"delay":1388.5} +{"session_id":"sess-6007c26ecf9a","input_length":756,"output_length":314,"hash_ids":[2712048,2712049],"delay":1530.7} +{"session_id":"sess-6007c26ecf9a","input_length":1928,"output_length":69,"hash_ids":[2712050,2712051,2712052,2712053],"delay":2428.1} +{"session_id":"sess-6007c26ecf9a","input_length":748,"output_length":208,"hash_ids":[2712054,2712055],"delay":1064.4} +{"session_id":"sess-6007c26ecf9a","input_length":1583,"output_length":374,"hash_ids":[2712056,2712057,2712058,2712059],"delay":718.0} +{"session_id":"sess-ecb2fee58c19","input_length":36258,"output_length":473,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2716032,2716033,2716034,2716035,2716036,2716037,2716038,2716039,2716040,2716041,2716042,2716043,2716044,2716045,2716046,2716047,2716048,2716049,2716050],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ecb2fee58c19","input_length":1771,"output_length":96,"hash_ids":[2716051,2716052,2716053,2716054],"delay":569.0} +{"session_id":"sess-ecb2fee58c19","input_length":1274,"output_length":1479,"hash_ids":[2716055,2716056,2716057],"delay":579.9} +{"session_id":"sess-ecb2fee58c19","input_length":411,"output_length":443,"hash_ids":[2716058],"delay":356.0} +{"session_id":"sess-ecb2fee58c19","input_length":1949,"output_length":269,"hash_ids":[2716059,2716060,2716061,2716062],"delay":17001.0} +{"session_id":"sess-ecb2fee58c19","input_length":1685,"output_length":655,"hash_ids":[2716063,2716064,2716065,2716066],"delay":1282.6} +{"session_id":"sess-ecb2fee58c19","input_length":1719,"output_length":1383,"hash_ids":[2716067,2716068,2716069,2716070],"delay":742.8} +{"session_id":"sess-ecb2fee58c19","input_length":1543,"output_length":325,"hash_ids":[2716071,2716072,2716073,2716074],"delay":1060.8} +{"session_id":"sess-ecb2fee58c19","input_length":569,"output_length":98,"hash_ids":[2716075,2716076],"delay":12707.7} +{"session_id":"sess-ecb2fee58c19","input_length":297,"output_length":657,"hash_ids":[2716077],"delay":368.6} +{"session_id":"sess-ecb2fee58c19","input_length":508,"output_length":175,"hash_ids":[2716078],"delay":36582.1} +{"session_id":"sess-ecb2fee58c19","input_length":689,"output_length":814,"hash_ids":[2716079,2716080],"delay":769.6} +{"session_id":"sess-ecb2fee58c19","input_length":896,"output_length":158,"hash_ids":[2716081,2716082],"delay":304.9} +{"session_id":"sess-ecb2fee58c19","input_length":2765,"output_length":125,"hash_ids":[2716083,2716084,2716085,2716086,2716087,2716088],"delay":7295.5} +{"session_id":"sess-ecb2fee58c19","input_length":2149,"output_length":161,"hash_ids":[2716089,2716090,2716091,2716092,2716093],"delay":1703.9} +{"session_id":"sess-ecb2fee58c19","input_length":1024,"output_length":209,"hash_ids":[2716094,2716095],"delay":883.7} +{"session_id":"sess-ecb2fee58c19","input_length":1820,"output_length":220,"hash_ids":[2716096,2716097,2716098,2716099],"delay":234.3} +{"session_id":"sess-27e656e93e43","input_length":28427,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2720032,2720033,2720034,2720035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-27e656e93e43","input_length":166,"output_length":485,"hash_ids":[2720036],"delay":828.5} +{"session_id":"sess-27e656e93e43","input_length":429,"output_length":57,"hash_ids":[2720037],"delay":2557.0} +{"session_id":"sess-27e656e93e43","input_length":470,"output_length":385,"hash_ids":[2720038],"delay":1794.2} +{"session_id":"sess-27e656e93e43","input_length":379,"output_length":88,"hash_ids":[2720039],"delay":1771.2} +{"session_id":"sess-27e656e93e43","input_length":479,"output_length":361,"hash_ids":[2720040],"delay":3749.0} +{"session_id":"sess-27e656e93e43","input_length":324,"output_length":632,"hash_ids":[2720041],"delay":3463.5} +{"session_id":"sess-27e656e93e43","input_length":939,"output_length":524,"hash_ids":[2720042,2720043],"delay":2441.2} +{"session_id":"sess-27e656e93e43","input_length":465,"output_length":328,"hash_ids":[2720044],"delay":2068.8} +{"session_id":"sess-27e656e93e43","input_length":1598,"output_length":501,"hash_ids":[2720045,2720046,2720047,2720048],"delay":9186.6} +{"session_id":"sess-27e656e93e43","input_length":773,"output_length":140,"hash_ids":[2720049,2720050],"delay":530.8} +{"session_id":"sess-27e656e93e43","input_length":575,"output_length":286,"hash_ids":[2720051,2720052],"delay":2025.4} +{"session_id":"sess-27e656e93e43","input_length":170,"output_length":187,"hash_ids":[2720053],"delay":169.2} +{"session_id":"sess-27e656e93e43","input_length":1212,"output_length":219,"hash_ids":[2720054,2720055,2720056],"delay":4817.3} +{"session_id":"sess-27e656e93e43","input_length":1289,"output_length":425,"hash_ids":[2720057,2720058,2720059],"delay":17937.3} +{"session_id":"sess-27e656e93e43","input_length":2094,"output_length":30,"hash_ids":[2720060,2720061,2720062,2720063,2720064],"delay":956.6} +{"session_id":"sess-27e656e93e43","input_length":1132,"output_length":318,"hash_ids":[2720065,2720066,2720067],"delay":179.8} +{"session_id":"sess-27e656e93e43","input_length":2629,"output_length":1304,"hash_ids":[2720068,2720069,2720070,2720071,2720072,2720073],"delay":27648.6} +{"session_id":"sess-27e656e93e43","input_length":580,"output_length":219,"hash_ids":[2720074,2720075],"delay":5771.8} +{"session_id":"sess-27e656e93e43","input_length":301,"output_length":91,"hash_ids":[2720076],"delay":261.2} +{"session_id":"sess-27e656e93e43","input_length":261,"output_length":268,"hash_ids":[2720077],"delay":414.8} +{"session_id":"sess-27e656e93e43","input_length":1752,"output_length":158,"hash_ids":[2720078,2720079,2720080,2720081],"delay":401.0} +{"session_id":"sess-27e656e93e43","input_length":1431,"output_length":117,"hash_ids":[2720082,2720083,2720084],"delay":306.2} +{"session_id":"sess-27e656e93e43","input_length":2351,"output_length":649,"hash_ids":[2720085,2720086,2720087,2720088,2720089],"delay":631.7} +{"session_id":"sess-27e656e93e43","input_length":353,"output_length":272,"hash_ids":[2720090],"delay":61.3} +{"session_id":"sess-27e656e93e43","input_length":1274,"output_length":244,"hash_ids":[2720091,2720092,2720093],"delay":1356.2} +{"session_id":"sess-27e656e93e43","input_length":446,"output_length":35,"hash_ids":[2720094],"delay":6850.2} +{"session_id":"sess-27e656e93e43","input_length":694,"output_length":511,"hash_ids":[2720095,2720096],"delay":292.8} +{"session_id":"sess-27e656e93e43","input_length":316,"output_length":187,"hash_ids":[2720097],"delay":356.5} +{"session_id":"sess-27e656e93e43","input_length":2876,"output_length":116,"hash_ids":[2720098,2720099,2720100,2720101,2720102,2720103],"delay":4075.8} +{"session_id":"sess-11f1f88838bc","input_length":28057,"output_length":388,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2724032,2724033,2724034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-11f1f88838bc","input_length":724,"output_length":83,"hash_ids":[2724035,2724036],"delay":27170.8} +{"session_id":"sess-11f1f88838bc","input_length":507,"output_length":53,"hash_ids":[2724037],"delay":368.2} +{"session_id":"sess-11f1f88838bc","input_length":1035,"output_length":352,"hash_ids":[2724038,2724039,2724040],"delay":59827.2} +{"session_id":"sess-11f1f88838bc","input_length":462,"output_length":248,"hash_ids":[2724041],"delay":25591.8} +{"session_id":"sess-11f1f88838bc","input_length":158,"output_length":106,"hash_ids":[2724042],"delay":1129.2} +{"session_id":"sess-11f1f88838bc","input_length":291,"output_length":383,"hash_ids":[2724043],"delay":1242.8} +{"session_id":"sess-11f1f88838bc","input_length":481,"output_length":125,"hash_ids":[2724044],"delay":708.1} +{"session_id":"sess-11f1f88838bc","input_length":491,"output_length":87,"hash_ids":[2724045],"delay":448.2} +{"session_id":"sess-11f1f88838bc","input_length":772,"output_length":793,"hash_ids":[2724046,2724047],"delay":663.6} +{"session_id":"sess-11f1f88838bc","input_length":2957,"output_length":133,"hash_ids":[2724048,2724049,2724050,2724051,2724052,2724053],"delay":291.5} +{"session_id":"sess-11f1f88838bc","input_length":2822,"output_length":39,"hash_ids":[2724054,2724055,2724056,2724057,2724058,2724059],"delay":460.2} +{"session_id":"sess-11f1f88838bc","input_length":911,"output_length":124,"hash_ids":[2724060,2724061],"delay":12922.8} +{"session_id":"sess-11f1f88838bc","input_length":1472,"output_length":124,"hash_ids":[2724062,2724063,2724064],"delay":2290.3} +{"session_id":"sess-11f1f88838bc","input_length":1317,"output_length":96,"hash_ids":[2724065,2724066,2724067],"delay":1879.8} +{"session_id":"sess-11f1f88838bc","input_length":2013,"output_length":134,"hash_ids":[2724068,2724069,2724070,2724071],"delay":2352.3} +{"session_id":"sess-11f1f88838bc","input_length":1349,"output_length":68,"hash_ids":[2724072,2724073,2724074],"delay":1825.4} +{"session_id":"sess-11f1f88838bc","input_length":1356,"output_length":564,"hash_ids":[2724075,2724076,2724077],"delay":763.5} +{"session_id":"sess-11f1f88838bc","input_length":1169,"output_length":149,"hash_ids":[2724078,2724079,2724080],"delay":3482.8} +{"session_id":"sess-11f1f88838bc","input_length":838,"output_length":229,"hash_ids":[2724081,2724082],"delay":515.8} +{"session_id":"sess-11f1f88838bc","input_length":2907,"output_length":58,"hash_ids":[2724083,2724084,2724085,2724086,2724087,2724088],"delay":592.8} +{"session_id":"sess-11f1f88838bc","input_length":722,"output_length":30,"hash_ids":[2724089,2724090],"delay":753.5} +{"session_id":"sess-11f1f88838bc","input_length":1039,"output_length":295,"hash_ids":[2724091,2724092,2724093],"delay":8837.6} +{"session_id":"sess-11f1f88838bc","input_length":2277,"output_length":118,"hash_ids":[2724094,2724095,2724096,2724097,2724098],"delay":1655.3} +{"session_id":"sess-11f1f88838bc","input_length":2082,"output_length":135,"hash_ids":[2724099,2724100,2724101,2724102,2724103],"delay":361.6} +{"session_id":"sess-11f1f88838bc","input_length":333,"output_length":347,"hash_ids":[2724104],"delay":259.2} +{"session_id":"sess-11f1f88838bc","input_length":278,"output_length":761,"hash_ids":[2724105],"delay":152.2} +{"session_id":"sess-d5ae8bc9a960","input_length":26642,"output_length":339,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2728032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d5ae8bc9a960","input_length":768,"output_length":260,"hash_ids":[2728033,2728034],"delay":895.4} +{"session_id":"sess-d5ae8bc9a960","input_length":2970,"output_length":559,"hash_ids":[2728035,2728036,2728037,2728038,2728039,2728040],"delay":665.6} +{"session_id":"sess-d5ae8bc9a960","input_length":170,"output_length":165,"hash_ids":[2728041],"delay":437.9} +{"session_id":"sess-d5ae8bc9a960","input_length":226,"output_length":262,"hash_ids":[2728042],"delay":558.1} +{"session_id":"sess-d5ae8bc9a960","input_length":337,"output_length":499,"hash_ids":[2728043],"delay":491.9} +{"session_id":"sess-d5ae8bc9a960","input_length":2066,"output_length":603,"hash_ids":[2728044,2728045,2728046,2728047,2728048],"delay":959.1} +{"session_id":"sess-d5ae8bc9a960","input_length":1060,"output_length":268,"hash_ids":[2728049,2728050,2728051],"delay":2707.0} +{"session_id":"sess-d5ae8bc9a960","input_length":118,"output_length":574,"hash_ids":[2728052],"delay":5486.0} +{"session_id":"sess-d5ae8bc9a960","input_length":235,"output_length":94,"hash_ids":[2728053],"delay":12534.7} +{"session_id":"sess-d5ae8bc9a960","input_length":1634,"output_length":52,"hash_ids":[2728054,2728055,2728056,2728057],"delay":15028.4} +{"session_id":"sess-d5ae8bc9a960","input_length":402,"output_length":191,"hash_ids":[2728058],"delay":382.1} +{"session_id":"sess-d5ae8bc9a960","input_length":1365,"output_length":435,"hash_ids":[2728059,2728060,2728061],"delay":11015.5} +{"session_id":"sess-d5ae8bc9a960","input_length":1489,"output_length":134,"hash_ids":[2728062,2728063,2728064],"delay":21356.0} +{"session_id":"sess-d5ae8bc9a960","input_length":548,"output_length":88,"hash_ids":[2728065,2728066],"delay":248.1} +{"session_id":"sess-d5ae8bc9a960","input_length":2404,"output_length":115,"hash_ids":[2728067,2728068,2728069,2728070,2728071],"delay":45362.4} +{"session_id":"sess-d5ae8bc9a960","input_length":407,"output_length":243,"hash_ids":[2728072],"delay":748.5} +{"session_id":"sess-d5ae8bc9a960","input_length":1165,"output_length":30,"hash_ids":[2728073,2728074,2728075],"delay":5055.5} +{"session_id":"sess-d5ae8bc9a960","input_length":1657,"output_length":320,"hash_ids":[2728076,2728077,2728078,2728079],"delay":9769.3} +{"session_id":"sess-d5ae8bc9a960","input_length":1291,"output_length":144,"hash_ids":[2728080,2728081,2728082],"delay":23891.4} +{"session_id":"sess-d5ae8bc9a960","input_length":1146,"output_length":180,"hash_ids":[2728083,2728084,2728085],"delay":514.5} +{"session_id":"sess-d5ae8bc9a960","input_length":238,"output_length":136,"hash_ids":[2728086],"delay":691.5} +{"session_id":"sess-d5ae8bc9a960","input_length":2626,"output_length":162,"hash_ids":[2728087,2728088,2728089,2728090,2728091,2728092],"delay":133.9} +{"session_id":"sess-d5ae8bc9a960","input_length":1194,"output_length":234,"hash_ids":[2728093,2728094,2728095],"delay":1884.9} +{"session_id":"sess-d5ae8bc9a960","input_length":1161,"output_length":427,"hash_ids":[2728096,2728097,2728098],"delay":878.9} +{"session_id":"sess-073fd5a2b7ad","input_length":31445,"output_length":449,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2732032,2732033,2732034,2732035,2732036,2732037,2732038,2732039,2732040,2732041],"timestamp":0.0,"group_id":4} +{"session_id":"sess-073fd5a2b7ad","input_length":877,"output_length":58,"hash_ids":[2732042,2732043],"delay":1519.0} +{"session_id":"sess-073fd5a2b7ad","input_length":918,"output_length":606,"hash_ids":[2732044,2732045],"delay":340.0} +{"session_id":"sess-073fd5a2b7ad","input_length":1933,"output_length":1086,"hash_ids":[2732046,2732047,2732048,2732049],"delay":1160.4} +{"session_id":"sess-073fd5a2b7ad","input_length":771,"output_length":91,"hash_ids":[2732050,2732051],"delay":19624.1} +{"session_id":"sess-073fd5a2b7ad","input_length":2620,"output_length":265,"hash_ids":[2732052,2732053,2732054,2732055,2732056,2732057],"delay":37869.5} +{"session_id":"sess-073fd5a2b7ad","input_length":331,"output_length":264,"hash_ids":[2732058],"delay":1124.4} +{"session_id":"sess-073fd5a2b7ad","input_length":1164,"output_length":318,"hash_ids":[2732059,2732060,2732061],"delay":1722.6} +{"session_id":"sess-073fd5a2b7ad","input_length":109,"output_length":843,"hash_ids":[2732062],"delay":10431.0} +{"session_id":"sess-073fd5a2b7ad","input_length":1601,"output_length":108,"hash_ids":[2732063,2732064,2732065,2732066],"delay":21392.3} +{"session_id":"sess-073fd5a2b7ad","input_length":1408,"output_length":44,"hash_ids":[2732067,2732068,2732069],"delay":5673.0} +{"session_id":"sess-a3511a1683bf","input_length":27569,"output_length":147,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2736032,2736033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a3511a1683bf","input_length":1306,"output_length":45,"hash_ids":[2736034,2736035,2736036],"delay":30879.9} +{"session_id":"sess-a3511a1683bf","input_length":2228,"output_length":146,"hash_ids":[2736037,2736038,2736039,2736040,2736041],"delay":635.8} +{"session_id":"sess-a3511a1683bf","input_length":840,"output_length":305,"hash_ids":[2736042,2736043],"delay":2065.3} +{"session_id":"sess-a3511a1683bf","input_length":452,"output_length":212,"hash_ids":[2736044],"delay":746.8} +{"session_id":"sess-a3511a1683bf","input_length":1951,"output_length":174,"hash_ids":[2736045,2736046,2736047,2736048],"delay":16598.6} +{"session_id":"sess-a3511a1683bf","input_length":1218,"output_length":130,"hash_ids":[2736049,2736050,2736051],"delay":382.3} +{"session_id":"sess-a3511a1683bf","input_length":75,"output_length":30,"hash_ids":[2736052],"delay":42.6} +{"session_id":"sess-a3511a1683bf","input_length":698,"output_length":151,"hash_ids":[2736053,2736054],"delay":11817.9} +{"session_id":"sess-a3511a1683bf","input_length":537,"output_length":37,"hash_ids":[2736055,2736056],"delay":3131.7} +{"session_id":"sess-a3511a1683bf","input_length":1875,"output_length":140,"hash_ids":[2736057,2736058,2736059,2736060],"delay":921.0} +{"session_id":"sess-a3511a1683bf","input_length":903,"output_length":382,"hash_ids":[2736061,2736062],"delay":3268.9} +{"session_id":"sess-a3511a1683bf","input_length":625,"output_length":346,"hash_ids":[2736063,2736064],"delay":7235.3} +{"session_id":"sess-a3511a1683bf","input_length":2397,"output_length":213,"hash_ids":[2736065,2736066,2736067,2736068,2736069],"delay":938.9} +{"session_id":"sess-a3511a1683bf","input_length":2954,"output_length":195,"hash_ids":[2736070,2736071,2736072,2736073,2736074,2736075],"delay":646.4} +{"session_id":"sess-a3511a1683bf","input_length":1078,"output_length":448,"hash_ids":[2736076,2736077,2736078],"delay":6057.5} +{"session_id":"sess-a3511a1683bf","input_length":1922,"output_length":36,"hash_ids":[2736079,2736080,2736081,2736082],"delay":7660.7} +{"session_id":"sess-a3511a1683bf","input_length":1486,"output_length":189,"hash_ids":[2736083,2736084,2736085],"delay":10569.1} +{"session_id":"sess-a3511a1683bf","input_length":418,"output_length":130,"hash_ids":[2736086],"delay":332.3} +{"session_id":"sess-a3511a1683bf","input_length":1371,"output_length":195,"hash_ids":[2736087,2736088,2736089],"delay":961.8} +{"session_id":"sess-a3511a1683bf","input_length":1212,"output_length":150,"hash_ids":[2736090,2736091,2736092],"delay":956.3} +{"session_id":"sess-a3511a1683bf","input_length":68,"output_length":1185,"hash_ids":[2736093],"delay":9517.5} +{"session_id":"sess-a3511a1683bf","input_length":185,"output_length":108,"hash_ids":[2736094],"delay":1319.2} +{"session_id":"sess-a3511a1683bf","input_length":1696,"output_length":358,"hash_ids":[2736095,2736096,2736097,2736098],"delay":2731.3} +{"session_id":"sess-a3511a1683bf","input_length":567,"output_length":63,"hash_ids":[2736099,2736100],"delay":11716.2} +{"session_id":"sess-a3511a1683bf","input_length":461,"output_length":342,"hash_ids":[2736101],"delay":752.9} +{"session_id":"sess-a3511a1683bf","input_length":1293,"output_length":86,"hash_ids":[2736102,2736103,2736104],"delay":1377.2} +{"session_id":"sess-a3511a1683bf","input_length":261,"output_length":622,"hash_ids":[2736105],"delay":3417.0} +{"session_id":"sess-a3511a1683bf","input_length":573,"output_length":468,"hash_ids":[2736106,2736107],"delay":1769.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":27026,"output_length":1348,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2740032],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7c0cf35e6c3a","input_length":54,"output_length":416,"hash_ids":[2740033],"delay":194.5} +{"session_id":"sess-7c0cf35e6c3a","input_length":398,"output_length":974,"hash_ids":[2740034],"delay":3761.1} +{"session_id":"sess-7c0cf35e6c3a","input_length":484,"output_length":286,"hash_ids":[2740035],"delay":1794.5} +{"session_id":"sess-7c0cf35e6c3a","input_length":1544,"output_length":594,"hash_ids":[2740036,2740037,2740038,2740039],"delay":1847.7} +{"session_id":"sess-7c0cf35e6c3a","input_length":837,"output_length":95,"hash_ids":[2740040,2740041],"delay":1357.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":2530,"output_length":819,"hash_ids":[2740042,2740043,2740044,2740045,2740046],"delay":1912.4} +{"session_id":"sess-7c0cf35e6c3a","input_length":1699,"output_length":30,"hash_ids":[2740047,2740048,2740049,2740050],"delay":1794.3} +{"session_id":"sess-7c0cf35e6c3a","input_length":542,"output_length":318,"hash_ids":[2740051,2740052],"delay":476.5} +{"session_id":"sess-7c0cf35e6c3a","input_length":1282,"output_length":795,"hash_ids":[2740053,2740054,2740055],"delay":2088.6} +{"session_id":"sess-7c0cf35e6c3a","input_length":1430,"output_length":70,"hash_ids":[2740056,2740057,2740058],"delay":448.6} +{"session_id":"sess-7c0cf35e6c3a","input_length":518,"output_length":857,"hash_ids":[2740059,2740060],"delay":8131.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":2079,"output_length":171,"hash_ids":[2740061,2740062,2740063,2740064,2740065],"delay":1164.3} +{"session_id":"sess-7c0cf35e6c3a","input_length":1567,"output_length":248,"hash_ids":[2740066,2740067,2740068,2740069],"delay":701.4} +{"session_id":"sess-7c0cf35e6c3a","input_length":240,"output_length":145,"hash_ids":[2740070],"delay":1892.8} +{"session_id":"sess-7c0cf35e6c3a","input_length":198,"output_length":85,"hash_ids":[2740071],"delay":3094.4} +{"session_id":"sess-7c0cf35e6c3a","input_length":1509,"output_length":61,"hash_ids":[2740072,2740073,2740074],"delay":249.3} +{"session_id":"sess-7c0cf35e6c3a","input_length":238,"output_length":127,"hash_ids":[2740075],"delay":750.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":1808,"output_length":112,"hash_ids":[2740076,2740077,2740078,2740079],"delay":707.8} +{"session_id":"sess-7c0cf35e6c3a","input_length":426,"output_length":128,"hash_ids":[2740080],"delay":561.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":1315,"output_length":343,"hash_ids":[2740081,2740082,2740083],"delay":603.8} +{"session_id":"sess-7c0cf35e6c3a","input_length":443,"output_length":206,"hash_ids":[2740084],"delay":693.7} +{"session_id":"sess-7c0cf35e6c3a","input_length":305,"output_length":274,"hash_ids":[2740085],"delay":7930.1} +{"session_id":"sess-7c0cf35e6c3a","input_length":911,"output_length":30,"hash_ids":[2740086,2740087],"delay":1896.5} +{"session_id":"sess-7c0cf35e6c3a","input_length":858,"output_length":354,"hash_ids":[2740088,2740089],"delay":6035.9} +{"session_id":"sess-7c0cf35e6c3a","input_length":596,"output_length":99,"hash_ids":[2740090,2740091],"delay":11767.0} +{"session_id":"sess-7c0cf35e6c3a","input_length":361,"output_length":424,"hash_ids":[2740092],"delay":2664.8} +{"session_id":"sess-7c0cf35e6c3a","input_length":828,"output_length":31,"hash_ids":[2740093,2740094],"delay":248.7} +{"session_id":"sess-7c0cf35e6c3a","input_length":1886,"output_length":756,"hash_ids":[2740095,2740096,2740097,2740098],"delay":1473.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":29431,"output_length":198,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,2744032,2744033,2744034,2744035,2744036,2744037],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4b04fb4f3ce5","input_length":2112,"output_length":70,"hash_ids":[2744038,2744039,2744040,2744041,2744042],"delay":757.1} +{"session_id":"sess-4b04fb4f3ce5","input_length":454,"output_length":441,"hash_ids":[2744043],"delay":1041.6} +{"session_id":"sess-4b04fb4f3ce5","input_length":497,"output_length":440,"hash_ids":[2744044],"delay":12231.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":962,"output_length":103,"hash_ids":[2744045,2744046],"delay":2793.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":813,"output_length":370,"hash_ids":[2744047,2744048],"delay":5691.4} +{"session_id":"sess-4b04fb4f3ce5","input_length":2009,"output_length":44,"hash_ids":[2744049,2744050,2744051,2744052],"delay":2047.6} +{"session_id":"sess-4b04fb4f3ce5","input_length":388,"output_length":133,"hash_ids":[2744053],"delay":4250.7} +{"session_id":"sess-4b04fb4f3ce5","input_length":2257,"output_length":132,"hash_ids":[2744054,2744055,2744056,2744057,2744058],"delay":476.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":2226,"output_length":248,"hash_ids":[2744059,2744060,2744061,2744062,2744063],"delay":814.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":422,"output_length":313,"hash_ids":[2744064],"delay":564.7} +{"session_id":"sess-4b04fb4f3ce5","input_length":755,"output_length":278,"hash_ids":[2744065,2744066],"delay":839.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":827,"output_length":422,"hash_ids":[2744067,2744068],"delay":1459.2} +{"session_id":"sess-4b04fb4f3ce5","input_length":1622,"output_length":212,"hash_ids":[2744069,2744070,2744071,2744072],"delay":29721.9} +{"session_id":"sess-4b04fb4f3ce5","input_length":1757,"output_length":115,"hash_ids":[2744073,2744074,2744075,2744076],"delay":2627.0} +{"session_id":"sess-4b04fb4f3ce5","input_length":1416,"output_length":414,"hash_ids":[2744077,2744078,2744079],"delay":2211.9} +{"session_id":"sess-4b04fb4f3ce5","input_length":752,"output_length":493,"hash_ids":[2744080,2744081],"delay":780.3} +{"session_id":"sess-4b04fb4f3ce5","input_length":214,"output_length":624,"hash_ids":[2744082],"delay":531.1} +{"session_id":"sess-4b04fb4f3ce5","input_length":275,"output_length":302,"hash_ids":[2744083],"delay":10776.0} +{"session_id":"sess-4b04fb4f3ce5","input_length":1635,"output_length":223,"hash_ids":[2744084,2744085,2744086,2744087],"delay":575.2} +{"session_id":"sess-4b04fb4f3ce5","input_length":412,"output_length":432,"hash_ids":[2744088],"delay":9036.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":1626,"output_length":62,"hash_ids":[2744089,2744090,2744091,2744092],"delay":7169.8} +{"session_id":"sess-4b04fb4f3ce5","input_length":713,"output_length":179,"hash_ids":[2744093,2744094],"delay":1190.9} +{"session_id":"sess-4b04fb4f3ce5","input_length":2766,"output_length":622,"hash_ids":[2744095,2744096,2744097,2744098,2744099,2744100],"delay":448.9} +{"session_id":"sess-4b04fb4f3ce5","input_length":619,"output_length":242,"hash_ids":[2744101,2744102],"delay":278.2} +{"session_id":"sess-4b04fb4f3ce5","input_length":253,"output_length":74,"hash_ids":[2744103],"delay":497.6} +{"session_id":"sess-21b348d731bd","input_length":30115,"output_length":281,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,2748032,2748033,2748034,2748035,2748036,2748037,2748038],"timestamp":0.0,"group_id":5} +{"session_id":"sess-21b348d731bd","input_length":330,"output_length":99,"hash_ids":[2748039],"delay":1950.8} +{"session_id":"sess-21b348d731bd","input_length":904,"output_length":214,"hash_ids":[2748040,2748041],"delay":1001.8} +{"session_id":"sess-21b348d731bd","input_length":2615,"output_length":435,"hash_ids":[2748042,2748043,2748044,2748045,2748046,2748047],"delay":14590.3} +{"session_id":"sess-21b348d731bd","input_length":354,"output_length":347,"hash_ids":[2748048],"delay":1783.8} +{"session_id":"sess-21b348d731bd","input_length":362,"output_length":137,"hash_ids":[2748049],"delay":586.7} +{"session_id":"sess-21b348d731bd","input_length":534,"output_length":236,"hash_ids":[2748050,2748051],"delay":2781.0} +{"session_id":"sess-21b348d731bd","input_length":2120,"output_length":39,"hash_ids":[2748052,2748053,2748054,2748055,2748056],"delay":2176.0} +{"session_id":"sess-21b348d731bd","input_length":671,"output_length":46,"hash_ids":[2748057,2748058],"delay":34086.1} +{"session_id":"sess-21b348d731bd","input_length":1618,"output_length":472,"hash_ids":[2748059,2748060,2748061,2748062],"delay":29969.4} +{"session_id":"sess-21b348d731bd","input_length":2607,"output_length":152,"hash_ids":[2748063,2748064,2748065,2748066,2748067,2748068],"delay":13550.5} +{"session_id":"sess-21b348d731bd","input_length":2165,"output_length":180,"hash_ids":[2748069,2748070,2748071,2748072,2748073],"delay":379.8} +{"session_id":"sess-21b348d731bd","input_length":998,"output_length":283,"hash_ids":[2748074,2748075],"delay":725.8} +{"session_id":"sess-21b348d731bd","input_length":594,"output_length":116,"hash_ids":[2748076,2748077],"delay":7980.3} +{"session_id":"sess-21b348d731bd","input_length":274,"output_length":391,"hash_ids":[2748078],"delay":260.0} +{"session_id":"sess-21b348d731bd","input_length":565,"output_length":411,"hash_ids":[2748079,2748080],"delay":526.1} +{"session_id":"sess-21b348d731bd","input_length":360,"output_length":76,"hash_ids":[2748081],"delay":1460.0} +{"session_id":"sess-21b348d731bd","input_length":2651,"output_length":103,"hash_ids":[2748082,2748083,2748084,2748085,2748086,2748087],"delay":644.4} +{"session_id":"sess-21b348d731bd","input_length":2312,"output_length":351,"hash_ids":[2748088,2748089,2748090,2748091,2748092],"delay":846.1} +{"session_id":"sess-21b348d731bd","input_length":1854,"output_length":403,"hash_ids":[2748093,2748094,2748095,2748096],"delay":359.5} +{"session_id":"sess-21b348d731bd","input_length":513,"output_length":165,"hash_ids":[2748097,2748098],"delay":4522.2} +{"session_id":"sess-21b348d731bd","input_length":304,"output_length":82,"hash_ids":[2748099],"delay":316.9} +{"session_id":"sess-21b348d731bd","input_length":804,"output_length":314,"hash_ids":[2748100,2748101],"delay":387.3} +{"session_id":"sess-21b348d731bd","input_length":300,"output_length":387,"hash_ids":[2748102],"delay":402.1} +{"session_id":"sess-21b348d731bd","input_length":1255,"output_length":159,"hash_ids":[2748103,2748104,2748105],"delay":369.1} +{"session_id":"sess-21b348d731bd","input_length":741,"output_length":349,"hash_ids":[2748106,2748107],"delay":7866.6} +{"session_id":"sess-6ec467790aec","input_length":26398,"output_length":296,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6ec467790aec","input_length":297,"output_length":77,"hash_ids":[2748108],"delay":1033.6} +{"session_id":"sess-6ec467790aec","input_length":898,"output_length":1112,"hash_ids":[2748109,2748110],"delay":2783.0} +{"session_id":"sess-6ec467790aec","input_length":580,"output_length":436,"hash_ids":[2748111,2748112],"delay":39757.2} +{"session_id":"sess-6ec467790aec","input_length":2422,"output_length":464,"hash_ids":[2748113,2748114,2748115,2748116,2748117],"delay":769.0} +{"session_id":"sess-6ec467790aec","input_length":193,"output_length":64,"hash_ids":[2748118],"delay":4106.1} +{"session_id":"sess-6ec467790aec","input_length":1423,"output_length":201,"hash_ids":[2748119,2748120,2748121],"delay":490.6} +{"session_id":"sess-6ec467790aec","input_length":1450,"output_length":372,"hash_ids":[2748122,2748123,2748124],"delay":26958.4} +{"session_id":"sess-29d6bbf9a1ec","input_length":35307,"output_length":691,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2756032,2756033,2756034,2756035,2756036,2756037,2756038,2756039,2756040,2756041,2756042,2756043,2756044,2756045,2756046,2756047,2756048],"timestamp":0.0,"group_id":1} +{"session_id":"sess-29d6bbf9a1ec","input_length":1326,"output_length":444,"hash_ids":[2756049,2756050,2756051],"delay":17750.6} +{"session_id":"sess-29d6bbf9a1ec","input_length":1761,"output_length":112,"hash_ids":[2756052,2756053,2756054,2756055],"delay":1586.9} +{"session_id":"sess-29d6bbf9a1ec","input_length":1151,"output_length":99,"hash_ids":[2756056,2756057,2756058],"delay":646.0} +{"session_id":"sess-29d6bbf9a1ec","input_length":304,"output_length":78,"hash_ids":[2756059],"delay":501.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":1271,"output_length":130,"hash_ids":[2756060,2756061,2756062],"delay":1235.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":426,"output_length":174,"hash_ids":[2756063],"delay":12721.4} +{"session_id":"sess-29d6bbf9a1ec","input_length":921,"output_length":329,"hash_ids":[2756064,2756065],"delay":596.5} +{"session_id":"sess-29d6bbf9a1ec","input_length":198,"output_length":60,"hash_ids":[2756066],"delay":14095.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":797,"output_length":237,"hash_ids":[2756067,2756068],"delay":630.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":793,"output_length":475,"hash_ids":[2756069,2756070],"delay":809.3} +{"session_id":"sess-29d6bbf9a1ec","input_length":335,"output_length":55,"hash_ids":[2756071],"delay":973.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":1376,"output_length":108,"hash_ids":[2756072,2756073,2756074],"delay":10279.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":1135,"output_length":30,"hash_ids":[2756075,2756076,2756077],"delay":1368.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":276,"output_length":81,"hash_ids":[2756078],"delay":255.0} +{"session_id":"sess-29d6bbf9a1ec","input_length":223,"output_length":63,"hash_ids":[2756079],"delay":1216.1} +{"session_id":"sess-29d6bbf9a1ec","input_length":648,"output_length":231,"hash_ids":[2756080,2756081],"delay":397.7} +{"session_id":"sess-29d6bbf9a1ec","input_length":653,"output_length":89,"hash_ids":[2756082,2756083],"delay":357.5} +{"session_id":"sess-29d6bbf9a1ec","input_length":450,"output_length":209,"hash_ids":[2756084],"delay":14633.1} +{"session_id":"sess-29d6bbf9a1ec","input_length":146,"output_length":1176,"hash_ids":[2756085],"delay":421.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":1553,"output_length":98,"hash_ids":[2756086,2756087,2756088,2756089],"delay":11615.3} +{"session_id":"sess-29d6bbf9a1ec","input_length":190,"output_length":240,"hash_ids":[2756090],"delay":3552.2} +{"session_id":"sess-29d6bbf9a1ec","input_length":998,"output_length":203,"hash_ids":[2756091,2756092],"delay":936.9} +{"session_id":"sess-29d6bbf9a1ec","input_length":679,"output_length":37,"hash_ids":[2756093,2756094],"delay":1359.0} +{"session_id":"sess-29d6bbf9a1ec","input_length":2267,"output_length":49,"hash_ids":[2756095,2756096,2756097,2756098,2756099],"delay":177.9} +{"session_id":"sess-29d6bbf9a1ec","input_length":845,"output_length":321,"hash_ids":[2756100,2756101],"delay":6962.8} +{"session_id":"sess-29d6bbf9a1ec","input_length":1292,"output_length":693,"hash_ids":[2756102,2756103,2756104],"delay":731.5} +{"session_id":"sess-29d6bbf9a1ec","input_length":849,"output_length":180,"hash_ids":[2756105,2756106],"delay":16488.3} +{"session_id":"sess-2ba9b43b91f3","input_length":34257,"output_length":834,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,2760032,2760033,2760034,2760035,2760036,2760037,2760038,2760039,2760040,2760041,2760042,2760043,2760044,2760045,2760046],"timestamp":0.0,"group_id":19} +{"session_id":"sess-2ba9b43b91f3","input_length":263,"output_length":197,"hash_ids":[2760047],"delay":1285.4} +{"session_id":"sess-2ba9b43b91f3","input_length":290,"output_length":228,"hash_ids":[2760048],"delay":570.9} +{"session_id":"sess-2ba9b43b91f3","input_length":729,"output_length":62,"hash_ids":[2760049,2760050],"delay":1474.1} +{"session_id":"sess-2ba9b43b91f3","input_length":167,"output_length":85,"hash_ids":[2760051],"delay":272.5} +{"session_id":"sess-2ba9b43b91f3","input_length":654,"output_length":43,"hash_ids":[2760052,2760053],"delay":443.5} +{"session_id":"sess-2ba9b43b91f3","input_length":1012,"output_length":189,"hash_ids":[2760054,2760055],"delay":1266.0} +{"session_id":"sess-2ba9b43b91f3","input_length":800,"output_length":193,"hash_ids":[2760056,2760057],"delay":603.6} +{"session_id":"sess-2ba9b43b91f3","input_length":369,"output_length":82,"hash_ids":[2760058],"delay":1534.9} +{"session_id":"sess-2ba9b43b91f3","input_length":514,"output_length":736,"hash_ids":[2760059,2760060],"delay":596.2} +{"session_id":"sess-2ba9b43b91f3","input_length":311,"output_length":135,"hash_ids":[2760061],"delay":24902.6} +{"session_id":"sess-2ba9b43b91f3","input_length":2212,"output_length":261,"hash_ids":[2760062,2760063,2760064,2760065,2760066],"delay":1330.0} +{"session_id":"sess-2ba9b43b91f3","input_length":1246,"output_length":605,"hash_ids":[2760067,2760068,2760069],"delay":4190.8} +{"session_id":"sess-2ba9b43b91f3","input_length":1267,"output_length":84,"hash_ids":[2760070,2760071,2760072],"delay":484.9} +{"session_id":"sess-2ba9b43b91f3","input_length":743,"output_length":295,"hash_ids":[2760073,2760074],"delay":4070.5} +{"session_id":"sess-2ba9b43b91f3","input_length":1687,"output_length":355,"hash_ids":[2760075,2760076,2760077,2760078],"delay":362.3} +{"session_id":"sess-2ba9b43b91f3","input_length":2765,"output_length":376,"hash_ids":[2760079,2760080,2760081,2760082,2760083,2760084],"delay":191.8} +{"session_id":"sess-2ba9b43b91f3","input_length":79,"output_length":237,"hash_ids":[2760085],"delay":942.0} +{"session_id":"sess-2ba9b43b91f3","input_length":1552,"output_length":131,"hash_ids":[2760086,2760087,2760088,2760089],"delay":7861.1} +{"session_id":"sess-2ba9b43b91f3","input_length":1227,"output_length":103,"hash_ids":[2760090,2760091,2760092],"delay":5108.2} +{"session_id":"sess-2ba9b43b91f3","input_length":386,"output_length":178,"hash_ids":[2760093],"delay":420.1} +{"session_id":"sess-2ba9b43b91f3","input_length":2174,"output_length":47,"hash_ids":[2760094,2760095,2760096,2760097,2760098],"delay":23207.0} +{"session_id":"sess-2ba9b43b91f3","input_length":147,"output_length":71,"hash_ids":[2760099],"delay":246.8} +{"session_id":"sess-2ba9b43b91f3","input_length":1064,"output_length":240,"hash_ids":[2760100,2760101,2760102],"delay":5673.9} +{"session_id":"sess-2ba9b43b91f3","input_length":1905,"output_length":177,"hash_ids":[2760103,2760104,2760105,2760106],"delay":108.4} +{"session_id":"sess-2ba9b43b91f3","input_length":870,"output_length":518,"hash_ids":[2760107,2760108],"delay":1411.7} +{"session_id":"sess-56634ad56e75","input_length":27124,"output_length":419,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2764032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-56634ad56e75","input_length":2539,"output_length":260,"hash_ids":[2764033,2764034,2764035,2764036,2764037],"delay":6416.6} +{"session_id":"sess-56634ad56e75","input_length":1515,"output_length":432,"hash_ids":[2764038,2764039,2764040],"delay":1569.9} +{"session_id":"sess-56634ad56e75","input_length":1308,"output_length":47,"hash_ids":[2764041,2764042,2764043],"delay":840.4} +{"session_id":"sess-56634ad56e75","input_length":1474,"output_length":639,"hash_ids":[2764044,2764045,2764046],"delay":2301.9} +{"session_id":"sess-56634ad56e75","input_length":2625,"output_length":498,"hash_ids":[2764047,2764048,2764049,2764050,2764051,2764052],"delay":55069.7} +{"session_id":"sess-56634ad56e75","input_length":276,"output_length":129,"hash_ids":[2764053],"delay":2015.9} +{"session_id":"sess-56634ad56e75","input_length":989,"output_length":223,"hash_ids":[2764054,2764055],"delay":2444.5} +{"session_id":"sess-56634ad56e75","input_length":1931,"output_length":101,"hash_ids":[2764056,2764057,2764058,2764059],"delay":1139.0} +{"session_id":"sess-56634ad56e75","input_length":1733,"output_length":36,"hash_ids":[2764060,2764061,2764062,2764063],"delay":1073.3} +{"session_id":"sess-56634ad56e75","input_length":613,"output_length":570,"hash_ids":[2764064,2764065],"delay":1301.6} +{"session_id":"sess-56634ad56e75","input_length":1418,"output_length":198,"hash_ids":[2764066,2764067,2764068],"delay":1063.3} +{"session_id":"sess-9978aee67423","input_length":27218,"output_length":463,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2768032,2768033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-9978aee67423","input_length":1477,"output_length":701,"hash_ids":[2768034,2768035,2768036],"delay":3436.7} +{"session_id":"sess-9978aee67423","input_length":2941,"output_length":389,"hash_ids":[2768037,2768038,2768039,2768040,2768041,2768042],"delay":30638.3} +{"session_id":"sess-9978aee67423","input_length":638,"output_length":89,"hash_ids":[2768043,2768044],"delay":1031.8} +{"session_id":"sess-9978aee67423","input_length":1027,"output_length":176,"hash_ids":[2768045,2768046,2768047],"delay":6549.8} +{"session_id":"sess-9978aee67423","input_length":811,"output_length":1446,"hash_ids":[2768048,2768049],"delay":797.6} +{"session_id":"sess-9978aee67423","input_length":970,"output_length":113,"hash_ids":[2768050,2768051],"delay":725.6} +{"session_id":"sess-9978aee67423","input_length":175,"output_length":147,"hash_ids":[2768052],"delay":2209.7} +{"session_id":"sess-9978aee67423","input_length":690,"output_length":441,"hash_ids":[2768053,2768054],"delay":14118.1} +{"session_id":"sess-9978aee67423","input_length":1470,"output_length":126,"hash_ids":[2768055,2768056,2768057],"delay":2039.0} +{"session_id":"sess-9978aee67423","input_length":278,"output_length":210,"hash_ids":[2768058],"delay":557.0} +{"session_id":"sess-9978aee67423","input_length":1347,"output_length":128,"hash_ids":[2768059,2768060,2768061],"delay":36910.3} +{"session_id":"sess-9978aee67423","input_length":1230,"output_length":147,"hash_ids":[2768062,2768063,2768064],"delay":3167.3} +{"session_id":"sess-9978aee67423","input_length":492,"output_length":82,"hash_ids":[2768065],"delay":10430.4} +{"session_id":"sess-9978aee67423","input_length":1243,"output_length":119,"hash_ids":[2768066,2768067,2768068],"delay":9634.3} +{"session_id":"sess-9978aee67423","input_length":218,"output_length":348,"hash_ids":[2768069],"delay":11299.2} +{"session_id":"sess-9978aee67423","input_length":1642,"output_length":191,"hash_ids":[2768070,2768071,2768072,2768073],"delay":881.6} +{"session_id":"sess-9978aee67423","input_length":774,"output_length":1083,"hash_ids":[2768074,2768075],"delay":328.3} +{"session_id":"sess-9978aee67423","input_length":1783,"output_length":666,"hash_ids":[2768076,2768077,2768078,2768079],"delay":324.7} +{"session_id":"sess-9978aee67423","input_length":1176,"output_length":149,"hash_ids":[2768080,2768081,2768082],"delay":231.6} +{"session_id":"sess-9978aee67423","input_length":1642,"output_length":30,"hash_ids":[2768083,2768084,2768085,2768086],"delay":1030.1} +{"session_id":"sess-9978aee67423","input_length":880,"output_length":112,"hash_ids":[2768087,2768088],"delay":4993.4} +{"session_id":"sess-9978aee67423","input_length":1552,"output_length":62,"hash_ids":[2768089,2768090,2768091,2768092],"delay":1933.3} +{"session_id":"sess-9978aee67423","input_length":468,"output_length":316,"hash_ids":[2768093],"delay":809.8} +{"session_id":"sess-9978aee67423","input_length":2248,"output_length":445,"hash_ids":[2768094,2768095,2768096,2768097,2768098],"delay":495.4} +{"session_id":"sess-9978aee67423","input_length":2617,"output_length":262,"hash_ids":[2768099,2768100,2768101,2768102,2768103,2768104],"delay":566.6} +{"session_id":"sess-11544c75e310","input_length":30376,"output_length":551,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2772032,2772033,2772034,2772035,2772036,2772037,2772038,2772039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-11544c75e310","input_length":374,"output_length":137,"hash_ids":[2772040],"delay":3251.6} +{"session_id":"sess-11544c75e310","input_length":1155,"output_length":98,"hash_ids":[2772041,2772042,2772043],"delay":670.4} +{"session_id":"sess-11544c75e310","input_length":180,"output_length":175,"hash_ids":[2772044],"delay":983.6} +{"session_id":"sess-11544c75e310","input_length":2649,"output_length":270,"hash_ids":[2772045,2772046,2772047,2772048,2772049,2772050],"delay":377.9} +{"session_id":"sess-11544c75e310","input_length":2755,"output_length":224,"hash_ids":[2772051,2772052,2772053,2772054,2772055,2772056],"delay":5223.6} +{"session_id":"sess-11544c75e310","input_length":1076,"output_length":740,"hash_ids":[2772057,2772058,2772059],"delay":14275.3} +{"session_id":"sess-11544c75e310","input_length":1509,"output_length":524,"hash_ids":[2772060,2772061,2772062],"delay":1272.6} +{"session_id":"sess-11544c75e310","input_length":759,"output_length":679,"hash_ids":[2772063,2772064],"delay":812.9} +{"session_id":"sess-11544c75e310","input_length":285,"output_length":398,"hash_ids":[2772065],"delay":2760.4} +{"session_id":"sess-11544c75e310","input_length":2808,"output_length":621,"hash_ids":[2772066,2772067,2772068,2772069,2772070,2772071],"delay":10037.4} +{"session_id":"sess-11544c75e310","input_length":693,"output_length":450,"hash_ids":[2772072,2772073],"delay":17243.1} +{"session_id":"sess-11544c75e310","input_length":447,"output_length":45,"hash_ids":[2772074],"delay":447.4} +{"session_id":"sess-11544c75e310","input_length":1771,"output_length":154,"hash_ids":[2772075,2772076,2772077,2772078],"delay":853.7} +{"session_id":"sess-11544c75e310","input_length":1792,"output_length":79,"hash_ids":[2772079,2772080,2772081,2772082],"delay":1770.7} +{"session_id":"sess-11544c75e310","input_length":229,"output_length":470,"hash_ids":[2772083],"delay":485.2} +{"session_id":"sess-11544c75e310","input_length":1225,"output_length":258,"hash_ids":[2772084,2772085,2772086],"delay":1124.2} +{"session_id":"sess-11544c75e310","input_length":1611,"output_length":317,"hash_ids":[2772087,2772088,2772089,2772090],"delay":6523.0} +{"session_id":"sess-11544c75e310","input_length":231,"output_length":397,"hash_ids":[2772091],"delay":277.3} +{"session_id":"sess-11544c75e310","input_length":2837,"output_length":705,"hash_ids":[2772092,2772093,2772094,2772095,2772096,2772097],"delay":18471.4} +{"session_id":"sess-11544c75e310","input_length":2011,"output_length":113,"hash_ids":[2772098,2772099,2772100,2772101],"delay":15561.3} +{"session_id":"sess-11544c75e310","input_length":637,"output_length":40,"hash_ids":[2772102,2772103],"delay":118.8} +{"session_id":"sess-11544c75e310","input_length":277,"output_length":419,"hash_ids":[2772104],"delay":14558.7} +{"session_id":"sess-5e55ed260982","input_length":34644,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,2776032,2776033,2776034,2776035,2776036,2776037,2776038,2776039,2776040,2776041,2776042,2776043,2776044,2776045,2776046,2776047],"timestamp":0.0,"group_id":49} +{"session_id":"sess-5e55ed260982","input_length":2041,"output_length":222,"hash_ids":[2776048,2776049,2776050,2776051],"delay":8263.4} +{"session_id":"sess-5e55ed260982","input_length":746,"output_length":290,"hash_ids":[2776052,2776053],"delay":5165.5} +{"session_id":"sess-5e55ed260982","input_length":2508,"output_length":295,"hash_ids":[2776054,2776055,2776056,2776057,2776058],"delay":16020.7} +{"session_id":"sess-5e55ed260982","input_length":380,"output_length":46,"hash_ids":[2776059],"delay":702.5} +{"session_id":"sess-5e55ed260982","input_length":572,"output_length":43,"hash_ids":[2776060,2776061],"delay":517.2} +{"session_id":"sess-5e55ed260982","input_length":1045,"output_length":313,"hash_ids":[2776062,2776063,2776064],"delay":247.8} +{"session_id":"sess-5e55ed260982","input_length":2475,"output_length":315,"hash_ids":[2776065,2776066,2776067,2776068,2776069],"delay":818.5} +{"session_id":"sess-5e55ed260982","input_length":560,"output_length":246,"hash_ids":[2776070,2776071],"delay":44523.8} +{"session_id":"sess-5e55ed260982","input_length":601,"output_length":91,"hash_ids":[2776072,2776073],"delay":6915.5} +{"session_id":"sess-5e55ed260982","input_length":673,"output_length":383,"hash_ids":[2776074,2776075],"delay":11207.2} +{"session_id":"sess-5e55ed260982","input_length":1393,"output_length":139,"hash_ids":[2776076,2776077,2776078],"delay":13642.2} +{"session_id":"sess-5e55ed260982","input_length":392,"output_length":317,"hash_ids":[2776079],"delay":22967.0} +{"session_id":"sess-5e55ed260982","input_length":88,"output_length":567,"hash_ids":[2776080],"delay":781.3} +{"session_id":"sess-5e55ed260982","input_length":760,"output_length":1004,"hash_ids":[2776081,2776082],"delay":742.8} +{"session_id":"sess-5e55ed260982","input_length":758,"output_length":198,"hash_ids":[2776083,2776084],"delay":15060.3} +{"session_id":"sess-5e55ed260982","input_length":1526,"output_length":365,"hash_ids":[2776085,2776086,2776087],"delay":692.8} +{"session_id":"sess-5e55ed260982","input_length":213,"output_length":1028,"hash_ids":[2776088],"delay":192.5} +{"session_id":"sess-5e55ed260982","input_length":233,"output_length":189,"hash_ids":[2776089],"delay":921.1} +{"session_id":"sess-5e55ed260982","input_length":563,"output_length":199,"hash_ids":[2776090,2776091],"delay":224.5} +{"session_id":"sess-5e55ed260982","input_length":760,"output_length":185,"hash_ids":[2776092,2776093],"delay":991.9} +{"session_id":"sess-5e55ed260982","input_length":1983,"output_length":183,"hash_ids":[2776094,2776095,2776096,2776097],"delay":172.0} +{"session_id":"sess-5e55ed260982","input_length":250,"output_length":39,"hash_ids":[2776098],"delay":621.6} +{"session_id":"sess-5e55ed260982","input_length":1257,"output_length":394,"hash_ids":[2776099,2776100,2776101],"delay":4998.1} +{"session_id":"sess-5e55ed260982","input_length":460,"output_length":63,"hash_ids":[2776102],"delay":5945.7} +{"session_id":"sess-5e55ed260982","input_length":869,"output_length":166,"hash_ids":[2776103,2776104],"delay":321.0} +{"session_id":"sess-21312333abf5","input_length":28435,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2780032,2780033,2780034,2780035],"timestamp":0.0,"group_id":4} +{"session_id":"sess-21312333abf5","input_length":218,"output_length":418,"hash_ids":[2780036],"delay":4736.5} +{"session_id":"sess-21312333abf5","input_length":1062,"output_length":187,"hash_ids":[2780037,2780038,2780039],"delay":18283.0} +{"session_id":"sess-21312333abf5","input_length":609,"output_length":158,"hash_ids":[2780040,2780041],"delay":636.0} +{"session_id":"sess-21312333abf5","input_length":420,"output_length":87,"hash_ids":[2780042],"delay":30755.1} +{"session_id":"sess-21312333abf5","input_length":297,"output_length":246,"hash_ids":[2780043],"delay":2572.8} +{"session_id":"sess-21312333abf5","input_length":191,"output_length":581,"hash_ids":[2780044],"delay":470.6} +{"session_id":"sess-21312333abf5","input_length":2481,"output_length":802,"hash_ids":[2780045,2780046,2780047,2780048,2780049],"delay":7004.2} +{"session_id":"sess-21312333abf5","input_length":394,"output_length":1129,"hash_ids":[2780050],"delay":344.5} +{"session_id":"sess-21312333abf5","input_length":190,"output_length":44,"hash_ids":[2780051],"delay":565.1} +{"session_id":"sess-21312333abf5","input_length":2095,"output_length":498,"hash_ids":[2780052,2780053,2780054,2780055,2780056],"delay":843.4} +{"session_id":"sess-21312333abf5","input_length":1187,"output_length":99,"hash_ids":[2780057,2780058,2780059],"delay":309.8} +{"session_id":"sess-21312333abf5","input_length":1614,"output_length":56,"hash_ids":[2780060,2780061,2780062,2780063],"delay":26377.5} +{"session_id":"sess-21312333abf5","input_length":1249,"output_length":189,"hash_ids":[2780064,2780065,2780066],"delay":732.0} +{"session_id":"sess-21312333abf5","input_length":279,"output_length":114,"hash_ids":[2780067],"delay":709.3} +{"session_id":"sess-21312333abf5","input_length":750,"output_length":405,"hash_ids":[2780068,2780069],"delay":1579.0} +{"session_id":"sess-21312333abf5","input_length":98,"output_length":136,"hash_ids":[2780070],"delay":4756.3} +{"session_id":"sess-21312333abf5","input_length":1652,"output_length":472,"hash_ids":[2780071,2780072,2780073,2780074],"delay":1204.3} +{"session_id":"sess-21312333abf5","input_length":1284,"output_length":311,"hash_ids":[2780075,2780076,2780077],"delay":874.9} +{"session_id":"sess-21312333abf5","input_length":981,"output_length":90,"hash_ids":[2780078,2780079],"delay":2410.4} +{"session_id":"sess-21312333abf5","input_length":430,"output_length":414,"hash_ids":[2780080],"delay":450.5} +{"session_id":"sess-88251f97beb1","input_length":27207,"output_length":281,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,2784032,2784033],"timestamp":0.0,"group_id":26} +{"session_id":"sess-88251f97beb1","input_length":1229,"output_length":647,"hash_ids":[2784034,2784035,2784036],"delay":305.5} +{"session_id":"sess-88251f97beb1","input_length":2342,"output_length":238,"hash_ids":[2784037,2784038,2784039,2784040,2784041],"delay":986.5} +{"session_id":"sess-88251f97beb1","input_length":132,"output_length":193,"hash_ids":[2784042],"delay":377.4} +{"session_id":"sess-88251f97beb1","input_length":2262,"output_length":224,"hash_ids":[2784043,2784044,2784045,2784046,2784047],"delay":30676.6} +{"session_id":"sess-88251f97beb1","input_length":426,"output_length":75,"hash_ids":[2784048],"delay":3587.6} +{"session_id":"sess-88251f97beb1","input_length":2163,"output_length":329,"hash_ids":[2784049,2784050,2784051,2784052,2784053],"delay":14206.8} +{"session_id":"sess-88251f97beb1","input_length":718,"output_length":143,"hash_ids":[2784054,2784055],"delay":322.0} +{"session_id":"sess-88251f97beb1","input_length":1613,"output_length":208,"hash_ids":[2784056,2784057,2784058,2784059],"delay":2292.9} +{"session_id":"sess-88251f97beb1","input_length":665,"output_length":183,"hash_ids":[2784060,2784061],"delay":1204.8} +{"session_id":"sess-88251f97beb1","input_length":644,"output_length":615,"hash_ids":[2784062,2784063],"delay":914.4} +{"session_id":"sess-88251f97beb1","input_length":994,"output_length":128,"hash_ids":[2784064,2784065],"delay":860.5} +{"session_id":"sess-88251f97beb1","input_length":344,"output_length":325,"hash_ids":[2784066],"delay":322.5} +{"session_id":"sess-88251f97beb1","input_length":1156,"output_length":258,"hash_ids":[2784067,2784068,2784069],"delay":18845.3} +{"session_id":"sess-88251f97beb1","input_length":170,"output_length":308,"hash_ids":[2784070],"delay":6873.0} +{"session_id":"sess-88251f97beb1","input_length":242,"output_length":41,"hash_ids":[2784071],"delay":630.6} +{"session_id":"sess-f975c46a5561","input_length":26587,"output_length":39,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-f975c46a5561","input_length":463,"output_length":120,"hash_ids":[2784072],"delay":987.5} +{"session_id":"sess-f975c46a5561","input_length":603,"output_length":99,"hash_ids":[2784073,2784074],"delay":1297.9} +{"session_id":"sess-f975c46a5561","input_length":561,"output_length":610,"hash_ids":[2784075,2784076],"delay":2273.4} +{"session_id":"sess-f975c46a5561","input_length":2937,"output_length":344,"hash_ids":[2784077,2784078,2784079,2784080,2784081,2784082],"delay":737.8} +{"session_id":"sess-f975c46a5561","input_length":255,"output_length":589,"hash_ids":[2784083],"delay":985.2} +{"session_id":"sess-f975c46a5561","input_length":1449,"output_length":772,"hash_ids":[2784084,2784085,2784086],"delay":443.2} +{"session_id":"sess-f975c46a5561","input_length":706,"output_length":119,"hash_ids":[2784087,2784088],"delay":438.7} +{"session_id":"sess-f975c46a5561","input_length":2618,"output_length":68,"hash_ids":[2784089,2784090,2784091,2784092,2784093,2784094],"delay":912.8} +{"session_id":"sess-f975c46a5561","input_length":185,"output_length":251,"hash_ids":[2784095],"delay":644.6} +{"session_id":"sess-f975c46a5561","input_length":1238,"output_length":325,"hash_ids":[2784096,2784097,2784098],"delay":609.2} +{"session_id":"sess-f975c46a5561","input_length":2223,"output_length":133,"hash_ids":[2784099,2784100,2784101,2784102,2784103],"delay":4118.9} +{"session_id":"sess-f975c46a5561","input_length":275,"output_length":87,"hash_ids":[2784104],"delay":472.5} +{"session_id":"sess-f975c46a5561","input_length":612,"output_length":240,"hash_ids":[2784105,2784106],"delay":14142.7} +{"session_id":"sess-f975c46a5561","input_length":468,"output_length":173,"hash_ids":[2784107],"delay":1491.1} +{"session_id":"sess-f975c46a5561","input_length":1362,"output_length":208,"hash_ids":[2784108,2784109,2784110],"delay":227.9} +{"session_id":"sess-f975c46a5561","input_length":127,"output_length":124,"hash_ids":[2784111],"delay":7278.1} +{"session_id":"sess-f975c46a5561","input_length":861,"output_length":207,"hash_ids":[2784112,2784113],"delay":14987.9} +{"session_id":"sess-f975c46a5561","input_length":214,"output_length":289,"hash_ids":[2784114],"delay":1543.2} +{"session_id":"sess-f975c46a5561","input_length":2349,"output_length":51,"hash_ids":[2784115,2784116,2784117,2784118,2784119],"delay":10533.6} +{"session_id":"sess-f975c46a5561","input_length":318,"output_length":48,"hash_ids":[2784120],"delay":350.1} +{"session_id":"sess-f975c46a5561","input_length":876,"output_length":109,"hash_ids":[2784121,2784122],"delay":9186.2} +{"session_id":"sess-f975c46a5561","input_length":1446,"output_length":122,"hash_ids":[2784123,2784124,2784125],"delay":176.9} +{"session_id":"sess-f975c46a5561","input_length":1019,"output_length":183,"hash_ids":[2784126,2784127],"delay":4195.3} +{"session_id":"sess-f975c46a5561","input_length":783,"output_length":190,"hash_ids":[2784128,2784129],"delay":3645.1} +{"session_id":"sess-f975c46a5561","input_length":338,"output_length":461,"hash_ids":[2784130],"delay":157.1} +{"session_id":"sess-f975c46a5561","input_length":967,"output_length":143,"hash_ids":[2784131,2784132],"delay":1283.4} +{"session_id":"sess-f975c46a5561","input_length":310,"output_length":216,"hash_ids":[2784133],"delay":412.8} +{"session_id":"sess-f975c46a5561","input_length":106,"output_length":166,"hash_ids":[2784134],"delay":5008.9} +{"session_id":"sess-f975c46a5561","input_length":388,"output_length":935,"hash_ids":[2784135],"delay":7191.4} +{"session_id":"sess-f975c46a5561","input_length":1631,"output_length":200,"hash_ids":[2784136,2784137,2784138,2784139],"delay":3455.7} +{"session_id":"sess-f975c46a5561","input_length":193,"output_length":50,"hash_ids":[2784140],"delay":353.3} +{"session_id":"sess-f975c46a5561","input_length":750,"output_length":52,"hash_ids":[2784141,2784142],"delay":289.4} +{"session_id":"sess-f975c46a5561","input_length":627,"output_length":270,"hash_ids":[2784143,2784144],"delay":8505.2} +{"session_id":"sess-824288d9261a","input_length":26875,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2792032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-824288d9261a","input_length":1065,"output_length":826,"hash_ids":[2792033,2792034,2792035],"delay":688.9} +{"session_id":"sess-824288d9261a","input_length":929,"output_length":299,"hash_ids":[2792036,2792037],"delay":2783.1} +{"session_id":"sess-824288d9261a","input_length":853,"output_length":750,"hash_ids":[2792038,2792039],"delay":2031.8} +{"session_id":"sess-824288d9261a","input_length":1258,"output_length":127,"hash_ids":[2792040,2792041,2792042],"delay":380.1} +{"session_id":"sess-824288d9261a","input_length":219,"output_length":483,"hash_ids":[2792043],"delay":1482.8} +{"session_id":"sess-824288d9261a","input_length":1048,"output_length":39,"hash_ids":[2792044,2792045,2792046],"delay":31057.2} +{"session_id":"sess-824288d9261a","input_length":404,"output_length":155,"hash_ids":[2792047],"delay":3207.3} +{"session_id":"sess-824288d9261a","input_length":505,"output_length":72,"hash_ids":[2792048],"delay":2862.4} +{"session_id":"sess-824288d9261a","input_length":1733,"output_length":346,"hash_ids":[2792049,2792050,2792051,2792052],"delay":1570.5} +{"session_id":"sess-824288d9261a","input_length":1503,"output_length":267,"hash_ids":[2792053,2792054,2792055],"delay":728.4} +{"session_id":"sess-824288d9261a","input_length":93,"output_length":117,"hash_ids":[2792056],"delay":348.2} +{"session_id":"sess-824288d9261a","input_length":199,"output_length":143,"hash_ids":[2792057],"delay":1030.4} +{"session_id":"sess-824288d9261a","input_length":1220,"output_length":914,"hash_ids":[2792058,2792059,2792060],"delay":1049.6} +{"session_id":"sess-824288d9261a","input_length":145,"output_length":668,"hash_ids":[2792061],"delay":1387.6} +{"session_id":"sess-824288d9261a","input_length":320,"output_length":128,"hash_ids":[2792062],"delay":17121.9} +{"session_id":"sess-824288d9261a","input_length":87,"output_length":100,"hash_ids":[2792063],"delay":14374.1} +{"session_id":"sess-824288d9261a","input_length":30,"output_length":252,"hash_ids":[2792064],"delay":983.9} +{"session_id":"sess-46c244b54221","input_length":26929,"output_length":363,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2796032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-46c244b54221","input_length":1168,"output_length":346,"hash_ids":[2796033,2796034,2796035],"delay":942.9} +{"session_id":"sess-46c244b54221","input_length":1164,"output_length":96,"hash_ids":[2796036,2796037,2796038],"delay":1538.5} +{"session_id":"sess-46c244b54221","input_length":945,"output_length":164,"hash_ids":[2796039,2796040],"delay":51075.0} +{"session_id":"sess-46c244b54221","input_length":859,"output_length":858,"hash_ids":[2796041,2796042],"delay":1092.8} +{"session_id":"sess-46c244b54221","input_length":174,"output_length":97,"hash_ids":[2796043],"delay":20342.3} +{"session_id":"sess-46c244b54221","input_length":131,"output_length":257,"hash_ids":[2796044],"delay":2130.3} +{"session_id":"sess-46c244b54221","input_length":921,"output_length":456,"hash_ids":[2796045,2796046],"delay":41488.2} +{"session_id":"sess-46c244b54221","input_length":188,"output_length":331,"hash_ids":[2796047],"delay":1745.2} +{"session_id":"sess-46c244b54221","input_length":638,"output_length":165,"hash_ids":[2796048,2796049],"delay":2019.4} +{"session_id":"sess-46c244b54221","input_length":2303,"output_length":133,"hash_ids":[2796050,2796051,2796052,2796053,2796054],"delay":898.4} +{"session_id":"sess-46c244b54221","input_length":171,"output_length":348,"hash_ids":[2796055],"delay":8399.5} +{"session_id":"sess-46c244b54221","input_length":853,"output_length":131,"hash_ids":[2796056,2796057],"delay":2937.1} +{"session_id":"sess-46c244b54221","input_length":364,"output_length":104,"hash_ids":[2796058],"delay":18836.0} +{"session_id":"sess-46c244b54221","input_length":596,"output_length":283,"hash_ids":[2796059,2796060],"delay":681.4} +{"session_id":"sess-46c244b54221","input_length":787,"output_length":30,"hash_ids":[2796061,2796062],"delay":1206.7} +{"session_id":"sess-46c244b54221","input_length":922,"output_length":284,"hash_ids":[2796063,2796064],"delay":332.7} +{"session_id":"sess-46c244b54221","input_length":573,"output_length":207,"hash_ids":[2796065,2796066],"delay":2701.1} +{"session_id":"sess-46c244b54221","input_length":591,"output_length":272,"hash_ids":[2796067,2796068],"delay":606.1} +{"session_id":"sess-46c244b54221","input_length":556,"output_length":167,"hash_ids":[2796069,2796070],"delay":11251.5} +{"session_id":"sess-46c244b54221","input_length":203,"output_length":35,"hash_ids":[2796071],"delay":588.3} +{"session_id":"sess-46c244b54221","input_length":846,"output_length":162,"hash_ids":[2796072,2796073],"delay":224.6} +{"session_id":"sess-46c244b54221","input_length":435,"output_length":31,"hash_ids":[2796074],"delay":910.1} +{"session_id":"sess-46c244b54221","input_length":640,"output_length":358,"hash_ids":[2796075,2796076],"delay":524.4} +{"session_id":"sess-46c244b54221","input_length":134,"output_length":436,"hash_ids":[2796077],"delay":21202.1} +{"session_id":"sess-46c244b54221","input_length":1336,"output_length":73,"hash_ids":[2796078,2796079,2796080],"delay":478.7} +{"session_id":"sess-46c244b54221","input_length":1098,"output_length":303,"hash_ids":[2796081,2796082,2796083],"delay":16067.7} +{"session_id":"sess-46c244b54221","input_length":175,"output_length":74,"hash_ids":[2796084],"delay":5645.8} +{"session_id":"sess-46c244b54221","input_length":1793,"output_length":459,"hash_ids":[2796085,2796086,2796087,2796088],"delay":453.3} +{"session_id":"sess-46c244b54221","input_length":702,"output_length":509,"hash_ids":[2796089,2796090],"delay":2362.5} +{"session_id":"sess-46c244b54221","input_length":654,"output_length":195,"hash_ids":[2796091,2796092],"delay":123.1} +{"session_id":"sess-46c244b54221","input_length":730,"output_length":185,"hash_ids":[2796093,2796094],"delay":142.7} +{"session_id":"sess-46c244b54221","input_length":2629,"output_length":104,"hash_ids":[2796095,2796096,2796097,2796098,2796099,2796100],"delay":273.3} +{"session_id":"sess-46c244b54221","input_length":1235,"output_length":307,"hash_ids":[2796101,2796102,2796103],"delay":8129.1} +{"session_id":"sess-46c244b54221","input_length":319,"output_length":544,"hash_ids":[2796104],"delay":6009.1} +{"session_id":"sess-46c244b54221","input_length":889,"output_length":198,"hash_ids":[2796105,2796106],"delay":461.1} +{"session_id":"sess-46c244b54221","input_length":368,"output_length":482,"hash_ids":[2796107],"delay":1500.0} +{"session_id":"sess-a7955adb7e2a","input_length":30441,"output_length":426,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2800032,2800033,2800034,2800035,2800036,2800037,2800038,2800039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a7955adb7e2a","input_length":693,"output_length":121,"hash_ids":[2800040,2800041],"delay":27889.8} +{"session_id":"sess-a7955adb7e2a","input_length":1048,"output_length":241,"hash_ids":[2800042,2800043,2800044],"delay":6468.0} +{"session_id":"sess-a7955adb7e2a","input_length":1313,"output_length":85,"hash_ids":[2800045,2800046,2800047],"delay":951.6} +{"session_id":"sess-a7955adb7e2a","input_length":1100,"output_length":51,"hash_ids":[2800048,2800049,2800050],"delay":52269.2} +{"session_id":"sess-a7955adb7e2a","input_length":350,"output_length":30,"hash_ids":[2800051],"delay":761.8} +{"session_id":"sess-a7955adb7e2a","input_length":2469,"output_length":661,"hash_ids":[2800052,2800053,2800054,2800055,2800056],"delay":562.6} +{"session_id":"sess-a7955adb7e2a","input_length":2102,"output_length":201,"hash_ids":[2800057,2800058,2800059,2800060,2800061],"delay":3322.7} +{"session_id":"sess-a7955adb7e2a","input_length":533,"output_length":75,"hash_ids":[2800062,2800063],"delay":922.7} +{"session_id":"sess-a7955adb7e2a","input_length":488,"output_length":436,"hash_ids":[2800064],"delay":8107.2} +{"session_id":"sess-a7955adb7e2a","input_length":344,"output_length":219,"hash_ids":[2800065],"delay":2154.5} +{"session_id":"sess-a7955adb7e2a","input_length":832,"output_length":144,"hash_ids":[2800066,2800067],"delay":25832.4} +{"session_id":"sess-a7955adb7e2a","input_length":564,"output_length":284,"hash_ids":[2800068,2800069],"delay":553.4} +{"session_id":"sess-a7955adb7e2a","input_length":253,"output_length":165,"hash_ids":[2800070],"delay":707.8} +{"session_id":"sess-a7955adb7e2a","input_length":1406,"output_length":142,"hash_ids":[2800071,2800072,2800073],"delay":930.0} +{"session_id":"sess-a7955adb7e2a","input_length":907,"output_length":54,"hash_ids":[2800074,2800075],"delay":26789.6} +{"session_id":"sess-a7955adb7e2a","input_length":541,"output_length":635,"hash_ids":[2800076,2800077],"delay":21348.0} +{"session_id":"sess-a7955adb7e2a","input_length":2054,"output_length":79,"hash_ids":[2800078,2800079,2800080,2800081,2800082],"delay":15808.8} +{"session_id":"sess-a7955adb7e2a","input_length":1312,"output_length":262,"hash_ids":[2800083,2800084,2800085],"delay":492.9} +{"session_id":"sess-a7955adb7e2a","input_length":1688,"output_length":109,"hash_ids":[2800086,2800087,2800088,2800089],"delay":1136.4} +{"session_id":"sess-a7955adb7e2a","input_length":93,"output_length":86,"hash_ids":[2800090],"delay":1581.0} +{"session_id":"sess-a7955adb7e2a","input_length":665,"output_length":63,"hash_ids":[2800091,2800092],"delay":482.8} +{"session_id":"sess-a7955adb7e2a","input_length":1661,"output_length":144,"hash_ids":[2800093,2800094,2800095,2800096],"delay":34101.0} +{"session_id":"sess-a7955adb7e2a","input_length":533,"output_length":30,"hash_ids":[2800097,2800098],"delay":391.7} +{"session_id":"sess-5b889cbacf11","input_length":26476,"output_length":65,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651],"timestamp":0.0,"group_id":38} +{"session_id":"sess-5b889cbacf11","input_length":381,"output_length":364,"hash_ids":[2800099],"delay":1959.1} +{"session_id":"sess-5b889cbacf11","input_length":886,"output_length":115,"hash_ids":[2800100,2800101],"delay":539.2} +{"session_id":"sess-5b889cbacf11","input_length":1537,"output_length":269,"hash_ids":[2800102,2800103,2800104,2800105],"delay":4123.7} +{"session_id":"sess-5b889cbacf11","input_length":1121,"output_length":68,"hash_ids":[2800106,2800107,2800108],"delay":22896.7} +{"session_id":"sess-5b889cbacf11","input_length":1265,"output_length":186,"hash_ids":[2800109,2800110,2800111],"delay":1793.9} +{"session_id":"sess-5b889cbacf11","input_length":2388,"output_length":101,"hash_ids":[2800112,2800113,2800114,2800115,2800116],"delay":1013.2} +{"session_id":"sess-5b889cbacf11","input_length":194,"output_length":74,"hash_ids":[2800117],"delay":635.3} +{"session_id":"sess-5b889cbacf11","input_length":1197,"output_length":350,"hash_ids":[2800118,2800119,2800120],"delay":4481.4} +{"session_id":"sess-5b889cbacf11","input_length":466,"output_length":281,"hash_ids":[2800121],"delay":634.4} +{"session_id":"sess-5b889cbacf11","input_length":480,"output_length":201,"hash_ids":[2800122],"delay":1925.5} +{"session_id":"sess-5b889cbacf11","input_length":853,"output_length":88,"hash_ids":[2800123,2800124],"delay":642.1} +{"session_id":"sess-5b889cbacf11","input_length":725,"output_length":66,"hash_ids":[2800125,2800126],"delay":2069.1} +{"session_id":"sess-5b889cbacf11","input_length":1041,"output_length":127,"hash_ids":[2800127,2800128,2800129],"delay":788.3} +{"session_id":"sess-6f3383be8dad","input_length":26547,"output_length":92,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6f3383be8dad","input_length":1065,"output_length":164,"hash_ids":[2800130,2800131,2800132],"delay":2012.1} +{"session_id":"sess-6f3383be8dad","input_length":142,"output_length":331,"hash_ids":[2800133],"delay":808.5} +{"session_id":"sess-6f3383be8dad","input_length":375,"output_length":57,"hash_ids":[2800134],"delay":5386.5} +{"session_id":"sess-6f3383be8dad","input_length":97,"output_length":977,"hash_ids":[2800135],"delay":924.0} +{"session_id":"sess-6f3383be8dad","input_length":470,"output_length":884,"hash_ids":[2800136],"delay":620.3} +{"session_id":"sess-6f3383be8dad","input_length":300,"output_length":199,"hash_ids":[2800137],"delay":954.5} +{"session_id":"sess-6f3383be8dad","input_length":450,"output_length":823,"hash_ids":[2800138],"delay":877.3} +{"session_id":"sess-6f3383be8dad","input_length":827,"output_length":46,"hash_ids":[2800139,2800140],"delay":583.4} +{"session_id":"sess-6f3383be8dad","input_length":2646,"output_length":255,"hash_ids":[2800141,2800142,2800143,2800144,2800145,2800146],"delay":1241.7} +{"session_id":"sess-94c64a624de1","input_length":26201,"output_length":137,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-94c64a624de1","input_length":2096,"output_length":76,"hash_ids":[2800147,2800148,2800149,2800150,2800151],"delay":321.7} +{"session_id":"sess-94c64a624de1","input_length":224,"output_length":89,"hash_ids":[2800152],"delay":789.9} +{"session_id":"sess-94c64a624de1","input_length":1193,"output_length":46,"hash_ids":[2800153,2800154,2800155],"delay":26668.3} +{"session_id":"sess-94c64a624de1","input_length":652,"output_length":149,"hash_ids":[2800156,2800157],"delay":2365.2} +{"session_id":"sess-94c64a624de1","input_length":240,"output_length":319,"hash_ids":[2800158],"delay":1002.2} +{"session_id":"sess-94c64a624de1","input_length":1580,"output_length":68,"hash_ids":[2800159,2800160,2800161,2800162],"delay":1635.3} +{"session_id":"sess-94c64a624de1","input_length":977,"output_length":116,"hash_ids":[2800163,2800164],"delay":7465.4} +{"session_id":"sess-94c64a624de1","input_length":599,"output_length":729,"hash_ids":[2800165,2800166],"delay":829.1} +{"session_id":"sess-94c64a624de1","input_length":388,"output_length":158,"hash_ids":[2800167],"delay":1529.1} +{"session_id":"sess-94c64a624de1","input_length":568,"output_length":139,"hash_ids":[2800168,2800169],"delay":431.1} +{"session_id":"sess-94c64a624de1","input_length":2892,"output_length":335,"hash_ids":[2800170,2800171,2800172,2800173,2800174,2800175],"delay":555.5} +{"session_id":"sess-94c64a624de1","input_length":346,"output_length":142,"hash_ids":[2800176],"delay":4475.1} +{"session_id":"sess-94c64a624de1","input_length":1398,"output_length":43,"hash_ids":[2800177,2800178,2800179],"delay":4687.9} +{"session_id":"sess-94c64a624de1","input_length":2341,"output_length":254,"hash_ids":[2800180,2800181,2800182,2800183,2800184],"delay":804.2} +{"session_id":"sess-94c64a624de1","input_length":422,"output_length":256,"hash_ids":[2800185],"delay":29824.2} +{"session_id":"sess-94c64a624de1","input_length":1418,"output_length":378,"hash_ids":[2800186,2800187,2800188],"delay":530.8} +{"session_id":"sess-fe034d8abff8","input_length":26774,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2816032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-fe034d8abff8","input_length":837,"output_length":302,"hash_ids":[2816033,2816034],"delay":312.4} +{"session_id":"sess-2823d5c78209","input_length":28057,"output_length":326,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2820032,2820033,2820034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb4141770d88","input_length":30675,"output_length":151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2824032,2824033,2824034,2824035,2824036,2824037,2824038,2824039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fb4141770d88","input_length":2700,"output_length":406,"hash_ids":[2824040,2824041,2824042,2824043,2824044,2824045],"delay":5211.3} +{"session_id":"sess-fb4141770d88","input_length":1993,"output_length":36,"hash_ids":[2824046,2824047,2824048,2824049],"delay":410.4} +{"session_id":"sess-fb4141770d88","input_length":2386,"output_length":52,"hash_ids":[2824050,2824051,2824052,2824053,2824054],"delay":413.4} +{"session_id":"sess-fb4141770d88","input_length":2166,"output_length":208,"hash_ids":[2824055,2824056,2824057,2824058,2824059],"delay":413.5} +{"session_id":"sess-fb4141770d88","input_length":745,"output_length":261,"hash_ids":[2824060,2824061],"delay":446.1} +{"session_id":"sess-fb4141770d88","input_length":488,"output_length":476,"hash_ids":[2824062],"delay":662.5} +{"session_id":"sess-fb4141770d88","input_length":707,"output_length":233,"hash_ids":[2824063,2824064],"delay":256.0} +{"session_id":"sess-fb4141770d88","input_length":167,"output_length":164,"hash_ids":[2824065],"delay":35737.6} +{"session_id":"sess-fb4141770d88","input_length":563,"output_length":193,"hash_ids":[2824066,2824067],"delay":1107.7} +{"session_id":"sess-fb4141770d88","input_length":2571,"output_length":148,"hash_ids":[2824068,2824069,2824070,2824071,2824072,2824073],"delay":616.9} +{"session_id":"sess-fb4141770d88","input_length":449,"output_length":434,"hash_ids":[2824074],"delay":2559.0} +{"session_id":"sess-fb4141770d88","input_length":1295,"output_length":30,"hash_ids":[2824075,2824076,2824077],"delay":6838.2} +{"session_id":"sess-fb4141770d88","input_length":693,"output_length":132,"hash_ids":[2824078,2824079],"delay":198.5} +{"session_id":"sess-22952110e9dd","input_length":28110,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2828032,2828033,2828034],"timestamp":0.0,"group_id":4} +{"session_id":"sess-22952110e9dd","input_length":400,"output_length":113,"hash_ids":[2828035],"delay":1550.6} +{"session_id":"sess-22952110e9dd","input_length":1187,"output_length":87,"hash_ids":[2828036,2828037,2828038],"delay":1372.5} +{"session_id":"sess-22952110e9dd","input_length":1393,"output_length":362,"hash_ids":[2828039,2828040,2828041],"delay":19545.8} +{"session_id":"sess-22952110e9dd","input_length":2398,"output_length":35,"hash_ids":[2828042,2828043,2828044,2828045,2828046],"delay":507.5} +{"session_id":"sess-22952110e9dd","input_length":898,"output_length":64,"hash_ids":[2828047,2828048],"delay":10343.0} +{"session_id":"sess-22952110e9dd","input_length":1414,"output_length":228,"hash_ids":[2828049,2828050,2828051],"delay":2720.5} +{"session_id":"sess-22952110e9dd","input_length":1268,"output_length":299,"hash_ids":[2828052,2828053,2828054],"delay":1695.8} +{"session_id":"sess-22952110e9dd","input_length":414,"output_length":520,"hash_ids":[2828055],"delay":64129.0} +{"session_id":"sess-22952110e9dd","input_length":614,"output_length":89,"hash_ids":[2828056,2828057],"delay":195.3} +{"session_id":"sess-22952110e9dd","input_length":1079,"output_length":311,"hash_ids":[2828058,2828059,2828060],"delay":534.4} +{"session_id":"sess-22952110e9dd","input_length":695,"output_length":101,"hash_ids":[2828061,2828062],"delay":444.4} +{"session_id":"sess-22952110e9dd","input_length":1483,"output_length":1055,"hash_ids":[2828063,2828064,2828065],"delay":1122.6} +{"session_id":"sess-22952110e9dd","input_length":324,"output_length":208,"hash_ids":[2828066],"delay":562.4} +{"session_id":"sess-22952110e9dd","input_length":1725,"output_length":264,"hash_ids":[2828067,2828068,2828069,2828070],"delay":828.2} +{"session_id":"sess-22952110e9dd","input_length":1817,"output_length":233,"hash_ids":[2828071,2828072,2828073,2828074],"delay":117.3} +{"session_id":"sess-22952110e9dd","input_length":382,"output_length":199,"hash_ids":[2828075],"delay":2189.9} +{"session_id":"sess-22952110e9dd","input_length":1193,"output_length":99,"hash_ids":[2828076,2828077,2828078],"delay":913.3} +{"session_id":"sess-22952110e9dd","input_length":402,"output_length":153,"hash_ids":[2828079],"delay":2200.3} +{"session_id":"sess-22952110e9dd","input_length":462,"output_length":241,"hash_ids":[2828080],"delay":534.2} +{"session_id":"sess-22952110e9dd","input_length":1304,"output_length":388,"hash_ids":[2828081,2828082,2828083],"delay":846.7} +{"session_id":"sess-22952110e9dd","input_length":515,"output_length":63,"hash_ids":[2828084,2828085],"delay":1473.3} +{"session_id":"sess-22952110e9dd","input_length":128,"output_length":137,"hash_ids":[2828086],"delay":473.6} +{"session_id":"sess-22952110e9dd","input_length":1020,"output_length":55,"hash_ids":[2828087,2828088],"delay":1136.9} +{"session_id":"sess-22952110e9dd","input_length":1330,"output_length":499,"hash_ids":[2828089,2828090,2828091],"delay":325.4} +{"session_id":"sess-22952110e9dd","input_length":353,"output_length":113,"hash_ids":[2828092],"delay":13069.8} +{"session_id":"sess-22952110e9dd","input_length":358,"output_length":41,"hash_ids":[2828093],"delay":725.1} +{"session_id":"sess-22952110e9dd","input_length":2512,"output_length":164,"hash_ids":[2828094,2828095,2828096,2828097,2828098],"delay":148.5} +{"session_id":"sess-22952110e9dd","input_length":462,"output_length":114,"hash_ids":[2828099],"delay":3962.8} +{"session_id":"sess-22952110e9dd","input_length":1283,"output_length":259,"hash_ids":[2828100,2828101,2828102],"delay":280.5} +{"session_id":"sess-22952110e9dd","input_length":732,"output_length":370,"hash_ids":[2828103,2828104],"delay":1330.3} +{"session_id":"sess-22952110e9dd","input_length":383,"output_length":232,"hash_ids":[2828105],"delay":3872.0} +{"session_id":"sess-de7e37b6d939","input_length":27322,"output_length":255,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,2832032,2832033],"timestamp":0.0,"group_id":6} +{"session_id":"sess-de7e37b6d939","input_length":1327,"output_length":183,"hash_ids":[2832034,2832035,2832036],"delay":1002.6} +{"session_id":"sess-de7e37b6d939","input_length":2020,"output_length":36,"hash_ids":[2832037,2832038,2832039,2832040],"delay":681.7} +{"session_id":"sess-de7e37b6d939","input_length":638,"output_length":117,"hash_ids":[2832041,2832042],"delay":835.6} +{"session_id":"sess-de7e37b6d939","input_length":604,"output_length":437,"hash_ids":[2832043,2832044],"delay":275.0} +{"session_id":"sess-de7e37b6d939","input_length":1382,"output_length":114,"hash_ids":[2832045,2832046,2832047],"delay":3845.8} +{"session_id":"sess-52f5318774cf","input_length":36050,"output_length":147,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2836032,2836033,2836034,2836035,2836036,2836037,2836038,2836039,2836040,2836041,2836042,2836043,2836044,2836045,2836046,2836047,2836048,2836049,2836050],"timestamp":0.0,"group_id":0} +{"session_id":"sess-52f5318774cf","input_length":1693,"output_length":180,"hash_ids":[2836051,2836052,2836053,2836054],"delay":500.5} +{"session_id":"sess-52f5318774cf","input_length":865,"output_length":63,"hash_ids":[2836055,2836056],"delay":5749.0} +{"session_id":"sess-52f5318774cf","input_length":1931,"output_length":80,"hash_ids":[2836057,2836058,2836059,2836060],"delay":47810.0} +{"session_id":"sess-52f5318774cf","input_length":1323,"output_length":49,"hash_ids":[2836061,2836062,2836063],"delay":4228.0} +{"session_id":"sess-52f5318774cf","input_length":118,"output_length":337,"hash_ids":[2836064],"delay":451.1} +{"session_id":"sess-52f5318774cf","input_length":497,"output_length":136,"hash_ids":[2836065],"delay":515.1} +{"session_id":"sess-52f5318774cf","input_length":2013,"output_length":1035,"hash_ids":[2836066,2836067,2836068,2836069],"delay":3022.9} +{"session_id":"sess-52f5318774cf","input_length":1054,"output_length":188,"hash_ids":[2836070,2836071,2836072],"delay":10809.6} +{"session_id":"sess-52f5318774cf","input_length":502,"output_length":174,"hash_ids":[2836073],"delay":556.2} +{"session_id":"sess-52f5318774cf","input_length":1291,"output_length":926,"hash_ids":[2836074,2836075,2836076],"delay":8868.7} +{"session_id":"sess-52f5318774cf","input_length":314,"output_length":130,"hash_ids":[2836077],"delay":1095.4} +{"session_id":"sess-52f5318774cf","input_length":381,"output_length":139,"hash_ids":[2836078],"delay":10476.2} +{"session_id":"sess-52f5318774cf","input_length":2282,"output_length":53,"hash_ids":[2836079,2836080,2836081,2836082,2836083],"delay":11347.2} +{"session_id":"sess-52f5318774cf","input_length":1391,"output_length":501,"hash_ids":[2836084,2836085,2836086],"delay":14627.5} +{"session_id":"sess-52f5318774cf","input_length":1323,"output_length":249,"hash_ids":[2836087,2836088,2836089],"delay":359.1} +{"session_id":"sess-52f5318774cf","input_length":764,"output_length":124,"hash_ids":[2836090,2836091],"delay":254.6} +{"session_id":"sess-52f5318774cf","input_length":324,"output_length":161,"hash_ids":[2836092],"delay":251.9} +{"session_id":"sess-52f5318774cf","input_length":725,"output_length":262,"hash_ids":[2836093,2836094],"delay":33144.0} +{"session_id":"sess-52f5318774cf","input_length":1047,"output_length":172,"hash_ids":[2836095,2836096,2836097],"delay":108.1} +{"session_id":"sess-52f5318774cf","input_length":1690,"output_length":77,"hash_ids":[2836098,2836099,2836100,2836101],"delay":10035.4} +{"session_id":"sess-52f5318774cf","input_length":955,"output_length":238,"hash_ids":[2836102,2836103],"delay":439.8} +{"session_id":"sess-7e274d308063","input_length":31096,"output_length":109,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,2840032,2840033,2840034,2840035,2840036,2840037,2840038,2840039,2840040],"timestamp":0.0,"group_id":15} +{"session_id":"sess-7e274d308063","input_length":666,"output_length":196,"hash_ids":[2840041,2840042],"delay":3895.4} +{"session_id":"sess-7e274d308063","input_length":737,"output_length":90,"hash_ids":[2840043,2840044],"delay":292.6} +{"session_id":"sess-7e274d308063","input_length":590,"output_length":65,"hash_ids":[2840045,2840046],"delay":936.9} +{"session_id":"sess-7e274d308063","input_length":109,"output_length":115,"hash_ids":[2840047],"delay":8837.1} +{"session_id":"sess-7e274d308063","input_length":448,"output_length":180,"hash_ids":[2840048],"delay":1219.6} +{"session_id":"sess-7e274d308063","input_length":501,"output_length":655,"hash_ids":[2840049],"delay":501.0} +{"session_id":"sess-7e274d308063","input_length":188,"output_length":66,"hash_ids":[2840050],"delay":486.4} +{"session_id":"sess-7e274d308063","input_length":636,"output_length":246,"hash_ids":[2840051,2840052],"delay":1013.1} +{"session_id":"sess-7e274d308063","input_length":572,"output_length":268,"hash_ids":[2840053,2840054],"delay":2541.6} +{"session_id":"sess-7e274d308063","input_length":1532,"output_length":204,"hash_ids":[2840055,2840056,2840057],"delay":185.3} +{"session_id":"sess-7e274d308063","input_length":401,"output_length":142,"hash_ids":[2840058],"delay":627.2} +{"session_id":"sess-7e274d308063","input_length":1163,"output_length":108,"hash_ids":[2840059,2840060,2840061],"delay":19882.4} +{"session_id":"sess-7e274d308063","input_length":213,"output_length":109,"hash_ids":[2840062],"delay":347.5} +{"session_id":"sess-7e274d308063","input_length":239,"output_length":125,"hash_ids":[2840063],"delay":453.3} +{"session_id":"sess-87decc508599","input_length":27225,"output_length":157,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2844032,2844033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-87decc508599","input_length":919,"output_length":72,"hash_ids":[2844034,2844035],"delay":24496.8} +{"session_id":"sess-87decc508599","input_length":183,"output_length":527,"hash_ids":[2844036],"delay":26605.1} +{"session_id":"sess-87decc508599","input_length":507,"output_length":110,"hash_ids":[2844037],"delay":599.4} +{"session_id":"sess-87decc508599","input_length":277,"output_length":81,"hash_ids":[2844038],"delay":1943.9} +{"session_id":"sess-87decc508599","input_length":2466,"output_length":196,"hash_ids":[2844039,2844040,2844041,2844042,2844043],"delay":1146.2} +{"session_id":"sess-87decc508599","input_length":934,"output_length":169,"hash_ids":[2844044,2844045],"delay":1411.1} +{"session_id":"sess-87decc508599","input_length":1029,"output_length":811,"hash_ids":[2844046,2844047,2844048],"delay":1789.2} +{"session_id":"sess-87decc508599","input_length":806,"output_length":305,"hash_ids":[2844049,2844050],"delay":618.3} +{"session_id":"sess-87decc508599","input_length":655,"output_length":93,"hash_ids":[2844051,2844052],"delay":432.6} +{"session_id":"sess-87decc508599","input_length":276,"output_length":162,"hash_ids":[2844053],"delay":481.6} +{"session_id":"sess-87decc508599","input_length":94,"output_length":90,"hash_ids":[2844054],"delay":1181.8} +{"session_id":"sess-ca3d100aa706","input_length":26579,"output_length":42,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ca3d100aa706","input_length":2214,"output_length":66,"hash_ids":[2844055,2844056,2844057,2844058,2844059],"delay":19678.5} +{"session_id":"sess-ca3d100aa706","input_length":431,"output_length":724,"hash_ids":[2844060],"delay":4326.0} +{"session_id":"sess-ca3d100aa706","input_length":282,"output_length":30,"hash_ids":[2844061],"delay":3157.1} +{"session_id":"sess-ca3d100aa706","input_length":897,"output_length":316,"hash_ids":[2844062,2844063],"delay":248.3} +{"session_id":"sess-ca3d100aa706","input_length":1532,"output_length":1133,"hash_ids":[2844064,2844065,2844066],"delay":3268.4} +{"session_id":"sess-ca3d100aa706","input_length":524,"output_length":90,"hash_ids":[2844067,2844068],"delay":676.1} +{"session_id":"sess-ca3d100aa706","input_length":1371,"output_length":276,"hash_ids":[2844069,2844070,2844071],"delay":1557.0} +{"session_id":"sess-ca3d100aa706","input_length":594,"output_length":71,"hash_ids":[2844072,2844073],"delay":6000.5} +{"session_id":"sess-ca3d100aa706","input_length":2396,"output_length":185,"hash_ids":[2844074,2844075,2844076,2844077,2844078],"delay":6520.2} +{"session_id":"sess-ca3d100aa706","input_length":966,"output_length":454,"hash_ids":[2844079,2844080],"delay":1812.8} +{"session_id":"sess-ca3d100aa706","input_length":988,"output_length":165,"hash_ids":[2844081,2844082],"delay":8849.2} +{"session_id":"sess-ca3d100aa706","input_length":828,"output_length":225,"hash_ids":[2844083,2844084],"delay":53898.4} +{"session_id":"sess-ca3d100aa706","input_length":176,"output_length":485,"hash_ids":[2844085],"delay":7200.9} +{"session_id":"sess-ca3d100aa706","input_length":717,"output_length":153,"hash_ids":[2844086,2844087],"delay":381.7} +{"session_id":"sess-ca3d100aa706","input_length":1749,"output_length":398,"hash_ids":[2844088,2844089,2844090,2844091],"delay":439.1} +{"session_id":"sess-ca3d100aa706","input_length":485,"output_length":187,"hash_ids":[2844092],"delay":1362.4} +{"session_id":"sess-ca3d100aa706","input_length":2697,"output_length":210,"hash_ids":[2844093,2844094,2844095,2844096,2844097,2844098],"delay":2043.2} +{"session_id":"sess-ca3d100aa706","input_length":1279,"output_length":278,"hash_ids":[2844099,2844100,2844101],"delay":1039.7} +{"session_id":"sess-ca3d100aa706","input_length":2098,"output_length":272,"hash_ids":[2844102,2844103,2844104,2844105,2844106],"delay":782.3} +{"session_id":"sess-ca3d100aa706","input_length":245,"output_length":91,"hash_ids":[2844107],"delay":382.7} +{"session_id":"sess-22e5b9b345b3","input_length":26415,"output_length":356,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-22e5b9b345b3","input_length":1878,"output_length":54,"hash_ids":[2844108,2844109,2844110,2844111],"delay":50852.4} +{"session_id":"sess-22e5b9b345b3","input_length":974,"output_length":122,"hash_ids":[2844112,2844113],"delay":814.5} +{"session_id":"sess-22e5b9b345b3","input_length":650,"output_length":180,"hash_ids":[2844114,2844115],"delay":1598.7} +{"session_id":"sess-22e5b9b345b3","input_length":2305,"output_length":259,"hash_ids":[2844116,2844117,2844118,2844119,2844120],"delay":1980.2} +{"session_id":"sess-22e5b9b345b3","input_length":1433,"output_length":190,"hash_ids":[2844121,2844122,2844123],"delay":334.4} +{"session_id":"sess-22e5b9b345b3","input_length":437,"output_length":230,"hash_ids":[2844124],"delay":695.8} +{"session_id":"sess-22e5b9b345b3","input_length":2330,"output_length":109,"hash_ids":[2844125,2844126,2844127,2844128,2844129],"delay":550.1} +{"session_id":"sess-22e5b9b345b3","input_length":334,"output_length":161,"hash_ids":[2844130],"delay":6120.1} +{"session_id":"sess-22e5b9b345b3","input_length":594,"output_length":238,"hash_ids":[2844131,2844132],"delay":681.9} +{"session_id":"sess-22e5b9b345b3","input_length":207,"output_length":226,"hash_ids":[2844133],"delay":366.9} +{"session_id":"sess-22e5b9b345b3","input_length":224,"output_length":402,"hash_ids":[2844134],"delay":542.3} +{"session_id":"sess-22e5b9b345b3","input_length":845,"output_length":402,"hash_ids":[2844135,2844136],"delay":1755.5} +{"session_id":"sess-22e5b9b345b3","input_length":2337,"output_length":219,"hash_ids":[2844137,2844138,2844139,2844140,2844141],"delay":832.8} +{"session_id":"sess-22e5b9b345b3","input_length":2630,"output_length":185,"hash_ids":[2844142,2844143,2844144,2844145,2844146,2844147],"delay":754.0} +{"session_id":"sess-22e5b9b345b3","input_length":175,"output_length":222,"hash_ids":[2844148],"delay":5534.2} +{"session_id":"sess-22e5b9b345b3","input_length":735,"output_length":166,"hash_ids":[2844149,2844150],"delay":290.9} +{"session_id":"sess-22e5b9b345b3","input_length":302,"output_length":290,"hash_ids":[2844151],"delay":10948.5} +{"session_id":"sess-22e5b9b345b3","input_length":1253,"output_length":281,"hash_ids":[2844152,2844153,2844154],"delay":892.5} +{"session_id":"sess-22e5b9b345b3","input_length":1765,"output_length":30,"hash_ids":[2844155,2844156,2844157,2844158],"delay":620.4} +{"session_id":"sess-22e5b9b345b3","input_length":908,"output_length":370,"hash_ids":[2844159,2844160],"delay":1023.6} +{"session_id":"sess-22e5b9b345b3","input_length":1931,"output_length":222,"hash_ids":[2844161,2844162,2844163,2844164],"delay":158.6} +{"session_id":"sess-22e5b9b345b3","input_length":2906,"output_length":187,"hash_ids":[2844165,2844166,2844167,2844168,2844169,2844170],"delay":17165.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":26971,"output_length":238,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,2856032],"timestamp":0.0,"group_id":36} +{"session_id":"sess-9ecaeb1afd6c","input_length":873,"output_length":170,"hash_ids":[2856033,2856034],"delay":30900.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":1023,"output_length":1110,"hash_ids":[2856035,2856036],"delay":402.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":309,"output_length":39,"hash_ids":[2856037],"delay":1098.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":1511,"output_length":101,"hash_ids":[2856038,2856039,2856040],"delay":586.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":459,"output_length":632,"hash_ids":[2856041],"delay":888.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":419,"output_length":57,"hash_ids":[2856042],"delay":6644.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":1084,"output_length":439,"hash_ids":[2856043,2856044,2856045],"delay":1022.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":1033,"output_length":479,"hash_ids":[2856046,2856047,2856048],"delay":4027.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":174,"output_length":112,"hash_ids":[2856049],"delay":1126.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":132,"output_length":304,"hash_ids":[2856050],"delay":495.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":152,"output_length":53,"hash_ids":[2856051],"delay":693.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":401,"output_length":137,"hash_ids":[2856052],"delay":5070.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":405,"output_length":327,"hash_ids":[2856053],"delay":1038.9} +{"session_id":"sess-9ecaeb1afd6c","input_length":912,"output_length":61,"hash_ids":[2856054,2856055],"delay":18327.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":539,"output_length":271,"hash_ids":[2856056,2856057],"delay":2431.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":734,"output_length":969,"hash_ids":[2856058,2856059],"delay":855.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":1529,"output_length":141,"hash_ids":[2856060,2856061,2856062],"delay":23170.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":537,"output_length":167,"hash_ids":[2856063,2856064],"delay":486.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":468,"output_length":347,"hash_ids":[2856065],"delay":2545.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":795,"output_length":174,"hash_ids":[2856066,2856067],"delay":1754.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":1029,"output_length":123,"hash_ids":[2856068,2856069,2856070],"delay":280.8} +{"session_id":"sess-9ecaeb1afd6c","input_length":442,"output_length":330,"hash_ids":[2856071],"delay":1144.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":536,"output_length":103,"hash_ids":[2856072,2856073],"delay":1327.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":374,"output_length":394,"hash_ids":[2856074],"delay":21251.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":645,"output_length":133,"hash_ids":[2856075,2856076],"delay":858.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":1913,"output_length":252,"hash_ids":[2856077,2856078,2856079,2856080],"delay":992.5} +{"session_id":"sess-9ecaeb1afd6c","input_length":388,"output_length":181,"hash_ids":[2856081],"delay":322.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":809,"output_length":236,"hash_ids":[2856082,2856083],"delay":38186.7} +{"session_id":"sess-9ecaeb1afd6c","input_length":2015,"output_length":642,"hash_ids":[2856084,2856085,2856086,2856087],"delay":12747.1} +{"session_id":"sess-9ecaeb1afd6c","input_length":767,"output_length":175,"hash_ids":[2856088,2856089],"delay":348.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":1138,"output_length":43,"hash_ids":[2856090,2856091,2856092],"delay":189.2} +{"session_id":"sess-9ecaeb1afd6c","input_length":1021,"output_length":40,"hash_ids":[2856093,2856094],"delay":4258.0} +{"session_id":"sess-9ecaeb1afd6c","input_length":377,"output_length":175,"hash_ids":[2856095],"delay":4253.3} +{"session_id":"sess-9ecaeb1afd6c","input_length":884,"output_length":412,"hash_ids":[2856096,2856097],"delay":193.6} +{"session_id":"sess-9ecaeb1afd6c","input_length":870,"output_length":630,"hash_ids":[2856098,2856099],"delay":1832.1} +{"session_id":"sess-9ecaeb1afd6c","input_length":441,"output_length":500,"hash_ids":[2856100],"delay":7507.6} +{"session_id":"sess-a7eb27b48cc5","input_length":26825,"output_length":103,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2860032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a7eb27b48cc5","input_length":161,"output_length":844,"hash_ids":[2860033],"delay":2501.8} +{"session_id":"sess-a7eb27b48cc5","input_length":623,"output_length":95,"hash_ids":[2860034,2860035],"delay":1018.4} +{"session_id":"sess-a7eb27b48cc5","input_length":496,"output_length":427,"hash_ids":[2860036],"delay":36251.7} +{"session_id":"sess-a7eb27b48cc5","input_length":243,"output_length":524,"hash_ids":[2860037],"delay":248.3} +{"session_id":"sess-a7eb27b48cc5","input_length":775,"output_length":292,"hash_ids":[2860038,2860039],"delay":230.7} +{"session_id":"sess-a7eb27b48cc5","input_length":350,"output_length":319,"hash_ids":[2860040],"delay":6910.4} +{"session_id":"sess-a7eb27b48cc5","input_length":1877,"output_length":633,"hash_ids":[2860041,2860042,2860043,2860044],"delay":68953.4} +{"session_id":"sess-a7eb27b48cc5","input_length":590,"output_length":560,"hash_ids":[2860045,2860046],"delay":29010.4} +{"session_id":"sess-a7eb27b48cc5","input_length":1746,"output_length":147,"hash_ids":[2860047,2860048,2860049,2860050],"delay":25968.0} +{"session_id":"sess-a7eb27b48cc5","input_length":128,"output_length":1349,"hash_ids":[2860051],"delay":3738.4} +{"session_id":"sess-a7eb27b48cc5","input_length":388,"output_length":118,"hash_ids":[2860052],"delay":25821.9} +{"session_id":"sess-a7eb27b48cc5","input_length":2080,"output_length":328,"hash_ids":[2860053,2860054,2860055,2860056,2860057],"delay":869.9} +{"session_id":"sess-a7eb27b48cc5","input_length":802,"output_length":128,"hash_ids":[2860058,2860059],"delay":9084.9} +{"session_id":"sess-a7eb27b48cc5","input_length":414,"output_length":39,"hash_ids":[2860060],"delay":1791.7} +{"session_id":"sess-a7eb27b48cc5","input_length":1850,"output_length":106,"hash_ids":[2860061,2860062,2860063,2860064],"delay":4180.2} +{"session_id":"sess-a7eb27b48cc5","input_length":998,"output_length":103,"hash_ids":[2860065,2860066],"delay":1966.0} +{"session_id":"sess-a7eb27b48cc5","input_length":310,"output_length":56,"hash_ids":[2860067],"delay":51498.0} +{"session_id":"sess-a7eb27b48cc5","input_length":848,"output_length":96,"hash_ids":[2860068,2860069],"delay":2936.3} +{"session_id":"sess-a7eb27b48cc5","input_length":2578,"output_length":219,"hash_ids":[2860070,2860071,2860072,2860073,2860074,2860075],"delay":265.4} +{"session_id":"sess-a7eb27b48cc5","input_length":2618,"output_length":1131,"hash_ids":[2860076,2860077,2860078,2860079,2860080,2860081],"delay":649.6} +{"session_id":"sess-a7eb27b48cc5","input_length":2042,"output_length":82,"hash_ids":[2860082,2860083,2860084,2860085],"delay":9665.7} +{"session_id":"sess-a7eb27b48cc5","input_length":1171,"output_length":30,"hash_ids":[2860086,2860087,2860088],"delay":642.0} +{"session_id":"sess-a7eb27b48cc5","input_length":286,"output_length":427,"hash_ids":[2860089],"delay":411.6} +{"session_id":"sess-a7eb27b48cc5","input_length":511,"output_length":204,"hash_ids":[2860090],"delay":602.9} +{"session_id":"sess-a7eb27b48cc5","input_length":976,"output_length":31,"hash_ids":[2860091,2860092],"delay":1000.3} +{"session_id":"sess-a7eb27b48cc5","input_length":393,"output_length":30,"hash_ids":[2860093],"delay":417.2} +{"session_id":"sess-a7eb27b48cc5","input_length":373,"output_length":140,"hash_ids":[2860094],"delay":907.0} +{"session_id":"sess-a7eb27b48cc5","input_length":1350,"output_length":36,"hash_ids":[2860095,2860096,2860097],"delay":553.0} +{"session_id":"sess-a7eb27b48cc5","input_length":695,"output_length":44,"hash_ids":[2860098,2860099],"delay":130.0} +{"session_id":"sess-a7eb27b48cc5","input_length":1778,"output_length":247,"hash_ids":[2860100,2860101,2860102,2860103],"delay":553.5} +{"session_id":"sess-d772bcfaf5d9","input_length":26386,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451],"timestamp":0.0,"group_id":17} +{"session_id":"sess-d772bcfaf5d9","input_length":601,"output_length":250,"hash_ids":[2860104,2860105],"delay":1085.1} +{"session_id":"sess-d772bcfaf5d9","input_length":887,"output_length":125,"hash_ids":[2860106,2860107],"delay":206.9} +{"session_id":"sess-d772bcfaf5d9","input_length":2000,"output_length":545,"hash_ids":[2860108,2860109,2860110,2860111],"delay":2417.7} +{"session_id":"sess-d772bcfaf5d9","input_length":228,"output_length":536,"hash_ids":[2860112],"delay":1054.4} +{"session_id":"sess-d772bcfaf5d9","input_length":690,"output_length":98,"hash_ids":[2860113,2860114],"delay":1118.2} +{"session_id":"sess-d772bcfaf5d9","input_length":1314,"output_length":146,"hash_ids":[2860115,2860116,2860117],"delay":1871.4} +{"session_id":"sess-d772bcfaf5d9","input_length":1363,"output_length":514,"hash_ids":[2860118,2860119,2860120],"delay":698.5} +{"session_id":"sess-d772bcfaf5d9","input_length":1171,"output_length":332,"hash_ids":[2860121,2860122,2860123],"delay":412.3} +{"session_id":"sess-d772bcfaf5d9","input_length":229,"output_length":263,"hash_ids":[2860124],"delay":446.8} +{"session_id":"sess-d772bcfaf5d9","input_length":1316,"output_length":839,"hash_ids":[2860125,2860126,2860127],"delay":2193.1} +{"session_id":"sess-d772bcfaf5d9","input_length":847,"output_length":191,"hash_ids":[2860128,2860129],"delay":156.7} +{"session_id":"sess-d772bcfaf5d9","input_length":786,"output_length":388,"hash_ids":[2860130,2860131],"delay":4553.4} +{"session_id":"sess-d772bcfaf5d9","input_length":2823,"output_length":65,"hash_ids":[2860132,2860133,2860134,2860135,2860136,2860137],"delay":1175.6} +{"session_id":"sess-d772bcfaf5d9","input_length":423,"output_length":146,"hash_ids":[2860138],"delay":300.2} +{"session_id":"sess-d772bcfaf5d9","input_length":1192,"output_length":788,"hash_ids":[2860139,2860140,2860141],"delay":9829.7} +{"session_id":"sess-94f537543d71","input_length":31449,"output_length":425,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,2868032,2868033,2868034,2868035,2868036,2868037,2868038,2868039,2868040,2868041],"timestamp":0.0,"group_id":23} +{"session_id":"sess-94f537543d71","input_length":763,"output_length":474,"hash_ids":[2868042,2868043],"delay":7682.4} +{"session_id":"sess-94f537543d71","input_length":314,"output_length":98,"hash_ids":[2868044],"delay":1552.3} +{"session_id":"sess-94f537543d71","input_length":541,"output_length":88,"hash_ids":[2868045,2868046],"delay":1483.4} +{"session_id":"sess-94f537543d71","input_length":162,"output_length":73,"hash_ids":[2868047],"delay":655.7} +{"session_id":"sess-94f537543d71","input_length":281,"output_length":177,"hash_ids":[2868048],"delay":2066.6} +{"session_id":"sess-94f537543d71","input_length":2689,"output_length":134,"hash_ids":[2868049,2868050,2868051,2868052,2868053,2868054],"delay":1023.7} +{"session_id":"sess-94f537543d71","input_length":2516,"output_length":317,"hash_ids":[2868055,2868056,2868057,2868058,2868059],"delay":1215.6} +{"session_id":"sess-94f537543d71","input_length":2137,"output_length":744,"hash_ids":[2868060,2868061,2868062,2868063,2868064],"delay":40275.9} +{"session_id":"sess-94f537543d71","input_length":400,"output_length":178,"hash_ids":[2868065],"delay":515.7} +{"session_id":"sess-94f537543d71","input_length":1176,"output_length":453,"hash_ids":[2868066,2868067,2868068],"delay":23628.1} +{"session_id":"sess-94f537543d71","input_length":551,"output_length":214,"hash_ids":[2868069,2868070],"delay":426.0} +{"session_id":"sess-94f537543d71","input_length":275,"output_length":69,"hash_ids":[2868071],"delay":6384.0} +{"session_id":"sess-94f537543d71","input_length":1850,"output_length":373,"hash_ids":[2868072,2868073,2868074,2868075],"delay":3150.0} +{"session_id":"sess-94f537543d71","input_length":188,"output_length":219,"hash_ids":[2868076],"delay":535.6} +{"session_id":"sess-94f537543d71","input_length":2188,"output_length":231,"hash_ids":[2868077,2868078,2868079,2868080,2868081],"delay":819.1} +{"session_id":"sess-94f537543d71","input_length":276,"output_length":72,"hash_ids":[2868082],"delay":1554.0} +{"session_id":"sess-94f537543d71","input_length":1780,"output_length":133,"hash_ids":[2868083,2868084,2868085,2868086],"delay":22286.4} +{"session_id":"sess-94f537543d71","input_length":1306,"output_length":347,"hash_ids":[2868087,2868088,2868089],"delay":9538.5} +{"session_id":"sess-94f537543d71","input_length":262,"output_length":426,"hash_ids":[2868090],"delay":1484.8} +{"session_id":"sess-94f537543d71","input_length":378,"output_length":336,"hash_ids":[2868091],"delay":19285.7} +{"session_id":"sess-94f537543d71","input_length":2144,"output_length":161,"hash_ids":[2868092,2868093,2868094,2868095,2868096],"delay":351.9} +{"session_id":"sess-94f537543d71","input_length":422,"output_length":212,"hash_ids":[2868097],"delay":11448.3} +{"session_id":"sess-93f4d810a06d","input_length":27314,"output_length":296,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,2872032,2872033],"timestamp":0.0,"group_id":4} +{"session_id":"sess-93f4d810a06d","input_length":1221,"output_length":30,"hash_ids":[2872034,2872035,2872036],"delay":10575.6} +{"session_id":"sess-93f4d810a06d","input_length":324,"output_length":518,"hash_ids":[2872037],"delay":35030.8} +{"session_id":"sess-93f4d810a06d","input_length":2035,"output_length":145,"hash_ids":[2872038,2872039,2872040,2872041],"delay":26051.0} +{"session_id":"sess-93f4d810a06d","input_length":1535,"output_length":66,"hash_ids":[2872042,2872043,2872044],"delay":8535.6} +{"session_id":"sess-93f4d810a06d","input_length":494,"output_length":478,"hash_ids":[2872045],"delay":962.3} +{"session_id":"sess-93f4d810a06d","input_length":2457,"output_length":779,"hash_ids":[2872046,2872047,2872048,2872049,2872050],"delay":10376.6} +{"session_id":"sess-93f4d810a06d","input_length":757,"output_length":213,"hash_ids":[2872051,2872052],"delay":310.4} +{"session_id":"sess-93f4d810a06d","input_length":1957,"output_length":465,"hash_ids":[2872053,2872054,2872055,2872056],"delay":434.6} +{"session_id":"sess-93f4d810a06d","input_length":534,"output_length":89,"hash_ids":[2872057,2872058],"delay":1320.6} +{"session_id":"sess-93f4d810a06d","input_length":179,"output_length":144,"hash_ids":[2872059],"delay":334.2} +{"session_id":"sess-93f4d810a06d","input_length":773,"output_length":514,"hash_ids":[2872060,2872061],"delay":4320.0} +{"session_id":"sess-93f4d810a06d","input_length":1966,"output_length":171,"hash_ids":[2872062,2872063,2872064,2872065],"delay":261.0} +{"session_id":"sess-93f4d810a06d","input_length":927,"output_length":602,"hash_ids":[2872066,2872067],"delay":542.8} +{"session_id":"sess-93f4d810a06d","input_length":2477,"output_length":110,"hash_ids":[2872068,2872069,2872070,2872071,2872072],"delay":1936.2} +{"session_id":"sess-93f4d810a06d","input_length":561,"output_length":60,"hash_ids":[2872073,2872074],"delay":2534.4} +{"session_id":"sess-93f4d810a06d","input_length":1367,"output_length":127,"hash_ids":[2872075,2872076,2872077],"delay":234.2} +{"session_id":"sess-93f4d810a06d","input_length":1114,"output_length":217,"hash_ids":[2872078,2872079,2872080],"delay":1669.4} +{"session_id":"sess-93f4d810a06d","input_length":545,"output_length":370,"hash_ids":[2872081,2872082],"delay":967.3} +{"session_id":"sess-93f4d810a06d","input_length":804,"output_length":103,"hash_ids":[2872083,2872084],"delay":1334.9} +{"session_id":"sess-93f4d810a06d","input_length":275,"output_length":685,"hash_ids":[2872085],"delay":287.6} +{"session_id":"sess-93f4d810a06d","input_length":382,"output_length":257,"hash_ids":[2872086],"delay":185.0} +{"session_id":"sess-93f4d810a06d","input_length":2618,"output_length":108,"hash_ids":[2872087,2872088,2872089,2872090,2872091,2872092],"delay":517.2} +{"session_id":"sess-93f4d810a06d","input_length":2645,"output_length":412,"hash_ids":[2872093,2872094,2872095,2872096,2872097,2872098],"delay":371.9} +{"session_id":"sess-93f4d810a06d","input_length":752,"output_length":318,"hash_ids":[2872099,2872100],"delay":160.8} +{"session_id":"sess-93f4d810a06d","input_length":288,"output_length":115,"hash_ids":[2872101],"delay":481.3} +{"session_id":"sess-93f4d810a06d","input_length":399,"output_length":1349,"hash_ids":[2872102],"delay":892.9} +{"session_id":"sess-440b85723420","input_length":33174,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,2876032,2876033,2876034,2876035,2876036,2876037,2876038,2876039,2876040,2876041,2876042,2876043,2876044],"timestamp":0.0,"group_id":28} +{"session_id":"sess-440b85723420","input_length":2185,"output_length":110,"hash_ids":[2876045,2876046,2876047,2876048,2876049],"delay":342.6} +{"session_id":"sess-56cd9b1c7aeb","input_length":28056,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,2880032,2880033,2880034],"timestamp":0.0,"group_id":22} +{"session_id":"sess-56cd9b1c7aeb","input_length":128,"output_length":293,"hash_ids":[2880035],"delay":17099.8} +{"session_id":"sess-56cd9b1c7aeb","input_length":2903,"output_length":176,"hash_ids":[2880036,2880037,2880038,2880039,2880040,2880041],"delay":925.8} +{"session_id":"sess-56cd9b1c7aeb","input_length":2571,"output_length":559,"hash_ids":[2880042,2880043,2880044,2880045,2880046,2880047],"delay":138.9} +{"session_id":"sess-56cd9b1c7aeb","input_length":136,"output_length":233,"hash_ids":[2880048],"delay":9169.1} +{"session_id":"sess-56cd9b1c7aeb","input_length":2604,"output_length":46,"hash_ids":[2880049,2880050,2880051,2880052,2880053,2880054],"delay":1571.4} +{"session_id":"sess-56cd9b1c7aeb","input_length":311,"output_length":1329,"hash_ids":[2880055],"delay":23268.4} +{"session_id":"sess-56cd9b1c7aeb","input_length":2286,"output_length":80,"hash_ids":[2880056,2880057,2880058,2880059,2880060],"delay":1197.8} +{"session_id":"sess-56cd9b1c7aeb","input_length":89,"output_length":214,"hash_ids":[2880061],"delay":391.2} +{"session_id":"sess-56cd9b1c7aeb","input_length":1858,"output_length":795,"hash_ids":[2880062,2880063,2880064,2880065],"delay":1430.5} +{"session_id":"sess-56cd9b1c7aeb","input_length":398,"output_length":257,"hash_ids":[2880066],"delay":12969.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":835,"output_length":413,"hash_ids":[2880067,2880068],"delay":39294.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":386,"output_length":399,"hash_ids":[2880069],"delay":1448.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":375,"output_length":125,"hash_ids":[2880070],"delay":2753.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":281,"output_length":386,"hash_ids":[2880071],"delay":812.0} +{"session_id":"sess-56cd9b1c7aeb","input_length":289,"output_length":446,"hash_ids":[2880072],"delay":382.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":414,"output_length":133,"hash_ids":[2880073],"delay":7177.6} +{"session_id":"sess-56cd9b1c7aeb","input_length":1290,"output_length":290,"hash_ids":[2880074,2880075,2880076],"delay":2063.1} +{"session_id":"sess-56cd9b1c7aeb","input_length":1502,"output_length":142,"hash_ids":[2880077,2880078,2880079],"delay":265.1} +{"session_id":"sess-56cd9b1c7aeb","input_length":493,"output_length":62,"hash_ids":[2880080],"delay":3316.9} +{"session_id":"sess-56cd9b1c7aeb","input_length":175,"output_length":782,"hash_ids":[2880081],"delay":2049.6} +{"session_id":"sess-56cd9b1c7aeb","input_length":1285,"output_length":441,"hash_ids":[2880082,2880083,2880084],"delay":860.8} +{"session_id":"sess-56cd9b1c7aeb","input_length":199,"output_length":557,"hash_ids":[2880085],"delay":22926.7} +{"session_id":"sess-56cd9b1c7aeb","input_length":941,"output_length":108,"hash_ids":[2880086,2880087],"delay":409.3} +{"session_id":"sess-8d78afe0ff0a","input_length":27078,"output_length":38,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2884032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-8d78afe0ff0a","input_length":2431,"output_length":346,"hash_ids":[2884033,2884034,2884035,2884036,2884037],"delay":2498.4} +{"session_id":"sess-8d78afe0ff0a","input_length":1379,"output_length":275,"hash_ids":[2884038,2884039,2884040],"delay":820.8} +{"session_id":"sess-8d78afe0ff0a","input_length":2614,"output_length":144,"hash_ids":[2884041,2884042,2884043,2884044,2884045,2884046],"delay":5839.6} +{"session_id":"sess-8d78afe0ff0a","input_length":283,"output_length":1204,"hash_ids":[2884047],"delay":32779.9} +{"session_id":"sess-8d78afe0ff0a","input_length":1174,"output_length":141,"hash_ids":[2884048,2884049,2884050],"delay":28613.1} +{"session_id":"sess-8d78afe0ff0a","input_length":490,"output_length":397,"hash_ids":[2884051],"delay":638.8} +{"session_id":"sess-8d78afe0ff0a","input_length":410,"output_length":177,"hash_ids":[2884052],"delay":810.7} +{"session_id":"sess-8d78afe0ff0a","input_length":226,"output_length":115,"hash_ids":[2884053],"delay":393.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":27515,"output_length":220,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,2888032,2888033],"timestamp":0.0,"group_id":24} +{"session_id":"sess-8a1e9d3ccff9","input_length":300,"output_length":393,"hash_ids":[2888034],"delay":2909.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":428,"output_length":227,"hash_ids":[2888035],"delay":3025.2} +{"session_id":"sess-8a1e9d3ccff9","input_length":2523,"output_length":199,"hash_ids":[2888036,2888037,2888038,2888039,2888040],"delay":23043.2} +{"session_id":"sess-8a1e9d3ccff9","input_length":1440,"output_length":138,"hash_ids":[2888041,2888042,2888043],"delay":297.9} +{"session_id":"sess-8a1e9d3ccff9","input_length":1593,"output_length":454,"hash_ids":[2888044,2888045,2888046,2888047],"delay":206.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":493,"output_length":362,"hash_ids":[2888048],"delay":415.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":2175,"output_length":216,"hash_ids":[2888049,2888050,2888051,2888052,2888053],"delay":414.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":386,"output_length":426,"hash_ids":[2888054],"delay":15752.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":223,"output_length":198,"hash_ids":[2888055],"delay":12550.7} +{"session_id":"sess-8a1e9d3ccff9","input_length":1266,"output_length":651,"hash_ids":[2888056,2888057,2888058],"delay":681.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":358,"output_length":77,"hash_ids":[2888059],"delay":580.9} +{"session_id":"sess-8a1e9d3ccff9","input_length":172,"output_length":254,"hash_ids":[2888060],"delay":2657.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":1789,"output_length":247,"hash_ids":[2888061,2888062,2888063,2888064],"delay":753.3} +{"session_id":"sess-8a1e9d3ccff9","input_length":2764,"output_length":276,"hash_ids":[2888065,2888066,2888067,2888068,2888069,2888070],"delay":861.1} +{"session_id":"sess-8a1e9d3ccff9","input_length":1935,"output_length":183,"hash_ids":[2888071,2888072,2888073,2888074],"delay":758.6} +{"session_id":"sess-8a1e9d3ccff9","input_length":230,"output_length":846,"hash_ids":[2888075],"delay":746.7} +{"session_id":"sess-8a1e9d3ccff9","input_length":1680,"output_length":241,"hash_ids":[2888076,2888077,2888078,2888079],"delay":1082.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":2367,"output_length":34,"hash_ids":[2888080,2888081,2888082,2888083,2888084],"delay":2775.7} +{"session_id":"sess-8a1e9d3ccff9","input_length":1994,"output_length":1061,"hash_ids":[2888085,2888086,2888087,2888088],"delay":685.2} +{"session_id":"sess-8a1e9d3ccff9","input_length":665,"output_length":253,"hash_ids":[2888089,2888090],"delay":333.4} +{"session_id":"sess-8a1e9d3ccff9","input_length":475,"output_length":75,"hash_ids":[2888091],"delay":496.5} +{"session_id":"sess-8a1e9d3ccff9","input_length":574,"output_length":370,"hash_ids":[2888092,2888093],"delay":889.2} +{"session_id":"sess-8a1e9d3ccff9","input_length":649,"output_length":386,"hash_ids":[2888094,2888095],"delay":6740.6} +{"session_id":"sess-c7107217db5c","input_length":31747,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,2892032,2892033,2892034,2892035,2892036,2892037,2892038,2892039,2892040,2892041,2892042],"timestamp":0.0,"group_id":9} +{"session_id":"sess-c7107217db5c","input_length":1729,"output_length":79,"hash_ids":[2892043,2892044,2892045,2892046],"delay":790.0} +{"session_id":"sess-c7107217db5c","input_length":1164,"output_length":142,"hash_ids":[2892047,2892048,2892049],"delay":1639.1} +{"session_id":"sess-c7107217db5c","input_length":237,"output_length":279,"hash_ids":[2892050],"delay":2662.4} +{"session_id":"sess-c7107217db5c","input_length":654,"output_length":210,"hash_ids":[2892051,2892052],"delay":302.1} +{"session_id":"sess-c7107217db5c","input_length":2112,"output_length":159,"hash_ids":[2892053,2892054,2892055,2892056,2892057],"delay":1899.5} +{"session_id":"sess-c7107217db5c","input_length":395,"output_length":289,"hash_ids":[2892058],"delay":562.8} +{"session_id":"sess-c7107217db5c","input_length":2781,"output_length":318,"hash_ids":[2892059,2892060,2892061,2892062,2892063,2892064],"delay":1988.9} +{"session_id":"sess-c7107217db5c","input_length":565,"output_length":108,"hash_ids":[2892065,2892066],"delay":835.0} +{"session_id":"sess-c7107217db5c","input_length":2165,"output_length":88,"hash_ids":[2892067,2892068,2892069,2892070,2892071],"delay":523.9} +{"session_id":"sess-c7107217db5c","input_length":359,"output_length":218,"hash_ids":[2892072],"delay":397.6} +{"session_id":"sess-c7107217db5c","input_length":2075,"output_length":56,"hash_ids":[2892073,2892074,2892075,2892076,2892077],"delay":3102.9} +{"session_id":"sess-c7107217db5c","input_length":915,"output_length":869,"hash_ids":[2892078,2892079],"delay":368.7} +{"session_id":"sess-c7107217db5c","input_length":300,"output_length":393,"hash_ids":[2892080],"delay":3211.1} +{"session_id":"sess-c7107217db5c","input_length":1083,"output_length":221,"hash_ids":[2892081,2892082,2892083],"delay":1091.9} +{"session_id":"sess-c7107217db5c","input_length":648,"output_length":461,"hash_ids":[2892084,2892085],"delay":2460.3} +{"session_id":"sess-66ec73619b45","input_length":32099,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2896032,2896033,2896034,2896035,2896036,2896037,2896038,2896039,2896040,2896041,2896042],"timestamp":0.0,"group_id":0} +{"session_id":"sess-66ec73619b45","input_length":775,"output_length":302,"hash_ids":[2896043,2896044],"delay":919.9} +{"session_id":"sess-66ec73619b45","input_length":399,"output_length":239,"hash_ids":[2896045],"delay":241.3} +{"session_id":"sess-66ec73619b45","input_length":1790,"output_length":176,"hash_ids":[2896046,2896047,2896048,2896049],"delay":1754.5} +{"session_id":"sess-66ec73619b45","input_length":2940,"output_length":193,"hash_ids":[2896050,2896051,2896052,2896053,2896054,2896055],"delay":839.4} +{"session_id":"sess-66ec73619b45","input_length":1503,"output_length":291,"hash_ids":[2896056,2896057,2896058],"delay":672.4} +{"session_id":"sess-66ec73619b45","input_length":1520,"output_length":387,"hash_ids":[2896059,2896060,2896061],"delay":6102.7} +{"session_id":"sess-66ec73619b45","input_length":2815,"output_length":42,"hash_ids":[2896062,2896063,2896064,2896065,2896066,2896067],"delay":1033.8} +{"session_id":"sess-66ec73619b45","input_length":997,"output_length":214,"hash_ids":[2896068,2896069],"delay":640.3} +{"session_id":"sess-66ec73619b45","input_length":2093,"output_length":277,"hash_ids":[2896070,2896071,2896072,2896073,2896074],"delay":11171.5} +{"session_id":"sess-4c172fc0ab40","input_length":29855,"output_length":413,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,2900032,2900033,2900034,2900035,2900036,2900037,2900038],"timestamp":0.0,"group_id":2} +{"session_id":"sess-4c172fc0ab40","input_length":814,"output_length":30,"hash_ids":[2900039,2900040],"delay":525.7} +{"session_id":"sess-4c172fc0ab40","input_length":201,"output_length":623,"hash_ids":[2900041],"delay":630.8} +{"session_id":"sess-4c172fc0ab40","input_length":316,"output_length":128,"hash_ids":[2900042],"delay":3564.9} +{"session_id":"sess-4c172fc0ab40","input_length":531,"output_length":95,"hash_ids":[2900043,2900044],"delay":8779.5} +{"session_id":"sess-4c172fc0ab40","input_length":2073,"output_length":44,"hash_ids":[2900045,2900046,2900047,2900048,2900049],"delay":1005.9} +{"session_id":"sess-4c172fc0ab40","input_length":943,"output_length":264,"hash_ids":[2900050,2900051],"delay":166.1} +{"session_id":"sess-4c172fc0ab40","input_length":1296,"output_length":187,"hash_ids":[2900052,2900053,2900054],"delay":941.6} +{"session_id":"sess-4c172fc0ab40","input_length":2778,"output_length":223,"hash_ids":[2900055,2900056,2900057,2900058,2900059,2900060],"delay":542.1} +{"session_id":"sess-4c172fc0ab40","input_length":636,"output_length":319,"hash_ids":[2900061,2900062],"delay":20435.0} +{"session_id":"sess-4c172fc0ab40","input_length":1517,"output_length":156,"hash_ids":[2900063,2900064,2900065],"delay":1297.5} +{"session_id":"sess-4c172fc0ab40","input_length":424,"output_length":264,"hash_ids":[2900066],"delay":1344.0} +{"session_id":"sess-4c172fc0ab40","input_length":788,"output_length":72,"hash_ids":[2900067,2900068],"delay":482.0} +{"session_id":"sess-4c172fc0ab40","input_length":567,"output_length":778,"hash_ids":[2900069,2900070],"delay":488.7} +{"session_id":"sess-4c172fc0ab40","input_length":2450,"output_length":100,"hash_ids":[2900071,2900072,2900073,2900074,2900075],"delay":6817.6} +{"session_id":"sess-4c172fc0ab40","input_length":285,"output_length":495,"hash_ids":[2900076],"delay":494.3} +{"session_id":"sess-4c172fc0ab40","input_length":298,"output_length":39,"hash_ids":[2900077],"delay":2485.2} +{"session_id":"sess-4c172fc0ab40","input_length":685,"output_length":40,"hash_ids":[2900078,2900079],"delay":9316.9} +{"session_id":"sess-4c172fc0ab40","input_length":1362,"output_length":30,"hash_ids":[2900080,2900081,2900082],"delay":6629.3} +{"session_id":"sess-4c172fc0ab40","input_length":250,"output_length":30,"hash_ids":[2900083],"delay":1379.9} +{"session_id":"sess-4c172fc0ab40","input_length":878,"output_length":487,"hash_ids":[2900084,2900085],"delay":1862.7} +{"session_id":"sess-54a556d14d63","input_length":31074,"output_length":261,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2904032,2904033,2904034,2904035,2904036,2904037,2904038,2904039,2904040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-54a556d14d63","input_length":1939,"output_length":130,"hash_ids":[2904041,2904042,2904043,2904044],"delay":4110.7} +{"session_id":"sess-54a556d14d63","input_length":1115,"output_length":177,"hash_ids":[2904045,2904046,2904047],"delay":458.1} +{"session_id":"sess-54a556d14d63","input_length":952,"output_length":885,"hash_ids":[2904048,2904049],"delay":538.1} +{"session_id":"sess-54a556d14d63","input_length":1560,"output_length":30,"hash_ids":[2904050,2904051,2904052,2904053],"delay":369.6} +{"session_id":"sess-54a556d14d63","input_length":554,"output_length":337,"hash_ids":[2904054,2904055],"delay":15142.2} +{"session_id":"sess-54a556d14d63","input_length":1294,"output_length":1383,"hash_ids":[2904056,2904057,2904058],"delay":52313.7} +{"session_id":"sess-54a556d14d63","input_length":1131,"output_length":258,"hash_ids":[2904059,2904060,2904061],"delay":3605.4} +{"session_id":"sess-54a556d14d63","input_length":2140,"output_length":276,"hash_ids":[2904062,2904063,2904064,2904065,2904066],"delay":2273.5} +{"session_id":"sess-54a556d14d63","input_length":489,"output_length":67,"hash_ids":[2904067],"delay":509.8} +{"session_id":"sess-54a556d14d63","input_length":578,"output_length":153,"hash_ids":[2904068,2904069],"delay":39785.2} +{"session_id":"sess-54a556d14d63","input_length":799,"output_length":1067,"hash_ids":[2904070,2904071],"delay":1658.3} +{"session_id":"sess-54a556d14d63","input_length":970,"output_length":206,"hash_ids":[2904072,2904073],"delay":24697.5} +{"session_id":"sess-54a556d14d63","input_length":680,"output_length":464,"hash_ids":[2904074,2904075],"delay":15045.4} +{"session_id":"sess-54a556d14d63","input_length":309,"output_length":129,"hash_ids":[2904076],"delay":9806.4} +{"session_id":"sess-54a556d14d63","input_length":1406,"output_length":188,"hash_ids":[2904077,2904078,2904079],"delay":3068.2} +{"session_id":"sess-54a556d14d63","input_length":2475,"output_length":274,"hash_ids":[2904080,2904081,2904082,2904083,2904084],"delay":2140.3} +{"session_id":"sess-54a556d14d63","input_length":2216,"output_length":72,"hash_ids":[2904085,2904086,2904087,2904088,2904089],"delay":629.6} +{"session_id":"sess-54a556d14d63","input_length":1281,"output_length":610,"hash_ids":[2904090,2904091,2904092],"delay":874.5} +{"session_id":"sess-54a556d14d63","input_length":988,"output_length":164,"hash_ids":[2904093,2904094],"delay":367.3} +{"session_id":"sess-54a556d14d63","input_length":484,"output_length":152,"hash_ids":[2904095],"delay":12780.4} +{"session_id":"sess-54a556d14d63","input_length":748,"output_length":162,"hash_ids":[2904096,2904097],"delay":172.0} +{"session_id":"sess-54a556d14d63","input_length":310,"output_length":85,"hash_ids":[2904098],"delay":119.2} +{"session_id":"sess-54a556d14d63","input_length":165,"output_length":219,"hash_ids":[2904099],"delay":300.1} +{"session_id":"sess-54a556d14d63","input_length":1570,"output_length":178,"hash_ids":[2904100,2904101,2904102,2904103],"delay":78.6} +{"session_id":"sess-54a556d14d63","input_length":171,"output_length":783,"hash_ids":[2904104],"delay":392.2} +{"session_id":"sess-537a7c09786f","input_length":28324,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2908032,2908033,2908034,2908035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-537a7c09786f","input_length":2652,"output_length":69,"hash_ids":[2908036,2908037,2908038,2908039,2908040,2908041],"delay":1662.0} +{"session_id":"sess-537a7c09786f","input_length":591,"output_length":143,"hash_ids":[2908042,2908043],"delay":2737.8} +{"session_id":"sess-537a7c09786f","input_length":622,"output_length":231,"hash_ids":[2908044,2908045],"delay":54830.1} +{"session_id":"sess-537a7c09786f","input_length":345,"output_length":390,"hash_ids":[2908046],"delay":328.2} +{"session_id":"sess-537a7c09786f","input_length":1922,"output_length":268,"hash_ids":[2908047,2908048,2908049,2908050],"delay":1137.4} +{"session_id":"sess-537a7c09786f","input_length":1323,"output_length":128,"hash_ids":[2908051,2908052,2908053],"delay":1047.8} +{"session_id":"sess-537a7c09786f","input_length":678,"output_length":127,"hash_ids":[2908054,2908055],"delay":286.8} +{"session_id":"sess-537a7c09786f","input_length":190,"output_length":285,"hash_ids":[2908056],"delay":1278.3} +{"session_id":"sess-537a7c09786f","input_length":1594,"output_length":231,"hash_ids":[2908057,2908058,2908059,2908060],"delay":1038.4} +{"session_id":"sess-537a7c09786f","input_length":375,"output_length":62,"hash_ids":[2908061],"delay":8723.0} +{"session_id":"sess-537a7c09786f","input_length":483,"output_length":83,"hash_ids":[2908062],"delay":804.2} +{"session_id":"sess-537a7c09786f","input_length":1145,"output_length":196,"hash_ids":[2908063,2908064,2908065],"delay":3048.5} +{"session_id":"sess-537a7c09786f","input_length":337,"output_length":438,"hash_ids":[2908066],"delay":266.6} +{"session_id":"sess-537a7c09786f","input_length":727,"output_length":981,"hash_ids":[2908067,2908068],"delay":32076.1} +{"session_id":"sess-537a7c09786f","input_length":2385,"output_length":179,"hash_ids":[2908069,2908070,2908071,2908072,2908073],"delay":22240.8} +{"session_id":"sess-537a7c09786f","input_length":898,"output_length":177,"hash_ids":[2908074,2908075],"delay":363.1} +{"session_id":"sess-537a7c09786f","input_length":1905,"output_length":134,"hash_ids":[2908076,2908077,2908078,2908079],"delay":723.9} +{"session_id":"sess-537a7c09786f","input_length":968,"output_length":630,"hash_ids":[2908080,2908081],"delay":15664.5} +{"session_id":"sess-537a7c09786f","input_length":392,"output_length":164,"hash_ids":[2908082],"delay":3175.6} +{"session_id":"sess-537a7c09786f","input_length":109,"output_length":54,"hash_ids":[2908083],"delay":854.8} +{"session_id":"sess-537a7c09786f","input_length":2182,"output_length":247,"hash_ids":[2908084,2908085,2908086,2908087,2908088],"delay":8111.7} +{"session_id":"sess-537a7c09786f","input_length":1154,"output_length":71,"hash_ids":[2908089,2908090,2908091],"delay":3918.3} +{"session_id":"sess-537a7c09786f","input_length":962,"output_length":142,"hash_ids":[2908092,2908093],"delay":450.2} +{"session_id":"sess-537a7c09786f","input_length":1272,"output_length":342,"hash_ids":[2908094,2908095,2908096],"delay":1849.3} +{"session_id":"sess-537a7c09786f","input_length":272,"output_length":301,"hash_ids":[2908097],"delay":95.6} +{"session_id":"sess-537a7c09786f","input_length":1513,"output_length":125,"hash_ids":[2908098,2908099,2908100],"delay":341.1} +{"session_id":"sess-537a7c09786f","input_length":735,"output_length":178,"hash_ids":[2908101,2908102],"delay":1565.7} +{"session_id":"sess-537a7c09786f","input_length":2413,"output_length":542,"hash_ids":[2908103,2908104,2908105,2908106,2908107],"delay":524.0} +{"session_id":"sess-181d1377e7de","input_length":29376,"output_length":99,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2912032,2912033,2912034,2912035,2912036,2912037],"timestamp":0.0,"group_id":1} +{"session_id":"sess-181d1377e7de","input_length":2103,"output_length":55,"hash_ids":[2912038,2912039,2912040,2912041,2912042],"delay":1366.8} +{"session_id":"sess-181d1377e7de","input_length":685,"output_length":456,"hash_ids":[2912043,2912044],"delay":1159.4} +{"session_id":"sess-181d1377e7de","input_length":2265,"output_length":477,"hash_ids":[2912045,2912046,2912047,2912048,2912049],"delay":34539.6} +{"session_id":"sess-181d1377e7de","input_length":1700,"output_length":283,"hash_ids":[2912050,2912051,2912052,2912053],"delay":12071.7} +{"session_id":"sess-181d1377e7de","input_length":689,"output_length":531,"hash_ids":[2912054,2912055],"delay":2483.4} +{"session_id":"sess-181d1377e7de","input_length":45,"output_length":203,"hash_ids":[2912056],"delay":158.4} +{"session_id":"sess-181d1377e7de","input_length":2761,"output_length":591,"hash_ids":[2912057,2912058,2912059,2912060,2912061,2912062],"delay":1631.0} +{"session_id":"sess-181d1377e7de","input_length":763,"output_length":90,"hash_ids":[2912063,2912064],"delay":8575.0} +{"session_id":"sess-181d1377e7de","input_length":378,"output_length":209,"hash_ids":[2912065],"delay":2071.8} +{"session_id":"sess-181d1377e7de","input_length":2470,"output_length":123,"hash_ids":[2912066,2912067,2912068,2912069,2912070],"delay":1008.8} +{"session_id":"sess-181d1377e7de","input_length":317,"output_length":177,"hash_ids":[2912071],"delay":1117.7} +{"session_id":"sess-181d1377e7de","input_length":982,"output_length":102,"hash_ids":[2912072,2912073],"delay":246.1} +{"session_id":"sess-181d1377e7de","input_length":675,"output_length":228,"hash_ids":[2912074,2912075],"delay":919.4} +{"session_id":"sess-181d1377e7de","input_length":1655,"output_length":223,"hash_ids":[2912076,2912077,2912078,2912079],"delay":11441.9} +{"session_id":"sess-181d1377e7de","input_length":2816,"output_length":962,"hash_ids":[2912080,2912081,2912082,2912083,2912084,2912085],"delay":579.7} +{"session_id":"sess-181d1377e7de","input_length":2327,"output_length":183,"hash_ids":[2912086,2912087,2912088,2912089,2912090],"delay":494.7} +{"session_id":"sess-181d1377e7de","input_length":1643,"output_length":295,"hash_ids":[2912091,2912092,2912093,2912094],"delay":316.7} +{"session_id":"sess-181d1377e7de","input_length":890,"output_length":424,"hash_ids":[2912095,2912096],"delay":873.3} +{"session_id":"sess-181d1377e7de","input_length":1616,"output_length":280,"hash_ids":[2912097,2912098,2912099,2912100],"delay":16795.1} +{"session_id":"sess-181d1377e7de","input_length":634,"output_length":232,"hash_ids":[2912101,2912102],"delay":524.2} +{"session_id":"sess-181d1377e7de","input_length":645,"output_length":116,"hash_ids":[2912103,2912104],"delay":962.0} +{"session_id":"sess-ff6cc17f603d","input_length":28116,"output_length":48,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2916032,2916033,2916034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff6cc17f603d","input_length":1306,"output_length":557,"hash_ids":[2916035,2916036,2916037],"delay":771.9} +{"session_id":"sess-ff6cc17f603d","input_length":346,"output_length":164,"hash_ids":[2916038],"delay":56101.7} +{"session_id":"sess-ff6cc17f603d","input_length":537,"output_length":199,"hash_ids":[2916039,2916040],"delay":673.3} +{"session_id":"sess-ff6cc17f603d","input_length":479,"output_length":238,"hash_ids":[2916041],"delay":9110.0} +{"session_id":"sess-ff6cc17f603d","input_length":878,"output_length":77,"hash_ids":[2916042,2916043],"delay":1302.1} +{"session_id":"sess-ff6cc17f603d","input_length":697,"output_length":171,"hash_ids":[2916044,2916045],"delay":482.7} +{"session_id":"sess-ff6cc17f603d","input_length":946,"output_length":71,"hash_ids":[2916046,2916047],"delay":18448.7} +{"session_id":"sess-ff6cc17f603d","input_length":2381,"output_length":264,"hash_ids":[2916048,2916049,2916050,2916051,2916052],"delay":1066.1} +{"session_id":"sess-ff6cc17f603d","input_length":1491,"output_length":36,"hash_ids":[2916053,2916054,2916055],"delay":974.4} +{"session_id":"sess-ff6cc17f603d","input_length":970,"output_length":170,"hash_ids":[2916056,2916057],"delay":928.9} +{"session_id":"sess-ff6cc17f603d","input_length":2057,"output_length":216,"hash_ids":[2916058,2916059,2916060,2916061,2916062],"delay":9337.5} +{"session_id":"sess-ff6cc17f603d","input_length":813,"output_length":410,"hash_ids":[2916063,2916064],"delay":11494.0} +{"session_id":"sess-ff6cc17f603d","input_length":2828,"output_length":190,"hash_ids":[2916065,2916066,2916067,2916068,2916069,2916070],"delay":4368.6} +{"session_id":"sess-ff6cc17f603d","input_length":937,"output_length":927,"hash_ids":[2916071,2916072],"delay":338.3} +{"session_id":"sess-ff6cc17f603d","input_length":2466,"output_length":413,"hash_ids":[2916073,2916074,2916075,2916076,2916077],"delay":336.0} +{"session_id":"sess-ff6cc17f603d","input_length":687,"output_length":529,"hash_ids":[2916078,2916079],"delay":538.7} +{"session_id":"sess-ff6cc17f603d","input_length":1375,"output_length":83,"hash_ids":[2916080,2916081,2916082],"delay":860.4} +{"session_id":"sess-ff6cc17f603d","input_length":406,"output_length":270,"hash_ids":[2916083],"delay":5550.5} +{"session_id":"sess-ff6cc17f603d","input_length":108,"output_length":244,"hash_ids":[2916084],"delay":180.2} +{"session_id":"sess-ff6cc17f603d","input_length":259,"output_length":219,"hash_ids":[2916085],"delay":880.8} +{"session_id":"sess-ff6cc17f603d","input_length":450,"output_length":30,"hash_ids":[2916086],"delay":162.2} +{"session_id":"sess-ff6cc17f603d","input_length":638,"output_length":217,"hash_ids":[2916087,2916088],"delay":2986.0} +{"session_id":"sess-ff6cc17f603d","input_length":873,"output_length":66,"hash_ids":[2916089,2916090],"delay":657.5} +{"session_id":"sess-ff6cc17f603d","input_length":677,"output_length":118,"hash_ids":[2916091,2916092],"delay":248.8} +{"session_id":"sess-ff6cc17f603d","input_length":390,"output_length":45,"hash_ids":[2916093],"delay":1226.1} +{"session_id":"sess-ff6cc17f603d","input_length":1498,"output_length":133,"hash_ids":[2916094,2916095,2916096],"delay":720.0} +{"session_id":"sess-ff6cc17f603d","input_length":1886,"output_length":81,"hash_ids":[2916097,2916098,2916099,2916100],"delay":347.5} +{"session_id":"sess-ff6cc17f603d","input_length":1257,"output_length":295,"hash_ids":[2916101,2916102,2916103],"delay":3200.4} +{"session_id":"sess-ff6cc17f603d","input_length":574,"output_length":308,"hash_ids":[2916104,2916105],"delay":14927.0} +{"session_id":"sess-ff6cc17f603d","input_length":352,"output_length":597,"hash_ids":[2916106],"delay":414.2} +{"session_id":"sess-71709b52e421","input_length":34500,"output_length":127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2920032,2920033,2920034,2920035,2920036,2920037,2920038,2920039,2920040,2920041,2920042,2920043,2920044,2920045,2920046,2920047],"timestamp":0.0,"group_id":0} +{"session_id":"sess-71709b52e421","input_length":148,"output_length":58,"hash_ids":[2920048],"delay":264.3} +{"session_id":"sess-71709b52e421","input_length":2086,"output_length":232,"hash_ids":[2920049,2920050,2920051,2920052,2920053],"delay":1006.6} +{"session_id":"sess-71709b52e421","input_length":1685,"output_length":435,"hash_ids":[2920054,2920055,2920056,2920057],"delay":1813.2} +{"session_id":"sess-71709b52e421","input_length":1167,"output_length":456,"hash_ids":[2920058,2920059,2920060],"delay":38361.9} +{"session_id":"sess-71709b52e421","input_length":1568,"output_length":53,"hash_ids":[2920061,2920062,2920063,2920064],"delay":23094.7} +{"session_id":"sess-71709b52e421","input_length":301,"output_length":182,"hash_ids":[2920065],"delay":642.5} +{"session_id":"sess-71709b52e421","input_length":1398,"output_length":61,"hash_ids":[2920066,2920067,2920068],"delay":1732.3} +{"session_id":"sess-71709b52e421","input_length":1307,"output_length":389,"hash_ids":[2920069,2920070,2920071],"delay":1812.6} +{"session_id":"sess-71709b52e421","input_length":2671,"output_length":543,"hash_ids":[2920072,2920073,2920074,2920075,2920076,2920077],"delay":1236.3} +{"session_id":"sess-71709b52e421","input_length":2701,"output_length":144,"hash_ids":[2920078,2920079,2920080,2920081,2920082,2920083],"delay":3357.1} +{"session_id":"sess-71709b52e421","input_length":366,"output_length":104,"hash_ids":[2920084],"delay":262.1} +{"session_id":"sess-71709b52e421","input_length":81,"output_length":93,"hash_ids":[2920085],"delay":503.1} +{"session_id":"sess-71709b52e421","input_length":2866,"output_length":96,"hash_ids":[2920086,2920087,2920088,2920089,2920090,2920091],"delay":630.8} +{"session_id":"sess-71709b52e421","input_length":184,"output_length":326,"hash_ids":[2920092],"delay":487.1} +{"session_id":"sess-71709b52e421","input_length":737,"output_length":113,"hash_ids":[2920093,2920094],"delay":781.4} +{"session_id":"sess-71709b52e421","input_length":1351,"output_length":176,"hash_ids":[2920095,2920096,2920097],"delay":25478.7} +{"session_id":"sess-71709b52e421","input_length":435,"output_length":158,"hash_ids":[2920098],"delay":3550.6} +{"session_id":"sess-71709b52e421","input_length":93,"output_length":124,"hash_ids":[2920099],"delay":6985.6} +{"session_id":"sess-71709b52e421","input_length":411,"output_length":1174,"hash_ids":[2920100],"delay":15103.7} +{"session_id":"sess-71709b52e421","input_length":1284,"output_length":328,"hash_ids":[2920101,2920102,2920103],"delay":246.3} +{"session_id":"sess-71709b52e421","input_length":1624,"output_length":197,"hash_ids":[2920104,2920105,2920106,2920107],"delay":26247.0} +{"session_id":"sess-71709b52e421","input_length":330,"output_length":1131,"hash_ids":[2920108],"delay":823.1} +{"session_id":"sess-d0485a5793b9","input_length":30276,"output_length":376,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2924032,2924033,2924034,2924035,2924036,2924037,2924038,2924039],"timestamp":0.0,"group_id":12} +{"session_id":"sess-d0485a5793b9","input_length":177,"output_length":134,"hash_ids":[2924040],"delay":583.0} +{"session_id":"sess-d0485a5793b9","input_length":985,"output_length":412,"hash_ids":[2924041,2924042],"delay":1853.0} +{"session_id":"sess-d0485a5793b9","input_length":1104,"output_length":294,"hash_ids":[2924043,2924044,2924045],"delay":1320.0} +{"session_id":"sess-d0485a5793b9","input_length":485,"output_length":372,"hash_ids":[2924046],"delay":5613.5} +{"session_id":"sess-d0485a5793b9","input_length":501,"output_length":175,"hash_ids":[2924047],"delay":49357.8} +{"session_id":"sess-d0485a5793b9","input_length":1448,"output_length":122,"hash_ids":[2924048,2924049,2924050],"delay":637.8} +{"session_id":"sess-d0485a5793b9","input_length":169,"output_length":156,"hash_ids":[2924051],"delay":29153.7} +{"session_id":"sess-e737e33bc9c2","input_length":26818,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2928032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-e737e33bc9c2","input_length":771,"output_length":184,"hash_ids":[2928033,2928034],"delay":703.6} +{"session_id":"sess-e737e33bc9c2","input_length":194,"output_length":118,"hash_ids":[2928035],"delay":2590.3} +{"session_id":"sess-e737e33bc9c2","input_length":1033,"output_length":191,"hash_ids":[2928036,2928037,2928038],"delay":11083.9} +{"session_id":"sess-e737e33bc9c2","input_length":513,"output_length":57,"hash_ids":[2928039,2928040],"delay":3657.2} +{"session_id":"sess-e737e33bc9c2","input_length":1188,"output_length":191,"hash_ids":[2928041,2928042,2928043],"delay":1326.4} +{"session_id":"sess-e737e33bc9c2","input_length":408,"output_length":42,"hash_ids":[2928044],"delay":16830.2} +{"session_id":"sess-a8c6b1834495","input_length":28531,"output_length":359,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,2932032,2932033,2932034,2932035],"timestamp":0.0,"group_id":6} +{"session_id":"sess-a8c6b1834495","input_length":924,"output_length":136,"hash_ids":[2932036,2932037],"delay":1769.6} +{"session_id":"sess-a8c6b1834495","input_length":1947,"output_length":531,"hash_ids":[2932038,2932039,2932040,2932041],"delay":2569.0} +{"session_id":"sess-a8c6b1834495","input_length":1825,"output_length":75,"hash_ids":[2932042,2932043,2932044,2932045],"delay":2395.2} +{"session_id":"sess-a8c6b1834495","input_length":1662,"output_length":207,"hash_ids":[2932046,2932047,2932048,2932049],"delay":2163.5} +{"session_id":"sess-a8c6b1834495","input_length":415,"output_length":278,"hash_ids":[2932050],"delay":393.4} +{"session_id":"sess-a8c6b1834495","input_length":1379,"output_length":185,"hash_ids":[2932051,2932052,2932053],"delay":602.6} +{"session_id":"sess-a8c6b1834495","input_length":1329,"output_length":133,"hash_ids":[2932054,2932055,2932056],"delay":1154.2} +{"session_id":"sess-a8c6b1834495","input_length":870,"output_length":674,"hash_ids":[2932057,2932058],"delay":630.1} +{"session_id":"sess-a8c6b1834495","input_length":1402,"output_length":451,"hash_ids":[2932059,2932060,2932061],"delay":1276.6} +{"session_id":"sess-a8c6b1834495","input_length":1118,"output_length":303,"hash_ids":[2932062,2932063,2932064],"delay":401.5} +{"session_id":"sess-a8c6b1834495","input_length":728,"output_length":210,"hash_ids":[2932065,2932066],"delay":9033.7} +{"session_id":"sess-a8c6b1834495","input_length":847,"output_length":189,"hash_ids":[2932067,2932068],"delay":5051.3} +{"session_id":"sess-a8c6b1834495","input_length":182,"output_length":419,"hash_ids":[2932069],"delay":3390.5} +{"session_id":"sess-a8c6b1834495","input_length":1643,"output_length":61,"hash_ids":[2932070,2932071,2932072,2932073],"delay":622.6} +{"session_id":"sess-a8c6b1834495","input_length":1534,"output_length":600,"hash_ids":[2932074,2932075,2932076],"delay":1217.2} +{"session_id":"sess-a8c6b1834495","input_length":739,"output_length":213,"hash_ids":[2932077,2932078],"delay":16616.2} +{"session_id":"sess-a8c6b1834495","input_length":185,"output_length":685,"hash_ids":[2932079],"delay":8711.4} +{"session_id":"sess-a8c6b1834495","input_length":172,"output_length":65,"hash_ids":[2932080],"delay":13951.1} +{"session_id":"sess-a8c6b1834495","input_length":989,"output_length":182,"hash_ids":[2932081,2932082],"delay":710.8} +{"session_id":"sess-a8c6b1834495","input_length":139,"output_length":224,"hash_ids":[2932083],"delay":1022.1} +{"session_id":"sess-a8c6b1834495","input_length":956,"output_length":230,"hash_ids":[2932084,2932085],"delay":2678.8} +{"session_id":"sess-a8c6b1834495","input_length":295,"output_length":83,"hash_ids":[2932086],"delay":1536.5} +{"session_id":"sess-a8c6b1834495","input_length":200,"output_length":42,"hash_ids":[2932087],"delay":256.3} +{"session_id":"sess-a8c6b1834495","input_length":1331,"output_length":134,"hash_ids":[2932088,2932089,2932090],"delay":264.6} +{"session_id":"sess-dfc859011a94","input_length":34866,"output_length":663,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2936032,2936033,2936034,2936035,2936036,2936037,2936038,2936039,2936040,2936041,2936042,2936043,2936044,2936045,2936046,2936047,2936048],"timestamp":0.0,"group_id":1} +{"session_id":"sess-dfc859011a94","input_length":153,"output_length":97,"hash_ids":[2936049],"delay":940.2} +{"session_id":"sess-dfc859011a94","input_length":1355,"output_length":497,"hash_ids":[2936050,2936051,2936052],"delay":1068.7} +{"session_id":"sess-dfc859011a94","input_length":919,"output_length":195,"hash_ids":[2936053,2936054],"delay":421.4} +{"session_id":"sess-dfc859011a94","input_length":312,"output_length":87,"hash_ids":[2936055],"delay":15950.3} +{"session_id":"sess-dfc859011a94","input_length":358,"output_length":223,"hash_ids":[2936056],"delay":862.3} +{"session_id":"sess-dfc859011a94","input_length":340,"output_length":991,"hash_ids":[2936057],"delay":2230.4} +{"session_id":"sess-dfc859011a94","input_length":2526,"output_length":221,"hash_ids":[2936058,2936059,2936060,2936061,2936062],"delay":859.7} +{"session_id":"sess-dfc859011a94","input_length":476,"output_length":161,"hash_ids":[2936063],"delay":570.3} +{"session_id":"sess-0f23ee5313e2","input_length":26964,"output_length":201,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2940032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0f23ee5313e2","input_length":173,"output_length":93,"hash_ids":[2940033],"delay":982.1} +{"session_id":"sess-0f23ee5313e2","input_length":1328,"output_length":318,"hash_ids":[2940034,2940035,2940036],"delay":810.4} +{"session_id":"sess-0f23ee5313e2","input_length":1358,"output_length":163,"hash_ids":[2940037,2940038,2940039],"delay":1076.2} +{"session_id":"sess-275c3b2d27a5","input_length":30616,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2944032,2944033,2944034,2944035,2944036,2944037,2944038,2944039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-275c3b2d27a5","input_length":2727,"output_length":81,"hash_ids":[2944040,2944041,2944042,2944043,2944044,2944045],"delay":1742.4} +{"session_id":"sess-275c3b2d27a5","input_length":2127,"output_length":76,"hash_ids":[2944046,2944047,2944048,2944049,2944050],"delay":1047.7} +{"session_id":"sess-275c3b2d27a5","input_length":324,"output_length":54,"hash_ids":[2944051],"delay":1611.4} +{"session_id":"sess-275c3b2d27a5","input_length":1457,"output_length":352,"hash_ids":[2944052,2944053,2944054],"delay":4833.4} +{"session_id":"sess-1e5c393f4a8f","input_length":26473,"output_length":117,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-1e5c393f4a8f","input_length":1786,"output_length":1202,"hash_ids":[2944055,2944056,2944057,2944058],"delay":431.7} +{"session_id":"sess-1e5c393f4a8f","input_length":1782,"output_length":85,"hash_ids":[2944059,2944060,2944061,2944062],"delay":5453.6} +{"session_id":"sess-1e5c393f4a8f","input_length":2337,"output_length":41,"hash_ids":[2944063,2944064,2944065,2944066,2944067],"delay":3839.3} +{"session_id":"sess-1e5c393f4a8f","input_length":1038,"output_length":211,"hash_ids":[2944068,2944069,2944070],"delay":930.8} +{"session_id":"sess-1e5c393f4a8f","input_length":421,"output_length":89,"hash_ids":[2944071],"delay":448.8} +{"session_id":"sess-1e5c393f4a8f","input_length":995,"output_length":220,"hash_ids":[2944072,2944073],"delay":5402.1} +{"session_id":"sess-1e5c393f4a8f","input_length":400,"output_length":38,"hash_ids":[2944074],"delay":577.2} +{"session_id":"sess-1e5c393f4a8f","input_length":455,"output_length":528,"hash_ids":[2944075],"delay":345.5} +{"session_id":"sess-1e5c393f4a8f","input_length":365,"output_length":55,"hash_ids":[2944076],"delay":980.3} +{"session_id":"sess-1e5c393f4a8f","input_length":881,"output_length":119,"hash_ids":[2944077,2944078],"delay":2049.5} +{"session_id":"sess-1e5c393f4a8f","input_length":160,"output_length":236,"hash_ids":[2944079],"delay":5279.6} +{"session_id":"sess-1e5c393f4a8f","input_length":867,"output_length":860,"hash_ids":[2944080,2944081],"delay":4285.1} +{"session_id":"sess-1e5c393f4a8f","input_length":824,"output_length":830,"hash_ids":[2944082,2944083],"delay":12969.6} +{"session_id":"sess-1e5c393f4a8f","input_length":1014,"output_length":137,"hash_ids":[2944084,2944085],"delay":885.0} +{"session_id":"sess-1e5c393f4a8f","input_length":508,"output_length":118,"hash_ids":[2944086],"delay":3181.1} +{"session_id":"sess-1e5c393f4a8f","input_length":379,"output_length":162,"hash_ids":[2944087],"delay":39406.2} +{"session_id":"sess-3dd07e287651","input_length":27655,"output_length":64,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,2952032,2952033,2952034],"timestamp":0.0,"group_id":45} +{"session_id":"sess-3dd07e287651","input_length":193,"output_length":231,"hash_ids":[2952035],"delay":1121.8} +{"session_id":"sess-3dd07e287651","input_length":1380,"output_length":119,"hash_ids":[2952036,2952037,2952038],"delay":2696.4} +{"session_id":"sess-3dd07e287651","input_length":280,"output_length":270,"hash_ids":[2952039],"delay":1081.2} +{"session_id":"sess-3dd07e287651","input_length":826,"output_length":131,"hash_ids":[2952040,2952041],"delay":371.8} +{"session_id":"sess-3dd07e287651","input_length":910,"output_length":178,"hash_ids":[2952042,2952043],"delay":1460.4} +{"session_id":"sess-3dd07e287651","input_length":916,"output_length":153,"hash_ids":[2952044,2952045],"delay":15768.9} +{"session_id":"sess-3dd07e287651","input_length":338,"output_length":218,"hash_ids":[2952046],"delay":4022.1} +{"session_id":"sess-3dd07e287651","input_length":287,"output_length":237,"hash_ids":[2952047],"delay":1149.5} +{"session_id":"sess-3dd07e287651","input_length":1036,"output_length":64,"hash_ids":[2952048,2952049,2952050],"delay":2250.6} +{"session_id":"sess-3dd07e287651","input_length":1735,"output_length":63,"hash_ids":[2952051,2952052,2952053,2952054],"delay":395.7} +{"session_id":"sess-3dd07e287651","input_length":291,"output_length":166,"hash_ids":[2952055],"delay":37534.8} +{"session_id":"sess-c90f0f4b613c","input_length":27703,"output_length":220,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2956032,2956033,2956034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c90f0f4b613c","input_length":477,"output_length":386,"hash_ids":[2956035],"delay":2455.7} +{"session_id":"sess-c90f0f4b613c","input_length":790,"output_length":211,"hash_ids":[2956036,2956037],"delay":244.5} +{"session_id":"sess-c90f0f4b613c","input_length":341,"output_length":997,"hash_ids":[2956038],"delay":1000.1} +{"session_id":"sess-c90f0f4b613c","input_length":523,"output_length":258,"hash_ids":[2956039,2956040],"delay":1591.7} +{"session_id":"sess-c90f0f4b613c","input_length":452,"output_length":94,"hash_ids":[2956041],"delay":532.4} +{"session_id":"sess-c90f0f4b613c","input_length":943,"output_length":157,"hash_ids":[2956042,2956043],"delay":517.2} +{"session_id":"sess-c90f0f4b613c","input_length":337,"output_length":96,"hash_ids":[2956044],"delay":790.4} +{"session_id":"sess-c90f0f4b613c","input_length":840,"output_length":150,"hash_ids":[2956045,2956046],"delay":822.1} +{"session_id":"sess-c90f0f4b613c","input_length":611,"output_length":181,"hash_ids":[2956047,2956048],"delay":1009.9} +{"session_id":"sess-c90f0f4b613c","input_length":366,"output_length":442,"hash_ids":[2956049],"delay":14269.0} +{"session_id":"sess-c90f0f4b613c","input_length":760,"output_length":239,"hash_ids":[2956050,2956051],"delay":401.6} +{"session_id":"sess-c90f0f4b613c","input_length":590,"output_length":221,"hash_ids":[2956052,2956053],"delay":1052.6} +{"session_id":"sess-c90f0f4b613c","input_length":990,"output_length":283,"hash_ids":[2956054,2956055],"delay":1446.2} +{"session_id":"sess-c90f0f4b613c","input_length":1697,"output_length":208,"hash_ids":[2956056,2956057,2956058,2956059],"delay":9694.0} +{"session_id":"sess-c90f0f4b613c","input_length":1692,"output_length":162,"hash_ids":[2956060,2956061,2956062,2956063],"delay":955.9} +{"session_id":"sess-c90f0f4b613c","input_length":2126,"output_length":223,"hash_ids":[2956064,2956065,2956066,2956067,2956068],"delay":148.1} +{"session_id":"sess-c90f0f4b613c","input_length":155,"output_length":73,"hash_ids":[2956069],"delay":8757.8} +{"session_id":"sess-c90f0f4b613c","input_length":1070,"output_length":515,"hash_ids":[2956070,2956071,2956072],"delay":1469.2} +{"session_id":"sess-c90f0f4b613c","input_length":610,"output_length":84,"hash_ids":[2956073,2956074],"delay":24983.4} +{"session_id":"sess-c90f0f4b613c","input_length":725,"output_length":516,"hash_ids":[2956075,2956076],"delay":18519.0} +{"session_id":"sess-c90f0f4b613c","input_length":1698,"output_length":30,"hash_ids":[2956077,2956078,2956079,2956080],"delay":2547.2} +{"session_id":"sess-c90f0f4b613c","input_length":1169,"output_length":130,"hash_ids":[2956081,2956082,2956083],"delay":368.6} +{"session_id":"sess-c90f0f4b613c","input_length":536,"output_length":337,"hash_ids":[2956084,2956085],"delay":405.2} +{"session_id":"sess-c90f0f4b613c","input_length":701,"output_length":126,"hash_ids":[2956086,2956087],"delay":7137.5} +{"session_id":"sess-de172a742e0d","input_length":30138,"output_length":90,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2960032,2960033,2960034,2960035,2960036,2960037,2960038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-de172a742e0d","input_length":611,"output_length":460,"hash_ids":[2960039,2960040],"delay":29628.4} +{"session_id":"sess-de172a742e0d","input_length":1061,"output_length":357,"hash_ids":[2960041,2960042,2960043],"delay":2735.5} +{"session_id":"sess-de172a742e0d","input_length":159,"output_length":92,"hash_ids":[2960044],"delay":765.7} +{"session_id":"sess-de172a742e0d","input_length":867,"output_length":318,"hash_ids":[2960045,2960046],"delay":780.7} +{"session_id":"sess-de172a742e0d","input_length":2040,"output_length":354,"hash_ids":[2960047,2960048,2960049,2960050],"delay":547.8} +{"session_id":"sess-de172a742e0d","input_length":544,"output_length":415,"hash_ids":[2960051,2960052],"delay":2266.0} +{"session_id":"sess-de172a742e0d","input_length":195,"output_length":304,"hash_ids":[2960053],"delay":17705.6} +{"session_id":"sess-de172a742e0d","input_length":635,"output_length":214,"hash_ids":[2960054,2960055],"delay":3237.2} +{"session_id":"sess-de172a742e0d","input_length":671,"output_length":159,"hash_ids":[2960056,2960057],"delay":2172.8} +{"session_id":"sess-de172a742e0d","input_length":1157,"output_length":148,"hash_ids":[2960058,2960059,2960060],"delay":231.5} +{"session_id":"sess-de172a742e0d","input_length":357,"output_length":325,"hash_ids":[2960061],"delay":48416.3} +{"session_id":"sess-de172a742e0d","input_length":1138,"output_length":757,"hash_ids":[2960062,2960063,2960064],"delay":1281.5} +{"session_id":"sess-de172a742e0d","input_length":2918,"output_length":35,"hash_ids":[2960065,2960066,2960067,2960068,2960069,2960070],"delay":4570.1} +{"session_id":"sess-de172a742e0d","input_length":312,"output_length":89,"hash_ids":[2960071],"delay":436.1} +{"session_id":"sess-de172a742e0d","input_length":2429,"output_length":78,"hash_ids":[2960072,2960073,2960074,2960075,2960076],"delay":1942.9} +{"session_id":"sess-de172a742e0d","input_length":1000,"output_length":256,"hash_ids":[2960077,2960078],"delay":3149.2} +{"session_id":"sess-de172a742e0d","input_length":65,"output_length":631,"hash_ids":[2960079],"delay":772.4} +{"session_id":"sess-de172a742e0d","input_length":726,"output_length":171,"hash_ids":[2960080,2960081],"delay":486.9} +{"session_id":"sess-de172a742e0d","input_length":418,"output_length":196,"hash_ids":[2960082],"delay":1147.0} +{"session_id":"sess-de172a742e0d","input_length":1914,"output_length":71,"hash_ids":[2960083,2960084,2960085,2960086],"delay":869.7} +{"session_id":"sess-de172a742e0d","input_length":919,"output_length":388,"hash_ids":[2960087,2960088],"delay":23062.0} +{"session_id":"sess-de172a742e0d","input_length":2643,"output_length":137,"hash_ids":[2960089,2960090,2960091,2960092,2960093,2960094],"delay":768.3} +{"session_id":"sess-de172a742e0d","input_length":2285,"output_length":491,"hash_ids":[2960095,2960096,2960097,2960098,2960099],"delay":8528.7} +{"session_id":"sess-de172a742e0d","input_length":1331,"output_length":181,"hash_ids":[2960100,2960101,2960102],"delay":4709.8} +{"session_id":"sess-8e9eda696a1e","input_length":31131,"output_length":205,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,2964032,2964033,2964034,2964035,2964036,2964037,2964038,2964039,2964040],"timestamp":0.0,"group_id":22} +{"session_id":"sess-8e9eda696a1e","input_length":2496,"output_length":464,"hash_ids":[2964041,2964042,2964043,2964044,2964045],"delay":229.1} +{"session_id":"sess-8e9eda696a1e","input_length":733,"output_length":89,"hash_ids":[2964046,2964047],"delay":2587.8} +{"session_id":"sess-8e9eda696a1e","input_length":70,"output_length":30,"hash_ids":[2964048],"delay":230.5} +{"session_id":"sess-8e9eda696a1e","input_length":776,"output_length":49,"hash_ids":[2964049,2964050],"delay":2545.3} +{"session_id":"sess-8e9eda696a1e","input_length":940,"output_length":277,"hash_ids":[2964051,2964052],"delay":25421.5} +{"session_id":"sess-8e9eda696a1e","input_length":2271,"output_length":157,"hash_ids":[2964053,2964054,2964055,2964056,2964057],"delay":3022.3} +{"session_id":"sess-8e9eda696a1e","input_length":880,"output_length":89,"hash_ids":[2964058,2964059],"delay":1137.2} +{"session_id":"sess-8e9eda696a1e","input_length":948,"output_length":338,"hash_ids":[2964060,2964061],"delay":671.7} +{"session_id":"sess-8e9eda696a1e","input_length":528,"output_length":548,"hash_ids":[2964062,2964063],"delay":2281.7} +{"session_id":"sess-8e9eda696a1e","input_length":631,"output_length":263,"hash_ids":[2964064,2964065],"delay":3167.3} +{"session_id":"sess-8e9eda696a1e","input_length":2322,"output_length":627,"hash_ids":[2964066,2964067,2964068,2964069,2964070],"delay":10318.3} +{"session_id":"sess-8e9eda696a1e","input_length":149,"output_length":615,"hash_ids":[2964071],"delay":2575.1} +{"session_id":"sess-8e9eda696a1e","input_length":2449,"output_length":371,"hash_ids":[2964072,2964073,2964074,2964075,2964076],"delay":14955.2} +{"session_id":"sess-8e9eda696a1e","input_length":269,"output_length":429,"hash_ids":[2964077],"delay":293.2} +{"session_id":"sess-8e9eda696a1e","input_length":1305,"output_length":270,"hash_ids":[2964078,2964079,2964080],"delay":590.2} +{"session_id":"sess-8e9eda696a1e","input_length":881,"output_length":286,"hash_ids":[2964081,2964082],"delay":1890.1} +{"session_id":"sess-8e9eda696a1e","input_length":432,"output_length":215,"hash_ids":[2964083],"delay":698.7} +{"session_id":"sess-8e9eda696a1e","input_length":1491,"output_length":281,"hash_ids":[2964084,2964085,2964086],"delay":333.7} +{"session_id":"sess-8e9eda696a1e","input_length":103,"output_length":212,"hash_ids":[2964087],"delay":273.6} +{"session_id":"sess-8e9eda696a1e","input_length":674,"output_length":805,"hash_ids":[2964088,2964089],"delay":704.6} +{"session_id":"sess-8e9eda696a1e","input_length":541,"output_length":83,"hash_ids":[2964090,2964091],"delay":686.0} +{"session_id":"sess-8e9eda696a1e","input_length":857,"output_length":398,"hash_ids":[2964092,2964093],"delay":250.6} +{"session_id":"sess-8e9eda696a1e","input_length":2787,"output_length":702,"hash_ids":[2964094,2964095,2964096,2964097,2964098,2964099],"delay":279.7} +{"session_id":"sess-13c663346d05","input_length":32188,"output_length":737,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2968032,2968033,2968034,2968035,2968036,2968037,2968038,2968039,2968040,2968041,2968042],"timestamp":0.0,"group_id":7} +{"session_id":"sess-13c663346d05","input_length":2789,"output_length":489,"hash_ids":[2968043,2968044,2968045,2968046,2968047,2968048],"delay":5541.1} +{"session_id":"sess-13c663346d05","input_length":949,"output_length":96,"hash_ids":[2968049,2968050],"delay":23181.6} +{"session_id":"sess-13c663346d05","input_length":1621,"output_length":268,"hash_ids":[2968051,2968052,2968053,2968054],"delay":167.1} +{"session_id":"sess-13c663346d05","input_length":149,"output_length":93,"hash_ids":[2968055],"delay":936.9} +{"session_id":"sess-13c663346d05","input_length":676,"output_length":1117,"hash_ids":[2968056,2968057],"delay":599.3} +{"session_id":"sess-13c663346d05","input_length":716,"output_length":242,"hash_ids":[2968058,2968059],"delay":7620.3} +{"session_id":"sess-13c663346d05","input_length":1276,"output_length":228,"hash_ids":[2968060,2968061,2968062],"delay":182.3} +{"session_id":"sess-13c663346d05","input_length":2404,"output_length":879,"hash_ids":[2968063,2968064,2968065,2968066,2968067],"delay":15531.9} +{"session_id":"sess-13c663346d05","input_length":525,"output_length":73,"hash_ids":[2968068,2968069],"delay":399.1} +{"session_id":"sess-13c663346d05","input_length":2161,"output_length":152,"hash_ids":[2968070,2968071,2968072,2968073,2968074],"delay":611.0} +{"session_id":"sess-13c663346d05","input_length":369,"output_length":30,"hash_ids":[2968075],"delay":1373.5} +{"session_id":"sess-13c663346d05","input_length":732,"output_length":173,"hash_ids":[2968076,2968077],"delay":581.0} +{"session_id":"sess-13c663346d05","input_length":1171,"output_length":642,"hash_ids":[2968078,2968079,2968080],"delay":5508.2} +{"session_id":"sess-13c663346d05","input_length":1010,"output_length":1001,"hash_ids":[2968081,2968082],"delay":1071.1} +{"session_id":"sess-13c663346d05","input_length":2196,"output_length":140,"hash_ids":[2968083,2968084,2968085,2968086,2968087],"delay":271.3} +{"session_id":"sess-13c663346d05","input_length":497,"output_length":354,"hash_ids":[2968088],"delay":335.1} +{"session_id":"sess-13c663346d05","input_length":785,"output_length":30,"hash_ids":[2968089,2968090],"delay":434.2} +{"session_id":"sess-13c663346d05","input_length":507,"output_length":140,"hash_ids":[2968091],"delay":6861.6} +{"session_id":"sess-13c663346d05","input_length":308,"output_length":441,"hash_ids":[2968092],"delay":698.7} +{"session_id":"sess-13c663346d05","input_length":509,"output_length":419,"hash_ids":[2968093],"delay":3023.9} +{"session_id":"sess-13c663346d05","input_length":1552,"output_length":92,"hash_ids":[2968094,2968095,2968096,2968097],"delay":390.5} +{"session_id":"sess-13c663346d05","input_length":823,"output_length":215,"hash_ids":[2968098,2968099],"delay":5815.4} +{"session_id":"sess-13c663346d05","input_length":156,"output_length":433,"hash_ids":[2968100],"delay":2328.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":33522,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2972032,2972033,2972034,2972035,2972036,2972037,2972038,2972039,2972040,2972041,2972042,2972043,2972044,2972045],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0f9d7be5f6e8","input_length":241,"output_length":269,"hash_ids":[2972046],"delay":2061.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":379,"output_length":569,"hash_ids":[2972047],"delay":4793.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":114,"output_length":302,"hash_ids":[2972048],"delay":1321.1} +{"session_id":"sess-0f9d7be5f6e8","input_length":561,"output_length":364,"hash_ids":[2972049,2972050],"delay":188.7} +{"session_id":"sess-0f9d7be5f6e8","input_length":649,"output_length":30,"hash_ids":[2972051,2972052],"delay":3975.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":1192,"output_length":251,"hash_ids":[2972053,2972054,2972055],"delay":331.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":517,"output_length":143,"hash_ids":[2972056,2972057],"delay":662.6} +{"session_id":"sess-0f9d7be5f6e8","input_length":802,"output_length":1122,"hash_ids":[2972058,2972059],"delay":545.5} +{"session_id":"sess-d528486ee2f0","input_length":27078,"output_length":1100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,2976032],"timestamp":0.0,"group_id":5} +{"session_id":"sess-d528486ee2f0","input_length":588,"output_length":350,"hash_ids":[2976033,2976034],"delay":1064.3} +{"session_id":"sess-d528486ee2f0","input_length":2832,"output_length":214,"hash_ids":[2976035,2976036,2976037,2976038,2976039,2976040],"delay":856.7} +{"session_id":"sess-d528486ee2f0","input_length":411,"output_length":397,"hash_ids":[2976041],"delay":2552.9} +{"session_id":"sess-d528486ee2f0","input_length":1272,"output_length":30,"hash_ids":[2976042,2976043,2976044],"delay":1054.1} +{"session_id":"sess-d528486ee2f0","input_length":757,"output_length":344,"hash_ids":[2976045,2976046],"delay":21515.1} +{"session_id":"sess-d528486ee2f0","input_length":1066,"output_length":59,"hash_ids":[2976047,2976048,2976049],"delay":587.8} +{"session_id":"sess-d528486ee2f0","input_length":319,"output_length":183,"hash_ids":[2976050],"delay":381.0} +{"session_id":"sess-d528486ee2f0","input_length":1007,"output_length":95,"hash_ids":[2976051,2976052],"delay":21807.4} +{"session_id":"sess-d528486ee2f0","input_length":1245,"output_length":416,"hash_ids":[2976053,2976054,2976055],"delay":140.3} +{"session_id":"sess-d528486ee2f0","input_length":619,"output_length":552,"hash_ids":[2976056,2976057],"delay":1104.0} +{"session_id":"sess-d528486ee2f0","input_length":540,"output_length":96,"hash_ids":[2976058,2976059],"delay":192.1} +{"session_id":"sess-d528486ee2f0","input_length":426,"output_length":166,"hash_ids":[2976060],"delay":248.1} +{"session_id":"sess-d528486ee2f0","input_length":456,"output_length":916,"hash_ids":[2976061],"delay":1450.4} +{"session_id":"sess-d528486ee2f0","input_length":2242,"output_length":116,"hash_ids":[2976062,2976063,2976064,2976065,2976066],"delay":1923.2} +{"session_id":"sess-d528486ee2f0","input_length":244,"output_length":101,"hash_ids":[2976067],"delay":883.9} +{"session_id":"sess-d528486ee2f0","input_length":1854,"output_length":299,"hash_ids":[2976068,2976069,2976070,2976071],"delay":1110.6} +{"session_id":"sess-d528486ee2f0","input_length":1506,"output_length":1457,"hash_ids":[2976072,2976073,2976074],"delay":461.0} +{"session_id":"sess-d528486ee2f0","input_length":873,"output_length":869,"hash_ids":[2976075,2976076],"delay":313.4} +{"session_id":"sess-d528486ee2f0","input_length":126,"output_length":112,"hash_ids":[2976077],"delay":4878.0} +{"session_id":"sess-d528486ee2f0","input_length":2483,"output_length":37,"hash_ids":[2976078,2976079,2976080,2976081,2976082],"delay":672.6} +{"session_id":"sess-d528486ee2f0","input_length":2379,"output_length":187,"hash_ids":[2976083,2976084,2976085,2976086,2976087],"delay":208.1} +{"session_id":"sess-d528486ee2f0","input_length":1740,"output_length":72,"hash_ids":[2976088,2976089,2976090,2976091],"delay":379.7} +{"session_id":"sess-d528486ee2f0","input_length":813,"output_length":415,"hash_ids":[2976092,2976093],"delay":722.3} +{"session_id":"sess-d528486ee2f0","input_length":1579,"output_length":879,"hash_ids":[2976094,2976095,2976096,2976097],"delay":766.8} +{"session_id":"sess-d528486ee2f0","input_length":1121,"output_length":221,"hash_ids":[2976098,2976099,2976100],"delay":1593.8} +{"session_id":"sess-5099494e3e57","input_length":30413,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,2980032,2980033,2980034,2980035,2980036,2980037,2980038,2980039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5099494e3e57","input_length":1134,"output_length":164,"hash_ids":[2980040,2980041,2980042],"delay":2880.5} +{"session_id":"sess-5099494e3e57","input_length":576,"output_length":93,"hash_ids":[2980043,2980044],"delay":1354.9} +{"session_id":"sess-5099494e3e57","input_length":369,"output_length":70,"hash_ids":[2980045],"delay":2076.0} +{"session_id":"sess-5099494e3e57","input_length":898,"output_length":474,"hash_ids":[2980046,2980047],"delay":853.7} +{"session_id":"sess-5099494e3e57","input_length":1296,"output_length":42,"hash_ids":[2980048,2980049,2980050],"delay":32170.2} +{"session_id":"sess-5099494e3e57","input_length":1170,"output_length":462,"hash_ids":[2980051,2980052,2980053],"delay":204.4} +{"session_id":"sess-13092aa269b4","input_length":29013,"output_length":151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,2984032,2984033,2984034,2984035,2984036],"timestamp":0.0,"group_id":7} +{"session_id":"sess-13092aa269b4","input_length":562,"output_length":126,"hash_ids":[2984037,2984038],"delay":485.9} +{"session_id":"sess-13092aa269b4","input_length":1311,"output_length":472,"hash_ids":[2984039,2984040,2984041],"delay":4510.9} +{"session_id":"sess-13092aa269b4","input_length":293,"output_length":512,"hash_ids":[2984042],"delay":276.0} +{"session_id":"sess-13092aa269b4","input_length":742,"output_length":143,"hash_ids":[2984043,2984044],"delay":8188.1} +{"session_id":"sess-13092aa269b4","input_length":1330,"output_length":205,"hash_ids":[2984045,2984046,2984047],"delay":11026.6} +{"session_id":"sess-13092aa269b4","input_length":498,"output_length":145,"hash_ids":[2984048],"delay":981.3} +{"session_id":"sess-13092aa269b4","input_length":1527,"output_length":440,"hash_ids":[2984049,2984050,2984051],"delay":2955.5} +{"session_id":"sess-13092aa269b4","input_length":582,"output_length":306,"hash_ids":[2984052,2984053],"delay":836.0} +{"session_id":"sess-13092aa269b4","input_length":1276,"output_length":146,"hash_ids":[2984054,2984055,2984056],"delay":17339.1} +{"session_id":"sess-13092aa269b4","input_length":1621,"output_length":281,"hash_ids":[2984057,2984058,2984059,2984060],"delay":2699.7} +{"session_id":"sess-13092aa269b4","input_length":825,"output_length":117,"hash_ids":[2984061,2984062],"delay":492.3} +{"session_id":"sess-13092aa269b4","input_length":775,"output_length":272,"hash_ids":[2984063,2984064],"delay":7990.3} +{"session_id":"sess-13092aa269b4","input_length":1911,"output_length":124,"hash_ids":[2984065,2984066,2984067,2984068],"delay":10993.4} +{"session_id":"sess-13092aa269b4","input_length":1460,"output_length":781,"hash_ids":[2984069,2984070,2984071],"delay":882.4} +{"session_id":"sess-13092aa269b4","input_length":178,"output_length":492,"hash_ids":[2984072],"delay":2982.2} +{"session_id":"sess-13092aa269b4","input_length":969,"output_length":125,"hash_ids":[2984073,2984074],"delay":680.5} +{"session_id":"sess-13092aa269b4","input_length":371,"output_length":596,"hash_ids":[2984075],"delay":389.9} +{"session_id":"sess-13092aa269b4","input_length":1804,"output_length":71,"hash_ids":[2984076,2984077,2984078,2984079],"delay":1088.5} +{"session_id":"sess-13092aa269b4","input_length":1224,"output_length":167,"hash_ids":[2984080,2984081,2984082],"delay":5863.1} +{"session_id":"sess-13092aa269b4","input_length":116,"output_length":542,"hash_ids":[2984083],"delay":740.3} +{"session_id":"sess-13092aa269b4","input_length":2341,"output_length":30,"hash_ids":[2984084,2984085,2984086,2984087,2984088],"delay":4905.9} +{"session_id":"sess-13092aa269b4","input_length":237,"output_length":205,"hash_ids":[2984089],"delay":11093.3} +{"session_id":"sess-13092aa269b4","input_length":1686,"output_length":219,"hash_ids":[2984090,2984091,2984092,2984093],"delay":8224.5} +{"session_id":"sess-13092aa269b4","input_length":2979,"output_length":448,"hash_ids":[2984094,2984095,2984096,2984097,2984098,2984099],"delay":1968.9} +{"session_id":"sess-ef1b09f726cc","input_length":30952,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,2988032,2988033,2988034,2988035,2988036,2988037,2988038,2988039,2988040],"timestamp":0.0,"group_id":19} +{"session_id":"sess-4b349f0f65b0","input_length":26897,"output_length":348,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,2992032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4b349f0f65b0","input_length":1091,"output_length":138,"hash_ids":[2992033,2992034,2992035],"delay":1817.8} +{"session_id":"sess-4b349f0f65b0","input_length":1568,"output_length":258,"hash_ids":[2992036,2992037,2992038,2992039],"delay":1205.5} +{"session_id":"sess-4b349f0f65b0","input_length":352,"output_length":1270,"hash_ids":[2992040],"delay":10729.8} +{"session_id":"sess-4b349f0f65b0","input_length":1119,"output_length":241,"hash_ids":[2992041,2992042,2992043],"delay":41002.4} +{"session_id":"sess-4b349f0f65b0","input_length":279,"output_length":130,"hash_ids":[2992044],"delay":29945.1} +{"session_id":"sess-4b349f0f65b0","input_length":132,"output_length":293,"hash_ids":[2992045],"delay":3972.1} +{"session_id":"sess-4b349f0f65b0","input_length":1813,"output_length":239,"hash_ids":[2992046,2992047,2992048,2992049],"delay":627.1} +{"session_id":"sess-4b349f0f65b0","input_length":625,"output_length":102,"hash_ids":[2992050,2992051],"delay":8059.7} +{"session_id":"sess-4b349f0f65b0","input_length":328,"output_length":52,"hash_ids":[2992052],"delay":2044.2} +{"session_id":"sess-4b349f0f65b0","input_length":1516,"output_length":120,"hash_ids":[2992053,2992054,2992055],"delay":1546.5} +{"session_id":"sess-4b349f0f65b0","input_length":1963,"output_length":186,"hash_ids":[2992056,2992057,2992058,2992059],"delay":12101.5} +{"session_id":"sess-4b349f0f65b0","input_length":1009,"output_length":296,"hash_ids":[2992060,2992061],"delay":4189.9} +{"session_id":"sess-4b349f0f65b0","input_length":1936,"output_length":181,"hash_ids":[2992062,2992063,2992064,2992065],"delay":1592.4} +{"session_id":"sess-4b349f0f65b0","input_length":182,"output_length":110,"hash_ids":[2992066],"delay":197.6} +{"session_id":"sess-4b349f0f65b0","input_length":665,"output_length":148,"hash_ids":[2992067,2992068],"delay":760.7} +{"session_id":"sess-4b349f0f65b0","input_length":1325,"output_length":143,"hash_ids":[2992069,2992070,2992071],"delay":788.5} +{"session_id":"sess-4b349f0f65b0","input_length":2675,"output_length":363,"hash_ids":[2992072,2992073,2992074,2992075,2992076,2992077],"delay":390.3} +{"session_id":"sess-4b349f0f65b0","input_length":162,"output_length":142,"hash_ids":[2992078],"delay":622.9} +{"session_id":"sess-4b349f0f65b0","input_length":309,"output_length":164,"hash_ids":[2992079],"delay":546.5} +{"session_id":"sess-4b349f0f65b0","input_length":310,"output_length":351,"hash_ids":[2992080],"delay":12484.0} +{"session_id":"sess-4b349f0f65b0","input_length":454,"output_length":133,"hash_ids":[2992081],"delay":148.5} +{"session_id":"sess-4b349f0f65b0","input_length":287,"output_length":210,"hash_ids":[2992082],"delay":4642.2} +{"session_id":"sess-4b349f0f65b0","input_length":1272,"output_length":228,"hash_ids":[2992083,2992084,2992085],"delay":7214.8} +{"session_id":"sess-4b349f0f65b0","input_length":853,"output_length":65,"hash_ids":[2992086,2992087],"delay":290.7} +{"session_id":"sess-4b349f0f65b0","input_length":474,"output_length":744,"hash_ids":[2992088],"delay":107.4} +{"session_id":"sess-4b349f0f65b0","input_length":1556,"output_length":383,"hash_ids":[2992089,2992090,2992091,2992092],"delay":9174.6} +{"session_id":"sess-4b349f0f65b0","input_length":344,"output_length":436,"hash_ids":[2992093],"delay":369.4} +{"session_id":"sess-4b349f0f65b0","input_length":2073,"output_length":242,"hash_ids":[2992094,2992095,2992096,2992097,2992098],"delay":268.9} +{"session_id":"sess-4b349f0f65b0","input_length":933,"output_length":91,"hash_ids":[2992099,2992100],"delay":6078.1} +{"session_id":"sess-4b349f0f65b0","input_length":1633,"output_length":86,"hash_ids":[2992101,2992102,2992103,2992104],"delay":455.2} +{"session_id":"sess-603d7762d5ee","input_length":36050,"output_length":572,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,2996032,2996033,2996034,2996035,2996036,2996037,2996038,2996039,2996040,2996041,2996042,2996043,2996044,2996045,2996046,2996047,2996048,2996049,2996050],"timestamp":0.0,"group_id":46} +{"session_id":"sess-603d7762d5ee","input_length":2191,"output_length":143,"hash_ids":[2996051,2996052,2996053,2996054,2996055],"delay":1088.6} +{"session_id":"sess-603d7762d5ee","input_length":373,"output_length":83,"hash_ids":[2996056],"delay":4462.9} +{"session_id":"sess-603d7762d5ee","input_length":600,"output_length":191,"hash_ids":[2996057,2996058],"delay":289.4} +{"session_id":"sess-603d7762d5ee","input_length":296,"output_length":135,"hash_ids":[2996059],"delay":5209.6} +{"session_id":"sess-603d7762d5ee","input_length":1197,"output_length":61,"hash_ids":[2996060,2996061,2996062],"delay":618.6} +{"session_id":"sess-603d7762d5ee","input_length":913,"output_length":134,"hash_ids":[2996063,2996064],"delay":1300.8} +{"session_id":"sess-603d7762d5ee","input_length":704,"output_length":119,"hash_ids":[2996065,2996066],"delay":3749.2} +{"session_id":"sess-603d7762d5ee","input_length":1216,"output_length":49,"hash_ids":[2996067,2996068,2996069],"delay":3215.4} +{"session_id":"sess-603d7762d5ee","input_length":409,"output_length":42,"hash_ids":[2996070],"delay":383.1} +{"session_id":"sess-603d7762d5ee","input_length":1255,"output_length":434,"hash_ids":[2996071,2996072,2996073],"delay":76.1} +{"session_id":"sess-603d7762d5ee","input_length":353,"output_length":142,"hash_ids":[2996074],"delay":24898.0} +{"session_id":"sess-392a003b94e3","input_length":27415,"output_length":76,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3000032,3000033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-392a003b94e3","input_length":1479,"output_length":366,"hash_ids":[3000034,3000035,3000036],"delay":18246.4} +{"session_id":"sess-a61957c274aa","input_length":26497,"output_length":786,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a61957c274aa","input_length":597,"output_length":1255,"hash_ids":[3000037,3000038],"delay":690.3} +{"session_id":"sess-a61957c274aa","input_length":971,"output_length":49,"hash_ids":[3000039,3000040],"delay":1178.3} +{"session_id":"sess-a61957c274aa","input_length":606,"output_length":404,"hash_ids":[3000041,3000042],"delay":716.7} +{"session_id":"sess-a61957c274aa","input_length":1723,"output_length":321,"hash_ids":[3000043,3000044,3000045,3000046],"delay":18629.0} +{"session_id":"sess-a61957c274aa","input_length":1276,"output_length":712,"hash_ids":[3000047,3000048,3000049],"delay":1401.6} +{"session_id":"sess-a61957c274aa","input_length":1764,"output_length":267,"hash_ids":[3000050,3000051,3000052,3000053],"delay":2875.7} +{"session_id":"sess-a61957c274aa","input_length":426,"output_length":178,"hash_ids":[3000054],"delay":235.2} +{"session_id":"sess-a61957c274aa","input_length":608,"output_length":420,"hash_ids":[3000055,3000056],"delay":2697.9} +{"session_id":"sess-a61957c274aa","input_length":1187,"output_length":280,"hash_ids":[3000057,3000058,3000059],"delay":688.1} +{"session_id":"sess-a61957c274aa","input_length":1787,"output_length":339,"hash_ids":[3000060,3000061,3000062,3000063],"delay":1355.6} +{"session_id":"sess-a61957c274aa","input_length":2538,"output_length":245,"hash_ids":[3000064,3000065,3000066,3000067,3000068],"delay":192.3} +{"session_id":"sess-a61957c274aa","input_length":640,"output_length":30,"hash_ids":[3000069,3000070],"delay":649.8} +{"session_id":"sess-a61957c274aa","input_length":334,"output_length":77,"hash_ids":[3000071],"delay":325.0} +{"session_id":"sess-a61957c274aa","input_length":1700,"output_length":191,"hash_ids":[3000072,3000073,3000074,3000075],"delay":19064.6} +{"session_id":"sess-a61957c274aa","input_length":830,"output_length":314,"hash_ids":[3000076,3000077],"delay":8432.1} +{"session_id":"sess-a61957c274aa","input_length":1289,"output_length":78,"hash_ids":[3000078,3000079,3000080],"delay":916.1} +{"session_id":"sess-a61957c274aa","input_length":313,"output_length":239,"hash_ids":[3000081],"delay":615.0} +{"session_id":"sess-a61957c274aa","input_length":502,"output_length":425,"hash_ids":[3000082],"delay":29117.4} +{"session_id":"sess-a61957c274aa","input_length":1191,"output_length":725,"hash_ids":[3000083,3000084,3000085],"delay":17584.4} +{"session_id":"sess-a61957c274aa","input_length":573,"output_length":320,"hash_ids":[3000086,3000087],"delay":9207.2} +{"session_id":"sess-a61957c274aa","input_length":1556,"output_length":403,"hash_ids":[3000088,3000089,3000090,3000091],"delay":716.0} +{"session_id":"sess-a61957c274aa","input_length":1254,"output_length":107,"hash_ids":[3000092,3000093,3000094],"delay":6004.5} +{"session_id":"sess-a61957c274aa","input_length":262,"output_length":349,"hash_ids":[3000095],"delay":2137.3} +{"session_id":"sess-a61957c274aa","input_length":419,"output_length":544,"hash_ids":[3000096],"delay":947.2} +{"session_id":"sess-a61957c274aa","input_length":964,"output_length":61,"hash_ids":[3000097,3000098],"delay":1195.9} +{"session_id":"sess-1b7d1d571d46","input_length":26555,"output_length":229,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651],"timestamp":0.0,"group_id":18} +{"session_id":"sess-1b7d1d571d46","input_length":785,"output_length":210,"hash_ids":[3000099,3000100],"delay":953.0} +{"session_id":"sess-1b7d1d571d46","input_length":2625,"output_length":292,"hash_ids":[3000101,3000102,3000103,3000104,3000105,3000106],"delay":2187.7} +{"session_id":"sess-1b7d1d571d46","input_length":907,"output_length":680,"hash_ids":[3000107,3000108],"delay":10556.4} +{"session_id":"sess-1b7d1d571d46","input_length":324,"output_length":145,"hash_ids":[3000109],"delay":569.9} +{"session_id":"sess-1b7d1d571d46","input_length":1340,"output_length":746,"hash_ids":[3000110,3000111,3000112],"delay":335.3} +{"session_id":"sess-1b7d1d571d46","input_length":1869,"output_length":161,"hash_ids":[3000113,3000114,3000115,3000116],"delay":20196.6} +{"session_id":"sess-1b7d1d571d46","input_length":1131,"output_length":345,"hash_ids":[3000117,3000118,3000119],"delay":2009.6} +{"session_id":"sess-1b7d1d571d46","input_length":997,"output_length":120,"hash_ids":[3000120,3000121],"delay":1412.5} +{"session_id":"sess-1b7d1d571d46","input_length":867,"output_length":435,"hash_ids":[3000122,3000123],"delay":940.1} +{"session_id":"sess-1b7d1d571d46","input_length":457,"output_length":111,"hash_ids":[3000124],"delay":119.4} +{"session_id":"sess-1b7d1d571d46","input_length":1043,"output_length":145,"hash_ids":[3000125,3000126,3000127],"delay":1049.7} +{"session_id":"sess-1b7d1d571d46","input_length":1334,"output_length":248,"hash_ids":[3000128,3000129,3000130],"delay":2540.1} +{"session_id":"sess-1b7d1d571d46","input_length":275,"output_length":71,"hash_ids":[3000131],"delay":9870.8} +{"session_id":"sess-1b7d1d571d46","input_length":1758,"output_length":896,"hash_ids":[3000132,3000133,3000134,3000135],"delay":1185.0} +{"session_id":"sess-1b7d1d571d46","input_length":1110,"output_length":1100,"hash_ids":[3000136,3000137,3000138],"delay":554.7} +{"session_id":"sess-1b7d1d571d46","input_length":1033,"output_length":30,"hash_ids":[3000139,3000140,3000141],"delay":1429.9} +{"session_id":"sess-1b7d1d571d46","input_length":1358,"output_length":768,"hash_ids":[3000142,3000143,3000144],"delay":254.6} +{"session_id":"sess-1b7d1d571d46","input_length":1608,"output_length":886,"hash_ids":[3000145,3000146,3000147,3000148],"delay":829.8} +{"session_id":"sess-1b7d1d571d46","input_length":2556,"output_length":228,"hash_ids":[3000149,3000150,3000151,3000152,3000153],"delay":732.1} +{"session_id":"sess-1b7d1d571d46","input_length":2610,"output_length":282,"hash_ids":[3000154,3000155,3000156,3000157,3000158,3000159],"delay":402.9} +{"session_id":"sess-1b7d1d571d46","input_length":1797,"output_length":392,"hash_ids":[3000160,3000161,3000162,3000163],"delay":1097.5} +{"session_id":"sess-1b7d1d571d46","input_length":432,"output_length":201,"hash_ids":[3000164],"delay":637.6} +{"session_id":"sess-1b7d1d571d46","input_length":165,"output_length":120,"hash_ids":[3000165],"delay":92.8} +{"session_id":"sess-86ebe7679add","input_length":28766,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,3012032,3012033,3012034,3012035,3012036],"timestamp":0.0,"group_id":4} +{"session_id":"sess-86ebe7679add","input_length":945,"output_length":60,"hash_ids":[3012037,3012038],"delay":646.1} +{"session_id":"sess-86ebe7679add","input_length":170,"output_length":86,"hash_ids":[3012039],"delay":2135.8} +{"session_id":"sess-86ebe7679add","input_length":720,"output_length":453,"hash_ids":[3012040,3012041],"delay":803.0} +{"session_id":"sess-86ebe7679add","input_length":1571,"output_length":177,"hash_ids":[3012042,3012043,3012044,3012045],"delay":3664.1} +{"session_id":"sess-86ebe7679add","input_length":2885,"output_length":452,"hash_ids":[3012046,3012047,3012048,3012049,3012050,3012051],"delay":628.9} +{"session_id":"sess-86ebe7679add","input_length":1399,"output_length":237,"hash_ids":[3012052,3012053,3012054],"delay":1719.6} +{"session_id":"sess-86ebe7679add","input_length":2576,"output_length":78,"hash_ids":[3012055,3012056,3012057,3012058,3012059,3012060],"delay":3902.8} +{"session_id":"sess-86ebe7679add","input_length":871,"output_length":328,"hash_ids":[3012061,3012062],"delay":2957.1} +{"session_id":"sess-86ebe7679add","input_length":1685,"output_length":173,"hash_ids":[3012063,3012064,3012065,3012066],"delay":1131.1} +{"session_id":"sess-86ebe7679add","input_length":1218,"output_length":132,"hash_ids":[3012067,3012068,3012069],"delay":702.7} +{"session_id":"sess-86ebe7679add","input_length":954,"output_length":834,"hash_ids":[3012070,3012071],"delay":1774.0} +{"session_id":"sess-86ebe7679add","input_length":838,"output_length":466,"hash_ids":[3012072,3012073],"delay":1356.3} +{"session_id":"sess-86ebe7679add","input_length":504,"output_length":450,"hash_ids":[3012074],"delay":267.7} +{"session_id":"sess-86ebe7679add","input_length":1574,"output_length":664,"hash_ids":[3012075,3012076,3012077,3012078],"delay":12304.7} +{"session_id":"sess-86ebe7679add","input_length":653,"output_length":201,"hash_ids":[3012079,3012080],"delay":793.9} +{"session_id":"sess-86ebe7679add","input_length":667,"output_length":125,"hash_ids":[3012081,3012082],"delay":519.6} +{"session_id":"sess-86ebe7679add","input_length":1077,"output_length":114,"hash_ids":[3012083,3012084,3012085],"delay":1495.4} +{"session_id":"sess-86ebe7679add","input_length":901,"output_length":97,"hash_ids":[3012086,3012087],"delay":554.8} +{"session_id":"sess-86ebe7679add","input_length":1489,"output_length":173,"hash_ids":[3012088,3012089,3012090],"delay":802.1} +{"session_id":"sess-86ebe7679add","input_length":919,"output_length":112,"hash_ids":[3012091,3012092],"delay":1350.9} +{"session_id":"sess-86ebe7679add","input_length":799,"output_length":117,"hash_ids":[3012093,3012094],"delay":22426.2} +{"session_id":"sess-86ebe7679add","input_length":2886,"output_length":264,"hash_ids":[3012095,3012096,3012097,3012098,3012099,3012100],"delay":638.8} +{"session_id":"sess-86ebe7679add","input_length":629,"output_length":323,"hash_ids":[3012101,3012102],"delay":22616.9} +{"session_id":"sess-2135b25c2b4f","input_length":27008,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3016032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8a89776de299","input_length":29968,"output_length":697,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3020032,3020033,3020034,3020035,3020036,3020037,3020038],"timestamp":0.0,"group_id":5} +{"session_id":"sess-8a89776de299","input_length":850,"output_length":100,"hash_ids":[3020039,3020040],"delay":1128.4} +{"session_id":"sess-8a89776de299","input_length":2177,"output_length":365,"hash_ids":[3020041,3020042,3020043,3020044,3020045],"delay":2935.4} +{"session_id":"sess-8a89776de299","input_length":1516,"output_length":288,"hash_ids":[3020046,3020047,3020048],"delay":2290.5} +{"session_id":"sess-8a89776de299","input_length":2226,"output_length":168,"hash_ids":[3020049,3020050,3020051,3020052,3020053],"delay":2152.1} +{"session_id":"sess-8a89776de299","input_length":167,"output_length":167,"hash_ids":[3020054],"delay":1170.1} +{"session_id":"sess-8a89776de299","input_length":212,"output_length":134,"hash_ids":[3020055],"delay":914.3} +{"session_id":"sess-8a89776de299","input_length":976,"output_length":753,"hash_ids":[3020056,3020057],"delay":24283.6} +{"session_id":"sess-8a89776de299","input_length":246,"output_length":30,"hash_ids":[3020058],"delay":312.5} +{"session_id":"sess-8a89776de299","input_length":517,"output_length":865,"hash_ids":[3020059,3020060],"delay":269.9} +{"session_id":"sess-8a89776de299","input_length":281,"output_length":328,"hash_ids":[3020061],"delay":403.2} +{"session_id":"sess-8a89776de299","input_length":748,"output_length":161,"hash_ids":[3020062,3020063],"delay":1605.7} +{"session_id":"sess-8a89776de299","input_length":973,"output_length":422,"hash_ids":[3020064,3020065],"delay":105.7} +{"session_id":"sess-8a89776de299","input_length":870,"output_length":103,"hash_ids":[3020066,3020067],"delay":14505.5} +{"session_id":"sess-8a89776de299","input_length":362,"output_length":68,"hash_ids":[3020068],"delay":14617.3} +{"session_id":"sess-8a89776de299","input_length":194,"output_length":213,"hash_ids":[3020069],"delay":1076.8} +{"session_id":"sess-8a89776de299","input_length":894,"output_length":289,"hash_ids":[3020070,3020071],"delay":428.0} +{"session_id":"sess-8a89776de299","input_length":1122,"output_length":146,"hash_ids":[3020072,3020073,3020074],"delay":351.2} +{"session_id":"sess-8a89776de299","input_length":1279,"output_length":241,"hash_ids":[3020075,3020076,3020077],"delay":401.9} +{"session_id":"sess-8a89776de299","input_length":121,"output_length":149,"hash_ids":[3020078],"delay":920.4} +{"session_id":"sess-8a89776de299","input_length":682,"output_length":129,"hash_ids":[3020079,3020080],"delay":638.3} +{"session_id":"sess-8a89776de299","input_length":526,"output_length":69,"hash_ids":[3020081,3020082],"delay":2516.9} +{"session_id":"sess-8a89776de299","input_length":2069,"output_length":62,"hash_ids":[3020083,3020084,3020085,3020086,3020087],"delay":825.0} +{"session_id":"sess-8a89776de299","input_length":849,"output_length":161,"hash_ids":[3020088,3020089],"delay":562.4} +{"session_id":"sess-8a89776de299","input_length":2140,"output_length":201,"hash_ids":[3020090,3020091,3020092,3020093,3020094],"delay":16440.2} +{"session_id":"sess-8a89776de299","input_length":490,"output_length":310,"hash_ids":[3020095],"delay":502.9} +{"session_id":"sess-8a89776de299","input_length":406,"output_length":557,"hash_ids":[3020096],"delay":174.7} +{"session_id":"sess-8a89776de299","input_length":1253,"output_length":296,"hash_ids":[3020097,3020098,3020099],"delay":19579.5} +{"session_id":"sess-8a89776de299","input_length":408,"output_length":35,"hash_ids":[3020100],"delay":520.7} +{"session_id":"sess-8a89776de299","input_length":208,"output_length":266,"hash_ids":[3020101],"delay":543.2} +{"session_id":"sess-8a89776de299","input_length":518,"output_length":77,"hash_ids":[3020102,3020103],"delay":468.2} +{"session_id":"sess-8a89776de299","input_length":2397,"output_length":131,"hash_ids":[3020104,3020105,3020106,3020107,3020108],"delay":1530.0} +{"session_id":"sess-9b928cf766c5","input_length":28011,"output_length":1180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,3024032,3024033,3024034],"timestamp":0.0,"group_id":3} +{"session_id":"sess-9b928cf766c5","input_length":1052,"output_length":842,"hash_ids":[3024035,3024036,3024037],"delay":917.3} +{"session_id":"sess-9b928cf766c5","input_length":1493,"output_length":100,"hash_ids":[3024038,3024039,3024040],"delay":1707.2} +{"session_id":"sess-9b928cf766c5","input_length":599,"output_length":115,"hash_ids":[3024041,3024042],"delay":793.9} +{"session_id":"sess-9b928cf766c5","input_length":418,"output_length":377,"hash_ids":[3024043],"delay":925.2} +{"session_id":"sess-9b928cf766c5","input_length":809,"output_length":277,"hash_ids":[3024044,3024045],"delay":687.9} +{"session_id":"sess-9b928cf766c5","input_length":427,"output_length":229,"hash_ids":[3024046],"delay":676.2} +{"session_id":"sess-9b928cf766c5","input_length":1235,"output_length":607,"hash_ids":[3024047,3024048,3024049],"delay":792.7} +{"session_id":"sess-9b928cf766c5","input_length":1162,"output_length":39,"hash_ids":[3024050,3024051,3024052],"delay":130.9} +{"session_id":"sess-9b928cf766c5","input_length":1893,"output_length":81,"hash_ids":[3024053,3024054,3024055,3024056],"delay":239.1} +{"session_id":"sess-9b928cf766c5","input_length":198,"output_length":442,"hash_ids":[3024057],"delay":230.4} +{"session_id":"sess-9b928cf766c5","input_length":2192,"output_length":79,"hash_ids":[3024058,3024059,3024060,3024061,3024062],"delay":932.3} +{"session_id":"sess-9b928cf766c5","input_length":2059,"output_length":146,"hash_ids":[3024063,3024064,3024065,3024066,3024067],"delay":371.0} +{"session_id":"sess-9b928cf766c5","input_length":406,"output_length":395,"hash_ids":[3024068],"delay":733.8} +{"session_id":"sess-9b928cf766c5","input_length":215,"output_length":54,"hash_ids":[3024069],"delay":661.9} +{"session_id":"sess-9b928cf766c5","input_length":1821,"output_length":112,"hash_ids":[3024070,3024071,3024072,3024073],"delay":11253.0} +{"session_id":"sess-9b928cf766c5","input_length":179,"output_length":35,"hash_ids":[3024074],"delay":21865.9} +{"session_id":"sess-9b928cf766c5","input_length":2299,"output_length":38,"hash_ids":[3024075,3024076,3024077,3024078,3024079],"delay":186.2} +{"session_id":"sess-9b928cf766c5","input_length":363,"output_length":483,"hash_ids":[3024080],"delay":2822.2} +{"session_id":"sess-79833f8aa1de","input_length":30333,"output_length":1141,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3028032,3028033,3028034,3028035,3028036,3028037,3028038,3028039],"timestamp":0.0,"group_id":1} +{"session_id":"sess-79833f8aa1de","input_length":449,"output_length":106,"hash_ids":[3028040],"delay":1095.9} +{"session_id":"sess-79833f8aa1de","input_length":381,"output_length":129,"hash_ids":[3028041],"delay":11243.3} +{"session_id":"sess-79833f8aa1de","input_length":371,"output_length":611,"hash_ids":[3028042],"delay":358.7} +{"session_id":"sess-5c66511bfecc","input_length":26211,"output_length":1254,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651],"timestamp":0.0,"group_id":38} +{"session_id":"sess-5c66511bfecc","input_length":180,"output_length":594,"hash_ids":[3028043],"delay":175.8} +{"session_id":"sess-5c66511bfecc","input_length":888,"output_length":101,"hash_ids":[3028044,3028045],"delay":483.0} +{"session_id":"sess-5c66511bfecc","input_length":370,"output_length":160,"hash_ids":[3028046],"delay":1018.5} +{"session_id":"sess-5c66511bfecc","input_length":927,"output_length":198,"hash_ids":[3028047,3028048],"delay":20115.6} +{"session_id":"sess-5c66511bfecc","input_length":1194,"output_length":300,"hash_ids":[3028049,3028050,3028051],"delay":1460.5} +{"session_id":"sess-5c66511bfecc","input_length":360,"output_length":84,"hash_ids":[3028052],"delay":1796.8} +{"session_id":"sess-5c66511bfecc","input_length":1094,"output_length":345,"hash_ids":[3028053,3028054,3028055],"delay":5863.3} +{"session_id":"sess-5c66511bfecc","input_length":387,"output_length":202,"hash_ids":[3028056],"delay":54390.9} +{"session_id":"sess-5c66511bfecc","input_length":462,"output_length":89,"hash_ids":[3028057],"delay":772.0} +{"session_id":"sess-5c66511bfecc","input_length":260,"output_length":616,"hash_ids":[3028058],"delay":20693.9} +{"session_id":"sess-5c66511bfecc","input_length":549,"output_length":225,"hash_ids":[3028059,3028060],"delay":3554.7} +{"session_id":"sess-5c66511bfecc","input_length":2206,"output_length":35,"hash_ids":[3028061,3028062,3028063,3028064,3028065],"delay":3203.6} +{"session_id":"sess-5c66511bfecc","input_length":1516,"output_length":194,"hash_ids":[3028066,3028067,3028068],"delay":471.1} +{"session_id":"sess-5c66511bfecc","input_length":521,"output_length":272,"hash_ids":[3028069,3028070],"delay":408.6} +{"session_id":"sess-5c66511bfecc","input_length":1760,"output_length":196,"hash_ids":[3028071,3028072,3028073,3028074],"delay":209.4} +{"session_id":"sess-5c66511bfecc","input_length":572,"output_length":45,"hash_ids":[3028075,3028076],"delay":2054.5} +{"session_id":"sess-5c66511bfecc","input_length":108,"output_length":133,"hash_ids":[3028077],"delay":538.4} +{"session_id":"sess-5c66511bfecc","input_length":1255,"output_length":129,"hash_ids":[3028078,3028079,3028080],"delay":1478.3} +{"session_id":"sess-5c66511bfecc","input_length":1498,"output_length":126,"hash_ids":[3028081,3028082,3028083],"delay":671.6} +{"session_id":"sess-cc9e86fc1874","input_length":26795,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,3036032],"timestamp":0.0,"group_id":13} +{"session_id":"sess-cc9e86fc1874","input_length":532,"output_length":185,"hash_ids":[3036033,3036034],"delay":1101.9} +{"session_id":"sess-cc9e86fc1874","input_length":658,"output_length":387,"hash_ids":[3036035,3036036],"delay":1202.1} +{"session_id":"sess-cc9e86fc1874","input_length":1099,"output_length":155,"hash_ids":[3036037,3036038,3036039],"delay":7658.4} +{"session_id":"sess-cc9e86fc1874","input_length":2165,"output_length":206,"hash_ids":[3036040,3036041,3036042,3036043,3036044],"delay":20510.8} +{"session_id":"sess-cc9e86fc1874","input_length":961,"output_length":171,"hash_ids":[3036045,3036046],"delay":1176.3} +{"session_id":"sess-cc9e86fc1874","input_length":938,"output_length":462,"hash_ids":[3036047,3036048],"delay":637.2} +{"session_id":"sess-cc9e86fc1874","input_length":883,"output_length":202,"hash_ids":[3036049,3036050],"delay":3768.7} +{"session_id":"sess-cc9e86fc1874","input_length":695,"output_length":729,"hash_ids":[3036051,3036052],"delay":2800.6} +{"session_id":"sess-cc9e86fc1874","input_length":1432,"output_length":579,"hash_ids":[3036053,3036054,3036055],"delay":826.9} +{"session_id":"sess-cc9e86fc1874","input_length":191,"output_length":462,"hash_ids":[3036056],"delay":1593.5} +{"session_id":"sess-cc9e86fc1874","input_length":1370,"output_length":690,"hash_ids":[3036057,3036058,3036059],"delay":987.4} +{"session_id":"sess-cc9e86fc1874","input_length":926,"output_length":390,"hash_ids":[3036060,3036061],"delay":7430.4} +{"session_id":"sess-cc9e86fc1874","input_length":966,"output_length":81,"hash_ids":[3036062,3036063],"delay":4136.5} +{"session_id":"sess-cc9e86fc1874","input_length":707,"output_length":588,"hash_ids":[3036064,3036065],"delay":13036.6} +{"session_id":"sess-cc9e86fc1874","input_length":340,"output_length":1087,"hash_ids":[3036066],"delay":1209.0} +{"session_id":"sess-cc9e86fc1874","input_length":210,"output_length":30,"hash_ids":[3036067],"delay":2372.1} +{"session_id":"sess-cc9e86fc1874","input_length":742,"output_length":323,"hash_ids":[3036068,3036069],"delay":1239.9} +{"session_id":"sess-cc9e86fc1874","input_length":1455,"output_length":482,"hash_ids":[3036070,3036071,3036072],"delay":471.0} +{"session_id":"sess-cc9e86fc1874","input_length":2782,"output_length":340,"hash_ids":[3036073,3036074,3036075,3036076,3036077,3036078],"delay":750.8} +{"session_id":"sess-cc9e86fc1874","input_length":207,"output_length":77,"hash_ids":[3036079],"delay":1418.4} +{"session_id":"sess-cc9e86fc1874","input_length":361,"output_length":641,"hash_ids":[3036080],"delay":2525.1} +{"session_id":"sess-cc9e86fc1874","input_length":805,"output_length":140,"hash_ids":[3036081,3036082],"delay":1144.2} +{"session_id":"sess-cc9e86fc1874","input_length":669,"output_length":110,"hash_ids":[3036083,3036084],"delay":1614.1} +{"session_id":"sess-cc9e86fc1874","input_length":591,"output_length":63,"hash_ids":[3036085,3036086],"delay":796.5} +{"session_id":"sess-cc9e86fc1874","input_length":200,"output_length":145,"hash_ids":[3036087],"delay":607.4} +{"session_id":"sess-cc9e86fc1874","input_length":378,"output_length":190,"hash_ids":[3036088],"delay":1018.9} +{"session_id":"sess-cc9e86fc1874","input_length":458,"output_length":307,"hash_ids":[3036089],"delay":676.6} +{"session_id":"sess-cc9e86fc1874","input_length":185,"output_length":90,"hash_ids":[3036090],"delay":695.3} +{"session_id":"sess-cc9e86fc1874","input_length":1881,"output_length":112,"hash_ids":[3036091,3036092,3036093,3036094],"delay":6231.9} +{"session_id":"sess-cc9e86fc1874","input_length":913,"output_length":96,"hash_ids":[3036095,3036096],"delay":983.2} +{"session_id":"sess-cc9e86fc1874","input_length":1048,"output_length":234,"hash_ids":[3036097,3036098,3036099],"delay":183.0} +{"session_id":"sess-cc9e86fc1874","input_length":260,"output_length":760,"hash_ids":[3036100],"delay":239.4} +{"session_id":"sess-cc9e86fc1874","input_length":130,"output_length":384,"hash_ids":[3036101],"delay":733.6} +{"session_id":"sess-cc9e86fc1874","input_length":353,"output_length":147,"hash_ids":[3036102],"delay":429.8} +{"session_id":"sess-bf4664848b19","input_length":26209,"output_length":1094,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bf4664848b19","input_length":988,"output_length":84,"hash_ids":[3036103,3036104],"delay":4243.4} +{"session_id":"sess-bf4664848b19","input_length":1320,"output_length":348,"hash_ids":[3036105,3036106,3036107],"delay":2075.2} +{"session_id":"sess-bf4664848b19","input_length":678,"output_length":949,"hash_ids":[3036108,3036109],"delay":2139.1} +{"session_id":"sess-bf4664848b19","input_length":1896,"output_length":182,"hash_ids":[3036110,3036111,3036112,3036113],"delay":401.2} +{"session_id":"sess-bf4664848b19","input_length":972,"output_length":162,"hash_ids":[3036114,3036115],"delay":948.4} +{"session_id":"sess-bf4664848b19","input_length":745,"output_length":74,"hash_ids":[3036116,3036117],"delay":984.4} +{"session_id":"sess-bf4664848b19","input_length":343,"output_length":235,"hash_ids":[3036118],"delay":1123.5} +{"session_id":"sess-bf4664848b19","input_length":1417,"output_length":450,"hash_ids":[3036119,3036120,3036121],"delay":2215.8} +{"session_id":"sess-00d9ede8d45a","input_length":26725,"output_length":667,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3044032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-00d9ede8d45a","input_length":1805,"output_length":219,"hash_ids":[3044033,3044034,3044035,3044036],"delay":11779.8} +{"session_id":"sess-00d9ede8d45a","input_length":293,"output_length":867,"hash_ids":[3044037],"delay":1602.8} +{"session_id":"sess-00d9ede8d45a","input_length":522,"output_length":95,"hash_ids":[3044038,3044039],"delay":2290.6} +{"session_id":"sess-00d9ede8d45a","input_length":1148,"output_length":253,"hash_ids":[3044040,3044041,3044042],"delay":654.5} +{"session_id":"sess-00d9ede8d45a","input_length":237,"output_length":199,"hash_ids":[3044043],"delay":12460.8} +{"session_id":"sess-00d9ede8d45a","input_length":1755,"output_length":478,"hash_ids":[3044044,3044045,3044046,3044047],"delay":1051.9} +{"session_id":"sess-00d9ede8d45a","input_length":995,"output_length":296,"hash_ids":[3044048,3044049],"delay":459.5} +{"session_id":"sess-00d9ede8d45a","input_length":189,"output_length":191,"hash_ids":[3044050],"delay":543.2} +{"session_id":"sess-00d9ede8d45a","input_length":2507,"output_length":88,"hash_ids":[3044051,3044052,3044053,3044054,3044055],"delay":13118.4} +{"session_id":"sess-00d9ede8d45a","input_length":2035,"output_length":503,"hash_ids":[3044056,3044057,3044058,3044059],"delay":1637.2} +{"session_id":"sess-00d9ede8d45a","input_length":407,"output_length":30,"hash_ids":[3044060],"delay":206.8} +{"session_id":"sess-00d9ede8d45a","input_length":86,"output_length":327,"hash_ids":[3044061],"delay":166.4} +{"session_id":"sess-00d9ede8d45a","input_length":156,"output_length":577,"hash_ids":[3044062],"delay":453.6} +{"session_id":"sess-00d9ede8d45a","input_length":930,"output_length":277,"hash_ids":[3044063,3044064],"delay":1216.9} +{"session_id":"sess-00d9ede8d45a","input_length":413,"output_length":343,"hash_ids":[3044065],"delay":256.8} +{"session_id":"sess-00d9ede8d45a","input_length":433,"output_length":89,"hash_ids":[3044066],"delay":4454.6} +{"session_id":"sess-00d9ede8d45a","input_length":1185,"output_length":227,"hash_ids":[3044067,3044068,3044069],"delay":10963.0} +{"session_id":"sess-00d9ede8d45a","input_length":1587,"output_length":638,"hash_ids":[3044070,3044071,3044072,3044073],"delay":593.8} +{"session_id":"sess-00d9ede8d45a","input_length":577,"output_length":118,"hash_ids":[3044074,3044075],"delay":1966.0} +{"session_id":"sess-00d9ede8d45a","input_length":596,"output_length":456,"hash_ids":[3044076,3044077],"delay":370.6} +{"session_id":"sess-00d9ede8d45a","input_length":583,"output_length":52,"hash_ids":[3044078,3044079],"delay":10279.6} +{"session_id":"sess-00d9ede8d45a","input_length":1449,"output_length":141,"hash_ids":[3044080,3044081,3044082],"delay":29875.5} +{"session_id":"sess-00d9ede8d45a","input_length":150,"output_length":377,"hash_ids":[3044083],"delay":26439.1} +{"session_id":"sess-00d9ede8d45a","input_length":1203,"output_length":382,"hash_ids":[3044084,3044085,3044086],"delay":217.3} +{"session_id":"sess-00d9ede8d45a","input_length":862,"output_length":135,"hash_ids":[3044087,3044088],"delay":670.4} +{"session_id":"sess-00d9ede8d45a","input_length":2298,"output_length":66,"hash_ids":[3044089,3044090,3044091,3044092,3044093],"delay":835.6} +{"session_id":"sess-00d9ede8d45a","input_length":139,"output_length":30,"hash_ids":[3044094],"delay":16448.7} +{"session_id":"sess-00d9ede8d45a","input_length":138,"output_length":106,"hash_ids":[3044095],"delay":119.4} +{"session_id":"sess-00d9ede8d45a","input_length":945,"output_length":151,"hash_ids":[3044096,3044097],"delay":382.5} +{"session_id":"sess-00d9ede8d45a","input_length":250,"output_length":129,"hash_ids":[3044098],"delay":1585.8} +{"session_id":"sess-00d9ede8d45a","input_length":271,"output_length":253,"hash_ids":[3044099],"delay":456.2} +{"session_id":"sess-00d9ede8d45a","input_length":850,"output_length":125,"hash_ids":[3044100,3044101],"delay":279.0} +{"session_id":"sess-00d9ede8d45a","input_length":634,"output_length":40,"hash_ids":[3044102,3044103],"delay":601.2} +{"session_id":"sess-37b1d90e86fe","input_length":26798,"output_length":386,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3048032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-37b1d90e86fe","input_length":385,"output_length":60,"hash_ids":[3048033],"delay":335.1} +{"session_id":"sess-37b1d90e86fe","input_length":381,"output_length":98,"hash_ids":[3048034],"delay":2840.9} +{"session_id":"sess-37b1d90e86fe","input_length":413,"output_length":374,"hash_ids":[3048035],"delay":2988.2} +{"session_id":"sess-37b1d90e86fe","input_length":645,"output_length":275,"hash_ids":[3048036,3048037],"delay":1922.2} +{"session_id":"sess-37b1d90e86fe","input_length":716,"output_length":489,"hash_ids":[3048038,3048039],"delay":3081.0} +{"session_id":"sess-fe4e98bfdb18","input_length":31959,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3052032,3052033,3052034,3052035,3052036,3052037,3052038,3052039,3052040,3052041,3052042],"timestamp":0.0,"group_id":2} +{"session_id":"sess-fe4e98bfdb18","input_length":434,"output_length":243,"hash_ids":[3052043],"delay":1890.3} +{"session_id":"sess-fe4e98bfdb18","input_length":1170,"output_length":184,"hash_ids":[3052044,3052045,3052046],"delay":1220.1} +{"session_id":"sess-fe4e98bfdb18","input_length":146,"output_length":573,"hash_ids":[3052047],"delay":10623.5} +{"session_id":"sess-72ccfd955e66","input_length":26882,"output_length":191,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3056032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-72ccfd955e66","input_length":584,"output_length":242,"hash_ids":[3056033,3056034],"delay":5071.6} +{"session_id":"sess-72ccfd955e66","input_length":1634,"output_length":198,"hash_ids":[3056035,3056036,3056037,3056038],"delay":985.6} +{"session_id":"sess-72ccfd955e66","input_length":1208,"output_length":87,"hash_ids":[3056039,3056040,3056041],"delay":914.9} +{"session_id":"sess-72ccfd955e66","input_length":1013,"output_length":746,"hash_ids":[3056042,3056043],"delay":1931.9} +{"session_id":"sess-72ccfd955e66","input_length":398,"output_length":323,"hash_ids":[3056044],"delay":1833.5} +{"session_id":"sess-72ccfd955e66","input_length":2622,"output_length":307,"hash_ids":[3056045,3056046,3056047,3056048,3056049,3056050],"delay":17001.9} +{"session_id":"sess-72ccfd955e66","input_length":506,"output_length":459,"hash_ids":[3056051],"delay":341.4} +{"session_id":"sess-72ccfd955e66","input_length":1243,"output_length":62,"hash_ids":[3056052,3056053,3056054],"delay":5590.6} +{"session_id":"sess-72ccfd955e66","input_length":2581,"output_length":138,"hash_ids":[3056055,3056056,3056057,3056058,3056059,3056060],"delay":816.2} +{"session_id":"sess-72ccfd955e66","input_length":882,"output_length":444,"hash_ids":[3056061,3056062],"delay":1683.5} +{"session_id":"sess-72ccfd955e66","input_length":1035,"output_length":127,"hash_ids":[3056063,3056064,3056065],"delay":1212.9} +{"session_id":"sess-72ccfd955e66","input_length":774,"output_length":91,"hash_ids":[3056066,3056067],"delay":1685.0} +{"session_id":"sess-72ccfd955e66","input_length":1097,"output_length":440,"hash_ids":[3056068,3056069,3056070],"delay":633.0} +{"session_id":"sess-72ccfd955e66","input_length":397,"output_length":630,"hash_ids":[3056071],"delay":36872.8} +{"session_id":"sess-72ccfd955e66","input_length":1512,"output_length":320,"hash_ids":[3056072,3056073,3056074],"delay":31179.2} +{"session_id":"sess-72ccfd955e66","input_length":1604,"output_length":128,"hash_ids":[3056075,3056076,3056077,3056078],"delay":13334.6} +{"session_id":"sess-72ccfd955e66","input_length":800,"output_length":157,"hash_ids":[3056079,3056080],"delay":699.5} +{"session_id":"sess-72ccfd955e66","input_length":1356,"output_length":478,"hash_ids":[3056081,3056082,3056083],"delay":353.5} +{"session_id":"sess-72ccfd955e66","input_length":1339,"output_length":30,"hash_ids":[3056084,3056085,3056086],"delay":305.6} +{"session_id":"sess-72ccfd955e66","input_length":404,"output_length":107,"hash_ids":[3056087],"delay":461.9} +{"session_id":"sess-72ccfd955e66","input_length":787,"output_length":423,"hash_ids":[3056088,3056089],"delay":12620.8} +{"session_id":"sess-72ccfd955e66","input_length":2292,"output_length":231,"hash_ids":[3056090,3056091,3056092,3056093,3056094],"delay":794.7} +{"session_id":"sess-72ccfd955e66","input_length":2750,"output_length":312,"hash_ids":[3056095,3056096,3056097,3056098,3056099,3056100],"delay":780.2} +{"session_id":"sess-72ccfd955e66","input_length":466,"output_length":238,"hash_ids":[3056101],"delay":9787.1} +{"session_id":"sess-72ccfd955e66","input_length":2265,"output_length":114,"hash_ids":[3056102,3056103,3056104,3056105,3056106],"delay":246.6} +{"session_id":"sess-c69c8eb9455a","input_length":35477,"output_length":1011,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3060032,3060033,3060034,3060035,3060036,3060037,3060038,3060039,3060040,3060041,3060042,3060043,3060044,3060045,3060046,3060047,3060048,3060049],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c69c8eb9455a","input_length":690,"output_length":296,"hash_ids":[3060050,3060051],"delay":1412.5} +{"session_id":"sess-c69c8eb9455a","input_length":1257,"output_length":95,"hash_ids":[3060052,3060053,3060054],"delay":695.3} +{"session_id":"sess-c69c8eb9455a","input_length":740,"output_length":166,"hash_ids":[3060055,3060056],"delay":5615.6} +{"session_id":"sess-ea44d1def629","input_length":27506,"output_length":203,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3064032,3064033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ea44d1def629","input_length":892,"output_length":187,"hash_ids":[3064034,3064035],"delay":5826.6} +{"session_id":"sess-ea44d1def629","input_length":1368,"output_length":30,"hash_ids":[3064036,3064037,3064038],"delay":3451.6} +{"session_id":"sess-ea44d1def629","input_length":1183,"output_length":73,"hash_ids":[3064039,3064040,3064041],"delay":51647.7} +{"session_id":"sess-ea44d1def629","input_length":1033,"output_length":196,"hash_ids":[3064042,3064043,3064044],"delay":428.0} +{"session_id":"sess-ea44d1def629","input_length":2591,"output_length":616,"hash_ids":[3064045,3064046,3064047,3064048,3064049,3064050],"delay":1417.1} +{"session_id":"sess-ea44d1def629","input_length":446,"output_length":1375,"hash_ids":[3064051],"delay":3219.6} +{"session_id":"sess-ea44d1def629","input_length":2591,"output_length":535,"hash_ids":[3064052,3064053,3064054,3064055,3064056,3064057],"delay":321.1} +{"session_id":"sess-ea44d1def629","input_length":1409,"output_length":318,"hash_ids":[3064058,3064059,3064060],"delay":492.4} +{"session_id":"sess-ea44d1def629","input_length":949,"output_length":196,"hash_ids":[3064061,3064062],"delay":4645.6} +{"session_id":"sess-ea44d1def629","input_length":2927,"output_length":182,"hash_ids":[3064063,3064064,3064065,3064066,3064067,3064068],"delay":535.3} +{"session_id":"sess-ea44d1def629","input_length":520,"output_length":99,"hash_ids":[3064069,3064070],"delay":4974.8} +{"session_id":"sess-ea44d1def629","input_length":2529,"output_length":386,"hash_ids":[3064071,3064072,3064073,3064074,3064075],"delay":355.7} +{"session_id":"sess-ea44d1def629","input_length":831,"output_length":380,"hash_ids":[3064076,3064077],"delay":33778.6} +{"session_id":"sess-ea44d1def629","input_length":269,"output_length":243,"hash_ids":[3064078],"delay":68.3} +{"session_id":"sess-ea44d1def629","input_length":762,"output_length":151,"hash_ids":[3064079,3064080],"delay":15950.0} +{"session_id":"sess-ea44d1def629","input_length":1619,"output_length":507,"hash_ids":[3064081,3064082,3064083,3064084],"delay":1908.2} +{"session_id":"sess-ea44d1def629","input_length":568,"output_length":279,"hash_ids":[3064085,3064086],"delay":486.1} +{"session_id":"sess-ea44d1def629","input_length":151,"output_length":159,"hash_ids":[3064087],"delay":124.0} +{"session_id":"sess-ea44d1def629","input_length":746,"output_length":1467,"hash_ids":[3064088,3064089],"delay":287.0} +{"session_id":"sess-ea44d1def629","input_length":518,"output_length":108,"hash_ids":[3064090,3064091],"delay":334.6} +{"session_id":"sess-ea44d1def629","input_length":226,"output_length":192,"hash_ids":[3064092],"delay":1024.2} +{"session_id":"sess-ea44d1def629","input_length":1964,"output_length":381,"hash_ids":[3064093,3064094,3064095,3064096],"delay":42.8} +{"session_id":"sess-ea44d1def629","input_length":153,"output_length":273,"hash_ids":[3064097],"delay":375.0} +{"session_id":"sess-ea44d1def629","input_length":1938,"output_length":193,"hash_ids":[3064098,3064099,3064100,3064101],"delay":3260.3} +{"session_id":"sess-b61a510fb72c","input_length":28306,"output_length":171,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3068032,3068033,3068034,3068035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b61a510fb72c","input_length":2960,"output_length":253,"hash_ids":[3068036,3068037,3068038,3068039,3068040,3068041],"delay":797.7} +{"session_id":"sess-b61a510fb72c","input_length":2602,"output_length":47,"hash_ids":[3068042,3068043,3068044,3068045,3068046,3068047],"delay":17325.1} +{"session_id":"sess-b61a510fb72c","input_length":539,"output_length":551,"hash_ids":[3068048,3068049],"delay":4274.2} +{"session_id":"sess-b61a510fb72c","input_length":579,"output_length":404,"hash_ids":[3068050,3068051],"delay":3530.1} +{"session_id":"sess-b61a510fb72c","input_length":2263,"output_length":30,"hash_ids":[3068052,3068053,3068054,3068055,3068056],"delay":2338.0} +{"session_id":"sess-b61a510fb72c","input_length":198,"output_length":342,"hash_ids":[3068057],"delay":697.4} +{"session_id":"sess-b61a510fb72c","input_length":838,"output_length":207,"hash_ids":[3068058,3068059],"delay":168.5} +{"session_id":"sess-b61a510fb72c","input_length":1727,"output_length":963,"hash_ids":[3068060,3068061,3068062,3068063],"delay":26577.5} +{"session_id":"sess-b61a510fb72c","input_length":1188,"output_length":113,"hash_ids":[3068064,3068065,3068066],"delay":1555.1} +{"session_id":"sess-b61a510fb72c","input_length":672,"output_length":216,"hash_ids":[3068067,3068068],"delay":826.9} +{"session_id":"sess-b61a510fb72c","input_length":2694,"output_length":301,"hash_ids":[3068069,3068070,3068071,3068072,3068073,3068074],"delay":809.2} +{"session_id":"sess-b61a510fb72c","input_length":2773,"output_length":141,"hash_ids":[3068075,3068076,3068077,3068078,3068079,3068080],"delay":579.0} +{"session_id":"sess-b61a510fb72c","input_length":612,"output_length":144,"hash_ids":[3068081,3068082],"delay":3332.1} +{"session_id":"sess-b61a510fb72c","input_length":1017,"output_length":154,"hash_ids":[3068083,3068084],"delay":294.6} +{"session_id":"sess-b61a510fb72c","input_length":366,"output_length":39,"hash_ids":[3068085],"delay":374.3} +{"session_id":"sess-b61a510fb72c","input_length":476,"output_length":145,"hash_ids":[3068086],"delay":1283.8} +{"session_id":"sess-b61a510fb72c","input_length":234,"output_length":471,"hash_ids":[3068087],"delay":602.8} +{"session_id":"sess-b61a510fb72c","input_length":1757,"output_length":308,"hash_ids":[3068088,3068089,3068090,3068091],"delay":28901.7} +{"session_id":"sess-b61a510fb72c","input_length":103,"output_length":455,"hash_ids":[3068092],"delay":16714.5} +{"session_id":"sess-b61a510fb72c","input_length":937,"output_length":380,"hash_ids":[3068093,3068094],"delay":770.6} +{"session_id":"sess-b61a510fb72c","input_length":1236,"output_length":123,"hash_ids":[3068095,3068096,3068097],"delay":977.7} +{"session_id":"sess-b61a510fb72c","input_length":112,"output_length":379,"hash_ids":[3068098],"delay":511.9} +{"session_id":"sess-b61a510fb72c","input_length":367,"output_length":86,"hash_ids":[3068099],"delay":262.5} +{"session_id":"sess-b61a510fb72c","input_length":1246,"output_length":78,"hash_ids":[3068100,3068101,3068102],"delay":14327.3} +{"session_id":"sess-b61a510fb72c","input_length":456,"output_length":467,"hash_ids":[3068103],"delay":229.6} +{"session_id":"sess-b61a510fb72c","input_length":1007,"output_length":251,"hash_ids":[3068104,3068105],"delay":205.6} +{"session_id":"sess-b61a510fb72c","input_length":227,"output_length":99,"hash_ids":[3068106],"delay":579.1} +{"session_id":"sess-63d43757ea58","input_length":27116,"output_length":744,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,3072032],"timestamp":0.0,"group_id":41} +{"session_id":"sess-63d43757ea58","input_length":2526,"output_length":174,"hash_ids":[3072033,3072034,3072035,3072036,3072037],"delay":288.0} +{"session_id":"sess-3dc11075e958","input_length":27583,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3076032,3076033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3dc11075e958","input_length":522,"output_length":92,"hash_ids":[3076034,3076035],"delay":3680.7} +{"session_id":"sess-3dc11075e958","input_length":62,"output_length":578,"hash_ids":[3076036],"delay":5861.7} +{"session_id":"sess-3dc11075e958","input_length":724,"output_length":75,"hash_ids":[3076037,3076038],"delay":36229.0} +{"session_id":"sess-3dc11075e958","input_length":1508,"output_length":454,"hash_ids":[3076039,3076040,3076041],"delay":197.4} +{"session_id":"sess-3dc11075e958","input_length":555,"output_length":30,"hash_ids":[3076042,3076043],"delay":585.1} +{"session_id":"sess-3dc11075e958","input_length":522,"output_length":186,"hash_ids":[3076044,3076045],"delay":3243.3} +{"session_id":"sess-3dc11075e958","input_length":1473,"output_length":191,"hash_ids":[3076046,3076047,3076048],"delay":473.5} +{"session_id":"sess-3dc11075e958","input_length":648,"output_length":693,"hash_ids":[3076049,3076050],"delay":831.9} +{"session_id":"sess-3dc11075e958","input_length":158,"output_length":131,"hash_ids":[3076051],"delay":1057.8} +{"session_id":"sess-3dc11075e958","input_length":291,"output_length":1052,"hash_ids":[3076052],"delay":7619.7} +{"session_id":"sess-3dc11075e958","input_length":172,"output_length":121,"hash_ids":[3076053],"delay":206.2} +{"session_id":"sess-3dc11075e958","input_length":182,"output_length":194,"hash_ids":[3076054],"delay":3078.7} +{"session_id":"sess-3dc11075e958","input_length":1971,"output_length":179,"hash_ids":[3076055,3076056,3076057,3076058],"delay":12533.7} +{"session_id":"sess-f70a621d3fec","input_length":30854,"output_length":210,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3080032,3080033,3080034,3080035,3080036,3080037,3080038,3080039,3080040],"timestamp":0.0,"group_id":19} +{"session_id":"sess-f70a621d3fec","input_length":1342,"output_length":194,"hash_ids":[3080041,3080042,3080043],"delay":4181.1} +{"session_id":"sess-f70a621d3fec","input_length":2505,"output_length":36,"hash_ids":[3080044,3080045,3080046,3080047,3080048],"delay":2357.7} +{"session_id":"sess-1674ffb6c848","input_length":33923,"output_length":305,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3084032,3084033,3084034,3084035,3084036,3084037,3084038,3084039,3084040,3084041,3084042,3084043,3084044,3084045,3084046],"timestamp":0.0,"group_id":19} +{"session_id":"sess-1674ffb6c848","input_length":993,"output_length":89,"hash_ids":[3084047,3084048],"delay":18414.0} +{"session_id":"sess-1674ffb6c848","input_length":561,"output_length":207,"hash_ids":[3084049,3084050],"delay":2520.2} +{"session_id":"sess-1674ffb6c848","input_length":85,"output_length":88,"hash_ids":[3084051],"delay":17364.9} +{"session_id":"sess-1674ffb6c848","input_length":353,"output_length":142,"hash_ids":[3084052],"delay":9849.1} +{"session_id":"sess-1674ffb6c848","input_length":538,"output_length":85,"hash_ids":[3084053,3084054],"delay":241.6} +{"session_id":"sess-1674ffb6c848","input_length":393,"output_length":109,"hash_ids":[3084055],"delay":11495.2} +{"session_id":"sess-1674ffb6c848","input_length":608,"output_length":88,"hash_ids":[3084056,3084057],"delay":882.0} +{"session_id":"sess-1674ffb6c848","input_length":832,"output_length":397,"hash_ids":[3084058,3084059],"delay":2170.1} +{"session_id":"sess-1674ffb6c848","input_length":84,"output_length":110,"hash_ids":[3084060],"delay":931.2} +{"session_id":"sess-1674ffb6c848","input_length":124,"output_length":551,"hash_ids":[3084061],"delay":290.8} +{"session_id":"sess-1674ffb6c848","input_length":764,"output_length":407,"hash_ids":[3084062,3084063],"delay":3437.6} +{"session_id":"sess-1674ffb6c848","input_length":1063,"output_length":38,"hash_ids":[3084064,3084065,3084066],"delay":51168.9} +{"session_id":"sess-1674ffb6c848","input_length":1724,"output_length":95,"hash_ids":[3084067,3084068,3084069,3084070],"delay":601.4} +{"session_id":"sess-1674ffb6c848","input_length":886,"output_length":740,"hash_ids":[3084071,3084072],"delay":3011.4} +{"session_id":"sess-1674ffb6c848","input_length":330,"output_length":125,"hash_ids":[3084073],"delay":489.8} +{"session_id":"sess-1674ffb6c848","input_length":1539,"output_length":496,"hash_ids":[3084074,3084075,3084076,3084077],"delay":1378.7} +{"session_id":"sess-1674ffb6c848","input_length":779,"output_length":641,"hash_ids":[3084078,3084079],"delay":1880.7} +{"session_id":"sess-1674ffb6c848","input_length":2158,"output_length":136,"hash_ids":[3084080,3084081,3084082,3084083,3084084],"delay":199.6} +{"session_id":"sess-1674ffb6c848","input_length":1611,"output_length":98,"hash_ids":[3084085,3084086,3084087,3084088],"delay":280.2} +{"session_id":"sess-1674ffb6c848","input_length":1527,"output_length":1067,"hash_ids":[3084089,3084090,3084091],"delay":989.1} +{"session_id":"sess-1674ffb6c848","input_length":1955,"output_length":83,"hash_ids":[3084092,3084093,3084094,3084095],"delay":337.8} +{"session_id":"sess-1674ffb6c848","input_length":1932,"output_length":30,"hash_ids":[3084096,3084097,3084098,3084099],"delay":22507.7} +{"session_id":"sess-1674ffb6c848","input_length":1643,"output_length":104,"hash_ids":[3084100,3084101,3084102,3084103],"delay":608.0} +{"session_id":"sess-1674ffb6c848","input_length":1257,"output_length":66,"hash_ids":[3084104,3084105,3084106],"delay":497.4} +{"session_id":"sess-1674ffb6c848","input_length":1108,"output_length":1419,"hash_ids":[3084107,3084108,3084109],"delay":9382.4} +{"session_id":"sess-2233be02755e","input_length":27387,"output_length":109,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3088032,3088033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2233be02755e","input_length":1513,"output_length":81,"hash_ids":[3088034,3088035,3088036],"delay":3636.7} +{"session_id":"sess-2233be02755e","input_length":2790,"output_length":78,"hash_ids":[3088037,3088038,3088039,3088040,3088041,3088042],"delay":525.8} +{"session_id":"sess-2233be02755e","input_length":2976,"output_length":192,"hash_ids":[3088043,3088044,3088045,3088046,3088047,3088048],"delay":648.7} +{"session_id":"sess-2233be02755e","input_length":336,"output_length":85,"hash_ids":[3088049],"delay":1133.6} +{"session_id":"sess-fd50557b467f","input_length":26950,"output_length":639,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3092032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-fd50557b467f","input_length":764,"output_length":352,"hash_ids":[3092033,3092034],"delay":1589.5} +{"session_id":"sess-fd50557b467f","input_length":1393,"output_length":101,"hash_ids":[3092035,3092036,3092037],"delay":48029.2} +{"session_id":"sess-fd50557b467f","input_length":1692,"output_length":148,"hash_ids":[3092038,3092039,3092040,3092041],"delay":9323.7} +{"session_id":"sess-fd50557b467f","input_length":295,"output_length":272,"hash_ids":[3092042],"delay":286.9} +{"session_id":"sess-fd50557b467f","input_length":216,"output_length":61,"hash_ids":[3092043],"delay":21952.0} +{"session_id":"sess-fd50557b467f","input_length":2387,"output_length":1032,"hash_ids":[3092044,3092045,3092046,3092047,3092048],"delay":656.9} +{"session_id":"sess-fd50557b467f","input_length":43,"output_length":96,"hash_ids":[3092049],"delay":1495.5} +{"session_id":"sess-fd50557b467f","input_length":168,"output_length":56,"hash_ids":[3092050],"delay":12816.0} +{"session_id":"sess-fd50557b467f","input_length":1323,"output_length":683,"hash_ids":[3092051,3092052,3092053],"delay":9564.8} +{"session_id":"sess-fd50557b467f","input_length":451,"output_length":608,"hash_ids":[3092054],"delay":1994.7} +{"session_id":"sess-fd50557b467f","input_length":751,"output_length":198,"hash_ids":[3092055,3092056],"delay":1984.2} +{"session_id":"sess-fd50557b467f","input_length":966,"output_length":286,"hash_ids":[3092057,3092058],"delay":1083.3} +{"session_id":"sess-fd50557b467f","input_length":562,"output_length":59,"hash_ids":[3092059,3092060],"delay":227.6} +{"session_id":"sess-fd50557b467f","input_length":1408,"output_length":264,"hash_ids":[3092061,3092062,3092063],"delay":490.4} +{"session_id":"sess-fd50557b467f","input_length":163,"output_length":170,"hash_ids":[3092064],"delay":2660.2} +{"session_id":"sess-fd50557b467f","input_length":116,"output_length":292,"hash_ids":[3092065],"delay":823.2} +{"session_id":"sess-fd50557b467f","input_length":2861,"output_length":60,"hash_ids":[3092066,3092067,3092068,3092069,3092070,3092071],"delay":459.0} +{"session_id":"sess-fd50557b467f","input_length":1855,"output_length":1001,"hash_ids":[3092072,3092073,3092074,3092075],"delay":9012.2} +{"session_id":"sess-fd50557b467f","input_length":431,"output_length":306,"hash_ids":[3092076],"delay":890.4} +{"session_id":"sess-fd50557b467f","input_length":574,"output_length":35,"hash_ids":[3092077,3092078],"delay":996.7} +{"session_id":"sess-fd50557b467f","input_length":1179,"output_length":178,"hash_ids":[3092079,3092080,3092081],"delay":1461.0} +{"session_id":"sess-fd50557b467f","input_length":242,"output_length":374,"hash_ids":[3092082],"delay":2721.7} +{"session_id":"sess-fd50557b467f","input_length":793,"output_length":106,"hash_ids":[3092083,3092084],"delay":4240.1} +{"session_id":"sess-fd50557b467f","input_length":784,"output_length":176,"hash_ids":[3092085,3092086],"delay":402.2} +{"session_id":"sess-fd50557b467f","input_length":1221,"output_length":390,"hash_ids":[3092087,3092088,3092089],"delay":23438.6} +{"session_id":"sess-fd50557b467f","input_length":350,"output_length":53,"hash_ids":[3092090],"delay":709.4} +{"session_id":"sess-fd50557b467f","input_length":601,"output_length":57,"hash_ids":[3092091,3092092],"delay":1457.8} +{"session_id":"sess-fd50557b467f","input_length":2466,"output_length":291,"hash_ids":[3092093,3092094,3092095,3092096,3092097],"delay":310.5} +{"session_id":"sess-fd50557b467f","input_length":947,"output_length":88,"hash_ids":[3092098,3092099],"delay":446.2} +{"session_id":"sess-fd50557b467f","input_length":222,"output_length":250,"hash_ids":[3092100],"delay":1931.4} +{"session_id":"sess-fd50557b467f","input_length":1372,"output_length":132,"hash_ids":[3092101,3092102,3092103],"delay":453.1} +{"session_id":"sess-fd50557b467f","input_length":1122,"output_length":222,"hash_ids":[3092104,3092105,3092106],"delay":896.3} +{"session_id":"sess-28e784b91357","input_length":28523,"output_length":200,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3096032,3096033,3096034,3096035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-28e784b91357","input_length":1400,"output_length":91,"hash_ids":[3096036,3096037,3096038],"delay":616.2} +{"session_id":"sess-28e784b91357","input_length":774,"output_length":324,"hash_ids":[3096039,3096040],"delay":2540.6} +{"session_id":"sess-28e784b91357","input_length":1600,"output_length":178,"hash_ids":[3096041,3096042,3096043,3096044],"delay":3308.7} +{"session_id":"sess-28e784b91357","input_length":144,"output_length":556,"hash_ids":[3096045],"delay":1279.4} +{"session_id":"sess-28e784b91357","input_length":342,"output_length":113,"hash_ids":[3096046],"delay":2213.3} +{"session_id":"sess-28e784b91357","input_length":261,"output_length":426,"hash_ids":[3096047],"delay":3982.1} +{"session_id":"sess-28e784b91357","input_length":1388,"output_length":118,"hash_ids":[3096048,3096049,3096050],"delay":2395.4} +{"session_id":"sess-28e784b91357","input_length":567,"output_length":68,"hash_ids":[3096051,3096052],"delay":39816.7} +{"session_id":"sess-28e784b91357","input_length":646,"output_length":215,"hash_ids":[3096053,3096054],"delay":10506.8} +{"session_id":"sess-28e784b91357","input_length":1116,"output_length":474,"hash_ids":[3096055,3096056,3096057],"delay":515.0} +{"session_id":"sess-28e784b91357","input_length":1443,"output_length":205,"hash_ids":[3096058,3096059,3096060],"delay":620.0} +{"session_id":"sess-28e784b91357","input_length":1953,"output_length":60,"hash_ids":[3096061,3096062,3096063,3096064],"delay":21293.4} +{"session_id":"sess-28e784b91357","input_length":1000,"output_length":384,"hash_ids":[3096065,3096066],"delay":1744.3} +{"session_id":"sess-28e784b91357","input_length":1745,"output_length":109,"hash_ids":[3096067,3096068,3096069,3096070],"delay":133.6} +{"session_id":"sess-28e784b91357","input_length":1702,"output_length":463,"hash_ids":[3096071,3096072,3096073,3096074],"delay":17012.6} +{"session_id":"sess-28e784b91357","input_length":2055,"output_length":463,"hash_ids":[3096075,3096076,3096077,3096078,3096079],"delay":299.2} +{"session_id":"sess-28e784b91357","input_length":1412,"output_length":320,"hash_ids":[3096080,3096081,3096082],"delay":3870.8} +{"session_id":"sess-28e784b91357","input_length":2317,"output_length":149,"hash_ids":[3096083,3096084,3096085,3096086,3096087],"delay":981.9} +{"session_id":"sess-28e784b91357","input_length":736,"output_length":228,"hash_ids":[3096088,3096089],"delay":190.1} +{"session_id":"sess-28e784b91357","input_length":489,"output_length":195,"hash_ids":[3096090],"delay":4478.7} +{"session_id":"sess-28e784b91357","input_length":205,"output_length":492,"hash_ids":[3096091],"delay":196.1} +{"session_id":"sess-28e784b91357","input_length":2613,"output_length":466,"hash_ids":[3096092,3096093,3096094,3096095,3096096,3096097],"delay":20829.8} +{"session_id":"sess-28e784b91357","input_length":405,"output_length":160,"hash_ids":[3096098],"delay":263.7} +{"session_id":"sess-28e784b91357","input_length":1065,"output_length":133,"hash_ids":[3096099,3096100,3096101],"delay":485.5} +{"session_id":"sess-28e784b91357","input_length":1206,"output_length":605,"hash_ids":[3096102,3096103,3096104],"delay":99.0} +{"session_id":"sess-28e784b91357","input_length":665,"output_length":782,"hash_ids":[3096105,3096106],"delay":370.6} +{"session_id":"sess-6fd476d28892","input_length":34125,"output_length":694,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3100032,3100033,3100034,3100035,3100036,3100037,3100038,3100039,3100040,3100041,3100042,3100043,3100044,3100045,3100046],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6fd476d28892","input_length":171,"output_length":482,"hash_ids":[3100047],"delay":790.4} +{"session_id":"sess-6fd476d28892","input_length":1269,"output_length":176,"hash_ids":[3100048,3100049,3100050],"delay":828.6} +{"session_id":"sess-6fd476d28892","input_length":1541,"output_length":167,"hash_ids":[3100051,3100052,3100053,3100054],"delay":879.0} +{"session_id":"sess-6fd476d28892","input_length":191,"output_length":125,"hash_ids":[3100055],"delay":459.8} +{"session_id":"sess-6fd476d28892","input_length":1670,"output_length":437,"hash_ids":[3100056,3100057,3100058,3100059],"delay":8797.4} +{"session_id":"sess-6fd476d28892","input_length":754,"output_length":75,"hash_ids":[3100060,3100061],"delay":22981.7} +{"session_id":"sess-6fd476d28892","input_length":792,"output_length":406,"hash_ids":[3100062,3100063],"delay":650.9} +{"session_id":"sess-6fd476d28892","input_length":799,"output_length":51,"hash_ids":[3100064,3100065],"delay":1289.5} +{"session_id":"sess-6fd476d28892","input_length":771,"output_length":902,"hash_ids":[3100066,3100067],"delay":472.3} +{"session_id":"sess-6fd476d28892","input_length":1462,"output_length":96,"hash_ids":[3100068,3100069,3100070],"delay":5915.1} +{"session_id":"sess-6fd476d28892","input_length":915,"output_length":119,"hash_ids":[3100071,3100072],"delay":365.2} +{"session_id":"sess-6fd476d28892","input_length":553,"output_length":160,"hash_ids":[3100073,3100074],"delay":377.4} +{"session_id":"sess-6fd476d28892","input_length":2229,"output_length":328,"hash_ids":[3100075,3100076,3100077,3100078,3100079],"delay":1758.5} +{"session_id":"sess-6fd476d28892","input_length":1681,"output_length":504,"hash_ids":[3100080,3100081,3100082,3100083],"delay":1354.8} +{"session_id":"sess-6fd476d28892","input_length":301,"output_length":239,"hash_ids":[3100084],"delay":8632.7} +{"session_id":"sess-6fd476d28892","input_length":1045,"output_length":104,"hash_ids":[3100085,3100086,3100087],"delay":1105.9} +{"session_id":"sess-6fd476d28892","input_length":1226,"output_length":131,"hash_ids":[3100088,3100089,3100090],"delay":8988.5} +{"session_id":"sess-6fd476d28892","input_length":175,"output_length":67,"hash_ids":[3100091],"delay":392.0} +{"session_id":"sess-6fd476d28892","input_length":241,"output_length":368,"hash_ids":[3100092],"delay":195.7} +{"session_id":"sess-6fd476d28892","input_length":116,"output_length":1294,"hash_ids":[3100093],"delay":110.4} +{"session_id":"sess-6fd476d28892","input_length":328,"output_length":1409,"hash_ids":[3100094],"delay":401.9} +{"session_id":"sess-6fd476d28892","input_length":2101,"output_length":151,"hash_ids":[3100095,3100096,3100097,3100098,3100099],"delay":10940.6} +{"session_id":"sess-6fd476d28892","input_length":95,"output_length":165,"hash_ids":[3100100],"delay":3635.6} +{"session_id":"sess-6fd476d28892","input_length":801,"output_length":400,"hash_ids":[3100101,3100102],"delay":207.7} +{"session_id":"sess-6fd476d28892","input_length":226,"output_length":154,"hash_ids":[3100103],"delay":491.8} +{"session_id":"sess-6fd476d28892","input_length":196,"output_length":102,"hash_ids":[3100104],"delay":1897.2} +{"session_id":"sess-1e5fe3dc72b2","input_length":27701,"output_length":214,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,3104032,3104033,3104034],"timestamp":0.0,"group_id":3} +{"session_id":"sess-1e5fe3dc72b2","input_length":2314,"output_length":127,"hash_ids":[3104035,3104036,3104037,3104038,3104039],"delay":883.1} +{"session_id":"sess-1e5fe3dc72b2","input_length":929,"output_length":423,"hash_ids":[3104040,3104041],"delay":516.3} +{"session_id":"sess-1e5fe3dc72b2","input_length":296,"output_length":45,"hash_ids":[3104042],"delay":1117.0} +{"session_id":"sess-1e5fe3dc72b2","input_length":667,"output_length":333,"hash_ids":[3104043,3104044],"delay":4007.2} +{"session_id":"sess-1e5fe3dc72b2","input_length":158,"output_length":140,"hash_ids":[3104045],"delay":454.9} +{"session_id":"sess-1e5fe3dc72b2","input_length":165,"output_length":297,"hash_ids":[3104046],"delay":486.7} +{"session_id":"sess-1e5fe3dc72b2","input_length":988,"output_length":148,"hash_ids":[3104047,3104048],"delay":746.8} +{"session_id":"sess-1e5fe3dc72b2","input_length":349,"output_length":338,"hash_ids":[3104049],"delay":2362.7} +{"session_id":"sess-1e5fe3dc72b2","input_length":842,"output_length":98,"hash_ids":[3104050,3104051],"delay":1074.2} +{"session_id":"sess-1e5fe3dc72b2","input_length":160,"output_length":58,"hash_ids":[3104052],"delay":1299.3} +{"session_id":"sess-1e5fe3dc72b2","input_length":883,"output_length":488,"hash_ids":[3104053,3104054],"delay":425.0} +{"session_id":"sess-1e5fe3dc72b2","input_length":827,"output_length":337,"hash_ids":[3104055,3104056],"delay":227.0} +{"session_id":"sess-1e5fe3dc72b2","input_length":111,"output_length":178,"hash_ids":[3104057],"delay":1321.8} +{"session_id":"sess-1e5fe3dc72b2","input_length":567,"output_length":454,"hash_ids":[3104058,3104059],"delay":16093.1} +{"session_id":"sess-1e5fe3dc72b2","input_length":580,"output_length":88,"hash_ids":[3104060,3104061],"delay":838.0} +{"session_id":"sess-1e5fe3dc72b2","input_length":534,"output_length":216,"hash_ids":[3104062,3104063],"delay":370.4} +{"session_id":"sess-1e5fe3dc72b2","input_length":2410,"output_length":89,"hash_ids":[3104064,3104065,3104066,3104067,3104068],"delay":2104.0} +{"session_id":"sess-07e162a1fb9c","input_length":26409,"output_length":42,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-07e162a1fb9c","input_length":553,"output_length":111,"hash_ids":[3104069,3104070],"delay":603.9} +{"session_id":"sess-07e162a1fb9c","input_length":511,"output_length":290,"hash_ids":[3104071],"delay":966.2} +{"session_id":"sess-4471efb3208f","input_length":35862,"output_length":278,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3112032,3112033,3112034,3112035,3112036,3112037,3112038,3112039,3112040,3112041,3112042,3112043,3112044,3112045,3112046,3112047,3112048,3112049,3112050],"timestamp":0.0,"group_id":5} +{"session_id":"sess-4471efb3208f","input_length":1230,"output_length":468,"hash_ids":[3112051,3112052,3112053],"delay":382.5} +{"session_id":"sess-4471efb3208f","input_length":2342,"output_length":198,"hash_ids":[3112054,3112055,3112056,3112057,3112058],"delay":431.3} +{"session_id":"sess-4471efb3208f","input_length":1404,"output_length":86,"hash_ids":[3112059,3112060,3112061],"delay":24501.3} +{"session_id":"sess-4471efb3208f","input_length":486,"output_length":89,"hash_ids":[3112062],"delay":44286.6} +{"session_id":"sess-4471efb3208f","input_length":55,"output_length":150,"hash_ids":[3112063],"delay":4152.0} +{"session_id":"sess-4471efb3208f","input_length":1729,"output_length":127,"hash_ids":[3112064,3112065,3112066,3112067],"delay":3896.7} +{"session_id":"sess-4471efb3208f","input_length":1240,"output_length":549,"hash_ids":[3112068,3112069,3112070],"delay":580.8} +{"session_id":"sess-4471efb3208f","input_length":996,"output_length":178,"hash_ids":[3112071,3112072],"delay":262.4} +{"session_id":"sess-4471efb3208f","input_length":1219,"output_length":145,"hash_ids":[3112073,3112074,3112075],"delay":265.9} +{"session_id":"sess-4471efb3208f","input_length":1079,"output_length":535,"hash_ids":[3112076,3112077,3112078],"delay":6288.8} +{"session_id":"sess-4471efb3208f","input_length":2081,"output_length":125,"hash_ids":[3112079,3112080,3112081,3112082,3112083],"delay":1483.7} +{"session_id":"sess-4471efb3208f","input_length":221,"output_length":253,"hash_ids":[3112084],"delay":968.7} +{"session_id":"sess-4471efb3208f","input_length":1180,"output_length":144,"hash_ids":[3112085,3112086,3112087],"delay":380.0} +{"session_id":"sess-4471efb3208f","input_length":688,"output_length":236,"hash_ids":[3112088,3112089],"delay":1305.1} +{"session_id":"sess-c743526e8a27","input_length":27321,"output_length":136,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,3116032,3116033],"timestamp":0.0,"group_id":10} +{"session_id":"sess-c743526e8a27","input_length":499,"output_length":315,"hash_ids":[3116034],"delay":305.8} +{"session_id":"sess-c743526e8a27","input_length":886,"output_length":335,"hash_ids":[3116035,3116036],"delay":1856.5} +{"session_id":"sess-c743526e8a27","input_length":1097,"output_length":49,"hash_ids":[3116037,3116038,3116039],"delay":3027.4} +{"session_id":"sess-c743526e8a27","input_length":528,"output_length":103,"hash_ids":[3116040,3116041],"delay":1247.2} +{"session_id":"sess-c743526e8a27","input_length":1476,"output_length":268,"hash_ids":[3116042,3116043,3116044],"delay":72135.4} +{"session_id":"sess-c743526e8a27","input_length":1663,"output_length":337,"hash_ids":[3116045,3116046,3116047,3116048],"delay":8723.8} +{"session_id":"sess-c743526e8a27","input_length":1321,"output_length":102,"hash_ids":[3116049,3116050,3116051],"delay":183.3} +{"session_id":"sess-c743526e8a27","input_length":730,"output_length":346,"hash_ids":[3116052,3116053],"delay":973.5} +{"session_id":"sess-c743526e8a27","input_length":2771,"output_length":910,"hash_ids":[3116054,3116055,3116056,3116057,3116058,3116059],"delay":523.8} +{"session_id":"sess-c743526e8a27","input_length":1434,"output_length":179,"hash_ids":[3116060,3116061,3116062],"delay":34667.8} +{"session_id":"sess-c743526e8a27","input_length":892,"output_length":108,"hash_ids":[3116063,3116064],"delay":25945.0} +{"session_id":"sess-c743526e8a27","input_length":1110,"output_length":129,"hash_ids":[3116065,3116066,3116067],"delay":770.9} +{"session_id":"sess-c743526e8a27","input_length":225,"output_length":266,"hash_ids":[3116068],"delay":1226.1} +{"session_id":"sess-c743526e8a27","input_length":239,"output_length":141,"hash_ids":[3116069],"delay":500.5} +{"session_id":"sess-c743526e8a27","input_length":249,"output_length":183,"hash_ids":[3116070],"delay":905.3} +{"session_id":"sess-c743526e8a27","input_length":804,"output_length":232,"hash_ids":[3116071,3116072],"delay":917.3} +{"session_id":"sess-e9e067565155","input_length":26982,"output_length":134,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3120032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e9e067565155","input_length":271,"output_length":181,"hash_ids":[3120033],"delay":1385.1} +{"session_id":"sess-e9e067565155","input_length":1921,"output_length":499,"hash_ids":[3120034,3120035,3120036,3120037],"delay":39090.6} +{"session_id":"sess-e9e067565155","input_length":804,"output_length":151,"hash_ids":[3120038,3120039],"delay":3488.7} +{"session_id":"sess-e9e067565155","input_length":359,"output_length":288,"hash_ids":[3120040],"delay":927.1} +{"session_id":"sess-e9e067565155","input_length":1479,"output_length":124,"hash_ids":[3120041,3120042,3120043],"delay":480.8} +{"session_id":"sess-e9e067565155","input_length":299,"output_length":89,"hash_ids":[3120044],"delay":702.5} +{"session_id":"sess-e9e067565155","input_length":47,"output_length":716,"hash_ids":[3120045],"delay":648.7} +{"session_id":"sess-e9e067565155","input_length":1648,"output_length":464,"hash_ids":[3120046,3120047,3120048,3120049],"delay":1464.8} +{"session_id":"sess-e9e067565155","input_length":1212,"output_length":909,"hash_ids":[3120050,3120051,3120052],"delay":1919.7} +{"session_id":"sess-e9e067565155","input_length":1559,"output_length":407,"hash_ids":[3120053,3120054,3120055,3120056],"delay":21670.9} +{"session_id":"sess-e9e067565155","input_length":772,"output_length":111,"hash_ids":[3120057,3120058],"delay":2389.6} +{"session_id":"sess-e9e067565155","input_length":346,"output_length":424,"hash_ids":[3120059],"delay":168.3} +{"session_id":"sess-e9e067565155","input_length":532,"output_length":86,"hash_ids":[3120060,3120061],"delay":1255.4} +{"session_id":"sess-e9e067565155","input_length":941,"output_length":213,"hash_ids":[3120062,3120063],"delay":3645.3} +{"session_id":"sess-e9e067565155","input_length":49,"output_length":418,"hash_ids":[3120064],"delay":354.8} +{"session_id":"sess-e9e067565155","input_length":296,"output_length":95,"hash_ids":[3120065],"delay":808.3} +{"session_id":"sess-e9e067565155","input_length":1175,"output_length":192,"hash_ids":[3120066,3120067,3120068],"delay":7964.2} +{"session_id":"sess-e9e067565155","input_length":46,"output_length":201,"hash_ids":[3120069],"delay":3562.9} +{"session_id":"sess-e9e067565155","input_length":849,"output_length":320,"hash_ids":[3120070,3120071],"delay":753.6} +{"session_id":"sess-e9e067565155","input_length":445,"output_length":37,"hash_ids":[3120072],"delay":1787.1} +{"session_id":"sess-e9e067565155","input_length":537,"output_length":1234,"hash_ids":[3120073,3120074],"delay":377.9} +{"session_id":"sess-e9e067565155","input_length":723,"output_length":805,"hash_ids":[3120075,3120076],"delay":2758.3} +{"session_id":"sess-e9e067565155","input_length":1977,"output_length":581,"hash_ids":[3120077,3120078,3120079,3120080],"delay":302.0} +{"session_id":"sess-e9e067565155","input_length":826,"output_length":436,"hash_ids":[3120081,3120082],"delay":8137.2} +{"session_id":"sess-e9e067565155","input_length":260,"output_length":322,"hash_ids":[3120083],"delay":151.6} +{"session_id":"sess-e9e067565155","input_length":292,"output_length":141,"hash_ids":[3120084],"delay":1019.0} +{"session_id":"sess-e9e067565155","input_length":1894,"output_length":233,"hash_ids":[3120085,3120086,3120087,3120088],"delay":634.8} +{"session_id":"sess-e9e067565155","input_length":642,"output_length":224,"hash_ids":[3120089,3120090],"delay":8469.8} +{"session_id":"sess-e9e067565155","input_length":2277,"output_length":30,"hash_ids":[3120091,3120092,3120093,3120094,3120095],"delay":995.1} +{"session_id":"sess-e9e067565155","input_length":2655,"output_length":406,"hash_ids":[3120096,3120097,3120098,3120099,3120100,3120101],"delay":868.7} +{"session_id":"sess-e9e067565155","input_length":222,"output_length":796,"hash_ids":[3120102],"delay":460.1} +{"session_id":"sess-9800a71e4929","input_length":29559,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,3124032,3124033,3124034,3124035,3124036,3124037],"timestamp":0.0,"group_id":30} +{"session_id":"sess-9800a71e4929","input_length":676,"output_length":107,"hash_ids":[3124038,3124039],"delay":942.0} +{"session_id":"sess-9800a71e4929","input_length":1178,"output_length":73,"hash_ids":[3124040,3124041,3124042],"delay":11524.1} +{"session_id":"sess-9800a71e4929","input_length":180,"output_length":179,"hash_ids":[3124043],"delay":969.2} +{"session_id":"sess-9800a71e4929","input_length":1248,"output_length":109,"hash_ids":[3124044,3124045,3124046],"delay":995.5} +{"session_id":"sess-9800a71e4929","input_length":2394,"output_length":88,"hash_ids":[3124047,3124048,3124049,3124050,3124051],"delay":5477.0} +{"session_id":"sess-9800a71e4929","input_length":778,"output_length":360,"hash_ids":[3124052,3124053],"delay":4494.0} +{"session_id":"sess-9800a71e4929","input_length":539,"output_length":140,"hash_ids":[3124054,3124055],"delay":488.2} +{"session_id":"sess-9800a71e4929","input_length":1270,"output_length":56,"hash_ids":[3124056,3124057,3124058],"delay":1126.6} +{"session_id":"sess-9800a71e4929","input_length":261,"output_length":215,"hash_ids":[3124059],"delay":2275.1} +{"session_id":"sess-f1c06c42fc13","input_length":32359,"output_length":1212,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3128032,3128033,3128034,3128035,3128036,3128037,3128038,3128039,3128040,3128041,3128042,3128043],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f1c06c42fc13","input_length":488,"output_length":184,"hash_ids":[3128044],"delay":433.5} +{"session_id":"sess-f1c06c42fc13","input_length":266,"output_length":496,"hash_ids":[3128045],"delay":2872.8} +{"session_id":"sess-f1c06c42fc13","input_length":87,"output_length":190,"hash_ids":[3128046],"delay":757.7} +{"session_id":"sess-f1c06c42fc13","input_length":270,"output_length":95,"hash_ids":[3128047],"delay":5027.3} +{"session_id":"sess-f1c06c42fc13","input_length":782,"output_length":521,"hash_ids":[3128048,3128049],"delay":548.0} +{"session_id":"sess-f1c06c42fc13","input_length":2428,"output_length":33,"hash_ids":[3128050,3128051,3128052,3128053,3128054],"delay":604.2} +{"session_id":"sess-f1c06c42fc13","input_length":698,"output_length":90,"hash_ids":[3128055,3128056],"delay":3290.0} +{"session_id":"sess-f1c06c42fc13","input_length":175,"output_length":443,"hash_ids":[3128057],"delay":818.6} +{"session_id":"sess-f1c06c42fc13","input_length":658,"output_length":282,"hash_ids":[3128058,3128059],"delay":1266.0} +{"session_id":"sess-f1c06c42fc13","input_length":606,"output_length":88,"hash_ids":[3128060,3128061],"delay":473.5} +{"session_id":"sess-f1c06c42fc13","input_length":385,"output_length":83,"hash_ids":[3128062],"delay":316.0} +{"session_id":"sess-f1c06c42fc13","input_length":927,"output_length":152,"hash_ids":[3128063,3128064],"delay":1127.5} +{"session_id":"sess-f1c06c42fc13","input_length":485,"output_length":72,"hash_ids":[3128065],"delay":967.3} +{"session_id":"sess-f1c06c42fc13","input_length":1095,"output_length":106,"hash_ids":[3128066,3128067,3128068],"delay":439.6} +{"session_id":"sess-f1c06c42fc13","input_length":781,"output_length":132,"hash_ids":[3128069,3128070],"delay":748.6} +{"session_id":"sess-f1c06c42fc13","input_length":535,"output_length":242,"hash_ids":[3128071,3128072],"delay":231.6} +{"session_id":"sess-f1c06c42fc13","input_length":2173,"output_length":368,"hash_ids":[3128073,3128074,3128075,3128076,3128077],"delay":1516.8} +{"session_id":"sess-f1c06c42fc13","input_length":829,"output_length":329,"hash_ids":[3128078,3128079],"delay":8504.2} +{"session_id":"sess-f1c06c42fc13","input_length":353,"output_length":43,"hash_ids":[3128080],"delay":10154.2} +{"session_id":"sess-f1c06c42fc13","input_length":824,"output_length":166,"hash_ids":[3128081,3128082],"delay":1073.4} +{"session_id":"sess-f1c06c42fc13","input_length":2247,"output_length":361,"hash_ids":[3128083,3128084,3128085,3128086,3128087],"delay":640.8} +{"session_id":"sess-f1c06c42fc13","input_length":1530,"output_length":301,"hash_ids":[3128088,3128089,3128090],"delay":247.8} +{"session_id":"sess-f1c06c42fc13","input_length":157,"output_length":709,"hash_ids":[3128091],"delay":1567.3} +{"session_id":"sess-f1c06c42fc13","input_length":2761,"output_length":874,"hash_ids":[3128092,3128093,3128094,3128095,3128096,3128097],"delay":1365.1} +{"session_id":"sess-f1c06c42fc13","input_length":1696,"output_length":170,"hash_ids":[3128098,3128099,3128100,3128101],"delay":7379.8} +{"session_id":"sess-f1c06c42fc13","input_length":411,"output_length":751,"hash_ids":[3128102],"delay":5041.7} +{"session_id":"sess-f1c06c42fc13","input_length":817,"output_length":278,"hash_ids":[3128103,3128104],"delay":299.6} +{"session_id":"sess-ab8b6bf4a7b4","input_length":32231,"output_length":272,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3132032,3132033,3132034,3132035,3132036,3132037,3132038,3132039,3132040,3132041,3132042],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ab8b6bf4a7b4","input_length":532,"output_length":277,"hash_ids":[3132043,3132044],"delay":5724.7} +{"session_id":"sess-ab8b6bf4a7b4","input_length":1023,"output_length":309,"hash_ids":[3132045,3132046],"delay":811.9} +{"session_id":"sess-ab8b6bf4a7b4","input_length":761,"output_length":227,"hash_ids":[3132047,3132048],"delay":2637.8} +{"session_id":"sess-ab8b6bf4a7b4","input_length":574,"output_length":75,"hash_ids":[3132049,3132050],"delay":641.9} +{"session_id":"sess-ab8b6bf4a7b4","input_length":382,"output_length":247,"hash_ids":[3132051],"delay":314.0} +{"session_id":"sess-ab8b6bf4a7b4","input_length":1410,"output_length":176,"hash_ids":[3132052,3132053,3132054],"delay":3185.2} +{"session_id":"sess-ab8b6bf4a7b4","input_length":292,"output_length":227,"hash_ids":[3132055],"delay":709.4} +{"session_id":"sess-0979263a667f","input_length":27233,"output_length":726,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3136032,3136033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0979263a667f","input_length":728,"output_length":209,"hash_ids":[3136034,3136035],"delay":2416.6} +{"session_id":"sess-0979263a667f","input_length":804,"output_length":687,"hash_ids":[3136036,3136037],"delay":804.0} +{"session_id":"sess-0979263a667f","input_length":2749,"output_length":271,"hash_ids":[3136038,3136039,3136040,3136041,3136042,3136043],"delay":4576.0} +{"session_id":"sess-0979263a667f","input_length":1264,"output_length":222,"hash_ids":[3136044,3136045,3136046],"delay":1141.0} +{"session_id":"sess-0979263a667f","input_length":1534,"output_length":185,"hash_ids":[3136047,3136048,3136049],"delay":19299.3} +{"session_id":"sess-0979263a667f","input_length":990,"output_length":115,"hash_ids":[3136050,3136051],"delay":1857.5} +{"session_id":"sess-0979263a667f","input_length":216,"output_length":69,"hash_ids":[3136052],"delay":3533.0} +{"session_id":"sess-0979263a667f","input_length":1949,"output_length":110,"hash_ids":[3136053,3136054,3136055,3136056],"delay":209.8} +{"session_id":"sess-0979263a667f","input_length":2204,"output_length":49,"hash_ids":[3136057,3136058,3136059,3136060,3136061],"delay":16827.9} +{"session_id":"sess-0979263a667f","input_length":542,"output_length":173,"hash_ids":[3136062,3136063],"delay":287.6} +{"session_id":"sess-0979263a667f","input_length":666,"output_length":123,"hash_ids":[3136064,3136065],"delay":15487.0} +{"session_id":"sess-b79988541678","input_length":37220,"output_length":126,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3140032,3140033,3140034,3140035,3140036,3140037,3140038,3140039,3140040,3140041,3140042,3140043,3140044,3140045,3140046,3140047,3140048,3140049,3140050,3140051,3140052],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b79988541678","input_length":1024,"output_length":318,"hash_ids":[3140053,3140054],"delay":25674.4} +{"session_id":"sess-b79988541678","input_length":209,"output_length":74,"hash_ids":[3140055],"delay":1354.4} +{"session_id":"sess-b79988541678","input_length":924,"output_length":65,"hash_ids":[3140056,3140057],"delay":661.0} +{"session_id":"sess-b79988541678","input_length":1132,"output_length":75,"hash_ids":[3140058,3140059,3140060],"delay":775.0} +{"session_id":"sess-b79988541678","input_length":1457,"output_length":786,"hash_ids":[3140061,3140062,3140063],"delay":347.4} +{"session_id":"sess-b79988541678","input_length":608,"output_length":311,"hash_ids":[3140064,3140065],"delay":360.0} +{"session_id":"sess-b79988541678","input_length":532,"output_length":162,"hash_ids":[3140066,3140067],"delay":43178.3} +{"session_id":"sess-b79988541678","input_length":1323,"output_length":113,"hash_ids":[3140068,3140069,3140070],"delay":662.1} +{"session_id":"sess-b79988541678","input_length":911,"output_length":305,"hash_ids":[3140071,3140072],"delay":274.2} +{"session_id":"sess-b79988541678","input_length":2635,"output_length":295,"hash_ids":[3140073,3140074,3140075,3140076,3140077,3140078],"delay":7184.7} +{"session_id":"sess-b79988541678","input_length":700,"output_length":190,"hash_ids":[3140079,3140080],"delay":7401.1} +{"session_id":"sess-b79988541678","input_length":2049,"output_length":486,"hash_ids":[3140081,3140082,3140083,3140084,3140085],"delay":587.7} +{"session_id":"sess-b79988541678","input_length":1472,"output_length":555,"hash_ids":[3140086,3140087,3140088],"delay":12086.3} +{"session_id":"sess-b79988541678","input_length":1357,"output_length":30,"hash_ids":[3140089,3140090,3140091],"delay":20971.9} +{"session_id":"sess-b79988541678","input_length":302,"output_length":31,"hash_ids":[3140092],"delay":267.8} +{"session_id":"sess-b79988541678","input_length":2774,"output_length":46,"hash_ids":[3140093,3140094,3140095,3140096,3140097,3140098],"delay":364.0} +{"session_id":"sess-b79988541678","input_length":1489,"output_length":301,"hash_ids":[3140099,3140100,3140101],"delay":678.9} +{"session_id":"sess-b79988541678","input_length":2247,"output_length":267,"hash_ids":[3140102,3140103,3140104,3140105,3140106],"delay":408.3} +{"session_id":"sess-ff9171c100b1","input_length":26767,"output_length":97,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,3144032],"timestamp":0.0,"group_id":11} +{"session_id":"sess-ff9171c100b1","input_length":2103,"output_length":587,"hash_ids":[3144033,3144034,3144035,3144036,3144037],"delay":578.3} +{"session_id":"sess-ff9171c100b1","input_length":543,"output_length":237,"hash_ids":[3144038,3144039],"delay":29010.4} +{"session_id":"sess-ff9171c100b1","input_length":1303,"output_length":97,"hash_ids":[3144040,3144041,3144042],"delay":1371.1} +{"session_id":"sess-ff9171c100b1","input_length":1042,"output_length":494,"hash_ids":[3144043,3144044,3144045],"delay":415.7} +{"session_id":"sess-ff9171c100b1","input_length":514,"output_length":791,"hash_ids":[3144046,3144047],"delay":1255.5} +{"session_id":"sess-ff9171c100b1","input_length":1650,"output_length":98,"hash_ids":[3144048,3144049,3144050,3144051],"delay":749.9} +{"session_id":"sess-ff9171c100b1","input_length":527,"output_length":83,"hash_ids":[3144052,3144053],"delay":1778.1} +{"session_id":"sess-ff9171c100b1","input_length":569,"output_length":188,"hash_ids":[3144054,3144055],"delay":8602.4} +{"session_id":"sess-ff9171c100b1","input_length":342,"output_length":173,"hash_ids":[3144056],"delay":564.2} +{"session_id":"sess-ff9171c100b1","input_length":1240,"output_length":213,"hash_ids":[3144057,3144058,3144059],"delay":787.5} +{"session_id":"sess-ff9171c100b1","input_length":246,"output_length":122,"hash_ids":[3144060],"delay":1291.3} +{"session_id":"sess-ff9171c100b1","input_length":2591,"output_length":627,"hash_ids":[3144061,3144062,3144063,3144064,3144065,3144066],"delay":11293.2} +{"session_id":"sess-11d973c08133","input_length":29329,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3148032,3148033,3148034,3148035,3148036,3148037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-11d973c08133","input_length":482,"output_length":231,"hash_ids":[3148038],"delay":1742.8} +{"session_id":"sess-11d973c08133","input_length":250,"output_length":30,"hash_ids":[3148039],"delay":433.1} +{"session_id":"sess-11d973c08133","input_length":1151,"output_length":276,"hash_ids":[3148040,3148041,3148042],"delay":628.0} +{"session_id":"sess-11d973c08133","input_length":325,"output_length":166,"hash_ids":[3148043],"delay":1158.7} +{"session_id":"sess-11d973c08133","input_length":2666,"output_length":338,"hash_ids":[3148044,3148045,3148046,3148047,3148048,3148049],"delay":673.4} +{"session_id":"sess-11d973c08133","input_length":160,"output_length":667,"hash_ids":[3148050],"delay":1793.8} +{"session_id":"sess-11d973c08133","input_length":492,"output_length":469,"hash_ids":[3148051],"delay":12513.8} +{"session_id":"sess-11d973c08133","input_length":1313,"output_length":252,"hash_ids":[3148052,3148053,3148054],"delay":984.6} +{"session_id":"sess-11d973c08133","input_length":2112,"output_length":196,"hash_ids":[3148055,3148056,3148057,3148058,3148059],"delay":3087.4} +{"session_id":"sess-294815509f33","input_length":27066,"output_length":119,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3152032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-294815509f33","input_length":1866,"output_length":169,"hash_ids":[3152033,3152034,3152035,3152036],"delay":167.1} +{"session_id":"sess-294815509f33","input_length":405,"output_length":136,"hash_ids":[3152037],"delay":665.3} +{"session_id":"sess-294815509f33","input_length":1452,"output_length":465,"hash_ids":[3152038,3152039,3152040],"delay":2736.7} +{"session_id":"sess-294815509f33","input_length":382,"output_length":66,"hash_ids":[3152041],"delay":1751.1} +{"session_id":"sess-294815509f33","input_length":1486,"output_length":69,"hash_ids":[3152042,3152043,3152044],"delay":1737.5} +{"session_id":"sess-294815509f33","input_length":320,"output_length":148,"hash_ids":[3152045],"delay":370.9} +{"session_id":"sess-294815509f33","input_length":153,"output_length":55,"hash_ids":[3152046],"delay":1512.7} +{"session_id":"sess-294815509f33","input_length":242,"output_length":211,"hash_ids":[3152047],"delay":12911.9} +{"session_id":"sess-294815509f33","input_length":2195,"output_length":957,"hash_ids":[3152048,3152049,3152050,3152051,3152052],"delay":869.0} +{"session_id":"sess-294815509f33","input_length":2318,"output_length":75,"hash_ids":[3152053,3152054,3152055,3152056,3152057],"delay":766.5} +{"session_id":"sess-294815509f33","input_length":767,"output_length":173,"hash_ids":[3152058,3152059],"delay":2411.7} +{"session_id":"sess-294815509f33","input_length":415,"output_length":344,"hash_ids":[3152060],"delay":517.0} +{"session_id":"sess-294815509f33","input_length":366,"output_length":197,"hash_ids":[3152061],"delay":1126.3} +{"session_id":"sess-294815509f33","input_length":511,"output_length":509,"hash_ids":[3152062],"delay":21163.8} +{"session_id":"sess-294815509f33","input_length":1515,"output_length":348,"hash_ids":[3152063,3152064,3152065],"delay":47644.1} +{"session_id":"sess-294815509f33","input_length":892,"output_length":147,"hash_ids":[3152066,3152067],"delay":1654.4} +{"session_id":"sess-294815509f33","input_length":1259,"output_length":454,"hash_ids":[3152068,3152069,3152070],"delay":391.7} +{"session_id":"sess-294815509f33","input_length":2606,"output_length":112,"hash_ids":[3152071,3152072,3152073,3152074,3152075,3152076],"delay":378.4} +{"session_id":"sess-294815509f33","input_length":490,"output_length":49,"hash_ids":[3152077],"delay":14143.6} +{"session_id":"sess-294815509f33","input_length":2418,"output_length":30,"hash_ids":[3152078,3152079,3152080,3152081,3152082],"delay":2308.4} +{"session_id":"sess-294815509f33","input_length":172,"output_length":533,"hash_ids":[3152083],"delay":327.0} +{"session_id":"sess-294815509f33","input_length":509,"output_length":169,"hash_ids":[3152084],"delay":9318.7} +{"session_id":"sess-294815509f33","input_length":898,"output_length":81,"hash_ids":[3152085,3152086],"delay":5457.1} +{"session_id":"sess-294815509f33","input_length":757,"output_length":1210,"hash_ids":[3152087,3152088],"delay":287.2} +{"session_id":"sess-294815509f33","input_length":1555,"output_length":34,"hash_ids":[3152089,3152090,3152091,3152092],"delay":309.5} +{"session_id":"sess-294815509f33","input_length":407,"output_length":152,"hash_ids":[3152093],"delay":3034.0} +{"session_id":"sess-67161924dd58","input_length":27707,"output_length":158,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3156032,3156033,3156034],"timestamp":0.0,"group_id":5} +{"session_id":"sess-67161924dd58","input_length":2070,"output_length":73,"hash_ids":[3156035,3156036,3156037,3156038,3156039],"delay":1051.0} +{"session_id":"sess-67161924dd58","input_length":349,"output_length":580,"hash_ids":[3156040],"delay":282.6} +{"session_id":"sess-67161924dd58","input_length":2466,"output_length":445,"hash_ids":[3156041,3156042,3156043,3156044,3156045],"delay":17372.1} +{"session_id":"sess-67161924dd58","input_length":821,"output_length":150,"hash_ids":[3156046,3156047],"delay":1200.4} +{"session_id":"sess-67161924dd58","input_length":575,"output_length":114,"hash_ids":[3156048,3156049],"delay":1834.9} +{"session_id":"sess-67161924dd58","input_length":220,"output_length":385,"hash_ids":[3156050],"delay":335.7} +{"session_id":"sess-67161924dd58","input_length":1120,"output_length":351,"hash_ids":[3156051,3156052,3156053],"delay":6502.5} +{"session_id":"sess-67161924dd58","input_length":324,"output_length":638,"hash_ids":[3156054],"delay":5354.7} +{"session_id":"sess-67161924dd58","input_length":81,"output_length":312,"hash_ids":[3156055],"delay":478.2} +{"session_id":"sess-67161924dd58","input_length":2991,"output_length":545,"hash_ids":[3156056,3156057,3156058,3156059,3156060,3156061],"delay":27757.3} +{"session_id":"sess-67161924dd58","input_length":497,"output_length":210,"hash_ids":[3156062],"delay":686.2} +{"session_id":"sess-67161924dd58","input_length":2184,"output_length":1277,"hash_ids":[3156063,3156064,3156065,3156066,3156067],"delay":2039.8} +{"session_id":"sess-67161924dd58","input_length":512,"output_length":568,"hash_ids":[3156068],"delay":6027.8} +{"session_id":"sess-67161924dd58","input_length":350,"output_length":108,"hash_ids":[3156069],"delay":7491.5} +{"session_id":"sess-67161924dd58","input_length":632,"output_length":1384,"hash_ids":[3156070,3156071],"delay":852.7} +{"session_id":"sess-67161924dd58","input_length":1239,"output_length":212,"hash_ids":[3156072,3156073,3156074],"delay":612.8} +{"session_id":"sess-67161924dd58","input_length":56,"output_length":163,"hash_ids":[3156075],"delay":620.1} +{"session_id":"sess-67161924dd58","input_length":736,"output_length":72,"hash_ids":[3156076,3156077],"delay":16782.5} +{"session_id":"sess-67161924dd58","input_length":157,"output_length":897,"hash_ids":[3156078],"delay":239.2} +{"session_id":"sess-67161924dd58","input_length":813,"output_length":136,"hash_ids":[3156079,3156080],"delay":359.3} +{"session_id":"sess-67161924dd58","input_length":992,"output_length":217,"hash_ids":[3156081,3156082],"delay":446.7} +{"session_id":"sess-67161924dd58","input_length":2278,"output_length":100,"hash_ids":[3156083,3156084,3156085,3156086,3156087],"delay":1422.2} +{"session_id":"sess-67161924dd58","input_length":331,"output_length":66,"hash_ids":[3156088],"delay":505.4} +{"session_id":"sess-67161924dd58","input_length":280,"output_length":245,"hash_ids":[3156089],"delay":521.5} +{"session_id":"sess-67161924dd58","input_length":1507,"output_length":61,"hash_ids":[3156090,3156091,3156092],"delay":547.7} +{"session_id":"sess-67161924dd58","input_length":2463,"output_length":230,"hash_ids":[3156093,3156094,3156095,3156096,3156097],"delay":121.6} +{"session_id":"sess-67161924dd58","input_length":964,"output_length":136,"hash_ids":[3156098,3156099],"delay":147.4} +{"session_id":"sess-04b66e56aaf8","input_length":27942,"output_length":359,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,3160032,3160033,3160034],"timestamp":0.0,"group_id":23} +{"session_id":"sess-04b66e56aaf8","input_length":760,"output_length":195,"hash_ids":[3160035,3160036],"delay":809.1} +{"session_id":"sess-4dd6bc287800","input_length":29071,"output_length":1079,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3164032,3164033,3164034,3164035,3164036],"timestamp":0.0,"group_id":17} +{"session_id":"sess-4dd6bc287800","input_length":357,"output_length":895,"hash_ids":[3164037],"delay":1520.5} +{"session_id":"sess-4dd6bc287800","input_length":2479,"output_length":737,"hash_ids":[3164038,3164039,3164040,3164041,3164042],"delay":2728.1} +{"session_id":"sess-4dd6bc287800","input_length":1998,"output_length":149,"hash_ids":[3164043,3164044,3164045,3164046],"delay":2656.7} +{"session_id":"sess-4dd6bc287800","input_length":360,"output_length":261,"hash_ids":[3164047],"delay":1294.0} +{"session_id":"sess-4dd6bc287800","input_length":854,"output_length":177,"hash_ids":[3164048,3164049],"delay":1267.1} +{"session_id":"sess-4dd6bc287800","input_length":1718,"output_length":264,"hash_ids":[3164050,3164051,3164052,3164053],"delay":791.6} +{"session_id":"sess-4dd6bc287800","input_length":1157,"output_length":144,"hash_ids":[3164054,3164055,3164056],"delay":2666.9} +{"session_id":"sess-4dd6bc287800","input_length":348,"output_length":118,"hash_ids":[3164057],"delay":690.2} +{"session_id":"sess-4dd6bc287800","input_length":1806,"output_length":168,"hash_ids":[3164058,3164059,3164060,3164061],"delay":1732.8} +{"session_id":"sess-4dd6bc287800","input_length":1159,"output_length":117,"hash_ids":[3164062,3164063,3164064],"delay":11717.6} +{"session_id":"sess-4dd6bc287800","input_length":808,"output_length":30,"hash_ids":[3164065,3164066],"delay":1648.7} +{"session_id":"sess-4dd6bc287800","input_length":2457,"output_length":33,"hash_ids":[3164067,3164068,3164069,3164070,3164071],"delay":760.3} +{"session_id":"sess-4dd6bc287800","input_length":360,"output_length":62,"hash_ids":[3164072],"delay":95.3} +{"session_id":"sess-4dd6bc287800","input_length":88,"output_length":375,"hash_ids":[3164073],"delay":559.8} +{"session_id":"sess-4dd6bc287800","input_length":1274,"output_length":385,"hash_ids":[3164074,3164075,3164076],"delay":923.1} +{"session_id":"sess-4dd6bc287800","input_length":366,"output_length":105,"hash_ids":[3164077],"delay":862.2} +{"session_id":"sess-4dd6bc287800","input_length":431,"output_length":263,"hash_ids":[3164078],"delay":3469.0} +{"session_id":"sess-4dd6bc287800","input_length":453,"output_length":37,"hash_ids":[3164079],"delay":18000.7} +{"session_id":"sess-4dd6bc287800","input_length":2225,"output_length":305,"hash_ids":[3164080,3164081,3164082,3164083,3164084],"delay":6397.9} +{"session_id":"sess-4dd6bc287800","input_length":1398,"output_length":152,"hash_ids":[3164085,3164086,3164087],"delay":6404.8} +{"session_id":"sess-4dd6bc287800","input_length":1173,"output_length":719,"hash_ids":[3164088,3164089,3164090],"delay":418.5} +{"session_id":"sess-4dd6bc287800","input_length":899,"output_length":472,"hash_ids":[3164091,3164092],"delay":29099.6} +{"session_id":"sess-4dd6bc287800","input_length":1678,"output_length":545,"hash_ids":[3164093,3164094,3164095,3164096],"delay":10962.2} +{"session_id":"sess-4dd6bc287800","input_length":782,"output_length":384,"hash_ids":[3164097,3164098],"delay":1969.1} +{"session_id":"sess-4dd6bc287800","input_length":629,"output_length":603,"hash_ids":[3164099,3164100],"delay":784.9} +{"session_id":"sess-ba7839d80099","input_length":30170,"output_length":91,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,3168032,3168033,3168034,3168035,3168036,3168037,3168038],"timestamp":0.0,"group_id":11} +{"session_id":"sess-ba7839d80099","input_length":776,"output_length":258,"hash_ids":[3168039,3168040],"delay":743.5} +{"session_id":"sess-ba7839d80099","input_length":878,"output_length":39,"hash_ids":[3168041,3168042],"delay":1424.6} +{"session_id":"sess-ba7839d80099","input_length":284,"output_length":429,"hash_ids":[3168043],"delay":2600.1} +{"session_id":"sess-ba7839d80099","input_length":1955,"output_length":703,"hash_ids":[3168044,3168045,3168046,3168047],"delay":1234.6} +{"session_id":"sess-ba7839d80099","input_length":1113,"output_length":392,"hash_ids":[3168048,3168049,3168050],"delay":2925.4} +{"session_id":"sess-ba7839d80099","input_length":921,"output_length":164,"hash_ids":[3168051,3168052],"delay":946.9} +{"session_id":"sess-ba7839d80099","input_length":1770,"output_length":343,"hash_ids":[3168053,3168054,3168055,3168056],"delay":2300.5} +{"session_id":"sess-ba7839d80099","input_length":2554,"output_length":475,"hash_ids":[3168057,3168058,3168059,3168060,3168061],"delay":708.0} +{"session_id":"sess-ba7839d80099","input_length":670,"output_length":347,"hash_ids":[3168062,3168063],"delay":283.0} +{"session_id":"sess-ba7839d80099","input_length":727,"output_length":690,"hash_ids":[3168064,3168065],"delay":443.0} +{"session_id":"sess-ba7839d80099","input_length":1500,"output_length":181,"hash_ids":[3168066,3168067,3168068],"delay":413.5} +{"session_id":"sess-ba7839d80099","input_length":2060,"output_length":533,"hash_ids":[3168069,3168070,3168071,3168072,3168073],"delay":6231.2} +{"session_id":"sess-ba7839d80099","input_length":2576,"output_length":159,"hash_ids":[3168074,3168075,3168076,3168077,3168078,3168079],"delay":1371.6} +{"session_id":"sess-ba7839d80099","input_length":2757,"output_length":158,"hash_ids":[3168080,3168081,3168082,3168083,3168084,3168085],"delay":508.8} +{"session_id":"sess-ba7839d80099","input_length":665,"output_length":492,"hash_ids":[3168086,3168087],"delay":25326.1} +{"session_id":"sess-ba7839d80099","input_length":519,"output_length":120,"hash_ids":[3168088,3168089],"delay":426.4} +{"session_id":"sess-ba7839d80099","input_length":671,"output_length":1100,"hash_ids":[3168090,3168091],"delay":2075.4} +{"session_id":"sess-ba7839d80099","input_length":1588,"output_length":355,"hash_ids":[3168092,3168093,3168094,3168095],"delay":13618.3} +{"session_id":"sess-ba7839d80099","input_length":997,"output_length":479,"hash_ids":[3168096,3168097],"delay":462.6} +{"session_id":"sess-ba7839d80099","input_length":100,"output_length":423,"hash_ids":[3168098],"delay":9822.1} +{"session_id":"sess-ba7839d80099","input_length":1488,"output_length":42,"hash_ids":[3168099,3168100,3168101],"delay":423.7} +{"session_id":"sess-ac10631ca14f","input_length":32811,"output_length":267,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,3172032,3172033,3172034,3172035,3172036,3172037,3172038,3172039,3172040,3172041,3172042,3172043,3172044],"timestamp":0.0,"group_id":37} +{"session_id":"sess-ac10631ca14f","input_length":234,"output_length":370,"hash_ids":[3172045],"delay":1401.0} +{"session_id":"sess-ac10631ca14f","input_length":818,"output_length":251,"hash_ids":[3172046,3172047],"delay":647.9} +{"session_id":"sess-ac10631ca14f","input_length":2302,"output_length":397,"hash_ids":[3172048,3172049,3172050,3172051,3172052],"delay":35247.7} +{"session_id":"sess-ac10631ca14f","input_length":466,"output_length":602,"hash_ids":[3172053],"delay":266.9} +{"session_id":"sess-ac10631ca14f","input_length":190,"output_length":112,"hash_ids":[3172054],"delay":379.8} +{"session_id":"sess-ac10631ca14f","input_length":506,"output_length":95,"hash_ids":[3172055],"delay":16525.3} +{"session_id":"sess-ac10631ca14f","input_length":2487,"output_length":203,"hash_ids":[3172056,3172057,3172058,3172059,3172060],"delay":761.8} +{"session_id":"sess-ac10631ca14f","input_length":2733,"output_length":193,"hash_ids":[3172061,3172062,3172063,3172064,3172065,3172066],"delay":786.8} +{"session_id":"sess-ac10631ca14f","input_length":1836,"output_length":487,"hash_ids":[3172067,3172068,3172069,3172070],"delay":225.8} +{"session_id":"sess-ac10631ca14f","input_length":899,"output_length":426,"hash_ids":[3172071,3172072],"delay":187.7} +{"session_id":"sess-ac10631ca14f","input_length":172,"output_length":209,"hash_ids":[3172073],"delay":1187.5} +{"session_id":"sess-ac10631ca14f","input_length":2593,"output_length":518,"hash_ids":[3172074,3172075,3172076,3172077,3172078,3172079],"delay":477.2} +{"session_id":"sess-22da52f73bdf","input_length":27627,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3176032,3176033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-22da52f73bdf","input_length":151,"output_length":312,"hash_ids":[3176034],"delay":12491.6} +{"session_id":"sess-22da52f73bdf","input_length":275,"output_length":86,"hash_ids":[3176035],"delay":1624.1} +{"session_id":"sess-22da52f73bdf","input_length":451,"output_length":52,"hash_ids":[3176036],"delay":945.8} +{"session_id":"sess-22da52f73bdf","input_length":2460,"output_length":293,"hash_ids":[3176037,3176038,3176039,3176040,3176041],"delay":582.2} +{"session_id":"sess-22da52f73bdf","input_length":1186,"output_length":156,"hash_ids":[3176042,3176043,3176044],"delay":1345.9} +{"session_id":"sess-22da52f73bdf","input_length":977,"output_length":39,"hash_ids":[3176045,3176046],"delay":386.6} +{"session_id":"sess-22da52f73bdf","input_length":479,"output_length":89,"hash_ids":[3176047],"delay":908.2} +{"session_id":"sess-22da52f73bdf","input_length":753,"output_length":97,"hash_ids":[3176048,3176049],"delay":1734.1} +{"session_id":"sess-22da52f73bdf","input_length":567,"output_length":182,"hash_ids":[3176050,3176051],"delay":1064.6} +{"session_id":"sess-22da52f73bdf","input_length":398,"output_length":668,"hash_ids":[3176052],"delay":16308.6} +{"session_id":"sess-22da52f73bdf","input_length":961,"output_length":201,"hash_ids":[3176053,3176054],"delay":1456.9} +{"session_id":"sess-22da52f73bdf","input_length":1004,"output_length":288,"hash_ids":[3176055,3176056],"delay":11768.5} +{"session_id":"sess-22da52f73bdf","input_length":1014,"output_length":101,"hash_ids":[3176057,3176058],"delay":793.9} +{"session_id":"sess-22da52f73bdf","input_length":571,"output_length":724,"hash_ids":[3176059,3176060],"delay":518.7} +{"session_id":"sess-22da52f73bdf","input_length":1482,"output_length":278,"hash_ids":[3176061,3176062,3176063],"delay":50278.3} +{"session_id":"sess-22da52f73bdf","input_length":296,"output_length":210,"hash_ids":[3176064],"delay":541.5} +{"session_id":"sess-22da52f73bdf","input_length":2904,"output_length":137,"hash_ids":[3176065,3176066,3176067,3176068,3176069,3176070],"delay":724.4} +{"session_id":"sess-22da52f73bdf","input_length":2355,"output_length":96,"hash_ids":[3176071,3176072,3176073,3176074,3176075],"delay":6665.2} +{"session_id":"sess-2252a6d4af88","input_length":28674,"output_length":134,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3180032,3180033,3180034,3180035,3180036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2252a6d4af88","input_length":585,"output_length":779,"hash_ids":[3180037,3180038],"delay":949.8} +{"session_id":"sess-2252a6d4af88","input_length":2413,"output_length":294,"hash_ids":[3180039,3180040,3180041,3180042,3180043],"delay":989.5} +{"session_id":"sess-2252a6d4af88","input_length":857,"output_length":220,"hash_ids":[3180044,3180045],"delay":2807.3} +{"session_id":"sess-2252a6d4af88","input_length":2583,"output_length":144,"hash_ids":[3180046,3180047,3180048,3180049,3180050,3180051],"delay":2152.3} +{"session_id":"sess-b5a45b85fd7b","input_length":30946,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3184032,3184033,3184034,3184035,3184036,3184037,3184038,3184039,3184040],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b5a45b85fd7b","input_length":272,"output_length":129,"hash_ids":[3184041],"delay":894.2} +{"session_id":"sess-b5a45b85fd7b","input_length":488,"output_length":333,"hash_ids":[3184042],"delay":11367.6} +{"session_id":"sess-b5a45b85fd7b","input_length":2321,"output_length":44,"hash_ids":[3184043,3184044,3184045,3184046,3184047],"delay":23783.6} +{"session_id":"sess-b5a45b85fd7b","input_length":265,"output_length":328,"hash_ids":[3184048],"delay":1843.5} +{"session_id":"sess-b5a45b85fd7b","input_length":1218,"output_length":329,"hash_ids":[3184049,3184050,3184051],"delay":1074.6} +{"session_id":"sess-b5a45b85fd7b","input_length":1331,"output_length":755,"hash_ids":[3184052,3184053,3184054],"delay":642.0} +{"session_id":"sess-b5a45b85fd7b","input_length":2218,"output_length":249,"hash_ids":[3184055,3184056,3184057,3184058,3184059],"delay":37409.1} +{"session_id":"sess-b5a45b85fd7b","input_length":133,"output_length":185,"hash_ids":[3184060],"delay":8454.3} +{"session_id":"sess-b5a45b85fd7b","input_length":1135,"output_length":629,"hash_ids":[3184061,3184062,3184063],"delay":3163.9} +{"session_id":"sess-b5a45b85fd7b","input_length":1354,"output_length":435,"hash_ids":[3184064,3184065,3184066],"delay":4690.7} +{"session_id":"sess-b5a45b85fd7b","input_length":1994,"output_length":529,"hash_ids":[3184067,3184068,3184069,3184070],"delay":312.2} +{"session_id":"sess-b5a45b85fd7b","input_length":869,"output_length":610,"hash_ids":[3184071,3184072],"delay":9850.2} +{"session_id":"sess-b5a45b85fd7b","input_length":1388,"output_length":217,"hash_ids":[3184073,3184074,3184075],"delay":503.4} +{"session_id":"sess-b5a45b85fd7b","input_length":2042,"output_length":176,"hash_ids":[3184076,3184077,3184078,3184079],"delay":13194.6} +{"session_id":"sess-b5a45b85fd7b","input_length":147,"output_length":617,"hash_ids":[3184080],"delay":702.4} +{"session_id":"sess-b5a45b85fd7b","input_length":711,"output_length":315,"hash_ids":[3184081,3184082],"delay":933.3} +{"session_id":"sess-b5a45b85fd7b","input_length":1231,"output_length":253,"hash_ids":[3184083,3184084,3184085],"delay":1077.9} +{"session_id":"sess-b5a45b85fd7b","input_length":1709,"output_length":330,"hash_ids":[3184086,3184087,3184088,3184089],"delay":9654.9} +{"session_id":"sess-b5a45b85fd7b","input_length":103,"output_length":456,"hash_ids":[3184090],"delay":1322.1} +{"session_id":"sess-b5a45b85fd7b","input_length":1441,"output_length":279,"hash_ids":[3184091,3184092,3184093],"delay":396.1} +{"session_id":"sess-b5a45b85fd7b","input_length":751,"output_length":315,"hash_ids":[3184094,3184095],"delay":1020.3} +{"session_id":"sess-b5a45b85fd7b","input_length":1156,"output_length":49,"hash_ids":[3184096,3184097,3184098],"delay":1142.2} +{"session_id":"sess-b5a45b85fd7b","input_length":673,"output_length":173,"hash_ids":[3184099,3184100],"delay":210.5} +{"session_id":"sess-b5a45b85fd7b","input_length":490,"output_length":449,"hash_ids":[3184101],"delay":2219.8} +{"session_id":"sess-28f8b8dcc467","input_length":29538,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,3188032,3188033,3188034,3188035,3188036,3188037],"timestamp":0.0,"group_id":12} +{"session_id":"sess-28f8b8dcc467","input_length":430,"output_length":166,"hash_ids":[3188038],"delay":1237.5} +{"session_id":"sess-28f8b8dcc467","input_length":617,"output_length":399,"hash_ids":[3188039,3188040],"delay":1528.8} +{"session_id":"sess-28f8b8dcc467","input_length":633,"output_length":253,"hash_ids":[3188041,3188042],"delay":1934.6} +{"session_id":"sess-856c5485206c","input_length":27838,"output_length":415,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3192032,3192033,3192034],"timestamp":0.0,"group_id":8} +{"session_id":"sess-856c5485206c","input_length":463,"output_length":858,"hash_ids":[3192035],"delay":2218.4} +{"session_id":"sess-856c5485206c","input_length":173,"output_length":194,"hash_ids":[3192036],"delay":13127.7} +{"session_id":"sess-856c5485206c","input_length":1110,"output_length":348,"hash_ids":[3192037,3192038,3192039],"delay":74856.4} +{"session_id":"sess-856c5485206c","input_length":2296,"output_length":255,"hash_ids":[3192040,3192041,3192042,3192043,3192044],"delay":973.2} +{"session_id":"sess-856c5485206c","input_length":1478,"output_length":206,"hash_ids":[3192045,3192046,3192047],"delay":1128.2} +{"session_id":"sess-856c5485206c","input_length":2238,"output_length":236,"hash_ids":[3192048,3192049,3192050,3192051,3192052],"delay":8087.1} +{"session_id":"sess-856c5485206c","input_length":1366,"output_length":166,"hash_ids":[3192053,3192054,3192055],"delay":525.0} +{"session_id":"sess-856c5485206c","input_length":1837,"output_length":265,"hash_ids":[3192056,3192057,3192058,3192059],"delay":2221.1} +{"session_id":"sess-856c5485206c","input_length":1434,"output_length":89,"hash_ids":[3192060,3192061,3192062],"delay":1220.1} +{"session_id":"sess-856c5485206c","input_length":579,"output_length":472,"hash_ids":[3192063,3192064],"delay":161.0} +{"session_id":"sess-856c5485206c","input_length":1766,"output_length":30,"hash_ids":[3192065,3192066,3192067,3192068],"delay":1222.8} +{"session_id":"sess-856c5485206c","input_length":479,"output_length":30,"hash_ids":[3192069],"delay":730.0} +{"session_id":"sess-32daf5d2656d","input_length":30808,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3196032,3196033,3196034,3196035,3196036,3196037,3196038,3196039,3196040],"timestamp":0.0,"group_id":1} +{"session_id":"sess-32daf5d2656d","input_length":177,"output_length":150,"hash_ids":[3196041],"delay":435.4} +{"session_id":"sess-32daf5d2656d","input_length":1191,"output_length":660,"hash_ids":[3196042,3196043,3196044],"delay":817.1} +{"session_id":"sess-32daf5d2656d","input_length":225,"output_length":233,"hash_ids":[3196045],"delay":2622.7} +{"session_id":"sess-32daf5d2656d","input_length":171,"output_length":89,"hash_ids":[3196046],"delay":231.6} +{"session_id":"sess-32daf5d2656d","input_length":762,"output_length":369,"hash_ids":[3196047,3196048],"delay":550.6} +{"session_id":"sess-32daf5d2656d","input_length":1117,"output_length":449,"hash_ids":[3196049,3196050,3196051],"delay":18698.5} +{"session_id":"sess-32daf5d2656d","input_length":1313,"output_length":48,"hash_ids":[3196052,3196053,3196054],"delay":5233.0} +{"session_id":"sess-32daf5d2656d","input_length":939,"output_length":165,"hash_ids":[3196055,3196056],"delay":81.5} +{"session_id":"sess-32daf5d2656d","input_length":934,"output_length":433,"hash_ids":[3196057,3196058],"delay":236.9} +{"session_id":"sess-32daf5d2656d","input_length":107,"output_length":334,"hash_ids":[3196059],"delay":386.2} +{"session_id":"sess-32daf5d2656d","input_length":491,"output_length":106,"hash_ids":[3196060],"delay":1138.8} +{"session_id":"sess-32daf5d2656d","input_length":1441,"output_length":98,"hash_ids":[3196061,3196062,3196063],"delay":545.1} +{"session_id":"sess-32daf5d2656d","input_length":934,"output_length":157,"hash_ids":[3196064,3196065],"delay":17604.9} +{"session_id":"sess-32daf5d2656d","input_length":1007,"output_length":82,"hash_ids":[3196066,3196067],"delay":1068.8} +{"session_id":"sess-32daf5d2656d","input_length":869,"output_length":38,"hash_ids":[3196068,3196069],"delay":219.7} +{"session_id":"sess-32daf5d2656d","input_length":1953,"output_length":155,"hash_ids":[3196070,3196071,3196072,3196073],"delay":26309.3} +{"session_id":"sess-32daf5d2656d","input_length":1523,"output_length":977,"hash_ids":[3196074,3196075,3196076],"delay":1353.7} +{"session_id":"sess-32daf5d2656d","input_length":540,"output_length":230,"hash_ids":[3196077,3196078],"delay":2135.2} +{"session_id":"sess-32daf5d2656d","input_length":416,"output_length":207,"hash_ids":[3196079],"delay":624.5} +{"session_id":"sess-32daf5d2656d","input_length":2109,"output_length":63,"hash_ids":[3196080,3196081,3196082,3196083,3196084],"delay":910.3} +{"session_id":"sess-32daf5d2656d","input_length":1752,"output_length":89,"hash_ids":[3196085,3196086,3196087,3196088],"delay":566.6} +{"session_id":"sess-32daf5d2656d","input_length":2973,"output_length":114,"hash_ids":[3196089,3196090,3196091,3196092,3196093,3196094],"delay":815.8} +{"session_id":"sess-32daf5d2656d","input_length":371,"output_length":157,"hash_ids":[3196095],"delay":9621.7} +{"session_id":"sess-32daf5d2656d","input_length":1437,"output_length":871,"hash_ids":[3196096,3196097,3196098],"delay":8572.4} +{"session_id":"sess-32daf5d2656d","input_length":299,"output_length":97,"hash_ids":[3196099],"delay":36.1} +{"session_id":"sess-ceb124b4ef6b","input_length":30974,"output_length":272,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,3200032,3200033,3200034,3200035,3200036,3200037,3200038,3200039,3200040],"timestamp":0.0,"group_id":30} +{"session_id":"sess-ceb124b4ef6b","input_length":190,"output_length":194,"hash_ids":[3200041],"delay":2537.0} +{"session_id":"sess-ceb124b4ef6b","input_length":507,"output_length":78,"hash_ids":[3200042],"delay":1012.7} +{"session_id":"sess-ceb124b4ef6b","input_length":686,"output_length":221,"hash_ids":[3200043,3200044],"delay":3019.6} +{"session_id":"sess-ceb124b4ef6b","input_length":606,"output_length":313,"hash_ids":[3200045,3200046],"delay":5454.3} +{"session_id":"sess-ceb124b4ef6b","input_length":1955,"output_length":214,"hash_ids":[3200047,3200048,3200049,3200050],"delay":1998.3} +{"session_id":"sess-ceb124b4ef6b","input_length":599,"output_length":333,"hash_ids":[3200051,3200052],"delay":774.7} +{"session_id":"sess-ceb124b4ef6b","input_length":1170,"output_length":187,"hash_ids":[3200053,3200054,3200055],"delay":593.8} +{"session_id":"sess-ceb124b4ef6b","input_length":583,"output_length":141,"hash_ids":[3200056,3200057],"delay":3572.3} +{"session_id":"sess-ceb124b4ef6b","input_length":635,"output_length":46,"hash_ids":[3200058,3200059],"delay":3198.0} +{"session_id":"sess-ceb124b4ef6b","input_length":599,"output_length":224,"hash_ids":[3200060,3200061],"delay":716.3} +{"session_id":"sess-ceb124b4ef6b","input_length":934,"output_length":72,"hash_ids":[3200062,3200063],"delay":3815.3} +{"session_id":"sess-ceb124b4ef6b","input_length":2323,"output_length":813,"hash_ids":[3200064,3200065,3200066,3200067,3200068],"delay":3654.2} +{"session_id":"sess-ceb124b4ef6b","input_length":140,"output_length":402,"hash_ids":[3200069],"delay":707.5} +{"session_id":"sess-ceb124b4ef6b","input_length":295,"output_length":95,"hash_ids":[3200070],"delay":16569.4} +{"session_id":"sess-ceb124b4ef6b","input_length":1868,"output_length":288,"hash_ids":[3200071,3200072,3200073,3200074],"delay":35023.1} +{"session_id":"sess-ceb124b4ef6b","input_length":900,"output_length":116,"hash_ids":[3200075,3200076],"delay":19275.7} +{"session_id":"sess-ceb124b4ef6b","input_length":1380,"output_length":95,"hash_ids":[3200077,3200078,3200079],"delay":4332.0} +{"session_id":"sess-ceb124b4ef6b","input_length":451,"output_length":50,"hash_ids":[3200080],"delay":425.2} +{"session_id":"sess-ceb124b4ef6b","input_length":644,"output_length":148,"hash_ids":[3200081,3200082],"delay":288.0} +{"session_id":"sess-068612e15211","input_length":30386,"output_length":145,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3204032,3204033,3204034,3204035,3204036,3204037,3204038,3204039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-068612e15211","input_length":220,"output_length":203,"hash_ids":[3204040],"delay":42507.5} +{"session_id":"sess-068612e15211","input_length":575,"output_length":489,"hash_ids":[3204041,3204042],"delay":628.7} +{"session_id":"sess-068612e15211","input_length":2705,"output_length":243,"hash_ids":[3204043,3204044,3204045,3204046,3204047,3204048],"delay":7065.7} +{"session_id":"sess-08e1f1f2369c","input_length":28524,"output_length":79,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,3208032,3208033,3208034,3208035],"timestamp":0.0,"group_id":14} +{"session_id":"sess-08e1f1f2369c","input_length":449,"output_length":519,"hash_ids":[3208036],"delay":889.5} +{"session_id":"sess-08e1f1f2369c","input_length":343,"output_length":221,"hash_ids":[3208037],"delay":5251.0} +{"session_id":"sess-08e1f1f2369c","input_length":267,"output_length":39,"hash_ids":[3208038],"delay":860.5} +{"session_id":"sess-08e1f1f2369c","input_length":377,"output_length":64,"hash_ids":[3208039],"delay":27640.0} +{"session_id":"sess-08e1f1f2369c","input_length":1422,"output_length":349,"hash_ids":[3208040,3208041,3208042],"delay":964.6} +{"session_id":"sess-08e1f1f2369c","input_length":527,"output_length":268,"hash_ids":[3208043,3208044],"delay":29261.2} +{"session_id":"sess-08e1f1f2369c","input_length":749,"output_length":561,"hash_ids":[3208045,3208046],"delay":1043.0} +{"session_id":"sess-08e1f1f2369c","input_length":399,"output_length":95,"hash_ids":[3208047],"delay":665.9} +{"session_id":"sess-08e1f1f2369c","input_length":636,"output_length":139,"hash_ids":[3208048,3208049],"delay":5403.1} +{"session_id":"sess-08e1f1f2369c","input_length":1354,"output_length":43,"hash_ids":[3208050,3208051,3208052],"delay":612.0} +{"session_id":"sess-08e1f1f2369c","input_length":697,"output_length":313,"hash_ids":[3208053,3208054],"delay":20261.3} +{"session_id":"sess-08e1f1f2369c","input_length":343,"output_length":497,"hash_ids":[3208055],"delay":627.3} +{"session_id":"sess-08e1f1f2369c","input_length":1613,"output_length":56,"hash_ids":[3208056,3208057,3208058,3208059],"delay":13169.0} +{"session_id":"sess-08e1f1f2369c","input_length":1240,"output_length":71,"hash_ids":[3208060,3208061,3208062],"delay":263.1} +{"session_id":"sess-87b8b44131eb","input_length":27928,"output_length":766,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3212032,3212033,3212034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-87b8b44131eb","input_length":205,"output_length":32,"hash_ids":[3212035],"delay":3235.2} +{"session_id":"sess-87b8b44131eb","input_length":2896,"output_length":342,"hash_ids":[3212036,3212037,3212038,3212039,3212040,3212041],"delay":946.8} +{"session_id":"sess-87b8b44131eb","input_length":1508,"output_length":756,"hash_ids":[3212042,3212043,3212044],"delay":23367.1} +{"session_id":"sess-87b8b44131eb","input_length":1821,"output_length":126,"hash_ids":[3212045,3212046,3212047,3212048],"delay":3903.0} +{"session_id":"sess-87b8b44131eb","input_length":1062,"output_length":178,"hash_ids":[3212049,3212050,3212051],"delay":15478.6} +{"session_id":"sess-87b8b44131eb","input_length":376,"output_length":196,"hash_ids":[3212052],"delay":4344.3} +{"session_id":"sess-87b8b44131eb","input_length":223,"output_length":263,"hash_ids":[3212053],"delay":373.4} +{"session_id":"sess-87b8b44131eb","input_length":573,"output_length":212,"hash_ids":[3212054,3212055],"delay":1936.5} +{"session_id":"sess-87b8b44131eb","input_length":1806,"output_length":85,"hash_ids":[3212056,3212057,3212058,3212059],"delay":12434.9} +{"session_id":"sess-87b8b44131eb","input_length":2914,"output_length":92,"hash_ids":[3212060,3212061,3212062,3212063,3212064,3212065],"delay":17386.6} +{"session_id":"sess-87b8b44131eb","input_length":979,"output_length":202,"hash_ids":[3212066,3212067],"delay":160.1} +{"session_id":"sess-87b8b44131eb","input_length":442,"output_length":48,"hash_ids":[3212068],"delay":943.6} +{"session_id":"sess-87b8b44131eb","input_length":2151,"output_length":124,"hash_ids":[3212069,3212070,3212071,3212072,3212073],"delay":581.9} +{"session_id":"sess-87b8b44131eb","input_length":771,"output_length":217,"hash_ids":[3212074,3212075],"delay":1171.8} +{"session_id":"sess-87b8b44131eb","input_length":316,"output_length":495,"hash_ids":[3212076],"delay":6538.2} +{"session_id":"sess-87b8b44131eb","input_length":639,"output_length":237,"hash_ids":[3212077,3212078],"delay":430.5} +{"session_id":"sess-87b8b44131eb","input_length":2695,"output_length":88,"hash_ids":[3212079,3212080,3212081,3212082,3212083,3212084],"delay":219.9} +{"session_id":"sess-87b8b44131eb","input_length":473,"output_length":332,"hash_ids":[3212085],"delay":1829.4} +{"session_id":"sess-87b8b44131eb","input_length":1453,"output_length":30,"hash_ids":[3212086,3212087,3212088],"delay":10358.4} +{"session_id":"sess-87b8b44131eb","input_length":2367,"output_length":119,"hash_ids":[3212089,3212090,3212091,3212092,3212093],"delay":2378.6} +{"session_id":"sess-87b8b44131eb","input_length":510,"output_length":163,"hash_ids":[3212094],"delay":131.9} +{"session_id":"sess-87b8b44131eb","input_length":1659,"output_length":290,"hash_ids":[3212095,3212096,3212097,3212098],"delay":90.6} +{"session_id":"sess-87b8b44131eb","input_length":1482,"output_length":113,"hash_ids":[3212099,3212100,3212101],"delay":233.2} +{"session_id":"sess-87b8b44131eb","input_length":491,"output_length":351,"hash_ids":[3212102],"delay":4008.0} +{"session_id":"sess-87b8b44131eb","input_length":588,"output_length":375,"hash_ids":[3212103,3212104],"delay":776.3} +{"session_id":"sess-87b8b44131eb","input_length":617,"output_length":59,"hash_ids":[3212105,3212106],"delay":1075.9} +{"session_id":"sess-3108e47fe6a7","input_length":28379,"output_length":400,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3216032,3216033,3216034,3216035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-3108e47fe6a7","input_length":1086,"output_length":497,"hash_ids":[3216036,3216037,3216038],"delay":19737.5} +{"session_id":"sess-3108e47fe6a7","input_length":234,"output_length":467,"hash_ids":[3216039],"delay":1539.3} +{"session_id":"sess-3108e47fe6a7","input_length":1048,"output_length":412,"hash_ids":[3216040,3216041,3216042],"delay":29363.8} +{"session_id":"sess-3108e47fe6a7","input_length":958,"output_length":53,"hash_ids":[3216043,3216044],"delay":2137.1} +{"session_id":"sess-3108e47fe6a7","input_length":2888,"output_length":218,"hash_ids":[3216045,3216046,3216047,3216048,3216049,3216050],"delay":7934.5} +{"session_id":"sess-3108e47fe6a7","input_length":756,"output_length":274,"hash_ids":[3216051,3216052],"delay":3964.3} +{"session_id":"sess-3108e47fe6a7","input_length":890,"output_length":445,"hash_ids":[3216053,3216054],"delay":535.2} +{"session_id":"sess-3108e47fe6a7","input_length":787,"output_length":482,"hash_ids":[3216055,3216056],"delay":9370.3} +{"session_id":"sess-3108e47fe6a7","input_length":556,"output_length":523,"hash_ids":[3216057,3216058],"delay":616.7} +{"session_id":"sess-3108e47fe6a7","input_length":742,"output_length":217,"hash_ids":[3216059,3216060],"delay":22651.2} +{"session_id":"sess-3108e47fe6a7","input_length":596,"output_length":37,"hash_ids":[3216061,3216062],"delay":668.9} +{"session_id":"sess-3108e47fe6a7","input_length":261,"output_length":464,"hash_ids":[3216063],"delay":1064.1} +{"session_id":"sess-3108e47fe6a7","input_length":937,"output_length":243,"hash_ids":[3216064,3216065],"delay":9307.6} +{"session_id":"sess-3108e47fe6a7","input_length":1904,"output_length":93,"hash_ids":[3216066,3216067,3216068,3216069],"delay":541.9} +{"session_id":"sess-3108e47fe6a7","input_length":1696,"output_length":43,"hash_ids":[3216070,3216071,3216072,3216073],"delay":878.0} +{"session_id":"sess-3108e47fe6a7","input_length":1576,"output_length":1055,"hash_ids":[3216074,3216075,3216076,3216077],"delay":1196.8} +{"session_id":"sess-3108e47fe6a7","input_length":1326,"output_length":805,"hash_ids":[3216078,3216079,3216080],"delay":329.1} +{"session_id":"sess-3108e47fe6a7","input_length":95,"output_length":484,"hash_ids":[3216081],"delay":239.9} +{"session_id":"sess-3108e47fe6a7","input_length":1170,"output_length":119,"hash_ids":[3216082,3216083,3216084],"delay":922.5} +{"session_id":"sess-3108e47fe6a7","input_length":425,"output_length":249,"hash_ids":[3216085],"delay":365.0} +{"session_id":"sess-3108e47fe6a7","input_length":235,"output_length":325,"hash_ids":[3216086],"delay":1016.7} +{"session_id":"sess-3108e47fe6a7","input_length":335,"output_length":34,"hash_ids":[3216087],"delay":177.1} +{"session_id":"sess-3108e47fe6a7","input_length":1087,"output_length":271,"hash_ids":[3216088,3216089,3216090],"delay":1593.7} +{"session_id":"sess-3108e47fe6a7","input_length":1111,"output_length":218,"hash_ids":[3216091,3216092,3216093],"delay":196.2} +{"session_id":"sess-3108e47fe6a7","input_length":1638,"output_length":258,"hash_ids":[3216094,3216095,3216096,3216097],"delay":371.0} +{"session_id":"sess-3108e47fe6a7","input_length":1326,"output_length":218,"hash_ids":[3216098,3216099,3216100],"delay":396.2} +{"session_id":"sess-16b7441b83ba","input_length":28616,"output_length":83,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3220032,3220033,3220034,3220035],"timestamp":0.0,"group_id":17} +{"session_id":"sess-16b7441b83ba","input_length":1943,"output_length":482,"hash_ids":[3220036,3220037,3220038,3220039],"delay":1815.5} +{"session_id":"sess-16b7441b83ba","input_length":222,"output_length":107,"hash_ids":[3220040],"delay":2148.4} +{"session_id":"sess-16b7441b83ba","input_length":657,"output_length":223,"hash_ids":[3220041,3220042],"delay":512.7} +{"session_id":"sess-16b7441b83ba","input_length":613,"output_length":179,"hash_ids":[3220043,3220044],"delay":5914.5} +{"session_id":"sess-16b7441b83ba","input_length":669,"output_length":800,"hash_ids":[3220045,3220046],"delay":2237.5} +{"session_id":"sess-16b7441b83ba","input_length":635,"output_length":282,"hash_ids":[3220047,3220048],"delay":6733.6} +{"session_id":"sess-16b7441b83ba","input_length":421,"output_length":59,"hash_ids":[3220049],"delay":1681.0} +{"session_id":"sess-16b7441b83ba","input_length":1393,"output_length":89,"hash_ids":[3220050,3220051,3220052],"delay":1093.7} +{"session_id":"sess-16b7441b83ba","input_length":570,"output_length":95,"hash_ids":[3220053,3220054],"delay":6220.2} +{"session_id":"sess-16b7441b83ba","input_length":1724,"output_length":322,"hash_ids":[3220055,3220056,3220057,3220058],"delay":344.8} +{"session_id":"sess-16b7441b83ba","input_length":1453,"output_length":605,"hash_ids":[3220059,3220060,3220061],"delay":603.1} +{"session_id":"sess-16b7441b83ba","input_length":542,"output_length":659,"hash_ids":[3220062,3220063],"delay":2161.2} +{"session_id":"sess-16b7441b83ba","input_length":1825,"output_length":199,"hash_ids":[3220064,3220065,3220066,3220067],"delay":454.7} +{"session_id":"sess-16b7441b83ba","input_length":650,"output_length":349,"hash_ids":[3220068,3220069],"delay":603.5} +{"session_id":"sess-16b7441b83ba","input_length":1193,"output_length":45,"hash_ids":[3220070,3220071,3220072],"delay":1342.4} +{"session_id":"sess-16b7441b83ba","input_length":585,"output_length":115,"hash_ids":[3220073,3220074],"delay":492.3} +{"session_id":"sess-16b7441b83ba","input_length":1336,"output_length":390,"hash_ids":[3220075,3220076,3220077],"delay":772.8} +{"session_id":"sess-16b7441b83ba","input_length":1215,"output_length":114,"hash_ids":[3220078,3220079,3220080],"delay":5153.8} +{"session_id":"sess-16b7441b83ba","input_length":1017,"output_length":98,"hash_ids":[3220081,3220082],"delay":13412.3} +{"session_id":"sess-16b7441b83ba","input_length":1570,"output_length":257,"hash_ids":[3220083,3220084,3220085,3220086],"delay":15532.1} +{"session_id":"sess-16b7441b83ba","input_length":2090,"output_length":192,"hash_ids":[3220087,3220088,3220089,3220090,3220091],"delay":11766.8} +{"session_id":"sess-16b7441b83ba","input_length":1488,"output_length":324,"hash_ids":[3220092,3220093,3220094],"delay":2121.5} +{"session_id":"sess-16b7441b83ba","input_length":1222,"output_length":802,"hash_ids":[3220095,3220096,3220097],"delay":234.1} +{"session_id":"sess-16b7441b83ba","input_length":1023,"output_length":413,"hash_ids":[3220098,3220099],"delay":671.2} +{"session_id":"sess-16b7441b83ba","input_length":223,"output_length":687,"hash_ids":[3220100],"delay":3994.4} +{"session_id":"sess-16b7441b83ba","input_length":691,"output_length":164,"hash_ids":[3220101,3220102],"delay":19548.7} +{"session_id":"sess-16b7441b83ba","input_length":209,"output_length":299,"hash_ids":[3220103],"delay":3009.5} +{"session_id":"sess-16b7441b83ba","input_length":463,"output_length":88,"hash_ids":[3220104],"delay":269.1} +{"session_id":"sess-16b7441b83ba","input_length":405,"output_length":171,"hash_ids":[3220105],"delay":83.7} +{"session_id":"sess-6fef3397d598","input_length":26565,"output_length":77,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6fef3397d598","input_length":1140,"output_length":157,"hash_ids":[3220106,3220107,3220108],"delay":8683.2} +{"session_id":"sess-6fef3397d598","input_length":274,"output_length":1097,"hash_ids":[3220109],"delay":353.1} +{"session_id":"sess-6fef3397d598","input_length":1662,"output_length":766,"hash_ids":[3220110,3220111,3220112,3220113],"delay":620.9} +{"session_id":"sess-6fef3397d598","input_length":702,"output_length":53,"hash_ids":[3220114,3220115],"delay":14767.2} +{"session_id":"sess-6fef3397d598","input_length":159,"output_length":186,"hash_ids":[3220116],"delay":2171.0} +{"session_id":"sess-6fef3397d598","input_length":332,"output_length":245,"hash_ids":[3220117],"delay":5730.8} +{"session_id":"sess-6fef3397d598","input_length":2089,"output_length":431,"hash_ids":[3220118,3220119,3220120,3220121,3220122],"delay":541.0} +{"session_id":"sess-6fef3397d598","input_length":905,"output_length":54,"hash_ids":[3220123,3220124],"delay":526.8} +{"session_id":"sess-6fef3397d598","input_length":333,"output_length":308,"hash_ids":[3220125],"delay":3476.7} +{"session_id":"sess-6fef3397d598","input_length":202,"output_length":264,"hash_ids":[3220126],"delay":1257.9} +{"session_id":"sess-6fef3397d598","input_length":1511,"output_length":180,"hash_ids":[3220127,3220128,3220129],"delay":483.3} +{"session_id":"sess-6fef3397d598","input_length":1326,"output_length":121,"hash_ids":[3220130,3220131,3220132],"delay":11888.6} +{"session_id":"sess-6fef3397d598","input_length":2207,"output_length":540,"hash_ids":[3220133,3220134,3220135,3220136,3220137],"delay":454.8} +{"session_id":"sess-6fef3397d598","input_length":385,"output_length":326,"hash_ids":[3220138],"delay":2128.9} +{"session_id":"sess-6fef3397d598","input_length":1002,"output_length":112,"hash_ids":[3220139,3220140],"delay":789.1} +{"session_id":"sess-6fef3397d598","input_length":138,"output_length":380,"hash_ids":[3220141],"delay":28502.6} +{"session_id":"sess-6fef3397d598","input_length":558,"output_length":30,"hash_ids":[3220142,3220143],"delay":1318.9} +{"session_id":"sess-6fef3397d598","input_length":370,"output_length":161,"hash_ids":[3220144],"delay":4365.4} +{"session_id":"sess-6fef3397d598","input_length":397,"output_length":542,"hash_ids":[3220145],"delay":4259.3} +{"session_id":"sess-6fef3397d598","input_length":419,"output_length":169,"hash_ids":[3220146],"delay":1049.0} +{"session_id":"sess-6fef3397d598","input_length":1179,"output_length":757,"hash_ids":[3220147,3220148,3220149],"delay":5302.9} +{"session_id":"sess-335e74adc587","input_length":31650,"output_length":113,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,3228032,3228033,3228034,3228035,3228036,3228037,3228038,3228039,3228040,3228041],"timestamp":0.0,"group_id":46} +{"session_id":"sess-335e74adc587","input_length":802,"output_length":738,"hash_ids":[3228042,3228043],"delay":20960.3} +{"session_id":"sess-dd2e15cc3dcd","input_length":26991,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,3232032],"timestamp":0.0,"group_id":34} +{"session_id":"sess-dd2e15cc3dcd","input_length":462,"output_length":142,"hash_ids":[3232033],"delay":476.0} +{"session_id":"sess-dd2e15cc3dcd","input_length":1058,"output_length":267,"hash_ids":[3232034,3232035,3232036],"delay":4666.5} +{"session_id":"sess-dd2e15cc3dcd","input_length":810,"output_length":209,"hash_ids":[3232037,3232038],"delay":3691.0} +{"session_id":"sess-dd2e15cc3dcd","input_length":687,"output_length":142,"hash_ids":[3232039,3232040],"delay":928.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":522,"output_length":402,"hash_ids":[3232041,3232042],"delay":37832.8} +{"session_id":"sess-dd2e15cc3dcd","input_length":1232,"output_length":192,"hash_ids":[3232043,3232044,3232045],"delay":11073.4} +{"session_id":"sess-dd2e15cc3dcd","input_length":2599,"output_length":712,"hash_ids":[3232046,3232047,3232048,3232049,3232050,3232051],"delay":6868.8} +{"session_id":"sess-dd2e15cc3dcd","input_length":1050,"output_length":139,"hash_ids":[3232052,3232053,3232054],"delay":153.2} +{"session_id":"sess-dd2e15cc3dcd","input_length":575,"output_length":62,"hash_ids":[3232055,3232056],"delay":1844.6} +{"session_id":"sess-dd2e15cc3dcd","input_length":738,"output_length":437,"hash_ids":[3232057,3232058],"delay":396.4} +{"session_id":"sess-dd2e15cc3dcd","input_length":2150,"output_length":380,"hash_ids":[3232059,3232060,3232061,3232062,3232063],"delay":3024.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":1260,"output_length":468,"hash_ids":[3232064,3232065,3232066],"delay":463.3} +{"session_id":"sess-dd2e15cc3dcd","input_length":412,"output_length":99,"hash_ids":[3232067],"delay":2162.5} +{"session_id":"sess-dd2e15cc3dcd","input_length":709,"output_length":198,"hash_ids":[3232068,3232069],"delay":8591.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":2087,"output_length":257,"hash_ids":[3232070,3232071,3232072,3232073,3232074],"delay":590.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":1443,"output_length":191,"hash_ids":[3232075,3232076,3232077],"delay":86.4} +{"session_id":"sess-dd2e15cc3dcd","input_length":2023,"output_length":83,"hash_ids":[3232078,3232079,3232080,3232081],"delay":715.4} +{"session_id":"sess-dd2e15cc3dcd","input_length":2634,"output_length":45,"hash_ids":[3232082,3232083,3232084,3232085,3232086,3232087],"delay":869.0} +{"session_id":"sess-dd2e15cc3dcd","input_length":551,"output_length":1348,"hash_ids":[3232088,3232089],"delay":1238.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":677,"output_length":103,"hash_ids":[3232090,3232091],"delay":11113.9} +{"session_id":"sess-dd2e15cc3dcd","input_length":1780,"output_length":125,"hash_ids":[3232092,3232093,3232094,3232095],"delay":342.2} +{"session_id":"sess-dd2e15cc3dcd","input_length":556,"output_length":477,"hash_ids":[3232096,3232097],"delay":309.9} +{"session_id":"sess-dd2e15cc3dcd","input_length":210,"output_length":255,"hash_ids":[3232098],"delay":301.1} +{"session_id":"sess-dd2e15cc3dcd","input_length":429,"output_length":254,"hash_ids":[3232099],"delay":322.6} +{"session_id":"sess-dd2e15cc3dcd","input_length":321,"output_length":368,"hash_ids":[3232100],"delay":449.4} +{"session_id":"sess-dd2e15cc3dcd","input_length":696,"output_length":331,"hash_ids":[3232101,3232102],"delay":793.2} +{"session_id":"sess-dd2e15cc3dcd","input_length":1396,"output_length":228,"hash_ids":[3232103,3232104,3232105],"delay":4248.5} +{"session_id":"sess-c49d4f589760","input_length":26731,"output_length":331,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3236032],"timestamp":0.0,"group_id":15} +{"session_id":"sess-c49d4f589760","input_length":510,"output_length":85,"hash_ids":[3236033],"delay":1750.8} +{"session_id":"sess-c49d4f589760","input_length":585,"output_length":618,"hash_ids":[3236034,3236035],"delay":757.7} +{"session_id":"sess-c49d4f589760","input_length":2147,"output_length":179,"hash_ids":[3236036,3236037,3236038,3236039,3236040],"delay":41885.0} +{"session_id":"sess-c49d4f589760","input_length":832,"output_length":750,"hash_ids":[3236041,3236042],"delay":909.6} +{"session_id":"sess-c49d4f589760","input_length":425,"output_length":197,"hash_ids":[3236043],"delay":897.7} +{"session_id":"sess-c49d4f589760","input_length":2080,"output_length":152,"hash_ids":[3236044,3236045,3236046,3236047,3236048],"delay":785.6} +{"session_id":"sess-c49d4f589760","input_length":900,"output_length":151,"hash_ids":[3236049,3236050],"delay":5647.0} +{"session_id":"sess-c49d4f589760","input_length":1650,"output_length":325,"hash_ids":[3236051,3236052,3236053,3236054],"delay":635.6} +{"session_id":"sess-c49d4f589760","input_length":1425,"output_length":61,"hash_ids":[3236055,3236056,3236057],"delay":183.7} +{"session_id":"sess-c49d4f589760","input_length":527,"output_length":552,"hash_ids":[3236058,3236059],"delay":1801.3} +{"session_id":"sess-c49d4f589760","input_length":995,"output_length":272,"hash_ids":[3236060,3236061],"delay":13802.3} +{"session_id":"sess-c49d4f589760","input_length":2680,"output_length":132,"hash_ids":[3236062,3236063,3236064,3236065,3236066,3236067],"delay":474.0} +{"session_id":"sess-c49d4f589760","input_length":549,"output_length":308,"hash_ids":[3236068,3236069],"delay":262.0} +{"session_id":"sess-c49d4f589760","input_length":2418,"output_length":391,"hash_ids":[3236070,3236071,3236072,3236073,3236074],"delay":3613.7} +{"session_id":"sess-c49d4f589760","input_length":949,"output_length":202,"hash_ids":[3236075,3236076],"delay":4012.2} +{"session_id":"sess-c49d4f589760","input_length":804,"output_length":386,"hash_ids":[3236077,3236078],"delay":514.7} +{"session_id":"sess-c49d4f589760","input_length":671,"output_length":183,"hash_ids":[3236079,3236080],"delay":776.4} +{"session_id":"sess-c49d4f589760","input_length":550,"output_length":94,"hash_ids":[3236081,3236082],"delay":935.5} +{"session_id":"sess-c49d4f589760","input_length":648,"output_length":48,"hash_ids":[3236083,3236084],"delay":31763.0} +{"session_id":"sess-c49d4f589760","input_length":1492,"output_length":38,"hash_ids":[3236085,3236086,3236087],"delay":4835.9} +{"session_id":"sess-c49d4f589760","input_length":227,"output_length":132,"hash_ids":[3236088],"delay":420.6} +{"session_id":"sess-c49d4f589760","input_length":1353,"output_length":716,"hash_ids":[3236089,3236090,3236091],"delay":680.6} +{"session_id":"sess-c49d4f589760","input_length":1260,"output_length":610,"hash_ids":[3236092,3236093,3236094],"delay":111.7} +{"session_id":"sess-c49d4f589760","input_length":1493,"output_length":81,"hash_ids":[3236095,3236096,3236097],"delay":331.5} +{"session_id":"sess-c49d4f589760","input_length":2385,"output_length":183,"hash_ids":[3236098,3236099,3236100,3236101,3236102],"delay":867.6} +{"session_id":"sess-c49d4f589760","input_length":2023,"output_length":220,"hash_ids":[3236103,3236104,3236105,3236106],"delay":114.7} +{"session_id":"sess-f206dc593e59","input_length":26757,"output_length":293,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3240032],"timestamp":0.0,"group_id":6} +{"session_id":"sess-f206dc593e59","input_length":664,"output_length":132,"hash_ids":[3240033,3240034],"delay":679.0} +{"session_id":"sess-f206dc593e59","input_length":426,"output_length":177,"hash_ids":[3240035],"delay":1320.2} +{"session_id":"sess-f206dc593e59","input_length":1527,"output_length":30,"hash_ids":[3240036,3240037,3240038],"delay":36375.9} +{"session_id":"sess-f206dc593e59","input_length":2605,"output_length":516,"hash_ids":[3240039,3240040,3240041,3240042,3240043,3240044],"delay":856.3} +{"session_id":"sess-f206dc593e59","input_length":154,"output_length":50,"hash_ids":[3240045],"delay":1258.7} +{"session_id":"sess-f206dc593e59","input_length":589,"output_length":224,"hash_ids":[3240046,3240047],"delay":386.2} +{"session_id":"sess-f206dc593e59","input_length":843,"output_length":31,"hash_ids":[3240048,3240049],"delay":578.0} +{"session_id":"sess-f206dc593e59","input_length":215,"output_length":158,"hash_ids":[3240050],"delay":616.2} +{"session_id":"sess-f206dc593e59","input_length":1212,"output_length":201,"hash_ids":[3240051,3240052,3240053],"delay":2515.4} +{"session_id":"sess-f206dc593e59","input_length":707,"output_length":292,"hash_ids":[3240054,3240055],"delay":1187.1} +{"session_id":"sess-f206dc593e59","input_length":1502,"output_length":58,"hash_ids":[3240056,3240057,3240058],"delay":21896.7} +{"session_id":"sess-f206dc593e59","input_length":252,"output_length":90,"hash_ids":[3240059],"delay":13380.7} +{"session_id":"sess-f206dc593e59","input_length":2644,"output_length":153,"hash_ids":[3240060,3240061,3240062,3240063,3240064,3240065],"delay":1643.6} +{"session_id":"sess-f206dc593e59","input_length":472,"output_length":270,"hash_ids":[3240066],"delay":11220.9} +{"session_id":"sess-f206dc593e59","input_length":2008,"output_length":822,"hash_ids":[3240067,3240068,3240069,3240070],"delay":459.7} +{"session_id":"sess-f206dc593e59","input_length":1982,"output_length":313,"hash_ids":[3240071,3240072,3240073,3240074],"delay":36690.5} +{"session_id":"sess-f206dc593e59","input_length":1318,"output_length":65,"hash_ids":[3240075,3240076,3240077],"delay":348.7} +{"session_id":"sess-f206dc593e59","input_length":1381,"output_length":309,"hash_ids":[3240078,3240079,3240080],"delay":476.7} +{"session_id":"sess-f206dc593e59","input_length":282,"output_length":218,"hash_ids":[3240081],"delay":1227.6} +{"session_id":"sess-f206dc593e59","input_length":1024,"output_length":241,"hash_ids":[3240082,3240083],"delay":520.6} +{"session_id":"sess-f206dc593e59","input_length":1521,"output_length":89,"hash_ids":[3240084,3240085,3240086],"delay":794.8} +{"session_id":"sess-f206dc593e59","input_length":2851,"output_length":136,"hash_ids":[3240087,3240088,3240089,3240090,3240091,3240092],"delay":14876.1} +{"session_id":"sess-f206dc593e59","input_length":194,"output_length":84,"hash_ids":[3240093],"delay":633.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":27422,"output_length":143,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3244032,3244033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4ad9bdc1ed41","input_length":464,"output_length":418,"hash_ids":[3244034],"delay":5031.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":66,"output_length":30,"hash_ids":[3244035],"delay":1521.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":759,"output_length":58,"hash_ids":[3244036,3244037],"delay":5975.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":2181,"output_length":284,"hash_ids":[3244038,3244039,3244040,3244041,3244042],"delay":489.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":1566,"output_length":83,"hash_ids":[3244043,3244044,3244045,3244046],"delay":20724.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":328,"output_length":30,"hash_ids":[3244047],"delay":1359.3} +{"session_id":"sess-4ad9bdc1ed41","input_length":443,"output_length":119,"hash_ids":[3244048],"delay":40799.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":413,"output_length":40,"hash_ids":[3244049],"delay":327.8} +{"session_id":"sess-4ad9bdc1ed41","input_length":496,"output_length":815,"hash_ids":[3244050],"delay":2090.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":2393,"output_length":838,"hash_ids":[3244051,3244052,3244053,3244054,3244055],"delay":20816.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":1717,"output_length":584,"hash_ids":[3244056,3244057,3244058,3244059],"delay":8205.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":1389,"output_length":59,"hash_ids":[3244060,3244061,3244062],"delay":1860.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":687,"output_length":190,"hash_ids":[3244063,3244064],"delay":318.7} +{"session_id":"sess-4ad9bdc1ed41","input_length":323,"output_length":121,"hash_ids":[3244065],"delay":476.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":1814,"output_length":187,"hash_ids":[3244066,3244067,3244068,3244069],"delay":1639.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":668,"output_length":560,"hash_ids":[3244070,3244071],"delay":21931.8} +{"session_id":"sess-4ad9bdc1ed41","input_length":382,"output_length":95,"hash_ids":[3244072],"delay":261.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":140,"output_length":63,"hash_ids":[3244073],"delay":4564.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":907,"output_length":161,"hash_ids":[3244074,3244075],"delay":775.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":448,"output_length":421,"hash_ids":[3244076],"delay":411.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":491,"output_length":172,"hash_ids":[3244077],"delay":606.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":1517,"output_length":531,"hash_ids":[3244078,3244079,3244080],"delay":1660.6} +{"session_id":"sess-4ad9bdc1ed41","input_length":1284,"output_length":71,"hash_ids":[3244081,3244082,3244083],"delay":1013.5} +{"session_id":"sess-4ad9bdc1ed41","input_length":2429,"output_length":905,"hash_ids":[3244084,3244085,3244086,3244087,3244088],"delay":1202.1} +{"session_id":"sess-4ad9bdc1ed41","input_length":2046,"output_length":143,"hash_ids":[3244089,3244090,3244091,3244092],"delay":4658.4} +{"session_id":"sess-4ad9bdc1ed41","input_length":1244,"output_length":30,"hash_ids":[3244093,3244094,3244095],"delay":295.1} +{"session_id":"sess-4ad9bdc1ed41","input_length":191,"output_length":187,"hash_ids":[3244096],"delay":185.9} +{"session_id":"sess-4ad9bdc1ed41","input_length":1319,"output_length":36,"hash_ids":[3244097,3244098,3244099],"delay":268.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":444,"output_length":334,"hash_ids":[3244100],"delay":1187.7} +{"session_id":"sess-4ad9bdc1ed41","input_length":511,"output_length":381,"hash_ids":[3244101],"delay":8500.0} +{"session_id":"sess-4ad9bdc1ed41","input_length":326,"output_length":444,"hash_ids":[3244102],"delay":422.9} +{"session_id":"sess-2dbfd926055c","input_length":27439,"output_length":224,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,3248032,3248033],"timestamp":0.0,"group_id":31} +{"session_id":"sess-2dbfd926055c","input_length":488,"output_length":314,"hash_ids":[3248034],"delay":600.4} +{"session_id":"sess-2dbfd926055c","input_length":1527,"output_length":43,"hash_ids":[3248035,3248036,3248037],"delay":28721.9} +{"session_id":"sess-2dbfd926055c","input_length":477,"output_length":171,"hash_ids":[3248038],"delay":725.1} +{"session_id":"sess-2dbfd926055c","input_length":1877,"output_length":142,"hash_ids":[3248039,3248040,3248041,3248042],"delay":1333.1} +{"session_id":"sess-2dbfd926055c","input_length":1554,"output_length":142,"hash_ids":[3248043,3248044,3248045,3248046],"delay":773.0} +{"session_id":"sess-2dbfd926055c","input_length":1726,"output_length":384,"hash_ids":[3248047,3248048,3248049,3248050],"delay":545.7} +{"session_id":"sess-2dbfd926055c","input_length":970,"output_length":1261,"hash_ids":[3248051,3248052],"delay":1964.8} +{"session_id":"sess-2dbfd926055c","input_length":695,"output_length":150,"hash_ids":[3248053,3248054],"delay":12576.7} +{"session_id":"sess-2dbfd926055c","input_length":96,"output_length":61,"hash_ids":[3248055],"delay":7727.5} +{"session_id":"sess-2dbfd926055c","input_length":571,"output_length":425,"hash_ids":[3248056,3248057],"delay":990.5} +{"session_id":"sess-2dbfd926055c","input_length":1225,"output_length":219,"hash_ids":[3248058,3248059,3248060],"delay":14408.4} +{"session_id":"sess-2dbfd926055c","input_length":1508,"output_length":172,"hash_ids":[3248061,3248062,3248063],"delay":15753.5} +{"session_id":"sess-2dbfd926055c","input_length":487,"output_length":128,"hash_ids":[3248064],"delay":582.7} +{"session_id":"sess-2dbfd926055c","input_length":247,"output_length":40,"hash_ids":[3248065],"delay":989.3} +{"session_id":"sess-2dbfd926055c","input_length":1870,"output_length":143,"hash_ids":[3248066,3248067,3248068,3248069],"delay":236.9} +{"session_id":"sess-b9ca5e4e92dc","input_length":32396,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3252032,3252033,3252034,3252035,3252036,3252037,3252038,3252039,3252040,3252041,3252042,3252043],"timestamp":0.0,"group_id":1} +{"session_id":"sess-b9ca5e4e92dc","input_length":2258,"output_length":152,"hash_ids":[3252044,3252045,3252046,3252047,3252048],"delay":37657.2} +{"session_id":"sess-b9ca5e4e92dc","input_length":854,"output_length":268,"hash_ids":[3252049,3252050],"delay":621.8} +{"session_id":"sess-b9ca5e4e92dc","input_length":618,"output_length":362,"hash_ids":[3252051,3252052],"delay":1953.7} +{"session_id":"sess-b9ca5e4e92dc","input_length":1284,"output_length":211,"hash_ids":[3252053,3252054,3252055],"delay":22146.8} +{"session_id":"sess-b9ca5e4e92dc","input_length":795,"output_length":138,"hash_ids":[3252056,3252057],"delay":15988.1} +{"session_id":"sess-b9ca5e4e92dc","input_length":2378,"output_length":588,"hash_ids":[3252058,3252059,3252060,3252061,3252062],"delay":3095.0} +{"session_id":"sess-b9ca5e4e92dc","input_length":560,"output_length":147,"hash_ids":[3252063,3252064],"delay":4396.2} +{"session_id":"sess-b9ca5e4e92dc","input_length":624,"output_length":421,"hash_ids":[3252065,3252066],"delay":741.6} +{"session_id":"sess-b9ca5e4e92dc","input_length":2833,"output_length":131,"hash_ids":[3252067,3252068,3252069,3252070,3252071,3252072],"delay":213.1} +{"session_id":"sess-b9ca5e4e92dc","input_length":1712,"output_length":135,"hash_ids":[3252073,3252074,3252075,3252076],"delay":10381.4} +{"session_id":"sess-b9ca5e4e92dc","input_length":405,"output_length":229,"hash_ids":[3252077],"delay":416.7} +{"session_id":"sess-b9ca5e4e92dc","input_length":772,"output_length":131,"hash_ids":[3252078,3252079],"delay":21964.0} +{"session_id":"sess-b9ca5e4e92dc","input_length":381,"output_length":78,"hash_ids":[3252080],"delay":752.5} +{"session_id":"sess-b9ca5e4e92dc","input_length":1597,"output_length":97,"hash_ids":[3252081,3252082,3252083,3252084],"delay":1901.8} +{"session_id":"sess-b9ca5e4e92dc","input_length":649,"output_length":155,"hash_ids":[3252085,3252086],"delay":1011.6} +{"session_id":"sess-b9ca5e4e92dc","input_length":1152,"output_length":273,"hash_ids":[3252087,3252088,3252089],"delay":363.5} +{"session_id":"sess-b9ca5e4e92dc","input_length":342,"output_length":337,"hash_ids":[3252090],"delay":484.8} +{"session_id":"sess-b9ca5e4e92dc","input_length":1470,"output_length":632,"hash_ids":[3252091,3252092,3252093],"delay":337.3} +{"session_id":"sess-b9ca5e4e92dc","input_length":296,"output_length":122,"hash_ids":[3252094],"delay":15631.5} +{"session_id":"sess-b9ca5e4e92dc","input_length":2360,"output_length":63,"hash_ids":[3252095,3252096,3252097,3252098,3252099],"delay":639.1} +{"session_id":"sess-b9ca5e4e92dc","input_length":2681,"output_length":271,"hash_ids":[3252100,3252101,3252102,3252103,3252104,3252105],"delay":108.4} +{"session_id":"sess-b9ca5e4e92dc","input_length":291,"output_length":141,"hash_ids":[3252106],"delay":987.4} +{"session_id":"sess-b9ca5e4e92dc","input_length":863,"output_length":157,"hash_ids":[3252107,3252108],"delay":518.6} +{"session_id":"sess-7f69e3b5c993","input_length":28382,"output_length":277,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3256032,3256033,3256034,3256035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-7f69e3b5c993","input_length":355,"output_length":38,"hash_ids":[3256036],"delay":657.2} +{"session_id":"sess-7f69e3b5c993","input_length":224,"output_length":133,"hash_ids":[3256037],"delay":1734.0} +{"session_id":"sess-7f69e3b5c993","input_length":279,"output_length":44,"hash_ids":[3256038],"delay":17189.9} +{"session_id":"sess-7f69e3b5c993","input_length":2534,"output_length":295,"hash_ids":[3256039,3256040,3256041,3256042,3256043],"delay":3507.7} +{"session_id":"sess-7f69e3b5c993","input_length":351,"output_length":152,"hash_ids":[3256044],"delay":1489.1} +{"session_id":"sess-7f69e3b5c993","input_length":1198,"output_length":99,"hash_ids":[3256045,3256046,3256047],"delay":1019.9} +{"session_id":"sess-7f69e3b5c993","input_length":397,"output_length":763,"hash_ids":[3256048],"delay":29648.0} +{"session_id":"sess-7f69e3b5c993","input_length":154,"output_length":1192,"hash_ids":[3256049],"delay":4870.2} +{"session_id":"sess-7f69e3b5c993","input_length":1203,"output_length":143,"hash_ids":[3256050,3256051,3256052],"delay":872.8} +{"session_id":"sess-7f69e3b5c993","input_length":2626,"output_length":98,"hash_ids":[3256053,3256054,3256055,3256056,3256057,3256058],"delay":2425.1} +{"session_id":"sess-c6b7d91f9e7a","input_length":28835,"output_length":131,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,3260032,3260033,3260034,3260035,3260036],"timestamp":0.0,"group_id":33} +{"session_id":"sess-c6b7d91f9e7a","input_length":1394,"output_length":137,"hash_ids":[3260037,3260038,3260039],"delay":7084.6} +{"session_id":"sess-c6b7d91f9e7a","input_length":533,"output_length":266,"hash_ids":[3260040,3260041],"delay":2295.0} +{"session_id":"sess-c6b7d91f9e7a","input_length":896,"output_length":707,"hash_ids":[3260042,3260043],"delay":1855.7} +{"session_id":"sess-c6b7d91f9e7a","input_length":1047,"output_length":184,"hash_ids":[3260044,3260045,3260046],"delay":1473.5} +{"session_id":"sess-c6b7d91f9e7a","input_length":347,"output_length":217,"hash_ids":[3260047],"delay":1193.5} +{"session_id":"sess-c6b7d91f9e7a","input_length":1203,"output_length":142,"hash_ids":[3260048,3260049,3260050],"delay":749.6} +{"session_id":"sess-c6b7d91f9e7a","input_length":1043,"output_length":109,"hash_ids":[3260051,3260052,3260053],"delay":916.9} +{"session_id":"sess-c6b7d91f9e7a","input_length":1631,"output_length":345,"hash_ids":[3260054,3260055,3260056,3260057],"delay":15654.0} +{"session_id":"sess-c6b7d91f9e7a","input_length":794,"output_length":344,"hash_ids":[3260058,3260059],"delay":10614.7} +{"session_id":"sess-c6b7d91f9e7a","input_length":440,"output_length":259,"hash_ids":[3260060],"delay":1940.0} +{"session_id":"sess-c6b7d91f9e7a","input_length":1228,"output_length":584,"hash_ids":[3260061,3260062,3260063],"delay":57481.5} +{"session_id":"sess-c6b7d91f9e7a","input_length":279,"output_length":716,"hash_ids":[3260064],"delay":1275.6} +{"session_id":"sess-c6b7d91f9e7a","input_length":1827,"output_length":260,"hash_ids":[3260065,3260066,3260067,3260068],"delay":423.9} +{"session_id":"sess-c6b7d91f9e7a","input_length":413,"output_length":411,"hash_ids":[3260069],"delay":380.9} +{"session_id":"sess-c6b7d91f9e7a","input_length":324,"output_length":326,"hash_ids":[3260070],"delay":331.7} +{"session_id":"sess-c6b7d91f9e7a","input_length":798,"output_length":1116,"hash_ids":[3260071,3260072],"delay":7758.0} +{"session_id":"sess-f6874f7d15ea","input_length":29856,"output_length":242,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3264032,3264033,3264034,3264035,3264036,3264037,3264038],"timestamp":0.0,"group_id":18} +{"session_id":"sess-f6874f7d15ea","input_length":720,"output_length":81,"hash_ids":[3264039,3264040],"delay":17625.7} +{"session_id":"sess-f6874f7d15ea","input_length":779,"output_length":518,"hash_ids":[3264041,3264042],"delay":4752.3} +{"session_id":"sess-f6874f7d15ea","input_length":577,"output_length":316,"hash_ids":[3264043,3264044],"delay":2328.4} +{"session_id":"sess-f6874f7d15ea","input_length":1046,"output_length":286,"hash_ids":[3264045,3264046,3264047],"delay":17000.6} +{"session_id":"sess-aecd46ab4018","input_length":27712,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3268032,3268033,3268034],"timestamp":0.0,"group_id":6} +{"session_id":"sess-aecd46ab4018","input_length":802,"output_length":162,"hash_ids":[3268035,3268036],"delay":9902.1} +{"session_id":"sess-aecd46ab4018","input_length":398,"output_length":30,"hash_ids":[3268037],"delay":21448.5} +{"session_id":"sess-aecd46ab4018","input_length":1415,"output_length":1190,"hash_ids":[3268038,3268039,3268040],"delay":2473.7} +{"session_id":"sess-aecd46ab4018","input_length":282,"output_length":91,"hash_ids":[3268041],"delay":482.5} +{"session_id":"sess-aecd46ab4018","input_length":781,"output_length":180,"hash_ids":[3268042,3268043],"delay":1218.0} +{"session_id":"sess-aecd46ab4018","input_length":441,"output_length":633,"hash_ids":[3268044],"delay":1571.7} +{"session_id":"sess-aecd46ab4018","input_length":1022,"output_length":92,"hash_ids":[3268045,3268046],"delay":1814.9} +{"session_id":"sess-aecd46ab4018","input_length":980,"output_length":292,"hash_ids":[3268047,3268048],"delay":479.0} +{"session_id":"sess-aecd46ab4018","input_length":688,"output_length":374,"hash_ids":[3268049,3268050],"delay":3181.0} +{"session_id":"sess-aecd46ab4018","input_length":671,"output_length":195,"hash_ids":[3268051,3268052],"delay":744.1} +{"session_id":"sess-ff9ca76699fc","input_length":28694,"output_length":226,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3272032,3272033,3272034,3272035,3272036],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff9ca76699fc","input_length":733,"output_length":337,"hash_ids":[3272037,3272038],"delay":1156.2} +{"session_id":"sess-ff9ca76699fc","input_length":293,"output_length":463,"hash_ids":[3272039],"delay":1977.5} +{"session_id":"sess-ff9ca76699fc","input_length":679,"output_length":741,"hash_ids":[3272040,3272041],"delay":4200.8} +{"session_id":"sess-ff9ca76699fc","input_length":837,"output_length":719,"hash_ids":[3272042,3272043],"delay":838.3} +{"session_id":"sess-ff9ca76699fc","input_length":140,"output_length":76,"hash_ids":[3272044],"delay":3043.7} +{"session_id":"sess-ff9ca76699fc","input_length":500,"output_length":155,"hash_ids":[3272045],"delay":2851.5} +{"session_id":"sess-ff9ca76699fc","input_length":1841,"output_length":821,"hash_ids":[3272046,3272047,3272048,3272049],"delay":30993.3} +{"session_id":"sess-ff9ca76699fc","input_length":2081,"output_length":107,"hash_ids":[3272050,3272051,3272052,3272053,3272054],"delay":451.5} +{"session_id":"sess-ff9ca76699fc","input_length":1067,"output_length":140,"hash_ids":[3272055,3272056,3272057],"delay":3669.1} +{"session_id":"sess-ff9ca76699fc","input_length":217,"output_length":662,"hash_ids":[3272058],"delay":788.5} +{"session_id":"sess-ff9ca76699fc","input_length":544,"output_length":80,"hash_ids":[3272059,3272060],"delay":1047.1} +{"session_id":"sess-ff9ca76699fc","input_length":286,"output_length":434,"hash_ids":[3272061],"delay":4139.0} +{"session_id":"sess-ff9ca76699fc","input_length":753,"output_length":222,"hash_ids":[3272062,3272063],"delay":368.2} +{"session_id":"sess-ff9ca76699fc","input_length":132,"output_length":188,"hash_ids":[3272064],"delay":503.4} +{"session_id":"sess-ff9ca76699fc","input_length":1809,"output_length":358,"hash_ids":[3272065,3272066,3272067,3272068],"delay":735.8} +{"session_id":"sess-ff9ca76699fc","input_length":438,"output_length":121,"hash_ids":[3272069],"delay":1517.1} +{"session_id":"sess-ff9ca76699fc","input_length":1422,"output_length":136,"hash_ids":[3272070,3272071,3272072],"delay":3947.1} +{"session_id":"sess-ff9ca76699fc","input_length":645,"output_length":163,"hash_ids":[3272073,3272074],"delay":429.6} +{"session_id":"sess-ff9ca76699fc","input_length":283,"output_length":893,"hash_ids":[3272075],"delay":2048.4} +{"session_id":"sess-166df5b884cd","input_length":31581,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3276032,3276033,3276034,3276035,3276036,3276037,3276038,3276039,3276040,3276041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-166df5b884cd","input_length":2350,"output_length":177,"hash_ids":[3276042,3276043,3276044,3276045,3276046],"delay":880.3} +{"session_id":"sess-166df5b884cd","input_length":996,"output_length":301,"hash_ids":[3276047,3276048],"delay":3991.0} +{"session_id":"sess-166df5b884cd","input_length":1068,"output_length":151,"hash_ids":[3276049,3276050,3276051],"delay":9287.0} +{"session_id":"sess-166df5b884cd","input_length":779,"output_length":186,"hash_ids":[3276052,3276053],"delay":6262.1} +{"session_id":"sess-166df5b884cd","input_length":204,"output_length":287,"hash_ids":[3276054],"delay":7567.9} +{"session_id":"sess-166df5b884cd","input_length":322,"output_length":302,"hash_ids":[3276055],"delay":17395.0} +{"session_id":"sess-166df5b884cd","input_length":203,"output_length":177,"hash_ids":[3276056],"delay":6572.9} +{"session_id":"sess-166df5b884cd","input_length":2563,"output_length":65,"hash_ids":[3276057,3276058,3276059,3276060,3276061,3276062],"delay":437.0} +{"session_id":"sess-166df5b884cd","input_length":53,"output_length":459,"hash_ids":[3276063],"delay":355.9} +{"session_id":"sess-166df5b884cd","input_length":790,"output_length":393,"hash_ids":[3276064,3276065],"delay":778.2} +{"session_id":"sess-166df5b884cd","input_length":725,"output_length":211,"hash_ids":[3276066,3276067],"delay":134.6} +{"session_id":"sess-166df5b884cd","input_length":875,"output_length":523,"hash_ids":[3276068,3276069],"delay":307.7} +{"session_id":"sess-166df5b884cd","input_length":115,"output_length":176,"hash_ids":[3276070],"delay":1236.4} +{"session_id":"sess-166df5b884cd","input_length":1915,"output_length":152,"hash_ids":[3276071,3276072,3276073,3276074],"delay":1923.0} +{"session_id":"sess-166df5b884cd","input_length":2703,"output_length":116,"hash_ids":[3276075,3276076,3276077,3276078,3276079,3276080],"delay":1479.5} +{"session_id":"sess-166df5b884cd","input_length":535,"output_length":102,"hash_ids":[3276081,3276082],"delay":4411.0} +{"session_id":"sess-166df5b884cd","input_length":341,"output_length":156,"hash_ids":[3276083],"delay":802.0} +{"session_id":"sess-166df5b884cd","input_length":764,"output_length":863,"hash_ids":[3276084,3276085],"delay":364.9} +{"session_id":"sess-166df5b884cd","input_length":384,"output_length":417,"hash_ids":[3276086],"delay":535.2} +{"session_id":"sess-166df5b884cd","input_length":1320,"output_length":336,"hash_ids":[3276087,3276088,3276089],"delay":316.4} +{"session_id":"sess-166df5b884cd","input_length":1671,"output_length":181,"hash_ids":[3276090,3276091,3276092,3276093],"delay":1094.9} +{"session_id":"sess-166df5b884cd","input_length":901,"output_length":271,"hash_ids":[3276094,3276095],"delay":638.4} +{"session_id":"sess-166df5b884cd","input_length":154,"output_length":1350,"hash_ids":[3276096],"delay":9369.0} +{"session_id":"sess-166df5b884cd","input_length":300,"output_length":139,"hash_ids":[3276097],"delay":5585.4} +{"session_id":"sess-166df5b884cd","input_length":1932,"output_length":38,"hash_ids":[3276098,3276099,3276100,3276101],"delay":487.9} +{"session_id":"sess-79be1acbae2d","input_length":28150,"output_length":140,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3280032,3280033,3280034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-79be1acbae2d","input_length":1819,"output_length":82,"hash_ids":[3280035,3280036,3280037,3280038],"delay":921.2} +{"session_id":"sess-79be1acbae2d","input_length":1036,"output_length":229,"hash_ids":[3280039,3280040,3280041],"delay":571.8} +{"session_id":"sess-79be1acbae2d","input_length":169,"output_length":96,"hash_ids":[3280042],"delay":1485.8} +{"session_id":"sess-79be1acbae2d","input_length":2237,"output_length":152,"hash_ids":[3280043,3280044,3280045,3280046,3280047],"delay":20040.3} +{"session_id":"sess-79be1acbae2d","input_length":237,"output_length":137,"hash_ids":[3280048],"delay":1588.8} +{"session_id":"sess-79be1acbae2d","input_length":1687,"output_length":70,"hash_ids":[3280049,3280050,3280051,3280052],"delay":6927.6} +{"session_id":"sess-79be1acbae2d","input_length":338,"output_length":278,"hash_ids":[3280053],"delay":919.7} +{"session_id":"sess-79be1acbae2d","input_length":251,"output_length":88,"hash_ids":[3280054],"delay":1642.5} +{"session_id":"sess-79be1acbae2d","input_length":228,"output_length":143,"hash_ids":[3280055],"delay":514.0} +{"session_id":"sess-79be1acbae2d","input_length":1263,"output_length":173,"hash_ids":[3280056,3280057,3280058],"delay":5070.4} +{"session_id":"sess-79be1acbae2d","input_length":2605,"output_length":103,"hash_ids":[3280059,3280060,3280061,3280062,3280063,3280064],"delay":22238.6} +{"session_id":"sess-79be1acbae2d","input_length":654,"output_length":56,"hash_ids":[3280065,3280066],"delay":482.8} +{"session_id":"sess-79be1acbae2d","input_length":1959,"output_length":80,"hash_ids":[3280067,3280068,3280069,3280070],"delay":371.0} +{"session_id":"sess-79be1acbae2d","input_length":943,"output_length":252,"hash_ids":[3280071,3280072],"delay":374.7} +{"session_id":"sess-79be1acbae2d","input_length":221,"output_length":172,"hash_ids":[3280073],"delay":867.0} +{"session_id":"sess-79be1acbae2d","input_length":990,"output_length":212,"hash_ids":[3280074,3280075],"delay":28275.2} +{"session_id":"sess-79be1acbae2d","input_length":1403,"output_length":58,"hash_ids":[3280076,3280077,3280078],"delay":765.4} +{"session_id":"sess-79be1acbae2d","input_length":124,"output_length":132,"hash_ids":[3280079],"delay":586.9} +{"session_id":"sess-79be1acbae2d","input_length":334,"output_length":1301,"hash_ids":[3280080],"delay":19988.4} +{"session_id":"sess-79be1acbae2d","input_length":400,"output_length":695,"hash_ids":[3280081],"delay":2390.9} +{"session_id":"sess-79be1acbae2d","input_length":153,"output_length":98,"hash_ids":[3280082],"delay":596.8} +{"session_id":"sess-79be1acbae2d","input_length":450,"output_length":178,"hash_ids":[3280083],"delay":1003.4} +{"session_id":"sess-79be1acbae2d","input_length":251,"output_length":508,"hash_ids":[3280084],"delay":1060.6} +{"session_id":"sess-79be1acbae2d","input_length":2910,"output_length":87,"hash_ids":[3280085,3280086,3280087,3280088,3280089,3280090],"delay":385.4} +{"session_id":"sess-79be1acbae2d","input_length":2119,"output_length":33,"hash_ids":[3280091,3280092,3280093,3280094,3280095],"delay":1815.2} +{"session_id":"sess-79be1acbae2d","input_length":365,"output_length":290,"hash_ids":[3280096],"delay":996.8} +{"session_id":"sess-79be1acbae2d","input_length":837,"output_length":243,"hash_ids":[3280097,3280098],"delay":16440.6} +{"session_id":"sess-79be1acbae2d","input_length":470,"output_length":179,"hash_ids":[3280099],"delay":115.4} +{"session_id":"sess-79be1acbae2d","input_length":634,"output_length":139,"hash_ids":[3280100,3280101],"delay":7893.4} +{"session_id":"sess-79be1acbae2d","input_length":454,"output_length":140,"hash_ids":[3280102],"delay":388.2} +{"session_id":"sess-79be1acbae2d","input_length":770,"output_length":160,"hash_ids":[3280103,3280104],"delay":2040.8} +{"session_id":"sess-79be1acbae2d","input_length":1575,"output_length":72,"hash_ids":[3280105,3280106,3280107,3280108],"delay":671.9} +{"session_id":"sess-91ec781748ac","input_length":29262,"output_length":69,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3284032,3284033,3284034,3284035,3284036,3284037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-91ec781748ac","input_length":2263,"output_length":1272,"hash_ids":[3284038,3284039,3284040,3284041,3284042],"delay":2322.9} +{"session_id":"sess-91ec781748ac","input_length":1000,"output_length":74,"hash_ids":[3284043,3284044],"delay":1955.3} +{"session_id":"sess-91ec781748ac","input_length":1984,"output_length":75,"hash_ids":[3284045,3284046,3284047,3284048],"delay":807.1} +{"session_id":"sess-62a5e7c2991d","input_length":28615,"output_length":524,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3288032,3288033,3288034,3288035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-62a5e7c2991d","input_length":411,"output_length":600,"hash_ids":[3288036],"delay":1002.8} +{"session_id":"sess-62a5e7c2991d","input_length":475,"output_length":56,"hash_ids":[3288037],"delay":1006.1} +{"session_id":"sess-62a5e7c2991d","input_length":190,"output_length":323,"hash_ids":[3288038],"delay":3501.3} +{"session_id":"sess-62a5e7c2991d","input_length":726,"output_length":603,"hash_ids":[3288039,3288040],"delay":9718.5} +{"session_id":"sess-62a5e7c2991d","input_length":526,"output_length":57,"hash_ids":[3288041,3288042],"delay":14841.3} +{"session_id":"sess-62a5e7c2991d","input_length":829,"output_length":121,"hash_ids":[3288043,3288044],"delay":3079.2} +{"session_id":"sess-62a5e7c2991d","input_length":281,"output_length":115,"hash_ids":[3288045],"delay":3192.3} +{"session_id":"sess-62a5e7c2991d","input_length":2628,"output_length":865,"hash_ids":[3288046,3288047,3288048,3288049,3288050,3288051],"delay":1529.0} +{"session_id":"sess-62a5e7c2991d","input_length":1818,"output_length":566,"hash_ids":[3288052,3288053,3288054,3288055],"delay":21387.7} +{"session_id":"sess-62a5e7c2991d","input_length":171,"output_length":127,"hash_ids":[3288056],"delay":4330.2} +{"session_id":"sess-62a5e7c2991d","input_length":648,"output_length":290,"hash_ids":[3288057,3288058],"delay":638.2} +{"session_id":"sess-62a5e7c2991d","input_length":1651,"output_length":67,"hash_ids":[3288059,3288060,3288061,3288062],"delay":18209.7} +{"session_id":"sess-62a5e7c2991d","input_length":561,"output_length":1207,"hash_ids":[3288063,3288064],"delay":809.1} +{"session_id":"sess-62a5e7c2991d","input_length":632,"output_length":381,"hash_ids":[3288065,3288066],"delay":8754.9} +{"session_id":"sess-62a5e7c2991d","input_length":401,"output_length":161,"hash_ids":[3288067],"delay":15154.9} +{"session_id":"sess-62a5e7c2991d","input_length":2928,"output_length":134,"hash_ids":[3288068,3288069,3288070,3288071,3288072,3288073],"delay":1754.8} +{"session_id":"sess-62a5e7c2991d","input_length":2744,"output_length":683,"hash_ids":[3288074,3288075,3288076,3288077,3288078,3288079],"delay":1977.8} +{"session_id":"sess-62a5e7c2991d","input_length":162,"output_length":146,"hash_ids":[3288080],"delay":630.7} +{"session_id":"sess-62a5e7c2991d","input_length":338,"output_length":227,"hash_ids":[3288081],"delay":1637.2} +{"session_id":"sess-62a5e7c2991d","input_length":559,"output_length":48,"hash_ids":[3288082,3288083],"delay":212.2} +{"session_id":"sess-62a5e7c2991d","input_length":820,"output_length":87,"hash_ids":[3288084,3288085],"delay":845.3} +{"session_id":"sess-62a5e7c2991d","input_length":1193,"output_length":79,"hash_ids":[3288086,3288087,3288088],"delay":570.1} +{"session_id":"sess-62a5e7c2991d","input_length":523,"output_length":41,"hash_ids":[3288089,3288090],"delay":284.5} +{"session_id":"sess-42ff00a8175c","input_length":26153,"output_length":154,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251],"timestamp":0.0,"group_id":6} +{"session_id":"sess-42ff00a8175c","input_length":721,"output_length":387,"hash_ids":[3288091,3288092],"delay":9836.0} +{"session_id":"sess-42ff00a8175c","input_length":2874,"output_length":404,"hash_ids":[3288093,3288094,3288095,3288096,3288097,3288098],"delay":4348.6} +{"session_id":"sess-42ff00a8175c","input_length":764,"output_length":270,"hash_ids":[3288099,3288100],"delay":550.0} +{"session_id":"sess-42ff00a8175c","input_length":2992,"output_length":72,"hash_ids":[3288101,3288102,3288103,3288104,3288105,3288106],"delay":2557.1} +{"session_id":"sess-42ff00a8175c","input_length":943,"output_length":78,"hash_ids":[3288107,3288108],"delay":576.3} +{"session_id":"sess-6d847c05006c","input_length":29565,"output_length":268,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3296032,3296033,3296034,3296035,3296036,3296037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-6d847c05006c","input_length":123,"output_length":124,"hash_ids":[3296038],"delay":2063.6} +{"session_id":"sess-6d847c05006c","input_length":1930,"output_length":290,"hash_ids":[3296039,3296040,3296041,3296042],"delay":1299.0} +{"session_id":"sess-6d847c05006c","input_length":1012,"output_length":352,"hash_ids":[3296043,3296044],"delay":490.9} +{"session_id":"sess-6d847c05006c","input_length":1471,"output_length":334,"hash_ids":[3296045,3296046,3296047],"delay":240.1} +{"session_id":"sess-6d847c05006c","input_length":1468,"output_length":280,"hash_ids":[3296048,3296049,3296050],"delay":5234.0} +{"session_id":"sess-6d847c05006c","input_length":170,"output_length":40,"hash_ids":[3296051],"delay":526.3} +{"session_id":"sess-6d847c05006c","input_length":629,"output_length":238,"hash_ids":[3296052,3296053],"delay":1185.7} +{"session_id":"sess-6d847c05006c","input_length":407,"output_length":91,"hash_ids":[3296054],"delay":2489.8} +{"session_id":"sess-6d847c05006c","input_length":2469,"output_length":474,"hash_ids":[3296055,3296056,3296057,3296058,3296059],"delay":1416.7} +{"session_id":"sess-6d847c05006c","input_length":436,"output_length":167,"hash_ids":[3296060],"delay":763.7} +{"session_id":"sess-6d847c05006c","input_length":1571,"output_length":30,"hash_ids":[3296061,3296062,3296063,3296064],"delay":432.4} +{"session_id":"sess-6d847c05006c","input_length":969,"output_length":201,"hash_ids":[3296065,3296066],"delay":488.1} +{"session_id":"sess-6d847c05006c","input_length":380,"output_length":297,"hash_ids":[3296067],"delay":1682.7} +{"session_id":"sess-6d847c05006c","input_length":816,"output_length":509,"hash_ids":[3296068,3296069],"delay":566.7} +{"session_id":"sess-6d847c05006c","input_length":287,"output_length":56,"hash_ids":[3296070],"delay":292.4} +{"session_id":"sess-6d847c05006c","input_length":1037,"output_length":185,"hash_ids":[3296071,3296072,3296073],"delay":8619.1} +{"session_id":"sess-6d847c05006c","input_length":497,"output_length":129,"hash_ids":[3296074],"delay":799.6} +{"session_id":"sess-6d847c05006c","input_length":117,"output_length":427,"hash_ids":[3296075],"delay":4098.4} +{"session_id":"sess-6d847c05006c","input_length":1217,"output_length":282,"hash_ids":[3296076,3296077,3296078],"delay":2399.1} +{"session_id":"sess-6d847c05006c","input_length":462,"output_length":137,"hash_ids":[3296079],"delay":287.1} +{"session_id":"sess-6d847c05006c","input_length":363,"output_length":455,"hash_ids":[3296080],"delay":5479.2} +{"session_id":"sess-6d847c05006c","input_length":482,"output_length":233,"hash_ids":[3296081],"delay":609.6} +{"session_id":"sess-6d847c05006c","input_length":618,"output_length":187,"hash_ids":[3296082,3296083],"delay":613.6} +{"session_id":"sess-6d847c05006c","input_length":233,"output_length":116,"hash_ids":[3296084],"delay":417.4} +{"session_id":"sess-48d7b98d0dbc","input_length":30125,"output_length":752,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3300032,3300033,3300034,3300035,3300036,3300037,3300038],"timestamp":0.0,"group_id":15} +{"session_id":"sess-48d7b98d0dbc","input_length":635,"output_length":126,"hash_ids":[3300039,3300040],"delay":48502.1} +{"session_id":"sess-48d7b98d0dbc","input_length":382,"output_length":30,"hash_ids":[3300041],"delay":415.9} +{"session_id":"sess-48d7b98d0dbc","input_length":118,"output_length":1058,"hash_ids":[3300042],"delay":11526.6} +{"session_id":"sess-48d7b98d0dbc","input_length":993,"output_length":202,"hash_ids":[3300043,3300044],"delay":1217.5} +{"session_id":"sess-0d98624e08f7","input_length":29792,"output_length":92,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3304032,3304033,3304034,3304035,3304036,3304037,3304038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0d98624e08f7","input_length":2234,"output_length":130,"hash_ids":[3304039,3304040,3304041,3304042,3304043],"delay":382.5} +{"session_id":"sess-0d98624e08f7","input_length":1502,"output_length":147,"hash_ids":[3304044,3304045,3304046],"delay":370.2} +{"session_id":"sess-0d98624e08f7","input_length":576,"output_length":64,"hash_ids":[3304047,3304048],"delay":1512.0} +{"session_id":"sess-0d98624e08f7","input_length":443,"output_length":220,"hash_ids":[3304049],"delay":624.2} +{"session_id":"sess-0d98624e08f7","input_length":1456,"output_length":906,"hash_ids":[3304050,3304051,3304052],"delay":34875.2} +{"session_id":"sess-0d98624e08f7","input_length":1679,"output_length":110,"hash_ids":[3304053,3304054,3304055,3304056],"delay":380.2} +{"session_id":"sess-0d98624e08f7","input_length":650,"output_length":50,"hash_ids":[3304057,3304058],"delay":1809.4} +{"session_id":"sess-0d98624e08f7","input_length":573,"output_length":722,"hash_ids":[3304059,3304060],"delay":4383.3} +{"session_id":"sess-0d98624e08f7","input_length":2364,"output_length":230,"hash_ids":[3304061,3304062,3304063,3304064,3304065],"delay":1733.4} +{"session_id":"sess-0d98624e08f7","input_length":1743,"output_length":50,"hash_ids":[3304066,3304067,3304068,3304069],"delay":1792.3} +{"session_id":"sess-0d98624e08f7","input_length":669,"output_length":114,"hash_ids":[3304070,3304071],"delay":285.5} +{"session_id":"sess-0d98624e08f7","input_length":2483,"output_length":359,"hash_ids":[3304072,3304073,3304074,3304075,3304076],"delay":31877.5} +{"session_id":"sess-0d98624e08f7","input_length":440,"output_length":522,"hash_ids":[3304077],"delay":15362.4} +{"session_id":"sess-0d98624e08f7","input_length":939,"output_length":330,"hash_ids":[3304078,3304079],"delay":163.0} +{"session_id":"sess-0d98624e08f7","input_length":2125,"output_length":292,"hash_ids":[3304080,3304081,3304082,3304083,3304084],"delay":1074.1} +{"session_id":"sess-0d98624e08f7","input_length":853,"output_length":174,"hash_ids":[3304085,3304086],"delay":200.1} +{"session_id":"sess-0d98624e08f7","input_length":158,"output_length":153,"hash_ids":[3304087],"delay":836.7} +{"session_id":"sess-0d98624e08f7","input_length":1048,"output_length":116,"hash_ids":[3304088,3304089,3304090],"delay":470.8} +{"session_id":"sess-0d98624e08f7","input_length":126,"output_length":132,"hash_ids":[3304091],"delay":733.5} +{"session_id":"sess-0d98624e08f7","input_length":887,"output_length":674,"hash_ids":[3304092,3304093],"delay":283.4} +{"session_id":"sess-0d98624e08f7","input_length":1229,"output_length":81,"hash_ids":[3304094,3304095,3304096],"delay":163.5} +{"session_id":"sess-0d98624e08f7","input_length":1438,"output_length":422,"hash_ids":[3304097,3304098,3304099],"delay":7358.9} +{"session_id":"sess-0d98624e08f7","input_length":609,"output_length":40,"hash_ids":[3304100,3304101],"delay":762.4} +{"session_id":"sess-0d98624e08f7","input_length":271,"output_length":104,"hash_ids":[3304102],"delay":2656.4} +{"session_id":"sess-0d98624e08f7","input_length":1646,"output_length":97,"hash_ids":[3304103,3304104,3304105,3304106],"delay":315.9} +{"session_id":"sess-0d98624e08f7","input_length":526,"output_length":716,"hash_ids":[3304107,3304108],"delay":9192.7} +{"session_id":"sess-3453fdff40bc","input_length":26857,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3308032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3453fdff40bc","input_length":780,"output_length":181,"hash_ids":[3308033,3308034],"delay":69431.5} +{"session_id":"sess-3453fdff40bc","input_length":286,"output_length":121,"hash_ids":[3308035],"delay":405.8} +{"session_id":"sess-3453fdff40bc","input_length":173,"output_length":491,"hash_ids":[3308036],"delay":32538.1} +{"session_id":"sess-3453fdff40bc","input_length":828,"output_length":470,"hash_ids":[3308037,3308038],"delay":787.2} +{"session_id":"sess-3453fdff40bc","input_length":452,"output_length":137,"hash_ids":[3308039],"delay":313.3} +{"session_id":"sess-3453fdff40bc","input_length":433,"output_length":141,"hash_ids":[3308040],"delay":1057.8} +{"session_id":"sess-3453fdff40bc","input_length":409,"output_length":111,"hash_ids":[3308041],"delay":8332.0} +{"session_id":"sess-3453fdff40bc","input_length":591,"output_length":302,"hash_ids":[3308042,3308043],"delay":946.2} +{"session_id":"sess-3453fdff40bc","input_length":890,"output_length":155,"hash_ids":[3308044,3308045],"delay":1378.2} +{"session_id":"sess-3453fdff40bc","input_length":409,"output_length":62,"hash_ids":[3308046],"delay":346.7} +{"session_id":"sess-3453fdff40bc","input_length":1260,"output_length":36,"hash_ids":[3308047,3308048,3308049],"delay":1718.9} +{"session_id":"sess-3453fdff40bc","input_length":374,"output_length":127,"hash_ids":[3308050],"delay":3248.1} +{"session_id":"sess-3453fdff40bc","input_length":744,"output_length":69,"hash_ids":[3308051,3308052],"delay":1946.7} +{"session_id":"sess-3453fdff40bc","input_length":1289,"output_length":165,"hash_ids":[3308053,3308054,3308055],"delay":1812.6} +{"session_id":"sess-3453fdff40bc","input_length":2076,"output_length":1016,"hash_ids":[3308056,3308057,3308058,3308059,3308060],"delay":1257.9} +{"session_id":"sess-3453fdff40bc","input_length":1535,"output_length":906,"hash_ids":[3308061,3308062,3308063],"delay":475.5} +{"session_id":"sess-3453fdff40bc","input_length":457,"output_length":30,"hash_ids":[3308064],"delay":3231.2} +{"session_id":"sess-3453fdff40bc","input_length":981,"output_length":78,"hash_ids":[3308065,3308066],"delay":5471.1} +{"session_id":"sess-3453fdff40bc","input_length":293,"output_length":463,"hash_ids":[3308067],"delay":1335.5} +{"session_id":"sess-3453fdff40bc","input_length":328,"output_length":411,"hash_ids":[3308068],"delay":6384.6} +{"session_id":"sess-3453fdff40bc","input_length":1117,"output_length":120,"hash_ids":[3308069,3308070,3308071],"delay":1138.6} +{"session_id":"sess-3453fdff40bc","input_length":1153,"output_length":562,"hash_ids":[3308072,3308073,3308074],"delay":323.0} +{"session_id":"sess-3453fdff40bc","input_length":800,"output_length":194,"hash_ids":[3308075,3308076],"delay":987.2} +{"session_id":"sess-3453fdff40bc","input_length":255,"output_length":153,"hash_ids":[3308077],"delay":670.8} +{"session_id":"sess-3453fdff40bc","input_length":858,"output_length":176,"hash_ids":[3308078,3308079],"delay":7513.2} +{"session_id":"sess-504d390686d8","input_length":27560,"output_length":163,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,3312032,3312033],"timestamp":0.0,"group_id":21} +{"session_id":"sess-504d390686d8","input_length":598,"output_length":81,"hash_ids":[3312034,3312035],"delay":728.5} +{"session_id":"sess-504d390686d8","input_length":1459,"output_length":110,"hash_ids":[3312036,3312037,3312038],"delay":447.0} +{"session_id":"sess-504d390686d8","input_length":918,"output_length":312,"hash_ids":[3312039,3312040],"delay":572.4} +{"session_id":"sess-504d390686d8","input_length":780,"output_length":331,"hash_ids":[3312041,3312042],"delay":1075.0} +{"session_id":"sess-504d390686d8","input_length":2961,"output_length":359,"hash_ids":[3312043,3312044,3312045,3312046,3312047,3312048],"delay":2272.4} +{"session_id":"sess-504d390686d8","input_length":410,"output_length":329,"hash_ids":[3312049],"delay":1106.9} +{"session_id":"sess-504d390686d8","input_length":398,"output_length":30,"hash_ids":[3312050],"delay":1452.0} +{"session_id":"sess-504d390686d8","input_length":437,"output_length":211,"hash_ids":[3312051],"delay":454.1} +{"session_id":"sess-504d390686d8","input_length":473,"output_length":225,"hash_ids":[3312052],"delay":1180.9} +{"session_id":"sess-504d390686d8","input_length":434,"output_length":193,"hash_ids":[3312053],"delay":4806.4} +{"session_id":"sess-504d390686d8","input_length":1194,"output_length":281,"hash_ids":[3312054,3312055,3312056],"delay":14200.2} +{"session_id":"sess-504d390686d8","input_length":1940,"output_length":42,"hash_ids":[3312057,3312058,3312059,3312060],"delay":344.0} +{"session_id":"sess-504d390686d8","input_length":1997,"output_length":78,"hash_ids":[3312061,3312062,3312063,3312064],"delay":340.6} +{"session_id":"sess-f6a20b67acba","input_length":34624,"output_length":392,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3316032,3316033,3316034,3316035,3316036,3316037,3316038,3316039,3316040,3316041,3316042,3316043,3316044,3316045,3316046,3316047],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f6a20b67acba","input_length":1005,"output_length":306,"hash_ids":[3316048,3316049],"delay":1111.6} +{"session_id":"sess-f6a20b67acba","input_length":857,"output_length":135,"hash_ids":[3316050,3316051],"delay":2746.2} +{"session_id":"sess-f6a20b67acba","input_length":574,"output_length":60,"hash_ids":[3316052,3316053],"delay":14052.5} +{"session_id":"sess-f6a20b67acba","input_length":539,"output_length":94,"hash_ids":[3316054,3316055],"delay":5997.2} +{"session_id":"sess-f6a20b67acba","input_length":398,"output_length":257,"hash_ids":[3316056],"delay":860.1} +{"session_id":"sess-f6a20b67acba","input_length":1214,"output_length":238,"hash_ids":[3316057,3316058,3316059],"delay":1893.3} +{"session_id":"sess-f6a20b67acba","input_length":268,"output_length":126,"hash_ids":[3316060],"delay":4084.2} +{"session_id":"sess-f6a20b67acba","input_length":765,"output_length":951,"hash_ids":[3316061,3316062],"delay":10902.9} +{"session_id":"sess-f6a20b67acba","input_length":1073,"output_length":52,"hash_ids":[3316063,3316064,3316065],"delay":2704.5} +{"session_id":"sess-f6a20b67acba","input_length":636,"output_length":76,"hash_ids":[3316066,3316067],"delay":30142.2} +{"session_id":"sess-f6a20b67acba","input_length":1782,"output_length":137,"hash_ids":[3316068,3316069,3316070,3316071],"delay":5860.4} +{"session_id":"sess-f6a20b67acba","input_length":681,"output_length":212,"hash_ids":[3316072,3316073],"delay":33522.6} +{"session_id":"sess-f6a20b67acba","input_length":2150,"output_length":958,"hash_ids":[3316074,3316075,3316076,3316077,3316078],"delay":2076.5} +{"session_id":"sess-f6a20b67acba","input_length":1096,"output_length":706,"hash_ids":[3316079,3316080,3316081],"delay":600.0} +{"session_id":"sess-f6a20b67acba","input_length":2669,"output_length":325,"hash_ids":[3316082,3316083,3316084,3316085,3316086,3316087],"delay":440.1} +{"session_id":"sess-f6a20b67acba","input_length":213,"output_length":359,"hash_ids":[3316088],"delay":439.5} +{"session_id":"sess-f6a20b67acba","input_length":281,"output_length":89,"hash_ids":[3316089],"delay":561.2} +{"session_id":"sess-f6a20b67acba","input_length":1599,"output_length":41,"hash_ids":[3316090,3316091,3316092,3316093],"delay":481.1} +{"session_id":"sess-f6a20b67acba","input_length":586,"output_length":654,"hash_ids":[3316094,3316095],"delay":8972.0} +{"session_id":"sess-f6a20b67acba","input_length":323,"output_length":345,"hash_ids":[3316096],"delay":9993.0} +{"session_id":"sess-f6a20b67acba","input_length":1997,"output_length":78,"hash_ids":[3316097,3316098,3316099,3316100],"delay":141.8} +{"session_id":"sess-f6a20b67acba","input_length":372,"output_length":345,"hash_ids":[3316101],"delay":9770.6} +{"session_id":"sess-f6a20b67acba","input_length":1111,"output_length":211,"hash_ids":[3316102,3316103,3316104],"delay":289.6} +{"session_id":"sess-f6a20b67acba","input_length":324,"output_length":319,"hash_ids":[3316105],"delay":520.2} +{"session_id":"sess-dd927ccac50b","input_length":33535,"output_length":817,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,3320032,3320033,3320034,3320035,3320036,3320037,3320038,3320039,3320040,3320041,3320042,3320043,3320044,3320045],"timestamp":0.0,"group_id":28} +{"session_id":"sess-dd927ccac50b","input_length":886,"output_length":99,"hash_ids":[3320046,3320047],"delay":679.1} +{"session_id":"sess-dd927ccac50b","input_length":1400,"output_length":82,"hash_ids":[3320048,3320049,3320050],"delay":314.4} +{"session_id":"sess-dd927ccac50b","input_length":2209,"output_length":204,"hash_ids":[3320051,3320052,3320053,3320054,3320055],"delay":713.3} +{"session_id":"sess-dd927ccac50b","input_length":572,"output_length":300,"hash_ids":[3320056,3320057],"delay":1930.9} +{"session_id":"sess-dd927ccac50b","input_length":374,"output_length":1359,"hash_ids":[3320058],"delay":1271.1} +{"session_id":"sess-dd927ccac50b","input_length":922,"output_length":61,"hash_ids":[3320059,3320060],"delay":4061.8} +{"session_id":"sess-dd927ccac50b","input_length":1372,"output_length":195,"hash_ids":[3320061,3320062,3320063],"delay":1137.5} +{"session_id":"sess-dd927ccac50b","input_length":646,"output_length":189,"hash_ids":[3320064,3320065],"delay":713.4} +{"session_id":"sess-dd927ccac50b","input_length":784,"output_length":192,"hash_ids":[3320066,3320067],"delay":17273.1} +{"session_id":"sess-dd927ccac50b","input_length":81,"output_length":217,"hash_ids":[3320068],"delay":1073.8} +{"session_id":"sess-dd927ccac50b","input_length":762,"output_length":56,"hash_ids":[3320069,3320070],"delay":901.0} +{"session_id":"sess-dd927ccac50b","input_length":2214,"output_length":59,"hash_ids":[3320071,3320072,3320073,3320074,3320075],"delay":1875.9} +{"session_id":"sess-dd927ccac50b","input_length":2023,"output_length":130,"hash_ids":[3320076,3320077,3320078,3320079],"delay":1506.4} +{"session_id":"sess-dd927ccac50b","input_length":156,"output_length":72,"hash_ids":[3320080],"delay":380.7} +{"session_id":"sess-dd927ccac50b","input_length":354,"output_length":72,"hash_ids":[3320081],"delay":356.0} +{"session_id":"sess-dd927ccac50b","input_length":566,"output_length":132,"hash_ids":[3320082,3320083],"delay":1345.4} +{"session_id":"sess-dd927ccac50b","input_length":1405,"output_length":138,"hash_ids":[3320084,3320085,3320086],"delay":15925.3} +{"session_id":"sess-dd927ccac50b","input_length":2473,"output_length":208,"hash_ids":[3320087,3320088,3320089,3320090,3320091],"delay":1242.3} +{"session_id":"sess-dd927ccac50b","input_length":569,"output_length":1473,"hash_ids":[3320092,3320093],"delay":516.0} +{"session_id":"sess-dd927ccac50b","input_length":998,"output_length":236,"hash_ids":[3320094,3320095],"delay":323.9} +{"session_id":"sess-dd927ccac50b","input_length":399,"output_length":120,"hash_ids":[3320096],"delay":352.8} +{"session_id":"sess-dd927ccac50b","input_length":2438,"output_length":269,"hash_ids":[3320097,3320098,3320099,3320100,3320101],"delay":533.5} +{"session_id":"sess-dd927ccac50b","input_length":785,"output_length":36,"hash_ids":[3320102,3320103],"delay":322.5} +{"session_id":"sess-dd927ccac50b","input_length":559,"output_length":140,"hash_ids":[3320104,3320105],"delay":5524.3} +{"session_id":"sess-bf3e2c8ef884","input_length":28175,"output_length":178,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,3324032,3324033,3324034,3324035],"timestamp":0.0,"group_id":25} +{"session_id":"sess-bf3e2c8ef884","input_length":1909,"output_length":212,"hash_ids":[3324036,3324037,3324038,3324039],"delay":9743.9} +{"session_id":"sess-bf3e2c8ef884","input_length":839,"output_length":220,"hash_ids":[3324040,3324041],"delay":3959.9} +{"session_id":"sess-bf3e2c8ef884","input_length":2767,"output_length":290,"hash_ids":[3324042,3324043,3324044,3324045,3324046,3324047],"delay":483.4} +{"session_id":"sess-bf3e2c8ef884","input_length":2959,"output_length":1303,"hash_ids":[3324048,3324049,3324050,3324051,3324052,3324053],"delay":37960.6} +{"session_id":"sess-bf3e2c8ef884","input_length":1638,"output_length":586,"hash_ids":[3324054,3324055,3324056,3324057],"delay":16718.3} +{"session_id":"sess-bf3e2c8ef884","input_length":442,"output_length":340,"hash_ids":[3324058],"delay":3687.0} +{"session_id":"sess-bf3e2c8ef884","input_length":974,"output_length":237,"hash_ids":[3324059,3324060],"delay":2761.7} +{"session_id":"sess-bf3e2c8ef884","input_length":275,"output_length":48,"hash_ids":[3324061],"delay":301.9} +{"session_id":"sess-bf3e2c8ef884","input_length":2707,"output_length":134,"hash_ids":[3324062,3324063,3324064,3324065,3324066,3324067],"delay":646.0} +{"session_id":"sess-bf3e2c8ef884","input_length":615,"output_length":50,"hash_ids":[3324068,3324069],"delay":4571.8} +{"session_id":"sess-bf3e2c8ef884","input_length":403,"output_length":62,"hash_ids":[3324070],"delay":208.7} +{"session_id":"sess-bf3e2c8ef884","input_length":796,"output_length":210,"hash_ids":[3324071,3324072],"delay":4292.8} +{"session_id":"sess-bf3e2c8ef884","input_length":1819,"output_length":178,"hash_ids":[3324073,3324074,3324075,3324076],"delay":830.8} +{"session_id":"sess-bf3e2c8ef884","input_length":874,"output_length":158,"hash_ids":[3324077,3324078],"delay":8627.6} +{"session_id":"sess-bf3e2c8ef884","input_length":146,"output_length":358,"hash_ids":[3324079],"delay":2150.7} +{"session_id":"sess-bf3e2c8ef884","input_length":204,"output_length":244,"hash_ids":[3324080],"delay":18807.0} +{"session_id":"sess-bf3e2c8ef884","input_length":590,"output_length":540,"hash_ids":[3324081,3324082],"delay":460.4} +{"session_id":"sess-bf3e2c8ef884","input_length":623,"output_length":132,"hash_ids":[3324083,3324084],"delay":2184.0} +{"session_id":"sess-bf3e2c8ef884","input_length":350,"output_length":268,"hash_ids":[3324085],"delay":9806.3} +{"session_id":"sess-bf3e2c8ef884","input_length":647,"output_length":56,"hash_ids":[3324086,3324087],"delay":537.1} +{"session_id":"sess-bf3e2c8ef884","input_length":234,"output_length":30,"hash_ids":[3324088],"delay":24404.7} +{"session_id":"sess-bf3e2c8ef884","input_length":733,"output_length":140,"hash_ids":[3324089,3324090],"delay":21015.8} +{"session_id":"sess-bf3e2c8ef884","input_length":954,"output_length":291,"hash_ids":[3324091,3324092],"delay":556.1} +{"session_id":"sess-bf3e2c8ef884","input_length":469,"output_length":266,"hash_ids":[3324093],"delay":779.6} +{"session_id":"sess-bf3e2c8ef884","input_length":1174,"output_length":188,"hash_ids":[3324094,3324095,3324096],"delay":283.9} +{"session_id":"sess-bf3e2c8ef884","input_length":1164,"output_length":136,"hash_ids":[3324097,3324098,3324099],"delay":408.1} +{"session_id":"sess-bf3e2c8ef884","input_length":2637,"output_length":387,"hash_ids":[3324100,3324101,3324102,3324103,3324104,3324105],"delay":1945.9} +{"session_id":"sess-d46a854cf23a","input_length":27127,"output_length":82,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3328032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d46a854cf23a","input_length":348,"output_length":36,"hash_ids":[3328033],"delay":14105.6} +{"session_id":"sess-d46a854cf23a","input_length":1166,"output_length":121,"hash_ids":[3328034,3328035,3328036],"delay":15497.4} +{"session_id":"sess-d46a854cf23a","input_length":238,"output_length":152,"hash_ids":[3328037],"delay":15349.1} +{"session_id":"sess-d46a854cf23a","input_length":351,"output_length":45,"hash_ids":[3328038],"delay":613.4} +{"session_id":"sess-d46a854cf23a","input_length":472,"output_length":78,"hash_ids":[3328039],"delay":5197.0} +{"session_id":"sess-d46a854cf23a","input_length":969,"output_length":447,"hash_ids":[3328040,3328041],"delay":27891.4} +{"session_id":"sess-d46a854cf23a","input_length":541,"output_length":374,"hash_ids":[3328042,3328043],"delay":23729.2} +{"session_id":"sess-d46a854cf23a","input_length":738,"output_length":469,"hash_ids":[3328044,3328045],"delay":8615.5} +{"session_id":"sess-d46a854cf23a","input_length":1285,"output_length":212,"hash_ids":[3328046,3328047,3328048],"delay":1022.4} +{"session_id":"sess-d46a854cf23a","input_length":2110,"output_length":307,"hash_ids":[3328049,3328050,3328051,3328052,3328053],"delay":3571.9} +{"session_id":"sess-dec58859090c","input_length":27386,"output_length":258,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3332032,3332033],"timestamp":0.0,"group_id":5} +{"session_id":"sess-dec58859090c","input_length":1225,"output_length":165,"hash_ids":[3332034,3332035,3332036],"delay":15617.8} +{"session_id":"sess-dec58859090c","input_length":1226,"output_length":831,"hash_ids":[3332037,3332038,3332039],"delay":929.7} +{"session_id":"sess-dec58859090c","input_length":2928,"output_length":30,"hash_ids":[3332040,3332041,3332042,3332043,3332044,3332045],"delay":2711.2} +{"session_id":"sess-dec58859090c","input_length":304,"output_length":214,"hash_ids":[3332046],"delay":1231.0} +{"session_id":"sess-dec58859090c","input_length":1660,"output_length":331,"hash_ids":[3332047,3332048,3332049,3332050],"delay":35354.0} +{"session_id":"sess-dec58859090c","input_length":1453,"output_length":40,"hash_ids":[3332051,3332052,3332053],"delay":2624.4} +{"session_id":"sess-dec58859090c","input_length":1285,"output_length":223,"hash_ids":[3332054,3332055,3332056],"delay":12688.1} +{"session_id":"sess-dec58859090c","input_length":2023,"output_length":199,"hash_ids":[3332057,3332058,3332059,3332060],"delay":2009.1} +{"session_id":"sess-dec58859090c","input_length":87,"output_length":284,"hash_ids":[3332061],"delay":2198.0} +{"session_id":"sess-dec58859090c","input_length":2045,"output_length":450,"hash_ids":[3332062,3332063,3332064,3332065],"delay":270.5} +{"session_id":"sess-dec58859090c","input_length":239,"output_length":173,"hash_ids":[3332066],"delay":530.8} +{"session_id":"sess-dec58859090c","input_length":148,"output_length":124,"hash_ids":[3332067],"delay":624.8} +{"session_id":"sess-dec58859090c","input_length":239,"output_length":121,"hash_ids":[3332068],"delay":168.5} +{"session_id":"sess-dec58859090c","input_length":258,"output_length":257,"hash_ids":[3332069],"delay":1284.7} +{"session_id":"sess-dec58859090c","input_length":504,"output_length":328,"hash_ids":[3332070],"delay":1574.1} +{"session_id":"sess-dec58859090c","input_length":837,"output_length":128,"hash_ids":[3332071,3332072],"delay":1137.0} +{"session_id":"sess-dec58859090c","input_length":964,"output_length":172,"hash_ids":[3332073,3332074],"delay":5048.8} +{"session_id":"sess-dec58859090c","input_length":2596,"output_length":441,"hash_ids":[3332075,3332076,3332077,3332078,3332079,3332080],"delay":889.3} +{"session_id":"sess-dec58859090c","input_length":340,"output_length":146,"hash_ids":[3332081],"delay":1881.8} +{"session_id":"sess-dec58859090c","input_length":174,"output_length":1076,"hash_ids":[3332082],"delay":142.8} +{"session_id":"sess-dec58859090c","input_length":821,"output_length":87,"hash_ids":[3332083,3332084],"delay":937.0} +{"session_id":"sess-dec58859090c","input_length":559,"output_length":389,"hash_ids":[3332085,3332086],"delay":461.7} +{"session_id":"sess-dec58859090c","input_length":462,"output_length":148,"hash_ids":[3332087],"delay":550.0} +{"session_id":"sess-dec58859090c","input_length":652,"output_length":193,"hash_ids":[3332088,3332089],"delay":173.1} +{"session_id":"sess-dec58859090c","input_length":893,"output_length":145,"hash_ids":[3332090,3332091],"delay":11095.5} +{"session_id":"sess-dec58859090c","input_length":396,"output_length":492,"hash_ids":[3332092],"delay":5993.1} +{"session_id":"sess-dec58859090c","input_length":988,"output_length":236,"hash_ids":[3332093,3332094],"delay":309.6} +{"session_id":"sess-dec58859090c","input_length":300,"output_length":743,"hash_ids":[3332095],"delay":6504.8} +{"session_id":"sess-dec58859090c","input_length":796,"output_length":297,"hash_ids":[3332096,3332097],"delay":386.8} +{"session_id":"sess-dec58859090c","input_length":1816,"output_length":77,"hash_ids":[3332098,3332099,3332100,3332101],"delay":16558.0} +{"session_id":"sess-366d961c158d","input_length":28711,"output_length":357,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3336032,3336033,3336034,3336035,3336036],"timestamp":0.0,"group_id":2} +{"session_id":"sess-366d961c158d","input_length":526,"output_length":112,"hash_ids":[3336037,3336038],"delay":3730.9} +{"session_id":"sess-366d961c158d","input_length":959,"output_length":210,"hash_ids":[3336039,3336040],"delay":10685.7} +{"session_id":"sess-366d961c158d","input_length":250,"output_length":64,"hash_ids":[3336041],"delay":4753.4} +{"session_id":"sess-366d961c158d","input_length":429,"output_length":945,"hash_ids":[3336042],"delay":71.5} +{"session_id":"sess-366d961c158d","input_length":2286,"output_length":64,"hash_ids":[3336043,3336044,3336045,3336046,3336047],"delay":1513.5} +{"session_id":"sess-366d961c158d","input_length":1982,"output_length":78,"hash_ids":[3336048,3336049,3336050,3336051],"delay":946.1} +{"session_id":"sess-366d961c158d","input_length":514,"output_length":55,"hash_ids":[3336052,3336053],"delay":10821.7} +{"session_id":"sess-366d961c158d","input_length":1170,"output_length":131,"hash_ids":[3336054,3336055,3336056],"delay":30485.7} +{"session_id":"sess-366d961c158d","input_length":210,"output_length":301,"hash_ids":[3336057],"delay":812.5} +{"session_id":"sess-366d961c158d","input_length":2387,"output_length":102,"hash_ids":[3336058,3336059,3336060,3336061,3336062],"delay":4778.0} +{"session_id":"sess-366d961c158d","input_length":1995,"output_length":532,"hash_ids":[3336063,3336064,3336065,3336066],"delay":186.2} +{"session_id":"sess-366d961c158d","input_length":788,"output_length":507,"hash_ids":[3336067,3336068],"delay":1194.7} +{"session_id":"sess-366d961c158d","input_length":747,"output_length":414,"hash_ids":[3336069,3336070],"delay":884.6} +{"session_id":"sess-366d961c158d","input_length":504,"output_length":88,"hash_ids":[3336071],"delay":5657.1} +{"session_id":"sess-366d961c158d","input_length":1249,"output_length":177,"hash_ids":[3336072,3336073,3336074],"delay":22124.7} +{"session_id":"sess-366d961c158d","input_length":1771,"output_length":254,"hash_ids":[3336075,3336076,3336077,3336078],"delay":1930.7} +{"session_id":"sess-366d961c158d","input_length":2731,"output_length":449,"hash_ids":[3336079,3336080,3336081,3336082,3336083,3336084],"delay":583.2} +{"session_id":"sess-366d961c158d","input_length":1885,"output_length":429,"hash_ids":[3336085,3336086,3336087,3336088],"delay":998.0} +{"session_id":"sess-366d961c158d","input_length":1416,"output_length":79,"hash_ids":[3336089,3336090,3336091],"delay":438.0} +{"session_id":"sess-366d961c158d","input_length":1742,"output_length":336,"hash_ids":[3336092,3336093,3336094,3336095],"delay":564.6} +{"session_id":"sess-366d961c158d","input_length":1276,"output_length":53,"hash_ids":[3336096,3336097,3336098],"delay":145.0} +{"session_id":"sess-366d961c158d","input_length":1051,"output_length":208,"hash_ids":[3336099,3336100,3336101],"delay":171.7} +{"session_id":"sess-366d961c158d","input_length":1754,"output_length":90,"hash_ids":[3336102,3336103,3336104,3336105],"delay":7264.7} +{"session_id":"sess-366d961c158d","input_length":432,"output_length":345,"hash_ids":[3336106],"delay":801.3} +{"session_id":"sess-3bd084033ae8","input_length":29605,"output_length":213,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3340032,3340033,3340034,3340035,3340036,3340037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3bd084033ae8","input_length":540,"output_length":258,"hash_ids":[3340038,3340039],"delay":992.6} +{"session_id":"sess-3bd084033ae8","input_length":577,"output_length":140,"hash_ids":[3340040,3340041],"delay":528.3} +{"session_id":"sess-3bd084033ae8","input_length":257,"output_length":141,"hash_ids":[3340042],"delay":4478.0} +{"session_id":"sess-3bd084033ae8","input_length":1020,"output_length":123,"hash_ids":[3340043,3340044],"delay":1407.5} +{"session_id":"sess-3bd084033ae8","input_length":1361,"output_length":243,"hash_ids":[3340045,3340046,3340047],"delay":519.6} +{"session_id":"sess-66a6d7d1e480","input_length":27542,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3344032,3344033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-66a6d7d1e480","input_length":504,"output_length":367,"hash_ids":[3344034],"delay":4484.8} +{"session_id":"sess-c7fd1b07874f","input_length":29023,"output_length":73,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3348032,3348033,3348034,3348035,3348036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c7fd1b07874f","input_length":1248,"output_length":76,"hash_ids":[3348037,3348038,3348039],"delay":950.6} +{"session_id":"sess-c7fd1b07874f","input_length":687,"output_length":57,"hash_ids":[3348040,3348041],"delay":417.8} +{"session_id":"sess-c7fd1b07874f","input_length":363,"output_length":148,"hash_ids":[3348042],"delay":3004.1} +{"session_id":"sess-c7fd1b07874f","input_length":709,"output_length":38,"hash_ids":[3348043,3348044],"delay":40106.3} +{"session_id":"sess-c7fd1b07874f","input_length":255,"output_length":165,"hash_ids":[3348045],"delay":4807.7} +{"session_id":"sess-c7fd1b07874f","input_length":338,"output_length":171,"hash_ids":[3348046],"delay":2224.0} +{"session_id":"sess-c7fd1b07874f","input_length":770,"output_length":477,"hash_ids":[3348047,3348048],"delay":2322.7} +{"session_id":"sess-c7fd1b07874f","input_length":659,"output_length":38,"hash_ids":[3348049,3348050],"delay":1025.5} +{"session_id":"sess-c7fd1b07874f","input_length":343,"output_length":139,"hash_ids":[3348051],"delay":4573.1} +{"session_id":"sess-c7fd1b07874f","input_length":262,"output_length":248,"hash_ids":[3348052],"delay":1915.0} +{"session_id":"sess-c7fd1b07874f","input_length":2698,"output_length":220,"hash_ids":[3348053,3348054,3348055,3348056,3348057,3348058],"delay":13366.2} +{"session_id":"sess-c7fd1b07874f","input_length":428,"output_length":266,"hash_ids":[3348059],"delay":705.4} +{"session_id":"sess-c7fd1b07874f","input_length":1324,"output_length":79,"hash_ids":[3348060,3348061,3348062],"delay":56520.6} +{"session_id":"sess-c7fd1b07874f","input_length":1099,"output_length":269,"hash_ids":[3348063,3348064,3348065],"delay":360.2} +{"session_id":"sess-c7fd1b07874f","input_length":1278,"output_length":158,"hash_ids":[3348066,3348067,3348068],"delay":192.8} +{"session_id":"sess-c7fd1b07874f","input_length":300,"output_length":65,"hash_ids":[3348069],"delay":1486.7} +{"session_id":"sess-c7fd1b07874f","input_length":476,"output_length":177,"hash_ids":[3348070],"delay":1532.8} +{"session_id":"sess-c7fd1b07874f","input_length":720,"output_length":433,"hash_ids":[3348071,3348072],"delay":1428.4} +{"session_id":"sess-c7fd1b07874f","input_length":615,"output_length":169,"hash_ids":[3348073,3348074],"delay":8995.3} +{"session_id":"sess-c7fd1b07874f","input_length":449,"output_length":469,"hash_ids":[3348075],"delay":1249.0} +{"session_id":"sess-c7fd1b07874f","input_length":1213,"output_length":205,"hash_ids":[3348076,3348077,3348078],"delay":264.5} +{"session_id":"sess-c7fd1b07874f","input_length":474,"output_length":85,"hash_ids":[3348079],"delay":1011.4} +{"session_id":"sess-c7fd1b07874f","input_length":2156,"output_length":35,"hash_ids":[3348080,3348081,3348082,3348083,3348084],"delay":751.4} +{"session_id":"sess-c7fd1b07874f","input_length":608,"output_length":69,"hash_ids":[3348085,3348086],"delay":43120.3} +{"session_id":"sess-c7fd1b07874f","input_length":1554,"output_length":657,"hash_ids":[3348087,3348088,3348089,3348090],"delay":820.4} +{"session_id":"sess-c7fd1b07874f","input_length":500,"output_length":735,"hash_ids":[3348091],"delay":38819.9} +{"session_id":"sess-c7fd1b07874f","input_length":433,"output_length":214,"hash_ids":[3348092],"delay":4787.5} +{"session_id":"sess-c7fd1b07874f","input_length":765,"output_length":559,"hash_ids":[3348093,3348094],"delay":4923.5} +{"session_id":"sess-c7fd1b07874f","input_length":603,"output_length":106,"hash_ids":[3348095,3348096],"delay":354.5} +{"session_id":"sess-c7fd1b07874f","input_length":331,"output_length":93,"hash_ids":[3348097],"delay":377.3} +{"session_id":"sess-c7fd1b07874f","input_length":351,"output_length":224,"hash_ids":[3348098],"delay":385.7} +{"session_id":"sess-c7fd1b07874f","input_length":554,"output_length":41,"hash_ids":[3348099,3348100],"delay":5252.8} +{"session_id":"sess-21a8fa063d84","input_length":26931,"output_length":383,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,3352032],"timestamp":0.0,"group_id":44} +{"session_id":"sess-21a8fa063d84","input_length":1433,"output_length":128,"hash_ids":[3352033,3352034,3352035],"delay":1781.4} +{"session_id":"sess-21a8fa063d84","input_length":985,"output_length":214,"hash_ids":[3352036,3352037],"delay":2311.9} +{"session_id":"sess-21a8fa063d84","input_length":701,"output_length":42,"hash_ids":[3352038,3352039],"delay":2807.0} +{"session_id":"sess-21a8fa063d84","input_length":211,"output_length":153,"hash_ids":[3352040],"delay":2383.4} +{"session_id":"sess-21a8fa063d84","input_length":338,"output_length":240,"hash_ids":[3352041],"delay":316.4} +{"session_id":"sess-21a8fa063d84","input_length":2598,"output_length":501,"hash_ids":[3352042,3352043,3352044,3352045,3352046,3352047],"delay":1946.8} +{"session_id":"sess-21a8fa063d84","input_length":826,"output_length":30,"hash_ids":[3352048,3352049],"delay":2177.0} +{"session_id":"sess-21a8fa063d84","input_length":487,"output_length":36,"hash_ids":[3352050],"delay":3643.9} +{"session_id":"sess-21a8fa063d84","input_length":242,"output_length":73,"hash_ids":[3352051],"delay":1269.1} +{"session_id":"sess-21a8fa063d84","input_length":415,"output_length":282,"hash_ids":[3352052],"delay":411.0} +{"session_id":"sess-21a8fa063d84","input_length":1922,"output_length":80,"hash_ids":[3352053,3352054,3352055,3352056],"delay":3000.8} +{"session_id":"sess-21a8fa063d84","input_length":119,"output_length":145,"hash_ids":[3352057],"delay":609.9} +{"session_id":"sess-21a8fa063d84","input_length":2255,"output_length":75,"hash_ids":[3352058,3352059,3352060,3352061,3352062],"delay":1140.7} +{"session_id":"sess-21a8fa063d84","input_length":412,"output_length":422,"hash_ids":[3352063],"delay":47852.3} +{"session_id":"sess-21a8fa063d84","input_length":1118,"output_length":176,"hash_ids":[3352064,3352065,3352066],"delay":5967.5} +{"session_id":"sess-21a8fa063d84","input_length":1609,"output_length":372,"hash_ids":[3352067,3352068,3352069,3352070],"delay":1191.6} +{"session_id":"sess-21a8fa063d84","input_length":1700,"output_length":139,"hash_ids":[3352071,3352072,3352073,3352074],"delay":14535.7} +{"session_id":"sess-21a8fa063d84","input_length":1337,"output_length":80,"hash_ids":[3352075,3352076,3352077],"delay":338.8} +{"session_id":"sess-21a8fa063d84","input_length":1710,"output_length":244,"hash_ids":[3352078,3352079,3352080,3352081],"delay":563.5} +{"session_id":"sess-21a8fa063d84","input_length":443,"output_length":152,"hash_ids":[3352082],"delay":7874.3} +{"session_id":"sess-21a8fa063d84","input_length":590,"output_length":68,"hash_ids":[3352083,3352084],"delay":396.3} +{"session_id":"sess-21a8fa063d84","input_length":961,"output_length":50,"hash_ids":[3352085,3352086],"delay":559.8} +{"session_id":"sess-21a8fa063d84","input_length":498,"output_length":180,"hash_ids":[3352087],"delay":1269.5} +{"session_id":"sess-43075eea0cbd","input_length":27077,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3356032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-43075eea0cbd","input_length":1051,"output_length":200,"hash_ids":[3356033,3356034,3356035],"delay":1452.9} +{"session_id":"sess-4e2bbc8c71c2","input_length":27699,"output_length":151,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3360032,3360033,3360034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4e2bbc8c71c2","input_length":562,"output_length":618,"hash_ids":[3360035,3360036],"delay":1330.7} +{"session_id":"sess-4e2bbc8c71c2","input_length":2389,"output_length":34,"hash_ids":[3360037,3360038,3360039,3360040,3360041],"delay":17554.0} +{"session_id":"sess-4e2bbc8c71c2","input_length":756,"output_length":78,"hash_ids":[3360042,3360043],"delay":491.2} +{"session_id":"sess-4e2bbc8c71c2","input_length":294,"output_length":574,"hash_ids":[3360044],"delay":736.1} +{"session_id":"sess-4e2bbc8c71c2","input_length":197,"output_length":114,"hash_ids":[3360045],"delay":14366.2} +{"session_id":"sess-4e2bbc8c71c2","input_length":1061,"output_length":541,"hash_ids":[3360046,3360047,3360048],"delay":2861.9} +{"session_id":"sess-4e2bbc8c71c2","input_length":1844,"output_length":72,"hash_ids":[3360049,3360050,3360051,3360052],"delay":22023.5} +{"session_id":"sess-4e2bbc8c71c2","input_length":1670,"output_length":100,"hash_ids":[3360053,3360054,3360055,3360056],"delay":231.2} +{"session_id":"sess-4e2bbc8c71c2","input_length":1554,"output_length":258,"hash_ids":[3360057,3360058,3360059,3360060],"delay":247.3} +{"session_id":"sess-4e2bbc8c71c2","input_length":640,"output_length":160,"hash_ids":[3360061,3360062],"delay":3304.9} +{"session_id":"sess-4e2bbc8c71c2","input_length":2044,"output_length":471,"hash_ids":[3360063,3360064,3360065,3360066],"delay":1350.1} +{"session_id":"sess-4e2bbc8c71c2","input_length":2840,"output_length":194,"hash_ids":[3360067,3360068,3360069,3360070,3360071,3360072],"delay":8043.4} +{"session_id":"sess-4e2bbc8c71c2","input_length":998,"output_length":309,"hash_ids":[3360073,3360074],"delay":1793.5} +{"session_id":"sess-4e2bbc8c71c2","input_length":491,"output_length":72,"hash_ids":[3360075],"delay":915.3} +{"session_id":"sess-4e2bbc8c71c2","input_length":1664,"output_length":123,"hash_ids":[3360076,3360077,3360078,3360079],"delay":276.3} +{"session_id":"sess-4e2bbc8c71c2","input_length":2655,"output_length":349,"hash_ids":[3360080,3360081,3360082,3360083,3360084,3360085],"delay":1405.5} +{"session_id":"sess-4e2bbc8c71c2","input_length":798,"output_length":124,"hash_ids":[3360086,3360087],"delay":3090.8} +{"session_id":"sess-4e2bbc8c71c2","input_length":1577,"output_length":94,"hash_ids":[3360088,3360089,3360090,3360091],"delay":275.6} +{"session_id":"sess-4e2bbc8c71c2","input_length":2614,"output_length":990,"hash_ids":[3360092,3360093,3360094,3360095,3360096,3360097],"delay":996.9} +{"session_id":"sess-4e2bbc8c71c2","input_length":2667,"output_length":46,"hash_ids":[3360098,3360099,3360100,3360101,3360102,3360103],"delay":539.6} +{"session_id":"sess-4e2bbc8c71c2","input_length":1266,"output_length":436,"hash_ids":[3360104,3360105,3360106],"delay":206.1} +{"session_id":"sess-4e2bbc8c71c2","input_length":606,"output_length":166,"hash_ids":[3360107,3360108],"delay":174.7} +{"session_id":"sess-efcedb4b4296","input_length":27705,"output_length":328,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,3364032,3364033,3364034],"timestamp":0.0,"group_id":20} +{"session_id":"sess-efcedb4b4296","input_length":681,"output_length":426,"hash_ids":[3364035,3364036],"delay":16240.0} +{"session_id":"sess-efcedb4b4296","input_length":2479,"output_length":196,"hash_ids":[3364037,3364038,3364039,3364040,3364041],"delay":724.7} +{"session_id":"sess-efcedb4b4296","input_length":2486,"output_length":431,"hash_ids":[3364042,3364043,3364044,3364045,3364046],"delay":573.8} +{"session_id":"sess-efcedb4b4296","input_length":1483,"output_length":229,"hash_ids":[3364047,3364048,3364049],"delay":2682.5} +{"session_id":"sess-efcedb4b4296","input_length":344,"output_length":885,"hash_ids":[3364050],"delay":578.3} +{"session_id":"sess-efcedb4b4296","input_length":1365,"output_length":68,"hash_ids":[3364051,3364052,3364053],"delay":264.1} +{"session_id":"sess-efcedb4b4296","input_length":423,"output_length":342,"hash_ids":[3364054],"delay":1241.3} +{"session_id":"sess-efcedb4b4296","input_length":1026,"output_length":163,"hash_ids":[3364055,3364056,3364057],"delay":3866.0} +{"session_id":"sess-efcedb4b4296","input_length":1124,"output_length":1215,"hash_ids":[3364058,3364059,3364060],"delay":92.7} +{"session_id":"sess-efcedb4b4296","input_length":2700,"output_length":32,"hash_ids":[3364061,3364062,3364063,3364064,3364065,3364066],"delay":291.1} +{"session_id":"sess-efcedb4b4296","input_length":568,"output_length":33,"hash_ids":[3364067,3364068],"delay":1993.4} +{"session_id":"sess-efcedb4b4296","input_length":315,"output_length":480,"hash_ids":[3364069],"delay":800.0} +{"session_id":"sess-efcedb4b4296","input_length":2908,"output_length":213,"hash_ids":[3364070,3364071,3364072,3364073,3364074,3364075],"delay":24349.7} +{"session_id":"sess-efcedb4b4296","input_length":471,"output_length":161,"hash_ids":[3364076],"delay":765.4} +{"session_id":"sess-efcedb4b4296","input_length":1822,"output_length":413,"hash_ids":[3364077,3364078,3364079,3364080],"delay":174.9} +{"session_id":"sess-efcedb4b4296","input_length":2471,"output_length":1039,"hash_ids":[3364081,3364082,3364083,3364084,3364085],"delay":5119.9} +{"session_id":"sess-efcedb4b4296","input_length":869,"output_length":771,"hash_ids":[3364086,3364087],"delay":779.9} +{"session_id":"sess-efcedb4b4296","input_length":478,"output_length":163,"hash_ids":[3364088],"delay":759.8} +{"session_id":"sess-efcedb4b4296","input_length":217,"output_length":512,"hash_ids":[3364089],"delay":684.8} +{"session_id":"sess-efcedb4b4296","input_length":1051,"output_length":524,"hash_ids":[3364090,3364091,3364092],"delay":7206.0} +{"session_id":"sess-efcedb4b4296","input_length":1687,"output_length":63,"hash_ids":[3364093,3364094,3364095,3364096],"delay":925.3} +{"session_id":"sess-4d9036112998","input_length":26906,"output_length":559,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3368032],"timestamp":0.0,"group_id":17} +{"session_id":"sess-d42805853da1","input_length":26099,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d42805853da1","input_length":2222,"output_length":187,"hash_ids":[3368033,3368034,3368035,3368036,3368037],"delay":893.1} +{"session_id":"sess-d42805853da1","input_length":1033,"output_length":55,"hash_ids":[3368038,3368039,3368040],"delay":879.7} +{"session_id":"sess-d42805853da1","input_length":1645,"output_length":122,"hash_ids":[3368041,3368042,3368043,3368044],"delay":494.1} +{"session_id":"sess-d42805853da1","input_length":1497,"output_length":489,"hash_ids":[3368045,3368046,3368047],"delay":1290.8} +{"session_id":"sess-8e16f5fa4953","input_length":30873,"output_length":49,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,3376032,3376033,3376034,3376035,3376036,3376037,3376038,3376039,3376040],"timestamp":0.0,"group_id":47} +{"session_id":"sess-8e16f5fa4953","input_length":1321,"output_length":787,"hash_ids":[3376041,3376042,3376043],"delay":4293.9} +{"session_id":"sess-8e16f5fa4953","input_length":2632,"output_length":109,"hash_ids":[3376044,3376045,3376046,3376047,3376048,3376049],"delay":3704.3} +{"session_id":"sess-8e16f5fa4953","input_length":2297,"output_length":120,"hash_ids":[3376050,3376051,3376052,3376053,3376054],"delay":715.4} +{"session_id":"sess-8e16f5fa4953","input_length":1702,"output_length":162,"hash_ids":[3376055,3376056,3376057,3376058],"delay":493.5} +{"session_id":"sess-8e16f5fa4953","input_length":323,"output_length":629,"hash_ids":[3376059],"delay":381.5} +{"session_id":"sess-8e16f5fa4953","input_length":258,"output_length":394,"hash_ids":[3376060],"delay":3294.1} +{"session_id":"sess-8e16f5fa4953","input_length":436,"output_length":286,"hash_ids":[3376061],"delay":16070.0} +{"session_id":"sess-8e16f5fa4953","input_length":327,"output_length":229,"hash_ids":[3376062],"delay":1057.2} +{"session_id":"sess-8e16f5fa4953","input_length":355,"output_length":917,"hash_ids":[3376063],"delay":1627.3} +{"session_id":"sess-8e16f5fa4953","input_length":815,"output_length":72,"hash_ids":[3376064,3376065],"delay":12510.0} +{"session_id":"sess-8e16f5fa4953","input_length":1167,"output_length":30,"hash_ids":[3376066,3376067,3376068],"delay":234.9} +{"session_id":"sess-8e16f5fa4953","input_length":354,"output_length":79,"hash_ids":[3376069],"delay":944.7} +{"session_id":"sess-8e16f5fa4953","input_length":1320,"output_length":588,"hash_ids":[3376070,3376071,3376072],"delay":29623.2} +{"session_id":"sess-8e16f5fa4953","input_length":261,"output_length":192,"hash_ids":[3376073],"delay":1644.0} +{"session_id":"sess-8e16f5fa4953","input_length":1147,"output_length":636,"hash_ids":[3376074,3376075,3376076],"delay":327.7} +{"session_id":"sess-8e16f5fa4953","input_length":1657,"output_length":571,"hash_ids":[3376077,3376078,3376079,3376080],"delay":382.8} +{"session_id":"sess-8e16f5fa4953","input_length":2986,"output_length":248,"hash_ids":[3376081,3376082,3376083,3376084,3376085,3376086],"delay":5852.4} +{"session_id":"sess-8e16f5fa4953","input_length":880,"output_length":49,"hash_ids":[3376087,3376088],"delay":771.9} +{"session_id":"sess-8e16f5fa4953","input_length":557,"output_length":1076,"hash_ids":[3376089,3376090],"delay":93.7} +{"session_id":"sess-8e16f5fa4953","input_length":610,"output_length":642,"hash_ids":[3376091,3376092],"delay":998.1} +{"session_id":"sess-8e16f5fa4953","input_length":309,"output_length":199,"hash_ids":[3376093],"delay":691.5} +{"session_id":"sess-8e16f5fa4953","input_length":747,"output_length":433,"hash_ids":[3376094,3376095],"delay":25413.0} +{"session_id":"sess-8e16f5fa4953","input_length":568,"output_length":90,"hash_ids":[3376096,3376097],"delay":104.8} +{"session_id":"sess-8e16f5fa4953","input_length":516,"output_length":480,"hash_ids":[3376098,3376099],"delay":106.1} +{"session_id":"sess-8e16f5fa4953","input_length":1041,"output_length":777,"hash_ids":[3376100,3376101,3376102],"delay":409.0} +{"session_id":"sess-a205094d6721","input_length":27566,"output_length":187,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,3380032,3380033],"timestamp":0.0,"group_id":9} +{"session_id":"sess-a205094d6721","input_length":1300,"output_length":640,"hash_ids":[3380034,3380035,3380036],"delay":1303.0} +{"session_id":"sess-a205094d6721","input_length":599,"output_length":175,"hash_ids":[3380037,3380038],"delay":1436.2} +{"session_id":"sess-a205094d6721","input_length":561,"output_length":487,"hash_ids":[3380039,3380040],"delay":275.2} +{"session_id":"sess-a205094d6721","input_length":1724,"output_length":46,"hash_ids":[3380041,3380042,3380043,3380044],"delay":376.9} +{"session_id":"sess-a205094d6721","input_length":1794,"output_length":215,"hash_ids":[3380045,3380046,3380047,3380048],"delay":1216.1} +{"session_id":"sess-a205094d6721","input_length":928,"output_length":168,"hash_ids":[3380049,3380050],"delay":3552.8} +{"session_id":"sess-a205094d6721","input_length":1950,"output_length":448,"hash_ids":[3380051,3380052,3380053,3380054],"delay":1115.1} +{"session_id":"sess-a205094d6721","input_length":2841,"output_length":125,"hash_ids":[3380055,3380056,3380057,3380058,3380059,3380060],"delay":216.1} +{"session_id":"sess-a205094d6721","input_length":603,"output_length":30,"hash_ids":[3380061,3380062],"delay":609.5} +{"session_id":"sess-a205094d6721","input_length":1834,"output_length":107,"hash_ids":[3380063,3380064,3380065,3380066],"delay":800.2} +{"session_id":"sess-a205094d6721","input_length":1502,"output_length":166,"hash_ids":[3380067,3380068,3380069],"delay":753.7} +{"session_id":"sess-a205094d6721","input_length":612,"output_length":327,"hash_ids":[3380070,3380071],"delay":22368.7} +{"session_id":"sess-a205094d6721","input_length":982,"output_length":30,"hash_ids":[3380072,3380073],"delay":700.4} +{"session_id":"sess-a205094d6721","input_length":2872,"output_length":177,"hash_ids":[3380074,3380075,3380076,3380077,3380078,3380079],"delay":1826.9} +{"session_id":"sess-a205094d6721","input_length":2293,"output_length":166,"hash_ids":[3380080,3380081,3380082,3380083,3380084],"delay":1510.1} +{"session_id":"sess-a205094d6721","input_length":780,"output_length":121,"hash_ids":[3380085,3380086],"delay":414.1} +{"session_id":"sess-a205094d6721","input_length":688,"output_length":205,"hash_ids":[3380087,3380088],"delay":1478.6} +{"session_id":"sess-a205094d6721","input_length":1319,"output_length":30,"hash_ids":[3380089,3380090,3380091],"delay":2078.1} +{"session_id":"sess-a205094d6721","input_length":876,"output_length":324,"hash_ids":[3380092,3380093],"delay":345.5} +{"session_id":"sess-a205094d6721","input_length":694,"output_length":96,"hash_ids":[3380094,3380095],"delay":516.5} +{"session_id":"sess-a205094d6721","input_length":2051,"output_length":169,"hash_ids":[3380096,3380097,3380098,3380099,3380100],"delay":437.0} +{"session_id":"sess-a205094d6721","input_length":945,"output_length":30,"hash_ids":[3380101,3380102],"delay":1548.4} +{"session_id":"sess-a205094d6721","input_length":796,"output_length":827,"hash_ids":[3380103,3380104],"delay":668.9} +{"session_id":"sess-a205094d6721","input_length":1168,"output_length":289,"hash_ids":[3380105,3380106,3380107],"delay":298.1} +{"session_id":"sess-a205094d6721","input_length":256,"output_length":106,"hash_ids":[3380108],"delay":515.0} +{"session_id":"sess-67f6c47b08c6","input_length":26808,"output_length":123,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3384032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-67f6c47b08c6","input_length":784,"output_length":85,"hash_ids":[3384033,3384034],"delay":1220.3} +{"session_id":"sess-67f6c47b08c6","input_length":533,"output_length":101,"hash_ids":[3384035,3384036],"delay":28333.1} +{"session_id":"sess-7bcaf3f9c33a","input_length":26402,"output_length":439,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251],"timestamp":0.0,"group_id":31} +{"session_id":"sess-7bcaf3f9c33a","input_length":1606,"output_length":437,"hash_ids":[3384037,3384038,3384039,3384040],"delay":844.8} +{"session_id":"sess-7bcaf3f9c33a","input_length":414,"output_length":289,"hash_ids":[3384041],"delay":2813.9} +{"session_id":"sess-7bcaf3f9c33a","input_length":1993,"output_length":45,"hash_ids":[3384042,3384043,3384044,3384045],"delay":1344.4} +{"session_id":"sess-7bcaf3f9c33a","input_length":709,"output_length":202,"hash_ids":[3384046,3384047],"delay":13535.9} +{"session_id":"sess-7bcaf3f9c33a","input_length":623,"output_length":303,"hash_ids":[3384048,3384049],"delay":1078.7} +{"session_id":"sess-7bcaf3f9c33a","input_length":1374,"output_length":63,"hash_ids":[3384050,3384051,3384052],"delay":725.5} +{"session_id":"sess-7bcaf3f9c33a","input_length":241,"output_length":435,"hash_ids":[3384053],"delay":1522.8} +{"session_id":"sess-7bcaf3f9c33a","input_length":2910,"output_length":207,"hash_ids":[3384054,3384055,3384056,3384057,3384058,3384059],"delay":44696.7} +{"session_id":"sess-7bcaf3f9c33a","input_length":607,"output_length":129,"hash_ids":[3384060,3384061],"delay":394.2} +{"session_id":"sess-7bcaf3f9c33a","input_length":617,"output_length":720,"hash_ids":[3384062,3384063],"delay":294.7} +{"session_id":"sess-a1b4db3e69a9","input_length":28615,"output_length":195,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3392032,3392033,3392034,3392035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a1b4db3e69a9","input_length":1713,"output_length":102,"hash_ids":[3392036,3392037,3392038,3392039],"delay":1740.2} +{"session_id":"sess-a1b4db3e69a9","input_length":1554,"output_length":408,"hash_ids":[3392040,3392041,3392042,3392043],"delay":11740.4} +{"session_id":"sess-a1b4db3e69a9","input_length":1182,"output_length":182,"hash_ids":[3392044,3392045,3392046],"delay":974.9} +{"session_id":"sess-a1b4db3e69a9","input_length":598,"output_length":264,"hash_ids":[3392047,3392048],"delay":855.6} +{"session_id":"sess-a1b4db3e69a9","input_length":1860,"output_length":130,"hash_ids":[3392049,3392050,3392051,3392052],"delay":3784.7} +{"session_id":"sess-a1b4db3e69a9","input_length":761,"output_length":67,"hash_ids":[3392053,3392054],"delay":609.7} +{"session_id":"sess-a1b4db3e69a9","input_length":693,"output_length":270,"hash_ids":[3392055,3392056],"delay":15890.1} +{"session_id":"sess-a1b4db3e69a9","input_length":1110,"output_length":384,"hash_ids":[3392057,3392058,3392059],"delay":1716.4} +{"session_id":"sess-a1b4db3e69a9","input_length":657,"output_length":102,"hash_ids":[3392060,3392061],"delay":625.5} +{"session_id":"sess-a1b4db3e69a9","input_length":571,"output_length":136,"hash_ids":[3392062,3392063],"delay":831.3} +{"session_id":"sess-a1b4db3e69a9","input_length":1932,"output_length":484,"hash_ids":[3392064,3392065,3392066,3392067],"delay":22763.7} +{"session_id":"sess-a1b4db3e69a9","input_length":2902,"output_length":242,"hash_ids":[3392068,3392069,3392070,3392071,3392072,3392073],"delay":398.6} +{"session_id":"sess-a1b4db3e69a9","input_length":749,"output_length":109,"hash_ids":[3392074,3392075],"delay":2216.7} +{"session_id":"sess-a1b4db3e69a9","input_length":2887,"output_length":130,"hash_ids":[3392076,3392077,3392078,3392079,3392080,3392081],"delay":215.1} +{"session_id":"sess-0434628ab2d0","input_length":27030,"output_length":91,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3396032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0434628ab2d0","input_length":1976,"output_length":89,"hash_ids":[3396033,3396034,3396035,3396036],"delay":321.4} +{"session_id":"sess-0434628ab2d0","input_length":966,"output_length":179,"hash_ids":[3396037,3396038],"delay":648.0} +{"session_id":"sess-0434628ab2d0","input_length":112,"output_length":291,"hash_ids":[3396039],"delay":1235.9} +{"session_id":"sess-378724d32685","input_length":31207,"output_length":60,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,3400032,3400033,3400034,3400035,3400036,3400037,3400038,3400039,3400040],"timestamp":0.0,"group_id":10} +{"session_id":"sess-378724d32685","input_length":190,"output_length":1021,"hash_ids":[3400041],"delay":46469.7} +{"session_id":"sess-378724d32685","input_length":709,"output_length":48,"hash_ids":[3400042,3400043],"delay":5395.8} +{"session_id":"sess-378724d32685","input_length":1404,"output_length":547,"hash_ids":[3400044,3400045,3400046],"delay":1837.6} +{"session_id":"sess-378724d32685","input_length":1257,"output_length":280,"hash_ids":[3400047,3400048,3400049],"delay":662.3} +{"session_id":"sess-378724d32685","input_length":973,"output_length":130,"hash_ids":[3400050,3400051],"delay":6340.6} +{"session_id":"sess-378724d32685","input_length":2099,"output_length":187,"hash_ids":[3400052,3400053,3400054,3400055,3400056],"delay":2033.5} +{"session_id":"sess-378724d32685","input_length":2522,"output_length":541,"hash_ids":[3400057,3400058,3400059,3400060,3400061],"delay":651.5} +{"session_id":"sess-378724d32685","input_length":443,"output_length":305,"hash_ids":[3400062],"delay":845.9} +{"session_id":"sess-378724d32685","input_length":491,"output_length":201,"hash_ids":[3400063],"delay":568.1} +{"session_id":"sess-378724d32685","input_length":1028,"output_length":175,"hash_ids":[3400064,3400065,3400066],"delay":1819.0} +{"session_id":"sess-378724d32685","input_length":192,"output_length":909,"hash_ids":[3400067],"delay":5328.0} +{"session_id":"sess-378724d32685","input_length":202,"output_length":30,"hash_ids":[3400068],"delay":474.3} +{"session_id":"sess-378724d32685","input_length":882,"output_length":168,"hash_ids":[3400069,3400070],"delay":216.3} +{"session_id":"sess-378724d32685","input_length":244,"output_length":202,"hash_ids":[3400071],"delay":1347.2} +{"session_id":"sess-378724d32685","input_length":1173,"output_length":475,"hash_ids":[3400072,3400073,3400074],"delay":7867.1} +{"session_id":"sess-378724d32685","input_length":759,"output_length":782,"hash_ids":[3400075,3400076],"delay":1917.2} +{"session_id":"sess-378724d32685","input_length":2038,"output_length":118,"hash_ids":[3400077,3400078,3400079,3400080],"delay":7850.6} +{"session_id":"sess-378724d32685","input_length":2394,"output_length":322,"hash_ids":[3400081,3400082,3400083,3400084,3400085],"delay":93.8} +{"session_id":"sess-378724d32685","input_length":921,"output_length":269,"hash_ids":[3400086,3400087],"delay":333.7} +{"session_id":"sess-378724d32685","input_length":1477,"output_length":52,"hash_ids":[3400088,3400089,3400090],"delay":26404.4} +{"session_id":"sess-378724d32685","input_length":108,"output_length":119,"hash_ids":[3400091],"delay":13657.5} +{"session_id":"sess-378724d32685","input_length":365,"output_length":427,"hash_ids":[3400092],"delay":20571.4} +{"session_id":"sess-378724d32685","input_length":1139,"output_length":204,"hash_ids":[3400093,3400094,3400095],"delay":502.2} +{"session_id":"sess-378724d32685","input_length":1066,"output_length":63,"hash_ids":[3400096,3400097,3400098],"delay":847.0} +{"session_id":"sess-378724d32685","input_length":633,"output_length":1068,"hash_ids":[3400099,3400100],"delay":435.4} +{"session_id":"sess-db55d19f91ea","input_length":37153,"output_length":231,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3404032,3404033,3404034,3404035,3404036,3404037,3404038,3404039,3404040,3404041,3404042,3404043,3404044,3404045,3404046,3404047,3404048,3404049,3404050,3404051,3404052],"timestamp":0.0,"group_id":2} +{"session_id":"sess-db55d19f91ea","input_length":224,"output_length":121,"hash_ids":[3404053],"delay":235.5} +{"session_id":"sess-db55d19f91ea","input_length":156,"output_length":163,"hash_ids":[3404054],"delay":617.4} +{"session_id":"sess-db55d19f91ea","input_length":291,"output_length":202,"hash_ids":[3404055],"delay":22211.7} +{"session_id":"sess-db55d19f91ea","input_length":2669,"output_length":139,"hash_ids":[3404056,3404057,3404058,3404059,3404060,3404061],"delay":28469.1} +{"session_id":"sess-db55d19f91ea","input_length":2851,"output_length":208,"hash_ids":[3404062,3404063,3404064,3404065,3404066,3404067],"delay":709.4} +{"session_id":"sess-db55d19f91ea","input_length":867,"output_length":364,"hash_ids":[3404068,3404069],"delay":239.9} +{"session_id":"sess-db55d19f91ea","input_length":186,"output_length":102,"hash_ids":[3404070],"delay":314.7} +{"session_id":"sess-db55d19f91ea","input_length":2330,"output_length":136,"hash_ids":[3404071,3404072,3404073,3404074,3404075],"delay":4128.3} +{"session_id":"sess-db55d19f91ea","input_length":953,"output_length":329,"hash_ids":[3404076,3404077],"delay":7669.1} +{"session_id":"sess-db55d19f91ea","input_length":519,"output_length":151,"hash_ids":[3404078,3404079],"delay":1555.2} +{"session_id":"sess-db55d19f91ea","input_length":669,"output_length":194,"hash_ids":[3404080,3404081],"delay":1007.2} +{"session_id":"sess-db55d19f91ea","input_length":1745,"output_length":244,"hash_ids":[3404082,3404083,3404084,3404085],"delay":273.5} +{"session_id":"sess-0b2ea99c3fdb","input_length":37654,"output_length":179,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3408032,3408033,3408034,3408035,3408036,3408037,3408038,3408039,3408040,3408041,3408042,3408043,3408044,3408045,3408046,3408047,3408048,3408049,3408050,3408051,3408052,3408053],"timestamp":0.0,"group_id":17} +{"session_id":"sess-0b2ea99c3fdb","input_length":189,"output_length":118,"hash_ids":[3408054],"delay":433.7} +{"session_id":"sess-0b2ea99c3fdb","input_length":1015,"output_length":51,"hash_ids":[3408055,3408056],"delay":2631.5} +{"session_id":"sess-0b2ea99c3fdb","input_length":1453,"output_length":305,"hash_ids":[3408057,3408058,3408059],"delay":956.1} +{"session_id":"sess-0b2ea99c3fdb","input_length":423,"output_length":64,"hash_ids":[3408060],"delay":1182.3} +{"session_id":"sess-0b2ea99c3fdb","input_length":1682,"output_length":175,"hash_ids":[3408061,3408062,3408063,3408064],"delay":200.7} +{"session_id":"sess-38c32df68c39","input_length":27672,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3412032,3412033,3412034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-38c32df68c39","input_length":2761,"output_length":209,"hash_ids":[3412035,3412036,3412037,3412038,3412039,3412040],"delay":4313.0} +{"session_id":"sess-38c32df68c39","input_length":1649,"output_length":161,"hash_ids":[3412041,3412042,3412043,3412044],"delay":857.6} +{"session_id":"sess-38c32df68c39","input_length":766,"output_length":44,"hash_ids":[3412045,3412046],"delay":1784.9} +{"session_id":"sess-38c32df68c39","input_length":661,"output_length":138,"hash_ids":[3412047,3412048],"delay":515.3} +{"session_id":"sess-38c32df68c39","input_length":358,"output_length":231,"hash_ids":[3412049],"delay":1391.0} +{"session_id":"sess-38c32df68c39","input_length":2907,"output_length":168,"hash_ids":[3412050,3412051,3412052,3412053,3412054,3412055],"delay":992.8} +{"session_id":"sess-38c32df68c39","input_length":2250,"output_length":170,"hash_ids":[3412056,3412057,3412058,3412059,3412060],"delay":1065.8} +{"session_id":"sess-38c32df68c39","input_length":1418,"output_length":72,"hash_ids":[3412061,3412062,3412063],"delay":7383.4} +{"session_id":"sess-38c32df68c39","input_length":467,"output_length":45,"hash_ids":[3412064],"delay":914.7} +{"session_id":"sess-38c32df68c39","input_length":950,"output_length":571,"hash_ids":[3412065,3412066],"delay":1102.9} +{"session_id":"sess-38c32df68c39","input_length":396,"output_length":474,"hash_ids":[3412067],"delay":256.4} +{"session_id":"sess-c516ee32163a","input_length":27442,"output_length":401,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,3416032,3416033],"timestamp":0.0,"group_id":44} +{"session_id":"sess-c516ee32163a","input_length":1352,"output_length":377,"hash_ids":[3416034,3416035,3416036],"delay":607.3} +{"session_id":"sess-c516ee32163a","input_length":2742,"output_length":210,"hash_ids":[3416037,3416038,3416039,3416040,3416041,3416042],"delay":4873.5} +{"session_id":"sess-c516ee32163a","input_length":432,"output_length":1154,"hash_ids":[3416043],"delay":2165.7} +{"session_id":"sess-c516ee32163a","input_length":592,"output_length":137,"hash_ids":[3416044,3416045],"delay":4167.0} +{"session_id":"sess-c516ee32163a","input_length":367,"output_length":93,"hash_ids":[3416046],"delay":3523.3} +{"session_id":"sess-c516ee32163a","input_length":89,"output_length":85,"hash_ids":[3416047],"delay":2117.2} +{"session_id":"sess-c516ee32163a","input_length":399,"output_length":502,"hash_ids":[3416048],"delay":3249.5} +{"session_id":"sess-c516ee32163a","input_length":1509,"output_length":60,"hash_ids":[3416049,3416050,3416051],"delay":4503.5} +{"session_id":"sess-c516ee32163a","input_length":1895,"output_length":234,"hash_ids":[3416052,3416053,3416054,3416055],"delay":3323.3} +{"session_id":"sess-c516ee32163a","input_length":1140,"output_length":422,"hash_ids":[3416056,3416057,3416058],"delay":3204.1} +{"session_id":"sess-c516ee32163a","input_length":1018,"output_length":238,"hash_ids":[3416059,3416060],"delay":21391.4} +{"session_id":"sess-c516ee32163a","input_length":1795,"output_length":563,"hash_ids":[3416061,3416062,3416063,3416064],"delay":975.1} +{"session_id":"sess-c516ee32163a","input_length":861,"output_length":537,"hash_ids":[3416065,3416066],"delay":16771.4} +{"session_id":"sess-c516ee32163a","input_length":2147,"output_length":201,"hash_ids":[3416067,3416068,3416069,3416070,3416071],"delay":853.2} +{"session_id":"sess-c516ee32163a","input_length":1032,"output_length":106,"hash_ids":[3416072,3416073,3416074],"delay":691.3} +{"session_id":"sess-c516ee32163a","input_length":1445,"output_length":30,"hash_ids":[3416075,3416076,3416077],"delay":3106.6} +{"session_id":"sess-c516ee32163a","input_length":1187,"output_length":953,"hash_ids":[3416078,3416079,3416080],"delay":2641.0} +{"session_id":"sess-c516ee32163a","input_length":841,"output_length":303,"hash_ids":[3416081,3416082],"delay":313.3} +{"session_id":"sess-c516ee32163a","input_length":2472,"output_length":68,"hash_ids":[3416083,3416084,3416085,3416086,3416087],"delay":3744.4} +{"session_id":"sess-98cb827ab821","input_length":26963,"output_length":127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3420032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-98cb827ab821","input_length":872,"output_length":31,"hash_ids":[3420033,3420034],"delay":10859.5} +{"session_id":"sess-98cb827ab821","input_length":424,"output_length":284,"hash_ids":[3420035],"delay":3120.5} +{"session_id":"sess-98cb827ab821","input_length":288,"output_length":30,"hash_ids":[3420036],"delay":2937.4} +{"session_id":"sess-98cb827ab821","input_length":804,"output_length":986,"hash_ids":[3420037,3420038],"delay":784.0} +{"session_id":"sess-98cb827ab821","input_length":539,"output_length":365,"hash_ids":[3420039,3420040],"delay":14582.6} +{"session_id":"sess-98cb827ab821","input_length":491,"output_length":69,"hash_ids":[3420041],"delay":2377.4} +{"session_id":"sess-98cb827ab821","input_length":1360,"output_length":376,"hash_ids":[3420042,3420043,3420044],"delay":4652.6} +{"session_id":"sess-98cb827ab821","input_length":1493,"output_length":59,"hash_ids":[3420045,3420046,3420047],"delay":542.4} +{"session_id":"sess-98cb827ab821","input_length":921,"output_length":150,"hash_ids":[3420048,3420049],"delay":3388.3} +{"session_id":"sess-98cb827ab821","input_length":1451,"output_length":141,"hash_ids":[3420050,3420051,3420052],"delay":1815.1} +{"session_id":"sess-98cb827ab821","input_length":250,"output_length":302,"hash_ids":[3420053],"delay":2278.0} +{"session_id":"sess-98cb827ab821","input_length":317,"output_length":304,"hash_ids":[3420054],"delay":232.9} +{"session_id":"sess-98cb827ab821","input_length":2139,"output_length":538,"hash_ids":[3420055,3420056,3420057,3420058,3420059],"delay":439.3} +{"session_id":"sess-98cb827ab821","input_length":1287,"output_length":326,"hash_ids":[3420060,3420061,3420062],"delay":789.5} +{"session_id":"sess-98cb827ab821","input_length":1214,"output_length":418,"hash_ids":[3420063,3420064,3420065],"delay":13939.2} +{"session_id":"sess-98cb827ab821","input_length":233,"output_length":485,"hash_ids":[3420066],"delay":917.1} +{"session_id":"sess-98cb827ab821","input_length":562,"output_length":807,"hash_ids":[3420067,3420068],"delay":840.2} +{"session_id":"sess-98cb827ab821","input_length":982,"output_length":309,"hash_ids":[3420069,3420070],"delay":200.6} +{"session_id":"sess-98cb827ab821","input_length":1776,"output_length":275,"hash_ids":[3420071,3420072,3420073,3420074],"delay":5737.7} +{"session_id":"sess-98cb827ab821","input_length":991,"output_length":49,"hash_ids":[3420075,3420076],"delay":1033.6} +{"session_id":"sess-98cb827ab821","input_length":1225,"output_length":454,"hash_ids":[3420077,3420078,3420079],"delay":1105.0} +{"session_id":"sess-98cb827ab821","input_length":970,"output_length":323,"hash_ids":[3420080,3420081],"delay":9643.6} +{"session_id":"sess-98cb827ab821","input_length":570,"output_length":81,"hash_ids":[3420082,3420083],"delay":413.2} +{"session_id":"sess-98cb827ab821","input_length":2038,"output_length":30,"hash_ids":[3420084,3420085,3420086,3420087],"delay":10520.5} +{"session_id":"sess-98cb827ab821","input_length":120,"output_length":30,"hash_ids":[3420088],"delay":8193.7} +{"session_id":"sess-98cb827ab821","input_length":664,"output_length":243,"hash_ids":[3420089,3420090],"delay":585.5} +{"session_id":"sess-98cb827ab821","input_length":1500,"output_length":101,"hash_ids":[3420091,3420092,3420093],"delay":15392.1} +{"session_id":"sess-98cb827ab821","input_length":1722,"output_length":214,"hash_ids":[3420094,3420095,3420096,3420097],"delay":1631.3} +{"session_id":"sess-98cb827ab821","input_length":2205,"output_length":130,"hash_ids":[3420098,3420099,3420100,3420101,3420102],"delay":494.7} +{"session_id":"sess-98cb827ab821","input_length":475,"output_length":103,"hash_ids":[3420103],"delay":8718.7} +{"session_id":"sess-2947752bd03c","input_length":36447,"output_length":112,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3424032,3424033,3424034,3424035,3424036,3424037,3424038,3424039,3424040,3424041,3424042,3424043,3424044,3424045,3424046,3424047,3424048,3424049,3424050,3424051],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2947752bd03c","input_length":2778,"output_length":319,"hash_ids":[3424052,3424053,3424054,3424055,3424056,3424057],"delay":4379.9} +{"session_id":"sess-2947752bd03c","input_length":1096,"output_length":111,"hash_ids":[3424058,3424059,3424060],"delay":762.4} +{"session_id":"sess-2947752bd03c","input_length":2790,"output_length":85,"hash_ids":[3424061,3424062,3424063,3424064,3424065,3424066],"delay":939.9} +{"session_id":"sess-2947752bd03c","input_length":799,"output_length":166,"hash_ids":[3424067,3424068],"delay":839.9} +{"session_id":"sess-2947752bd03c","input_length":1021,"output_length":161,"hash_ids":[3424069,3424070],"delay":15962.9} +{"session_id":"sess-2947752bd03c","input_length":634,"output_length":303,"hash_ids":[3424071,3424072],"delay":289.4} +{"session_id":"sess-2947752bd03c","input_length":167,"output_length":850,"hash_ids":[3424073],"delay":310.3} +{"session_id":"sess-2947752bd03c","input_length":2315,"output_length":71,"hash_ids":[3424074,3424075,3424076,3424077,3424078],"delay":2484.6} +{"session_id":"sess-2947752bd03c","input_length":1826,"output_length":208,"hash_ids":[3424079,3424080,3424081,3424082],"delay":584.1} +{"session_id":"sess-2947752bd03c","input_length":1059,"output_length":289,"hash_ids":[3424083,3424084,3424085],"delay":8008.2} +{"session_id":"sess-2947752bd03c","input_length":1083,"output_length":174,"hash_ids":[3424086,3424087,3424088],"delay":13928.9} +{"session_id":"sess-2947752bd03c","input_length":1123,"output_length":176,"hash_ids":[3424089,3424090,3424091],"delay":281.5} +{"session_id":"sess-2947752bd03c","input_length":628,"output_length":104,"hash_ids":[3424092,3424093],"delay":3324.4} +{"session_id":"sess-2947752bd03c","input_length":353,"output_length":48,"hash_ids":[3424094],"delay":319.2} +{"session_id":"sess-2947752bd03c","input_length":266,"output_length":663,"hash_ids":[3424095],"delay":422.6} +{"session_id":"sess-2947752bd03c","input_length":502,"output_length":268,"hash_ids":[3424096],"delay":902.6} +{"session_id":"sess-2947752bd03c","input_length":655,"output_length":104,"hash_ids":[3424097,3424098],"delay":15851.2} +{"session_id":"sess-e880b9f5e2c6","input_length":26219,"output_length":410,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451],"timestamp":0.0,"group_id":47} +{"session_id":"sess-e880b9f5e2c6","input_length":1139,"output_length":109,"hash_ids":[3424099,3424100,3424101],"delay":15391.9} +{"session_id":"sess-e880b9f5e2c6","input_length":1028,"output_length":63,"hash_ids":[3424102,3424103,3424104],"delay":1273.8} +{"session_id":"sess-e880b9f5e2c6","input_length":1380,"output_length":296,"hash_ids":[3424105,3424106,3424107],"delay":529.7} +{"session_id":"sess-e880b9f5e2c6","input_length":774,"output_length":157,"hash_ids":[3424108,3424109],"delay":682.4} +{"session_id":"sess-e880b9f5e2c6","input_length":157,"output_length":159,"hash_ids":[3424110],"delay":4267.1} +{"session_id":"sess-e880b9f5e2c6","input_length":662,"output_length":494,"hash_ids":[3424111,3424112],"delay":873.7} +{"session_id":"sess-e880b9f5e2c6","input_length":1032,"output_length":51,"hash_ids":[3424113,3424114,3424115],"delay":2855.7} +{"session_id":"sess-e880b9f5e2c6","input_length":2790,"output_length":284,"hash_ids":[3424116,3424117,3424118,3424119,3424120,3424121],"delay":3687.2} +{"session_id":"sess-e880b9f5e2c6","input_length":994,"output_length":433,"hash_ids":[3424122,3424123],"delay":1698.8} +{"session_id":"sess-e880b9f5e2c6","input_length":1527,"output_length":334,"hash_ids":[3424124,3424125,3424126],"delay":12076.1} +{"session_id":"sess-e880b9f5e2c6","input_length":1036,"output_length":212,"hash_ids":[3424127,3424128,3424129],"delay":4296.7} +{"session_id":"sess-155d2053731a","input_length":26766,"output_length":516,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3432032],"timestamp":0.0,"group_id":19} +{"session_id":"sess-155d2053731a","input_length":1114,"output_length":68,"hash_ids":[3432033,3432034,3432035],"delay":27015.8} +{"session_id":"sess-155d2053731a","input_length":740,"output_length":94,"hash_ids":[3432036,3432037],"delay":1660.8} +{"session_id":"sess-155d2053731a","input_length":2744,"output_length":104,"hash_ids":[3432038,3432039,3432040,3432041,3432042,3432043],"delay":1638.4} +{"session_id":"sess-155d2053731a","input_length":600,"output_length":231,"hash_ids":[3432044,3432045],"delay":1430.1} +{"session_id":"sess-155d2053731a","input_length":479,"output_length":271,"hash_ids":[3432046],"delay":317.7} +{"session_id":"sess-155d2053731a","input_length":917,"output_length":72,"hash_ids":[3432047,3432048],"delay":478.4} +{"session_id":"sess-155d2053731a","input_length":714,"output_length":352,"hash_ids":[3432049,3432050],"delay":879.1} +{"session_id":"sess-155d2053731a","input_length":631,"output_length":269,"hash_ids":[3432051,3432052],"delay":1087.6} +{"session_id":"sess-155d2053731a","input_length":291,"output_length":234,"hash_ids":[3432053],"delay":1511.8} +{"session_id":"sess-155d2053731a","input_length":111,"output_length":75,"hash_ids":[3432054],"delay":263.9} +{"session_id":"sess-155d2053731a","input_length":91,"output_length":484,"hash_ids":[3432055],"delay":657.7} +{"session_id":"sess-155d2053731a","input_length":1162,"output_length":59,"hash_ids":[3432056,3432057,3432058],"delay":36072.5} +{"session_id":"sess-155d2053731a","input_length":2110,"output_length":131,"hash_ids":[3432059,3432060,3432061,3432062,3432063],"delay":2242.2} +{"session_id":"sess-155d2053731a","input_length":1706,"output_length":30,"hash_ids":[3432064,3432065,3432066,3432067],"delay":13747.4} +{"session_id":"sess-155d2053731a","input_length":146,"output_length":571,"hash_ids":[3432068],"delay":589.0} +{"session_id":"sess-155d2053731a","input_length":1368,"output_length":131,"hash_ids":[3432069,3432070,3432071],"delay":11653.2} +{"session_id":"sess-155d2053731a","input_length":1533,"output_length":726,"hash_ids":[3432072,3432073,3432074],"delay":121.8} +{"session_id":"sess-155d2053731a","input_length":724,"output_length":120,"hash_ids":[3432075,3432076],"delay":7188.2} +{"session_id":"sess-155d2053731a","input_length":2020,"output_length":185,"hash_ids":[3432077,3432078,3432079,3432080],"delay":30878.9} +{"session_id":"sess-155d2053731a","input_length":216,"output_length":108,"hash_ids":[3432081],"delay":576.4} +{"session_id":"sess-155d2053731a","input_length":2436,"output_length":139,"hash_ids":[3432082,3432083,3432084,3432085,3432086],"delay":72.5} +{"session_id":"sess-155d2053731a","input_length":2620,"output_length":60,"hash_ids":[3432087,3432088,3432089,3432090,3432091,3432092],"delay":1358.0} +{"session_id":"sess-155d2053731a","input_length":122,"output_length":272,"hash_ids":[3432093],"delay":671.7} +{"session_id":"sess-155d2053731a","input_length":174,"output_length":411,"hash_ids":[3432094],"delay":14600.8} +{"session_id":"sess-155d2053731a","input_length":1184,"output_length":237,"hash_ids":[3432095,3432096,3432097],"delay":3369.5} +{"session_id":"sess-155d2053731a","input_length":1144,"output_length":926,"hash_ids":[3432098,3432099,3432100],"delay":609.8} +{"session_id":"sess-155d2053731a","input_length":1611,"output_length":44,"hash_ids":[3432101,3432102,3432103,3432104],"delay":272.8} +{"session_id":"sess-155d2053731a","input_length":343,"output_length":293,"hash_ids":[3432105],"delay":503.7} +{"session_id":"sess-155d2053731a","input_length":1267,"output_length":85,"hash_ids":[3432106,3432107,3432108],"delay":25287.5} +{"session_id":"sess-155d2053731a","input_length":165,"output_length":353,"hash_ids":[3432109],"delay":661.4} +{"session_id":"sess-94f32be0e8e9","input_length":28134,"output_length":343,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3436032,3436033,3436034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-94f32be0e8e9","input_length":1464,"output_length":67,"hash_ids":[3436035,3436036,3436037],"delay":20552.3} +{"session_id":"sess-94f32be0e8e9","input_length":631,"output_length":55,"hash_ids":[3436038,3436039],"delay":881.3} +{"session_id":"sess-94f32be0e8e9","input_length":352,"output_length":814,"hash_ids":[3436040],"delay":21077.3} +{"session_id":"sess-94f32be0e8e9","input_length":687,"output_length":488,"hash_ids":[3436041,3436042],"delay":544.5} +{"session_id":"sess-94f32be0e8e9","input_length":529,"output_length":102,"hash_ids":[3436043,3436044],"delay":3096.6} +{"session_id":"sess-94f32be0e8e9","input_length":105,"output_length":67,"hash_ids":[3436045],"delay":201.5} +{"session_id":"sess-94f32be0e8e9","input_length":1767,"output_length":402,"hash_ids":[3436046,3436047,3436048,3436049],"delay":379.4} +{"session_id":"sess-94f32be0e8e9","input_length":521,"output_length":316,"hash_ids":[3436050,3436051],"delay":406.4} +{"session_id":"sess-94f32be0e8e9","input_length":179,"output_length":48,"hash_ids":[3436052],"delay":10102.2} +{"session_id":"sess-94f32be0e8e9","input_length":2495,"output_length":371,"hash_ids":[3436053,3436054,3436055,3436056,3436057],"delay":42676.3} +{"session_id":"sess-94f32be0e8e9","input_length":283,"output_length":41,"hash_ids":[3436058],"delay":5513.2} +{"session_id":"sess-94f32be0e8e9","input_length":852,"output_length":132,"hash_ids":[3436059,3436060],"delay":705.4} +{"session_id":"sess-94f32be0e8e9","input_length":1145,"output_length":314,"hash_ids":[3436061,3436062,3436063],"delay":38699.6} +{"session_id":"sess-94f32be0e8e9","input_length":1574,"output_length":171,"hash_ids":[3436064,3436065,3436066,3436067],"delay":899.3} +{"session_id":"sess-94f32be0e8e9","input_length":674,"output_length":231,"hash_ids":[3436068,3436069],"delay":818.8} +{"session_id":"sess-94f32be0e8e9","input_length":1195,"output_length":127,"hash_ids":[3436070,3436071,3436072],"delay":14830.7} +{"session_id":"sess-94f32be0e8e9","input_length":775,"output_length":103,"hash_ids":[3436073,3436074],"delay":414.2} +{"session_id":"sess-94f32be0e8e9","input_length":409,"output_length":448,"hash_ids":[3436075],"delay":1521.5} +{"session_id":"sess-94f32be0e8e9","input_length":1714,"output_length":55,"hash_ids":[3436076,3436077,3436078,3436079],"delay":1319.7} +{"session_id":"sess-94f32be0e8e9","input_length":1072,"output_length":33,"hash_ids":[3436080,3436081,3436082],"delay":1032.8} +{"session_id":"sess-94f32be0e8e9","input_length":626,"output_length":136,"hash_ids":[3436083,3436084],"delay":5800.9} +{"session_id":"sess-94f32be0e8e9","input_length":785,"output_length":30,"hash_ids":[3436085,3436086],"delay":1207.1} +{"session_id":"sess-94f32be0e8e9","input_length":2466,"output_length":367,"hash_ids":[3436087,3436088,3436089,3436090,3436091],"delay":173.4} +{"session_id":"sess-486979b3d10c","input_length":34068,"output_length":303,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3440032,3440033,3440034,3440035,3440036,3440037,3440038,3440039,3440040,3440041,3440042,3440043,3440044,3440045,3440046],"timestamp":0.0,"group_id":0} +{"session_id":"sess-486979b3d10c","input_length":426,"output_length":163,"hash_ids":[3440047],"delay":9584.1} +{"session_id":"sess-486979b3d10c","input_length":1513,"output_length":165,"hash_ids":[3440048,3440049,3440050],"delay":2527.2} +{"session_id":"sess-486979b3d10c","input_length":1624,"output_length":193,"hash_ids":[3440051,3440052,3440053,3440054],"delay":53633.5} +{"session_id":"sess-486979b3d10c","input_length":351,"output_length":139,"hash_ids":[3440055],"delay":818.7} +{"session_id":"sess-486979b3d10c","input_length":1416,"output_length":360,"hash_ids":[3440056,3440057,3440058],"delay":1814.3} +{"session_id":"sess-486979b3d10c","input_length":1119,"output_length":602,"hash_ids":[3440059,3440060,3440061],"delay":525.5} +{"session_id":"sess-486979b3d10c","input_length":965,"output_length":113,"hash_ids":[3440062,3440063],"delay":547.0} +{"session_id":"sess-486979b3d10c","input_length":2620,"output_length":62,"hash_ids":[3440064,3440065,3440066,3440067,3440068,3440069],"delay":537.5} +{"session_id":"sess-486979b3d10c","input_length":2955,"output_length":84,"hash_ids":[3440070,3440071,3440072,3440073,3440074,3440075],"delay":5140.7} +{"session_id":"sess-486979b3d10c","input_length":1235,"output_length":99,"hash_ids":[3440076,3440077,3440078],"delay":911.4} +{"session_id":"sess-486979b3d10c","input_length":849,"output_length":441,"hash_ids":[3440079,3440080],"delay":1808.4} +{"session_id":"sess-486979b3d10c","input_length":1291,"output_length":182,"hash_ids":[3440081,3440082,3440083],"delay":509.9} +{"session_id":"sess-486979b3d10c","input_length":606,"output_length":286,"hash_ids":[3440084,3440085],"delay":591.0} +{"session_id":"sess-486979b3d10c","input_length":357,"output_length":315,"hash_ids":[3440086],"delay":286.9} +{"session_id":"sess-486979b3d10c","input_length":1521,"output_length":550,"hash_ids":[3440087,3440088,3440089],"delay":250.7} +{"session_id":"sess-486979b3d10c","input_length":1976,"output_length":102,"hash_ids":[3440090,3440091,3440092,3440093],"delay":544.2} +{"session_id":"sess-486979b3d10c","input_length":1594,"output_length":258,"hash_ids":[3440094,3440095,3440096,3440097],"delay":11727.6} +{"session_id":"sess-486979b3d10c","input_length":1007,"output_length":106,"hash_ids":[3440098,3440099],"delay":652.7} +{"session_id":"sess-486979b3d10c","input_length":2677,"output_length":57,"hash_ids":[3440100,3440101,3440102,3440103,3440104,3440105],"delay":357.9} +{"session_id":"sess-486979b3d10c","input_length":31,"output_length":105,"hash_ids":[3440106],"delay":10148.9} +{"session_id":"sess-486979b3d10c","input_length":551,"output_length":508,"hash_ids":[3440107,3440108],"delay":1787.6} +{"session_id":"sess-628f34ae0c3b","input_length":33000,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3444032,3444033,3444034,3444035,3444036,3444037,3444038,3444039,3444040,3444041,3444042,3444043,3444044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-628f34ae0c3b","input_length":884,"output_length":186,"hash_ids":[3444045,3444046],"delay":1516.3} +{"session_id":"sess-628f34ae0c3b","input_length":1070,"output_length":467,"hash_ids":[3444047,3444048,3444049],"delay":3185.1} +{"session_id":"sess-628f34ae0c3b","input_length":1592,"output_length":52,"hash_ids":[3444050,3444051,3444052,3444053],"delay":8290.2} +{"session_id":"sess-628f34ae0c3b","input_length":225,"output_length":40,"hash_ids":[3444054],"delay":2129.3} +{"session_id":"sess-628f34ae0c3b","input_length":200,"output_length":105,"hash_ids":[3444055],"delay":9025.9} +{"session_id":"sess-628f34ae0c3b","input_length":378,"output_length":111,"hash_ids":[3444056],"delay":16818.0} +{"session_id":"sess-628f34ae0c3b","input_length":911,"output_length":752,"hash_ids":[3444057,3444058],"delay":3012.6} +{"session_id":"sess-628f34ae0c3b","input_length":733,"output_length":62,"hash_ids":[3444059,3444060],"delay":395.0} +{"session_id":"sess-628f34ae0c3b","input_length":810,"output_length":208,"hash_ids":[3444061,3444062],"delay":4730.6} +{"session_id":"sess-628f34ae0c3b","input_length":1095,"output_length":499,"hash_ids":[3444063,3444064,3444065],"delay":1611.9} +{"session_id":"sess-628f34ae0c3b","input_length":748,"output_length":1263,"hash_ids":[3444066,3444067],"delay":1630.8} +{"session_id":"sess-628f34ae0c3b","input_length":810,"output_length":418,"hash_ids":[3444068,3444069],"delay":566.5} +{"session_id":"sess-628f34ae0c3b","input_length":1120,"output_length":78,"hash_ids":[3444070,3444071,3444072],"delay":905.4} +{"session_id":"sess-628f34ae0c3b","input_length":1774,"output_length":113,"hash_ids":[3444073,3444074,3444075,3444076],"delay":1176.6} +{"session_id":"sess-628f34ae0c3b","input_length":1300,"output_length":315,"hash_ids":[3444077,3444078,3444079],"delay":559.4} +{"session_id":"sess-628f34ae0c3b","input_length":2798,"output_length":530,"hash_ids":[3444080,3444081,3444082,3444083,3444084,3444085],"delay":1269.1} +{"session_id":"sess-628f34ae0c3b","input_length":2201,"output_length":95,"hash_ids":[3444086,3444087,3444088,3444089,3444090],"delay":1681.4} +{"session_id":"sess-628f34ae0c3b","input_length":419,"output_length":40,"hash_ids":[3444091],"delay":1858.8} +{"session_id":"sess-628f34ae0c3b","input_length":856,"output_length":776,"hash_ids":[3444092,3444093],"delay":1139.0} +{"session_id":"sess-628f34ae0c3b","input_length":721,"output_length":765,"hash_ids":[3444094,3444095],"delay":605.2} +{"session_id":"sess-628f34ae0c3b","input_length":773,"output_length":157,"hash_ids":[3444096,3444097],"delay":586.2} +{"session_id":"sess-628f34ae0c3b","input_length":488,"output_length":922,"hash_ids":[3444098],"delay":860.2} +{"session_id":"sess-628f34ae0c3b","input_length":316,"output_length":59,"hash_ids":[3444099],"delay":142.3} +{"session_id":"sess-628f34ae0c3b","input_length":106,"output_length":128,"hash_ids":[3444100],"delay":730.4} +{"session_id":"sess-628f34ae0c3b","input_length":747,"output_length":113,"hash_ids":[3444101,3444102],"delay":288.6} +{"session_id":"sess-628f34ae0c3b","input_length":376,"output_length":549,"hash_ids":[3444103],"delay":405.3} +{"session_id":"sess-73ed0b27f49f","input_length":26748,"output_length":325,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3448032],"timestamp":0.0,"group_id":5} +{"session_id":"sess-73ed0b27f49f","input_length":166,"output_length":225,"hash_ids":[3448033],"delay":2857.4} +{"session_id":"sess-73ed0b27f49f","input_length":135,"output_length":94,"hash_ids":[3448034],"delay":22903.9} +{"session_id":"sess-73ed0b27f49f","input_length":912,"output_length":170,"hash_ids":[3448035,3448036],"delay":6278.0} +{"session_id":"sess-73ed0b27f49f","input_length":576,"output_length":58,"hash_ids":[3448037,3448038],"delay":784.4} +{"session_id":"sess-73ed0b27f49f","input_length":526,"output_length":108,"hash_ids":[3448039,3448040],"delay":3925.1} +{"session_id":"sess-73ed0b27f49f","input_length":1035,"output_length":206,"hash_ids":[3448041,3448042,3448043],"delay":1616.8} +{"session_id":"sess-73ed0b27f49f","input_length":1950,"output_length":198,"hash_ids":[3448044,3448045,3448046,3448047],"delay":1068.1} +{"session_id":"sess-73ed0b27f49f","input_length":898,"output_length":179,"hash_ids":[3448048,3448049],"delay":1242.4} +{"session_id":"sess-73ed0b27f49f","input_length":174,"output_length":111,"hash_ids":[3448050],"delay":414.5} +{"session_id":"sess-73ed0b27f49f","input_length":199,"output_length":115,"hash_ids":[3448051],"delay":34721.7} +{"session_id":"sess-73ed0b27f49f","input_length":145,"output_length":166,"hash_ids":[3448052],"delay":1413.8} +{"session_id":"sess-73ed0b27f49f","input_length":547,"output_length":120,"hash_ids":[3448053,3448054],"delay":3577.1} +{"session_id":"sess-73ed0b27f49f","input_length":1676,"output_length":98,"hash_ids":[3448055,3448056,3448057,3448058],"delay":664.8} +{"session_id":"sess-73ed0b27f49f","input_length":2018,"output_length":83,"hash_ids":[3448059,3448060,3448061,3448062],"delay":2060.9} +{"session_id":"sess-73ed0b27f49f","input_length":126,"output_length":541,"hash_ids":[3448063],"delay":620.2} +{"session_id":"sess-73ed0b27f49f","input_length":1018,"output_length":281,"hash_ids":[3448064,3448065],"delay":2237.3} +{"session_id":"sess-73ed0b27f49f","input_length":434,"output_length":85,"hash_ids":[3448066],"delay":9228.3} +{"session_id":"sess-73ed0b27f49f","input_length":527,"output_length":97,"hash_ids":[3448067,3448068],"delay":224.2} +{"session_id":"sess-73ed0b27f49f","input_length":907,"output_length":163,"hash_ids":[3448069,3448070],"delay":19507.6} +{"session_id":"sess-73ed0b27f49f","input_length":2789,"output_length":43,"hash_ids":[3448071,3448072,3448073,3448074,3448075,3448076],"delay":1768.3} +{"session_id":"sess-73ed0b27f49f","input_length":1406,"output_length":67,"hash_ids":[3448077,3448078,3448079],"delay":36191.8} +{"session_id":"sess-73ed0b27f49f","input_length":217,"output_length":232,"hash_ids":[3448080],"delay":1509.5} +{"session_id":"sess-73ed0b27f49f","input_length":937,"output_length":187,"hash_ids":[3448081,3448082],"delay":4358.0} +{"session_id":"sess-73ed0b27f49f","input_length":1321,"output_length":744,"hash_ids":[3448083,3448084,3448085],"delay":397.4} +{"session_id":"sess-73ed0b27f49f","input_length":1128,"output_length":274,"hash_ids":[3448086,3448087,3448088],"delay":323.1} +{"session_id":"sess-73ed0b27f49f","input_length":1186,"output_length":45,"hash_ids":[3448089,3448090,3448091],"delay":1196.7} +{"session_id":"sess-73ed0b27f49f","input_length":2248,"output_length":363,"hash_ids":[3448092,3448093,3448094,3448095,3448096],"delay":562.1} +{"session_id":"sess-73ed0b27f49f","input_length":2903,"output_length":338,"hash_ids":[3448097,3448098,3448099,3448100,3448101,3448102],"delay":603.7} +{"session_id":"sess-73ed0b27f49f","input_length":162,"output_length":685,"hash_ids":[3448103],"delay":5173.7} +{"session_id":"sess-73ed0b27f49f","input_length":231,"output_length":109,"hash_ids":[3448104],"delay":237.1} +{"session_id":"sess-73ed0b27f49f","input_length":590,"output_length":239,"hash_ids":[3448105,3448106],"delay":535.7} +{"session_id":"sess-73ed0b27f49f","input_length":2937,"output_length":715,"hash_ids":[3448107,3448108,3448109,3448110,3448111,3448112],"delay":342.7} +{"session_id":"sess-d849cd97ac02","input_length":27704,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3452032,3452033,3452034],"timestamp":0.0,"group_id":5} +{"session_id":"sess-d849cd97ac02","input_length":2139,"output_length":183,"hash_ids":[3452035,3452036,3452037,3452038,3452039],"delay":783.0} +{"session_id":"sess-d849cd97ac02","input_length":399,"output_length":91,"hash_ids":[3452040],"delay":651.1} +{"session_id":"sess-d849cd97ac02","input_length":1868,"output_length":548,"hash_ids":[3452041,3452042,3452043,3452044],"delay":16911.6} +{"session_id":"sess-d849cd97ac02","input_length":581,"output_length":53,"hash_ids":[3452045,3452046],"delay":404.4} +{"session_id":"sess-d849cd97ac02","input_length":687,"output_length":222,"hash_ids":[3452047,3452048],"delay":818.5} +{"session_id":"sess-d849cd97ac02","input_length":793,"output_length":272,"hash_ids":[3452049,3452050],"delay":209.4} +{"session_id":"sess-d849cd97ac02","input_length":1764,"output_length":248,"hash_ids":[3452051,3452052,3452053,3452054],"delay":1124.9} +{"session_id":"sess-d849cd97ac02","input_length":676,"output_length":384,"hash_ids":[3452055,3452056],"delay":224.2} +{"session_id":"sess-d849cd97ac02","input_length":502,"output_length":97,"hash_ids":[3452057],"delay":2465.4} +{"session_id":"sess-d849cd97ac02","input_length":589,"output_length":141,"hash_ids":[3452058,3452059],"delay":516.8} +{"session_id":"sess-d849cd97ac02","input_length":1027,"output_length":1110,"hash_ids":[3452060,3452061,3452062],"delay":826.2} +{"session_id":"sess-d849cd97ac02","input_length":798,"output_length":674,"hash_ids":[3452063,3452064],"delay":39050.6} +{"session_id":"sess-d849cd97ac02","input_length":272,"output_length":30,"hash_ids":[3452065],"delay":9607.3} +{"session_id":"sess-d849cd97ac02","input_length":793,"output_length":351,"hash_ids":[3452066,3452067],"delay":596.5} +{"session_id":"sess-d849cd97ac02","input_length":352,"output_length":306,"hash_ids":[3452068],"delay":627.7} +{"session_id":"sess-d849cd97ac02","input_length":2351,"output_length":563,"hash_ids":[3452069,3452070,3452071,3452072,3452073],"delay":974.4} +{"session_id":"sess-d849cd97ac02","input_length":1305,"output_length":184,"hash_ids":[3452074,3452075,3452076],"delay":1770.4} +{"session_id":"sess-d849cd97ac02","input_length":1773,"output_length":415,"hash_ids":[3452077,3452078,3452079,3452080],"delay":170.8} +{"session_id":"sess-d849cd97ac02","input_length":170,"output_length":43,"hash_ids":[3452081],"delay":295.6} +{"session_id":"sess-d849cd97ac02","input_length":124,"output_length":578,"hash_ids":[3452082],"delay":17654.7} +{"session_id":"sess-d849cd97ac02","input_length":230,"output_length":263,"hash_ids":[3452083],"delay":8673.1} +{"session_id":"sess-d849cd97ac02","input_length":833,"output_length":270,"hash_ids":[3452084,3452085],"delay":2465.7} +{"session_id":"sess-d849cd97ac02","input_length":183,"output_length":128,"hash_ids":[3452086],"delay":805.2} +{"session_id":"sess-d849cd97ac02","input_length":268,"output_length":187,"hash_ids":[3452087],"delay":244.8} +{"session_id":"sess-d849cd97ac02","input_length":718,"output_length":126,"hash_ids":[3452088,3452089],"delay":664.0} +{"session_id":"sess-d849cd97ac02","input_length":1954,"output_length":173,"hash_ids":[3452090,3452091,3452092,3452093],"delay":1594.0} +{"session_id":"sess-d849cd97ac02","input_length":185,"output_length":41,"hash_ids":[3452094],"delay":149.1} +{"session_id":"sess-d849cd97ac02","input_length":577,"output_length":620,"hash_ids":[3452095,3452096],"delay":2158.3} +{"session_id":"sess-d849cd97ac02","input_length":716,"output_length":115,"hash_ids":[3452097,3452098],"delay":89.0} +{"session_id":"sess-2840d38958db","input_length":28416,"output_length":399,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3456032,3456033,3456034,3456035],"timestamp":0.0,"group_id":8} +{"session_id":"sess-2840d38958db","input_length":371,"output_length":179,"hash_ids":[3456036],"delay":691.9} +{"session_id":"sess-2840d38958db","input_length":2160,"output_length":374,"hash_ids":[3456037,3456038,3456039,3456040,3456041],"delay":369.8} +{"session_id":"sess-2840d38958db","input_length":665,"output_length":81,"hash_ids":[3456042,3456043],"delay":354.6} +{"session_id":"sess-2840d38958db","input_length":1820,"output_length":68,"hash_ids":[3456044,3456045,3456046,3456047],"delay":941.8} +{"session_id":"sess-2840d38958db","input_length":787,"output_length":67,"hash_ids":[3456048,3456049],"delay":1605.9} +{"session_id":"sess-2840d38958db","input_length":492,"output_length":225,"hash_ids":[3456050],"delay":34885.3} +{"session_id":"sess-2840d38958db","input_length":1432,"output_length":424,"hash_ids":[3456051,3456052,3456053],"delay":13638.4} +{"session_id":"sess-2840d38958db","input_length":502,"output_length":225,"hash_ids":[3456054],"delay":1313.7} +{"session_id":"sess-2840d38958db","input_length":287,"output_length":101,"hash_ids":[3456055],"delay":1041.4} +{"session_id":"sess-2840d38958db","input_length":471,"output_length":48,"hash_ids":[3456056],"delay":27932.1} +{"session_id":"sess-2840d38958db","input_length":2147,"output_length":166,"hash_ids":[3456057,3456058,3456059,3456060,3456061],"delay":4821.9} +{"session_id":"sess-2840d38958db","input_length":179,"output_length":178,"hash_ids":[3456062],"delay":1193.6} +{"session_id":"sess-2840d38958db","input_length":544,"output_length":306,"hash_ids":[3456063,3456064],"delay":509.6} +{"session_id":"sess-2840d38958db","input_length":1085,"output_length":102,"hash_ids":[3456065,3456066,3456067],"delay":16981.4} +{"session_id":"sess-2840d38958db","input_length":2823,"output_length":443,"hash_ids":[3456068,3456069,3456070,3456071,3456072,3456073],"delay":964.7} +{"session_id":"sess-2840d38958db","input_length":123,"output_length":505,"hash_ids":[3456074],"delay":302.4} +{"session_id":"sess-2840d38958db","input_length":1198,"output_length":30,"hash_ids":[3456075,3456076,3456077],"delay":1721.4} +{"session_id":"sess-2840d38958db","input_length":2057,"output_length":55,"hash_ids":[3456078,3456079,3456080,3456081,3456082],"delay":528.5} +{"session_id":"sess-2840d38958db","input_length":748,"output_length":477,"hash_ids":[3456083,3456084],"delay":456.6} +{"session_id":"sess-2840d38958db","input_length":2212,"output_length":461,"hash_ids":[3456085,3456086,3456087,3456088,3456089],"delay":456.0} +{"session_id":"sess-2840d38958db","input_length":145,"output_length":753,"hash_ids":[3456090],"delay":577.5} +{"session_id":"sess-2840d38958db","input_length":1925,"output_length":307,"hash_ids":[3456091,3456092,3456093,3456094],"delay":2738.8} +{"session_id":"sess-2840d38958db","input_length":2468,"output_length":813,"hash_ids":[3456095,3456096,3456097,3456098,3456099],"delay":20122.1} +{"session_id":"sess-2840d38958db","input_length":187,"output_length":114,"hash_ids":[3456100],"delay":297.5} +{"session_id":"sess-2840d38958db","input_length":283,"output_length":224,"hash_ids":[3456101],"delay":172.9} +{"session_id":"sess-2840d38958db","input_length":2571,"output_length":176,"hash_ids":[3456102,3456103,3456104,3456105,3456106,3456107],"delay":499.4} +{"session_id":"sess-7a66447dc2ac","input_length":27762,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3460032,3460033,3460034],"timestamp":0.0,"group_id":1} +{"session_id":"sess-7a66447dc2ac","input_length":1145,"output_length":140,"hash_ids":[3460035,3460036,3460037],"delay":502.9} +{"session_id":"sess-7a66447dc2ac","input_length":1677,"output_length":307,"hash_ids":[3460038,3460039,3460040,3460041],"delay":75038.7} +{"session_id":"sess-7a66447dc2ac","input_length":1723,"output_length":302,"hash_ids":[3460042,3460043,3460044,3460045],"delay":48665.6} +{"session_id":"sess-7a66447dc2ac","input_length":684,"output_length":263,"hash_ids":[3460046,3460047],"delay":1924.0} +{"session_id":"sess-7a66447dc2ac","input_length":167,"output_length":61,"hash_ids":[3460048],"delay":1572.5} +{"session_id":"sess-7a66447dc2ac","input_length":202,"output_length":65,"hash_ids":[3460049],"delay":9530.2} +{"session_id":"sess-7a66447dc2ac","input_length":1574,"output_length":52,"hash_ids":[3460050,3460051,3460052,3460053],"delay":42227.5} +{"session_id":"sess-7a66447dc2ac","input_length":942,"output_length":338,"hash_ids":[3460054,3460055],"delay":889.2} +{"session_id":"sess-7a66447dc2ac","input_length":1024,"output_length":253,"hash_ids":[3460056,3460057],"delay":429.7} +{"session_id":"sess-34defdc8a9de","input_length":34520,"output_length":199,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,3464032,3464033,3464034,3464035,3464036,3464037,3464038,3464039,3464040,3464041,3464042,3464043,3464044,3464045,3464046,3464047],"timestamp":0.0,"group_id":22} +{"session_id":"sess-34defdc8a9de","input_length":961,"output_length":65,"hash_ids":[3464048,3464049],"delay":763.5} +{"session_id":"sess-34defdc8a9de","input_length":1946,"output_length":204,"hash_ids":[3464050,3464051,3464052,3464053],"delay":1138.0} +{"session_id":"sess-34defdc8a9de","input_length":191,"output_length":246,"hash_ids":[3464054],"delay":915.0} +{"session_id":"sess-34defdc8a9de","input_length":2683,"output_length":77,"hash_ids":[3464055,3464056,3464057,3464058,3464059,3464060],"delay":2831.5} +{"session_id":"sess-34defdc8a9de","input_length":347,"output_length":316,"hash_ids":[3464061],"delay":8132.7} +{"session_id":"sess-34defdc8a9de","input_length":1076,"output_length":483,"hash_ids":[3464062,3464063,3464064],"delay":565.4} +{"session_id":"sess-34defdc8a9de","input_length":724,"output_length":171,"hash_ids":[3464065,3464066],"delay":459.8} +{"session_id":"sess-34defdc8a9de","input_length":2827,"output_length":79,"hash_ids":[3464067,3464068,3464069,3464070,3464071,3464072],"delay":916.6} +{"session_id":"sess-34defdc8a9de","input_length":1065,"output_length":243,"hash_ids":[3464073,3464074,3464075],"delay":14180.7} +{"session_id":"sess-34defdc8a9de","input_length":439,"output_length":707,"hash_ids":[3464076],"delay":753.9} +{"session_id":"sess-34defdc8a9de","input_length":1340,"output_length":178,"hash_ids":[3464077,3464078,3464079],"delay":345.6} +{"session_id":"sess-34defdc8a9de","input_length":1611,"output_length":100,"hash_ids":[3464080,3464081,3464082,3464083],"delay":762.6} +{"session_id":"sess-34defdc8a9de","input_length":400,"output_length":267,"hash_ids":[3464084],"delay":12895.8} +{"session_id":"sess-34defdc8a9de","input_length":285,"output_length":77,"hash_ids":[3464085],"delay":514.3} +{"session_id":"sess-34defdc8a9de","input_length":788,"output_length":195,"hash_ids":[3464086,3464087],"delay":11927.2} +{"session_id":"sess-34defdc8a9de","input_length":249,"output_length":242,"hash_ids":[3464088],"delay":17235.6} +{"session_id":"sess-34defdc8a9de","input_length":2277,"output_length":58,"hash_ids":[3464089,3464090,3464091,3464092,3464093],"delay":953.0} +{"session_id":"sess-34defdc8a9de","input_length":468,"output_length":251,"hash_ids":[3464094],"delay":8937.8} +{"session_id":"sess-34defdc8a9de","input_length":2170,"output_length":61,"hash_ids":[3464095,3464096,3464097,3464098,3464099],"delay":425.8} +{"session_id":"sess-34defdc8a9de","input_length":997,"output_length":338,"hash_ids":[3464100,3464101],"delay":473.7} +{"session_id":"sess-34defdc8a9de","input_length":671,"output_length":114,"hash_ids":[3464102,3464103],"delay":676.8} +{"session_id":"sess-34defdc8a9de","input_length":560,"output_length":207,"hash_ids":[3464104,3464105],"delay":391.4} +{"session_id":"sess-f34474d10c3a","input_length":28098,"output_length":1003,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3468032,3468033,3468034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f34474d10c3a","input_length":364,"output_length":49,"hash_ids":[3468035],"delay":28416.3} +{"session_id":"sess-f34474d10c3a","input_length":1533,"output_length":254,"hash_ids":[3468036,3468037,3468038],"delay":38958.4} +{"session_id":"sess-f34474d10c3a","input_length":185,"output_length":1020,"hash_ids":[3468039],"delay":430.7} +{"session_id":"sess-f34474d10c3a","input_length":872,"output_length":307,"hash_ids":[3468040,3468041],"delay":1438.1} +{"session_id":"sess-f34474d10c3a","input_length":2766,"output_length":195,"hash_ids":[3468042,3468043,3468044,3468045,3468046,3468047],"delay":1142.3} +{"session_id":"sess-f34474d10c3a","input_length":1675,"output_length":274,"hash_ids":[3468048,3468049,3468050,3468051],"delay":4040.3} +{"session_id":"sess-f34474d10c3a","input_length":2548,"output_length":763,"hash_ids":[3468052,3468053,3468054,3468055,3468056],"delay":1022.1} +{"session_id":"sess-f34474d10c3a","input_length":532,"output_length":69,"hash_ids":[3468057,3468058],"delay":651.1} +{"session_id":"sess-f34474d10c3a","input_length":834,"output_length":683,"hash_ids":[3468059,3468060],"delay":491.0} +{"session_id":"sess-f34474d10c3a","input_length":344,"output_length":81,"hash_ids":[3468061],"delay":21166.6} +{"session_id":"sess-f34474d10c3a","input_length":1323,"output_length":1220,"hash_ids":[3468062,3468063,3468064],"delay":1724.2} +{"session_id":"sess-f34474d10c3a","input_length":2005,"output_length":639,"hash_ids":[3468065,3468066,3468067,3468068],"delay":13931.0} +{"session_id":"sess-f34474d10c3a","input_length":2663,"output_length":698,"hash_ids":[3468069,3468070,3468071,3468072,3468073,3468074],"delay":10251.8} +{"session_id":"sess-f34474d10c3a","input_length":1129,"output_length":247,"hash_ids":[3468075,3468076,3468077],"delay":1630.8} +{"session_id":"sess-f34474d10c3a","input_length":635,"output_length":284,"hash_ids":[3468078,3468079],"delay":655.8} +{"session_id":"sess-f34474d10c3a","input_length":714,"output_length":268,"hash_ids":[3468080,3468081],"delay":1137.2} +{"session_id":"sess-f34474d10c3a","input_length":561,"output_length":51,"hash_ids":[3468082,3468083],"delay":761.3} +{"session_id":"sess-f34474d10c3a","input_length":1521,"output_length":116,"hash_ids":[3468084,3468085,3468086],"delay":19624.1} +{"session_id":"sess-f34474d10c3a","input_length":419,"output_length":76,"hash_ids":[3468087],"delay":2467.8} +{"session_id":"sess-f34474d10c3a","input_length":148,"output_length":600,"hash_ids":[3468088],"delay":1275.7} +{"session_id":"sess-f34474d10c3a","input_length":1079,"output_length":303,"hash_ids":[3468089,3468090,3468091],"delay":133.9} +{"session_id":"sess-f34474d10c3a","input_length":807,"output_length":278,"hash_ids":[3468092,3468093],"delay":313.5} +{"session_id":"sess-f34474d10c3a","input_length":1325,"output_length":747,"hash_ids":[3468094,3468095,3468096],"delay":1826.4} +{"session_id":"sess-f34474d10c3a","input_length":417,"output_length":198,"hash_ids":[3468097],"delay":597.0} +{"session_id":"sess-855d6f8f5f59","input_length":27312,"output_length":444,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,3472032,3472033],"timestamp":0.0,"group_id":45} +{"session_id":"sess-855d6f8f5f59","input_length":734,"output_length":221,"hash_ids":[3472034,3472035],"delay":17496.5} +{"session_id":"sess-855d6f8f5f59","input_length":1046,"output_length":214,"hash_ids":[3472036,3472037,3472038],"delay":715.2} +{"session_id":"sess-855d6f8f5f59","input_length":187,"output_length":30,"hash_ids":[3472039],"delay":566.2} +{"session_id":"sess-855d6f8f5f59","input_length":406,"output_length":107,"hash_ids":[3472040],"delay":49055.0} +{"session_id":"sess-855d6f8f5f59","input_length":929,"output_length":92,"hash_ids":[3472041,3472042],"delay":1334.6} +{"session_id":"sess-855d6f8f5f59","input_length":688,"output_length":536,"hash_ids":[3472043,3472044],"delay":1443.7} +{"session_id":"sess-855d6f8f5f59","input_length":2184,"output_length":170,"hash_ids":[3472045,3472046,3472047,3472048,3472049],"delay":11759.8} +{"session_id":"sess-855d6f8f5f59","input_length":1103,"output_length":170,"hash_ids":[3472050,3472051,3472052],"delay":343.6} +{"session_id":"sess-855d6f8f5f59","input_length":692,"output_length":104,"hash_ids":[3472053,3472054],"delay":8581.3} +{"session_id":"sess-855d6f8f5f59","input_length":1040,"output_length":173,"hash_ids":[3472055,3472056,3472057],"delay":5200.5} +{"session_id":"sess-855d6f8f5f59","input_length":591,"output_length":30,"hash_ids":[3472058,3472059],"delay":34421.6} +{"session_id":"sess-855d6f8f5f59","input_length":358,"output_length":384,"hash_ids":[3472060],"delay":3826.6} +{"session_id":"sess-855d6f8f5f59","input_length":443,"output_length":70,"hash_ids":[3472061],"delay":26234.1} +{"session_id":"sess-855d6f8f5f59","input_length":336,"output_length":513,"hash_ids":[3472062],"delay":767.5} +{"session_id":"sess-855d6f8f5f59","input_length":567,"output_length":301,"hash_ids":[3472063,3472064],"delay":12361.2} +{"session_id":"sess-855d6f8f5f59","input_length":959,"output_length":495,"hash_ids":[3472065,3472066],"delay":646.4} +{"session_id":"sess-855d6f8f5f59","input_length":1062,"output_length":89,"hash_ids":[3472067,3472068,3472069],"delay":977.5} +{"session_id":"sess-855d6f8f5f59","input_length":1172,"output_length":721,"hash_ids":[3472070,3472071,3472072],"delay":1765.3} +{"session_id":"sess-855d6f8f5f59","input_length":250,"output_length":369,"hash_ids":[3472073],"delay":356.9} +{"session_id":"sess-855d6f8f5f59","input_length":1284,"output_length":147,"hash_ids":[3472074,3472075,3472076],"delay":2524.8} +{"session_id":"sess-855d6f8f5f59","input_length":291,"output_length":635,"hash_ids":[3472077],"delay":9020.4} +{"session_id":"sess-855d6f8f5f59","input_length":1000,"output_length":103,"hash_ids":[3472078,3472079],"delay":3360.8} +{"session_id":"sess-855d6f8f5f59","input_length":365,"output_length":240,"hash_ids":[3472080],"delay":392.8} +{"session_id":"sess-855d6f8f5f59","input_length":623,"output_length":130,"hash_ids":[3472081,3472082],"delay":26412.5} +{"session_id":"sess-855d6f8f5f59","input_length":1431,"output_length":359,"hash_ids":[3472083,3472084,3472085],"delay":476.8} +{"session_id":"sess-855d6f8f5f59","input_length":688,"output_length":382,"hash_ids":[3472086,3472087],"delay":1708.5} +{"session_id":"sess-855d6f8f5f59","input_length":2462,"output_length":109,"hash_ids":[3472088,3472089,3472090,3472091,3472092],"delay":295.6} +{"session_id":"sess-855d6f8f5f59","input_length":726,"output_length":306,"hash_ids":[3472093,3472094],"delay":1696.2} +{"session_id":"sess-855d6f8f5f59","input_length":1025,"output_length":113,"hash_ids":[3472095,3472096,3472097],"delay":653.2} +{"session_id":"sess-855d6f8f5f59","input_length":1386,"output_length":347,"hash_ids":[3472098,3472099,3472100],"delay":712.6} +{"session_id":"sess-855d6f8f5f59","input_length":1069,"output_length":192,"hash_ids":[3472101,3472102,3472103],"delay":1474.8} +{"session_id":"sess-855d6f8f5f59","input_length":1552,"output_length":416,"hash_ids":[3472104,3472105,3472106,3472107],"delay":10837.6} +{"session_id":"sess-68884fa50aba","input_length":33119,"output_length":313,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3476032,3476033,3476034,3476035,3476036,3476037,3476038,3476039,3476040,3476041,3476042,3476043,3476044],"timestamp":0.0,"group_id":2} +{"session_id":"sess-68884fa50aba","input_length":1161,"output_length":208,"hash_ids":[3476045,3476046,3476047],"delay":6500.0} +{"session_id":"sess-68884fa50aba","input_length":762,"output_length":204,"hash_ids":[3476048,3476049],"delay":3291.7} +{"session_id":"sess-68884fa50aba","input_length":1558,"output_length":136,"hash_ids":[3476050,3476051,3476052,3476053],"delay":3420.9} +{"session_id":"sess-68884fa50aba","input_length":2157,"output_length":50,"hash_ids":[3476054,3476055,3476056,3476057,3476058],"delay":496.6} +{"session_id":"sess-68884fa50aba","input_length":745,"output_length":50,"hash_ids":[3476059,3476060],"delay":1570.8} +{"session_id":"sess-68884fa50aba","input_length":1244,"output_length":126,"hash_ids":[3476061,3476062,3476063],"delay":7579.9} +{"session_id":"sess-68884fa50aba","input_length":1860,"output_length":130,"hash_ids":[3476064,3476065,3476066,3476067],"delay":54457.6} +{"session_id":"sess-68884fa50aba","input_length":1650,"output_length":319,"hash_ids":[3476068,3476069,3476070,3476071],"delay":523.0} +{"session_id":"sess-68884fa50aba","input_length":345,"output_length":481,"hash_ids":[3476072],"delay":31265.6} +{"session_id":"sess-68884fa50aba","input_length":599,"output_length":359,"hash_ids":[3476073,3476074],"delay":417.3} +{"session_id":"sess-68884fa50aba","input_length":1140,"output_length":482,"hash_ids":[3476075,3476076,3476077],"delay":3650.3} +{"session_id":"sess-68884fa50aba","input_length":2939,"output_length":67,"hash_ids":[3476078,3476079,3476080,3476081,3476082,3476083],"delay":7002.9} +{"session_id":"sess-68884fa50aba","input_length":1933,"output_length":91,"hash_ids":[3476084,3476085,3476086,3476087],"delay":750.2} +{"session_id":"sess-68884fa50aba","input_length":347,"output_length":277,"hash_ids":[3476088],"delay":113.6} +{"session_id":"sess-68884fa50aba","input_length":2217,"output_length":88,"hash_ids":[3476089,3476090,3476091,3476092,3476093],"delay":727.2} +{"session_id":"sess-68884fa50aba","input_length":1338,"output_length":60,"hash_ids":[3476094,3476095,3476096],"delay":31408.0} +{"session_id":"sess-68884fa50aba","input_length":789,"output_length":492,"hash_ids":[3476097,3476098],"delay":835.3} +{"session_id":"sess-68884fa50aba","input_length":320,"output_length":62,"hash_ids":[3476099],"delay":7663.5} +{"session_id":"sess-68884fa50aba","input_length":1449,"output_length":51,"hash_ids":[3476100,3476101,3476102],"delay":100.4} +{"session_id":"sess-68884fa50aba","input_length":874,"output_length":269,"hash_ids":[3476103,3476104],"delay":7259.2} +{"session_id":"sess-68884fa50aba","input_length":301,"output_length":131,"hash_ids":[3476105],"delay":291.9} +{"session_id":"sess-68884fa50aba","input_length":722,"output_length":312,"hash_ids":[3476106,3476107],"delay":407.7} +{"session_id":"sess-68884fa50aba","input_length":604,"output_length":218,"hash_ids":[3476108,3476109],"delay":461.5} +{"session_id":"sess-3218053a6ddd","input_length":28570,"output_length":123,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3480032,3480033,3480034,3480035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3218053a6ddd","input_length":320,"output_length":168,"hash_ids":[3480036],"delay":1082.6} +{"session_id":"sess-3218053a6ddd","input_length":1790,"output_length":1054,"hash_ids":[3480037,3480038,3480039,3480040],"delay":1786.8} +{"session_id":"sess-3218053a6ddd","input_length":704,"output_length":206,"hash_ids":[3480041,3480042],"delay":909.6} +{"session_id":"sess-3218053a6ddd","input_length":423,"output_length":478,"hash_ids":[3480043],"delay":21598.4} +{"session_id":"sess-3218053a6ddd","input_length":1821,"output_length":115,"hash_ids":[3480044,3480045,3480046,3480047],"delay":447.2} +{"session_id":"sess-3218053a6ddd","input_length":174,"output_length":452,"hash_ids":[3480048],"delay":416.5} +{"session_id":"sess-3218053a6ddd","input_length":315,"output_length":173,"hash_ids":[3480049],"delay":2549.8} +{"session_id":"sess-3218053a6ddd","input_length":447,"output_length":352,"hash_ids":[3480050],"delay":2562.0} +{"session_id":"sess-3218053a6ddd","input_length":1754,"output_length":117,"hash_ids":[3480051,3480052,3480053,3480054],"delay":25554.9} +{"session_id":"sess-3218053a6ddd","input_length":1265,"output_length":522,"hash_ids":[3480055,3480056,3480057],"delay":485.3} +{"session_id":"sess-3218053a6ddd","input_length":2818,"output_length":77,"hash_ids":[3480058,3480059,3480060,3480061,3480062,3480063],"delay":6920.8} +{"session_id":"sess-3218053a6ddd","input_length":1230,"output_length":352,"hash_ids":[3480064,3480065,3480066],"delay":604.0} +{"session_id":"sess-3218053a6ddd","input_length":739,"output_length":303,"hash_ids":[3480067,3480068],"delay":1965.4} +{"session_id":"sess-3218053a6ddd","input_length":722,"output_length":174,"hash_ids":[3480069,3480070],"delay":601.1} +{"session_id":"sess-3218053a6ddd","input_length":2258,"output_length":217,"hash_ids":[3480071,3480072,3480073,3480074,3480075],"delay":6299.5} +{"session_id":"sess-3218053a6ddd","input_length":963,"output_length":154,"hash_ids":[3480076,3480077],"delay":180.2} +{"session_id":"sess-3218053a6ddd","input_length":440,"output_length":283,"hash_ids":[3480078],"delay":21309.9} +{"session_id":"sess-3218053a6ddd","input_length":840,"output_length":266,"hash_ids":[3480079,3480080],"delay":234.4} +{"session_id":"sess-3218053a6ddd","input_length":1521,"output_length":168,"hash_ids":[3480081,3480082,3480083],"delay":8438.4} +{"session_id":"sess-3218053a6ddd","input_length":314,"output_length":182,"hash_ids":[3480084],"delay":274.6} +{"session_id":"sess-3218053a6ddd","input_length":394,"output_length":95,"hash_ids":[3480085],"delay":86.1} +{"session_id":"sess-3218053a6ddd","input_length":560,"output_length":185,"hash_ids":[3480086,3480087],"delay":128.2} +{"session_id":"sess-3218053a6ddd","input_length":1430,"output_length":159,"hash_ids":[3480088,3480089,3480090],"delay":1563.2} +{"session_id":"sess-3218053a6ddd","input_length":142,"output_length":42,"hash_ids":[3480091],"delay":2190.8} +{"session_id":"sess-3218053a6ddd","input_length":453,"output_length":164,"hash_ids":[3480092],"delay":725.5} +{"session_id":"sess-3218053a6ddd","input_length":293,"output_length":94,"hash_ids":[3480093],"delay":807.8} +{"session_id":"sess-3218053a6ddd","input_length":210,"output_length":137,"hash_ids":[3480094],"delay":176.4} +{"session_id":"sess-3218053a6ddd","input_length":1728,"output_length":42,"hash_ids":[3480095,3480096,3480097,3480098],"delay":365.4} +{"session_id":"sess-3218053a6ddd","input_length":836,"output_length":350,"hash_ids":[3480099,3480100],"delay":6439.5} +{"session_id":"sess-3218053a6ddd","input_length":306,"output_length":238,"hash_ids":[3480101],"delay":388.6} +{"session_id":"sess-3218053a6ddd","input_length":51,"output_length":79,"hash_ids":[3480102],"delay":303.2} +{"session_id":"sess-779be61d3c38","input_length":32364,"output_length":595,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,3484032,3484033,3484034,3484035,3484036,3484037,3484038,3484039,3484040,3484041,3484042,3484043],"timestamp":0.0,"group_id":3} +{"session_id":"sess-779be61d3c38","input_length":1061,"output_length":195,"hash_ids":[3484044,3484045,3484046],"delay":429.0} +{"session_id":"sess-779be61d3c38","input_length":758,"output_length":53,"hash_ids":[3484047,3484048],"delay":27345.8} +{"session_id":"sess-779be61d3c38","input_length":1100,"output_length":156,"hash_ids":[3484049,3484050,3484051],"delay":850.8} +{"session_id":"sess-779be61d3c38","input_length":338,"output_length":68,"hash_ids":[3484052],"delay":477.6} +{"session_id":"sess-779be61d3c38","input_length":556,"output_length":470,"hash_ids":[3484053,3484054],"delay":6382.3} +{"session_id":"sess-779be61d3c38","input_length":1804,"output_length":273,"hash_ids":[3484055,3484056,3484057,3484058],"delay":2530.0} +{"session_id":"sess-779be61d3c38","input_length":2011,"output_length":84,"hash_ids":[3484059,3484060,3484061,3484062],"delay":824.6} +{"session_id":"sess-779be61d3c38","input_length":628,"output_length":269,"hash_ids":[3484063,3484064],"delay":3780.6} +{"session_id":"sess-779be61d3c38","input_length":241,"output_length":65,"hash_ids":[3484065],"delay":539.4} +{"session_id":"sess-779be61d3c38","input_length":885,"output_length":966,"hash_ids":[3484066,3484067],"delay":380.6} +{"session_id":"sess-779be61d3c38","input_length":339,"output_length":989,"hash_ids":[3484068],"delay":937.7} +{"session_id":"sess-779be61d3c38","input_length":1410,"output_length":304,"hash_ids":[3484069,3484070,3484071],"delay":1126.3} +{"session_id":"sess-779be61d3c38","input_length":2053,"output_length":114,"hash_ids":[3484072,3484073,3484074,3484075,3484076],"delay":439.6} +{"session_id":"sess-779be61d3c38","input_length":936,"output_length":350,"hash_ids":[3484077,3484078],"delay":666.5} +{"session_id":"sess-779be61d3c38","input_length":2292,"output_length":49,"hash_ids":[3484079,3484080,3484081,3484082,3484083],"delay":312.1} +{"session_id":"sess-779be61d3c38","input_length":192,"output_length":127,"hash_ids":[3484084],"delay":1322.8} +{"session_id":"sess-d451b63d1aa0","input_length":28411,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3488032,3488033,3488034,3488035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-d451b63d1aa0","input_length":772,"output_length":283,"hash_ids":[3488036,3488037],"delay":17859.2} +{"session_id":"sess-d451b63d1aa0","input_length":1627,"output_length":90,"hash_ids":[3488038,3488039,3488040,3488041],"delay":1084.6} +{"session_id":"sess-d451b63d1aa0","input_length":615,"output_length":380,"hash_ids":[3488042,3488043],"delay":800.2} +{"session_id":"sess-d451b63d1aa0","input_length":1062,"output_length":93,"hash_ids":[3488044,3488045,3488046],"delay":7810.2} +{"session_id":"sess-d451b63d1aa0","input_length":494,"output_length":258,"hash_ids":[3488047],"delay":131.7} +{"session_id":"sess-d451b63d1aa0","input_length":653,"output_length":187,"hash_ids":[3488048,3488049],"delay":1123.3} +{"session_id":"sess-d451b63d1aa0","input_length":1680,"output_length":95,"hash_ids":[3488050,3488051,3488052,3488053],"delay":1198.3} +{"session_id":"sess-d451b63d1aa0","input_length":1086,"output_length":347,"hash_ids":[3488054,3488055,3488056],"delay":268.6} +{"session_id":"sess-d451b63d1aa0","input_length":843,"output_length":229,"hash_ids":[3488057,3488058],"delay":2042.1} +{"session_id":"sess-d451b63d1aa0","input_length":2978,"output_length":174,"hash_ids":[3488059,3488060,3488061,3488062,3488063,3488064],"delay":295.0} +{"session_id":"sess-38643016c6bf","input_length":26887,"output_length":491,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3492032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-38643016c6bf","input_length":606,"output_length":127,"hash_ids":[3492033,3492034],"delay":117.1} +{"session_id":"sess-38643016c6bf","input_length":1733,"output_length":725,"hash_ids":[3492035,3492036,3492037,3492038],"delay":6470.4} +{"session_id":"sess-38643016c6bf","input_length":2745,"output_length":82,"hash_ids":[3492039,3492040,3492041,3492042,3492043,3492044],"delay":967.7} +{"session_id":"sess-38643016c6bf","input_length":319,"output_length":431,"hash_ids":[3492045],"delay":1034.9} +{"session_id":"sess-38643016c6bf","input_length":717,"output_length":126,"hash_ids":[3492046,3492047],"delay":400.1} +{"session_id":"sess-38643016c6bf","input_length":597,"output_length":43,"hash_ids":[3492048,3492049],"delay":50243.1} +{"session_id":"sess-38643016c6bf","input_length":417,"output_length":157,"hash_ids":[3492050],"delay":4481.5} +{"session_id":"sess-38643016c6bf","input_length":338,"output_length":117,"hash_ids":[3492051],"delay":1834.5} +{"session_id":"sess-38643016c6bf","input_length":714,"output_length":220,"hash_ids":[3492052,3492053],"delay":1374.6} +{"session_id":"sess-38643016c6bf","input_length":445,"output_length":35,"hash_ids":[3492054],"delay":821.0} +{"session_id":"sess-38643016c6bf","input_length":437,"output_length":715,"hash_ids":[3492055],"delay":21564.1} +{"session_id":"sess-38643016c6bf","input_length":1562,"output_length":78,"hash_ids":[3492056,3492057,3492058,3492059],"delay":1367.4} +{"session_id":"sess-38643016c6bf","input_length":248,"output_length":99,"hash_ids":[3492060],"delay":1009.3} +{"session_id":"sess-38643016c6bf","input_length":334,"output_length":158,"hash_ids":[3492061],"delay":3717.3} +{"session_id":"sess-38643016c6bf","input_length":420,"output_length":255,"hash_ids":[3492062],"delay":618.0} +{"session_id":"sess-38643016c6bf","input_length":1369,"output_length":325,"hash_ids":[3492063,3492064,3492065],"delay":297.8} +{"session_id":"sess-38643016c6bf","input_length":2044,"output_length":51,"hash_ids":[3492066,3492067,3492068,3492069],"delay":909.6} +{"session_id":"sess-38643016c6bf","input_length":718,"output_length":82,"hash_ids":[3492070,3492071],"delay":1333.9} +{"session_id":"sess-38643016c6bf","input_length":1328,"output_length":79,"hash_ids":[3492072,3492073,3492074],"delay":2346.1} +{"session_id":"sess-38643016c6bf","input_length":303,"output_length":137,"hash_ids":[3492075],"delay":568.4} +{"session_id":"sess-38643016c6bf","input_length":263,"output_length":226,"hash_ids":[3492076],"delay":313.1} +{"session_id":"sess-38643016c6bf","input_length":2604,"output_length":512,"hash_ids":[3492077,3492078,3492079,3492080,3492081,3492082],"delay":45083.7} +{"session_id":"sess-38643016c6bf","input_length":639,"output_length":367,"hash_ids":[3492083,3492084],"delay":15506.1} +{"session_id":"sess-38643016c6bf","input_length":2515,"output_length":47,"hash_ids":[3492085,3492086,3492087,3492088,3492089],"delay":10053.0} +{"session_id":"sess-38643016c6bf","input_length":474,"output_length":91,"hash_ids":[3492090],"delay":438.5} +{"session_id":"sess-3814c1f49d48","input_length":26901,"output_length":74,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3496032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3814c1f49d48","input_length":220,"output_length":135,"hash_ids":[3496033],"delay":14871.0} +{"session_id":"sess-3814c1f49d48","input_length":554,"output_length":88,"hash_ids":[3496034,3496035],"delay":601.1} +{"session_id":"sess-3814c1f49d48","input_length":646,"output_length":756,"hash_ids":[3496036,3496037],"delay":22069.3} +{"session_id":"sess-3814c1f49d48","input_length":517,"output_length":272,"hash_ids":[3496038,3496039],"delay":1388.4} +{"session_id":"sess-3814c1f49d48","input_length":1376,"output_length":164,"hash_ids":[3496040,3496041,3496042],"delay":396.5} +{"session_id":"sess-3814c1f49d48","input_length":1300,"output_length":40,"hash_ids":[3496043,3496044,3496045],"delay":1161.9} +{"session_id":"sess-3814c1f49d48","input_length":444,"output_length":246,"hash_ids":[3496046],"delay":1313.7} +{"session_id":"sess-3814c1f49d48","input_length":631,"output_length":357,"hash_ids":[3496047,3496048],"delay":22402.6} +{"session_id":"sess-3814c1f49d48","input_length":1190,"output_length":179,"hash_ids":[3496049,3496050,3496051],"delay":6699.2} +{"session_id":"sess-3814c1f49d48","input_length":419,"output_length":615,"hash_ids":[3496052],"delay":1004.1} +{"session_id":"sess-3814c1f49d48","input_length":1404,"output_length":562,"hash_ids":[3496053,3496054,3496055],"delay":1280.5} +{"session_id":"sess-3814c1f49d48","input_length":269,"output_length":170,"hash_ids":[3496056],"delay":15477.5} +{"session_id":"sess-3814c1f49d48","input_length":805,"output_length":214,"hash_ids":[3496057,3496058],"delay":3455.1} +{"session_id":"sess-3814c1f49d48","input_length":532,"output_length":141,"hash_ids":[3496059,3496060],"delay":518.1} +{"session_id":"sess-3814c1f49d48","input_length":1059,"output_length":305,"hash_ids":[3496061,3496062,3496063],"delay":880.8} +{"session_id":"sess-3814c1f49d48","input_length":1047,"output_length":597,"hash_ids":[3496064,3496065,3496066],"delay":1652.9} +{"session_id":"sess-3814c1f49d48","input_length":215,"output_length":186,"hash_ids":[3496067],"delay":2113.5} +{"session_id":"sess-3814c1f49d48","input_length":1325,"output_length":137,"hash_ids":[3496068,3496069,3496070],"delay":1616.2} +{"session_id":"sess-3814c1f49d48","input_length":1139,"output_length":473,"hash_ids":[3496071,3496072,3496073],"delay":4182.1} +{"session_id":"sess-3814c1f49d48","input_length":1478,"output_length":116,"hash_ids":[3496074,3496075,3496076],"delay":33226.1} +{"session_id":"sess-3814c1f49d48","input_length":1269,"output_length":220,"hash_ids":[3496077,3496078,3496079],"delay":569.4} +{"session_id":"sess-3814c1f49d48","input_length":895,"output_length":182,"hash_ids":[3496080,3496081],"delay":186.6} +{"session_id":"sess-8540daedc520","input_length":29994,"output_length":66,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3500032,3500033,3500034,3500035,3500036,3500037,3500038],"timestamp":0.0,"group_id":2} +{"session_id":"sess-8540daedc520","input_length":213,"output_length":1012,"hash_ids":[3500039],"delay":4358.8} +{"session_id":"sess-8540daedc520","input_length":577,"output_length":420,"hash_ids":[3500040,3500041],"delay":244.0} +{"session_id":"sess-8540daedc520","input_length":2045,"output_length":259,"hash_ids":[3500042,3500043,3500044,3500045],"delay":20082.0} +{"session_id":"sess-8540daedc520","input_length":1832,"output_length":90,"hash_ids":[3500046,3500047,3500048,3500049],"delay":16616.8} +{"session_id":"sess-8540daedc520","input_length":520,"output_length":252,"hash_ids":[3500050,3500051],"delay":1602.3} +{"session_id":"sess-8540daedc520","input_length":217,"output_length":408,"hash_ids":[3500052],"delay":62473.3} +{"session_id":"sess-8540daedc520","input_length":557,"output_length":65,"hash_ids":[3500053,3500054],"delay":255.8} +{"session_id":"sess-8540daedc520","input_length":567,"output_length":182,"hash_ids":[3500055,3500056],"delay":1360.0} +{"session_id":"sess-8540daedc520","input_length":364,"output_length":304,"hash_ids":[3500057],"delay":1627.3} +{"session_id":"sess-c0567ed0e41f","input_length":26771,"output_length":469,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,3504032],"timestamp":0.0,"group_id":28} +{"session_id":"sess-c0567ed0e41f","input_length":2428,"output_length":119,"hash_ids":[3504033,3504034,3504035,3504036,3504037],"delay":16979.5} +{"session_id":"sess-c0567ed0e41f","input_length":626,"output_length":379,"hash_ids":[3504038,3504039],"delay":607.4} +{"session_id":"sess-c0567ed0e41f","input_length":133,"output_length":82,"hash_ids":[3504040],"delay":41193.9} +{"session_id":"sess-c0567ed0e41f","input_length":376,"output_length":90,"hash_ids":[3504041],"delay":1630.3} +{"session_id":"sess-0a76ff5a2974","input_length":27611,"output_length":230,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3508032,3508033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-0a76ff5a2974","input_length":75,"output_length":59,"hash_ids":[3508034],"delay":730.6} +{"session_id":"sess-0a76ff5a2974","input_length":941,"output_length":86,"hash_ids":[3508035,3508036],"delay":11263.2} +{"session_id":"sess-60d30c972d92","input_length":27782,"output_length":157,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3512032,3512033,3512034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-60d30c972d92","input_length":2271,"output_length":321,"hash_ids":[3512035,3512036,3512037,3512038,3512039],"delay":1576.3} +{"session_id":"sess-60d30c972d92","input_length":1227,"output_length":132,"hash_ids":[3512040,3512041,3512042],"delay":3438.5} +{"session_id":"sess-60d30c972d92","input_length":2306,"output_length":64,"hash_ids":[3512043,3512044,3512045,3512046,3512047],"delay":47907.8} +{"session_id":"sess-60d30c972d92","input_length":319,"output_length":255,"hash_ids":[3512048],"delay":1204.9} +{"session_id":"sess-60d30c972d92","input_length":498,"output_length":184,"hash_ids":[3512049],"delay":1080.3} +{"session_id":"sess-60d30c972d92","input_length":336,"output_length":794,"hash_ids":[3512050],"delay":330.0} +{"session_id":"sess-60d30c972d92","input_length":1017,"output_length":396,"hash_ids":[3512051,3512052],"delay":8999.5} +{"session_id":"sess-60d30c972d92","input_length":507,"output_length":911,"hash_ids":[3512053],"delay":5180.9} +{"session_id":"sess-60d30c972d92","input_length":1589,"output_length":255,"hash_ids":[3512054,3512055,3512056,3512057],"delay":32354.1} +{"session_id":"sess-ce3ca435bf81","input_length":27310,"output_length":260,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3516032,3516033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ce3ca435bf81","input_length":192,"output_length":164,"hash_ids":[3516034],"delay":2259.6} +{"session_id":"sess-ce3ca435bf81","input_length":1418,"output_length":200,"hash_ids":[3516035,3516036,3516037],"delay":309.1} +{"session_id":"sess-ce3ca435bf81","input_length":2130,"output_length":92,"hash_ids":[3516038,3516039,3516040,3516041,3516042],"delay":1452.8} +{"session_id":"sess-ce3ca435bf81","input_length":194,"output_length":1036,"hash_ids":[3516043],"delay":768.5} +{"session_id":"sess-ce3ca435bf81","input_length":208,"output_length":132,"hash_ids":[3516044],"delay":760.3} +{"session_id":"sess-ce3ca435bf81","input_length":507,"output_length":314,"hash_ids":[3516045],"delay":803.5} +{"session_id":"sess-ce3ca435bf81","input_length":794,"output_length":478,"hash_ids":[3516046,3516047],"delay":1608.3} +{"session_id":"sess-ce3ca435bf81","input_length":1921,"output_length":56,"hash_ids":[3516048,3516049,3516050,3516051],"delay":7633.7} +{"session_id":"sess-ce3ca435bf81","input_length":2552,"output_length":226,"hash_ids":[3516052,3516053,3516054,3516055,3516056],"delay":388.8} +{"session_id":"sess-ce3ca435bf81","input_length":1616,"output_length":222,"hash_ids":[3516057,3516058,3516059,3516060],"delay":292.0} +{"session_id":"sess-ce3ca435bf81","input_length":811,"output_length":384,"hash_ids":[3516061,3516062],"delay":8277.5} +{"session_id":"sess-ce3ca435bf81","input_length":236,"output_length":72,"hash_ids":[3516063],"delay":1723.2} +{"session_id":"sess-ce3ca435bf81","input_length":1349,"output_length":456,"hash_ids":[3516064,3516065,3516066],"delay":1477.0} +{"session_id":"sess-ce3ca435bf81","input_length":1965,"output_length":1141,"hash_ids":[3516067,3516068,3516069,3516070],"delay":1578.8} +{"session_id":"sess-ce3ca435bf81","input_length":2199,"output_length":158,"hash_ids":[3516071,3516072,3516073,3516074,3516075],"delay":8518.9} +{"session_id":"sess-ce3ca435bf81","input_length":822,"output_length":666,"hash_ids":[3516076,3516077],"delay":240.2} +{"session_id":"sess-ce3ca435bf81","input_length":217,"output_length":922,"hash_ids":[3516078],"delay":10960.4} +{"session_id":"sess-ce3ca435bf81","input_length":858,"output_length":763,"hash_ids":[3516079,3516080],"delay":979.2} +{"session_id":"sess-ce3ca435bf81","input_length":496,"output_length":824,"hash_ids":[3516081],"delay":8818.2} +{"session_id":"sess-ce3ca435bf81","input_length":277,"output_length":95,"hash_ids":[3516082],"delay":333.2} +{"session_id":"sess-ce3ca435bf81","input_length":139,"output_length":57,"hash_ids":[3516083],"delay":1980.8} +{"session_id":"sess-ce3ca435bf81","input_length":942,"output_length":472,"hash_ids":[3516084,3516085],"delay":324.7} +{"session_id":"sess-ce3ca435bf81","input_length":703,"output_length":221,"hash_ids":[3516086,3516087],"delay":1764.3} +{"session_id":"sess-ce3ca435bf81","input_length":365,"output_length":66,"hash_ids":[3516088],"delay":122.5} +{"session_id":"sess-ce3ca435bf81","input_length":431,"output_length":464,"hash_ids":[3516089],"delay":542.6} +{"session_id":"sess-ce3ca435bf81","input_length":261,"output_length":200,"hash_ids":[3516090],"delay":141.5} +{"session_id":"sess-ce3ca435bf81","input_length":910,"output_length":135,"hash_ids":[3516091,3516092],"delay":339.6} +{"session_id":"sess-ce3ca435bf81","input_length":38,"output_length":265,"hash_ids":[3516093],"delay":163.3} +{"session_id":"sess-ce3ca435bf81","input_length":1222,"output_length":97,"hash_ids":[3516094,3516095,3516096],"delay":18294.1} +{"session_id":"sess-ce3ca435bf81","input_length":1069,"output_length":424,"hash_ids":[3516097,3516098,3516099],"delay":1845.0} +{"session_id":"sess-c7bfc208ce92","input_length":28252,"output_length":1196,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,3520032,3520033,3520034,3520035],"timestamp":0.0,"group_id":29} +{"session_id":"sess-c7bfc208ce92","input_length":2847,"output_length":80,"hash_ids":[3520036,3520037,3520038,3520039,3520040,3520041],"delay":2509.1} +{"session_id":"sess-c7bfc208ce92","input_length":2063,"output_length":71,"hash_ids":[3520042,3520043,3520044,3520045,3520046],"delay":2395.3} +{"session_id":"sess-c7bfc208ce92","input_length":667,"output_length":266,"hash_ids":[3520047,3520048],"delay":1971.2} +{"session_id":"sess-c7bfc208ce92","input_length":919,"output_length":685,"hash_ids":[3520049,3520050],"delay":773.9} +{"session_id":"sess-c7bfc208ce92","input_length":483,"output_length":72,"hash_ids":[3520051],"delay":857.6} +{"session_id":"sess-c7bfc208ce92","input_length":1809,"output_length":47,"hash_ids":[3520052,3520053,3520054,3520055],"delay":621.9} +{"session_id":"sess-a5fb5ae0c663","input_length":26834,"output_length":32,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3524032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a5fb5ae0c663","input_length":1991,"output_length":132,"hash_ids":[3524033,3524034,3524035,3524036],"delay":1021.2} +{"session_id":"sess-a5fb5ae0c663","input_length":1084,"output_length":614,"hash_ids":[3524037,3524038,3524039],"delay":1043.1} +{"session_id":"sess-a5fb5ae0c663","input_length":163,"output_length":161,"hash_ids":[3524040],"delay":8858.3} +{"session_id":"sess-a5fb5ae0c663","input_length":617,"output_length":391,"hash_ids":[3524041,3524042],"delay":25396.0} +{"session_id":"sess-a5fb5ae0c663","input_length":2956,"output_length":68,"hash_ids":[3524043,3524044,3524045,3524046,3524047,3524048],"delay":1944.4} +{"session_id":"sess-91212f47335e","input_length":29102,"output_length":300,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3528032,3528033,3528034,3528035,3528036],"timestamp":0.0,"group_id":8} +{"session_id":"sess-91212f47335e","input_length":539,"output_length":644,"hash_ids":[3528037,3528038],"delay":28003.4} +{"session_id":"sess-91212f47335e","input_length":219,"output_length":48,"hash_ids":[3528039],"delay":14163.1} +{"session_id":"sess-91212f47335e","input_length":142,"output_length":119,"hash_ids":[3528040],"delay":8869.0} +{"session_id":"sess-91212f47335e","input_length":59,"output_length":39,"hash_ids":[3528041],"delay":4024.1} +{"session_id":"sess-91212f47335e","input_length":1032,"output_length":146,"hash_ids":[3528042,3528043,3528044],"delay":55155.4} +{"session_id":"sess-91212f47335e","input_length":1165,"output_length":81,"hash_ids":[3528045,3528046,3528047],"delay":1019.8} +{"session_id":"sess-91212f47335e","input_length":134,"output_length":382,"hash_ids":[3528048],"delay":1750.0} +{"session_id":"sess-91212f47335e","input_length":1434,"output_length":478,"hash_ids":[3528049,3528050,3528051],"delay":1679.6} +{"session_id":"sess-91212f47335e","input_length":918,"output_length":36,"hash_ids":[3528052,3528053],"delay":2841.1} +{"session_id":"sess-91212f47335e","input_length":674,"output_length":363,"hash_ids":[3528054,3528055],"delay":296.9} +{"session_id":"sess-91212f47335e","input_length":1859,"output_length":260,"hash_ids":[3528056,3528057,3528058,3528059],"delay":11032.5} +{"session_id":"sess-91212f47335e","input_length":645,"output_length":678,"hash_ids":[3528060,3528061],"delay":486.7} +{"session_id":"sess-91212f47335e","input_length":691,"output_length":108,"hash_ids":[3528062,3528063],"delay":8921.4} +{"session_id":"sess-91212f47335e","input_length":1390,"output_length":156,"hash_ids":[3528064,3528065,3528066],"delay":315.6} +{"session_id":"sess-91212f47335e","input_length":1359,"output_length":1220,"hash_ids":[3528067,3528068,3528069],"delay":515.2} +{"session_id":"sess-91212f47335e","input_length":1834,"output_length":94,"hash_ids":[3528070,3528071,3528072,3528073],"delay":12618.0} +{"session_id":"sess-91212f47335e","input_length":2191,"output_length":464,"hash_ids":[3528074,3528075,3528076,3528077,3528078],"delay":752.9} +{"session_id":"sess-91212f47335e","input_length":1259,"output_length":78,"hash_ids":[3528079,3528080,3528081],"delay":745.0} +{"session_id":"sess-91212f47335e","input_length":423,"output_length":81,"hash_ids":[3528082],"delay":417.1} +{"session_id":"sess-91212f47335e","input_length":289,"output_length":225,"hash_ids":[3528083],"delay":736.4} +{"session_id":"sess-91212f47335e","input_length":930,"output_length":180,"hash_ids":[3528084,3528085],"delay":867.3} +{"session_id":"sess-91212f47335e","input_length":686,"output_length":346,"hash_ids":[3528086,3528087],"delay":304.0} +{"session_id":"sess-91212f47335e","input_length":507,"output_length":30,"hash_ids":[3528088],"delay":1113.3} +{"session_id":"sess-91212f47335e","input_length":375,"output_length":67,"hash_ids":[3528089],"delay":691.8} +{"session_id":"sess-91212f47335e","input_length":98,"output_length":248,"hash_ids":[3528090],"delay":6018.7} +{"session_id":"sess-91212f47335e","input_length":910,"output_length":795,"hash_ids":[3528091,3528092],"delay":4747.0} +{"session_id":"sess-91212f47335e","input_length":242,"output_length":180,"hash_ids":[3528093],"delay":358.4} +{"session_id":"sess-91212f47335e","input_length":587,"output_length":52,"hash_ids":[3528094,3528095],"delay":203.0} +{"session_id":"sess-91212f47335e","input_length":827,"output_length":48,"hash_ids":[3528096,3528097],"delay":1694.9} +{"session_id":"sess-91212f47335e","input_length":192,"output_length":111,"hash_ids":[3528098],"delay":13478.4} +{"session_id":"sess-91212f47335e","input_length":784,"output_length":541,"hash_ids":[3528099,3528100],"delay":5884.5} +{"session_id":"sess-91212f47335e","input_length":561,"output_length":141,"hash_ids":[3528101,3528102],"delay":140.9} +{"session_id":"sess-91212f47335e","input_length":1723,"output_length":74,"hash_ids":[3528103,3528104,3528105,3528106],"delay":4904.4} +{"session_id":"sess-fe8b0c70b10d","input_length":27026,"output_length":94,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3532032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-fe8b0c70b10d","input_length":767,"output_length":86,"hash_ids":[3532033,3532034],"delay":442.7} +{"session_id":"sess-fe8b0c70b10d","input_length":1187,"output_length":124,"hash_ids":[3532035,3532036,3532037],"delay":590.3} +{"session_id":"sess-fe8b0c70b10d","input_length":1130,"output_length":208,"hash_ids":[3532038,3532039,3532040],"delay":216.4} +{"session_id":"sess-fe8b0c70b10d","input_length":427,"output_length":278,"hash_ids":[3532041],"delay":1419.1} +{"session_id":"sess-fe8b0c70b10d","input_length":468,"output_length":111,"hash_ids":[3532042],"delay":1125.7} +{"session_id":"sess-fe8b0c70b10d","input_length":496,"output_length":51,"hash_ids":[3532043],"delay":915.7} +{"session_id":"sess-fe8b0c70b10d","input_length":1684,"output_length":79,"hash_ids":[3532044,3532045,3532046,3532047],"delay":3534.7} +{"session_id":"sess-fe8b0c70b10d","input_length":754,"output_length":40,"hash_ids":[3532048,3532049],"delay":839.0} +{"session_id":"sess-fe8b0c70b10d","input_length":167,"output_length":745,"hash_ids":[3532050],"delay":808.8} +{"session_id":"sess-fe8b0c70b10d","input_length":913,"output_length":372,"hash_ids":[3532051,3532052],"delay":369.8} +{"session_id":"sess-fe8b0c70b10d","input_length":433,"output_length":103,"hash_ids":[3532053],"delay":1502.0} +{"session_id":"sess-fe8b0c70b10d","input_length":746,"output_length":631,"hash_ids":[3532054,3532055],"delay":3801.9} +{"session_id":"sess-fe8b0c70b10d","input_length":473,"output_length":605,"hash_ids":[3532056],"delay":786.4} +{"session_id":"sess-fe8b0c70b10d","input_length":641,"output_length":194,"hash_ids":[3532057,3532058],"delay":315.0} +{"session_id":"sess-fe8b0c70b10d","input_length":1323,"output_length":210,"hash_ids":[3532059,3532060,3532061],"delay":892.9} +{"session_id":"sess-fe8b0c70b10d","input_length":438,"output_length":310,"hash_ids":[3532062],"delay":869.8} +{"session_id":"sess-fe8b0c70b10d","input_length":1985,"output_length":302,"hash_ids":[3532063,3532064,3532065,3532066],"delay":9964.3} +{"session_id":"sess-fe8b0c70b10d","input_length":518,"output_length":733,"hash_ids":[3532067,3532068],"delay":6750.4} +{"session_id":"sess-fe8b0c70b10d","input_length":744,"output_length":100,"hash_ids":[3532069,3532070],"delay":695.5} +{"session_id":"sess-fe8b0c70b10d","input_length":1066,"output_length":128,"hash_ids":[3532071,3532072,3532073],"delay":432.0} +{"session_id":"sess-fe8b0c70b10d","input_length":319,"output_length":59,"hash_ids":[3532074],"delay":6193.6} +{"session_id":"sess-fe8b0c70b10d","input_length":306,"output_length":300,"hash_ids":[3532075],"delay":1085.6} +{"session_id":"sess-fe8b0c70b10d","input_length":1804,"output_length":42,"hash_ids":[3532076,3532077,3532078,3532079],"delay":642.9} +{"session_id":"sess-fe8b0c70b10d","input_length":2751,"output_length":276,"hash_ids":[3532080,3532081,3532082,3532083,3532084,3532085],"delay":1196.2} +{"session_id":"sess-fe8b0c70b10d","input_length":1942,"output_length":63,"hash_ids":[3532086,3532087,3532088,3532089],"delay":113.8} +{"session_id":"sess-fe8b0c70b10d","input_length":283,"output_length":903,"hash_ids":[3532090],"delay":10976.4} +{"session_id":"sess-fe8b0c70b10d","input_length":1578,"output_length":417,"hash_ids":[3532091,3532092,3532093,3532094],"delay":2577.2} +{"session_id":"sess-fe8b0c70b10d","input_length":842,"output_length":175,"hash_ids":[3532095,3532096],"delay":333.9} +{"session_id":"sess-fe8b0c70b10d","input_length":578,"output_length":227,"hash_ids":[3532097,3532098],"delay":447.2} +{"session_id":"sess-fe8b0c70b10d","input_length":1181,"output_length":346,"hash_ids":[3532099,3532100,3532101],"delay":466.9} +{"session_id":"sess-fe8b0c70b10d","input_length":2190,"output_length":130,"hash_ids":[3532102,3532103,3532104,3532105,3532106],"delay":1070.5} +{"session_id":"sess-b130435725c1","input_length":28087,"output_length":360,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,3536032,3536033,3536034],"timestamp":0.0,"group_id":14} +{"session_id":"sess-b130435725c1","input_length":309,"output_length":201,"hash_ids":[3536035],"delay":5073.1} +{"session_id":"sess-b130435725c1","input_length":235,"output_length":81,"hash_ids":[3536036],"delay":1908.3} +{"session_id":"sess-b130435725c1","input_length":838,"output_length":108,"hash_ids":[3536037,3536038],"delay":8675.9} +{"session_id":"sess-b130435725c1","input_length":2152,"output_length":81,"hash_ids":[3536039,3536040,3536041,3536042,3536043],"delay":1276.0} +{"session_id":"sess-dc1dcd4010bf","input_length":26374,"output_length":172,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451],"timestamp":0.0,"group_id":2} +{"session_id":"sess-dc1dcd4010bf","input_length":998,"output_length":1384,"hash_ids":[3536044,3536045],"delay":6813.3} +{"session_id":"sess-dc1dcd4010bf","input_length":379,"output_length":433,"hash_ids":[3536046],"delay":561.2} +{"session_id":"sess-dc1dcd4010bf","input_length":470,"output_length":73,"hash_ids":[3536047],"delay":2736.0} +{"session_id":"sess-dc1dcd4010bf","input_length":140,"output_length":122,"hash_ids":[3536048],"delay":18450.5} +{"session_id":"sess-dc1dcd4010bf","input_length":1000,"output_length":320,"hash_ids":[3536049,3536050],"delay":126.7} +{"session_id":"sess-dc1dcd4010bf","input_length":2075,"output_length":240,"hash_ids":[3536051,3536052,3536053,3536054,3536055],"delay":362.4} +{"session_id":"sess-dc1dcd4010bf","input_length":248,"output_length":138,"hash_ids":[3536056],"delay":1210.8} +{"session_id":"sess-dc1dcd4010bf","input_length":429,"output_length":565,"hash_ids":[3536057],"delay":1687.3} +{"session_id":"sess-dc1dcd4010bf","input_length":1883,"output_length":62,"hash_ids":[3536058,3536059,3536060,3536061],"delay":8438.9} +{"session_id":"sess-dc1dcd4010bf","input_length":229,"output_length":98,"hash_ids":[3536062],"delay":1124.6} +{"session_id":"sess-dc1dcd4010bf","input_length":2177,"output_length":243,"hash_ids":[3536063,3536064,3536065,3536066,3536067],"delay":203.2} +{"session_id":"sess-dc1dcd4010bf","input_length":777,"output_length":82,"hash_ids":[3536068,3536069],"delay":4526.3} +{"session_id":"sess-dc1dcd4010bf","input_length":2942,"output_length":197,"hash_ids":[3536070,3536071,3536072,3536073,3536074,3536075],"delay":2865.6} +{"session_id":"sess-5f641acccd8f","input_length":29013,"output_length":605,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,3544032,3544033,3544034,3544035,3544036],"timestamp":0.0,"group_id":10} +{"session_id":"sess-5f641acccd8f","input_length":1089,"output_length":493,"hash_ids":[3544037,3544038,3544039],"delay":16124.2} +{"session_id":"sess-5f641acccd8f","input_length":1483,"output_length":163,"hash_ids":[3544040,3544041,3544042],"delay":304.2} +{"session_id":"sess-5f641acccd8f","input_length":959,"output_length":601,"hash_ids":[3544043,3544044],"delay":25064.5} +{"session_id":"sess-5f641acccd8f","input_length":1233,"output_length":44,"hash_ids":[3544045,3544046,3544047],"delay":2288.5} +{"session_id":"sess-5f641acccd8f","input_length":685,"output_length":862,"hash_ids":[3544048,3544049],"delay":442.2} +{"session_id":"sess-5f641acccd8f","input_length":1137,"output_length":164,"hash_ids":[3544050,3544051,3544052],"delay":366.7} +{"session_id":"sess-5f641acccd8f","input_length":1915,"output_length":536,"hash_ids":[3544053,3544054,3544055,3544056],"delay":5329.1} +{"session_id":"sess-5f641acccd8f","input_length":968,"output_length":63,"hash_ids":[3544057,3544058],"delay":4747.0} +{"session_id":"sess-5f641acccd8f","input_length":967,"output_length":207,"hash_ids":[3544059,3544060],"delay":936.0} +{"session_id":"sess-7c9ca1c7f8a0","input_length":28775,"output_length":75,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,3548032,3548033,3548034,3548035,3548036],"timestamp":0.0,"group_id":32} +{"session_id":"sess-7c9ca1c7f8a0","input_length":294,"output_length":69,"hash_ids":[3548037],"delay":43141.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1105,"output_length":117,"hash_ids":[3548038,3548039,3548040],"delay":17340.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1732,"output_length":174,"hash_ids":[3548041,3548042,3548043,3548044],"delay":322.4} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1514,"output_length":395,"hash_ids":[3548045,3548046,3548047],"delay":35815.1} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1343,"output_length":33,"hash_ids":[3548048,3548049,3548050],"delay":5018.4} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1562,"output_length":191,"hash_ids":[3548051,3548052,3548053,3548054],"delay":1007.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1303,"output_length":412,"hash_ids":[3548055,3548056,3548057],"delay":419.5} +{"session_id":"sess-7c9ca1c7f8a0","input_length":2471,"output_length":180,"hash_ids":[3548058,3548059,3548060,3548061,3548062],"delay":1070.0} +{"session_id":"sess-7c9ca1c7f8a0","input_length":489,"output_length":305,"hash_ids":[3548063],"delay":875.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":785,"output_length":900,"hash_ids":[3548064,3548065],"delay":16964.5} +{"session_id":"sess-7c9ca1c7f8a0","input_length":879,"output_length":699,"hash_ids":[3548066,3548067],"delay":5852.3} +{"session_id":"sess-7c9ca1c7f8a0","input_length":2846,"output_length":41,"hash_ids":[3548068,3548069,3548070,3548071,3548072,3548073],"delay":13113.8} +{"session_id":"sess-7c9ca1c7f8a0","input_length":725,"output_length":401,"hash_ids":[3548074,3548075],"delay":724.4} +{"session_id":"sess-7c9ca1c7f8a0","input_length":1692,"output_length":684,"hash_ids":[3548076,3548077,3548078,3548079],"delay":547.6} +{"session_id":"sess-021493e72978","input_length":26849,"output_length":206,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,3552032],"timestamp":0.0,"group_id":28} +{"session_id":"sess-021493e72978","input_length":2380,"output_length":129,"hash_ids":[3552033,3552034,3552035,3552036,3552037],"delay":870.1} +{"session_id":"sess-021493e72978","input_length":1017,"output_length":873,"hash_ids":[3552038,3552039],"delay":12156.9} +{"session_id":"sess-021493e72978","input_length":2873,"output_length":94,"hash_ids":[3552040,3552041,3552042,3552043,3552044,3552045],"delay":5156.8} +{"session_id":"sess-021493e72978","input_length":2034,"output_length":42,"hash_ids":[3552046,3552047,3552048,3552049],"delay":8928.2} +{"session_id":"sess-021493e72978","input_length":174,"output_length":89,"hash_ids":[3552050],"delay":2186.5} +{"session_id":"sess-021493e72978","input_length":394,"output_length":202,"hash_ids":[3552051],"delay":1283.0} +{"session_id":"sess-021493e72978","input_length":1731,"output_length":260,"hash_ids":[3552052,3552053,3552054,3552055],"delay":503.9} +{"session_id":"sess-7f278ebd6f62","input_length":31585,"output_length":165,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,3556032,3556033,3556034,3556035,3556036,3556037,3556038,3556039,3556040,3556041],"timestamp":0.0,"group_id":48} +{"session_id":"sess-7f278ebd6f62","input_length":1123,"output_length":168,"hash_ids":[3556042,3556043,3556044],"delay":26169.9} +{"session_id":"sess-7f278ebd6f62","input_length":457,"output_length":106,"hash_ids":[3556045],"delay":14476.7} +{"session_id":"sess-7f278ebd6f62","input_length":595,"output_length":222,"hash_ids":[3556046,3556047],"delay":2079.8} +{"session_id":"sess-d362a85b1dd8","input_length":33413,"output_length":357,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,3560032,3560033,3560034,3560035,3560036,3560037,3560038,3560039,3560040,3560041,3560042,3560043,3560044,3560045],"timestamp":0.0,"group_id":29} +{"session_id":"sess-d362a85b1dd8","input_length":975,"output_length":417,"hash_ids":[3560046,3560047],"delay":37679.3} +{"session_id":"sess-d362a85b1dd8","input_length":1407,"output_length":53,"hash_ids":[3560048,3560049,3560050],"delay":12109.1} +{"session_id":"sess-d362a85b1dd8","input_length":2365,"output_length":192,"hash_ids":[3560051,3560052,3560053,3560054,3560055],"delay":879.4} +{"session_id":"sess-d362a85b1dd8","input_length":278,"output_length":36,"hash_ids":[3560056],"delay":19335.5} +{"session_id":"sess-d362a85b1dd8","input_length":1323,"output_length":349,"hash_ids":[3560057,3560058,3560059],"delay":8041.4} +{"session_id":"sess-d362a85b1dd8","input_length":715,"output_length":151,"hash_ids":[3560060,3560061],"delay":521.1} +{"session_id":"sess-d362a85b1dd8","input_length":322,"output_length":88,"hash_ids":[3560062],"delay":538.6} +{"session_id":"sess-d362a85b1dd8","input_length":886,"output_length":348,"hash_ids":[3560063,3560064],"delay":1986.2} +{"session_id":"sess-d362a85b1dd8","input_length":975,"output_length":62,"hash_ids":[3560065,3560066],"delay":5006.6} +{"session_id":"sess-d362a85b1dd8","input_length":1912,"output_length":586,"hash_ids":[3560067,3560068,3560069,3560070],"delay":1040.2} +{"session_id":"sess-d362a85b1dd8","input_length":1432,"output_length":245,"hash_ids":[3560071,3560072,3560073],"delay":1713.1} +{"session_id":"sess-d362a85b1dd8","input_length":611,"output_length":617,"hash_ids":[3560074,3560075],"delay":925.5} +{"session_id":"sess-d362a85b1dd8","input_length":1105,"output_length":68,"hash_ids":[3560076,3560077,3560078],"delay":744.1} +{"session_id":"sess-d362a85b1dd8","input_length":2280,"output_length":101,"hash_ids":[3560079,3560080,3560081,3560082,3560083],"delay":384.4} +{"session_id":"sess-d362a85b1dd8","input_length":816,"output_length":298,"hash_ids":[3560084,3560085],"delay":7396.4} +{"session_id":"sess-d362a85b1dd8","input_length":2163,"output_length":1475,"hash_ids":[3560086,3560087,3560088,3560089,3560090],"delay":8043.8} +{"session_id":"sess-d362a85b1dd8","input_length":2162,"output_length":123,"hash_ids":[3560091,3560092,3560093,3560094,3560095],"delay":388.5} +{"session_id":"sess-d362a85b1dd8","input_length":593,"output_length":115,"hash_ids":[3560096,3560097],"delay":172.2} +{"session_id":"sess-d362a85b1dd8","input_length":177,"output_length":1043,"hash_ids":[3560098],"delay":824.8} +{"session_id":"sess-d362a85b1dd8","input_length":323,"output_length":371,"hash_ids":[3560099],"delay":8681.4} +{"session_id":"sess-d362a85b1dd8","input_length":190,"output_length":490,"hash_ids":[3560100],"delay":10968.4} +{"session_id":"sess-d362a85b1dd8","input_length":283,"output_length":98,"hash_ids":[3560101],"delay":427.5} +{"session_id":"sess-31d45aee4dcb","input_length":27096,"output_length":54,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3564032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-31d45aee4dcb","input_length":1785,"output_length":348,"hash_ids":[3564033,3564034,3564035,3564036],"delay":532.3} +{"session_id":"sess-31d45aee4dcb","input_length":1113,"output_length":613,"hash_ids":[3564037,3564038,3564039],"delay":942.2} +{"session_id":"sess-31d45aee4dcb","input_length":1092,"output_length":160,"hash_ids":[3564040,3564041,3564042],"delay":25568.2} +{"session_id":"sess-31d45aee4dcb","input_length":522,"output_length":76,"hash_ids":[3564043,3564044],"delay":4173.4} +{"session_id":"sess-31d45aee4dcb","input_length":1698,"output_length":245,"hash_ids":[3564045,3564046,3564047,3564048],"delay":8456.2} +{"session_id":"sess-31d45aee4dcb","input_length":780,"output_length":126,"hash_ids":[3564049,3564050],"delay":26457.3} +{"session_id":"sess-31d45aee4dcb","input_length":520,"output_length":213,"hash_ids":[3564051,3564052],"delay":2463.7} +{"session_id":"sess-31d45aee4dcb","input_length":1880,"output_length":122,"hash_ids":[3564053,3564054,3564055,3564056],"delay":12660.4} +{"session_id":"sess-31d45aee4dcb","input_length":694,"output_length":143,"hash_ids":[3564057,3564058],"delay":1178.1} +{"session_id":"sess-31d45aee4dcb","input_length":575,"output_length":215,"hash_ids":[3564059,3564060],"delay":384.5} +{"session_id":"sess-31d45aee4dcb","input_length":611,"output_length":369,"hash_ids":[3564061,3564062],"delay":616.3} +{"session_id":"sess-31d45aee4dcb","input_length":307,"output_length":70,"hash_ids":[3564063],"delay":390.2} +{"session_id":"sess-31d45aee4dcb","input_length":242,"output_length":66,"hash_ids":[3564064],"delay":3478.2} +{"session_id":"sess-31d45aee4dcb","input_length":1643,"output_length":56,"hash_ids":[3564065,3564066,3564067,3564068],"delay":786.3} +{"session_id":"sess-31d45aee4dcb","input_length":401,"output_length":198,"hash_ids":[3564069],"delay":906.4} +{"session_id":"sess-31d45aee4dcb","input_length":974,"output_length":154,"hash_ids":[3564070,3564071],"delay":839.2} +{"session_id":"sess-31d45aee4dcb","input_length":1406,"output_length":275,"hash_ids":[3564072,3564073,3564074],"delay":803.5} +{"session_id":"sess-31d45aee4dcb","input_length":411,"output_length":159,"hash_ids":[3564075],"delay":5051.9} +{"session_id":"sess-31d45aee4dcb","input_length":547,"output_length":187,"hash_ids":[3564076,3564077],"delay":4735.1} +{"session_id":"sess-31d45aee4dcb","input_length":1654,"output_length":82,"hash_ids":[3564078,3564079,3564080,3564081],"delay":1989.2} +{"session_id":"sess-31d45aee4dcb","input_length":721,"output_length":158,"hash_ids":[3564082,3564083],"delay":428.2} +{"session_id":"sess-31d45aee4dcb","input_length":1769,"output_length":95,"hash_ids":[3564084,3564085,3564086,3564087],"delay":10594.0} +{"session_id":"sess-31d45aee4dcb","input_length":2532,"output_length":984,"hash_ids":[3564088,3564089,3564090,3564091,3564092],"delay":20415.5} +{"session_id":"sess-31d45aee4dcb","input_length":1555,"output_length":128,"hash_ids":[3564093,3564094,3564095,3564096],"delay":1193.1} +{"session_id":"sess-31d45aee4dcb","input_length":686,"output_length":1077,"hash_ids":[3564097,3564098],"delay":1060.3} +{"session_id":"sess-31d45aee4dcb","input_length":735,"output_length":218,"hash_ids":[3564099,3564100],"delay":283.6} +{"session_id":"sess-31d45aee4dcb","input_length":1043,"output_length":67,"hash_ids":[3564101,3564102,3564103],"delay":391.0} +{"session_id":"sess-31d45aee4dcb","input_length":2295,"output_length":159,"hash_ids":[3564104,3564105,3564106,3564107,3564108],"delay":5113.6} +{"session_id":"sess-31d45aee4dcb","input_length":221,"output_length":401,"hash_ids":[3564109],"delay":5484.8} +{"session_id":"sess-31d45aee4dcb","input_length":297,"output_length":180,"hash_ids":[3564110],"delay":1166.8} +{"session_id":"sess-bd042a22a610","input_length":27508,"output_length":246,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3568032,3568033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-bd042a22a610","input_length":2228,"output_length":229,"hash_ids":[3568034,3568035,3568036,3568037,3568038],"delay":1375.1} +{"session_id":"sess-bd042a22a610","input_length":424,"output_length":1130,"hash_ids":[3568039],"delay":8856.6} +{"session_id":"sess-bd042a22a610","input_length":830,"output_length":147,"hash_ids":[3568040,3568041],"delay":2809.7} +{"session_id":"sess-bd042a22a610","input_length":390,"output_length":238,"hash_ids":[3568042],"delay":1423.0} +{"session_id":"sess-bd042a22a610","input_length":261,"output_length":139,"hash_ids":[3568043],"delay":655.0} +{"session_id":"sess-bd042a22a610","input_length":991,"output_length":286,"hash_ids":[3568044,3568045],"delay":1558.4} +{"session_id":"sess-bd042a22a610","input_length":827,"output_length":118,"hash_ids":[3568046,3568047],"delay":31515.9} +{"session_id":"sess-bd042a22a610","input_length":842,"output_length":152,"hash_ids":[3568048,3568049],"delay":2090.3} +{"session_id":"sess-bd042a22a610","input_length":846,"output_length":30,"hash_ids":[3568050,3568051],"delay":364.9} +{"session_id":"sess-bd042a22a610","input_length":827,"output_length":74,"hash_ids":[3568052,3568053],"delay":2514.2} +{"session_id":"sess-bd042a22a610","input_length":151,"output_length":119,"hash_ids":[3568054],"delay":1222.1} +{"session_id":"sess-bd042a22a610","input_length":1434,"output_length":132,"hash_ids":[3568055,3568056,3568057],"delay":277.5} +{"session_id":"sess-bd042a22a610","input_length":974,"output_length":65,"hash_ids":[3568058,3568059],"delay":516.1} +{"session_id":"sess-bd042a22a610","input_length":428,"output_length":253,"hash_ids":[3568060],"delay":265.8} +{"session_id":"sess-bd042a22a610","input_length":1148,"output_length":669,"hash_ids":[3568061,3568062,3568063],"delay":536.7} +{"session_id":"sess-bd042a22a610","input_length":384,"output_length":239,"hash_ids":[3568064],"delay":2738.6} +{"session_id":"sess-bd042a22a610","input_length":808,"output_length":163,"hash_ids":[3568065,3568066],"delay":21333.0} +{"session_id":"sess-bd042a22a610","input_length":903,"output_length":256,"hash_ids":[3568067,3568068],"delay":15998.9} +{"session_id":"sess-bd042a22a610","input_length":1225,"output_length":125,"hash_ids":[3568069,3568070,3568071],"delay":743.4} +{"session_id":"sess-bd042a22a610","input_length":780,"output_length":126,"hash_ids":[3568072,3568073],"delay":1442.0} +{"session_id":"sess-bd042a22a610","input_length":757,"output_length":419,"hash_ids":[3568074,3568075],"delay":2426.3} +{"session_id":"sess-bd042a22a610","input_length":605,"output_length":260,"hash_ids":[3568076,3568077],"delay":3296.5} +{"session_id":"sess-bd042a22a610","input_length":1156,"output_length":512,"hash_ids":[3568078,3568079,3568080],"delay":409.6} +{"session_id":"sess-bd042a22a610","input_length":110,"output_length":31,"hash_ids":[3568081],"delay":490.8} +{"session_id":"sess-bd042a22a610","input_length":381,"output_length":96,"hash_ids":[3568082],"delay":8250.4} +{"session_id":"sess-bd042a22a610","input_length":816,"output_length":201,"hash_ids":[3568083,3568084],"delay":1539.6} +{"session_id":"sess-8c437210a8c7","input_length":36021,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,3572032,3572033,3572034,3572035,3572036,3572037,3572038,3572039,3572040,3572041,3572042,3572043,3572044,3572045,3572046,3572047,3572048,3572049,3572050],"timestamp":0.0,"group_id":40} +{"session_id":"sess-8c437210a8c7","input_length":332,"output_length":30,"hash_ids":[3572051],"delay":2412.3} +{"session_id":"sess-8c437210a8c7","input_length":353,"output_length":55,"hash_ids":[3572052],"delay":1510.9} +{"session_id":"sess-8c437210a8c7","input_length":753,"output_length":159,"hash_ids":[3572053,3572054],"delay":829.0} +{"session_id":"sess-8c437210a8c7","input_length":311,"output_length":39,"hash_ids":[3572055],"delay":1978.4} +{"session_id":"sess-8c437210a8c7","input_length":436,"output_length":170,"hash_ids":[3572056],"delay":136.0} +{"session_id":"sess-8c437210a8c7","input_length":989,"output_length":922,"hash_ids":[3572057,3572058],"delay":600.9} +{"session_id":"sess-8c437210a8c7","input_length":1312,"output_length":213,"hash_ids":[3572059,3572060,3572061],"delay":8439.4} +{"session_id":"sess-8c437210a8c7","input_length":834,"output_length":60,"hash_ids":[3572062,3572063],"delay":9445.6} +{"session_id":"sess-8c437210a8c7","input_length":2791,"output_length":124,"hash_ids":[3572064,3572065,3572066,3572067,3572068,3572069],"delay":375.3} +{"session_id":"sess-8c437210a8c7","input_length":948,"output_length":467,"hash_ids":[3572070,3572071],"delay":369.9} +{"session_id":"sess-8c437210a8c7","input_length":1216,"output_length":1417,"hash_ids":[3572072,3572073,3572074],"delay":8673.1} +{"session_id":"sess-8c437210a8c7","input_length":1233,"output_length":176,"hash_ids":[3572075,3572076,3572077],"delay":1736.5} +{"session_id":"sess-8c437210a8c7","input_length":2282,"output_length":329,"hash_ids":[3572078,3572079,3572080,3572081,3572082],"delay":1977.5} +{"session_id":"sess-8c437210a8c7","input_length":194,"output_length":132,"hash_ids":[3572083],"delay":4026.3} +{"session_id":"sess-a9582c113c3b","input_length":26708,"output_length":91,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,3576032],"timestamp":0.0,"group_id":4} +{"session_id":"sess-a9582c113c3b","input_length":1662,"output_length":283,"hash_ids":[3576033,3576034,3576035,3576036],"delay":7034.7} +{"session_id":"sess-a9582c113c3b","input_length":1530,"output_length":222,"hash_ids":[3576037,3576038,3576039],"delay":2058.8} +{"session_id":"sess-a9582c113c3b","input_length":1223,"output_length":30,"hash_ids":[3576040,3576041,3576042],"delay":12182.1} +{"session_id":"sess-a9582c113c3b","input_length":873,"output_length":612,"hash_ids":[3576043,3576044],"delay":2844.8} +{"session_id":"sess-a9582c113c3b","input_length":102,"output_length":218,"hash_ids":[3576045],"delay":10911.9} +{"session_id":"sess-a9582c113c3b","input_length":175,"output_length":377,"hash_ids":[3576046],"delay":25000.8} +{"session_id":"sess-a9582c113c3b","input_length":2698,"output_length":298,"hash_ids":[3576047,3576048,3576049,3576050,3576051,3576052],"delay":849.6} +{"session_id":"sess-a9582c113c3b","input_length":70,"output_length":331,"hash_ids":[3576053],"delay":18497.2} +{"session_id":"sess-a9582c113c3b","input_length":1113,"output_length":203,"hash_ids":[3576054,3576055,3576056],"delay":4654.3} +{"session_id":"sess-a9582c113c3b","input_length":501,"output_length":334,"hash_ids":[3576057],"delay":1260.1} +{"session_id":"sess-a9582c113c3b","input_length":620,"output_length":76,"hash_ids":[3576058,3576059],"delay":1131.0} +{"session_id":"sess-a9582c113c3b","input_length":2589,"output_length":122,"hash_ids":[3576060,3576061,3576062,3576063,3576064,3576065],"delay":2571.3} +{"session_id":"sess-a9582c113c3b","input_length":2401,"output_length":121,"hash_ids":[3576066,3576067,3576068,3576069,3576070],"delay":875.0} +{"session_id":"sess-a9582c113c3b","input_length":2384,"output_length":80,"hash_ids":[3576071,3576072,3576073,3576074,3576075],"delay":243.3} +{"session_id":"sess-22bff0f2137a","input_length":31535,"output_length":279,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3580032,3580033,3580034,3580035,3580036,3580037,3580038,3580039,3580040,3580041],"timestamp":0.0,"group_id":17} +{"session_id":"sess-22bff0f2137a","input_length":561,"output_length":267,"hash_ids":[3580042,3580043],"delay":8126.0} +{"session_id":"sess-22bff0f2137a","input_length":2553,"output_length":431,"hash_ids":[3580044,3580045,3580046,3580047,3580048],"delay":199.1} +{"session_id":"sess-22bff0f2137a","input_length":1053,"output_length":115,"hash_ids":[3580049,3580050,3580051],"delay":2454.1} +{"session_id":"sess-22bff0f2137a","input_length":105,"output_length":100,"hash_ids":[3580052],"delay":83.2} +{"session_id":"sess-22bff0f2137a","input_length":516,"output_length":278,"hash_ids":[3580053,3580054],"delay":632.7} +{"session_id":"sess-22bff0f2137a","input_length":631,"output_length":124,"hash_ids":[3580055,3580056],"delay":931.3} +{"session_id":"sess-22bff0f2137a","input_length":806,"output_length":661,"hash_ids":[3580057,3580058],"delay":1697.8} +{"session_id":"sess-22bff0f2137a","input_length":436,"output_length":262,"hash_ids":[3580059],"delay":9393.1} +{"session_id":"sess-22bff0f2137a","input_length":417,"output_length":358,"hash_ids":[3580060],"delay":651.5} +{"session_id":"sess-22bff0f2137a","input_length":2284,"output_length":519,"hash_ids":[3580061,3580062,3580063,3580064,3580065],"delay":2598.7} +{"session_id":"sess-22bff0f2137a","input_length":2635,"output_length":135,"hash_ids":[3580066,3580067,3580068,3580069,3580070,3580071],"delay":3976.7} +{"session_id":"sess-22bff0f2137a","input_length":678,"output_length":393,"hash_ids":[3580072,3580073],"delay":9699.5} +{"session_id":"sess-22bff0f2137a","input_length":2130,"output_length":361,"hash_ids":[3580074,3580075,3580076,3580077,3580078],"delay":1217.0} +{"session_id":"sess-22bff0f2137a","input_length":1240,"output_length":45,"hash_ids":[3580079,3580080,3580081],"delay":24886.6} +{"session_id":"sess-22bff0f2137a","input_length":955,"output_length":136,"hash_ids":[3580082,3580083],"delay":2043.8} +{"session_id":"sess-22bff0f2137a","input_length":1119,"output_length":265,"hash_ids":[3580084,3580085,3580086],"delay":1412.2} +{"session_id":"sess-22bff0f2137a","input_length":691,"output_length":373,"hash_ids":[3580087,3580088],"delay":1220.8} +{"session_id":"sess-22bff0f2137a","input_length":903,"output_length":467,"hash_ids":[3580089,3580090],"delay":5034.2} +{"session_id":"sess-22bff0f2137a","input_length":76,"output_length":89,"hash_ids":[3580091],"delay":388.8} +{"session_id":"sess-22bff0f2137a","input_length":215,"output_length":111,"hash_ids":[3580092],"delay":639.0} +{"session_id":"sess-22bff0f2137a","input_length":1401,"output_length":203,"hash_ids":[3580093,3580094,3580095],"delay":13646.6} +{"session_id":"sess-22bff0f2137a","input_length":746,"output_length":39,"hash_ids":[3580096,3580097],"delay":4561.7} +{"session_id":"sess-22bff0f2137a","input_length":707,"output_length":649,"hash_ids":[3580098,3580099],"delay":792.1} +{"session_id":"sess-22bff0f2137a","input_length":2597,"output_length":145,"hash_ids":[3580100,3580101,3580102,3580103,3580104,3580105],"delay":391.0} +{"session_id":"sess-22bff0f2137a","input_length":1315,"output_length":57,"hash_ids":[3580106,3580107,3580108],"delay":375.7} +{"session_id":"sess-22bff0f2137a","input_length":250,"output_length":233,"hash_ids":[3580109],"delay":620.5} +{"session_id":"sess-9e7290fa76f3","input_length":29484,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3584032,3584033,3584034,3584035,3584036,3584037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9e7290fa76f3","input_length":1150,"output_length":234,"hash_ids":[3584038,3584039,3584040],"delay":679.6} +{"session_id":"sess-9e7290fa76f3","input_length":211,"output_length":159,"hash_ids":[3584041],"delay":12616.2} +{"session_id":"sess-9e7290fa76f3","input_length":606,"output_length":247,"hash_ids":[3584042,3584043],"delay":285.7} +{"session_id":"sess-7eda51a262d3","input_length":27098,"output_length":284,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,3588032],"timestamp":0.0,"group_id":7} +{"session_id":"sess-7eda51a262d3","input_length":2350,"output_length":409,"hash_ids":[3588033,3588034,3588035,3588036,3588037],"delay":648.5} +{"session_id":"sess-7eda51a262d3","input_length":436,"output_length":294,"hash_ids":[3588038],"delay":1080.5} +{"session_id":"sess-7eda51a262d3","input_length":554,"output_length":34,"hash_ids":[3588039,3588040],"delay":2413.5} +{"session_id":"sess-7eda51a262d3","input_length":1546,"output_length":148,"hash_ids":[3588041,3588042,3588043,3588044],"delay":15090.8} +{"session_id":"sess-7eda51a262d3","input_length":1664,"output_length":234,"hash_ids":[3588045,3588046,3588047,3588048],"delay":12057.5} +{"session_id":"sess-7eda51a262d3","input_length":508,"output_length":309,"hash_ids":[3588049],"delay":245.2} +{"session_id":"sess-7eda51a262d3","input_length":2582,"output_length":72,"hash_ids":[3588050,3588051,3588052,3588053,3588054,3588055],"delay":474.6} +{"session_id":"sess-7eda51a262d3","input_length":278,"output_length":238,"hash_ids":[3588056],"delay":1058.9} +{"session_id":"sess-7eda51a262d3","input_length":393,"output_length":93,"hash_ids":[3588057],"delay":864.1} +{"session_id":"sess-7eda51a262d3","input_length":354,"output_length":165,"hash_ids":[3588058],"delay":40565.2} +{"session_id":"sess-7eda51a262d3","input_length":1708,"output_length":121,"hash_ids":[3588059,3588060,3588061,3588062],"delay":913.6} +{"session_id":"sess-7eda51a262d3","input_length":498,"output_length":111,"hash_ids":[3588063],"delay":13082.9} +{"session_id":"sess-7eda51a262d3","input_length":516,"output_length":71,"hash_ids":[3588064,3588065],"delay":469.2} +{"session_id":"sess-7eda51a262d3","input_length":2530,"output_length":375,"hash_ids":[3588066,3588067,3588068,3588069,3588070],"delay":3228.7} +{"session_id":"sess-7eda51a262d3","input_length":1081,"output_length":264,"hash_ids":[3588071,3588072,3588073],"delay":450.3} +{"session_id":"sess-7eda51a262d3","input_length":473,"output_length":248,"hash_ids":[3588074],"delay":14961.7} +{"session_id":"sess-7eda51a262d3","input_length":1497,"output_length":457,"hash_ids":[3588075,3588076,3588077],"delay":830.5} +{"session_id":"sess-7eda51a262d3","input_length":411,"output_length":206,"hash_ids":[3588078],"delay":8575.3} +{"session_id":"sess-7eda51a262d3","input_length":1935,"output_length":168,"hash_ids":[3588079,3588080,3588081,3588082],"delay":254.3} +{"session_id":"sess-7eda51a262d3","input_length":696,"output_length":387,"hash_ids":[3588083,3588084],"delay":1870.9} +{"session_id":"sess-7eda51a262d3","input_length":853,"output_length":206,"hash_ids":[3588085,3588086],"delay":428.6} +{"session_id":"sess-4be81567de3e","input_length":27100,"output_length":78,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3592032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4be81567de3e","input_length":260,"output_length":502,"hash_ids":[3592033],"delay":5973.9} +{"session_id":"sess-4be81567de3e","input_length":1173,"output_length":592,"hash_ids":[3592034,3592035,3592036],"delay":23730.8} +{"session_id":"sess-4be81567de3e","input_length":1204,"output_length":1193,"hash_ids":[3592037,3592038,3592039],"delay":502.4} +{"session_id":"sess-4be81567de3e","input_length":1083,"output_length":30,"hash_ids":[3592040,3592041,3592042],"delay":856.6} +{"session_id":"sess-4be81567de3e","input_length":330,"output_length":57,"hash_ids":[3592043],"delay":11170.0} +{"session_id":"sess-4be81567de3e","input_length":1924,"output_length":360,"hash_ids":[3592044,3592045,3592046,3592047],"delay":24752.6} +{"session_id":"sess-4be81567de3e","input_length":177,"output_length":646,"hash_ids":[3592048],"delay":690.3} +{"session_id":"sess-4be81567de3e","input_length":1298,"output_length":63,"hash_ids":[3592049,3592050,3592051],"delay":932.7} +{"session_id":"sess-4be81567de3e","input_length":524,"output_length":531,"hash_ids":[3592052,3592053],"delay":842.1} +{"session_id":"sess-4be81567de3e","input_length":1879,"output_length":75,"hash_ids":[3592054,3592055,3592056,3592057],"delay":810.1} +{"session_id":"sess-4be81567de3e","input_length":256,"output_length":126,"hash_ids":[3592058],"delay":248.4} +{"session_id":"sess-4be81567de3e","input_length":945,"output_length":106,"hash_ids":[3592059,3592060],"delay":24544.6} +{"session_id":"sess-4be81567de3e","input_length":551,"output_length":152,"hash_ids":[3592061,3592062],"delay":13239.1} +{"session_id":"sess-4be81567de3e","input_length":2491,"output_length":139,"hash_ids":[3592063,3592064,3592065,3592066,3592067],"delay":726.6} +{"session_id":"sess-4be81567de3e","input_length":134,"output_length":561,"hash_ids":[3592068],"delay":612.1} +{"session_id":"sess-4be81567de3e","input_length":1245,"output_length":272,"hash_ids":[3592069,3592070,3592071],"delay":1358.5} +{"session_id":"sess-4be81567de3e","input_length":298,"output_length":504,"hash_ids":[3592072],"delay":877.5} +{"session_id":"sess-4be81567de3e","input_length":2146,"output_length":139,"hash_ids":[3592073,3592074,3592075,3592076,3592077],"delay":14325.5} +{"session_id":"sess-4be81567de3e","input_length":428,"output_length":192,"hash_ids":[3592078],"delay":160.4} +{"session_id":"sess-4be81567de3e","input_length":1012,"output_length":40,"hash_ids":[3592079,3592080],"delay":861.1} +{"session_id":"sess-4be81567de3e","input_length":475,"output_length":70,"hash_ids":[3592081],"delay":1988.7} +{"session_id":"sess-4be81567de3e","input_length":339,"output_length":572,"hash_ids":[3592082],"delay":34064.3} +{"session_id":"sess-4be81567de3e","input_length":505,"output_length":397,"hash_ids":[3592083],"delay":143.3} +{"session_id":"sess-4be81567de3e","input_length":1106,"output_length":41,"hash_ids":[3592084,3592085,3592086],"delay":401.8} +{"session_id":"sess-4be81567de3e","input_length":1558,"output_length":114,"hash_ids":[3592087,3592088,3592089,3592090],"delay":32174.4} +{"session_id":"sess-4be81567de3e","input_length":2208,"output_length":194,"hash_ids":[3592091,3592092,3592093,3592094,3592095],"delay":6237.8} +{"session_id":"sess-4be81567de3e","input_length":1837,"output_length":34,"hash_ids":[3592096,3592097,3592098,3592099],"delay":4025.8} +{"session_id":"sess-4be81567de3e","input_length":1125,"output_length":318,"hash_ids":[3592100,3592101,3592102],"delay":3595.0} +{"session_id":"sess-4be81567de3e","input_length":793,"output_length":66,"hash_ids":[3592103,3592104],"delay":241.7} +{"session_id":"sess-4be81567de3e","input_length":592,"output_length":67,"hash_ids":[3592105,3592106],"delay":898.5} +{"session_id":"sess-bd203677ae9d","input_length":36739,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,3596032,3596033,3596034,3596035,3596036,3596037,3596038,3596039,3596040,3596041,3596042,3596043,3596044,3596045,3596046,3596047,3596048,3596049,3596050,3596051],"timestamp":0.0,"group_id":7} +{"session_id":"sess-bd203677ae9d","input_length":70,"output_length":30,"hash_ids":[3596052],"delay":1371.9} +{"session_id":"sess-bd203677ae9d","input_length":777,"output_length":275,"hash_ids":[3596053,3596054],"delay":990.3} +{"session_id":"sess-bd203677ae9d","input_length":1369,"output_length":754,"hash_ids":[3596055,3596056,3596057],"delay":31483.6} +{"session_id":"sess-bd203677ae9d","input_length":195,"output_length":176,"hash_ids":[3596058],"delay":946.2} +{"session_id":"sess-bd203677ae9d","input_length":204,"output_length":42,"hash_ids":[3596059],"delay":1111.5} +{"session_id":"sess-bd203677ae9d","input_length":530,"output_length":261,"hash_ids":[3596060,3596061],"delay":918.7} +{"session_id":"sess-bd203677ae9d","input_length":572,"output_length":62,"hash_ids":[3596062,3596063],"delay":404.4} +{"session_id":"sess-bd203677ae9d","input_length":482,"output_length":109,"hash_ids":[3596064],"delay":250.3} +{"session_id":"sess-bd203677ae9d","input_length":414,"output_length":202,"hash_ids":[3596065],"delay":411.4} +{"session_id":"sess-bd203677ae9d","input_length":301,"output_length":100,"hash_ids":[3596066],"delay":16593.9} +{"session_id":"sess-bd203677ae9d","input_length":1072,"output_length":95,"hash_ids":[3596067,3596068,3596069],"delay":2452.7} +{"session_id":"sess-bd203677ae9d","input_length":1460,"output_length":234,"hash_ids":[3596070,3596071,3596072],"delay":230.6} +{"session_id":"sess-bd203677ae9d","input_length":642,"output_length":74,"hash_ids":[3596073,3596074],"delay":24568.3} +{"session_id":"sess-bd203677ae9d","input_length":588,"output_length":277,"hash_ids":[3596075,3596076],"delay":1039.7} +{"session_id":"sess-bd203677ae9d","input_length":1700,"output_length":75,"hash_ids":[3596077,3596078,3596079,3596080],"delay":8123.9} +{"session_id":"sess-bd203677ae9d","input_length":650,"output_length":301,"hash_ids":[3596081,3596082],"delay":1062.6} +{"session_id":"sess-bd203677ae9d","input_length":343,"output_length":128,"hash_ids":[3596083],"delay":291.8} +{"session_id":"sess-bd203677ae9d","input_length":668,"output_length":142,"hash_ids":[3596084,3596085],"delay":329.0} +{"session_id":"sess-bd203677ae9d","input_length":1126,"output_length":162,"hash_ids":[3596086,3596087,3596088],"delay":600.4} +{"session_id":"sess-bd203677ae9d","input_length":1891,"output_length":869,"hash_ids":[3596089,3596090,3596091,3596092],"delay":449.1} +{"session_id":"sess-bd203677ae9d","input_length":1510,"output_length":194,"hash_ids":[3596093,3596094,3596095],"delay":11704.3} +{"session_id":"sess-bd203677ae9d","input_length":2718,"output_length":141,"hash_ids":[3596096,3596097,3596098,3596099,3596100,3596101],"delay":548.7} +{"session_id":"sess-bd203677ae9d","input_length":159,"output_length":204,"hash_ids":[3596102],"delay":3965.8} +{"session_id":"sess-bd203677ae9d","input_length":2688,"output_length":48,"hash_ids":[3596103,3596104,3596105,3596106,3596107,3596108],"delay":441.2} +{"session_id":"sess-bd203677ae9d","input_length":402,"output_length":157,"hash_ids":[3596109],"delay":297.2} +{"session_id":"sess-bd203677ae9d","input_length":348,"output_length":786,"hash_ids":[3596110],"delay":492.2} +{"session_id":"sess-b6c6b910fe9a","input_length":28417,"output_length":337,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3600032,3600033,3600034,3600035],"timestamp":0.0,"group_id":8} +{"session_id":"sess-b6c6b910fe9a","input_length":1837,"output_length":494,"hash_ids":[3600036,3600037,3600038,3600039],"delay":45684.9} +{"session_id":"sess-b6c6b910fe9a","input_length":1222,"output_length":206,"hash_ids":[3600040,3600041,3600042],"delay":561.1} +{"session_id":"sess-b6c6b910fe9a","input_length":1624,"output_length":52,"hash_ids":[3600043,3600044,3600045,3600046],"delay":740.6} +{"session_id":"sess-b6c6b910fe9a","input_length":190,"output_length":352,"hash_ids":[3600047],"delay":1886.6} +{"session_id":"sess-b6c6b910fe9a","input_length":1687,"output_length":93,"hash_ids":[3600048,3600049,3600050,3600051],"delay":673.3} +{"session_id":"sess-b6c6b910fe9a","input_length":1081,"output_length":141,"hash_ids":[3600052,3600053,3600054],"delay":23049.2} +{"session_id":"sess-b6c6b910fe9a","input_length":1144,"output_length":626,"hash_ids":[3600055,3600056,3600057],"delay":2664.7} +{"session_id":"sess-53b0f6543484","input_length":29340,"output_length":190,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3604032,3604033,3604034,3604035,3604036,3604037],"timestamp":0.0,"group_id":5} +{"session_id":"sess-53b0f6543484","input_length":177,"output_length":269,"hash_ids":[3604038],"delay":6349.9} +{"session_id":"sess-53b0f6543484","input_length":221,"output_length":345,"hash_ids":[3604039],"delay":4002.3} +{"session_id":"sess-53b0f6543484","input_length":491,"output_length":255,"hash_ids":[3604040],"delay":5520.2} +{"session_id":"sess-53b0f6543484","input_length":1996,"output_length":379,"hash_ids":[3604041,3604042,3604043,3604044],"delay":1019.9} +{"session_id":"sess-53b0f6543484","input_length":1611,"output_length":548,"hash_ids":[3604045,3604046,3604047,3604048],"delay":1044.5} +{"session_id":"sess-8cf863a9b30f","input_length":27913,"output_length":185,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3608032,3608033,3608034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8cf863a9b30f","input_length":482,"output_length":35,"hash_ids":[3608035],"delay":480.7} +{"session_id":"sess-8cf863a9b30f","input_length":196,"output_length":136,"hash_ids":[3608036],"delay":647.0} +{"session_id":"sess-8cf863a9b30f","input_length":659,"output_length":574,"hash_ids":[3608037,3608038],"delay":914.5} +{"session_id":"sess-8cf863a9b30f","input_length":1017,"output_length":254,"hash_ids":[3608039,3608040],"delay":992.2} +{"session_id":"sess-8cf863a9b30f","input_length":1033,"output_length":842,"hash_ids":[3608041,3608042,3608043],"delay":1705.1} +{"session_id":"sess-8cf863a9b30f","input_length":1442,"output_length":73,"hash_ids":[3608044,3608045,3608046],"delay":574.2} +{"session_id":"sess-8cf863a9b30f","input_length":1291,"output_length":269,"hash_ids":[3608047,3608048,3608049],"delay":15513.9} +{"session_id":"sess-8cf863a9b30f","input_length":1066,"output_length":51,"hash_ids":[3608050,3608051,3608052],"delay":970.5} +{"session_id":"sess-8cf863a9b30f","input_length":1070,"output_length":276,"hash_ids":[3608053,3608054,3608055],"delay":610.6} +{"session_id":"sess-8cf863a9b30f","input_length":482,"output_length":76,"hash_ids":[3608056],"delay":788.6} +{"session_id":"sess-8cf863a9b30f","input_length":2136,"output_length":123,"hash_ids":[3608057,3608058,3608059,3608060,3608061],"delay":18722.7} +{"session_id":"sess-8cf863a9b30f","input_length":532,"output_length":374,"hash_ids":[3608062,3608063],"delay":2278.0} +{"session_id":"sess-affaaece7484","input_length":28711,"output_length":803,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3612032,3612033,3612034,3612035,3612036],"timestamp":0.0,"group_id":17} +{"session_id":"sess-affaaece7484","input_length":1168,"output_length":164,"hash_ids":[3612037,3612038,3612039],"delay":501.9} +{"session_id":"sess-affaaece7484","input_length":785,"output_length":210,"hash_ids":[3612040,3612041],"delay":7359.8} +{"session_id":"sess-affaaece7484","input_length":1607,"output_length":1170,"hash_ids":[3612042,3612043,3612044,3612045],"delay":778.8} +{"session_id":"sess-affaaece7484","input_length":1778,"output_length":190,"hash_ids":[3612046,3612047,3612048,3612049],"delay":330.9} +{"session_id":"sess-affaaece7484","input_length":907,"output_length":100,"hash_ids":[3612050,3612051],"delay":1119.6} +{"session_id":"sess-affaaece7484","input_length":1295,"output_length":347,"hash_ids":[3612052,3612053,3612054],"delay":359.4} +{"session_id":"sess-affaaece7484","input_length":206,"output_length":181,"hash_ids":[3612055],"delay":1655.5} +{"session_id":"sess-affaaece7484","input_length":511,"output_length":1169,"hash_ids":[3612056],"delay":28212.1} +{"session_id":"sess-affaaece7484","input_length":673,"output_length":151,"hash_ids":[3612057,3612058],"delay":795.1} +{"session_id":"sess-affaaece7484","input_length":938,"output_length":377,"hash_ids":[3612059,3612060],"delay":4038.7} +{"session_id":"sess-affaaece7484","input_length":1956,"output_length":228,"hash_ids":[3612061,3612062,3612063,3612064],"delay":621.1} +{"session_id":"sess-affaaece7484","input_length":1063,"output_length":436,"hash_ids":[3612065,3612066,3612067],"delay":176.8} +{"session_id":"sess-affaaece7484","input_length":758,"output_length":1179,"hash_ids":[3612068,3612069],"delay":981.0} +{"session_id":"sess-affaaece7484","input_length":406,"output_length":579,"hash_ids":[3612070],"delay":830.0} +{"session_id":"sess-affaaece7484","input_length":1702,"output_length":116,"hash_ids":[3612071,3612072,3612073,3612074],"delay":316.7} +{"session_id":"sess-affaaece7484","input_length":1226,"output_length":139,"hash_ids":[3612075,3612076,3612077],"delay":263.0} +{"session_id":"sess-affaaece7484","input_length":2935,"output_length":499,"hash_ids":[3612078,3612079,3612080,3612081,3612082,3612083],"delay":1026.3} +{"session_id":"sess-affaaece7484","input_length":1180,"output_length":249,"hash_ids":[3612084,3612085,3612086],"delay":689.7} +{"session_id":"sess-affaaece7484","input_length":541,"output_length":914,"hash_ids":[3612087,3612088],"delay":3882.7} +{"session_id":"sess-affaaece7484","input_length":695,"output_length":79,"hash_ids":[3612089,3612090],"delay":175.1} +{"session_id":"sess-affaaece7484","input_length":1940,"output_length":443,"hash_ids":[3612091,3612092,3612093,3612094],"delay":934.8} +{"session_id":"sess-affaaece7484","input_length":1028,"output_length":150,"hash_ids":[3612095,3612096,3612097],"delay":1863.4} +{"session_id":"sess-affaaece7484","input_length":1411,"output_length":205,"hash_ids":[3612098,3612099,3612100],"delay":390.6} +{"session_id":"sess-832d493bd295","input_length":28013,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3616032,3616033,3616034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-832d493bd295","input_length":119,"output_length":427,"hash_ids":[3616035],"delay":31282.0} +{"session_id":"sess-832d493bd295","input_length":1320,"output_length":41,"hash_ids":[3616036,3616037,3616038],"delay":763.5} +{"session_id":"sess-832d493bd295","input_length":518,"output_length":101,"hash_ids":[3616039,3616040],"delay":2648.7} +{"session_id":"sess-832d493bd295","input_length":891,"output_length":89,"hash_ids":[3616041,3616042],"delay":2048.4} +{"session_id":"sess-832d493bd295","input_length":404,"output_length":218,"hash_ids":[3616043],"delay":29767.4} +{"session_id":"sess-832d493bd295","input_length":129,"output_length":47,"hash_ids":[3616044],"delay":225.3} +{"session_id":"sess-832d493bd295","input_length":383,"output_length":182,"hash_ids":[3616045],"delay":1605.5} +{"session_id":"sess-832d493bd295","input_length":247,"output_length":137,"hash_ids":[3616046],"delay":949.2} +{"session_id":"sess-832d493bd295","input_length":1214,"output_length":953,"hash_ids":[3616047,3616048,3616049],"delay":490.5} +{"session_id":"sess-832d493bd295","input_length":556,"output_length":779,"hash_ids":[3616050,3616051],"delay":926.3} +{"session_id":"sess-832d493bd295","input_length":372,"output_length":579,"hash_ids":[3616052],"delay":10370.7} +{"session_id":"sess-832d493bd295","input_length":740,"output_length":246,"hash_ids":[3616053,3616054],"delay":9972.6} +{"session_id":"sess-832d493bd295","input_length":356,"output_length":173,"hash_ids":[3616055],"delay":963.0} +{"session_id":"sess-832d493bd295","input_length":860,"output_length":234,"hash_ids":[3616056,3616057],"delay":25473.9} +{"session_id":"sess-832d493bd295","input_length":840,"output_length":333,"hash_ids":[3616058,3616059],"delay":11581.7} +{"session_id":"sess-832d493bd295","input_length":289,"output_length":30,"hash_ids":[3616060],"delay":6792.5} +{"session_id":"sess-832d493bd295","input_length":2578,"output_length":63,"hash_ids":[3616061,3616062,3616063,3616064,3616065,3616066],"delay":945.0} +{"session_id":"sess-832d493bd295","input_length":790,"output_length":289,"hash_ids":[3616067,3616068],"delay":1244.1} +{"session_id":"sess-832d493bd295","input_length":1669,"output_length":131,"hash_ids":[3616069,3616070,3616071,3616072],"delay":892.5} +{"session_id":"sess-832d493bd295","input_length":517,"output_length":215,"hash_ids":[3616073,3616074],"delay":584.0} +{"session_id":"sess-832d493bd295","input_length":379,"output_length":383,"hash_ids":[3616075],"delay":615.1} +{"session_id":"sess-832d493bd295","input_length":612,"output_length":216,"hash_ids":[3616076,3616077],"delay":574.8} +{"session_id":"sess-832d493bd295","input_length":2297,"output_length":201,"hash_ids":[3616078,3616079,3616080,3616081,3616082],"delay":531.8} +{"session_id":"sess-832d493bd295","input_length":2061,"output_length":56,"hash_ids":[3616083,3616084,3616085,3616086,3616087],"delay":14607.4} +{"session_id":"sess-832d493bd295","input_length":827,"output_length":921,"hash_ids":[3616088,3616089],"delay":775.1} +{"session_id":"sess-832d493bd295","input_length":130,"output_length":693,"hash_ids":[3616090],"delay":122.6} +{"session_id":"sess-832d493bd295","input_length":809,"output_length":74,"hash_ids":[3616091,3616092],"delay":35161.5} +{"session_id":"sess-832d493bd295","input_length":226,"output_length":265,"hash_ids":[3616093],"delay":15716.5} +{"session_id":"sess-832d493bd295","input_length":1268,"output_length":830,"hash_ids":[3616094,3616095,3616096],"delay":369.4} +{"session_id":"sess-832d493bd295","input_length":938,"output_length":210,"hash_ids":[3616097,3616098],"delay":796.0} +{"session_id":"sess-832d493bd295","input_length":66,"output_length":924,"hash_ids":[3616099],"delay":6000.7} +{"session_id":"sess-832d493bd295","input_length":554,"output_length":317,"hash_ids":[3616100,3616101],"delay":1427.8} +{"session_id":"sess-832d493bd295","input_length":100,"output_length":162,"hash_ids":[3616102],"delay":540.1} +{"session_id":"sess-832d493bd295","input_length":195,"output_length":177,"hash_ids":[3616103],"delay":8909.8} +{"session_id":"sess-1383b5b465c3","input_length":26680,"output_length":130,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3620032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-1383b5b465c3","input_length":167,"output_length":155,"hash_ids":[3620033],"delay":1596.5} +{"session_id":"sess-1383b5b465c3","input_length":950,"output_length":259,"hash_ids":[3620034,3620035],"delay":7582.0} +{"session_id":"sess-1383b5b465c3","input_length":415,"output_length":161,"hash_ids":[3620036],"delay":345.4} +{"session_id":"sess-1383b5b465c3","input_length":1828,"output_length":45,"hash_ids":[3620037,3620038,3620039,3620040],"delay":860.6} +{"session_id":"sess-1383b5b465c3","input_length":629,"output_length":707,"hash_ids":[3620041,3620042],"delay":5886.4} +{"session_id":"sess-1383b5b465c3","input_length":1286,"output_length":231,"hash_ids":[3620043,3620044,3620045],"delay":398.4} +{"session_id":"sess-1383b5b465c3","input_length":276,"output_length":250,"hash_ids":[3620046],"delay":13578.6} +{"session_id":"sess-1383b5b465c3","input_length":155,"output_length":51,"hash_ids":[3620047],"delay":1372.1} +{"session_id":"sess-1383b5b465c3","input_length":262,"output_length":94,"hash_ids":[3620048],"delay":695.9} +{"session_id":"sess-1383b5b465c3","input_length":1324,"output_length":183,"hash_ids":[3620049,3620050,3620051],"delay":28526.5} +{"session_id":"sess-1383b5b465c3","input_length":756,"output_length":101,"hash_ids":[3620052,3620053],"delay":1656.8} +{"session_id":"sess-1383b5b465c3","input_length":1282,"output_length":125,"hash_ids":[3620054,3620055,3620056],"delay":19542.5} +{"session_id":"sess-1383b5b465c3","input_length":1237,"output_length":51,"hash_ids":[3620057,3620058,3620059],"delay":678.7} +{"session_id":"sess-1383b5b465c3","input_length":438,"output_length":215,"hash_ids":[3620060],"delay":14232.1} +{"session_id":"sess-1383b5b465c3","input_length":690,"output_length":443,"hash_ids":[3620061,3620062],"delay":2087.7} +{"session_id":"sess-1383b5b465c3","input_length":411,"output_length":91,"hash_ids":[3620063],"delay":1686.2} +{"session_id":"sess-1383b5b465c3","input_length":2631,"output_length":114,"hash_ids":[3620064,3620065,3620066,3620067,3620068,3620069],"delay":135.0} +{"session_id":"sess-1383b5b465c3","input_length":1245,"output_length":38,"hash_ids":[3620070,3620071,3620072],"delay":548.0} +{"session_id":"sess-1383b5b465c3","input_length":570,"output_length":37,"hash_ids":[3620073,3620074],"delay":41319.6} +{"session_id":"sess-1383b5b465c3","input_length":1010,"output_length":97,"hash_ids":[3620075,3620076],"delay":8124.2} +{"session_id":"sess-1383b5b465c3","input_length":870,"output_length":187,"hash_ids":[3620077,3620078],"delay":5487.6} +{"session_id":"sess-1383b5b465c3","input_length":748,"output_length":756,"hash_ids":[3620079,3620080],"delay":586.4} +{"session_id":"sess-1383b5b465c3","input_length":554,"output_length":737,"hash_ids":[3620081,3620082],"delay":4852.8} +{"session_id":"sess-1383b5b465c3","input_length":2034,"output_length":133,"hash_ids":[3620083,3620084,3620085,3620086],"delay":15884.2} +{"session_id":"sess-1383b5b465c3","input_length":249,"output_length":76,"hash_ids":[3620087],"delay":1378.8} +{"session_id":"sess-1383b5b465c3","input_length":900,"output_length":54,"hash_ids":[3620088,3620089],"delay":1727.7} +{"session_id":"sess-1383b5b465c3","input_length":194,"output_length":118,"hash_ids":[3620090],"delay":2068.1} +{"session_id":"sess-1383b5b465c3","input_length":2397,"output_length":98,"hash_ids":[3620091,3620092,3620093,3620094,3620095],"delay":1672.5} +{"session_id":"sess-1383b5b465c3","input_length":805,"output_length":60,"hash_ids":[3620096,3620097],"delay":32743.9} +{"session_id":"sess-1383b5b465c3","input_length":1633,"output_length":186,"hash_ids":[3620098,3620099,3620100,3620101],"delay":116.1} +{"session_id":"sess-1383b5b465c3","input_length":82,"output_length":878,"hash_ids":[3620102],"delay":232.0} +{"session_id":"sess-1383b5b465c3","input_length":1218,"output_length":124,"hash_ids":[3620103,3620104,3620105],"delay":1356.9} +{"session_id":"sess-1383b5b465c3","input_length":1340,"output_length":79,"hash_ids":[3620106,3620107,3620108],"delay":2738.4} +{"session_id":"sess-4bd11e741023","input_length":27507,"output_length":301,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,3624032,3624033],"timestamp":0.0,"group_id":36} +{"session_id":"sess-4bd11e741023","input_length":788,"output_length":346,"hash_ids":[3624034,3624035],"delay":3220.4} +{"session_id":"sess-4bd11e741023","input_length":528,"output_length":68,"hash_ids":[3624036,3624037],"delay":54612.5} +{"session_id":"sess-4bd11e741023","input_length":656,"output_length":42,"hash_ids":[3624038,3624039],"delay":27985.6} +{"session_id":"sess-4bd11e741023","input_length":865,"output_length":79,"hash_ids":[3624040,3624041],"delay":118.9} +{"session_id":"sess-4bd11e741023","input_length":409,"output_length":612,"hash_ids":[3624042],"delay":562.3} +{"session_id":"sess-4bd11e741023","input_length":1208,"output_length":175,"hash_ids":[3624043,3624044,3624045],"delay":552.8} +{"session_id":"sess-4bd11e741023","input_length":716,"output_length":64,"hash_ids":[3624046,3624047],"delay":458.5} +{"session_id":"sess-4bd11e741023","input_length":1486,"output_length":284,"hash_ids":[3624048,3624049,3624050],"delay":780.2} +{"session_id":"sess-4bd11e741023","input_length":301,"output_length":957,"hash_ids":[3624051],"delay":753.4} +{"session_id":"sess-4bd11e741023","input_length":1723,"output_length":302,"hash_ids":[3624052,3624053,3624054,3624055],"delay":364.5} +{"session_id":"sess-4bd11e741023","input_length":322,"output_length":309,"hash_ids":[3624056],"delay":209.7} +{"session_id":"sess-4bd11e741023","input_length":332,"output_length":563,"hash_ids":[3624057],"delay":1239.2} +{"session_id":"sess-4bd11e741023","input_length":640,"output_length":109,"hash_ids":[3624058,3624059],"delay":901.4} +{"session_id":"sess-4bd11e741023","input_length":199,"output_length":62,"hash_ids":[3624060],"delay":17648.7} +{"session_id":"sess-cb7620cb9032","input_length":27031,"output_length":201,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3628032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-cb7620cb9032","input_length":2479,"output_length":223,"hash_ids":[3628033,3628034,3628035,3628036,3628037],"delay":10686.9} +{"session_id":"sess-cb7620cb9032","input_length":860,"output_length":114,"hash_ids":[3628038,3628039],"delay":6853.2} +{"session_id":"sess-cb7620cb9032","input_length":2392,"output_length":291,"hash_ids":[3628040,3628041,3628042,3628043,3628044],"delay":7534.3} +{"session_id":"sess-cb7620cb9032","input_length":2706,"output_length":239,"hash_ids":[3628045,3628046,3628047,3628048,3628049,3628050],"delay":2197.0} +{"session_id":"sess-cb7620cb9032","input_length":1149,"output_length":239,"hash_ids":[3628051,3628052,3628053],"delay":1638.4} +{"session_id":"sess-cb7620cb9032","input_length":1617,"output_length":44,"hash_ids":[3628054,3628055,3628056,3628057],"delay":3231.1} +{"session_id":"sess-cb7620cb9032","input_length":1421,"output_length":272,"hash_ids":[3628058,3628059,3628060],"delay":29530.2} +{"session_id":"sess-cb7620cb9032","input_length":1638,"output_length":183,"hash_ids":[3628061,3628062,3628063,3628064],"delay":457.2} +{"session_id":"sess-cb7620cb9032","input_length":270,"output_length":539,"hash_ids":[3628065],"delay":20894.8} +{"session_id":"sess-cb7620cb9032","input_length":320,"output_length":226,"hash_ids":[3628066],"delay":30489.4} +{"session_id":"sess-cb7620cb9032","input_length":368,"output_length":291,"hash_ids":[3628067],"delay":537.0} +{"session_id":"sess-cb7620cb9032","input_length":1434,"output_length":136,"hash_ids":[3628068,3628069,3628070],"delay":552.7} +{"session_id":"sess-cb7620cb9032","input_length":248,"output_length":187,"hash_ids":[3628071],"delay":1965.4} +{"session_id":"sess-cb7620cb9032","input_length":267,"output_length":61,"hash_ids":[3628072],"delay":533.4} +{"session_id":"sess-cb7620cb9032","input_length":239,"output_length":149,"hash_ids":[3628073],"delay":856.6} +{"session_id":"sess-cb7620cb9032","input_length":892,"output_length":505,"hash_ids":[3628074,3628075],"delay":251.4} +{"session_id":"sess-cb7620cb9032","input_length":1382,"output_length":124,"hash_ids":[3628076,3628077,3628078],"delay":504.8} +{"session_id":"sess-cb7620cb9032","input_length":791,"output_length":271,"hash_ids":[3628079,3628080],"delay":17472.7} +{"session_id":"sess-cb7620cb9032","input_length":1719,"output_length":576,"hash_ids":[3628081,3628082,3628083,3628084],"delay":578.1} +{"session_id":"sess-cb7620cb9032","input_length":1531,"output_length":1079,"hash_ids":[3628085,3628086,3628087],"delay":854.4} +{"session_id":"sess-cb7620cb9032","input_length":641,"output_length":485,"hash_ids":[3628088,3628089],"delay":440.8} +{"session_id":"sess-cb7620cb9032","input_length":166,"output_length":727,"hash_ids":[3628090],"delay":268.4} +{"session_id":"sess-cb7620cb9032","input_length":939,"output_length":251,"hash_ids":[3628091,3628092],"delay":265.2} +{"session_id":"sess-461142f802a0","input_length":29939,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,3632032,3632033,3632034,3632035,3632036,3632037,3632038],"timestamp":0.0,"group_id":7} +{"session_id":"sess-461142f802a0","input_length":2930,"output_length":80,"hash_ids":[3632039,3632040,3632041,3632042,3632043,3632044],"delay":736.7} +{"session_id":"sess-461142f802a0","input_length":2440,"output_length":308,"hash_ids":[3632045,3632046,3632047,3632048,3632049],"delay":2190.7} +{"session_id":"sess-461142f802a0","input_length":1286,"output_length":119,"hash_ids":[3632050,3632051,3632052],"delay":194.7} +{"session_id":"sess-461142f802a0","input_length":230,"output_length":30,"hash_ids":[3632053],"delay":755.2} +{"session_id":"sess-461142f802a0","input_length":1252,"output_length":232,"hash_ids":[3632054,3632055,3632056],"delay":900.9} +{"session_id":"sess-461142f802a0","input_length":230,"output_length":63,"hash_ids":[3632057],"delay":659.8} +{"session_id":"sess-461142f802a0","input_length":819,"output_length":87,"hash_ids":[3632058,3632059],"delay":625.6} +{"session_id":"sess-461142f802a0","input_length":783,"output_length":95,"hash_ids":[3632060,3632061],"delay":13000.3} +{"session_id":"sess-461142f802a0","input_length":1016,"output_length":148,"hash_ids":[3632062,3632063],"delay":19890.0} +{"session_id":"sess-461142f802a0","input_length":622,"output_length":130,"hash_ids":[3632064,3632065],"delay":7920.6} +{"session_id":"sess-461142f802a0","input_length":1369,"output_length":137,"hash_ids":[3632066,3632067,3632068],"delay":255.9} +{"session_id":"sess-461142f802a0","input_length":552,"output_length":1460,"hash_ids":[3632069,3632070],"delay":611.2} +{"session_id":"sess-461142f802a0","input_length":877,"output_length":104,"hash_ids":[3632071,3632072],"delay":131.3} +{"session_id":"sess-461142f802a0","input_length":161,"output_length":53,"hash_ids":[3632073],"delay":419.4} +{"session_id":"sess-461142f802a0","input_length":465,"output_length":135,"hash_ids":[3632074],"delay":4240.8} +{"session_id":"sess-461142f802a0","input_length":1191,"output_length":188,"hash_ids":[3632075,3632076,3632077],"delay":1403.1} +{"session_id":"sess-0b467bbcc816","input_length":30896,"output_length":243,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3636032,3636033,3636034,3636035,3636036,3636037,3636038,3636039,3636040],"timestamp":0.0,"group_id":17} +{"session_id":"sess-0b467bbcc816","input_length":2436,"output_length":581,"hash_ids":[3636041,3636042,3636043,3636044,3636045],"delay":1972.5} +{"session_id":"sess-0b467bbcc816","input_length":375,"output_length":494,"hash_ids":[3636046],"delay":5231.5} +{"session_id":"sess-0b467bbcc816","input_length":1645,"output_length":625,"hash_ids":[3636047,3636048,3636049,3636050],"delay":1400.0} +{"session_id":"sess-0b467bbcc816","input_length":1278,"output_length":36,"hash_ids":[3636051,3636052,3636053],"delay":1440.3} +{"session_id":"sess-0b467bbcc816","input_length":325,"output_length":31,"hash_ids":[3636054],"delay":2209.5} +{"session_id":"sess-0b467bbcc816","input_length":499,"output_length":187,"hash_ids":[3636055],"delay":1274.2} +{"session_id":"sess-0b467bbcc816","input_length":442,"output_length":538,"hash_ids":[3636056],"delay":2185.6} +{"session_id":"sess-0b467bbcc816","input_length":2431,"output_length":221,"hash_ids":[3636057,3636058,3636059,3636060,3636061],"delay":4366.4} +{"session_id":"sess-0b467bbcc816","input_length":241,"output_length":125,"hash_ids":[3636062],"delay":894.6} +{"session_id":"sess-0b467bbcc816","input_length":317,"output_length":516,"hash_ids":[3636063],"delay":968.7} +{"session_id":"sess-0b467bbcc816","input_length":1905,"output_length":383,"hash_ids":[3636064,3636065,3636066,3636067],"delay":12930.6} +{"session_id":"sess-0b467bbcc816","input_length":2733,"output_length":306,"hash_ids":[3636068,3636069,3636070,3636071,3636072,3636073],"delay":3398.2} +{"session_id":"sess-0b467bbcc816","input_length":1728,"output_length":157,"hash_ids":[3636074,3636075,3636076,3636077],"delay":888.2} +{"session_id":"sess-0b467bbcc816","input_length":258,"output_length":355,"hash_ids":[3636078],"delay":3523.8} +{"session_id":"sess-0b467bbcc816","input_length":808,"output_length":256,"hash_ids":[3636079,3636080],"delay":205.3} +{"session_id":"sess-0b467bbcc816","input_length":1104,"output_length":34,"hash_ids":[3636081,3636082,3636083],"delay":19337.0} +{"session_id":"sess-0b467bbcc816","input_length":543,"output_length":254,"hash_ids":[3636084,3636085],"delay":4192.7} +{"session_id":"sess-0b467bbcc816","input_length":217,"output_length":171,"hash_ids":[3636086],"delay":472.7} +{"session_id":"sess-0b467bbcc816","input_length":612,"output_length":60,"hash_ids":[3636087,3636088],"delay":288.3} +{"session_id":"sess-0b467bbcc816","input_length":471,"output_length":75,"hash_ids":[3636089],"delay":309.2} +{"session_id":"sess-0b467bbcc816","input_length":2552,"output_length":148,"hash_ids":[3636090,3636091,3636092,3636093,3636094],"delay":446.8} +{"session_id":"sess-0b467bbcc816","input_length":1605,"output_length":1024,"hash_ids":[3636095,3636096,3636097,3636098],"delay":357.8} +{"session_id":"sess-0b467bbcc816","input_length":837,"output_length":205,"hash_ids":[3636099,3636100],"delay":5693.4} +{"session_id":"sess-62dc49e2b934","input_length":27192,"output_length":306,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3640032,3640033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-62dc49e2b934","input_length":665,"output_length":137,"hash_ids":[3640034,3640035],"delay":23274.8} +{"session_id":"sess-62dc49e2b934","input_length":1819,"output_length":135,"hash_ids":[3640036,3640037,3640038,3640039],"delay":27548.5} +{"session_id":"sess-62dc49e2b934","input_length":524,"output_length":338,"hash_ids":[3640040,3640041],"delay":1138.5} +{"session_id":"sess-62dc49e2b934","input_length":616,"output_length":89,"hash_ids":[3640042,3640043],"delay":4340.2} +{"session_id":"sess-62dc49e2b934","input_length":854,"output_length":197,"hash_ids":[3640044,3640045],"delay":1563.1} +{"session_id":"sess-62dc49e2b934","input_length":774,"output_length":74,"hash_ids":[3640046,3640047],"delay":7557.6} +{"session_id":"sess-62dc49e2b934","input_length":383,"output_length":109,"hash_ids":[3640048],"delay":463.0} +{"session_id":"sess-62dc49e2b934","input_length":2116,"output_length":246,"hash_ids":[3640049,3640050,3640051,3640052,3640053],"delay":2259.9} +{"session_id":"sess-62dc49e2b934","input_length":245,"output_length":32,"hash_ids":[3640054],"delay":2713.5} +{"session_id":"sess-62dc49e2b934","input_length":1452,"output_length":145,"hash_ids":[3640055,3640056,3640057],"delay":15979.8} +{"session_id":"sess-62dc49e2b934","input_length":393,"output_length":144,"hash_ids":[3640058],"delay":1028.1} +{"session_id":"sess-62dc49e2b934","input_length":607,"output_length":88,"hash_ids":[3640059,3640060],"delay":12472.2} +{"session_id":"sess-62dc49e2b934","input_length":557,"output_length":85,"hash_ids":[3640061,3640062],"delay":2798.7} +{"session_id":"sess-62dc49e2b934","input_length":2738,"output_length":416,"hash_ids":[3640063,3640064,3640065,3640066,3640067,3640068],"delay":3215.8} +{"session_id":"sess-62dc49e2b934","input_length":1459,"output_length":352,"hash_ids":[3640069,3640070,3640071],"delay":3524.5} +{"session_id":"sess-62dc49e2b934","input_length":594,"output_length":229,"hash_ids":[3640072,3640073],"delay":1402.1} +{"session_id":"sess-62dc49e2b934","input_length":2358,"output_length":90,"hash_ids":[3640074,3640075,3640076,3640077,3640078],"delay":2700.9} +{"session_id":"sess-62dc49e2b934","input_length":570,"output_length":205,"hash_ids":[3640079,3640080],"delay":1150.6} +{"session_id":"sess-62dc49e2b934","input_length":1868,"output_length":167,"hash_ids":[3640081,3640082,3640083,3640084],"delay":1605.2} +{"session_id":"sess-62dc49e2b934","input_length":819,"output_length":789,"hash_ids":[3640085,3640086],"delay":872.8} +{"session_id":"sess-62dc49e2b934","input_length":407,"output_length":582,"hash_ids":[3640087],"delay":929.3} +{"session_id":"sess-62dc49e2b934","input_length":597,"output_length":81,"hash_ids":[3640088,3640089],"delay":315.0} +{"session_id":"sess-62dc49e2b934","input_length":988,"output_length":78,"hash_ids":[3640090,3640091],"delay":7478.4} +{"session_id":"sess-62dc49e2b934","input_length":1808,"output_length":229,"hash_ids":[3640092,3640093,3640094,3640095],"delay":436.4} +{"session_id":"sess-62dc49e2b934","input_length":1157,"output_length":93,"hash_ids":[3640096,3640097,3640098],"delay":12371.6} +{"session_id":"sess-62dc49e2b934","input_length":417,"output_length":55,"hash_ids":[3640099],"delay":133.2} +{"session_id":"sess-62dc49e2b934","input_length":1665,"output_length":163,"hash_ids":[3640100,3640101,3640102,3640103],"delay":199.3} +{"session_id":"sess-62dc49e2b934","input_length":485,"output_length":233,"hash_ids":[3640104],"delay":566.6} +{"session_id":"sess-62dc49e2b934","input_length":292,"output_length":162,"hash_ids":[3640105],"delay":66.3} +{"session_id":"sess-62dc49e2b934","input_length":1722,"output_length":814,"hash_ids":[3640106,3640107,3640108,3640109],"delay":254.8} +{"session_id":"sess-d11be39f3645","input_length":27349,"output_length":709,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3644032,3644033],"timestamp":0.0,"group_id":1} +{"session_id":"sess-d11be39f3645","input_length":759,"output_length":59,"hash_ids":[3644034,3644035],"delay":14363.7} +{"session_id":"sess-d11be39f3645","input_length":608,"output_length":229,"hash_ids":[3644036,3644037],"delay":28602.5} +{"session_id":"sess-d11be39f3645","input_length":1519,"output_length":689,"hash_ids":[3644038,3644039,3644040],"delay":871.5} +{"session_id":"sess-d11be39f3645","input_length":2148,"output_length":54,"hash_ids":[3644041,3644042,3644043,3644044,3644045],"delay":943.9} +{"session_id":"sess-d11be39f3645","input_length":779,"output_length":237,"hash_ids":[3644046,3644047],"delay":2229.2} +{"session_id":"sess-d11be39f3645","input_length":523,"output_length":99,"hash_ids":[3644048,3644049],"delay":314.5} +{"session_id":"sess-d11be39f3645","input_length":709,"output_length":393,"hash_ids":[3644050,3644051],"delay":966.6} +{"session_id":"sess-d11be39f3645","input_length":1078,"output_length":84,"hash_ids":[3644052,3644053,3644054],"delay":592.1} +{"session_id":"sess-d11be39f3645","input_length":150,"output_length":305,"hash_ids":[3644055],"delay":394.1} +{"session_id":"sess-d11be39f3645","input_length":2501,"output_length":288,"hash_ids":[3644056,3644057,3644058,3644059,3644060],"delay":13048.9} +{"session_id":"sess-d11be39f3645","input_length":631,"output_length":190,"hash_ids":[3644061,3644062],"delay":898.6} +{"session_id":"sess-d11be39f3645","input_length":852,"output_length":296,"hash_ids":[3644063,3644064],"delay":649.7} +{"session_id":"sess-d11be39f3645","input_length":359,"output_length":236,"hash_ids":[3644065],"delay":2786.9} +{"session_id":"sess-d11be39f3645","input_length":2425,"output_length":145,"hash_ids":[3644066,3644067,3644068,3644069,3644070],"delay":274.0} +{"session_id":"sess-d11be39f3645","input_length":506,"output_length":221,"hash_ids":[3644071],"delay":17111.2} +{"session_id":"sess-d11be39f3645","input_length":2022,"output_length":234,"hash_ids":[3644072,3644073,3644074,3644075],"delay":1774.8} +{"session_id":"sess-d11be39f3645","input_length":2325,"output_length":209,"hash_ids":[3644076,3644077,3644078,3644079,3644080],"delay":776.0} +{"session_id":"sess-d11be39f3645","input_length":1052,"output_length":403,"hash_ids":[3644081,3644082,3644083],"delay":1030.4} +{"session_id":"sess-d11be39f3645","input_length":405,"output_length":233,"hash_ids":[3644084],"delay":535.9} +{"session_id":"sess-d11be39f3645","input_length":250,"output_length":72,"hash_ids":[3644085],"delay":314.6} +{"session_id":"sess-d11be39f3645","input_length":167,"output_length":175,"hash_ids":[3644086],"delay":8451.8} +{"session_id":"sess-d11be39f3645","input_length":653,"output_length":482,"hash_ids":[3644087,3644088],"delay":106.5} +{"session_id":"sess-d11be39f3645","input_length":520,"output_length":268,"hash_ids":[3644089,3644090],"delay":298.5} +{"session_id":"sess-d11be39f3645","input_length":1035,"output_length":249,"hash_ids":[3644091,3644092,3644093],"delay":1118.2} +{"session_id":"sess-d11be39f3645","input_length":1054,"output_length":713,"hash_ids":[3644094,3644095,3644096],"delay":539.1} +{"session_id":"sess-d11be39f3645","input_length":824,"output_length":177,"hash_ids":[3644097,3644098],"delay":15905.5} +{"session_id":"sess-d11be39f3645","input_length":400,"output_length":336,"hash_ids":[3644099],"delay":1209.3} +{"session_id":"sess-d670e43460a3","input_length":30377,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,3648032,3648033,3648034,3648035,3648036,3648037,3648038,3648039],"timestamp":0.0,"group_id":39} +{"session_id":"sess-d670e43460a3","input_length":794,"output_length":142,"hash_ids":[3648040,3648041],"delay":605.2} +{"session_id":"sess-d670e43460a3","input_length":959,"output_length":420,"hash_ids":[3648042,3648043],"delay":1056.4} +{"session_id":"sess-a2c1debd6304","input_length":32839,"output_length":168,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3652032,3652033,3652034,3652035,3652036,3652037,3652038,3652039,3652040,3652041,3652042,3652043,3652044],"timestamp":0.0,"group_id":17} +{"session_id":"sess-a2c1debd6304","input_length":1597,"output_length":244,"hash_ids":[3652045,3652046,3652047,3652048],"delay":1122.8} +{"session_id":"sess-a2c1debd6304","input_length":1448,"output_length":108,"hash_ids":[3652049,3652050,3652051],"delay":2130.0} +{"session_id":"sess-2542a64336c9","input_length":27299,"output_length":542,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,3656032,3656033],"timestamp":0.0,"group_id":4} +{"session_id":"sess-2542a64336c9","input_length":465,"output_length":198,"hash_ids":[3656034],"delay":5733.6} +{"session_id":"sess-2542a64336c9","input_length":1555,"output_length":42,"hash_ids":[3656035,3656036,3656037,3656038],"delay":8618.2} +{"session_id":"sess-2542a64336c9","input_length":513,"output_length":380,"hash_ids":[3656039,3656040],"delay":257.7} +{"session_id":"sess-2542a64336c9","input_length":421,"output_length":124,"hash_ids":[3656041],"delay":1196.6} +{"session_id":"sess-2542a64336c9","input_length":1811,"output_length":237,"hash_ids":[3656042,3656043,3656044,3656045],"delay":5759.1} +{"session_id":"sess-2542a64336c9","input_length":547,"output_length":220,"hash_ids":[3656046,3656047],"delay":1227.3} +{"session_id":"sess-2542a64336c9","input_length":2103,"output_length":234,"hash_ids":[3656048,3656049,3656050,3656051,3656052],"delay":460.6} +{"session_id":"sess-2542a64336c9","input_length":1170,"output_length":167,"hash_ids":[3656053,3656054,3656055],"delay":2518.2} +{"session_id":"sess-2542a64336c9","input_length":1883,"output_length":180,"hash_ids":[3656056,3656057,3656058,3656059],"delay":2452.6} +{"session_id":"sess-2542a64336c9","input_length":269,"output_length":109,"hash_ids":[3656060],"delay":436.3} +{"session_id":"sess-2542a64336c9","input_length":157,"output_length":87,"hash_ids":[3656061],"delay":3633.9} +{"session_id":"sess-2542a64336c9","input_length":1361,"output_length":301,"hash_ids":[3656062,3656063,3656064],"delay":2683.7} +{"session_id":"sess-2542a64336c9","input_length":690,"output_length":274,"hash_ids":[3656065,3656066],"delay":523.8} +{"session_id":"sess-e36facc228c6","input_length":31638,"output_length":323,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3660032,3660033,3660034,3660035,3660036,3660037,3660038,3660039,3660040,3660041],"timestamp":0.0,"group_id":5} +{"session_id":"sess-e36facc228c6","input_length":185,"output_length":507,"hash_ids":[3660042],"delay":740.9} +{"session_id":"sess-e36facc228c6","input_length":2634,"output_length":51,"hash_ids":[3660043,3660044,3660045,3660046,3660047,3660048],"delay":925.3} +{"session_id":"sess-e36facc228c6","input_length":2920,"output_length":244,"hash_ids":[3660049,3660050,3660051,3660052,3660053,3660054],"delay":4208.5} +{"session_id":"sess-e36facc228c6","input_length":132,"output_length":113,"hash_ids":[3660055],"delay":1257.5} +{"session_id":"sess-e36facc228c6","input_length":221,"output_length":395,"hash_ids":[3660056],"delay":593.9} +{"session_id":"sess-e36facc228c6","input_length":694,"output_length":119,"hash_ids":[3660057,3660058],"delay":7114.5} +{"session_id":"sess-e36facc228c6","input_length":472,"output_length":47,"hash_ids":[3660059],"delay":3013.9} +{"session_id":"sess-e36facc228c6","input_length":598,"output_length":64,"hash_ids":[3660060,3660061],"delay":348.1} +{"session_id":"sess-e36facc228c6","input_length":890,"output_length":50,"hash_ids":[3660062,3660063],"delay":6382.7} +{"session_id":"sess-e36facc228c6","input_length":1529,"output_length":542,"hash_ids":[3660064,3660065,3660066],"delay":26572.6} +{"session_id":"sess-e36facc228c6","input_length":2911,"output_length":282,"hash_ids":[3660067,3660068,3660069,3660070,3660071,3660072],"delay":2605.9} +{"session_id":"sess-e36facc228c6","input_length":1824,"output_length":142,"hash_ids":[3660073,3660074,3660075,3660076],"delay":18855.3} +{"session_id":"sess-e36facc228c6","input_length":471,"output_length":131,"hash_ids":[3660077],"delay":689.1} +{"session_id":"sess-e36facc228c6","input_length":175,"output_length":425,"hash_ids":[3660078],"delay":519.0} +{"session_id":"sess-e36facc228c6","input_length":1970,"output_length":116,"hash_ids":[3660079,3660080,3660081,3660082],"delay":630.5} +{"session_id":"sess-e36facc228c6","input_length":902,"output_length":187,"hash_ids":[3660083,3660084],"delay":1352.7} +{"session_id":"sess-e36facc228c6","input_length":1905,"output_length":43,"hash_ids":[3660085,3660086,3660087,3660088],"delay":375.7} +{"session_id":"sess-e36facc228c6","input_length":158,"output_length":439,"hash_ids":[3660089],"delay":940.4} +{"session_id":"sess-e36facc228c6","input_length":610,"output_length":223,"hash_ids":[3660090,3660091],"delay":6217.8} +{"session_id":"sess-e36facc228c6","input_length":126,"output_length":59,"hash_ids":[3660092],"delay":419.2} +{"session_id":"sess-a6e003e2106c","input_length":28926,"output_length":107,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3664032,3664033,3664034,3664035,3664036],"timestamp":0.0,"group_id":5} +{"session_id":"sess-a6e003e2106c","input_length":1164,"output_length":129,"hash_ids":[3664037,3664038,3664039],"delay":630.9} +{"session_id":"sess-a6e003e2106c","input_length":730,"output_length":181,"hash_ids":[3664040,3664041],"delay":971.3} +{"session_id":"sess-a6e003e2106c","input_length":2220,"output_length":352,"hash_ids":[3664042,3664043,3664044,3664045,3664046],"delay":1068.3} +{"session_id":"sess-a6e003e2106c","input_length":540,"output_length":129,"hash_ids":[3664047,3664048],"delay":22520.6} +{"session_id":"sess-a6e003e2106c","input_length":216,"output_length":50,"hash_ids":[3664049],"delay":1407.2} +{"session_id":"sess-a6e003e2106c","input_length":2012,"output_length":35,"hash_ids":[3664050,3664051,3664052,3664053],"delay":3774.3} +{"session_id":"sess-a6e003e2106c","input_length":1578,"output_length":107,"hash_ids":[3664054,3664055,3664056,3664057],"delay":1415.5} +{"session_id":"sess-a6e003e2106c","input_length":435,"output_length":60,"hash_ids":[3664058],"delay":1956.1} +{"session_id":"sess-a6e003e2106c","input_length":540,"output_length":252,"hash_ids":[3664059,3664060],"delay":1087.3} +{"session_id":"sess-a6e003e2106c","input_length":1760,"output_length":115,"hash_ids":[3664061,3664062,3664063,3664064],"delay":2524.1} +{"session_id":"sess-a6e003e2106c","input_length":719,"output_length":289,"hash_ids":[3664065,3664066],"delay":1429.8} +{"session_id":"sess-a6e003e2106c","input_length":713,"output_length":399,"hash_ids":[3664067,3664068],"delay":2269.2} +{"session_id":"sess-a6e003e2106c","input_length":1834,"output_length":226,"hash_ids":[3664069,3664070,3664071,3664072],"delay":16999.6} +{"session_id":"sess-a6e003e2106c","input_length":2015,"output_length":131,"hash_ids":[3664073,3664074,3664075,3664076],"delay":10539.4} +{"session_id":"sess-a6e003e2106c","input_length":238,"output_length":82,"hash_ids":[3664077],"delay":937.6} +{"session_id":"sess-a6e003e2106c","input_length":748,"output_length":70,"hash_ids":[3664078,3664079],"delay":958.2} +{"session_id":"sess-a6e003e2106c","input_length":446,"output_length":76,"hash_ids":[3664080],"delay":1378.1} +{"session_id":"sess-a6e003e2106c","input_length":598,"output_length":38,"hash_ids":[3664081,3664082],"delay":2276.1} +{"session_id":"sess-a6e003e2106c","input_length":1595,"output_length":180,"hash_ids":[3664083,3664084,3664085,3664086],"delay":164.2} +{"session_id":"sess-a6e003e2106c","input_length":482,"output_length":1126,"hash_ids":[3664087],"delay":8879.7} +{"session_id":"sess-a6e003e2106c","input_length":835,"output_length":196,"hash_ids":[3664088,3664089],"delay":305.5} +{"session_id":"sess-a6e003e2106c","input_length":351,"output_length":30,"hash_ids":[3664090],"delay":7885.9} +{"session_id":"sess-a6e003e2106c","input_length":1853,"output_length":548,"hash_ids":[3664091,3664092,3664093,3664094],"delay":318.5} +{"session_id":"sess-a6e003e2106c","input_length":2155,"output_length":851,"hash_ids":[3664095,3664096,3664097,3664098,3664099],"delay":407.3} +{"session_id":"sess-a6e003e2106c","input_length":240,"output_length":1348,"hash_ids":[3664100],"delay":854.0} +{"session_id":"sess-a6e003e2106c","input_length":316,"output_length":110,"hash_ids":[3664101],"delay":4906.3} +{"session_id":"sess-a6e003e2106c","input_length":607,"output_length":386,"hash_ids":[3664102,3664103],"delay":595.7} +{"session_id":"sess-7108ee66703b","input_length":28517,"output_length":122,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3668032,3668033,3668034,3668035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-7108ee66703b","input_length":1817,"output_length":242,"hash_ids":[3668036,3668037,3668038,3668039],"delay":4214.8} +{"session_id":"sess-7108ee66703b","input_length":364,"output_length":191,"hash_ids":[3668040],"delay":1585.2} +{"session_id":"sess-7108ee66703b","input_length":589,"output_length":174,"hash_ids":[3668041,3668042],"delay":904.7} +{"session_id":"sess-7108ee66703b","input_length":399,"output_length":58,"hash_ids":[3668043],"delay":5783.9} +{"session_id":"sess-7108ee66703b","input_length":1453,"output_length":325,"hash_ids":[3668044,3668045,3668046],"delay":744.1} +{"session_id":"sess-7108ee66703b","input_length":711,"output_length":122,"hash_ids":[3668047,3668048],"delay":1097.4} +{"session_id":"sess-7108ee66703b","input_length":341,"output_length":79,"hash_ids":[3668049],"delay":9582.8} +{"session_id":"sess-4c788a5c8920","input_length":26132,"output_length":205,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4c788a5c8920","input_length":866,"output_length":758,"hash_ids":[3668050,3668051],"delay":726.4} +{"session_id":"sess-4c788a5c8920","input_length":109,"output_length":213,"hash_ids":[3668052],"delay":267.8} +{"session_id":"sess-4c788a5c8920","input_length":155,"output_length":40,"hash_ids":[3668053],"delay":2438.0} +{"session_id":"sess-4c788a5c8920","input_length":628,"output_length":137,"hash_ids":[3668054,3668055],"delay":415.8} +{"session_id":"sess-4c788a5c8920","input_length":534,"output_length":138,"hash_ids":[3668056,3668057],"delay":1234.8} +{"session_id":"sess-4c788a5c8920","input_length":1291,"output_length":150,"hash_ids":[3668058,3668059,3668060],"delay":1285.4} +{"session_id":"sess-4c788a5c8920","input_length":1114,"output_length":267,"hash_ids":[3668061,3668062,3668063],"delay":417.4} +{"session_id":"sess-4c788a5c8920","input_length":1283,"output_length":162,"hash_ids":[3668064,3668065,3668066],"delay":1644.4} +{"session_id":"sess-4c788a5c8920","input_length":269,"output_length":184,"hash_ids":[3668067],"delay":17543.5} +{"session_id":"sess-4c788a5c8920","input_length":1813,"output_length":266,"hash_ids":[3668068,3668069,3668070,3668071],"delay":783.0} +{"session_id":"sess-4c788a5c8920","input_length":223,"output_length":116,"hash_ids":[3668072],"delay":165.7} +{"session_id":"sess-4c788a5c8920","input_length":300,"output_length":188,"hash_ids":[3668073],"delay":1885.5} +{"session_id":"sess-4c788a5c8920","input_length":499,"output_length":960,"hash_ids":[3668074],"delay":520.5} +{"session_id":"sess-4c788a5c8920","input_length":1011,"output_length":187,"hash_ids":[3668075,3668076],"delay":10002.8} +{"session_id":"sess-4c788a5c8920","input_length":1393,"output_length":406,"hash_ids":[3668077,3668078,3668079],"delay":10443.5} +{"session_id":"sess-4c788a5c8920","input_length":480,"output_length":292,"hash_ids":[3668080],"delay":1183.0} +{"session_id":"sess-4c788a5c8920","input_length":345,"output_length":1010,"hash_ids":[3668081],"delay":703.3} +{"session_id":"sess-4c788a5c8920","input_length":708,"output_length":147,"hash_ids":[3668082,3668083],"delay":200.1} +{"session_id":"sess-c3d9dc1b1ef7","input_length":35312,"output_length":393,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3676032,3676033,3676034,3676035,3676036,3676037,3676038,3676039,3676040,3676041,3676042,3676043,3676044,3676045,3676046,3676047,3676048],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1967,"output_length":161,"hash_ids":[3676049,3676050,3676051,3676052],"delay":1060.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2365,"output_length":58,"hash_ids":[3676053,3676054,3676055,3676056,3676057],"delay":688.7} +{"session_id":"sess-c3d9dc1b1ef7","input_length":216,"output_length":169,"hash_ids":[3676058],"delay":1188.8} +{"session_id":"sess-c3d9dc1b1ef7","input_length":758,"output_length":115,"hash_ids":[3676059,3676060],"delay":7373.5} +{"session_id":"sess-c3d9dc1b1ef7","input_length":368,"output_length":117,"hash_ids":[3676061],"delay":646.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2841,"output_length":83,"hash_ids":[3676062,3676063,3676064,3676065,3676066,3676067],"delay":228.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1858,"output_length":243,"hash_ids":[3676068,3676069,3676070,3676071],"delay":148.6} +{"session_id":"sess-c3d9dc1b1ef7","input_length":2733,"output_length":293,"hash_ids":[3676072,3676073,3676074,3676075,3676076,3676077],"delay":15488.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":839,"output_length":499,"hash_ids":[3676078,3676079],"delay":947.9} +{"session_id":"sess-c3d9dc1b1ef7","input_length":309,"output_length":409,"hash_ids":[3676080],"delay":14823.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":487,"output_length":148,"hash_ids":[3676081],"delay":1047.9} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1087,"output_length":30,"hash_ids":[3676082,3676083,3676084],"delay":281.1} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1195,"output_length":1023,"hash_ids":[3676085,3676086,3676087],"delay":245.1} +{"session_id":"sess-c3d9dc1b1ef7","input_length":1031,"output_length":267,"hash_ids":[3676088,3676089,3676090],"delay":829.7} +{"session_id":"sess-c3d9dc1b1ef7","input_length":334,"output_length":123,"hash_ids":[3676091],"delay":812.2} +{"session_id":"sess-c3d9dc1b1ef7","input_length":598,"output_length":146,"hash_ids":[3676092,3676093],"delay":1501.3} +{"session_id":"sess-c3d9dc1b1ef7","input_length":670,"output_length":152,"hash_ids":[3676094,3676095],"delay":3348.6} +{"session_id":"sess-c3d9dc1b1ef7","input_length":618,"output_length":307,"hash_ids":[3676096,3676097],"delay":1947.8} +{"session_id":"sess-5c4e6fae063d","input_length":28383,"output_length":394,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3680032,3680033,3680034,3680035],"timestamp":0.0,"group_id":15} +{"session_id":"sess-5c4e6fae063d","input_length":902,"output_length":561,"hash_ids":[3680036,3680037],"delay":756.8} +{"session_id":"sess-5c4e6fae063d","input_length":2472,"output_length":694,"hash_ids":[3680038,3680039,3680040,3680041,3680042],"delay":1076.0} +{"session_id":"sess-5c4e6fae063d","input_length":630,"output_length":199,"hash_ids":[3680043,3680044],"delay":747.5} +{"session_id":"sess-5c4e6fae063d","input_length":1166,"output_length":529,"hash_ids":[3680045,3680046,3680047],"delay":44848.6} +{"session_id":"sess-5c4e6fae063d","input_length":1692,"output_length":202,"hash_ids":[3680048,3680049,3680050,3680051],"delay":655.2} +{"session_id":"sess-5c4e6fae063d","input_length":1995,"output_length":124,"hash_ids":[3680052,3680053,3680054,3680055],"delay":3320.3} +{"session_id":"sess-5c4e6fae063d","input_length":504,"output_length":183,"hash_ids":[3680056],"delay":1045.2} +{"session_id":"sess-5c4e6fae063d","input_length":1096,"output_length":268,"hash_ids":[3680057,3680058,3680059],"delay":408.6} +{"session_id":"sess-5c4e6fae063d","input_length":306,"output_length":82,"hash_ids":[3680060],"delay":31891.2} +{"session_id":"sess-5c4e6fae063d","input_length":198,"output_length":119,"hash_ids":[3680061],"delay":15336.2} +{"session_id":"sess-15c02ea45139","input_length":28519,"output_length":278,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3684032,3684033,3684034,3684035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-15c02ea45139","input_length":1831,"output_length":421,"hash_ids":[3684036,3684037,3684038,3684039],"delay":321.0} +{"session_id":"sess-15c02ea45139","input_length":1065,"output_length":81,"hash_ids":[3684040,3684041,3684042],"delay":3511.2} +{"session_id":"sess-15c02ea45139","input_length":400,"output_length":372,"hash_ids":[3684043],"delay":1301.7} +{"session_id":"sess-15c02ea45139","input_length":2592,"output_length":582,"hash_ids":[3684044,3684045,3684046,3684047,3684048,3684049],"delay":8483.4} +{"session_id":"sess-15c02ea45139","input_length":906,"output_length":217,"hash_ids":[3684050,3684051],"delay":562.6} +{"session_id":"sess-15c02ea45139","input_length":2302,"output_length":626,"hash_ids":[3684052,3684053,3684054,3684055,3684056],"delay":1440.8} +{"session_id":"sess-15c02ea45139","input_length":569,"output_length":231,"hash_ids":[3684057,3684058],"delay":1118.9} +{"session_id":"sess-15c02ea45139","input_length":568,"output_length":179,"hash_ids":[3684059,3684060],"delay":14733.4} +{"session_id":"sess-15c02ea45139","input_length":1752,"output_length":405,"hash_ids":[3684061,3684062,3684063,3684064],"delay":8978.0} +{"session_id":"sess-15c02ea45139","input_length":97,"output_length":91,"hash_ids":[3684065],"delay":248.6} +{"session_id":"sess-15c02ea45139","input_length":615,"output_length":97,"hash_ids":[3684066,3684067],"delay":3290.5} +{"session_id":"sess-15c02ea45139","input_length":1228,"output_length":132,"hash_ids":[3684068,3684069,3684070],"delay":476.4} +{"session_id":"sess-15c02ea45139","input_length":1970,"output_length":148,"hash_ids":[3684071,3684072,3684073,3684074],"delay":704.3} +{"session_id":"sess-15c02ea45139","input_length":2683,"output_length":111,"hash_ids":[3684075,3684076,3684077,3684078,3684079,3684080],"delay":456.8} +{"session_id":"sess-15c02ea45139","input_length":476,"output_length":226,"hash_ids":[3684081],"delay":11798.2} +{"session_id":"sess-15c02ea45139","input_length":1963,"output_length":294,"hash_ids":[3684082,3684083,3684084,3684085],"delay":6115.8} +{"session_id":"sess-15c02ea45139","input_length":931,"output_length":73,"hash_ids":[3684086,3684087],"delay":419.7} +{"session_id":"sess-15c02ea45139","input_length":812,"output_length":132,"hash_ids":[3684088,3684089],"delay":397.3} +{"session_id":"sess-15c02ea45139","input_length":666,"output_length":42,"hash_ids":[3684090,3684091],"delay":30458.2} +{"session_id":"sess-15c02ea45139","input_length":1334,"output_length":454,"hash_ids":[3684092,3684093,3684094],"delay":30075.6} +{"session_id":"sess-15c02ea45139","input_length":1633,"output_length":174,"hash_ids":[3684095,3684096,3684097,3684098],"delay":7900.9} +{"session_id":"sess-15c02ea45139","input_length":421,"output_length":67,"hash_ids":[3684099],"delay":723.3} +{"session_id":"sess-15c02ea45139","input_length":607,"output_length":30,"hash_ids":[3684100,3684101],"delay":960.9} +{"session_id":"sess-15c02ea45139","input_length":1224,"output_length":600,"hash_ids":[3684102,3684103,3684104],"delay":329.0} +{"session_id":"sess-15c02ea45139","input_length":761,"output_length":414,"hash_ids":[3684105,3684106],"delay":3108.0} +{"session_id":"sess-15c02ea45139","input_length":744,"output_length":30,"hash_ids":[3684107,3684108],"delay":784.3} +{"session_id":"sess-b07288553f47","input_length":27690,"output_length":131,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3688032,3688033,3688034],"timestamp":0.0,"group_id":5} +{"session_id":"sess-b07288553f47","input_length":497,"output_length":178,"hash_ids":[3688035],"delay":584.1} +{"session_id":"sess-b07288553f47","input_length":579,"output_length":579,"hash_ids":[3688036,3688037],"delay":73247.2} +{"session_id":"sess-b07288553f47","input_length":271,"output_length":42,"hash_ids":[3688038],"delay":2636.3} +{"session_id":"sess-b07288553f47","input_length":1791,"output_length":496,"hash_ids":[3688039,3688040,3688041,3688042],"delay":38642.7} +{"session_id":"sess-b07288553f47","input_length":1117,"output_length":525,"hash_ids":[3688043,3688044,3688045],"delay":2946.8} +{"session_id":"sess-b07288553f47","input_length":319,"output_length":171,"hash_ids":[3688046],"delay":364.4} +{"session_id":"sess-b07288553f47","input_length":708,"output_length":131,"hash_ids":[3688047,3688048],"delay":1433.6} +{"session_id":"sess-b07288553f47","input_length":1077,"output_length":972,"hash_ids":[3688049,3688050,3688051],"delay":940.0} +{"session_id":"sess-b07288553f47","input_length":517,"output_length":132,"hash_ids":[3688052,3688053],"delay":350.7} +{"session_id":"sess-b07288553f47","input_length":1747,"output_length":81,"hash_ids":[3688054,3688055,3688056,3688057],"delay":3087.0} +{"session_id":"sess-b07288553f47","input_length":1262,"output_length":89,"hash_ids":[3688058,3688059,3688060],"delay":8311.1} +{"session_id":"sess-b07288553f47","input_length":1274,"output_length":30,"hash_ids":[3688061,3688062,3688063],"delay":364.2} +{"session_id":"sess-b07288553f47","input_length":257,"output_length":418,"hash_ids":[3688064],"delay":751.5} +{"session_id":"sess-b07288553f47","input_length":2453,"output_length":239,"hash_ids":[3688065,3688066,3688067,3688068,3688069],"delay":892.3} +{"session_id":"sess-b07288553f47","input_length":415,"output_length":63,"hash_ids":[3688070],"delay":3024.8} +{"session_id":"sess-b07288553f47","input_length":546,"output_length":479,"hash_ids":[3688071,3688072],"delay":19375.7} +{"session_id":"sess-b07288553f47","input_length":1440,"output_length":46,"hash_ids":[3688073,3688074,3688075],"delay":1545.7} +{"session_id":"sess-b07288553f47","input_length":163,"output_length":39,"hash_ids":[3688076],"delay":1042.7} +{"session_id":"sess-b07288553f47","input_length":178,"output_length":272,"hash_ids":[3688077],"delay":1192.3} +{"session_id":"sess-b07288553f47","input_length":1492,"output_length":167,"hash_ids":[3688078,3688079,3688080],"delay":1095.6} +{"session_id":"sess-b07288553f47","input_length":339,"output_length":134,"hash_ids":[3688081],"delay":119.2} +{"session_id":"sess-b07288553f47","input_length":2135,"output_length":35,"hash_ids":[3688082,3688083,3688084,3688085,3688086],"delay":257.9} +{"session_id":"sess-b07288553f47","input_length":483,"output_length":819,"hash_ids":[3688087],"delay":373.2} +{"session_id":"sess-b07288553f47","input_length":1036,"output_length":204,"hash_ids":[3688088,3688089,3688090],"delay":364.9} +{"session_id":"sess-b07288553f47","input_length":2459,"output_length":173,"hash_ids":[3688091,3688092,3688093,3688094,3688095],"delay":13272.8} +{"session_id":"sess-b07288553f47","input_length":468,"output_length":227,"hash_ids":[3688096],"delay":952.6} +{"session_id":"sess-b07288553f47","input_length":540,"output_length":136,"hash_ids":[3688097,3688098],"delay":281.5} +{"session_id":"sess-b07288553f47","input_length":172,"output_length":48,"hash_ids":[3688099],"delay":1019.4} +{"session_id":"sess-b07288553f47","input_length":2792,"output_length":280,"hash_ids":[3688100,3688101,3688102,3688103,3688104,3688105],"delay":439.8} +{"session_id":"sess-b07288553f47","input_length":118,"output_length":353,"hash_ids":[3688106],"delay":1613.6} +{"session_id":"sess-9ae02831f496","input_length":26959,"output_length":200,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,3692032],"timestamp":0.0,"group_id":23} +{"session_id":"sess-9ae02831f496","input_length":193,"output_length":90,"hash_ids":[3692033],"delay":16566.4} +{"session_id":"sess-9ae02831f496","input_length":1707,"output_length":87,"hash_ids":[3692034,3692035,3692036,3692037],"delay":869.0} +{"session_id":"sess-9ae02831f496","input_length":265,"output_length":430,"hash_ids":[3692038],"delay":768.2} +{"session_id":"sess-9ae02831f496","input_length":756,"output_length":212,"hash_ids":[3692039,3692040],"delay":1920.3} +{"session_id":"sess-9ae02831f496","input_length":1375,"output_length":168,"hash_ids":[3692041,3692042,3692043],"delay":160.1} +{"session_id":"sess-9ae02831f496","input_length":624,"output_length":85,"hash_ids":[3692044,3692045],"delay":502.1} +{"session_id":"sess-9ae02831f496","input_length":824,"output_length":126,"hash_ids":[3692046,3692047],"delay":1510.2} +{"session_id":"sess-9ae02831f496","input_length":1212,"output_length":75,"hash_ids":[3692048,3692049,3692050],"delay":1536.9} +{"session_id":"sess-9ae02831f496","input_length":569,"output_length":285,"hash_ids":[3692051,3692052],"delay":1953.8} +{"session_id":"sess-9ae02831f496","input_length":270,"output_length":529,"hash_ids":[3692053],"delay":956.9} +{"session_id":"sess-9ae02831f496","input_length":667,"output_length":94,"hash_ids":[3692054,3692055],"delay":294.7} +{"session_id":"sess-9ae02831f496","input_length":590,"output_length":225,"hash_ids":[3692056,3692057],"delay":349.6} +{"session_id":"sess-9ae02831f496","input_length":966,"output_length":427,"hash_ids":[3692058,3692059],"delay":1234.5} +{"session_id":"sess-9ae02831f496","input_length":1213,"output_length":485,"hash_ids":[3692060,3692061,3692062],"delay":2188.9} +{"session_id":"sess-9ae02831f496","input_length":571,"output_length":157,"hash_ids":[3692063,3692064],"delay":1940.3} +{"session_id":"sess-9ae02831f496","input_length":2662,"output_length":127,"hash_ids":[3692065,3692066,3692067,3692068,3692069,3692070],"delay":2405.1} +{"session_id":"sess-9ae02831f496","input_length":238,"output_length":297,"hash_ids":[3692071],"delay":549.5} +{"session_id":"sess-9ae02831f496","input_length":509,"output_length":75,"hash_ids":[3692072],"delay":377.4} +{"session_id":"sess-9ae02831f496","input_length":434,"output_length":112,"hash_ids":[3692073],"delay":857.0} +{"session_id":"sess-9ae02831f496","input_length":1225,"output_length":148,"hash_ids":[3692074,3692075,3692076],"delay":825.9} +{"session_id":"sess-9ae02831f496","input_length":138,"output_length":181,"hash_ids":[3692077],"delay":6072.7} +{"session_id":"sess-a7702cf1cc0f","input_length":33662,"output_length":347,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,3696032,3696033,3696034,3696035,3696036,3696037,3696038,3696039,3696040,3696041,3696042,3696043,3696044,3696045],"timestamp":0.0,"group_id":9} +{"session_id":"sess-a7702cf1cc0f","input_length":1563,"output_length":347,"hash_ids":[3696046,3696047,3696048,3696049],"delay":1159.4} +{"session_id":"sess-a7702cf1cc0f","input_length":504,"output_length":375,"hash_ids":[3696050],"delay":2883.1} +{"session_id":"sess-a7702cf1cc0f","input_length":491,"output_length":449,"hash_ids":[3696051],"delay":1119.1} +{"session_id":"sess-a7702cf1cc0f","input_length":301,"output_length":71,"hash_ids":[3696052],"delay":6076.3} +{"session_id":"sess-a7702cf1cc0f","input_length":522,"output_length":707,"hash_ids":[3696053,3696054],"delay":534.1} +{"session_id":"sess-a7702cf1cc0f","input_length":663,"output_length":83,"hash_ids":[3696055,3696056],"delay":1868.2} +{"session_id":"sess-a7702cf1cc0f","input_length":600,"output_length":64,"hash_ids":[3696057,3696058],"delay":874.0} +{"session_id":"sess-a7702cf1cc0f","input_length":578,"output_length":399,"hash_ids":[3696059,3696060],"delay":597.8} +{"session_id":"sess-a7702cf1cc0f","input_length":1496,"output_length":113,"hash_ids":[3696061,3696062,3696063],"delay":639.0} +{"session_id":"sess-a7702cf1cc0f","input_length":129,"output_length":82,"hash_ids":[3696064],"delay":702.1} +{"session_id":"sess-a7702cf1cc0f","input_length":374,"output_length":102,"hash_ids":[3696065],"delay":189.7} +{"session_id":"sess-a7702cf1cc0f","input_length":272,"output_length":687,"hash_ids":[3696066],"delay":789.7} +{"session_id":"sess-a7702cf1cc0f","input_length":606,"output_length":135,"hash_ids":[3696067,3696068],"delay":15475.0} +{"session_id":"sess-a7702cf1cc0f","input_length":633,"output_length":743,"hash_ids":[3696069,3696070],"delay":772.1} +{"session_id":"sess-a7702cf1cc0f","input_length":617,"output_length":89,"hash_ids":[3696071,3696072],"delay":31900.1} +{"session_id":"sess-a7702cf1cc0f","input_length":1492,"output_length":30,"hash_ids":[3696073,3696074,3696075],"delay":2995.1} +{"session_id":"sess-a7702cf1cc0f","input_length":1159,"output_length":451,"hash_ids":[3696076,3696077,3696078],"delay":10557.7} +{"session_id":"sess-a7702cf1cc0f","input_length":1719,"output_length":631,"hash_ids":[3696079,3696080,3696081,3696082],"delay":318.1} +{"session_id":"sess-a7702cf1cc0f","input_length":411,"output_length":71,"hash_ids":[3696083],"delay":513.2} +{"session_id":"sess-a7702cf1cc0f","input_length":2773,"output_length":224,"hash_ids":[3696084,3696085,3696086,3696087,3696088,3696089],"delay":474.0} +{"session_id":"sess-a7702cf1cc0f","input_length":2496,"output_length":228,"hash_ids":[3696090,3696091,3696092,3696093,3696094],"delay":336.6} +{"session_id":"sess-a7702cf1cc0f","input_length":501,"output_length":148,"hash_ids":[3696095],"delay":504.1} +{"session_id":"sess-a7702cf1cc0f","input_length":213,"output_length":68,"hash_ids":[3696096],"delay":123.7} +{"session_id":"sess-a7702cf1cc0f","input_length":381,"output_length":34,"hash_ids":[3696097],"delay":205.2} +{"session_id":"sess-a7702cf1cc0f","input_length":1125,"output_length":416,"hash_ids":[3696098,3696099,3696100],"delay":1374.5} +{"session_id":"sess-a7702cf1cc0f","input_length":571,"output_length":595,"hash_ids":[3696101,3696102],"delay":358.6} +{"session_id":"sess-a7702cf1cc0f","input_length":490,"output_length":102,"hash_ids":[3696103],"delay":926.8} +{"session_id":"sess-a7702cf1cc0f","input_length":313,"output_length":98,"hash_ids":[3696104],"delay":1587.0} +{"session_id":"sess-a7702cf1cc0f","input_length":856,"output_length":423,"hash_ids":[3696105,3696106],"delay":2505.0} +{"session_id":"sess-c7d3b014205c","input_length":30499,"output_length":902,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3700032,3700033,3700034,3700035,3700036,3700037,3700038,3700039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c7d3b014205c","input_length":470,"output_length":580,"hash_ids":[3700040],"delay":700.9} +{"session_id":"sess-c7d3b014205c","input_length":631,"output_length":49,"hash_ids":[3700041,3700042],"delay":1012.6} +{"session_id":"sess-c7d3b014205c","input_length":420,"output_length":414,"hash_ids":[3700043],"delay":528.1} +{"session_id":"sess-c7d3b014205c","input_length":1070,"output_length":182,"hash_ids":[3700044,3700045,3700046],"delay":6667.3} +{"session_id":"sess-c7d3b014205c","input_length":559,"output_length":179,"hash_ids":[3700047,3700048],"delay":2099.2} +{"session_id":"sess-c7d3b014205c","input_length":433,"output_length":368,"hash_ids":[3700049],"delay":1095.3} +{"session_id":"sess-c7d3b014205c","input_length":838,"output_length":43,"hash_ids":[3700050,3700051],"delay":15001.9} +{"session_id":"sess-c7d3b014205c","input_length":2330,"output_length":74,"hash_ids":[3700052,3700053,3700054,3700055,3700056],"delay":16304.8} +{"session_id":"sess-c7d3b014205c","input_length":1612,"output_length":360,"hash_ids":[3700057,3700058,3700059,3700060],"delay":222.8} +{"session_id":"sess-c7d3b014205c","input_length":271,"output_length":533,"hash_ids":[3700061],"delay":418.5} +{"session_id":"sess-c7d3b014205c","input_length":228,"output_length":137,"hash_ids":[3700062],"delay":41784.2} +{"session_id":"sess-c7d3b014205c","input_length":807,"output_length":320,"hash_ids":[3700063,3700064],"delay":1860.2} +{"session_id":"sess-c7d3b014205c","input_length":1586,"output_length":366,"hash_ids":[3700065,3700066,3700067,3700068],"delay":775.3} +{"session_id":"sess-c7d3b014205c","input_length":1164,"output_length":338,"hash_ids":[3700069,3700070,3700071],"delay":1431.8} +{"session_id":"sess-c7d3b014205c","input_length":1374,"output_length":458,"hash_ids":[3700072,3700073,3700074],"delay":26076.5} +{"session_id":"sess-c7d3b014205c","input_length":1699,"output_length":114,"hash_ids":[3700075,3700076,3700077,3700078],"delay":2169.0} +{"session_id":"sess-c7d3b014205c","input_length":1246,"output_length":322,"hash_ids":[3700079,3700080,3700081],"delay":621.8} +{"session_id":"sess-5d606baac98f","input_length":28993,"output_length":394,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,3704032,3704033,3704034,3704035,3704036],"timestamp":0.0,"group_id":13} +{"session_id":"sess-5d606baac98f","input_length":367,"output_length":451,"hash_ids":[3704037],"delay":38667.2} +{"session_id":"sess-5d606baac98f","input_length":2823,"output_length":343,"hash_ids":[3704038,3704039,3704040,3704041,3704042,3704043],"delay":383.2} +{"session_id":"sess-5d606baac98f","input_length":2909,"output_length":116,"hash_ids":[3704044,3704045,3704046,3704047,3704048,3704049],"delay":1536.1} +{"session_id":"sess-5d606baac98f","input_length":852,"output_length":114,"hash_ids":[3704050,3704051],"delay":1007.5} +{"session_id":"sess-5d606baac98f","input_length":1040,"output_length":101,"hash_ids":[3704052,3704053,3704054],"delay":7242.4} +{"session_id":"sess-5d606baac98f","input_length":871,"output_length":772,"hash_ids":[3704055,3704056],"delay":5569.2} +{"session_id":"sess-f30e08c9a7b8","input_length":29614,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3708032,3708033,3708034,3708035,3708036,3708037],"timestamp":0.0,"group_id":2} +{"session_id":"sess-b64a86879087","input_length":26561,"output_length":1336,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-b64a86879087","input_length":1127,"output_length":286,"hash_ids":[3708038,3708039,3708040],"delay":150.2} +{"session_id":"sess-b64a86879087","input_length":497,"output_length":200,"hash_ids":[3708041],"delay":706.3} +{"session_id":"sess-b64a86879087","input_length":1936,"output_length":393,"hash_ids":[3708042,3708043,3708044,3708045],"delay":748.6} +{"session_id":"sess-b64a86879087","input_length":169,"output_length":176,"hash_ids":[3708046],"delay":694.1} +{"session_id":"sess-b64a86879087","input_length":2982,"output_length":379,"hash_ids":[3708047,3708048,3708049,3708050,3708051,3708052],"delay":7121.4} +{"session_id":"sess-b64a86879087","input_length":1436,"output_length":192,"hash_ids":[3708053,3708054,3708055],"delay":3290.5} +{"session_id":"sess-b64a86879087","input_length":1144,"output_length":297,"hash_ids":[3708056,3708057,3708058],"delay":616.7} +{"session_id":"sess-85201a71a949","input_length":36230,"output_length":285,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3716032,3716033,3716034,3716035,3716036,3716037,3716038,3716039,3716040,3716041,3716042,3716043,3716044,3716045,3716046,3716047,3716048,3716049,3716050],"timestamp":0.0,"group_id":2} +{"session_id":"sess-85201a71a949","input_length":2523,"output_length":37,"hash_ids":[3716051,3716052,3716053,3716054,3716055],"delay":862.7} +{"session_id":"sess-85201a71a949","input_length":2843,"output_length":456,"hash_ids":[3716056,3716057,3716058,3716059,3716060,3716061],"delay":467.7} +{"session_id":"sess-85201a71a949","input_length":2818,"output_length":84,"hash_ids":[3716062,3716063,3716064,3716065,3716066,3716067],"delay":826.1} +{"session_id":"sess-85201a71a949","input_length":174,"output_length":401,"hash_ids":[3716068],"delay":4304.8} +{"session_id":"sess-85201a71a949","input_length":343,"output_length":110,"hash_ids":[3716069],"delay":16467.3} +{"session_id":"sess-85201a71a949","input_length":288,"output_length":183,"hash_ids":[3716070],"delay":9043.1} +{"session_id":"sess-85201a71a949","input_length":1192,"output_length":286,"hash_ids":[3716071,3716072,3716073],"delay":1674.8} +{"session_id":"sess-85201a71a949","input_length":276,"output_length":247,"hash_ids":[3716074],"delay":17458.0} +{"session_id":"sess-85201a71a949","input_length":980,"output_length":131,"hash_ids":[3716075,3716076],"delay":965.8} +{"session_id":"sess-85201a71a949","input_length":93,"output_length":262,"hash_ids":[3716077],"delay":816.4} +{"session_id":"sess-85201a71a949","input_length":640,"output_length":95,"hash_ids":[3716078,3716079],"delay":1111.7} +{"session_id":"sess-85201a71a949","input_length":761,"output_length":114,"hash_ids":[3716080,3716081],"delay":2415.1} +{"session_id":"sess-85201a71a949","input_length":704,"output_length":1319,"hash_ids":[3716082,3716083],"delay":232.8} +{"session_id":"sess-85201a71a949","input_length":263,"output_length":381,"hash_ids":[3716084],"delay":426.6} +{"session_id":"sess-85201a71a949","input_length":1400,"output_length":209,"hash_ids":[3716085,3716086,3716087],"delay":950.2} +{"session_id":"sess-85201a71a949","input_length":1343,"output_length":337,"hash_ids":[3716088,3716089,3716090],"delay":503.1} +{"session_id":"sess-8ad65d308a3b","input_length":31790,"output_length":160,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3720032,3720033,3720034,3720035,3720036,3720037,3720038,3720039,3720040,3720041,3720042],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8ad65d308a3b","input_length":592,"output_length":65,"hash_ids":[3720043,3720044],"delay":7119.6} +{"session_id":"sess-8ad65d308a3b","input_length":2296,"output_length":140,"hash_ids":[3720045,3720046,3720047,3720048,3720049],"delay":293.7} +{"session_id":"sess-8ad65d308a3b","input_length":1998,"output_length":128,"hash_ids":[3720050,3720051,3720052,3720053],"delay":122.8} +{"session_id":"sess-8ad65d308a3b","input_length":707,"output_length":127,"hash_ids":[3720054,3720055],"delay":1196.6} +{"session_id":"sess-8ad65d308a3b","input_length":700,"output_length":93,"hash_ids":[3720056,3720057],"delay":983.5} +{"session_id":"sess-8ad65d308a3b","input_length":1552,"output_length":30,"hash_ids":[3720058,3720059,3720060,3720061],"delay":3526.3} +{"session_id":"sess-8ad65d308a3b","input_length":1728,"output_length":279,"hash_ids":[3720062,3720063,3720064,3720065],"delay":392.0} +{"session_id":"sess-8ad65d308a3b","input_length":1613,"output_length":831,"hash_ids":[3720066,3720067,3720068,3720069],"delay":219.3} +{"session_id":"sess-8ad65d308a3b","input_length":775,"output_length":75,"hash_ids":[3720070,3720071],"delay":2744.0} +{"session_id":"sess-8ad65d308a3b","input_length":1876,"output_length":361,"hash_ids":[3720072,3720073,3720074,3720075],"delay":3010.1} +{"session_id":"sess-8ad65d308a3b","input_length":2171,"output_length":40,"hash_ids":[3720076,3720077,3720078,3720079,3720080],"delay":48238.2} +{"session_id":"sess-8ad65d308a3b","input_length":740,"output_length":31,"hash_ids":[3720081,3720082],"delay":2201.8} +{"session_id":"sess-8ad65d308a3b","input_length":696,"output_length":462,"hash_ids":[3720083,3720084],"delay":889.5} +{"session_id":"sess-8ad65d308a3b","input_length":765,"output_length":181,"hash_ids":[3720085,3720086],"delay":369.3} +{"session_id":"sess-8ad65d308a3b","input_length":869,"output_length":436,"hash_ids":[3720087,3720088],"delay":559.8} +{"session_id":"sess-a10c0964ee90","input_length":35198,"output_length":86,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3724032,3724033,3724034,3724035,3724036,3724037,3724038,3724039,3724040,3724041,3724042,3724043,3724044,3724045,3724046,3724047,3724048],"timestamp":0.0,"group_id":2} +{"session_id":"sess-a10c0964ee90","input_length":1263,"output_length":108,"hash_ids":[3724049,3724050,3724051],"delay":1585.8} +{"session_id":"sess-a10c0964ee90","input_length":496,"output_length":222,"hash_ids":[3724052],"delay":487.5} +{"session_id":"sess-a10c0964ee90","input_length":197,"output_length":1313,"hash_ids":[3724053],"delay":744.2} +{"session_id":"sess-a10c0964ee90","input_length":1550,"output_length":42,"hash_ids":[3724054,3724055,3724056,3724057],"delay":14876.9} +{"session_id":"sess-a10c0964ee90","input_length":699,"output_length":140,"hash_ids":[3724058,3724059],"delay":4026.6} +{"session_id":"sess-a10c0964ee90","input_length":1556,"output_length":215,"hash_ids":[3724060,3724061,3724062,3724063],"delay":406.0} +{"session_id":"sess-a10c0964ee90","input_length":2422,"output_length":418,"hash_ids":[3724064,3724065,3724066,3724067,3724068],"delay":148.4} +{"session_id":"sess-a10c0964ee90","input_length":312,"output_length":129,"hash_ids":[3724069],"delay":27719.0} +{"session_id":"sess-a10c0964ee90","input_length":644,"output_length":132,"hash_ids":[3724070,3724071],"delay":316.7} +{"session_id":"sess-a10c0964ee90","input_length":492,"output_length":134,"hash_ids":[3724072],"delay":1157.1} +{"session_id":"sess-a10c0964ee90","input_length":2073,"output_length":580,"hash_ids":[3724073,3724074,3724075,3724076,3724077],"delay":618.7} +{"session_id":"sess-a10c0964ee90","input_length":1008,"output_length":343,"hash_ids":[3724078,3724079],"delay":258.5} +{"session_id":"sess-a10c0964ee90","input_length":486,"output_length":72,"hash_ids":[3724080],"delay":844.0} +{"session_id":"sess-a10c0964ee90","input_length":1115,"output_length":286,"hash_ids":[3724081,3724082,3724083],"delay":510.5} +{"session_id":"sess-a10c0964ee90","input_length":1639,"output_length":94,"hash_ids":[3724084,3724085,3724086,3724087],"delay":46.1} +{"session_id":"sess-a10c0964ee90","input_length":730,"output_length":158,"hash_ids":[3724088,3724089],"delay":349.5} +{"session_id":"sess-99678f1b8bc9","input_length":33041,"output_length":263,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3728032,3728033,3728034,3728035,3728036,3728037,3728038,3728039,3728040,3728041,3728042,3728043,3728044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-99678f1b8bc9","input_length":661,"output_length":243,"hash_ids":[3728045,3728046],"delay":2908.7} +{"session_id":"sess-99678f1b8bc9","input_length":551,"output_length":114,"hash_ids":[3728047,3728048],"delay":5188.6} +{"session_id":"sess-99678f1b8bc9","input_length":1001,"output_length":599,"hash_ids":[3728049,3728050],"delay":1095.7} +{"session_id":"sess-99678f1b8bc9","input_length":1027,"output_length":67,"hash_ids":[3728051,3728052,3728053],"delay":1467.5} +{"session_id":"sess-99678f1b8bc9","input_length":498,"output_length":480,"hash_ids":[3728054],"delay":15376.1} +{"session_id":"sess-99678f1b8bc9","input_length":129,"output_length":320,"hash_ids":[3728055],"delay":1481.1} +{"session_id":"sess-99678f1b8bc9","input_length":112,"output_length":343,"hash_ids":[3728056],"delay":305.3} +{"session_id":"sess-99678f1b8bc9","input_length":1186,"output_length":890,"hash_ids":[3728057,3728058,3728059],"delay":414.4} +{"session_id":"sess-99678f1b8bc9","input_length":1331,"output_length":169,"hash_ids":[3728060,3728061,3728062],"delay":33221.6} +{"session_id":"sess-99678f1b8bc9","input_length":2568,"output_length":95,"hash_ids":[3728063,3728064,3728065,3728066,3728067,3728068],"delay":870.6} +{"session_id":"sess-99678f1b8bc9","input_length":2441,"output_length":758,"hash_ids":[3728069,3728070,3728071,3728072,3728073],"delay":731.4} +{"session_id":"sess-99678f1b8bc9","input_length":220,"output_length":237,"hash_ids":[3728074],"delay":1534.2} +{"session_id":"sess-99678f1b8bc9","input_length":864,"output_length":68,"hash_ids":[3728075,3728076],"delay":398.8} +{"session_id":"sess-99678f1b8bc9","input_length":2126,"output_length":422,"hash_ids":[3728077,3728078,3728079,3728080,3728081],"delay":217.0} +{"session_id":"sess-99678f1b8bc9","input_length":2960,"output_length":157,"hash_ids":[3728082,3728083,3728084,3728085,3728086,3728087],"delay":11661.2} +{"session_id":"sess-99678f1b8bc9","input_length":1612,"output_length":550,"hash_ids":[3728088,3728089,3728090,3728091],"delay":686.1} +{"session_id":"sess-99678f1b8bc9","input_length":1055,"output_length":267,"hash_ids":[3728092,3728093,3728094],"delay":432.2} +{"session_id":"sess-99678f1b8bc9","input_length":1057,"output_length":96,"hash_ids":[3728095,3728096,3728097],"delay":408.6} +{"session_id":"sess-99678f1b8bc9","input_length":165,"output_length":171,"hash_ids":[3728098],"delay":17574.7} +{"session_id":"sess-99678f1b8bc9","input_length":2159,"output_length":163,"hash_ids":[3728099,3728100,3728101,3728102,3728103],"delay":380.8} +{"session_id":"sess-99678f1b8bc9","input_length":1734,"output_length":62,"hash_ids":[3728104,3728105,3728106,3728107],"delay":1036.9} +{"session_id":"sess-99678f1b8bc9","input_length":156,"output_length":30,"hash_ids":[3728108],"delay":821.2} +{"session_id":"sess-2c15af3f1668","input_length":33566,"output_length":806,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,3732032,3732033,3732034,3732035,3732036,3732037,3732038,3732039,3732040,3732041,3732042,3732043,3732044,3732045],"timestamp":0.0,"group_id":3} +{"session_id":"sess-2c15af3f1668","input_length":155,"output_length":481,"hash_ids":[3732046],"delay":471.7} +{"session_id":"sess-2c15af3f1668","input_length":756,"output_length":141,"hash_ids":[3732047,3732048],"delay":1495.5} +{"session_id":"sess-2c15af3f1668","input_length":758,"output_length":214,"hash_ids":[3732049,3732050],"delay":922.0} +{"session_id":"sess-2c15af3f1668","input_length":303,"output_length":378,"hash_ids":[3732051],"delay":26461.1} +{"session_id":"sess-2c15af3f1668","input_length":939,"output_length":168,"hash_ids":[3732052,3732053],"delay":1289.8} +{"session_id":"sess-2c15af3f1668","input_length":1959,"output_length":321,"hash_ids":[3732054,3732055,3732056,3732057],"delay":902.3} +{"session_id":"sess-2c15af3f1668","input_length":724,"output_length":308,"hash_ids":[3732058,3732059],"delay":715.6} +{"session_id":"sess-2c15af3f1668","input_length":410,"output_length":119,"hash_ids":[3732060],"delay":42704.7} +{"session_id":"sess-2c15af3f1668","input_length":327,"output_length":204,"hash_ids":[3732061],"delay":3507.3} +{"session_id":"sess-2c15af3f1668","input_length":1259,"output_length":172,"hash_ids":[3732062,3732063,3732064],"delay":7508.2} +{"session_id":"sess-2c15af3f1668","input_length":2572,"output_length":258,"hash_ids":[3732065,3732066,3732067,3732068,3732069,3732070],"delay":1471.6} +{"session_id":"sess-2c15af3f1668","input_length":567,"output_length":209,"hash_ids":[3732071,3732072],"delay":488.8} +{"session_id":"sess-2c15af3f1668","input_length":630,"output_length":1477,"hash_ids":[3732073,3732074],"delay":15076.0} +{"session_id":"sess-2c15af3f1668","input_length":580,"output_length":228,"hash_ids":[3732075,3732076],"delay":7158.3} +{"session_id":"sess-2c15af3f1668","input_length":279,"output_length":220,"hash_ids":[3732077],"delay":2642.9} +{"session_id":"sess-2c15af3f1668","input_length":328,"output_length":70,"hash_ids":[3732078],"delay":11605.8} +{"session_id":"sess-2c15af3f1668","input_length":528,"output_length":204,"hash_ids":[3732079,3732080],"delay":295.2} +{"session_id":"sess-2c15af3f1668","input_length":986,"output_length":190,"hash_ids":[3732081,3732082],"delay":6668.8} +{"session_id":"sess-2c15af3f1668","input_length":573,"output_length":44,"hash_ids":[3732083,3732084],"delay":272.7} +{"session_id":"sess-2c15af3f1668","input_length":2535,"output_length":1128,"hash_ids":[3732085,3732086,3732087,3732088,3732089],"delay":260.7} +{"session_id":"sess-2c15af3f1668","input_length":410,"output_length":310,"hash_ids":[3732090],"delay":646.3} +{"session_id":"sess-2c15af3f1668","input_length":1166,"output_length":92,"hash_ids":[3732091,3732092,3732093],"delay":414.2} +{"session_id":"sess-2c15af3f1668","input_length":184,"output_length":301,"hash_ids":[3732094],"delay":6027.1} +{"session_id":"sess-2c15af3f1668","input_length":951,"output_length":590,"hash_ids":[3732095,3732096],"delay":392.9} +{"session_id":"sess-2c15af3f1668","input_length":1413,"output_length":262,"hash_ids":[3732097,3732098,3732099],"delay":1206.3} +{"session_id":"sess-2c15af3f1668","input_length":707,"output_length":45,"hash_ids":[3732100,3732101],"delay":1432.7} +{"session_id":"sess-2c15af3f1668","input_length":508,"output_length":486,"hash_ids":[3732102],"delay":823.0} +{"session_id":"sess-f71cdbf5c0b0","input_length":28039,"output_length":43,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,3736032,3736033,3736034],"timestamp":0.0,"group_id":35} +{"session_id":"sess-f71cdbf5c0b0","input_length":449,"output_length":163,"hash_ids":[3736035],"delay":1494.1} +{"session_id":"sess-f71cdbf5c0b0","input_length":1030,"output_length":326,"hash_ids":[3736036,3736037,3736038],"delay":1332.3} +{"session_id":"sess-f71cdbf5c0b0","input_length":1075,"output_length":38,"hash_ids":[3736039,3736040,3736041],"delay":518.1} +{"session_id":"sess-f71cdbf5c0b0","input_length":1754,"output_length":259,"hash_ids":[3736042,3736043,3736044,3736045],"delay":4267.2} +{"session_id":"sess-f71cdbf5c0b0","input_length":1776,"output_length":1081,"hash_ids":[3736046,3736047,3736048,3736049],"delay":567.0} +{"session_id":"sess-f71cdbf5c0b0","input_length":1222,"output_length":199,"hash_ids":[3736050,3736051,3736052],"delay":5530.4} +{"session_id":"sess-f71cdbf5c0b0","input_length":286,"output_length":193,"hash_ids":[3736053],"delay":881.4} +{"session_id":"sess-f71cdbf5c0b0","input_length":2644,"output_length":255,"hash_ids":[3736054,3736055,3736056,3736057,3736058,3736059],"delay":893.3} +{"session_id":"sess-f71cdbf5c0b0","input_length":1053,"output_length":118,"hash_ids":[3736060,3736061,3736062],"delay":391.5} +{"session_id":"sess-f71cdbf5c0b0","input_length":509,"output_length":176,"hash_ids":[3736063],"delay":755.4} +{"session_id":"sess-f71cdbf5c0b0","input_length":502,"output_length":102,"hash_ids":[3736064],"delay":44640.1} +{"session_id":"sess-f71cdbf5c0b0","input_length":2186,"output_length":339,"hash_ids":[3736065,3736066,3736067,3736068,3736069],"delay":1012.8} +{"session_id":"sess-f71cdbf5c0b0","input_length":78,"output_length":45,"hash_ids":[3736070],"delay":814.9} +{"session_id":"sess-f71cdbf5c0b0","input_length":315,"output_length":77,"hash_ids":[3736071],"delay":1950.5} +{"session_id":"sess-f71cdbf5c0b0","input_length":1293,"output_length":74,"hash_ids":[3736072,3736073,3736074],"delay":7429.5} +{"session_id":"sess-f71cdbf5c0b0","input_length":1961,"output_length":824,"hash_ids":[3736075,3736076,3736077,3736078],"delay":4940.8} +{"session_id":"sess-f71cdbf5c0b0","input_length":1600,"output_length":202,"hash_ids":[3736079,3736080,3736081,3736082],"delay":186.7} +{"session_id":"sess-f71cdbf5c0b0","input_length":637,"output_length":91,"hash_ids":[3736083,3736084],"delay":247.9} +{"session_id":"sess-f71cdbf5c0b0","input_length":585,"output_length":70,"hash_ids":[3736085,3736086],"delay":411.8} +{"session_id":"sess-f71cdbf5c0b0","input_length":143,"output_length":466,"hash_ids":[3736087],"delay":464.0} +{"session_id":"sess-f71cdbf5c0b0","input_length":1264,"output_length":353,"hash_ids":[3736088,3736089,3736090],"delay":15228.6} +{"session_id":"sess-f71cdbf5c0b0","input_length":758,"output_length":140,"hash_ids":[3736091,3736092],"delay":2507.7} +{"session_id":"sess-f71cdbf5c0b0","input_length":1111,"output_length":118,"hash_ids":[3736093,3736094,3736095],"delay":4162.6} +{"session_id":"sess-f71cdbf5c0b0","input_length":1091,"output_length":243,"hash_ids":[3736096,3736097,3736098],"delay":756.0} +{"session_id":"sess-f71cdbf5c0b0","input_length":539,"output_length":392,"hash_ids":[3736099,3736100],"delay":635.9} +{"session_id":"sess-f71cdbf5c0b0","input_length":49,"output_length":426,"hash_ids":[3736101],"delay":125.9} +{"session_id":"sess-f71cdbf5c0b0","input_length":1774,"output_length":111,"hash_ids":[3736102,3736103,3736104,3736105],"delay":8757.7} +{"session_id":"sess-f71cdbf5c0b0","input_length":2033,"output_length":218,"hash_ids":[3736106,3736107,3736108,3736109],"delay":9833.6} +{"session_id":"sess-7a8eba7db39c","input_length":26282,"output_length":284,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851],"timestamp":0.0,"group_id":4} +{"session_id":"sess-7a8eba7db39c","input_length":407,"output_length":1276,"hash_ids":[3736110],"delay":1665.0} +{"session_id":"sess-7a8eba7db39c","input_length":470,"output_length":275,"hash_ids":[3736111],"delay":32526.2} +{"session_id":"sess-7a8eba7db39c","input_length":2342,"output_length":57,"hash_ids":[3736112,3736113,3736114,3736115,3736116],"delay":2821.7} +{"session_id":"sess-7a8eba7db39c","input_length":1400,"output_length":94,"hash_ids":[3736117,3736118,3736119],"delay":2582.9} +{"session_id":"sess-7a8eba7db39c","input_length":2871,"output_length":213,"hash_ids":[3736120,3736121,3736122,3736123,3736124,3736125],"delay":586.9} +{"session_id":"sess-7a8eba7db39c","input_length":854,"output_length":192,"hash_ids":[3736126,3736127],"delay":2317.5} +{"session_id":"sess-7a8eba7db39c","input_length":452,"output_length":336,"hash_ids":[3736128],"delay":3284.5} +{"session_id":"sess-7a8eba7db39c","input_length":528,"output_length":565,"hash_ids":[3736129,3736130],"delay":7038.8} +{"session_id":"sess-7a8eba7db39c","input_length":380,"output_length":72,"hash_ids":[3736131],"delay":1484.4} +{"session_id":"sess-7a8eba7db39c","input_length":1144,"output_length":258,"hash_ids":[3736132,3736133,3736134],"delay":14957.2} +{"session_id":"sess-7a8eba7db39c","input_length":503,"output_length":169,"hash_ids":[3736135],"delay":1113.9} +{"session_id":"sess-7a8eba7db39c","input_length":2131,"output_length":71,"hash_ids":[3736136,3736137,3736138,3736139,3736140],"delay":227.6} +{"session_id":"sess-7a8eba7db39c","input_length":1069,"output_length":84,"hash_ids":[3736141,3736142,3736143],"delay":7387.0} +{"session_id":"sess-7a8eba7db39c","input_length":1880,"output_length":258,"hash_ids":[3736144,3736145,3736146,3736147],"delay":877.3} +{"session_id":"sess-7a8eba7db39c","input_length":1114,"output_length":193,"hash_ids":[3736148,3736149,3736150],"delay":3392.5} +{"session_id":"sess-7a8eba7db39c","input_length":1634,"output_length":381,"hash_ids":[3736151,3736152,3736153,3736154],"delay":1673.7} +{"session_id":"sess-7a8eba7db39c","input_length":885,"output_length":348,"hash_ids":[3736155,3736156],"delay":563.8} +{"session_id":"sess-7a8eba7db39c","input_length":759,"output_length":69,"hash_ids":[3736157,3736158],"delay":105.0} +{"session_id":"sess-7a8eba7db39c","input_length":698,"output_length":109,"hash_ids":[3736159,3736160],"delay":1785.8} +{"session_id":"sess-7a8eba7db39c","input_length":244,"output_length":75,"hash_ids":[3736161],"delay":208.8} +{"session_id":"sess-7a8eba7db39c","input_length":109,"output_length":66,"hash_ids":[3736162],"delay":729.1} +{"session_id":"sess-7a8eba7db39c","input_length":1030,"output_length":436,"hash_ids":[3736163,3736164,3736165],"delay":1010.3} +{"session_id":"sess-7a8eba7db39c","input_length":216,"output_length":30,"hash_ids":[3736166],"delay":1335.4} +{"session_id":"sess-7a8eba7db39c","input_length":582,"output_length":221,"hash_ids":[3736167,3736168],"delay":405.2} +{"session_id":"sess-7a8eba7db39c","input_length":434,"output_length":298,"hash_ids":[3736169],"delay":432.9} +{"session_id":"sess-7a8eba7db39c","input_length":182,"output_length":50,"hash_ids":[3736170],"delay":5425.3} +{"session_id":"sess-7a8eba7db39c","input_length":1292,"output_length":100,"hash_ids":[3736171,3736172,3736173],"delay":273.3} +{"session_id":"sess-7a8eba7db39c","input_length":1627,"output_length":173,"hash_ids":[3736174,3736175,3736176,3736177],"delay":213.0} +{"session_id":"sess-7a8eba7db39c","input_length":875,"output_length":259,"hash_ids":[3736178,3736179],"delay":14430.7} +{"session_id":"sess-7a8eba7db39c","input_length":2047,"output_length":338,"hash_ids":[3736180,3736181,3736182,3736183],"delay":394.9} +{"session_id":"sess-7a8eba7db39c","input_length":929,"output_length":208,"hash_ids":[3736184,3736185],"delay":722.0} +{"session_id":"sess-7a8eba7db39c","input_length":400,"output_length":243,"hash_ids":[3736186],"delay":213.8} +{"session_id":"sess-a5563fea92f9","input_length":27324,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,3744032,3744033],"timestamp":0.0,"group_id":25} +{"session_id":"sess-a5563fea92f9","input_length":1610,"output_length":497,"hash_ids":[3744034,3744035,3744036,3744037],"delay":2760.1} +{"session_id":"sess-a5563fea92f9","input_length":1321,"output_length":63,"hash_ids":[3744038,3744039,3744040],"delay":1791.4} +{"session_id":"sess-a5563fea92f9","input_length":739,"output_length":499,"hash_ids":[3744041,3744042],"delay":1988.6} +{"session_id":"sess-a5563fea92f9","input_length":1460,"output_length":241,"hash_ids":[3744043,3744044,3744045],"delay":25841.5} +{"session_id":"sess-a5563fea92f9","input_length":1072,"output_length":168,"hash_ids":[3744046,3744047,3744048],"delay":3160.0} +{"session_id":"sess-a5563fea92f9","input_length":1104,"output_length":252,"hash_ids":[3744049,3744050,3744051],"delay":2831.9} +{"session_id":"sess-a5563fea92f9","input_length":269,"output_length":379,"hash_ids":[3744052],"delay":2578.2} +{"session_id":"sess-a5563fea92f9","input_length":1582,"output_length":264,"hash_ids":[3744053,3744054,3744055,3744056],"delay":4293.9} +{"session_id":"sess-a5563fea92f9","input_length":1278,"output_length":64,"hash_ids":[3744057,3744058,3744059],"delay":740.7} +{"session_id":"sess-a5563fea92f9","input_length":1553,"output_length":129,"hash_ids":[3744060,3744061,3744062,3744063],"delay":3104.5} +{"session_id":"sess-a5563fea92f9","input_length":322,"output_length":124,"hash_ids":[3744064],"delay":2191.5} +{"session_id":"sess-a5563fea92f9","input_length":326,"output_length":100,"hash_ids":[3744065],"delay":537.8} +{"session_id":"sess-a5563fea92f9","input_length":375,"output_length":128,"hash_ids":[3744066],"delay":752.4} +{"session_id":"sess-a5563fea92f9","input_length":307,"output_length":377,"hash_ids":[3744067],"delay":1376.9} +{"session_id":"sess-a5563fea92f9","input_length":535,"output_length":155,"hash_ids":[3744068,3744069],"delay":399.5} +{"session_id":"sess-a5563fea92f9","input_length":1845,"output_length":874,"hash_ids":[3744070,3744071,3744072,3744073],"delay":966.2} +{"session_id":"sess-a5563fea92f9","input_length":846,"output_length":600,"hash_ids":[3744074,3744075],"delay":3679.3} +{"session_id":"sess-a5563fea92f9","input_length":432,"output_length":216,"hash_ids":[3744076],"delay":1407.5} +{"session_id":"sess-a5563fea92f9","input_length":2301,"output_length":107,"hash_ids":[3744077,3744078,3744079,3744080,3744081],"delay":11959.1} +{"session_id":"sess-a5563fea92f9","input_length":1044,"output_length":114,"hash_ids":[3744082,3744083,3744084],"delay":3632.5} +{"session_id":"sess-a5563fea92f9","input_length":1611,"output_length":469,"hash_ids":[3744085,3744086,3744087,3744088],"delay":29430.3} +{"session_id":"sess-a5563fea92f9","input_length":848,"output_length":403,"hash_ids":[3744089,3744090],"delay":5298.4} +{"session_id":"sess-a5563fea92f9","input_length":791,"output_length":460,"hash_ids":[3744091,3744092],"delay":176.8} +{"session_id":"sess-a5563fea92f9","input_length":2735,"output_length":50,"hash_ids":[3744093,3744094,3744095,3744096,3744097,3744098],"delay":10626.1} +{"session_id":"sess-a5563fea92f9","input_length":1881,"output_length":385,"hash_ids":[3744099,3744100,3744101,3744102],"delay":124.2} +{"session_id":"sess-a5563fea92f9","input_length":1843,"output_length":1411,"hash_ids":[3744103,3744104,3744105,3744106],"delay":922.4} +{"session_id":"sess-0fbf4aa80ef3","input_length":32534,"output_length":76,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,3748032,3748033,3748034,3748035,3748036,3748037,3748038,3748039,3748040,3748041,3748042,3748043],"timestamp":0.0,"group_id":13} +{"session_id":"sess-a9c2a8e25964","input_length":27314,"output_length":337,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3752032,3752033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-a9c2a8e25964","input_length":812,"output_length":161,"hash_ids":[3752034,3752035],"delay":5406.1} +{"session_id":"sess-a9c2a8e25964","input_length":1507,"output_length":194,"hash_ids":[3752036,3752037,3752038],"delay":7366.3} +{"session_id":"sess-a9c2a8e25964","input_length":567,"output_length":126,"hash_ids":[3752039,3752040],"delay":2312.0} +{"session_id":"sess-a9c2a8e25964","input_length":304,"output_length":333,"hash_ids":[3752041],"delay":1319.4} +{"session_id":"sess-a9c2a8e25964","input_length":1170,"output_length":225,"hash_ids":[3752042,3752043,3752044],"delay":15553.6} +{"session_id":"sess-a9c2a8e25964","input_length":840,"output_length":741,"hash_ids":[3752045,3752046],"delay":33790.7} +{"session_id":"sess-a9c2a8e25964","input_length":1055,"output_length":362,"hash_ids":[3752047,3752048,3752049],"delay":465.6} +{"session_id":"sess-a9c2a8e25964","input_length":485,"output_length":336,"hash_ids":[3752050],"delay":18907.8} +{"session_id":"sess-a9c2a8e25964","input_length":710,"output_length":543,"hash_ids":[3752051,3752052],"delay":3018.4} +{"session_id":"sess-a9c2a8e25964","input_length":870,"output_length":233,"hash_ids":[3752053,3752054],"delay":16254.0} +{"session_id":"sess-a9c2a8e25964","input_length":1878,"output_length":61,"hash_ids":[3752055,3752056,3752057,3752058],"delay":367.3} +{"session_id":"sess-a9c2a8e25964","input_length":391,"output_length":104,"hash_ids":[3752059],"delay":4800.1} +{"session_id":"sess-a9c2a8e25964","input_length":928,"output_length":160,"hash_ids":[3752060,3752061],"delay":988.4} +{"session_id":"sess-a9c2a8e25964","input_length":671,"output_length":319,"hash_ids":[3752062,3752063],"delay":1401.6} +{"session_id":"sess-a9c2a8e25964","input_length":597,"output_length":176,"hash_ids":[3752064,3752065],"delay":318.5} +{"session_id":"sess-a9c2a8e25964","input_length":2366,"output_length":32,"hash_ids":[3752066,3752067,3752068,3752069,3752070],"delay":2633.7} +{"session_id":"sess-a9c2a8e25964","input_length":507,"output_length":326,"hash_ids":[3752071],"delay":25586.3} +{"session_id":"sess-bccfb556ee43","input_length":27027,"output_length":1197,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,3756032],"timestamp":0.0,"group_id":27} +{"session_id":"sess-bccfb556ee43","input_length":271,"output_length":158,"hash_ids":[3756033],"delay":574.0} +{"session_id":"sess-bccfb556ee43","input_length":411,"output_length":408,"hash_ids":[3756034],"delay":794.1} +{"session_id":"sess-bccfb556ee43","input_length":2935,"output_length":460,"hash_ids":[3756035,3756036,3756037,3756038,3756039,3756040],"delay":453.4} +{"session_id":"sess-bccfb556ee43","input_length":263,"output_length":142,"hash_ids":[3756041],"delay":16582.6} +{"session_id":"sess-bccfb556ee43","input_length":1207,"output_length":269,"hash_ids":[3756042,3756043,3756044],"delay":741.5} +{"session_id":"sess-6bfe75b6a467","input_length":29353,"output_length":50,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3760032,3760033,3760034,3760035,3760036,3760037],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6bfe75b6a467","input_length":862,"output_length":133,"hash_ids":[3760038,3760039],"delay":47870.7} +{"session_id":"sess-6bfe75b6a467","input_length":2768,"output_length":79,"hash_ids":[3760040,3760041,3760042,3760043,3760044,3760045],"delay":734.3} +{"session_id":"sess-6bfe75b6a467","input_length":1072,"output_length":177,"hash_ids":[3760046,3760047,3760048],"delay":1002.7} +{"session_id":"sess-6bfe75b6a467","input_length":512,"output_length":227,"hash_ids":[3760049],"delay":23970.3} +{"session_id":"sess-6bfe75b6a467","input_length":362,"output_length":300,"hash_ids":[3760050],"delay":347.0} +{"session_id":"sess-6bfe75b6a467","input_length":2404,"output_length":1387,"hash_ids":[3760051,3760052,3760053,3760054,3760055],"delay":355.9} +{"session_id":"sess-352e4ddb9b8f","input_length":26165,"output_length":137,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-352e4ddb9b8f","input_length":1972,"output_length":50,"hash_ids":[3760056,3760057,3760058,3760059],"delay":1390.0} +{"session_id":"sess-352e4ddb9b8f","input_length":2006,"output_length":212,"hash_ids":[3760060,3760061,3760062,3760063],"delay":26205.3} +{"session_id":"sess-352e4ddb9b8f","input_length":568,"output_length":218,"hash_ids":[3760064,3760065],"delay":2172.8} +{"session_id":"sess-352e4ddb9b8f","input_length":799,"output_length":287,"hash_ids":[3760066,3760067],"delay":196.5} +{"session_id":"sess-352e4ddb9b8f","input_length":2232,"output_length":271,"hash_ids":[3760068,3760069,3760070,3760071,3760072],"delay":1814.5} +{"session_id":"sess-352e4ddb9b8f","input_length":510,"output_length":109,"hash_ids":[3760073],"delay":1443.6} +{"session_id":"sess-352e4ddb9b8f","input_length":366,"output_length":309,"hash_ids":[3760074],"delay":34764.6} +{"session_id":"sess-352e4ddb9b8f","input_length":179,"output_length":55,"hash_ids":[3760075],"delay":1158.9} +{"session_id":"sess-352e4ddb9b8f","input_length":890,"output_length":132,"hash_ids":[3760076,3760077],"delay":384.2} +{"session_id":"sess-352e4ddb9b8f","input_length":2801,"output_length":243,"hash_ids":[3760078,3760079,3760080,3760081,3760082,3760083],"delay":1805.8} +{"session_id":"sess-352e4ddb9b8f","input_length":641,"output_length":282,"hash_ids":[3760084,3760085],"delay":6187.1} +{"session_id":"sess-352e4ddb9b8f","input_length":1603,"output_length":413,"hash_ids":[3760086,3760087,3760088,3760089],"delay":581.7} +{"session_id":"sess-352e4ddb9b8f","input_length":1091,"output_length":111,"hash_ids":[3760090,3760091,3760092],"delay":7570.4} +{"session_id":"sess-352e4ddb9b8f","input_length":1389,"output_length":130,"hash_ids":[3760093,3760094,3760095],"delay":823.2} +{"session_id":"sess-352e4ddb9b8f","input_length":250,"output_length":131,"hash_ids":[3760096],"delay":1684.0} +{"session_id":"sess-352e4ddb9b8f","input_length":411,"output_length":473,"hash_ids":[3760097],"delay":2547.1} +{"session_id":"sess-352e4ddb9b8f","input_length":1407,"output_length":64,"hash_ids":[3760098,3760099,3760100],"delay":978.5} +{"session_id":"sess-352e4ddb9b8f","input_length":1884,"output_length":343,"hash_ids":[3760101,3760102,3760103,3760104],"delay":7037.0} +{"session_id":"sess-352e4ddb9b8f","input_length":1423,"output_length":126,"hash_ids":[3760105,3760106,3760107],"delay":571.1} +{"session_id":"sess-352e4ddb9b8f","input_length":2037,"output_length":412,"hash_ids":[3760108,3760109,3760110,3760111],"delay":373.0} +{"session_id":"sess-352e4ddb9b8f","input_length":432,"output_length":1134,"hash_ids":[3760112],"delay":250.1} +{"session_id":"sess-352e4ddb9b8f","input_length":879,"output_length":134,"hash_ids":[3760113,3760114],"delay":373.0} +{"session_id":"sess-352e4ddb9b8f","input_length":325,"output_length":604,"hash_ids":[3760115],"delay":576.8} +{"session_id":"sess-352e4ddb9b8f","input_length":244,"output_length":188,"hash_ids":[3760116],"delay":474.1} +{"session_id":"sess-352e4ddb9b8f","input_length":425,"output_length":329,"hash_ids":[3760117],"delay":897.4} +{"session_id":"sess-25029f2c0242","input_length":29372,"output_length":334,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3768032,3768033,3768034,3768035,3768036,3768037],"timestamp":0.0,"group_id":15} +{"session_id":"sess-25029f2c0242","input_length":1827,"output_length":254,"hash_ids":[3768038,3768039,3768040,3768041],"delay":885.7} +{"session_id":"sess-25029f2c0242","input_length":1473,"output_length":89,"hash_ids":[3768042,3768043,3768044],"delay":5767.1} +{"session_id":"sess-25029f2c0242","input_length":609,"output_length":166,"hash_ids":[3768045,3768046],"delay":1755.7} +{"session_id":"sess-25029f2c0242","input_length":680,"output_length":309,"hash_ids":[3768047,3768048],"delay":539.5} +{"session_id":"sess-25029f2c0242","input_length":1154,"output_length":1401,"hash_ids":[3768049,3768050,3768051],"delay":15231.4} +{"session_id":"sess-25029f2c0242","input_length":1132,"output_length":212,"hash_ids":[3768052,3768053,3768054],"delay":647.8} +{"session_id":"sess-25029f2c0242","input_length":464,"output_length":215,"hash_ids":[3768055],"delay":6281.1} +{"session_id":"sess-25029f2c0242","input_length":1359,"output_length":60,"hash_ids":[3768056,3768057,3768058],"delay":2440.8} +{"session_id":"sess-25029f2c0242","input_length":159,"output_length":386,"hash_ids":[3768059],"delay":1356.1} +{"session_id":"sess-25029f2c0242","input_length":2948,"output_length":302,"hash_ids":[3768060,3768061,3768062,3768063,3768064,3768065],"delay":12309.0} +{"session_id":"sess-18f1707b8d18","input_length":30435,"output_length":100,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3772032,3772033,3772034,3772035,3772036,3772037,3772038,3772039],"timestamp":0.0,"group_id":6} +{"session_id":"sess-18f1707b8d18","input_length":116,"output_length":242,"hash_ids":[3772040],"delay":5437.2} +{"session_id":"sess-18f1707b8d18","input_length":962,"output_length":1108,"hash_ids":[3772041,3772042],"delay":505.3} +{"session_id":"sess-18f1707b8d18","input_length":968,"output_length":82,"hash_ids":[3772043,3772044],"delay":1618.6} +{"session_id":"sess-18f1707b8d18","input_length":1123,"output_length":158,"hash_ids":[3772045,3772046,3772047],"delay":8294.8} +{"session_id":"sess-18f1707b8d18","input_length":989,"output_length":206,"hash_ids":[3772048,3772049],"delay":703.1} +{"session_id":"sess-18f1707b8d18","input_length":618,"output_length":282,"hash_ids":[3772050,3772051],"delay":2568.4} +{"session_id":"sess-18f1707b8d18","input_length":1519,"output_length":283,"hash_ids":[3772052,3772053,3772054],"delay":23745.3} +{"session_id":"sess-18f1707b8d18","input_length":201,"output_length":130,"hash_ids":[3772055],"delay":1238.0} +{"session_id":"sess-18f1707b8d18","input_length":568,"output_length":141,"hash_ids":[3772056,3772057],"delay":180.2} +{"session_id":"sess-e295f59c6490","input_length":26357,"output_length":480,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651],"timestamp":0.0,"group_id":8} +{"session_id":"sess-e295f59c6490","input_length":2095,"output_length":52,"hash_ids":[3772058,3772059,3772060,3772061,3772062],"delay":616.0} +{"session_id":"sess-e295f59c6490","input_length":1051,"output_length":134,"hash_ids":[3772063,3772064,3772065],"delay":5349.8} +{"session_id":"sess-e295f59c6490","input_length":1626,"output_length":274,"hash_ids":[3772066,3772067,3772068,3772069],"delay":454.6} +{"session_id":"sess-e295f59c6490","input_length":1393,"output_length":188,"hash_ids":[3772070,3772071,3772072],"delay":208.3} +{"session_id":"sess-e295f59c6490","input_length":1015,"output_length":141,"hash_ids":[3772073,3772074],"delay":1503.4} +{"session_id":"sess-e295f59c6490","input_length":464,"output_length":324,"hash_ids":[3772075],"delay":3457.5} +{"session_id":"sess-e295f59c6490","input_length":808,"output_length":155,"hash_ids":[3772076,3772077],"delay":296.9} +{"session_id":"sess-e295f59c6490","input_length":699,"output_length":79,"hash_ids":[3772078,3772079],"delay":595.2} +{"session_id":"sess-e295f59c6490","input_length":2253,"output_length":1120,"hash_ids":[3772080,3772081,3772082,3772083,3772084],"delay":1924.0} +{"session_id":"sess-e295f59c6490","input_length":246,"output_length":455,"hash_ids":[3772085],"delay":1488.7} +{"session_id":"sess-e295f59c6490","input_length":416,"output_length":126,"hash_ids":[3772086],"delay":1522.1} +{"session_id":"sess-e295f59c6490","input_length":242,"output_length":56,"hash_ids":[3772087],"delay":24468.9} +{"session_id":"sess-e295f59c6490","input_length":2286,"output_length":200,"hash_ids":[3772088,3772089,3772090,3772091,3772092],"delay":705.6} +{"session_id":"sess-e295f59c6490","input_length":358,"output_length":59,"hash_ids":[3772093],"delay":695.2} +{"session_id":"sess-e295f59c6490","input_length":96,"output_length":418,"hash_ids":[3772094],"delay":976.2} +{"session_id":"sess-e295f59c6490","input_length":813,"output_length":143,"hash_ids":[3772095,3772096],"delay":834.6} +{"session_id":"sess-e295f59c6490","input_length":1747,"output_length":144,"hash_ids":[3772097,3772098,3772099,3772100],"delay":1680.0} +{"session_id":"sess-e295f59c6490","input_length":571,"output_length":509,"hash_ids":[3772101,3772102],"delay":8323.8} +{"session_id":"sess-e295f59c6490","input_length":1191,"output_length":187,"hash_ids":[3772103,3772104,3772105],"delay":536.6} +{"session_id":"sess-e295f59c6490","input_length":787,"output_length":152,"hash_ids":[3772106,3772107],"delay":646.8} +{"session_id":"sess-e295f59c6490","input_length":1112,"output_length":337,"hash_ids":[3772108,3772109,3772110],"delay":321.1} +{"session_id":"sess-e295f59c6490","input_length":488,"output_length":116,"hash_ids":[3772111],"delay":576.0} +{"session_id":"sess-e295f59c6490","input_length":580,"output_length":60,"hash_ids":[3772112,3772113],"delay":16934.1} +{"session_id":"sess-e295f59c6490","input_length":171,"output_length":600,"hash_ids":[3772114],"delay":605.0} +{"session_id":"sess-e295f59c6490","input_length":592,"output_length":886,"hash_ids":[3772115,3772116],"delay":234.7} +{"session_id":"sess-e295f59c6490","input_length":438,"output_length":360,"hash_ids":[3772117],"delay":113.3} +{"session_id":"sess-e295f59c6490","input_length":616,"output_length":427,"hash_ids":[3772118,3772119],"delay":6269.3} +{"session_id":"sess-e295f59c6490","input_length":251,"output_length":837,"hash_ids":[3772120],"delay":500.5} +{"session_id":"sess-e295f59c6490","input_length":1387,"output_length":98,"hash_ids":[3772121,3772122,3772123],"delay":165.9} +{"session_id":"sess-e295f59c6490","input_length":965,"output_length":65,"hash_ids":[3772124,3772125],"delay":411.9} +{"session_id":"sess-e295f59c6490","input_length":94,"output_length":147,"hash_ids":[3772126],"delay":1220.9} +{"session_id":"sess-e295f59c6490","input_length":713,"output_length":130,"hash_ids":[3772127,3772128],"delay":141.8} +{"session_id":"sess-e295f59c6490","input_length":1963,"output_length":111,"hash_ids":[3772129,3772130,3772131,3772132],"delay":7707.2} +{"session_id":"sess-40eccdd2fd59","input_length":27383,"output_length":311,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3780032,3780033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-40eccdd2fd59","input_length":300,"output_length":233,"hash_ids":[3780034],"delay":37128.1} +{"session_id":"sess-4da3f19decc4","input_length":29834,"output_length":96,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3784032,3784033,3784034,3784035,3784036,3784037,3784038],"timestamp":0.0,"group_id":6} +{"session_id":"sess-4da3f19decc4","input_length":291,"output_length":567,"hash_ids":[3784039],"delay":2928.3} +{"session_id":"sess-4da3f19decc4","input_length":1398,"output_length":53,"hash_ids":[3784040,3784041,3784042],"delay":851.9} +{"session_id":"sess-4da3f19decc4","input_length":2506,"output_length":83,"hash_ids":[3784043,3784044,3784045,3784046,3784047],"delay":564.5} +{"session_id":"sess-4da3f19decc4","input_length":1626,"output_length":591,"hash_ids":[3784048,3784049,3784050,3784051],"delay":536.5} +{"session_id":"sess-4da3f19decc4","input_length":167,"output_length":109,"hash_ids":[3784052],"delay":220.2} +{"session_id":"sess-4da3f19decc4","input_length":698,"output_length":52,"hash_ids":[3784053,3784054],"delay":3249.1} +{"session_id":"sess-4da3f19decc4","input_length":1927,"output_length":148,"hash_ids":[3784055,3784056,3784057,3784058],"delay":2478.0} +{"session_id":"sess-4da3f19decc4","input_length":2890,"output_length":90,"hash_ids":[3784059,3784060,3784061,3784062,3784063,3784064],"delay":1199.7} +{"session_id":"sess-4da3f19decc4","input_length":110,"output_length":283,"hash_ids":[3784065],"delay":6556.8} +{"session_id":"sess-4da3f19decc4","input_length":2523,"output_length":179,"hash_ids":[3784066,3784067,3784068,3784069,3784070],"delay":4156.1} +{"session_id":"sess-4da3f19decc4","input_length":369,"output_length":147,"hash_ids":[3784071],"delay":758.2} +{"session_id":"sess-4da3f19decc4","input_length":1309,"output_length":323,"hash_ids":[3784072,3784073,3784074],"delay":33057.8} +{"session_id":"sess-4da3f19decc4","input_length":2024,"output_length":343,"hash_ids":[3784075,3784076,3784077,3784078],"delay":861.9} +{"session_id":"sess-4da3f19decc4","input_length":1851,"output_length":410,"hash_ids":[3784079,3784080,3784081,3784082],"delay":526.8} +{"session_id":"sess-4da3f19decc4","input_length":326,"output_length":34,"hash_ids":[3784083],"delay":738.2} +{"session_id":"sess-4da3f19decc4","input_length":936,"output_length":377,"hash_ids":[3784084,3784085],"delay":1662.5} +{"session_id":"sess-4da3f19decc4","input_length":508,"output_length":71,"hash_ids":[3784086],"delay":17677.3} +{"session_id":"sess-6495f20e8c07","input_length":27007,"output_length":149,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3788032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6495f20e8c07","input_length":198,"output_length":146,"hash_ids":[3788033],"delay":538.5} +{"session_id":"sess-6495f20e8c07","input_length":851,"output_length":183,"hash_ids":[3788034,3788035],"delay":5997.5} +{"session_id":"sess-6495f20e8c07","input_length":773,"output_length":190,"hash_ids":[3788036,3788037],"delay":2229.4} +{"session_id":"sess-6495f20e8c07","input_length":33,"output_length":171,"hash_ids":[3788038],"delay":2325.6} +{"session_id":"sess-6495f20e8c07","input_length":450,"output_length":751,"hash_ids":[3788039],"delay":3347.5} +{"session_id":"sess-6495f20e8c07","input_length":415,"output_length":234,"hash_ids":[3788040],"delay":1086.5} +{"session_id":"sess-6495f20e8c07","input_length":831,"output_length":694,"hash_ids":[3788041,3788042],"delay":1766.2} +{"session_id":"sess-6495f20e8c07","input_length":727,"output_length":181,"hash_ids":[3788043,3788044],"delay":2114.9} +{"session_id":"sess-6495f20e8c07","input_length":747,"output_length":30,"hash_ids":[3788045,3788046],"delay":789.8} +{"session_id":"sess-6495f20e8c07","input_length":851,"output_length":91,"hash_ids":[3788047,3788048],"delay":3659.4} +{"session_id":"sess-6495f20e8c07","input_length":94,"output_length":487,"hash_ids":[3788049],"delay":1408.5} +{"session_id":"sess-6495f20e8c07","input_length":305,"output_length":30,"hash_ids":[3788050],"delay":7799.3} +{"session_id":"sess-6495f20e8c07","input_length":145,"output_length":369,"hash_ids":[3788051],"delay":7749.7} +{"session_id":"sess-6495f20e8c07","input_length":197,"output_length":59,"hash_ids":[3788052],"delay":567.3} +{"session_id":"sess-6495f20e8c07","input_length":913,"output_length":193,"hash_ids":[3788053,3788054],"delay":651.1} +{"session_id":"sess-6495f20e8c07","input_length":642,"output_length":271,"hash_ids":[3788055,3788056],"delay":1002.5} +{"session_id":"sess-6495f20e8c07","input_length":448,"output_length":277,"hash_ids":[3788057],"delay":1988.0} +{"session_id":"sess-6495f20e8c07","input_length":252,"output_length":217,"hash_ids":[3788058],"delay":997.5} +{"session_id":"sess-6495f20e8c07","input_length":814,"output_length":112,"hash_ids":[3788059,3788060],"delay":4251.2} +{"session_id":"sess-6495f20e8c07","input_length":1142,"output_length":86,"hash_ids":[3788061,3788062,3788063],"delay":648.1} +{"session_id":"sess-6495f20e8c07","input_length":249,"output_length":315,"hash_ids":[3788064],"delay":1905.5} +{"session_id":"sess-6495f20e8c07","input_length":1812,"output_length":551,"hash_ids":[3788065,3788066,3788067,3788068],"delay":443.7} +{"session_id":"sess-6495f20e8c07","input_length":1066,"output_length":273,"hash_ids":[3788069,3788070,3788071],"delay":297.2} +{"session_id":"sess-6495f20e8c07","input_length":1778,"output_length":87,"hash_ids":[3788072,3788073,3788074,3788075],"delay":33068.0} +{"session_id":"sess-6495f20e8c07","input_length":658,"output_length":77,"hash_ids":[3788076,3788077],"delay":454.9} +{"session_id":"sess-6495f20e8c07","input_length":126,"output_length":639,"hash_ids":[3788078],"delay":2847.2} +{"session_id":"sess-6495f20e8c07","input_length":1827,"output_length":104,"hash_ids":[3788079,3788080,3788081,3788082],"delay":640.2} +{"session_id":"sess-6495f20e8c07","input_length":222,"output_length":146,"hash_ids":[3788083],"delay":215.8} +{"session_id":"sess-6495f20e8c07","input_length":832,"output_length":68,"hash_ids":[3788084,3788085],"delay":538.0} +{"session_id":"sess-6495f20e8c07","input_length":121,"output_length":38,"hash_ids":[3788086],"delay":2964.7} +{"session_id":"sess-6495f20e8c07","input_length":2089,"output_length":162,"hash_ids":[3788087,3788088,3788089,3788090,3788091],"delay":901.3} +{"session_id":"sess-6495f20e8c07","input_length":2179,"output_length":209,"hash_ids":[3788092,3788093,3788094,3788095,3788096],"delay":36064.8} +{"session_id":"sess-6495f20e8c07","input_length":816,"output_length":151,"hash_ids":[3788097,3788098],"delay":295.6} +{"session_id":"sess-6495f20e8c07","input_length":287,"output_length":358,"hash_ids":[3788099],"delay":224.4} +{"session_id":"sess-6495f20e8c07","input_length":749,"output_length":351,"hash_ids":[3788100,3788101],"delay":817.9} +{"session_id":"sess-6495f20e8c07","input_length":1005,"output_length":368,"hash_ids":[3788102,3788103],"delay":294.7} +{"session_id":"sess-6495f20e8c07","input_length":989,"output_length":165,"hash_ids":[3788104,3788105],"delay":181.5} +{"session_id":"sess-6495f20e8c07","input_length":289,"output_length":159,"hash_ids":[3788106],"delay":499.6} +{"session_id":"sess-9b5e5d716c79","input_length":26661,"output_length":137,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,3792032],"timestamp":0.0,"group_id":10} +{"session_id":"sess-9b5e5d716c79","input_length":308,"output_length":133,"hash_ids":[3792033],"delay":914.2} +{"session_id":"sess-9b5e5d716c79","input_length":1905,"output_length":168,"hash_ids":[3792034,3792035,3792036,3792037],"delay":17321.6} +{"session_id":"sess-9b5e5d716c79","input_length":1020,"output_length":125,"hash_ids":[3792038,3792039],"delay":893.1} +{"session_id":"sess-9b5e5d716c79","input_length":979,"output_length":111,"hash_ids":[3792040,3792041],"delay":311.5} +{"session_id":"sess-9b5e5d716c79","input_length":2185,"output_length":53,"hash_ids":[3792042,3792043,3792044,3792045,3792046],"delay":883.3} +{"session_id":"sess-9b5e5d716c79","input_length":71,"output_length":138,"hash_ids":[3792047],"delay":3191.9} +{"session_id":"sess-9b5e5d716c79","input_length":360,"output_length":60,"hash_ids":[3792048],"delay":662.3} +{"session_id":"sess-9b5e5d716c79","input_length":1357,"output_length":409,"hash_ids":[3792049,3792050,3792051],"delay":1970.8} +{"session_id":"sess-9b5e5d716c79","input_length":593,"output_length":442,"hash_ids":[3792052,3792053],"delay":557.0} +{"session_id":"sess-9b5e5d716c79","input_length":1293,"output_length":77,"hash_ids":[3792054,3792055,3792056],"delay":452.1} +{"session_id":"sess-9b5e5d716c79","input_length":953,"output_length":1018,"hash_ids":[3792057,3792058],"delay":1013.8} +{"session_id":"sess-9b5e5d716c79","input_length":2378,"output_length":66,"hash_ids":[3792059,3792060,3792061,3792062,3792063],"delay":31914.5} +{"session_id":"sess-9b5e5d716c79","input_length":729,"output_length":628,"hash_ids":[3792064,3792065],"delay":404.4} +{"session_id":"sess-9b5e5d716c79","input_length":2995,"output_length":54,"hash_ids":[3792066,3792067,3792068,3792069,3792070,3792071],"delay":303.4} +{"session_id":"sess-9b5e5d716c79","input_length":528,"output_length":130,"hash_ids":[3792072,3792073],"delay":1598.2} +{"session_id":"sess-9b5e5d716c79","input_length":699,"output_length":296,"hash_ids":[3792074,3792075],"delay":2977.7} +{"session_id":"sess-9b5e5d716c79","input_length":1299,"output_length":418,"hash_ids":[3792076,3792077,3792078],"delay":789.3} +{"session_id":"sess-9b5e5d716c79","input_length":1724,"output_length":354,"hash_ids":[3792079,3792080,3792081,3792082],"delay":538.2} +{"session_id":"sess-9b5e5d716c79","input_length":379,"output_length":276,"hash_ids":[3792083],"delay":1327.5} +{"session_id":"sess-9b5e5d716c79","input_length":2939,"output_length":231,"hash_ids":[3792084,3792085,3792086,3792087,3792088,3792089],"delay":2721.9} +{"session_id":"sess-9b5e5d716c79","input_length":1340,"output_length":452,"hash_ids":[3792090,3792091,3792092],"delay":129.5} +{"session_id":"sess-9b5e5d716c79","input_length":391,"output_length":790,"hash_ids":[3792093],"delay":6811.9} +{"session_id":"sess-9b5e5d716c79","input_length":851,"output_length":221,"hash_ids":[3792094,3792095],"delay":3129.5} +{"session_id":"sess-9b5e5d716c79","input_length":176,"output_length":213,"hash_ids":[3792096],"delay":7373.5} +{"session_id":"sess-9b5e5d716c79","input_length":435,"output_length":81,"hash_ids":[3792097],"delay":569.7} +{"session_id":"sess-9b5e5d716c79","input_length":411,"output_length":87,"hash_ids":[3792098],"delay":158.9} +{"session_id":"sess-9b5e5d716c79","input_length":1063,"output_length":94,"hash_ids":[3792099,3792100,3792101],"delay":5771.9} +{"session_id":"sess-9b5e5d716c79","input_length":1365,"output_length":65,"hash_ids":[3792102,3792103,3792104],"delay":477.8} +{"session_id":"sess-9b5e5d716c79","input_length":600,"output_length":898,"hash_ids":[3792105,3792106],"delay":2395.7} +{"session_id":"sess-86c72e4ac1eb","input_length":31313,"output_length":335,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3796032,3796033,3796034,3796035,3796036,3796037,3796038,3796039,3796040,3796041],"timestamp":0.0,"group_id":2} +{"session_id":"sess-86c72e4ac1eb","input_length":193,"output_length":168,"hash_ids":[3796042],"delay":1441.9} +{"session_id":"sess-86c72e4ac1eb","input_length":736,"output_length":180,"hash_ids":[3796043,3796044],"delay":3677.2} +{"session_id":"sess-86c72e4ac1eb","input_length":753,"output_length":90,"hash_ids":[3796045,3796046],"delay":2495.7} +{"session_id":"sess-86c72e4ac1eb","input_length":1202,"output_length":110,"hash_ids":[3796047,3796048,3796049],"delay":232.6} +{"session_id":"sess-86c72e4ac1eb","input_length":1168,"output_length":567,"hash_ids":[3796050,3796051,3796052],"delay":8234.4} +{"session_id":"sess-86c72e4ac1eb","input_length":606,"output_length":375,"hash_ids":[3796053,3796054],"delay":316.1} +{"session_id":"sess-86c72e4ac1eb","input_length":864,"output_length":168,"hash_ids":[3796055,3796056],"delay":782.2} +{"session_id":"sess-86c72e4ac1eb","input_length":874,"output_length":359,"hash_ids":[3796057,3796058],"delay":29824.7} +{"session_id":"sess-86c72e4ac1eb","input_length":140,"output_length":287,"hash_ids":[3796059],"delay":783.3} +{"session_id":"sess-86c72e4ac1eb","input_length":855,"output_length":217,"hash_ids":[3796060,3796061],"delay":1735.9} +{"session_id":"sess-86c72e4ac1eb","input_length":2616,"output_length":205,"hash_ids":[3796062,3796063,3796064,3796065,3796066,3796067],"delay":1217.2} +{"session_id":"sess-86c72e4ac1eb","input_length":256,"output_length":123,"hash_ids":[3796068],"delay":570.2} +{"session_id":"sess-86c72e4ac1eb","input_length":956,"output_length":204,"hash_ids":[3796069,3796070],"delay":2937.2} +{"session_id":"sess-86c72e4ac1eb","input_length":397,"output_length":300,"hash_ids":[3796071],"delay":3506.9} +{"session_id":"sess-86c72e4ac1eb","input_length":358,"output_length":848,"hash_ids":[3796072],"delay":5433.4} +{"session_id":"sess-86c72e4ac1eb","input_length":168,"output_length":365,"hash_ids":[3796073],"delay":586.9} +{"session_id":"sess-86c72e4ac1eb","input_length":654,"output_length":731,"hash_ids":[3796074,3796075],"delay":607.2} +{"session_id":"sess-86c72e4ac1eb","input_length":951,"output_length":160,"hash_ids":[3796076,3796077],"delay":390.9} +{"session_id":"sess-86c72e4ac1eb","input_length":438,"output_length":525,"hash_ids":[3796078],"delay":2300.6} +{"session_id":"sess-86c72e4ac1eb","input_length":872,"output_length":350,"hash_ids":[3796079,3796080],"delay":304.8} +{"session_id":"sess-86c72e4ac1eb","input_length":494,"output_length":150,"hash_ids":[3796081],"delay":105.5} +{"session_id":"sess-86c72e4ac1eb","input_length":426,"output_length":207,"hash_ids":[3796082],"delay":11248.5} +{"session_id":"sess-86c72e4ac1eb","input_length":749,"output_length":110,"hash_ids":[3796083,3796084],"delay":1005.8} +{"session_id":"sess-86c72e4ac1eb","input_length":316,"output_length":247,"hash_ids":[3796085],"delay":265.5} +{"session_id":"sess-86c72e4ac1eb","input_length":1093,"output_length":93,"hash_ids":[3796086,3796087,3796088],"delay":80.6} +{"session_id":"sess-86c72e4ac1eb","input_length":1149,"output_length":517,"hash_ids":[3796089,3796090,3796091],"delay":7221.5} +{"session_id":"sess-86c72e4ac1eb","input_length":958,"output_length":485,"hash_ids":[3796092,3796093],"delay":1012.4} +{"session_id":"sess-86c72e4ac1eb","input_length":1047,"output_length":76,"hash_ids":[3796094,3796095,3796096],"delay":275.7} +{"session_id":"sess-86c72e4ac1eb","input_length":1639,"output_length":1079,"hash_ids":[3796097,3796098,3796099,3796100],"delay":5100.0} +{"session_id":"sess-86c72e4ac1eb","input_length":641,"output_length":137,"hash_ids":[3796101,3796102],"delay":419.2} +{"session_id":"sess-03fd9add29cf","input_length":30770,"output_length":142,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3800032,3800033,3800034,3800035,3800036,3800037,3800038,3800039,3800040],"timestamp":0.0,"group_id":0} +{"session_id":"sess-03fd9add29cf","input_length":231,"output_length":113,"hash_ids":[3800041],"delay":1009.6} +{"session_id":"sess-03fd9add29cf","input_length":433,"output_length":487,"hash_ids":[3800042],"delay":251.8} +{"session_id":"sess-03fd9add29cf","input_length":559,"output_length":303,"hash_ids":[3800043,3800044],"delay":36438.0} +{"session_id":"sess-03fd9add29cf","input_length":354,"output_length":846,"hash_ids":[3800045],"delay":8402.2} +{"session_id":"sess-03fd9add29cf","input_length":1045,"output_length":97,"hash_ids":[3800046,3800047,3800048],"delay":2405.9} +{"session_id":"sess-03fd9add29cf","input_length":82,"output_length":187,"hash_ids":[3800049],"delay":395.9} +{"session_id":"sess-03fd9add29cf","input_length":1492,"output_length":735,"hash_ids":[3800050,3800051,3800052],"delay":536.7} +{"session_id":"sess-03fd9add29cf","input_length":933,"output_length":786,"hash_ids":[3800053,3800054],"delay":333.4} +{"session_id":"sess-03fd9add29cf","input_length":1006,"output_length":437,"hash_ids":[3800055,3800056],"delay":1036.9} +{"session_id":"sess-03fd9add29cf","input_length":866,"output_length":558,"hash_ids":[3800057,3800058],"delay":418.3} +{"session_id":"sess-03fd9add29cf","input_length":1659,"output_length":114,"hash_ids":[3800059,3800060,3800061,3800062],"delay":1793.0} +{"session_id":"sess-03fd9add29cf","input_length":2048,"output_length":258,"hash_ids":[3800063,3800064,3800065,3800066],"delay":2130.8} +{"session_id":"sess-03fd9add29cf","input_length":1617,"output_length":453,"hash_ids":[3800067,3800068,3800069,3800070],"delay":1357.8} +{"session_id":"sess-03fd9add29cf","input_length":176,"output_length":44,"hash_ids":[3800071],"delay":448.9} +{"session_id":"sess-03fd9add29cf","input_length":1035,"output_length":162,"hash_ids":[3800072,3800073,3800074],"delay":22472.3} +{"session_id":"sess-03fd9add29cf","input_length":2036,"output_length":416,"hash_ids":[3800075,3800076,3800077,3800078],"delay":3321.4} +{"session_id":"sess-03fd9add29cf","input_length":869,"output_length":747,"hash_ids":[3800079,3800080],"delay":1195.7} +{"session_id":"sess-03fd9add29cf","input_length":438,"output_length":569,"hash_ids":[3800081],"delay":402.4} +{"session_id":"sess-03fd9add29cf","input_length":333,"output_length":140,"hash_ids":[3800082],"delay":537.6} +{"session_id":"sess-03fd9add29cf","input_length":199,"output_length":132,"hash_ids":[3800083],"delay":15655.1} +{"session_id":"sess-03fd9add29cf","input_length":560,"output_length":434,"hash_ids":[3800084,3800085],"delay":16603.1} +{"session_id":"sess-03fd9add29cf","input_length":296,"output_length":247,"hash_ids":[3800086],"delay":387.6} +{"session_id":"sess-03fd9add29cf","input_length":1201,"output_length":68,"hash_ids":[3800087,3800088,3800089],"delay":2346.0} +{"session_id":"sess-03fd9add29cf","input_length":1521,"output_length":221,"hash_ids":[3800090,3800091,3800092],"delay":3779.0} +{"session_id":"sess-03fd9add29cf","input_length":788,"output_length":416,"hash_ids":[3800093,3800094],"delay":235.4} +{"session_id":"sess-03fd9add29cf","input_length":238,"output_length":53,"hash_ids":[3800095],"delay":12245.5} +{"session_id":"sess-03fd9add29cf","input_length":1026,"output_length":95,"hash_ids":[3800096,3800097,3800098],"delay":921.4} +{"session_id":"sess-03fd9add29cf","input_length":773,"output_length":55,"hash_ids":[3800099,3800100],"delay":78.0} +{"session_id":"sess-03fd9add29cf","input_length":387,"output_length":278,"hash_ids":[3800101],"delay":11095.6} +{"session_id":"sess-68afb6566362","input_length":27420,"output_length":1127,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3804032,3804033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-68afb6566362","input_length":187,"output_length":304,"hash_ids":[3804034],"delay":2760.2} +{"session_id":"sess-68afb6566362","input_length":2807,"output_length":87,"hash_ids":[3804035,3804036,3804037,3804038,3804039,3804040],"delay":505.0} +{"session_id":"sess-68afb6566362","input_length":1347,"output_length":54,"hash_ids":[3804041,3804042,3804043],"delay":1617.8} +{"session_id":"sess-68afb6566362","input_length":149,"output_length":341,"hash_ids":[3804044],"delay":10149.3} +{"session_id":"sess-68afb6566362","input_length":940,"output_length":209,"hash_ids":[3804045,3804046],"delay":5048.7} +{"session_id":"sess-68afb6566362","input_length":805,"output_length":58,"hash_ids":[3804047,3804048],"delay":25172.8} +{"session_id":"sess-68afb6566362","input_length":101,"output_length":261,"hash_ids":[3804049],"delay":1295.9} +{"session_id":"sess-68afb6566362","input_length":2222,"output_length":495,"hash_ids":[3804050,3804051,3804052,3804053,3804054],"delay":9135.9} +{"session_id":"sess-68afb6566362","input_length":1734,"output_length":91,"hash_ids":[3804055,3804056,3804057,3804058],"delay":38352.7} +{"session_id":"sess-68afb6566362","input_length":667,"output_length":390,"hash_ids":[3804059,3804060],"delay":1124.2} +{"session_id":"sess-68afb6566362","input_length":330,"output_length":302,"hash_ids":[3804061],"delay":384.8} +{"session_id":"sess-68afb6566362","input_length":1134,"output_length":135,"hash_ids":[3804062,3804063,3804064],"delay":1287.5} +{"session_id":"sess-68afb6566362","input_length":611,"output_length":504,"hash_ids":[3804065,3804066],"delay":697.4} +{"session_id":"sess-68afb6566362","input_length":656,"output_length":151,"hash_ids":[3804067,3804068],"delay":870.7} +{"session_id":"sess-ea2406c26011","input_length":26533,"output_length":654,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451],"timestamp":0.0,"group_id":22} +{"session_id":"sess-ea2406c26011","input_length":1414,"output_length":112,"hash_ids":[3804069,3804070,3804071],"delay":4816.9} +{"session_id":"sess-ea2406c26011","input_length":1431,"output_length":590,"hash_ids":[3804072,3804073,3804074],"delay":7600.6} +{"session_id":"sess-ea2406c26011","input_length":385,"output_length":177,"hash_ids":[3804075],"delay":15998.9} +{"session_id":"sess-ea2406c26011","input_length":574,"output_length":228,"hash_ids":[3804076,3804077],"delay":1649.7} +{"session_id":"sess-ea2406c26011","input_length":168,"output_length":226,"hash_ids":[3804078],"delay":1599.0} +{"session_id":"sess-ea2406c26011","input_length":1370,"output_length":86,"hash_ids":[3804079,3804080,3804081],"delay":976.6} +{"session_id":"sess-ea2406c26011","input_length":753,"output_length":353,"hash_ids":[3804082,3804083],"delay":2882.2} +{"session_id":"sess-ea2406c26011","input_length":2944,"output_length":106,"hash_ids":[3804084,3804085,3804086,3804087,3804088,3804089],"delay":1922.8} +{"session_id":"sess-ea2406c26011","input_length":1078,"output_length":281,"hash_ids":[3804090,3804091,3804092],"delay":1084.7} +{"session_id":"sess-ea2406c26011","input_length":1079,"output_length":165,"hash_ids":[3804093,3804094,3804095],"delay":299.6} +{"session_id":"sess-ea2406c26011","input_length":1169,"output_length":784,"hash_ids":[3804096,3804097,3804098],"delay":5937.3} +{"session_id":"sess-ea2406c26011","input_length":1061,"output_length":196,"hash_ids":[3804099,3804100,3804101],"delay":190.2} +{"session_id":"sess-ea2406c26011","input_length":1260,"output_length":663,"hash_ids":[3804102,3804103,3804104],"delay":1618.3} +{"session_id":"sess-ea2406c26011","input_length":2831,"output_length":231,"hash_ids":[3804105,3804106,3804107,3804108,3804109,3804110],"delay":2985.3} +{"session_id":"sess-ea2406c26011","input_length":272,"output_length":595,"hash_ids":[3804111],"delay":734.2} +{"session_id":"sess-ea2406c26011","input_length":708,"output_length":136,"hash_ids":[3804112,3804113],"delay":487.7} +{"session_id":"sess-ea2406c26011","input_length":2124,"output_length":345,"hash_ids":[3804114,3804115,3804116,3804117,3804118],"delay":294.8} +{"session_id":"sess-ea2406c26011","input_length":1099,"output_length":431,"hash_ids":[3804119,3804120,3804121],"delay":764.6} +{"session_id":"sess-ea2406c26011","input_length":1653,"output_length":703,"hash_ids":[3804122,3804123,3804124,3804125],"delay":1399.2} +{"session_id":"sess-ea2406c26011","input_length":1645,"output_length":238,"hash_ids":[3804126,3804127,3804128,3804129],"delay":432.2} +{"session_id":"sess-ea2406c26011","input_length":1215,"output_length":152,"hash_ids":[3804130,3804131,3804132],"delay":646.7} +{"session_id":"sess-ea2406c26011","input_length":1192,"output_length":538,"hash_ids":[3804133,3804134,3804135],"delay":783.4} +{"session_id":"sess-ea2406c26011","input_length":1095,"output_length":682,"hash_ids":[3804136,3804137,3804138],"delay":2364.9} +{"session_id":"sess-0a0037139eae","input_length":28646,"output_length":225,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3812032,3812033,3812034,3812035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-0a0037139eae","input_length":911,"output_length":157,"hash_ids":[3812036,3812037],"delay":1814.5} +{"session_id":"sess-0a0037139eae","input_length":2931,"output_length":200,"hash_ids":[3812038,3812039,3812040,3812041,3812042,3812043],"delay":330.6} +{"session_id":"sess-0a0037139eae","input_length":1269,"output_length":250,"hash_ids":[3812044,3812045,3812046],"delay":50797.7} +{"session_id":"sess-0a0037139eae","input_length":238,"output_length":92,"hash_ids":[3812047],"delay":1456.5} +{"session_id":"sess-0a0037139eae","input_length":995,"output_length":71,"hash_ids":[3812048,3812049],"delay":1613.7} +{"session_id":"sess-0a0037139eae","input_length":894,"output_length":234,"hash_ids":[3812050,3812051],"delay":696.1} +{"session_id":"sess-0a0037139eae","input_length":146,"output_length":317,"hash_ids":[3812052],"delay":18287.1} +{"session_id":"sess-0a0037139eae","input_length":1140,"output_length":1105,"hash_ids":[3812053,3812054,3812055],"delay":48913.4} +{"session_id":"sess-0a0037139eae","input_length":147,"output_length":30,"hash_ids":[3812056],"delay":1252.0} +{"session_id":"sess-0a0037139eae","input_length":1583,"output_length":173,"hash_ids":[3812057,3812058,3812059,3812060],"delay":2738.3} +{"session_id":"sess-0a0037139eae","input_length":1050,"output_length":99,"hash_ids":[3812061,3812062,3812063],"delay":267.2} +{"session_id":"sess-0a0037139eae","input_length":664,"output_length":214,"hash_ids":[3812064,3812065],"delay":876.8} +{"session_id":"sess-0a0037139eae","input_length":653,"output_length":421,"hash_ids":[3812066,3812067],"delay":4684.7} +{"session_id":"sess-0a0037139eae","input_length":1524,"output_length":147,"hash_ids":[3812068,3812069,3812070],"delay":1844.7} +{"session_id":"sess-0a0037139eae","input_length":815,"output_length":358,"hash_ids":[3812071,3812072],"delay":562.2} +{"session_id":"sess-0a0037139eae","input_length":375,"output_length":1343,"hash_ids":[3812073],"delay":1239.0} +{"session_id":"sess-0a0037139eae","input_length":1535,"output_length":81,"hash_ids":[3812074,3812075,3812076],"delay":14827.9} +{"session_id":"sess-0a0037139eae","input_length":584,"output_length":45,"hash_ids":[3812077,3812078],"delay":5915.0} +{"session_id":"sess-0a0037139eae","input_length":742,"output_length":542,"hash_ids":[3812079,3812080],"delay":1644.9} +{"session_id":"sess-0a0037139eae","input_length":750,"output_length":218,"hash_ids":[3812081,3812082],"delay":545.9} +{"session_id":"sess-0a0037139eae","input_length":2859,"output_length":394,"hash_ids":[3812083,3812084,3812085,3812086,3812087,3812088],"delay":3605.0} +{"session_id":"sess-428a4a6eac61","input_length":29356,"output_length":448,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3816032,3816033,3816034,3816035,3816036,3816037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-428a4a6eac61","input_length":2339,"output_length":185,"hash_ids":[3816038,3816039,3816040,3816041,3816042],"delay":800.6} +{"session_id":"sess-428a4a6eac61","input_length":1526,"output_length":112,"hash_ids":[3816043,3816044,3816045],"delay":826.8} +{"session_id":"sess-428a4a6eac61","input_length":794,"output_length":146,"hash_ids":[3816046,3816047],"delay":1079.4} +{"session_id":"sess-428a4a6eac61","input_length":186,"output_length":147,"hash_ids":[3816048],"delay":866.5} +{"session_id":"sess-428a4a6eac61","input_length":272,"output_length":492,"hash_ids":[3816049],"delay":2193.8} +{"session_id":"sess-428a4a6eac61","input_length":523,"output_length":136,"hash_ids":[3816050,3816051],"delay":317.7} +{"session_id":"sess-428a4a6eac61","input_length":1368,"output_length":40,"hash_ids":[3816052,3816053,3816054],"delay":31621.1} +{"session_id":"sess-428a4a6eac61","input_length":371,"output_length":44,"hash_ids":[3816055],"delay":1842.5} +{"session_id":"sess-428a4a6eac61","input_length":1605,"output_length":186,"hash_ids":[3816056,3816057,3816058,3816059],"delay":5144.4} +{"session_id":"sess-f2454341656d","input_length":27974,"output_length":58,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3820032,3820033,3820034],"timestamp":0.0,"group_id":17} +{"session_id":"sess-f2454341656d","input_length":2800,"output_length":588,"hash_ids":[3820035,3820036,3820037,3820038,3820039,3820040],"delay":14245.7} +{"session_id":"sess-f2454341656d","input_length":1093,"output_length":85,"hash_ids":[3820041,3820042,3820043],"delay":2954.2} +{"session_id":"sess-f2454341656d","input_length":1919,"output_length":635,"hash_ids":[3820044,3820045,3820046,3820047],"delay":1216.5} +{"session_id":"sess-f2454341656d","input_length":1179,"output_length":495,"hash_ids":[3820048,3820049,3820050],"delay":2524.8} +{"session_id":"sess-f2454341656d","input_length":1352,"output_length":137,"hash_ids":[3820051,3820052,3820053],"delay":1304.1} +{"session_id":"sess-f2454341656d","input_length":752,"output_length":289,"hash_ids":[3820054,3820055],"delay":948.2} +{"session_id":"sess-f2454341656d","input_length":2310,"output_length":94,"hash_ids":[3820056,3820057,3820058,3820059,3820060],"delay":7596.3} +{"session_id":"sess-f2454341656d","input_length":278,"output_length":547,"hash_ids":[3820061],"delay":146.0} +{"session_id":"sess-f2454341656d","input_length":1330,"output_length":65,"hash_ids":[3820062,3820063,3820064],"delay":865.5} +{"session_id":"sess-f2454341656d","input_length":1136,"output_length":450,"hash_ids":[3820065,3820066,3820067],"delay":2468.3} +{"session_id":"sess-f2454341656d","input_length":770,"output_length":42,"hash_ids":[3820068,3820069],"delay":11813.3} +{"session_id":"sess-f2454341656d","input_length":855,"output_length":145,"hash_ids":[3820070,3820071],"delay":1790.9} +{"session_id":"sess-f2454341656d","input_length":341,"output_length":130,"hash_ids":[3820072],"delay":9927.2} +{"session_id":"sess-f2454341656d","input_length":318,"output_length":476,"hash_ids":[3820073],"delay":21940.6} +{"session_id":"sess-f2454341656d","input_length":187,"output_length":30,"hash_ids":[3820074],"delay":509.7} +{"session_id":"sess-f2454341656d","input_length":1111,"output_length":158,"hash_ids":[3820075,3820076,3820077],"delay":17042.3} +{"session_id":"sess-f2454341656d","input_length":2994,"output_length":56,"hash_ids":[3820078,3820079,3820080,3820081,3820082,3820083],"delay":741.8} +{"session_id":"sess-f2454341656d","input_length":395,"output_length":160,"hash_ids":[3820084],"delay":531.2} +{"session_id":"sess-f2454341656d","input_length":1132,"output_length":188,"hash_ids":[3820085,3820086,3820087],"delay":587.3} +{"session_id":"sess-f2454341656d","input_length":548,"output_length":555,"hash_ids":[3820088,3820089],"delay":543.1} +{"session_id":"sess-f2454341656d","input_length":308,"output_length":1136,"hash_ids":[3820090],"delay":1885.6} +{"session_id":"sess-f2454341656d","input_length":947,"output_length":116,"hash_ids":[3820091,3820092],"delay":422.0} +{"session_id":"sess-f2454341656d","input_length":1293,"output_length":282,"hash_ids":[3820093,3820094,3820095],"delay":6445.0} +{"session_id":"sess-f2454341656d","input_length":2301,"output_length":302,"hash_ids":[3820096,3820097,3820098,3820099,3820100],"delay":271.9} +{"session_id":"sess-f2454341656d","input_length":515,"output_length":411,"hash_ids":[3820101,3820102],"delay":142.7} +{"session_id":"sess-f2454341656d","input_length":478,"output_length":988,"hash_ids":[3820103],"delay":234.6} +{"session_id":"sess-c518344f2b9a","input_length":26598,"output_length":152,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c518344f2b9a","input_length":2295,"output_length":317,"hash_ids":[3820104,3820105,3820106,3820107,3820108],"delay":5483.1} +{"session_id":"sess-c518344f2b9a","input_length":1263,"output_length":128,"hash_ids":[3820109,3820110,3820111],"delay":22101.3} +{"session_id":"sess-bfb4d1d80f50","input_length":29116,"output_length":372,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3828032,3828033,3828034,3828035,3828036],"timestamp":0.0,"group_id":5} +{"session_id":"sess-bfb4d1d80f50","input_length":327,"output_length":503,"hash_ids":[3828037],"delay":3033.5} +{"session_id":"sess-bfb4d1d80f50","input_length":188,"output_length":56,"hash_ids":[3828038],"delay":2270.2} +{"session_id":"sess-8e5abd2fbbf4","input_length":26965,"output_length":237,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,3832032],"timestamp":0.0,"group_id":45} +{"session_id":"sess-8e5abd2fbbf4","input_length":1807,"output_length":155,"hash_ids":[3832033,3832034,3832035,3832036],"delay":1040.0} +{"session_id":"sess-8e5abd2fbbf4","input_length":354,"output_length":159,"hash_ids":[3832037],"delay":393.2} +{"session_id":"sess-8e5abd2fbbf4","input_length":686,"output_length":30,"hash_ids":[3832038,3832039],"delay":1172.9} +{"session_id":"sess-8e5abd2fbbf4","input_length":491,"output_length":270,"hash_ids":[3832040],"delay":11327.4} +{"session_id":"sess-8e5abd2fbbf4","input_length":2484,"output_length":80,"hash_ids":[3832041,3832042,3832043,3832044,3832045],"delay":6879.8} +{"session_id":"sess-8e5abd2fbbf4","input_length":968,"output_length":275,"hash_ids":[3832046,3832047],"delay":594.0} +{"session_id":"sess-8e5abd2fbbf4","input_length":2654,"output_length":49,"hash_ids":[3832048,3832049,3832050,3832051,3832052,3832053],"delay":702.7} +{"session_id":"sess-8e5abd2fbbf4","input_length":385,"output_length":394,"hash_ids":[3832054],"delay":12884.7} +{"session_id":"sess-8e5abd2fbbf4","input_length":610,"output_length":83,"hash_ids":[3832055,3832056],"delay":311.6} +{"session_id":"sess-8e5abd2fbbf4","input_length":1366,"output_length":147,"hash_ids":[3832057,3832058,3832059],"delay":688.6} +{"session_id":"sess-8e5abd2fbbf4","input_length":341,"output_length":236,"hash_ids":[3832060],"delay":26300.9} +{"session_id":"sess-0943d4f81f97","input_length":26847,"output_length":495,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,3836032],"timestamp":0.0,"group_id":43} +{"session_id":"sess-0943d4f81f97","input_length":383,"output_length":303,"hash_ids":[3836033],"delay":500.4} +{"session_id":"sess-0943d4f81f97","input_length":746,"output_length":76,"hash_ids":[3836034,3836035],"delay":3254.8} +{"session_id":"sess-0943d4f81f97","input_length":2156,"output_length":96,"hash_ids":[3836036,3836037,3836038,3836039,3836040],"delay":30109.8} +{"session_id":"sess-0943d4f81f97","input_length":2158,"output_length":173,"hash_ids":[3836041,3836042,3836043,3836044,3836045],"delay":416.1} +{"session_id":"sess-0943d4f81f97","input_length":478,"output_length":104,"hash_ids":[3836046],"delay":543.1} +{"session_id":"sess-0943d4f81f97","input_length":1346,"output_length":367,"hash_ids":[3836047,3836048,3836049],"delay":831.0} +{"session_id":"sess-0943d4f81f97","input_length":624,"output_length":86,"hash_ids":[3836050,3836051],"delay":320.6} +{"session_id":"sess-0943d4f81f97","input_length":1198,"output_length":211,"hash_ids":[3836052,3836053,3836054],"delay":827.3} +{"session_id":"sess-0943d4f81f97","input_length":95,"output_length":91,"hash_ids":[3836055],"delay":10812.8} +{"session_id":"sess-0943d4f81f97","input_length":1114,"output_length":93,"hash_ids":[3836056,3836057,3836058],"delay":130.1} +{"session_id":"sess-0943d4f81f97","input_length":1616,"output_length":479,"hash_ids":[3836059,3836060,3836061,3836062],"delay":1706.3} +{"session_id":"sess-0943d4f81f97","input_length":828,"output_length":69,"hash_ids":[3836063,3836064],"delay":23062.6} +{"session_id":"sess-0943d4f81f97","input_length":1470,"output_length":420,"hash_ids":[3836065,3836066,3836067],"delay":810.4} +{"session_id":"sess-0943d4f81f97","input_length":279,"output_length":572,"hash_ids":[3836068],"delay":28817.3} +{"session_id":"sess-0943d4f81f97","input_length":437,"output_length":465,"hash_ids":[3836069],"delay":17355.1} +{"session_id":"sess-0943d4f81f97","input_length":1851,"output_length":368,"hash_ids":[3836070,3836071,3836072,3836073],"delay":1095.8} +{"session_id":"sess-4cea4f2b0e0a","input_length":26768,"output_length":355,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3840032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-4cea4f2b0e0a","input_length":125,"output_length":158,"hash_ids":[3840033],"delay":2901.7} +{"session_id":"sess-4cea4f2b0e0a","input_length":1085,"output_length":150,"hash_ids":[3840034,3840035,3840036],"delay":570.1} +{"session_id":"sess-6d8c1914fefc","input_length":26742,"output_length":218,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3844032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-6d8c1914fefc","input_length":2406,"output_length":72,"hash_ids":[3844033,3844034,3844035,3844036,3844037],"delay":1154.2} +{"session_id":"sess-6d8c1914fefc","input_length":2160,"output_length":236,"hash_ids":[3844038,3844039,3844040,3844041,3844042],"delay":1736.5} +{"session_id":"sess-6d8c1914fefc","input_length":987,"output_length":49,"hash_ids":[3844043,3844044],"delay":2070.9} +{"session_id":"sess-6d8c1914fefc","input_length":270,"output_length":370,"hash_ids":[3844045],"delay":579.1} +{"session_id":"sess-4ef63f17ea59","input_length":26420,"output_length":276,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-4ef63f17ea59","input_length":1216,"output_length":199,"hash_ids":[3844046,3844047,3844048],"delay":1412.5} +{"session_id":"sess-4ef63f17ea59","input_length":2034,"output_length":195,"hash_ids":[3844049,3844050,3844051,3844052],"delay":3581.7} +{"session_id":"sess-4ef63f17ea59","input_length":1843,"output_length":294,"hash_ids":[3844053,3844054,3844055,3844056],"delay":1654.8} +{"session_id":"sess-4ef63f17ea59","input_length":1367,"output_length":31,"hash_ids":[3844057,3844058,3844059],"delay":7021.9} +{"session_id":"sess-4ef63f17ea59","input_length":415,"output_length":220,"hash_ids":[3844060],"delay":17794.4} +{"session_id":"sess-4ef63f17ea59","input_length":1271,"output_length":190,"hash_ids":[3844061,3844062,3844063],"delay":12397.5} +{"session_id":"sess-4ef63f17ea59","input_length":570,"output_length":155,"hash_ids":[3844064,3844065],"delay":1079.3} +{"session_id":"sess-4ef63f17ea59","input_length":747,"output_length":42,"hash_ids":[3844066,3844067],"delay":200.7} +{"session_id":"sess-4ef63f17ea59","input_length":1481,"output_length":292,"hash_ids":[3844068,3844069,3844070],"delay":2849.9} +{"session_id":"sess-4ef63f17ea59","input_length":564,"output_length":87,"hash_ids":[3844071,3844072],"delay":226.4} +{"session_id":"sess-4ef63f17ea59","input_length":796,"output_length":126,"hash_ids":[3844073,3844074],"delay":20357.0} +{"session_id":"sess-4ef63f17ea59","input_length":2208,"output_length":59,"hash_ids":[3844075,3844076,3844077,3844078,3844079],"delay":13572.2} +{"session_id":"sess-4ef63f17ea59","input_length":1525,"output_length":441,"hash_ids":[3844080,3844081,3844082],"delay":305.7} +{"session_id":"sess-4ef63f17ea59","input_length":2035,"output_length":111,"hash_ids":[3844083,3844084,3844085,3844086],"delay":1464.1} +{"session_id":"sess-4ef63f17ea59","input_length":2792,"output_length":264,"hash_ids":[3844087,3844088,3844089,3844090,3844091,3844092],"delay":1183.0} +{"session_id":"sess-4ef63f17ea59","input_length":1394,"output_length":30,"hash_ids":[3844093,3844094,3844095],"delay":2139.6} +{"session_id":"sess-4ef63f17ea59","input_length":395,"output_length":754,"hash_ids":[3844096],"delay":766.4} +{"session_id":"sess-db817dc86ec4","input_length":28128,"output_length":379,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3852032,3852033,3852034],"timestamp":0.0,"group_id":6} +{"session_id":"sess-db817dc86ec4","input_length":446,"output_length":177,"hash_ids":[3852035],"delay":572.0} +{"session_id":"sess-db817dc86ec4","input_length":631,"output_length":103,"hash_ids":[3852036,3852037],"delay":461.1} +{"session_id":"sess-db817dc86ec4","input_length":1407,"output_length":94,"hash_ids":[3852038,3852039,3852040],"delay":399.7} +{"session_id":"sess-db817dc86ec4","input_length":431,"output_length":327,"hash_ids":[3852041],"delay":3033.8} +{"session_id":"sess-8eb518779914","input_length":26471,"output_length":232,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-8eb518779914","input_length":414,"output_length":74,"hash_ids":[3852042],"delay":9293.7} +{"session_id":"sess-8eb518779914","input_length":726,"output_length":69,"hash_ids":[3852043,3852044],"delay":1713.2} +{"session_id":"sess-8eb518779914","input_length":1241,"output_length":567,"hash_ids":[3852045,3852046,3852047],"delay":7709.8} +{"session_id":"sess-8eb518779914","input_length":1164,"output_length":221,"hash_ids":[3852048,3852049,3852050],"delay":9017.2} +{"session_id":"sess-8eb518779914","input_length":960,"output_length":150,"hash_ids":[3852051,3852052],"delay":1308.7} +{"session_id":"sess-8eb518779914","input_length":741,"output_length":1305,"hash_ids":[3852053,3852054],"delay":1803.2} +{"session_id":"sess-8eb518779914","input_length":1657,"output_length":57,"hash_ids":[3852055,3852056,3852057,3852058],"delay":6811.5} +{"session_id":"sess-8eb518779914","input_length":898,"output_length":75,"hash_ids":[3852059,3852060],"delay":260.2} +{"session_id":"sess-8eb518779914","input_length":220,"output_length":105,"hash_ids":[3852061],"delay":538.0} +{"session_id":"sess-8eb518779914","input_length":568,"output_length":270,"hash_ids":[3852062,3852063],"delay":332.3} +{"session_id":"sess-8eb518779914","input_length":762,"output_length":297,"hash_ids":[3852064,3852065],"delay":367.2} +{"session_id":"sess-8eb518779914","input_length":912,"output_length":102,"hash_ids":[3852066,3852067],"delay":1696.3} +{"session_id":"sess-8eb518779914","input_length":773,"output_length":132,"hash_ids":[3852068,3852069],"delay":1207.3} +{"session_id":"sess-8eb518779914","input_length":572,"output_length":236,"hash_ids":[3852070,3852071],"delay":544.5} +{"session_id":"sess-8eb518779914","input_length":1372,"output_length":382,"hash_ids":[3852072,3852073,3852074],"delay":1739.3} +{"session_id":"sess-8eb518779914","input_length":907,"output_length":72,"hash_ids":[3852075,3852076],"delay":352.5} +{"session_id":"sess-8eb518779914","input_length":2056,"output_length":166,"hash_ids":[3852077,3852078,3852079,3852080,3852081],"delay":580.6} +{"session_id":"sess-8eb518779914","input_length":204,"output_length":173,"hash_ids":[3852082],"delay":3708.0} +{"session_id":"sess-8eb518779914","input_length":1014,"output_length":464,"hash_ids":[3852083,3852084],"delay":24490.6} +{"session_id":"sess-8eb518779914","input_length":324,"output_length":122,"hash_ids":[3852085],"delay":350.8} +{"session_id":"sess-8eb518779914","input_length":1267,"output_length":426,"hash_ids":[3852086,3852087,3852088],"delay":884.7} +{"session_id":"sess-8eb518779914","input_length":631,"output_length":38,"hash_ids":[3852089,3852090],"delay":22346.6} +{"session_id":"sess-8eb518779914","input_length":1893,"output_length":113,"hash_ids":[3852091,3852092,3852093,3852094],"delay":582.8} +{"session_id":"sess-8eb518779914","input_length":488,"output_length":177,"hash_ids":[3852095],"delay":1311.3} +{"session_id":"sess-8eb518779914","input_length":356,"output_length":333,"hash_ids":[3852096],"delay":544.1} +{"session_id":"sess-8eb518779914","input_length":2215,"output_length":71,"hash_ids":[3852097,3852098,3852099,3852100,3852101],"delay":4844.1} +{"session_id":"sess-ec1a1d23a689","input_length":26199,"output_length":632,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ec1a1d23a689","input_length":1418,"output_length":84,"hash_ids":[3852102,3852103,3852104],"delay":1145.5} +{"session_id":"sess-ec1a1d23a689","input_length":1613,"output_length":363,"hash_ids":[3852105,3852106,3852107,3852108],"delay":2093.3} +{"session_id":"sess-ec1a1d23a689","input_length":114,"output_length":156,"hash_ids":[3852109],"delay":21020.4} +{"session_id":"sess-ec1a1d23a689","input_length":1876,"output_length":284,"hash_ids":[3852110,3852111,3852112,3852113],"delay":764.8} +{"session_id":"sess-ec1a1d23a689","input_length":593,"output_length":79,"hash_ids":[3852114,3852115],"delay":322.3} +{"session_id":"sess-ec1a1d23a689","input_length":597,"output_length":136,"hash_ids":[3852116,3852117],"delay":237.3} +{"session_id":"sess-ec1a1d23a689","input_length":2008,"output_length":325,"hash_ids":[3852118,3852119,3852120,3852121],"delay":832.6} +{"session_id":"sess-ec1a1d23a689","input_length":1934,"output_length":257,"hash_ids":[3852122,3852123,3852124,3852125],"delay":631.4} +{"session_id":"sess-ec1a1d23a689","input_length":909,"output_length":70,"hash_ids":[3852126,3852127],"delay":974.9} +{"session_id":"sess-ec1a1d23a689","input_length":520,"output_length":30,"hash_ids":[3852128,3852129],"delay":366.7} +{"session_id":"sess-ec1a1d23a689","input_length":1070,"output_length":762,"hash_ids":[3852130,3852131,3852132],"delay":15031.6} +{"session_id":"sess-ec1a1d23a689","input_length":893,"output_length":192,"hash_ids":[3852133,3852134],"delay":987.5} +{"session_id":"sess-ec1a1d23a689","input_length":216,"output_length":537,"hash_ids":[3852135],"delay":1281.0} +{"session_id":"sess-ec1a1d23a689","input_length":910,"output_length":300,"hash_ids":[3852136,3852137],"delay":4253.9} +{"session_id":"sess-ec1a1d23a689","input_length":412,"output_length":569,"hash_ids":[3852138],"delay":1177.7} +{"session_id":"sess-ec1a1d23a689","input_length":473,"output_length":156,"hash_ids":[3852139],"delay":5422.6} +{"session_id":"sess-ec1a1d23a689","input_length":1949,"output_length":1186,"hash_ids":[3852140,3852141,3852142,3852143],"delay":536.5} +{"session_id":"sess-ec1a1d23a689","input_length":2758,"output_length":359,"hash_ids":[3852144,3852145,3852146,3852147,3852148,3852149],"delay":617.7} +{"session_id":"sess-d0a184e10f9c","input_length":36132,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3864032,3864033,3864034,3864035,3864036,3864037,3864038,3864039,3864040,3864041,3864042,3864043,3864044,3864045,3864046,3864047,3864048,3864049,3864050],"timestamp":0.0,"group_id":8} +{"session_id":"sess-d0a184e10f9c","input_length":1076,"output_length":226,"hash_ids":[3864051,3864052,3864053],"delay":21138.0} +{"session_id":"sess-d0a184e10f9c","input_length":792,"output_length":41,"hash_ids":[3864054,3864055],"delay":310.0} +{"session_id":"sess-d0a184e10f9c","input_length":379,"output_length":230,"hash_ids":[3864056],"delay":6615.2} +{"session_id":"sess-d0a184e10f9c","input_length":270,"output_length":505,"hash_ids":[3864057],"delay":2705.1} +{"session_id":"sess-d0a184e10f9c","input_length":1449,"output_length":296,"hash_ids":[3864058,3864059,3864060],"delay":1608.6} +{"session_id":"sess-d0a184e10f9c","input_length":271,"output_length":106,"hash_ids":[3864061],"delay":1066.7} +{"session_id":"sess-d0a184e10f9c","input_length":481,"output_length":109,"hash_ids":[3864062],"delay":374.8} +{"session_id":"sess-d0a184e10f9c","input_length":405,"output_length":369,"hash_ids":[3864063],"delay":734.9} +{"session_id":"sess-d0a184e10f9c","input_length":766,"output_length":113,"hash_ids":[3864064,3864065],"delay":4312.0} +{"session_id":"sess-d0a184e10f9c","input_length":1518,"output_length":202,"hash_ids":[3864066,3864067,3864068],"delay":728.7} +{"session_id":"sess-d0a184e10f9c","input_length":1199,"output_length":319,"hash_ids":[3864069,3864070,3864071],"delay":12866.9} +{"session_id":"sess-d0a184e10f9c","input_length":2881,"output_length":317,"hash_ids":[3864072,3864073,3864074,3864075,3864076,3864077],"delay":15988.0} +{"session_id":"sess-d0a184e10f9c","input_length":509,"output_length":311,"hash_ids":[3864078],"delay":1638.1} +{"session_id":"sess-d0a184e10f9c","input_length":404,"output_length":66,"hash_ids":[3864079],"delay":573.6} +{"session_id":"sess-d0a184e10f9c","input_length":1785,"output_length":110,"hash_ids":[3864080,3864081,3864082,3864083],"delay":404.9} +{"session_id":"sess-b7ff5d2f6343","input_length":33477,"output_length":194,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3868032,3868033,3868034,3868035,3868036,3868037,3868038,3868039,3868040,3868041,3868042,3868043,3868044,3868045],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b7ff5d2f6343","input_length":458,"output_length":156,"hash_ids":[3868046],"delay":1453.5} +{"session_id":"sess-b7ff5d2f6343","input_length":622,"output_length":477,"hash_ids":[3868047,3868048],"delay":3378.5} +{"session_id":"sess-b7ff5d2f6343","input_length":1172,"output_length":284,"hash_ids":[3868049,3868050,3868051],"delay":380.1} +{"session_id":"sess-b7ff5d2f6343","input_length":996,"output_length":369,"hash_ids":[3868052,3868053],"delay":666.8} +{"session_id":"sess-b7ff5d2f6343","input_length":2450,"output_length":78,"hash_ids":[3868054,3868055,3868056,3868057,3868058],"delay":436.5} +{"session_id":"sess-b7ff5d2f6343","input_length":2168,"output_length":357,"hash_ids":[3868059,3868060,3868061,3868062,3868063],"delay":1295.6} +{"session_id":"sess-b7ff5d2f6343","input_length":60,"output_length":213,"hash_ids":[3868064],"delay":1638.9} +{"session_id":"sess-b7ff5d2f6343","input_length":2205,"output_length":220,"hash_ids":[3868065,3868066,3868067,3868068,3868069],"delay":1143.2} +{"session_id":"sess-b7ff5d2f6343","input_length":1460,"output_length":93,"hash_ids":[3868070,3868071,3868072],"delay":384.0} +{"session_id":"sess-b7ff5d2f6343","input_length":482,"output_length":1255,"hash_ids":[3868073],"delay":678.2} +{"session_id":"sess-b7ff5d2f6343","input_length":466,"output_length":397,"hash_ids":[3868074],"delay":8211.4} +{"session_id":"sess-b7ff5d2f6343","input_length":1589,"output_length":144,"hash_ids":[3868075,3868076,3868077,3868078],"delay":5445.1} +{"session_id":"sess-b7ff5d2f6343","input_length":301,"output_length":412,"hash_ids":[3868079],"delay":32522.1} +{"session_id":"sess-b7ff5d2f6343","input_length":2607,"output_length":125,"hash_ids":[3868080,3868081,3868082,3868083,3868084,3868085],"delay":264.2} +{"session_id":"sess-b7ff5d2f6343","input_length":1593,"output_length":593,"hash_ids":[3868086,3868087,3868088,3868089],"delay":792.8} +{"session_id":"sess-b7ff5d2f6343","input_length":215,"output_length":186,"hash_ids":[3868090],"delay":130.0} +{"session_id":"sess-b7ff5d2f6343","input_length":551,"output_length":174,"hash_ids":[3868091,3868092],"delay":939.0} +{"session_id":"sess-b7ff5d2f6343","input_length":2138,"output_length":154,"hash_ids":[3868093,3868094,3868095,3868096,3868097],"delay":8255.3} +{"session_id":"sess-b7ff5d2f6343","input_length":2917,"output_length":290,"hash_ids":[3868098,3868099,3868100,3868101,3868102,3868103],"delay":500.3} +{"session_id":"sess-ca6875c7f7cf","input_length":26114,"output_length":309,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651],"timestamp":0.0,"group_id":38} +{"session_id":"sess-ca6875c7f7cf","input_length":303,"output_length":360,"hash_ids":[3868104],"delay":3964.9} +{"session_id":"sess-ca6875c7f7cf","input_length":481,"output_length":373,"hash_ids":[3868105],"delay":783.0} +{"session_id":"sess-ca6875c7f7cf","input_length":57,"output_length":399,"hash_ids":[3868106],"delay":40820.6} +{"session_id":"sess-ca6875c7f7cf","input_length":196,"output_length":147,"hash_ids":[3868107],"delay":10222.2} +{"session_id":"sess-ca6875c7f7cf","input_length":414,"output_length":127,"hash_ids":[3868108],"delay":3145.9} +{"session_id":"sess-ca6875c7f7cf","input_length":440,"output_length":117,"hash_ids":[3868109],"delay":2518.9} +{"session_id":"sess-ca6875c7f7cf","input_length":580,"output_length":399,"hash_ids":[3868110,3868111],"delay":1762.7} +{"session_id":"sess-ca6875c7f7cf","input_length":1283,"output_length":92,"hash_ids":[3868112,3868113,3868114],"delay":21111.7} +{"session_id":"sess-ca6875c7f7cf","input_length":1269,"output_length":117,"hash_ids":[3868115,3868116,3868117],"delay":620.5} +{"session_id":"sess-ca6875c7f7cf","input_length":479,"output_length":153,"hash_ids":[3868118],"delay":641.0} +{"session_id":"sess-ca6875c7f7cf","input_length":300,"output_length":211,"hash_ids":[3868119],"delay":2043.3} +{"session_id":"sess-ca6875c7f7cf","input_length":488,"output_length":81,"hash_ids":[3868120],"delay":2660.8} +{"session_id":"sess-ca6875c7f7cf","input_length":974,"output_length":202,"hash_ids":[3868121,3868122],"delay":503.4} +{"session_id":"sess-ca6875c7f7cf","input_length":2918,"output_length":213,"hash_ids":[3868123,3868124,3868125,3868126,3868127,3868128],"delay":1367.5} +{"session_id":"sess-ca6875c7f7cf","input_length":1954,"output_length":105,"hash_ids":[3868129,3868130,3868131,3868132],"delay":12082.4} +{"session_id":"sess-ca6875c7f7cf","input_length":441,"output_length":450,"hash_ids":[3868133],"delay":9310.6} +{"session_id":"sess-ca6875c7f7cf","input_length":566,"output_length":174,"hash_ids":[3868134,3868135],"delay":4594.2} +{"session_id":"sess-ca6875c7f7cf","input_length":2535,"output_length":173,"hash_ids":[3868136,3868137,3868138,3868139,3868140],"delay":206.6} +{"session_id":"sess-ca6875c7f7cf","input_length":2008,"output_length":136,"hash_ids":[3868141,3868142,3868143,3868144],"delay":522.6} +{"session_id":"sess-ca6875c7f7cf","input_length":555,"output_length":99,"hash_ids":[3868145,3868146],"delay":365.0} +{"session_id":"sess-ca6875c7f7cf","input_length":1214,"output_length":84,"hash_ids":[3868147,3868148,3868149],"delay":2807.0} +{"session_id":"sess-f78d9a795f27","input_length":27452,"output_length":101,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3876032,3876033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f78d9a795f27","input_length":644,"output_length":203,"hash_ids":[3876034,3876035],"delay":1728.1} +{"session_id":"sess-f78d9a795f27","input_length":689,"output_length":156,"hash_ids":[3876036,3876037],"delay":1690.5} +{"session_id":"sess-f78d9a795f27","input_length":380,"output_length":731,"hash_ids":[3876038],"delay":2572.6} +{"session_id":"sess-f78d9a795f27","input_length":716,"output_length":95,"hash_ids":[3876039,3876040],"delay":390.0} +{"session_id":"sess-f78d9a795f27","input_length":1437,"output_length":495,"hash_ids":[3876041,3876042,3876043],"delay":5941.5} +{"session_id":"sess-f78d9a795f27","input_length":610,"output_length":369,"hash_ids":[3876044,3876045],"delay":857.2} +{"session_id":"sess-f78d9a795f27","input_length":716,"output_length":542,"hash_ids":[3876046,3876047],"delay":13317.3} +{"session_id":"sess-f78d9a795f27","input_length":405,"output_length":203,"hash_ids":[3876048],"delay":2487.6} +{"session_id":"sess-f78d9a795f27","input_length":2446,"output_length":268,"hash_ids":[3876049,3876050,3876051,3876052,3876053],"delay":1033.1} +{"session_id":"sess-f78d9a795f27","input_length":789,"output_length":196,"hash_ids":[3876054,3876055],"delay":692.6} +{"session_id":"sess-f78d9a795f27","input_length":933,"output_length":113,"hash_ids":[3876056,3876057],"delay":555.9} +{"session_id":"sess-f78d9a795f27","input_length":361,"output_length":97,"hash_ids":[3876058],"delay":503.1} +{"session_id":"sess-f78d9a795f27","input_length":393,"output_length":150,"hash_ids":[3876059],"delay":5911.0} +{"session_id":"sess-f78d9a795f27","input_length":992,"output_length":262,"hash_ids":[3876060,3876061],"delay":2761.7} +{"session_id":"sess-f78d9a795f27","input_length":1074,"output_length":460,"hash_ids":[3876062,3876063,3876064],"delay":247.2} +{"session_id":"sess-f78d9a795f27","input_length":1824,"output_length":73,"hash_ids":[3876065,3876066,3876067,3876068],"delay":1825.7} +{"session_id":"sess-f78d9a795f27","input_length":335,"output_length":227,"hash_ids":[3876069],"delay":673.0} +{"session_id":"sess-f78d9a795f27","input_length":1228,"output_length":62,"hash_ids":[3876070,3876071,3876072],"delay":698.4} +{"session_id":"sess-f78d9a795f27","input_length":1780,"output_length":484,"hash_ids":[3876073,3876074,3876075,3876076],"delay":18263.2} +{"session_id":"sess-f78d9a795f27","input_length":2159,"output_length":318,"hash_ids":[3876077,3876078,3876079,3876080,3876081],"delay":1538.7} +{"session_id":"sess-f78d9a795f27","input_length":2777,"output_length":404,"hash_ids":[3876082,3876083,3876084,3876085,3876086,3876087],"delay":187.6} +{"session_id":"sess-fb0faed5c85f","input_length":37023,"output_length":35,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3880032,3880033,3880034,3880035,3880036,3880037,3880038,3880039,3880040,3880041,3880042,3880043,3880044,3880045,3880046,3880047,3880048,3880049,3880050,3880051,3880052],"timestamp":0.0,"group_id":17} +{"session_id":"sess-fb0faed5c85f","input_length":1214,"output_length":364,"hash_ids":[3880053,3880054,3880055],"delay":426.1} +{"session_id":"sess-fb0faed5c85f","input_length":495,"output_length":639,"hash_ids":[3880056],"delay":4982.6} +{"session_id":"sess-fb0faed5c85f","input_length":789,"output_length":572,"hash_ids":[3880057,3880058],"delay":11106.8} +{"session_id":"sess-fb0faed5c85f","input_length":76,"output_length":30,"hash_ids":[3880059],"delay":1490.0} +{"session_id":"sess-fb0faed5c85f","input_length":791,"output_length":122,"hash_ids":[3880060,3880061],"delay":11472.9} +{"session_id":"sess-fb0faed5c85f","input_length":681,"output_length":256,"hash_ids":[3880062,3880063],"delay":396.4} +{"session_id":"sess-fb0faed5c85f","input_length":269,"output_length":244,"hash_ids":[3880064],"delay":325.4} +{"session_id":"sess-fb0faed5c85f","input_length":402,"output_length":103,"hash_ids":[3880065],"delay":663.3} +{"session_id":"sess-fb0faed5c85f","input_length":294,"output_length":1415,"hash_ids":[3880066],"delay":1512.1} +{"session_id":"sess-fb0faed5c85f","input_length":37,"output_length":110,"hash_ids":[3880067],"delay":2400.6} +{"session_id":"sess-fb0faed5c85f","input_length":827,"output_length":255,"hash_ids":[3880068,3880069],"delay":942.5} +{"session_id":"sess-fb0faed5c85f","input_length":198,"output_length":401,"hash_ids":[3880070],"delay":1011.4} +{"session_id":"sess-fb0faed5c85f","input_length":525,"output_length":117,"hash_ids":[3880071,3880072],"delay":514.1} +{"session_id":"sess-fb0faed5c85f","input_length":1091,"output_length":188,"hash_ids":[3880073,3880074,3880075],"delay":349.2} +{"session_id":"sess-fb0faed5c85f","input_length":866,"output_length":304,"hash_ids":[3880076,3880077],"delay":4125.9} +{"session_id":"sess-fb0faed5c85f","input_length":1365,"output_length":62,"hash_ids":[3880078,3880079,3880080],"delay":623.6} +{"session_id":"sess-fb0faed5c85f","input_length":415,"output_length":36,"hash_ids":[3880081],"delay":1909.4} +{"session_id":"sess-fb0faed5c85f","input_length":1568,"output_length":267,"hash_ids":[3880082,3880083,3880084,3880085],"delay":497.0} +{"session_id":"sess-fb0faed5c85f","input_length":1051,"output_length":242,"hash_ids":[3880086,3880087,3880088],"delay":2236.0} +{"session_id":"sess-fb0faed5c85f","input_length":1243,"output_length":556,"hash_ids":[3880089,3880090,3880091],"delay":4448.5} +{"session_id":"sess-fb0faed5c85f","input_length":1391,"output_length":183,"hash_ids":[3880092,3880093,3880094],"delay":6121.5} +{"session_id":"sess-fb0faed5c85f","input_length":2738,"output_length":129,"hash_ids":[3880095,3880096,3880097,3880098,3880099,3880100],"delay":407.0} +{"session_id":"sess-fb0faed5c85f","input_length":252,"output_length":353,"hash_ids":[3880101],"delay":1593.3} +{"session_id":"sess-fb0faed5c85f","input_length":226,"output_length":607,"hash_ids":[3880102],"delay":204.8} +{"session_id":"sess-fb0faed5c85f","input_length":1027,"output_length":1362,"hash_ids":[3880103,3880104,3880105],"delay":499.4} +{"session_id":"sess-92581ef339d5","input_length":26535,"output_length":359,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51],"timestamp":0.0,"group_id":0} +{"session_id":"sess-92581ef339d5","input_length":409,"output_length":98,"hash_ids":[3880106],"delay":1692.4} +{"session_id":"sess-92581ef339d5","input_length":697,"output_length":273,"hash_ids":[3880107,3880108],"delay":3477.1} +{"session_id":"sess-92581ef339d5","input_length":129,"output_length":675,"hash_ids":[3880109],"delay":2421.6} +{"session_id":"sess-92581ef339d5","input_length":835,"output_length":226,"hash_ids":[3880110,3880111],"delay":5578.3} +{"session_id":"sess-92581ef339d5","input_length":547,"output_length":128,"hash_ids":[3880112,3880113],"delay":872.4} +{"session_id":"sess-92581ef339d5","input_length":745,"output_length":904,"hash_ids":[3880114,3880115],"delay":797.8} +{"session_id":"sess-92581ef339d5","input_length":497,"output_length":64,"hash_ids":[3880116],"delay":1118.7} +{"session_id":"sess-92581ef339d5","input_length":1209,"output_length":84,"hash_ids":[3880117,3880118,3880119],"delay":13440.3} +{"session_id":"sess-92581ef339d5","input_length":530,"output_length":339,"hash_ids":[3880120,3880121],"delay":858.3} +{"session_id":"sess-92581ef339d5","input_length":162,"output_length":351,"hash_ids":[3880122],"delay":436.1} +{"session_id":"sess-92581ef339d5","input_length":630,"output_length":87,"hash_ids":[3880123,3880124],"delay":446.3} +{"session_id":"sess-92581ef339d5","input_length":945,"output_length":77,"hash_ids":[3880125,3880126],"delay":34061.3} +{"session_id":"sess-92581ef339d5","input_length":1931,"output_length":1087,"hash_ids":[3880127,3880128,3880129,3880130],"delay":2332.9} +{"session_id":"sess-92581ef339d5","input_length":394,"output_length":99,"hash_ids":[3880131],"delay":3985.0} +{"session_id":"sess-92581ef339d5","input_length":975,"output_length":414,"hash_ids":[3880132,3880133],"delay":1451.3} +{"session_id":"sess-92581ef339d5","input_length":1270,"output_length":668,"hash_ids":[3880134,3880135,3880136],"delay":1807.8} +{"session_id":"sess-92581ef339d5","input_length":603,"output_length":99,"hash_ids":[3880137,3880138],"delay":327.7} +{"session_id":"sess-92581ef339d5","input_length":377,"output_length":52,"hash_ids":[3880139],"delay":1641.2} +{"session_id":"sess-92581ef339d5","input_length":567,"output_length":365,"hash_ids":[3880140,3880141],"delay":567.4} +{"session_id":"sess-92581ef339d5","input_length":686,"output_length":30,"hash_ids":[3880142,3880143],"delay":1961.1} +{"session_id":"sess-92581ef339d5","input_length":389,"output_length":64,"hash_ids":[3880144],"delay":883.7} +{"session_id":"sess-92581ef339d5","input_length":847,"output_length":82,"hash_ids":[3880145,3880146],"delay":2192.1} +{"session_id":"sess-63984cd6772d","input_length":26753,"output_length":227,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,3888032],"timestamp":0.0,"group_id":35} +{"session_id":"sess-63984cd6772d","input_length":572,"output_length":38,"hash_ids":[3888033,3888034],"delay":15098.4} +{"session_id":"sess-63984cd6772d","input_length":465,"output_length":49,"hash_ids":[3888035],"delay":887.3} +{"session_id":"sess-63984cd6772d","input_length":2979,"output_length":360,"hash_ids":[3888036,3888037,3888038,3888039,3888040,3888041],"delay":5723.2} +{"session_id":"sess-63984cd6772d","input_length":409,"output_length":33,"hash_ids":[3888042],"delay":23423.3} +{"session_id":"sess-63984cd6772d","input_length":1860,"output_length":347,"hash_ids":[3888043,3888044,3888045,3888046],"delay":745.8} +{"session_id":"sess-63984cd6772d","input_length":198,"output_length":656,"hash_ids":[3888047],"delay":801.4} +{"session_id":"sess-63984cd6772d","input_length":1248,"output_length":202,"hash_ids":[3888048,3888049,3888050],"delay":7528.8} +{"session_id":"sess-63984cd6772d","input_length":991,"output_length":187,"hash_ids":[3888051,3888052],"delay":539.1} +{"session_id":"sess-63984cd6772d","input_length":2354,"output_length":115,"hash_ids":[3888053,3888054,3888055,3888056,3888057],"delay":571.7} +{"session_id":"sess-63984cd6772d","input_length":1957,"output_length":154,"hash_ids":[3888058,3888059,3888060,3888061],"delay":1141.5} +{"session_id":"sess-63984cd6772d","input_length":1144,"output_length":526,"hash_ids":[3888062,3888063,3888064],"delay":9020.6} +{"session_id":"sess-63984cd6772d","input_length":584,"output_length":136,"hash_ids":[3888065,3888066],"delay":2019.9} +{"session_id":"sess-63984cd6772d","input_length":593,"output_length":309,"hash_ids":[3888067,3888068],"delay":2007.9} +{"session_id":"sess-63984cd6772d","input_length":349,"output_length":230,"hash_ids":[3888069],"delay":186.6} +{"session_id":"sess-63984cd6772d","input_length":138,"output_length":247,"hash_ids":[3888070],"delay":478.0} +{"session_id":"sess-63984cd6772d","input_length":1772,"output_length":439,"hash_ids":[3888071,3888072,3888073,3888074],"delay":2346.5} +{"session_id":"sess-63984cd6772d","input_length":975,"output_length":47,"hash_ids":[3888075,3888076],"delay":9263.5} +{"session_id":"sess-63984cd6772d","input_length":120,"output_length":89,"hash_ids":[3888077],"delay":388.7} +{"session_id":"sess-63984cd6772d","input_length":376,"output_length":137,"hash_ids":[3888078],"delay":233.8} +{"session_id":"sess-63984cd6772d","input_length":652,"output_length":453,"hash_ids":[3888079,3888080],"delay":14206.3} +{"session_id":"sess-63984cd6772d","input_length":560,"output_length":462,"hash_ids":[3888081,3888082],"delay":613.7} +{"session_id":"sess-63984cd6772d","input_length":2162,"output_length":479,"hash_ids":[3888083,3888084,3888085,3888086,3888087],"delay":500.5} +{"session_id":"sess-63984cd6772d","input_length":148,"output_length":253,"hash_ids":[3888088],"delay":524.6} +{"session_id":"sess-63984cd6772d","input_length":1197,"output_length":358,"hash_ids":[3888089,3888090,3888091],"delay":1657.9} +{"session_id":"sess-63984cd6772d","input_length":1051,"output_length":199,"hash_ids":[3888092,3888093,3888094],"delay":330.6} +{"session_id":"sess-63984cd6772d","input_length":2435,"output_length":31,"hash_ids":[3888095,3888096,3888097,3888098,3888099],"delay":563.6} +{"session_id":"sess-63984cd6772d","input_length":332,"output_length":121,"hash_ids":[3888100],"delay":198.3} +{"session_id":"sess-63984cd6772d","input_length":771,"output_length":949,"hash_ids":[3888101,3888102],"delay":544.0} +{"session_id":"sess-63984cd6772d","input_length":831,"output_length":220,"hash_ids":[3888103,3888104],"delay":656.3} +{"session_id":"sess-21620cd7aa52","input_length":33454,"output_length":339,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3892032,3892033,3892034,3892035,3892036,3892037,3892038,3892039,3892040,3892041,3892042,3892043,3892044,3892045],"timestamp":0.0,"group_id":1} +{"session_id":"sess-21620cd7aa52","input_length":2077,"output_length":144,"hash_ids":[3892046,3892047,3892048,3892049,3892050],"delay":66850.7} +{"session_id":"sess-21620cd7aa52","input_length":788,"output_length":167,"hash_ids":[3892051,3892052],"delay":11588.6} +{"session_id":"sess-21620cd7aa52","input_length":530,"output_length":342,"hash_ids":[3892053,3892054],"delay":1190.3} +{"session_id":"sess-21620cd7aa52","input_length":1215,"output_length":603,"hash_ids":[3892055,3892056,3892057],"delay":243.7} +{"session_id":"sess-21620cd7aa52","input_length":2609,"output_length":295,"hash_ids":[3892058,3892059,3892060,3892061,3892062,3892063],"delay":8301.9} +{"session_id":"sess-21620cd7aa52","input_length":1013,"output_length":612,"hash_ids":[3892064,3892065],"delay":2912.7} +{"session_id":"sess-21620cd7aa52","input_length":442,"output_length":188,"hash_ids":[3892066],"delay":460.0} +{"session_id":"sess-21620cd7aa52","input_length":569,"output_length":880,"hash_ids":[3892067,3892068],"delay":353.0} +{"session_id":"sess-21620cd7aa52","input_length":485,"output_length":125,"hash_ids":[3892069],"delay":1674.2} +{"session_id":"sess-21620cd7aa52","input_length":438,"output_length":746,"hash_ids":[3892070],"delay":3666.6} +{"session_id":"sess-21620cd7aa52","input_length":512,"output_length":252,"hash_ids":[3892071],"delay":443.5} +{"session_id":"sess-21620cd7aa52","input_length":731,"output_length":202,"hash_ids":[3892072,3892073],"delay":1220.1} +{"session_id":"sess-21620cd7aa52","input_length":1098,"output_length":106,"hash_ids":[3892074,3892075,3892076],"delay":3276.0} +{"session_id":"sess-21620cd7aa52","input_length":163,"output_length":98,"hash_ids":[3892077],"delay":417.3} +{"session_id":"sess-c902c3de0c24","input_length":27950,"output_length":152,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3896032,3896033,3896034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-c902c3de0c24","input_length":1633,"output_length":128,"hash_ids":[3896035,3896036,3896037,3896038],"delay":735.7} +{"session_id":"sess-c902c3de0c24","input_length":400,"output_length":99,"hash_ids":[3896039],"delay":11460.6} +{"session_id":"sess-c902c3de0c24","input_length":139,"output_length":153,"hash_ids":[3896040],"delay":2125.5} +{"session_id":"sess-c902c3de0c24","input_length":952,"output_length":386,"hash_ids":[3896041,3896042],"delay":11616.9} +{"session_id":"sess-c902c3de0c24","input_length":748,"output_length":86,"hash_ids":[3896043,3896044],"delay":995.7} +{"session_id":"sess-c902c3de0c24","input_length":2394,"output_length":111,"hash_ids":[3896045,3896046,3896047,3896048,3896049],"delay":31839.5} +{"session_id":"sess-c902c3de0c24","input_length":2360,"output_length":46,"hash_ids":[3896050,3896051,3896052,3896053,3896054],"delay":778.8} +{"session_id":"sess-c902c3de0c24","input_length":764,"output_length":204,"hash_ids":[3896055,3896056],"delay":1291.0} +{"session_id":"sess-c902c3de0c24","input_length":268,"output_length":158,"hash_ids":[3896057],"delay":239.5} +{"session_id":"sess-c902c3de0c24","input_length":464,"output_length":244,"hash_ids":[3896058],"delay":1417.7} +{"session_id":"sess-c902c3de0c24","input_length":964,"output_length":177,"hash_ids":[3896059,3896060],"delay":922.6} +{"session_id":"sess-c902c3de0c24","input_length":2050,"output_length":79,"hash_ids":[3896061,3896062,3896063,3896064,3896065],"delay":310.3} +{"session_id":"sess-c902c3de0c24","input_length":2467,"output_length":160,"hash_ids":[3896066,3896067,3896068,3896069,3896070],"delay":541.2} +{"session_id":"sess-c902c3de0c24","input_length":2926,"output_length":199,"hash_ids":[3896071,3896072,3896073,3896074,3896075,3896076],"delay":21825.3} +{"session_id":"sess-c902c3de0c24","input_length":1882,"output_length":81,"hash_ids":[3896077,3896078,3896079,3896080],"delay":671.9} +{"session_id":"sess-c902c3de0c24","input_length":264,"output_length":292,"hash_ids":[3896081],"delay":14220.4} +{"session_id":"sess-c902c3de0c24","input_length":1641,"output_length":406,"hash_ids":[3896082,3896083,3896084,3896085],"delay":1866.0} +{"session_id":"sess-c902c3de0c24","input_length":310,"output_length":308,"hash_ids":[3896086],"delay":603.3} +{"session_id":"sess-c902c3de0c24","input_length":1372,"output_length":940,"hash_ids":[3896087,3896088,3896089],"delay":339.3} +{"session_id":"sess-c902c3de0c24","input_length":763,"output_length":234,"hash_ids":[3896090,3896091],"delay":743.4} +{"session_id":"sess-c902c3de0c24","input_length":827,"output_length":248,"hash_ids":[3896092,3896093],"delay":435.0} +{"session_id":"sess-c902c3de0c24","input_length":1641,"output_length":321,"hash_ids":[3896094,3896095,3896096,3896097],"delay":21852.3} +{"session_id":"sess-c902c3de0c24","input_length":241,"output_length":258,"hash_ids":[3896098],"delay":308.9} +{"session_id":"sess-c902c3de0c24","input_length":2037,"output_length":338,"hash_ids":[3896099,3896100,3896101,3896102],"delay":330.8} +{"session_id":"sess-c902c3de0c24","input_length":555,"output_length":554,"hash_ids":[3896103,3896104],"delay":97.2} +{"session_id":"sess-c902c3de0c24","input_length":309,"output_length":279,"hash_ids":[3896105],"delay":338.7} +{"session_id":"sess-c902c3de0c24","input_length":284,"output_length":1409,"hash_ids":[3896106],"delay":2972.9} +{"session_id":"sess-6e281972cec3","input_length":29972,"output_length":227,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3900032,3900033,3900034,3900035,3900036,3900037,3900038],"timestamp":0.0,"group_id":0} +{"session_id":"sess-6e281972cec3","input_length":1591,"output_length":538,"hash_ids":[3900039,3900040,3900041,3900042],"delay":3510.5} +{"session_id":"sess-6e281972cec3","input_length":309,"output_length":52,"hash_ids":[3900043],"delay":616.7} +{"session_id":"sess-6e281972cec3","input_length":695,"output_length":331,"hash_ids":[3900044,3900045],"delay":7732.9} +{"session_id":"sess-6e281972cec3","input_length":1110,"output_length":544,"hash_ids":[3900046,3900047,3900048],"delay":493.0} +{"session_id":"sess-6e281972cec3","input_length":1305,"output_length":643,"hash_ids":[3900049,3900050,3900051],"delay":372.9} +{"session_id":"sess-6e281972cec3","input_length":849,"output_length":111,"hash_ids":[3900052,3900053],"delay":1028.1} +{"session_id":"sess-6e281972cec3","input_length":567,"output_length":55,"hash_ids":[3900054,3900055],"delay":10850.4} +{"session_id":"sess-6e281972cec3","input_length":694,"output_length":117,"hash_ids":[3900056,3900057],"delay":635.5} +{"session_id":"sess-6e281972cec3","input_length":916,"output_length":250,"hash_ids":[3900058,3900059],"delay":543.0} +{"session_id":"sess-6e281972cec3","input_length":985,"output_length":169,"hash_ids":[3900060,3900061],"delay":2444.8} +{"session_id":"sess-6e281972cec3","input_length":1169,"output_length":435,"hash_ids":[3900062,3900063,3900064],"delay":416.1} +{"session_id":"sess-6e281972cec3","input_length":1067,"output_length":100,"hash_ids":[3900065,3900066,3900067],"delay":130.2} +{"session_id":"sess-6e281972cec3","input_length":599,"output_length":287,"hash_ids":[3900068,3900069],"delay":567.6} +{"session_id":"sess-6e281972cec3","input_length":1385,"output_length":217,"hash_ids":[3900070,3900071,3900072],"delay":33295.9} +{"session_id":"sess-6e281972cec3","input_length":204,"output_length":672,"hash_ids":[3900073],"delay":2198.3} +{"session_id":"sess-6e281972cec3","input_length":550,"output_length":164,"hash_ids":[3900074,3900075],"delay":745.4} +{"session_id":"sess-6e281972cec3","input_length":2217,"output_length":1488,"hash_ids":[3900076,3900077,3900078,3900079,3900080],"delay":148.1} +{"session_id":"sess-eb2ecc335e04","input_length":27916,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3904032,3904033,3904034],"timestamp":0.0,"group_id":15} +{"session_id":"sess-eb2ecc335e04","input_length":180,"output_length":168,"hash_ids":[3904035],"delay":273.3} +{"session_id":"sess-eb2ecc335e04","input_length":1918,"output_length":152,"hash_ids":[3904036,3904037,3904038,3904039],"delay":688.8} +{"session_id":"sess-eb2ecc335e04","input_length":661,"output_length":215,"hash_ids":[3904040,3904041],"delay":14263.1} +{"session_id":"sess-eb2ecc335e04","input_length":518,"output_length":1387,"hash_ids":[3904042,3904043],"delay":29400.7} +{"session_id":"sess-eb2ecc335e04","input_length":1103,"output_length":41,"hash_ids":[3904044,3904045,3904046],"delay":2870.6} +{"session_id":"sess-eb2ecc335e04","input_length":1440,"output_length":96,"hash_ids":[3904047,3904048,3904049],"delay":579.3} +{"session_id":"sess-eb2ecc335e04","input_length":805,"output_length":269,"hash_ids":[3904050,3904051],"delay":18558.4} +{"session_id":"sess-eb2ecc335e04","input_length":1762,"output_length":502,"hash_ids":[3904052,3904053,3904054,3904055],"delay":651.3} +{"session_id":"sess-eb2ecc335e04","input_length":1452,"output_length":342,"hash_ids":[3904056,3904057,3904058],"delay":1984.8} +{"session_id":"sess-eb2ecc335e04","input_length":37,"output_length":498,"hash_ids":[3904059],"delay":938.9} +{"session_id":"sess-eb2ecc335e04","input_length":174,"output_length":383,"hash_ids":[3904060],"delay":1280.2} +{"session_id":"sess-eb2ecc335e04","input_length":2607,"output_length":216,"hash_ids":[3904061,3904062,3904063,3904064,3904065,3904066],"delay":165.5} +{"session_id":"sess-eb2ecc335e04","input_length":2040,"output_length":159,"hash_ids":[3904067,3904068,3904069,3904070],"delay":1295.0} +{"session_id":"sess-eb2ecc335e04","input_length":1128,"output_length":118,"hash_ids":[3904071,3904072,3904073],"delay":754.1} +{"session_id":"sess-eb2ecc335e04","input_length":713,"output_length":253,"hash_ids":[3904074,3904075],"delay":1785.7} +{"session_id":"sess-eb2ecc335e04","input_length":143,"output_length":132,"hash_ids":[3904076],"delay":749.2} +{"session_id":"sess-eb2ecc335e04","input_length":529,"output_length":160,"hash_ids":[3904077,3904078],"delay":727.4} +{"session_id":"sess-eb2ecc335e04","input_length":2505,"output_length":150,"hash_ids":[3904079,3904080,3904081,3904082,3904083],"delay":1239.5} +{"session_id":"sess-eb2ecc335e04","input_length":2804,"output_length":214,"hash_ids":[3904084,3904085,3904086,3904087,3904088,3904089],"delay":1666.3} +{"session_id":"sess-eb2ecc335e04","input_length":1576,"output_length":250,"hash_ids":[3904090,3904091,3904092,3904093],"delay":277.7} +{"session_id":"sess-eb2ecc335e04","input_length":563,"output_length":282,"hash_ids":[3904094,3904095],"delay":17136.9} +{"session_id":"sess-eb2ecc335e04","input_length":643,"output_length":98,"hash_ids":[3904096,3904097],"delay":779.0} +{"session_id":"sess-eb2ecc335e04","input_length":727,"output_length":291,"hash_ids":[3904098,3904099],"delay":149.3} +{"session_id":"sess-eb2ecc335e04","input_length":2658,"output_length":67,"hash_ids":[3904100,3904101,3904102,3904103,3904104,3904105],"delay":398.1} +{"session_id":"sess-eb2ecc335e04","input_length":1574,"output_length":279,"hash_ids":[3904106,3904107,3904108,3904109],"delay":15158.6} +{"session_id":"sess-eb2ecc335e04","input_length":287,"output_length":482,"hash_ids":[3904110],"delay":247.6} +{"session_id":"sess-f1072fb9cbaa","input_length":31529,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3908032,3908033,3908034,3908035,3908036,3908037,3908038,3908039,3908040,3908041],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f1072fb9cbaa","input_length":1880,"output_length":84,"hash_ids":[3908042,3908043,3908044,3908045],"delay":1647.3} +{"session_id":"sess-f1072fb9cbaa","input_length":1461,"output_length":135,"hash_ids":[3908046,3908047,3908048],"delay":1851.0} +{"session_id":"sess-f1072fb9cbaa","input_length":42,"output_length":193,"hash_ids":[3908049],"delay":15115.6} +{"session_id":"sess-f1072fb9cbaa","input_length":2003,"output_length":267,"hash_ids":[3908050,3908051,3908052,3908053],"delay":18051.9} +{"session_id":"sess-f1072fb9cbaa","input_length":1305,"output_length":161,"hash_ids":[3908054,3908055,3908056],"delay":2118.0} +{"session_id":"sess-f1072fb9cbaa","input_length":2272,"output_length":393,"hash_ids":[3908057,3908058,3908059,3908060,3908061],"delay":10576.4} +{"session_id":"sess-f1072fb9cbaa","input_length":1711,"output_length":38,"hash_ids":[3908062,3908063,3908064,3908065],"delay":2679.9} +{"session_id":"sess-f1072fb9cbaa","input_length":587,"output_length":63,"hash_ids":[3908066,3908067],"delay":3269.5} +{"session_id":"sess-f1072fb9cbaa","input_length":1369,"output_length":66,"hash_ids":[3908068,3908069,3908070],"delay":507.1} +{"session_id":"sess-f1072fb9cbaa","input_length":287,"output_length":195,"hash_ids":[3908071],"delay":605.9} +{"session_id":"sess-f1072fb9cbaa","input_length":448,"output_length":231,"hash_ids":[3908072],"delay":1557.1} +{"session_id":"sess-f1072fb9cbaa","input_length":2175,"output_length":520,"hash_ids":[3908073,3908074,3908075,3908076,3908077],"delay":563.8} +{"session_id":"sess-f1072fb9cbaa","input_length":456,"output_length":1343,"hash_ids":[3908078],"delay":2057.2} +{"session_id":"sess-f1072fb9cbaa","input_length":1582,"output_length":127,"hash_ids":[3908079,3908080,3908081,3908082],"delay":2880.6} +{"session_id":"sess-f1072fb9cbaa","input_length":1526,"output_length":95,"hash_ids":[3908083,3908084,3908085],"delay":783.6} +{"session_id":"sess-f1072fb9cbaa","input_length":534,"output_length":139,"hash_ids":[3908086,3908087],"delay":584.3} +{"session_id":"sess-f1072fb9cbaa","input_length":421,"output_length":337,"hash_ids":[3908088],"delay":309.1} +{"session_id":"sess-f1072fb9cbaa","input_length":730,"output_length":791,"hash_ids":[3908089,3908090],"delay":11443.5} +{"session_id":"sess-f1072fb9cbaa","input_length":480,"output_length":128,"hash_ids":[3908091],"delay":714.4} +{"session_id":"sess-f1072fb9cbaa","input_length":931,"output_length":127,"hash_ids":[3908092,3908093],"delay":376.9} +{"session_id":"sess-f1072fb9cbaa","input_length":2681,"output_length":98,"hash_ids":[3908094,3908095,3908096,3908097,3908098,3908099],"delay":1191.4} +{"session_id":"sess-f1072fb9cbaa","input_length":571,"output_length":398,"hash_ids":[3908100,3908101],"delay":241.6} +{"session_id":"sess-f1072fb9cbaa","input_length":301,"output_length":297,"hash_ids":[3908102],"delay":10940.3} +{"session_id":"sess-f1072fb9cbaa","input_length":850,"output_length":55,"hash_ids":[3908103,3908104],"delay":222.0} +{"session_id":"sess-7cff4fe115de","input_length":30193,"output_length":526,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,3912032,3912033,3912034,3912035,3912036,3912037,3912038],"timestamp":0.0,"group_id":3} +{"session_id":"sess-7cff4fe115de","input_length":1612,"output_length":62,"hash_ids":[3912039,3912040,3912041,3912042],"delay":967.2} +{"session_id":"sess-7cff4fe115de","input_length":1688,"output_length":31,"hash_ids":[3912043,3912044,3912045,3912046],"delay":1070.8} +{"session_id":"sess-7cff4fe115de","input_length":369,"output_length":302,"hash_ids":[3912047],"delay":949.7} +{"session_id":"sess-7cff4fe115de","input_length":155,"output_length":224,"hash_ids":[3912048],"delay":643.9} +{"session_id":"sess-7cff4fe115de","input_length":328,"output_length":145,"hash_ids":[3912049],"delay":1242.3} +{"session_id":"sess-7cff4fe115de","input_length":546,"output_length":491,"hash_ids":[3912050,3912051],"delay":564.8} +{"session_id":"sess-7cff4fe115de","input_length":290,"output_length":47,"hash_ids":[3912052],"delay":14385.3} +{"session_id":"sess-7cff4fe115de","input_length":803,"output_length":297,"hash_ids":[3912053,3912054],"delay":1226.5} +{"session_id":"sess-7cff4fe115de","input_length":2321,"output_length":81,"hash_ids":[3912055,3912056,3912057,3912058,3912059],"delay":16203.9} +{"session_id":"sess-56b31ca31ca6","input_length":27116,"output_length":57,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3916032],"timestamp":0.0,"group_id":2} +{"session_id":"sess-56b31ca31ca6","input_length":375,"output_length":444,"hash_ids":[3916033],"delay":909.1} +{"session_id":"sess-56b31ca31ca6","input_length":908,"output_length":407,"hash_ids":[3916034,3916035],"delay":1964.7} +{"session_id":"sess-56b31ca31ca6","input_length":926,"output_length":201,"hash_ids":[3916036,3916037],"delay":1403.1} +{"session_id":"sess-56b31ca31ca6","input_length":1430,"output_length":99,"hash_ids":[3916038,3916039,3916040],"delay":1493.7} +{"session_id":"sess-56b31ca31ca6","input_length":2000,"output_length":657,"hash_ids":[3916041,3916042,3916043,3916044],"delay":620.1} +{"session_id":"sess-56b31ca31ca6","input_length":983,"output_length":400,"hash_ids":[3916045,3916046],"delay":5262.1} +{"session_id":"sess-56b31ca31ca6","input_length":1327,"output_length":921,"hash_ids":[3916047,3916048,3916049],"delay":14932.5} +{"session_id":"sess-56b31ca31ca6","input_length":2326,"output_length":244,"hash_ids":[3916050,3916051,3916052,3916053,3916054],"delay":822.3} +{"session_id":"sess-56b31ca31ca6","input_length":1004,"output_length":166,"hash_ids":[3916055,3916056],"delay":520.4} +{"session_id":"sess-b0c6e7aab550","input_length":33021,"output_length":299,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3920032,3920033,3920034,3920035,3920036,3920037,3920038,3920039,3920040,3920041,3920042,3920043,3920044],"timestamp":0.0,"group_id":17} +{"session_id":"sess-b0c6e7aab550","input_length":2304,"output_length":180,"hash_ids":[3920045,3920046,3920047,3920048,3920049],"delay":2414.3} +{"session_id":"sess-b0c6e7aab550","input_length":237,"output_length":94,"hash_ids":[3920050],"delay":12953.4} +{"session_id":"sess-b0c6e7aab550","input_length":842,"output_length":228,"hash_ids":[3920051,3920052],"delay":689.9} +{"session_id":"sess-b0c6e7aab550","input_length":1606,"output_length":240,"hash_ids":[3920053,3920054,3920055,3920056],"delay":2301.0} +{"session_id":"sess-b0c6e7aab550","input_length":545,"output_length":394,"hash_ids":[3920057,3920058],"delay":794.9} +{"session_id":"sess-b0c6e7aab550","input_length":643,"output_length":79,"hash_ids":[3920059,3920060],"delay":1186.9} +{"session_id":"sess-b0c6e7aab550","input_length":565,"output_length":197,"hash_ids":[3920061,3920062],"delay":1901.9} +{"session_id":"sess-b0c6e7aab550","input_length":418,"output_length":57,"hash_ids":[3920063],"delay":45924.7} +{"session_id":"sess-b0c6e7aab550","input_length":1535,"output_length":504,"hash_ids":[3920064,3920065,3920066],"delay":634.9} +{"session_id":"sess-b0c6e7aab550","input_length":821,"output_length":235,"hash_ids":[3920067,3920068],"delay":25369.7} +{"session_id":"sess-b0c6e7aab550","input_length":359,"output_length":508,"hash_ids":[3920069],"delay":9254.3} +{"session_id":"sess-b0c6e7aab550","input_length":604,"output_length":118,"hash_ids":[3920070,3920071],"delay":646.1} +{"session_id":"sess-b0c6e7aab550","input_length":642,"output_length":185,"hash_ids":[3920072,3920073],"delay":31999.1} +{"session_id":"sess-b0c6e7aab550","input_length":1569,"output_length":122,"hash_ids":[3920074,3920075,3920076,3920077],"delay":213.4} +{"session_id":"sess-b0c6e7aab550","input_length":1187,"output_length":170,"hash_ids":[3920078,3920079,3920080],"delay":36680.7} +{"session_id":"sess-b0c6e7aab550","input_length":1195,"output_length":242,"hash_ids":[3920081,3920082,3920083],"delay":40609.2} +{"session_id":"sess-b0c6e7aab550","input_length":565,"output_length":30,"hash_ids":[3920084,3920085],"delay":795.2} +{"session_id":"sess-b0c6e7aab550","input_length":977,"output_length":496,"hash_ids":[3920086,3920087],"delay":2818.9} +{"session_id":"sess-b0c6e7aab550","input_length":662,"output_length":112,"hash_ids":[3920088,3920089],"delay":572.4} +{"session_id":"sess-b0c6e7aab550","input_length":2237,"output_length":82,"hash_ids":[3920090,3920091,3920092,3920093,3920094],"delay":309.8} +{"session_id":"sess-b0c6e7aab550","input_length":990,"output_length":475,"hash_ids":[3920095,3920096],"delay":533.6} +{"session_id":"sess-b0c6e7aab550","input_length":2220,"output_length":48,"hash_ids":[3920097,3920098,3920099,3920100,3920101],"delay":282.7} +{"session_id":"sess-b0c6e7aab550","input_length":2072,"output_length":161,"hash_ids":[3920102,3920103,3920104,3920105,3920106],"delay":89.5} +{"session_id":"sess-b0c6e7aab550","input_length":1408,"output_length":160,"hash_ids":[3920107,3920108,3920109],"delay":857.9} +{"session_id":"sess-3f2b81311091","input_length":28106,"output_length":34,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3924032,3924033,3924034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-3f2b81311091","input_length":1261,"output_length":150,"hash_ids":[3924035,3924036,3924037],"delay":1060.4} +{"session_id":"sess-3f2b81311091","input_length":314,"output_length":502,"hash_ids":[3924038],"delay":1535.9} +{"session_id":"sess-3f2b81311091","input_length":1776,"output_length":335,"hash_ids":[3924039,3924040,3924041,3924042],"delay":900.0} +{"session_id":"sess-3f2b81311091","input_length":178,"output_length":58,"hash_ids":[3924043],"delay":11142.9} +{"session_id":"sess-3f2b81311091","input_length":2183,"output_length":103,"hash_ids":[3924044,3924045,3924046,3924047,3924048],"delay":4899.9} +{"session_id":"sess-3f2b81311091","input_length":674,"output_length":66,"hash_ids":[3924049,3924050],"delay":1155.9} +{"session_id":"sess-3f2b81311091","input_length":164,"output_length":720,"hash_ids":[3924051],"delay":628.0} +{"session_id":"sess-3f2b81311091","input_length":663,"output_length":185,"hash_ids":[3924052,3924053],"delay":1262.8} +{"session_id":"sess-3f2b81311091","input_length":665,"output_length":147,"hash_ids":[3924054,3924055],"delay":687.1} +{"session_id":"sess-3f2b81311091","input_length":423,"output_length":655,"hash_ids":[3924056],"delay":11816.4} +{"session_id":"sess-3f2b81311091","input_length":408,"output_length":890,"hash_ids":[3924057],"delay":434.5} +{"session_id":"sess-3f2b81311091","input_length":762,"output_length":117,"hash_ids":[3924058,3924059],"delay":379.9} +{"session_id":"sess-3f2b81311091","input_length":1303,"output_length":210,"hash_ids":[3924060,3924061,3924062],"delay":1426.2} +{"session_id":"sess-3f2b81311091","input_length":2712,"output_length":111,"hash_ids":[3924063,3924064,3924065,3924066,3924067,3924068],"delay":14254.6} +{"session_id":"sess-3f2b81311091","input_length":911,"output_length":217,"hash_ids":[3924069,3924070],"delay":795.0} +{"session_id":"sess-3f2b81311091","input_length":2488,"output_length":64,"hash_ids":[3924071,3924072,3924073,3924074,3924075],"delay":6215.6} +{"session_id":"sess-3f2b81311091","input_length":1105,"output_length":208,"hash_ids":[3924076,3924077,3924078],"delay":5188.6} +{"session_id":"sess-3f2b81311091","input_length":433,"output_length":419,"hash_ids":[3924079],"delay":360.2} +{"session_id":"sess-3f2b81311091","input_length":2899,"output_length":514,"hash_ids":[3924080,3924081,3924082,3924083,3924084,3924085],"delay":8146.2} +{"session_id":"sess-3f2b81311091","input_length":343,"output_length":193,"hash_ids":[3924086],"delay":4009.0} +{"session_id":"sess-3f2b81311091","input_length":1640,"output_length":328,"hash_ids":[3924087,3924088,3924089,3924090],"delay":472.1} +{"session_id":"sess-3f2b81311091","input_length":2236,"output_length":463,"hash_ids":[3924091,3924092,3924093,3924094,3924095],"delay":856.1} +{"session_id":"sess-3f2b81311091","input_length":646,"output_length":57,"hash_ids":[3924096,3924097],"delay":187.9} +{"session_id":"sess-3f2b81311091","input_length":770,"output_length":50,"hash_ids":[3924098,3924099],"delay":370.4} +{"session_id":"sess-3f2b81311091","input_length":2860,"output_length":327,"hash_ids":[3924100,3924101,3924102,3924103,3924104,3924105],"delay":8888.6} +{"session_id":"sess-b647d5e1aea0","input_length":31839,"output_length":472,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3928032,3928033,3928034,3928035,3928036,3928037,3928038,3928039,3928040,3928041,3928042],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b647d5e1aea0","input_length":1418,"output_length":203,"hash_ids":[3928043,3928044,3928045],"delay":990.8} +{"session_id":"sess-b647d5e1aea0","input_length":883,"output_length":288,"hash_ids":[3928046,3928047],"delay":12048.3} +{"session_id":"sess-b647d5e1aea0","input_length":2210,"output_length":763,"hash_ids":[3928048,3928049,3928050,3928051,3928052],"delay":545.5} +{"session_id":"sess-b647d5e1aea0","input_length":1697,"output_length":153,"hash_ids":[3928053,3928054,3928055,3928056],"delay":595.0} +{"session_id":"sess-b647d5e1aea0","input_length":1463,"output_length":271,"hash_ids":[3928057,3928058,3928059],"delay":45042.0} +{"session_id":"sess-b647d5e1aea0","input_length":514,"output_length":249,"hash_ids":[3928060,3928061],"delay":7370.1} +{"session_id":"sess-b647d5e1aea0","input_length":854,"output_length":165,"hash_ids":[3928062,3928063],"delay":578.8} +{"session_id":"sess-b647d5e1aea0","input_length":647,"output_length":593,"hash_ids":[3928064,3928065],"delay":307.9} +{"session_id":"sess-b647d5e1aea0","input_length":486,"output_length":183,"hash_ids":[3928066],"delay":214.8} +{"session_id":"sess-b647d5e1aea0","input_length":2002,"output_length":800,"hash_ids":[3928067,3928068,3928069,3928070],"delay":6152.2} +{"session_id":"sess-b647d5e1aea0","input_length":1020,"output_length":152,"hash_ids":[3928071,3928072],"delay":1304.8} +{"session_id":"sess-b647d5e1aea0","input_length":100,"output_length":162,"hash_ids":[3928073],"delay":498.1} +{"session_id":"sess-b647d5e1aea0","input_length":1641,"output_length":254,"hash_ids":[3928074,3928075,3928076,3928077],"delay":12694.6} +{"session_id":"sess-b647d5e1aea0","input_length":226,"output_length":275,"hash_ids":[3928078],"delay":1469.8} +{"session_id":"sess-b647d5e1aea0","input_length":435,"output_length":141,"hash_ids":[3928079],"delay":2901.7} +{"session_id":"sess-078410a0066c","input_length":32516,"output_length":429,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,3932032,3932033,3932034,3932035,3932036,3932037,3932038,3932039,3932040,3932041,3932042,3932043],"timestamp":0.0,"group_id":30} +{"session_id":"sess-078410a0066c","input_length":503,"output_length":887,"hash_ids":[3932044],"delay":2475.7} +{"session_id":"sess-078410a0066c","input_length":567,"output_length":269,"hash_ids":[3932045,3932046],"delay":750.8} +{"session_id":"sess-078410a0066c","input_length":832,"output_length":198,"hash_ids":[3932047,3932048],"delay":875.0} +{"session_id":"sess-078410a0066c","input_length":374,"output_length":206,"hash_ids":[3932049],"delay":286.8} +{"session_id":"sess-078410a0066c","input_length":686,"output_length":335,"hash_ids":[3932050,3932051],"delay":754.6} +{"session_id":"sess-078410a0066c","input_length":747,"output_length":41,"hash_ids":[3932052,3932053],"delay":762.3} +{"session_id":"sess-078410a0066c","input_length":1617,"output_length":228,"hash_ids":[3932054,3932055,3932056,3932057],"delay":1091.2} +{"session_id":"sess-078410a0066c","input_length":2398,"output_length":202,"hash_ids":[3932058,3932059,3932060,3932061,3932062],"delay":222.0} +{"session_id":"sess-078410a0066c","input_length":356,"output_length":363,"hash_ids":[3932063],"delay":1633.1} +{"session_id":"sess-078410a0066c","input_length":1471,"output_length":167,"hash_ids":[3932064,3932065,3932066],"delay":2018.9} +{"session_id":"sess-078410a0066c","input_length":808,"output_length":644,"hash_ids":[3932067,3932068],"delay":872.6} +{"session_id":"sess-078410a0066c","input_length":1566,"output_length":143,"hash_ids":[3932069,3932070,3932071,3932072],"delay":1624.2} +{"session_id":"sess-078410a0066c","input_length":1609,"output_length":297,"hash_ids":[3932073,3932074,3932075,3932076],"delay":2137.9} +{"session_id":"sess-078410a0066c","input_length":1698,"output_length":31,"hash_ids":[3932077,3932078,3932079,3932080],"delay":1148.2} +{"session_id":"sess-078410a0066c","input_length":2149,"output_length":220,"hash_ids":[3932081,3932082,3932083,3932084,3932085],"delay":448.4} +{"session_id":"sess-078410a0066c","input_length":1139,"output_length":170,"hash_ids":[3932086,3932087,3932088],"delay":547.8} +{"session_id":"sess-078410a0066c","input_length":1206,"output_length":165,"hash_ids":[3932089,3932090,3932091],"delay":597.7} +{"session_id":"sess-078410a0066c","input_length":564,"output_length":137,"hash_ids":[3932092,3932093],"delay":475.0} +{"session_id":"sess-078410a0066c","input_length":1356,"output_length":271,"hash_ids":[3932094,3932095,3932096],"delay":740.8} +{"session_id":"sess-078410a0066c","input_length":1120,"output_length":138,"hash_ids":[3932097,3932098,3932099],"delay":3596.2} +{"session_id":"sess-078410a0066c","input_length":775,"output_length":126,"hash_ids":[3932100,3932101],"delay":166.2} +{"session_id":"sess-078410a0066c","input_length":2324,"output_length":178,"hash_ids":[3932102,3932103,3932104,3932105,3932106],"delay":166.9} +{"session_id":"sess-078410a0066c","input_length":676,"output_length":143,"hash_ids":[3932107,3932108],"delay":268.1} +{"session_id":"sess-366c8ebf20ec","input_length":28171,"output_length":148,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,3936032,3936033,3936034,3936035],"timestamp":0.0,"group_id":23} +{"session_id":"sess-366c8ebf20ec","input_length":794,"output_length":162,"hash_ids":[3936036,3936037],"delay":899.7} +{"session_id":"sess-366c8ebf20ec","input_length":1744,"output_length":73,"hash_ids":[3936038,3936039,3936040,3936041],"delay":1460.2} +{"session_id":"sess-366c8ebf20ec","input_length":346,"output_length":345,"hash_ids":[3936042],"delay":21773.4} +{"session_id":"sess-366c8ebf20ec","input_length":1306,"output_length":427,"hash_ids":[3936043,3936044,3936045],"delay":754.4} +{"session_id":"sess-366c8ebf20ec","input_length":855,"output_length":585,"hash_ids":[3936046,3936047],"delay":1803.4} +{"session_id":"sess-366c8ebf20ec","input_length":1471,"output_length":123,"hash_ids":[3936048,3936049,3936050],"delay":1092.3} +{"session_id":"sess-366c8ebf20ec","input_length":667,"output_length":275,"hash_ids":[3936051,3936052],"delay":995.5} +{"session_id":"sess-366c8ebf20ec","input_length":516,"output_length":85,"hash_ids":[3936053,3936054],"delay":60938.2} +{"session_id":"sess-366c8ebf20ec","input_length":583,"output_length":81,"hash_ids":[3936055,3936056],"delay":24301.5} +{"session_id":"sess-366c8ebf20ec","input_length":2973,"output_length":67,"hash_ids":[3936057,3936058,3936059,3936060,3936061,3936062],"delay":15099.7} +{"session_id":"sess-366c8ebf20ec","input_length":1108,"output_length":49,"hash_ids":[3936063,3936064,3936065],"delay":2066.7} +{"session_id":"sess-366c8ebf20ec","input_length":507,"output_length":460,"hash_ids":[3936066],"delay":45951.0} +{"session_id":"sess-366c8ebf20ec","input_length":1384,"output_length":651,"hash_ids":[3936067,3936068,3936069],"delay":24041.3} +{"session_id":"sess-366c8ebf20ec","input_length":688,"output_length":202,"hash_ids":[3936070,3936071],"delay":1496.2} +{"session_id":"sess-366c8ebf20ec","input_length":1735,"output_length":291,"hash_ids":[3936072,3936073,3936074,3936075],"delay":10285.8} +{"session_id":"sess-366c8ebf20ec","input_length":81,"output_length":1414,"hash_ids":[3936076],"delay":461.4} +{"session_id":"sess-366c8ebf20ec","input_length":262,"output_length":322,"hash_ids":[3936077],"delay":439.4} +{"session_id":"sess-366c8ebf20ec","input_length":1566,"output_length":139,"hash_ids":[3936078,3936079,3936080,3936081],"delay":263.2} +{"session_id":"sess-366c8ebf20ec","input_length":1036,"output_length":177,"hash_ids":[3936082,3936083,3936084],"delay":420.5} +{"session_id":"sess-366c8ebf20ec","input_length":2334,"output_length":52,"hash_ids":[3936085,3936086,3936087,3936088,3936089],"delay":2887.2} +{"session_id":"sess-366c8ebf20ec","input_length":938,"output_length":81,"hash_ids":[3936090,3936091],"delay":182.3} +{"session_id":"sess-366c8ebf20ec","input_length":784,"output_length":305,"hash_ids":[3936092,3936093],"delay":396.3} +{"session_id":"sess-366c8ebf20ec","input_length":613,"output_length":251,"hash_ids":[3936094,3936095],"delay":4666.3} +{"session_id":"sess-366c8ebf20ec","input_length":1026,"output_length":48,"hash_ids":[3936096,3936097,3936098],"delay":387.0} +{"session_id":"sess-366c8ebf20ec","input_length":2107,"output_length":92,"hash_ids":[3936099,3936100,3936101,3936102,3936103],"delay":5797.4} +{"session_id":"sess-366c8ebf20ec","input_length":354,"output_length":73,"hash_ids":[3936104],"delay":511.7} +{"session_id":"sess-366c8ebf20ec","input_length":224,"output_length":361,"hash_ids":[3936105],"delay":740.2} +{"session_id":"sess-366c8ebf20ec","input_length":722,"output_length":568,"hash_ids":[3936106,3936107],"delay":1247.4} +{"session_id":"sess-38809cec5094","input_length":27181,"output_length":233,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3940032,3940033],"timestamp":0.0,"group_id":5} +{"session_id":"sess-38809cec5094","input_length":1015,"output_length":457,"hash_ids":[3940034,3940035],"delay":515.1} +{"session_id":"sess-38809cec5094","input_length":834,"output_length":307,"hash_ids":[3940036,3940037],"delay":1216.1} +{"session_id":"sess-38809cec5094","input_length":608,"output_length":109,"hash_ids":[3940038,3940039],"delay":438.4} +{"session_id":"sess-38809cec5094","input_length":2891,"output_length":97,"hash_ids":[3940040,3940041,3940042,3940043,3940044,3940045],"delay":941.3} +{"session_id":"sess-38809cec5094","input_length":1883,"output_length":565,"hash_ids":[3940046,3940047,3940048,3940049],"delay":1451.2} +{"session_id":"sess-38809cec5094","input_length":558,"output_length":49,"hash_ids":[3940050,3940051],"delay":39286.5} +{"session_id":"sess-38809cec5094","input_length":1402,"output_length":37,"hash_ids":[3940052,3940053,3940054],"delay":935.9} +{"session_id":"sess-38809cec5094","input_length":241,"output_length":358,"hash_ids":[3940055],"delay":9740.9} +{"session_id":"sess-38809cec5094","input_length":390,"output_length":103,"hash_ids":[3940056],"delay":53949.3} +{"session_id":"sess-38809cec5094","input_length":2030,"output_length":704,"hash_ids":[3940057,3940058,3940059,3940060],"delay":818.0} +{"session_id":"sess-38809cec5094","input_length":831,"output_length":789,"hash_ids":[3940061,3940062],"delay":2215.5} +{"session_id":"sess-38809cec5094","input_length":479,"output_length":101,"hash_ids":[3940063],"delay":947.6} +{"session_id":"sess-38809cec5094","input_length":923,"output_length":619,"hash_ids":[3940064,3940065],"delay":554.5} +{"session_id":"sess-38809cec5094","input_length":678,"output_length":337,"hash_ids":[3940066,3940067],"delay":248.4} +{"session_id":"sess-38809cec5094","input_length":1966,"output_length":589,"hash_ids":[3940068,3940069,3940070,3940071],"delay":43304.7} +{"session_id":"sess-38809cec5094","input_length":1793,"output_length":74,"hash_ids":[3940072,3940073,3940074,3940075],"delay":2478.9} +{"session_id":"sess-38809cec5094","input_length":665,"output_length":189,"hash_ids":[3940076,3940077],"delay":1444.6} +{"session_id":"sess-38809cec5094","input_length":181,"output_length":547,"hash_ids":[3940078],"delay":683.9} +{"session_id":"sess-38809cec5094","input_length":162,"output_length":53,"hash_ids":[3940079],"delay":9617.2} +{"session_id":"sess-38809cec5094","input_length":664,"output_length":104,"hash_ids":[3940080,3940081],"delay":383.5} +{"session_id":"sess-38809cec5094","input_length":2560,"output_length":508,"hash_ids":[3940082,3940083,3940084,3940085,3940086],"delay":2083.9} +{"session_id":"sess-38809cec5094","input_length":79,"output_length":190,"hash_ids":[3940087],"delay":25002.0} +{"session_id":"sess-38809cec5094","input_length":241,"output_length":123,"hash_ids":[3940088],"delay":551.0} +{"session_id":"sess-38809cec5094","input_length":168,"output_length":366,"hash_ids":[3940089],"delay":18891.7} +{"session_id":"sess-38809cec5094","input_length":271,"output_length":353,"hash_ids":[3940090],"delay":1164.0} +{"session_id":"sess-38809cec5094","input_length":1252,"output_length":696,"hash_ids":[3940091,3940092,3940093],"delay":480.5} +{"session_id":"sess-38809cec5094","input_length":121,"output_length":142,"hash_ids":[3940094],"delay":630.4} +{"session_id":"sess-38809cec5094","input_length":1585,"output_length":582,"hash_ids":[3940095,3940096,3940097,3940098],"delay":2168.3} +{"session_id":"sess-dbf81749f4d6","input_length":27864,"output_length":87,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3944032,3944033,3944034],"timestamp":0.0,"group_id":19} +{"session_id":"sess-dbf81749f4d6","input_length":1332,"output_length":102,"hash_ids":[3944035,3944036,3944037],"delay":5468.2} +{"session_id":"sess-dbf81749f4d6","input_length":213,"output_length":112,"hash_ids":[3944038],"delay":11157.2} +{"session_id":"sess-dbf81749f4d6","input_length":1834,"output_length":235,"hash_ids":[3944039,3944040,3944041,3944042],"delay":4598.1} +{"session_id":"sess-dbf81749f4d6","input_length":1131,"output_length":208,"hash_ids":[3944043,3944044,3944045],"delay":56484.1} +{"session_id":"sess-dbf81749f4d6","input_length":230,"output_length":171,"hash_ids":[3944046],"delay":2261.5} +{"session_id":"sess-dbf81749f4d6","input_length":1969,"output_length":382,"hash_ids":[3944047,3944048,3944049,3944050],"delay":5289.3} +{"session_id":"sess-dbf81749f4d6","input_length":205,"output_length":512,"hash_ids":[3944051],"delay":163.5} +{"session_id":"sess-dbf81749f4d6","input_length":914,"output_length":80,"hash_ids":[3944052,3944053],"delay":748.0} +{"session_id":"sess-dbf81749f4d6","input_length":557,"output_length":94,"hash_ids":[3944054,3944055],"delay":513.3} +{"session_id":"sess-dbf81749f4d6","input_length":547,"output_length":148,"hash_ids":[3944056,3944057],"delay":1301.7} +{"session_id":"sess-dbf81749f4d6","input_length":1540,"output_length":1058,"hash_ids":[3944058,3944059,3944060,3944061],"delay":882.5} +{"session_id":"sess-dbf81749f4d6","input_length":958,"output_length":479,"hash_ids":[3944062,3944063],"delay":2145.1} +{"session_id":"sess-dbf81749f4d6","input_length":891,"output_length":132,"hash_ids":[3944064,3944065],"delay":349.1} +{"session_id":"sess-dbf81749f4d6","input_length":1769,"output_length":74,"hash_ids":[3944066,3944067,3944068,3944069],"delay":1853.9} +{"session_id":"sess-dbf81749f4d6","input_length":836,"output_length":145,"hash_ids":[3944070,3944071],"delay":1414.9} +{"session_id":"sess-dbf81749f4d6","input_length":98,"output_length":301,"hash_ids":[3944072],"delay":1641.3} +{"session_id":"sess-dbf81749f4d6","input_length":2423,"output_length":339,"hash_ids":[3944073,3944074,3944075,3944076,3944077],"delay":1620.1} +{"session_id":"sess-dbf81749f4d6","input_length":736,"output_length":48,"hash_ids":[3944078,3944079],"delay":315.4} +{"session_id":"sess-dbf81749f4d6","input_length":586,"output_length":273,"hash_ids":[3944080,3944081],"delay":1575.7} +{"session_id":"sess-dbf81749f4d6","input_length":1047,"output_length":310,"hash_ids":[3944082,3944083,3944084],"delay":1313.3} +{"session_id":"sess-dbf81749f4d6","input_length":1331,"output_length":61,"hash_ids":[3944085,3944086,3944087],"delay":202.4} +{"session_id":"sess-dbf81749f4d6","input_length":259,"output_length":579,"hash_ids":[3944088],"delay":7804.5} +{"session_id":"sess-dbf81749f4d6","input_length":1595,"output_length":65,"hash_ids":[3944089,3944090,3944091,3944092],"delay":934.5} +{"session_id":"sess-dbf81749f4d6","input_length":172,"output_length":35,"hash_ids":[3944093],"delay":197.2} +{"session_id":"sess-dbf81749f4d6","input_length":1909,"output_length":186,"hash_ids":[3944094,3944095,3944096,3944097],"delay":15780.9} +{"session_id":"sess-dbf81749f4d6","input_length":1166,"output_length":65,"hash_ids":[3944098,3944099,3944100],"delay":657.6} +{"session_id":"sess-dbf81749f4d6","input_length":184,"output_length":104,"hash_ids":[3944101],"delay":324.3} +{"session_id":"sess-dbf81749f4d6","input_length":783,"output_length":116,"hash_ids":[3944102,3944103],"delay":1238.4} +{"session_id":"sess-dbf81749f4d6","input_length":582,"output_length":30,"hash_ids":[3944104,3944105],"delay":849.6} +{"session_id":"sess-dbf81749f4d6","input_length":338,"output_length":230,"hash_ids":[3944106],"delay":297.9} +{"session_id":"sess-dbf81749f4d6","input_length":295,"output_length":223,"hash_ids":[3944107],"delay":1321.9} +{"session_id":"sess-0acac5cd0e97","input_length":27972,"output_length":207,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3948032,3948033,3948034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-0acac5cd0e97","input_length":2105,"output_length":742,"hash_ids":[3948035,3948036,3948037,3948038,3948039],"delay":8899.0} +{"session_id":"sess-0acac5cd0e97","input_length":1916,"output_length":117,"hash_ids":[3948040,3948041,3948042,3948043],"delay":3502.7} +{"session_id":"sess-0acac5cd0e97","input_length":175,"output_length":143,"hash_ids":[3948044],"delay":8446.4} +{"session_id":"sess-0acac5cd0e97","input_length":486,"output_length":346,"hash_ids":[3948045],"delay":676.9} +{"session_id":"sess-0acac5cd0e97","input_length":121,"output_length":202,"hash_ids":[3948046],"delay":2354.7} +{"session_id":"sess-0acac5cd0e97","input_length":675,"output_length":68,"hash_ids":[3948047,3948048],"delay":6536.4} +{"session_id":"sess-0acac5cd0e97","input_length":913,"output_length":462,"hash_ids":[3948049,3948050],"delay":1195.6} +{"session_id":"sess-0acac5cd0e97","input_length":2765,"output_length":92,"hash_ids":[3948051,3948052,3948053,3948054,3948055,3948056],"delay":419.7} +{"session_id":"sess-0acac5cd0e97","input_length":837,"output_length":76,"hash_ids":[3948057,3948058],"delay":3988.7} +{"session_id":"sess-0acac5cd0e97","input_length":444,"output_length":38,"hash_ids":[3948059],"delay":394.7} +{"session_id":"sess-0acac5cd0e97","input_length":411,"output_length":694,"hash_ids":[3948060],"delay":405.1} +{"session_id":"sess-0acac5cd0e97","input_length":2710,"output_length":94,"hash_ids":[3948061,3948062,3948063,3948064,3948065,3948066],"delay":466.3} +{"session_id":"sess-0acac5cd0e97","input_length":1128,"output_length":327,"hash_ids":[3948067,3948068,3948069],"delay":9199.5} +{"session_id":"sess-0acac5cd0e97","input_length":408,"output_length":396,"hash_ids":[3948070],"delay":216.2} +{"session_id":"sess-0acac5cd0e97","input_length":2944,"output_length":30,"hash_ids":[3948071,3948072,3948073,3948074,3948075,3948076],"delay":493.6} +{"session_id":"sess-0acac5cd0e97","input_length":331,"output_length":44,"hash_ids":[3948077],"delay":22058.7} +{"session_id":"sess-0acac5cd0e97","input_length":1485,"output_length":182,"hash_ids":[3948078,3948079,3948080],"delay":243.8} +{"session_id":"sess-0acac5cd0e97","input_length":1124,"output_length":168,"hash_ids":[3948081,3948082,3948083],"delay":3129.7} +{"session_id":"sess-0acac5cd0e97","input_length":762,"output_length":95,"hash_ids":[3948084,3948085],"delay":2587.0} +{"session_id":"sess-0acac5cd0e97","input_length":224,"output_length":318,"hash_ids":[3948086],"delay":148.7} +{"session_id":"sess-0acac5cd0e97","input_length":353,"output_length":358,"hash_ids":[3948087],"delay":938.8} +{"session_id":"sess-0acac5cd0e97","input_length":1024,"output_length":133,"hash_ids":[3948088,3948089],"delay":355.1} +{"session_id":"sess-0acac5cd0e97","input_length":141,"output_length":227,"hash_ids":[3948090],"delay":1469.3} +{"session_id":"sess-0acac5cd0e97","input_length":473,"output_length":313,"hash_ids":[3948091],"delay":608.3} +{"session_id":"sess-0acac5cd0e97","input_length":1128,"output_length":310,"hash_ids":[3948092,3948093,3948094],"delay":779.6} +{"session_id":"sess-0acac5cd0e97","input_length":712,"output_length":129,"hash_ids":[3948095,3948096],"delay":6311.0} +{"session_id":"sess-0acac5cd0e97","input_length":2144,"output_length":72,"hash_ids":[3948097,3948098,3948099,3948100,3948101],"delay":2062.3} +{"session_id":"sess-45301aeac92d","input_length":29092,"output_length":63,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,3952032,3952033,3952034,3952035,3952036],"timestamp":0.0,"group_id":1} +{"session_id":"sess-45301aeac92d","input_length":1398,"output_length":377,"hash_ids":[3952037,3952038,3952039],"delay":687.5} +{"session_id":"sess-45301aeac92d","input_length":1566,"output_length":55,"hash_ids":[3952040,3952041,3952042,3952043],"delay":30893.4} +{"session_id":"sess-45301aeac92d","input_length":581,"output_length":206,"hash_ids":[3952044,3952045],"delay":823.8} +{"session_id":"sess-45301aeac92d","input_length":1021,"output_length":225,"hash_ids":[3952046,3952047],"delay":547.6} +{"session_id":"sess-45301aeac92d","input_length":395,"output_length":110,"hash_ids":[3952048],"delay":5217.1} +{"session_id":"sess-45301aeac92d","input_length":2723,"output_length":426,"hash_ids":[3952049,3952050,3952051,3952052,3952053,3952054],"delay":653.1} +{"session_id":"sess-45301aeac92d","input_length":2595,"output_length":142,"hash_ids":[3952055,3952056,3952057,3952058,3952059,3952060],"delay":2844.0} +{"session_id":"sess-45301aeac92d","input_length":2747,"output_length":128,"hash_ids":[3952061,3952062,3952063,3952064,3952065,3952066],"delay":2313.7} +{"session_id":"sess-45301aeac92d","input_length":479,"output_length":160,"hash_ids":[3952067],"delay":238.0} +{"session_id":"sess-45301aeac92d","input_length":731,"output_length":685,"hash_ids":[3952068,3952069],"delay":705.3} +{"session_id":"sess-45301aeac92d","input_length":404,"output_length":55,"hash_ids":[3952070],"delay":495.7} +{"session_id":"sess-45301aeac92d","input_length":115,"output_length":167,"hash_ids":[3952071],"delay":2884.5} +{"session_id":"sess-45301aeac92d","input_length":2290,"output_length":240,"hash_ids":[3952072,3952073,3952074,3952075,3952076],"delay":463.2} +{"session_id":"sess-45301aeac92d","input_length":2408,"output_length":102,"hash_ids":[3952077,3952078,3952079,3952080,3952081],"delay":3966.1} +{"session_id":"sess-45301aeac92d","input_length":812,"output_length":1170,"hash_ids":[3952082,3952083],"delay":17783.0} +{"session_id":"sess-45301aeac92d","input_length":933,"output_length":282,"hash_ids":[3952084,3952085],"delay":174.4} +{"session_id":"sess-45301aeac92d","input_length":2195,"output_length":1108,"hash_ids":[3952086,3952087,3952088,3952089,3952090],"delay":312.5} +{"session_id":"sess-45301aeac92d","input_length":166,"output_length":898,"hash_ids":[3952091],"delay":263.6} +{"session_id":"sess-45301aeac92d","input_length":955,"output_length":367,"hash_ids":[3952092,3952093],"delay":79.6} +{"session_id":"sess-e53f2afdb74d","input_length":31473,"output_length":521,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,3956032,3956033,3956034,3956035,3956036,3956037,3956038,3956039,3956040,3956041],"timestamp":0.0,"group_id":2} +{"session_id":"sess-e53f2afdb74d","input_length":647,"output_length":41,"hash_ids":[3956042,3956043],"delay":2481.8} +{"session_id":"sess-e53f2afdb74d","input_length":1034,"output_length":263,"hash_ids":[3956044,3956045,3956046],"delay":2281.5} +{"session_id":"sess-e53f2afdb74d","input_length":637,"output_length":654,"hash_ids":[3956047,3956048],"delay":2206.7} +{"session_id":"sess-e53f2afdb74d","input_length":1627,"output_length":148,"hash_ids":[3956049,3956050,3956051,3956052],"delay":572.5} +{"session_id":"sess-e53f2afdb74d","input_length":338,"output_length":145,"hash_ids":[3956053],"delay":1114.1} +{"session_id":"sess-e53f2afdb74d","input_length":576,"output_length":149,"hash_ids":[3956054,3956055],"delay":914.1} +{"session_id":"sess-e53f2afdb74d","input_length":1701,"output_length":632,"hash_ids":[3956056,3956057,3956058,3956059],"delay":8275.9} +{"session_id":"sess-e53f2afdb74d","input_length":292,"output_length":43,"hash_ids":[3956060],"delay":953.8} +{"session_id":"sess-0254c76e7f87","input_length":26285,"output_length":105,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651],"timestamp":0.0,"group_id":8} +{"session_id":"sess-0254c76e7f87","input_length":342,"output_length":79,"hash_ids":[3956061],"delay":9188.4} +{"session_id":"sess-0254c76e7f87","input_length":427,"output_length":175,"hash_ids":[3956062],"delay":2437.2} +{"session_id":"sess-0254c76e7f87","input_length":774,"output_length":187,"hash_ids":[3956063,3956064],"delay":5731.4} +{"session_id":"sess-0254c76e7f87","input_length":1344,"output_length":263,"hash_ids":[3956065,3956066,3956067],"delay":780.9} +{"session_id":"sess-0254c76e7f87","input_length":1313,"output_length":578,"hash_ids":[3956068,3956069,3956070],"delay":2817.4} +{"session_id":"sess-0254c76e7f87","input_length":462,"output_length":218,"hash_ids":[3956071],"delay":2260.9} +{"session_id":"sess-0254c76e7f87","input_length":1632,"output_length":30,"hash_ids":[3956072,3956073,3956074,3956075],"delay":484.8} +{"session_id":"sess-0254c76e7f87","input_length":2168,"output_length":80,"hash_ids":[3956076,3956077,3956078,3956079,3956080],"delay":1153.3} +{"session_id":"sess-0254c76e7f87","input_length":708,"output_length":265,"hash_ids":[3956081,3956082],"delay":1077.6} +{"session_id":"sess-0254c76e7f87","input_length":1343,"output_length":379,"hash_ids":[3956083,3956084,3956085],"delay":2279.3} +{"session_id":"sess-0254c76e7f87","input_length":1168,"output_length":127,"hash_ids":[3956086,3956087,3956088],"delay":2519.9} +{"session_id":"sess-0254c76e7f87","input_length":1407,"output_length":424,"hash_ids":[3956089,3956090,3956091],"delay":10497.7} +{"session_id":"sess-58d72bda413b","input_length":29035,"output_length":216,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,3964032,3964033,3964034,3964035,3964036],"timestamp":0.0,"group_id":9} +{"session_id":"sess-58d72bda413b","input_length":590,"output_length":105,"hash_ids":[3964037,3964038],"delay":2196.5} +{"session_id":"sess-58d72bda413b","input_length":1112,"output_length":228,"hash_ids":[3964039,3964040,3964041],"delay":2500.6} +{"session_id":"sess-77e1dfc3677a","input_length":30710,"output_length":434,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,3968032,3968033,3968034,3968035,3968036,3968037,3968038,3968039],"timestamp":0.0,"group_id":5} +{"session_id":"sess-77e1dfc3677a","input_length":731,"output_length":175,"hash_ids":[3968040,3968041],"delay":6164.9} +{"session_id":"sess-77e1dfc3677a","input_length":518,"output_length":920,"hash_ids":[3968042,3968043],"delay":221.3} +{"session_id":"sess-77e1dfc3677a","input_length":1522,"output_length":242,"hash_ids":[3968044,3968045,3968046],"delay":744.3} +{"session_id":"sess-77e1dfc3677a","input_length":274,"output_length":262,"hash_ids":[3968047],"delay":1862.5} +{"session_id":"sess-77e1dfc3677a","input_length":2196,"output_length":81,"hash_ids":[3968048,3968049,3968050,3968051,3968052],"delay":30226.1} +{"session_id":"sess-77e1dfc3677a","input_length":2315,"output_length":111,"hash_ids":[3968053,3968054,3968055,3968056,3968057],"delay":298.2} +{"session_id":"sess-77e1dfc3677a","input_length":834,"output_length":883,"hash_ids":[3968058,3968059],"delay":33191.1} +{"session_id":"sess-77e1dfc3677a","input_length":394,"output_length":517,"hash_ids":[3968060],"delay":353.8} +{"session_id":"sess-77e1dfc3677a","input_length":2076,"output_length":889,"hash_ids":[3968061,3968062,3968063,3968064,3968065],"delay":3903.9} +{"session_id":"sess-77e1dfc3677a","input_length":231,"output_length":278,"hash_ids":[3968066],"delay":877.1} +{"session_id":"sess-77e1dfc3677a","input_length":1283,"output_length":126,"hash_ids":[3968067,3968068,3968069],"delay":3293.0} +{"session_id":"sess-77e1dfc3677a","input_length":1424,"output_length":141,"hash_ids":[3968070,3968071,3968072],"delay":27939.1} +{"session_id":"sess-77e1dfc3677a","input_length":2129,"output_length":511,"hash_ids":[3968073,3968074,3968075,3968076,3968077],"delay":821.5} +{"session_id":"sess-77e1dfc3677a","input_length":787,"output_length":275,"hash_ids":[3968078,3968079],"delay":1070.6} +{"session_id":"sess-77e1dfc3677a","input_length":667,"output_length":475,"hash_ids":[3968080,3968081],"delay":289.6} +{"session_id":"sess-77e1dfc3677a","input_length":892,"output_length":246,"hash_ids":[3968082,3968083],"delay":236.9} +{"session_id":"sess-77e1dfc3677a","input_length":2771,"output_length":250,"hash_ids":[3968084,3968085,3968086,3968087,3968088,3968089],"delay":729.9} +{"session_id":"sess-77e1dfc3677a","input_length":2676,"output_length":217,"hash_ids":[3968090,3968091,3968092,3968093,3968094,3968095],"delay":621.7} +{"session_id":"sess-77e1dfc3677a","input_length":2034,"output_length":193,"hash_ids":[3968096,3968097,3968098,3968099],"delay":134.0} +{"session_id":"sess-77e1dfc3677a","input_length":665,"output_length":960,"hash_ids":[3968100,3968101],"delay":8669.5} +{"session_id":"sess-cc44e4c76642","input_length":26676,"output_length":623,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,3972032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-cc44e4c76642","input_length":1050,"output_length":88,"hash_ids":[3972033,3972034,3972035],"delay":10579.6} +{"session_id":"sess-ce8a870d6910","input_length":27010,"output_length":77,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3976032],"timestamp":0.0,"group_id":16} +{"session_id":"sess-ce8a870d6910","input_length":830,"output_length":228,"hash_ids":[3976033,3976034],"delay":37053.4} +{"session_id":"sess-ce8a870d6910","input_length":351,"output_length":215,"hash_ids":[3976035],"delay":1479.9} +{"session_id":"sess-ce8a870d6910","input_length":1292,"output_length":180,"hash_ids":[3976036,3976037,3976038],"delay":2772.0} +{"session_id":"sess-ce8a870d6910","input_length":445,"output_length":315,"hash_ids":[3976039],"delay":1056.5} +{"session_id":"sess-ce8a870d6910","input_length":2489,"output_length":736,"hash_ids":[3976040,3976041,3976042,3976043,3976044],"delay":451.5} +{"session_id":"sess-ce8a870d6910","input_length":2040,"output_length":106,"hash_ids":[3976045,3976046,3976047,3976048],"delay":553.2} +{"session_id":"sess-ce8a870d6910","input_length":1055,"output_length":65,"hash_ids":[3976049,3976050,3976051],"delay":22904.7} +{"session_id":"sess-ce8a870d6910","input_length":878,"output_length":600,"hash_ids":[3976052,3976053],"delay":9926.0} +{"session_id":"sess-ce8a870d6910","input_length":474,"output_length":149,"hash_ids":[3976054],"delay":2027.2} +{"session_id":"sess-ce8a870d6910","input_length":1163,"output_length":496,"hash_ids":[3976055,3976056,3976057],"delay":2603.3} +{"session_id":"sess-ce8a870d6910","input_length":956,"output_length":247,"hash_ids":[3976058,3976059],"delay":2878.8} +{"session_id":"sess-ce8a870d6910","input_length":1424,"output_length":470,"hash_ids":[3976060,3976061,3976062],"delay":277.6} +{"session_id":"sess-ce8a870d6910","input_length":216,"output_length":47,"hash_ids":[3976063],"delay":2251.2} +{"session_id":"sess-ce8a870d6910","input_length":1773,"output_length":163,"hash_ids":[3976064,3976065,3976066,3976067],"delay":7111.3} +{"session_id":"sess-ce8a870d6910","input_length":2609,"output_length":245,"hash_ids":[3976068,3976069,3976070,3976071,3976072,3976073],"delay":27830.8} +{"session_id":"sess-ce8a870d6910","input_length":160,"output_length":282,"hash_ids":[3976074],"delay":2206.6} +{"session_id":"sess-ce8a870d6910","input_length":245,"output_length":30,"hash_ids":[3976075],"delay":160.0} +{"session_id":"sess-ce8a870d6910","input_length":1136,"output_length":41,"hash_ids":[3976076,3976077,3976078],"delay":2425.0} +{"session_id":"sess-ce8a870d6910","input_length":2427,"output_length":405,"hash_ids":[3976079,3976080,3976081,3976082,3976083],"delay":858.4} +{"session_id":"sess-ce8a870d6910","input_length":2563,"output_length":559,"hash_ids":[3976084,3976085,3976086,3976087,3976088,3976089],"delay":118.8} +{"session_id":"sess-ce8a870d6910","input_length":653,"output_length":341,"hash_ids":[3976090,3976091],"delay":1577.5} +{"session_id":"sess-ce8a870d6910","input_length":2574,"output_length":638,"hash_ids":[3976092,3976093,3976094,3976095,3976096,3976097],"delay":8444.1} +{"session_id":"sess-ce8a870d6910","input_length":1322,"output_length":69,"hash_ids":[3976098,3976099,3976100],"delay":114.8} +{"session_id":"sess-ce8a870d6910","input_length":530,"output_length":639,"hash_ids":[3976101,3976102],"delay":202.0} +{"session_id":"sess-ce8a870d6910","input_length":325,"output_length":73,"hash_ids":[3976103],"delay":270.7} +{"session_id":"sess-ce8a870d6910","input_length":395,"output_length":67,"hash_ids":[3976104],"delay":276.9} +{"session_id":"sess-807b91014bc9","input_length":27912,"output_length":41,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,3980032,3980033,3980034],"timestamp":0.0,"group_id":6} +{"session_id":"sess-807b91014bc9","input_length":930,"output_length":87,"hash_ids":[3980035,3980036],"delay":22703.0} +{"session_id":"sess-807b91014bc9","input_length":436,"output_length":138,"hash_ids":[3980037],"delay":560.2} +{"session_id":"sess-807b91014bc9","input_length":2151,"output_length":209,"hash_ids":[3980038,3980039,3980040,3980041,3980042],"delay":1663.4} +{"session_id":"sess-807b91014bc9","input_length":1127,"output_length":398,"hash_ids":[3980043,3980044,3980045],"delay":899.4} +{"session_id":"sess-807b91014bc9","input_length":294,"output_length":111,"hash_ids":[3980046],"delay":229.5} +{"session_id":"sess-807b91014bc9","input_length":2086,"output_length":430,"hash_ids":[3980047,3980048,3980049,3980050,3980051],"delay":484.8} +{"session_id":"sess-807b91014bc9","input_length":1269,"output_length":269,"hash_ids":[3980052,3980053,3980054],"delay":889.7} +{"session_id":"sess-807b91014bc9","input_length":540,"output_length":446,"hash_ids":[3980055,3980056],"delay":45750.2} +{"session_id":"sess-807b91014bc9","input_length":345,"output_length":217,"hash_ids":[3980057],"delay":311.8} +{"session_id":"sess-807b91014bc9","input_length":1347,"output_length":235,"hash_ids":[3980058,3980059,3980060],"delay":947.7} +{"session_id":"sess-807b91014bc9","input_length":748,"output_length":831,"hash_ids":[3980061,3980062],"delay":1439.0} +{"session_id":"sess-807b91014bc9","input_length":352,"output_length":118,"hash_ids":[3980063],"delay":1101.3} +{"session_id":"sess-8173cbd577fe","input_length":26573,"output_length":30,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451],"timestamp":0.0,"group_id":42} +{"session_id":"sess-8173cbd577fe","input_length":1475,"output_length":1158,"hash_ids":[3980064,3980065,3980066],"delay":1932.2} +{"session_id":"sess-8173cbd577fe","input_length":801,"output_length":60,"hash_ids":[3980067,3980068],"delay":3039.4} +{"session_id":"sess-8173cbd577fe","input_length":840,"output_length":173,"hash_ids":[3980069,3980070],"delay":2872.9} +{"session_id":"sess-8173cbd577fe","input_length":1107,"output_length":439,"hash_ids":[3980071,3980072,3980073],"delay":12609.2} +{"session_id":"sess-8173cbd577fe","input_length":2416,"output_length":238,"hash_ids":[3980074,3980075,3980076,3980077,3980078],"delay":17648.0} +{"session_id":"sess-8173cbd577fe","input_length":559,"output_length":126,"hash_ids":[3980079,3980080],"delay":749.0} +{"session_id":"sess-8173cbd577fe","input_length":763,"output_length":227,"hash_ids":[3980081,3980082],"delay":1418.0} +{"session_id":"sess-8173cbd577fe","input_length":900,"output_length":252,"hash_ids":[3980083,3980084],"delay":1503.5} +{"session_id":"sess-8173cbd577fe","input_length":91,"output_length":436,"hash_ids":[3980085],"delay":300.3} +{"session_id":"sess-8173cbd577fe","input_length":436,"output_length":82,"hash_ids":[3980086],"delay":245.4} +{"session_id":"sess-8173cbd577fe","input_length":1864,"output_length":161,"hash_ids":[3980087,3980088,3980089,3980090],"delay":428.9} +{"session_id":"sess-8173cbd577fe","input_length":907,"output_length":125,"hash_ids":[3980091,3980092],"delay":725.9} +{"session_id":"sess-8173cbd577fe","input_length":287,"output_length":302,"hash_ids":[3980093],"delay":20894.4} +{"session_id":"sess-8173cbd577fe","input_length":2625,"output_length":197,"hash_ids":[3980094,3980095,3980096,3980097,3980098,3980099],"delay":447.9} +{"session_id":"sess-8173cbd577fe","input_length":893,"output_length":221,"hash_ids":[3980100,3980101],"delay":325.0} +{"session_id":"sess-8173cbd577fe","input_length":166,"output_length":571,"hash_ids":[3980102],"delay":509.9} +{"session_id":"sess-8173cbd577fe","input_length":512,"output_length":1204,"hash_ids":[3980103],"delay":1189.4} +{"session_id":"sess-8173cbd577fe","input_length":1527,"output_length":67,"hash_ids":[3980104,3980105,3980106],"delay":2874.6} +{"session_id":"sess-8173cbd577fe","input_length":476,"output_length":1297,"hash_ids":[3980107],"delay":1774.2} +{"session_id":"sess-8173cbd577fe","input_length":109,"output_length":82,"hash_ids":[3980108],"delay":9499.0} +{"session_id":"sess-8173cbd577fe","input_length":309,"output_length":151,"hash_ids":[3980109],"delay":1782.5} +{"session_id":"sess-8173cbd577fe","input_length":1625,"output_length":733,"hash_ids":[3980110,3980111,3980112,3980113],"delay":8072.6} +{"session_id":"sess-8173cbd577fe","input_length":356,"output_length":406,"hash_ids":[3980114],"delay":2961.5} +{"session_id":"sess-8173cbd577fe","input_length":1730,"output_length":77,"hash_ids":[3980115,3980116,3980117,3980118],"delay":1343.4} +{"session_id":"sess-15797a7a8871","input_length":34569,"output_length":451,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,3988032,3988033,3988034,3988035,3988036,3988037,3988038,3988039,3988040,3988041,3988042,3988043,3988044,3988045,3988046,3988047],"timestamp":0.0,"group_id":20} +{"session_id":"sess-15797a7a8871","input_length":803,"output_length":30,"hash_ids":[3988048,3988049],"delay":2315.7} +{"session_id":"sess-15797a7a8871","input_length":391,"output_length":145,"hash_ids":[3988050],"delay":771.8} +{"session_id":"sess-15797a7a8871","input_length":552,"output_length":186,"hash_ids":[3988051,3988052],"delay":759.4} +{"session_id":"sess-15797a7a8871","input_length":2418,"output_length":462,"hash_ids":[3988053,3988054,3988055,3988056,3988057],"delay":460.3} +{"session_id":"sess-15797a7a8871","input_length":508,"output_length":75,"hash_ids":[3988058],"delay":543.9} +{"session_id":"sess-15797a7a8871","input_length":392,"output_length":964,"hash_ids":[3988059],"delay":649.6} +{"session_id":"sess-15797a7a8871","input_length":415,"output_length":151,"hash_ids":[3988060],"delay":869.5} +{"session_id":"sess-15797a7a8871","input_length":1391,"output_length":255,"hash_ids":[3988061,3988062,3988063],"delay":39619.4} +{"session_id":"sess-15797a7a8871","input_length":197,"output_length":143,"hash_ids":[3988064],"delay":305.0} +{"session_id":"sess-15797a7a8871","input_length":1165,"output_length":118,"hash_ids":[3988065,3988066,3988067],"delay":4292.7} +{"session_id":"sess-15797a7a8871","input_length":593,"output_length":798,"hash_ids":[3988068,3988069],"delay":477.6} +{"session_id":"sess-15797a7a8871","input_length":602,"output_length":548,"hash_ids":[3988070,3988071],"delay":1684.4} +{"session_id":"sess-15797a7a8871","input_length":246,"output_length":953,"hash_ids":[3988072],"delay":1184.1} +{"session_id":"sess-15797a7a8871","input_length":1355,"output_length":258,"hash_ids":[3988073,3988074,3988075],"delay":6773.3} +{"session_id":"sess-15797a7a8871","input_length":334,"output_length":86,"hash_ids":[3988076],"delay":10938.1} +{"session_id":"sess-15797a7a8871","input_length":409,"output_length":113,"hash_ids":[3988077],"delay":1269.6} +{"session_id":"sess-15797a7a8871","input_length":2044,"output_length":995,"hash_ids":[3988078,3988079,3988080,3988081],"delay":1226.0} +{"session_id":"sess-15797a7a8871","input_length":244,"output_length":208,"hash_ids":[3988082],"delay":1058.0} +{"session_id":"sess-ef9626bbe8fb","input_length":27062,"output_length":758,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,3992032],"timestamp":0.0,"group_id":22} +{"session_id":"sess-ef9626bbe8fb","input_length":912,"output_length":254,"hash_ids":[3992033,3992034],"delay":4571.4} +{"session_id":"sess-ef9626bbe8fb","input_length":918,"output_length":43,"hash_ids":[3992035,3992036],"delay":1191.4} +{"session_id":"sess-ef9626bbe8fb","input_length":564,"output_length":137,"hash_ids":[3992037,3992038],"delay":2382.9} +{"session_id":"sess-ef9626bbe8fb","input_length":1816,"output_length":100,"hash_ids":[3992039,3992040,3992041,3992042],"delay":762.7} +{"session_id":"sess-ef9626bbe8fb","input_length":2385,"output_length":720,"hash_ids":[3992043,3992044,3992045,3992046,3992047],"delay":1207.5} +{"session_id":"sess-ef9626bbe8fb","input_length":646,"output_length":88,"hash_ids":[3992048,3992049],"delay":62602.5} +{"session_id":"sess-ef9626bbe8fb","input_length":1503,"output_length":446,"hash_ids":[3992050,3992051,3992052],"delay":690.6} +{"session_id":"sess-ef9626bbe8fb","input_length":1252,"output_length":44,"hash_ids":[3992053,3992054,3992055],"delay":722.7} +{"session_id":"sess-85d53a7bfbb3","input_length":36323,"output_length":43,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,3996032,3996033,3996034,3996035,3996036,3996037,3996038,3996039,3996040,3996041,3996042,3996043,3996044,3996045,3996046,3996047,3996048,3996049,3996050],"timestamp":0.0,"group_id":8} +{"session_id":"sess-85d53a7bfbb3","input_length":408,"output_length":88,"hash_ids":[3996051],"delay":2016.1} +{"session_id":"sess-85d53a7bfbb3","input_length":228,"output_length":283,"hash_ids":[3996052],"delay":708.0} +{"session_id":"sess-85d53a7bfbb3","input_length":1743,"output_length":422,"hash_ids":[3996053,3996054,3996055,3996056],"delay":684.8} +{"session_id":"sess-5d84d98ca620","input_length":35104,"output_length":204,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,4000032,4000033,4000034,4000035,4000036,4000037,4000038,4000039,4000040,4000041,4000042,4000043,4000044,4000045,4000046,4000047,4000048],"timestamp":0.0,"group_id":5} +{"session_id":"sess-07bb27a74515","input_length":26433,"output_length":320,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651],"timestamp":0.0,"group_id":3} +{"session_id":"sess-07bb27a74515","input_length":558,"output_length":395,"hash_ids":[4000049,4000050],"delay":472.8} +{"session_id":"sess-07bb27a74515","input_length":586,"output_length":146,"hash_ids":[4000051,4000052],"delay":10465.8} +{"session_id":"sess-07bb27a74515","input_length":912,"output_length":244,"hash_ids":[4000053,4000054],"delay":1217.3} +{"session_id":"sess-07bb27a74515","input_length":798,"output_length":916,"hash_ids":[4000055,4000056],"delay":1162.2} +{"session_id":"sess-07bb27a74515","input_length":1613,"output_length":38,"hash_ids":[4000057,4000058,4000059,4000060],"delay":2552.1} +{"session_id":"sess-07bb27a74515","input_length":1904,"output_length":116,"hash_ids":[4000061,4000062,4000063,4000064],"delay":1383.9} +{"session_id":"sess-07bb27a74515","input_length":495,"output_length":31,"hash_ids":[4000065],"delay":406.0} +{"session_id":"sess-07bb27a74515","input_length":1085,"output_length":264,"hash_ids":[4000066,4000067,4000068],"delay":3372.2} +{"session_id":"sess-07bb27a74515","input_length":595,"output_length":57,"hash_ids":[4000069,4000070],"delay":1226.3} +{"session_id":"sess-07bb27a74515","input_length":313,"output_length":341,"hash_ids":[4000071],"delay":17917.4} +{"session_id":"sess-07bb27a74515","input_length":473,"output_length":216,"hash_ids":[4000072],"delay":14833.9} +{"session_id":"sess-07bb27a74515","input_length":1083,"output_length":385,"hash_ids":[4000073,4000074,4000075],"delay":379.4} +{"session_id":"sess-07bb27a74515","input_length":442,"output_length":43,"hash_ids":[4000076],"delay":508.9} +{"session_id":"sess-07bb27a74515","input_length":1864,"output_length":487,"hash_ids":[4000077,4000078,4000079,4000080],"delay":1706.7} +{"session_id":"sess-07bb27a74515","input_length":681,"output_length":75,"hash_ids":[4000081,4000082],"delay":645.9} +{"session_id":"sess-07bb27a74515","input_length":1481,"output_length":151,"hash_ids":[4000083,4000084,4000085],"delay":368.1} +{"session_id":"sess-07bb27a74515","input_length":1846,"output_length":263,"hash_ids":[4000086,4000087,4000088,4000089],"delay":454.0} +{"session_id":"sess-07bb27a74515","input_length":284,"output_length":242,"hash_ids":[4000090],"delay":475.7} +{"session_id":"sess-07bb27a74515","input_length":108,"output_length":336,"hash_ids":[4000091],"delay":1305.7} +{"session_id":"sess-07bb27a74515","input_length":261,"output_length":30,"hash_ids":[4000092],"delay":1184.3} +{"session_id":"sess-07bb27a74515","input_length":246,"output_length":204,"hash_ids":[4000093],"delay":12709.6} +{"session_id":"sess-07bb27a74515","input_length":776,"output_length":84,"hash_ids":[4000094,4000095],"delay":1790.6} +{"session_id":"sess-07bb27a74515","input_length":812,"output_length":131,"hash_ids":[4000096,4000097],"delay":677.3} +{"session_id":"sess-07bb27a74515","input_length":1266,"output_length":310,"hash_ids":[4000098,4000099,4000100],"delay":886.9} +{"session_id":"sess-07bb27a74515","input_length":1036,"output_length":946,"hash_ids":[4000101,4000102,4000103],"delay":773.3} +{"session_id":"sess-07bb27a74515","input_length":938,"output_length":661,"hash_ids":[4000104,4000105],"delay":2958.3} +{"session_id":"sess-0fbd31b55630","input_length":27806,"output_length":141,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,4008032,4008033,4008034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-0fbd31b55630","input_length":1833,"output_length":144,"hash_ids":[4008035,4008036,4008037,4008038],"delay":1283.8} +{"session_id":"sess-0fbd31b55630","input_length":1027,"output_length":357,"hash_ids":[4008039,4008040,4008041],"delay":1432.8} +{"session_id":"sess-0fbd31b55630","input_length":498,"output_length":99,"hash_ids":[4008042],"delay":5480.0} +{"session_id":"sess-0fbd31b55630","input_length":866,"output_length":766,"hash_ids":[4008043,4008044],"delay":3080.2} +{"session_id":"sess-0fbd31b55630","input_length":1818,"output_length":154,"hash_ids":[4008045,4008046,4008047,4008048],"delay":230.7} +{"session_id":"sess-0fbd31b55630","input_length":1862,"output_length":146,"hash_ids":[4008049,4008050,4008051,4008052],"delay":26019.2} +{"session_id":"sess-0fbd31b55630","input_length":643,"output_length":165,"hash_ids":[4008053,4008054],"delay":378.1} +{"session_id":"sess-0fbd31b55630","input_length":1918,"output_length":76,"hash_ids":[4008055,4008056,4008057,4008058],"delay":3652.9} +{"session_id":"sess-0fbd31b55630","input_length":415,"output_length":408,"hash_ids":[4008059],"delay":1704.5} +{"session_id":"sess-0fbd31b55630","input_length":1712,"output_length":274,"hash_ids":[4008060,4008061,4008062,4008063],"delay":1181.2} +{"session_id":"sess-0fbd31b55630","input_length":1207,"output_length":81,"hash_ids":[4008064,4008065,4008066],"delay":190.3} +{"session_id":"sess-0fbd31b55630","input_length":952,"output_length":292,"hash_ids":[4008067,4008068],"delay":740.8} +{"session_id":"sess-0fbd31b55630","input_length":165,"output_length":220,"hash_ids":[4008069],"delay":646.4} +{"session_id":"sess-0fbd31b55630","input_length":408,"output_length":60,"hash_ids":[4008070],"delay":5306.1} +{"session_id":"sess-0fbd31b55630","input_length":126,"output_length":501,"hash_ids":[4008071],"delay":195.8} +{"session_id":"sess-0fbd31b55630","input_length":506,"output_length":88,"hash_ids":[4008072],"delay":4677.8} +{"session_id":"sess-0fbd31b55630","input_length":519,"output_length":324,"hash_ids":[4008073,4008074],"delay":3549.4} +{"session_id":"sess-936ee46abbc4","input_length":29436,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4012032,4012033,4012034,4012035,4012036,4012037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-936ee46abbc4","input_length":1197,"output_length":203,"hash_ids":[4012038,4012039,4012040],"delay":1302.2} +{"session_id":"sess-936ee46abbc4","input_length":1085,"output_length":805,"hash_ids":[4012041,4012042,4012043],"delay":5436.4} +{"session_id":"sess-936ee46abbc4","input_length":1247,"output_length":88,"hash_ids":[4012044,4012045,4012046],"delay":2068.0} +{"session_id":"sess-936ee46abbc4","input_length":282,"output_length":132,"hash_ids":[4012047],"delay":557.3} +{"session_id":"sess-936ee46abbc4","input_length":2214,"output_length":90,"hash_ids":[4012048,4012049,4012050,4012051,4012052],"delay":625.9} +{"session_id":"sess-936ee46abbc4","input_length":633,"output_length":103,"hash_ids":[4012053,4012054],"delay":22701.8} +{"session_id":"sess-936ee46abbc4","input_length":1322,"output_length":119,"hash_ids":[4012055,4012056,4012057],"delay":635.3} +{"session_id":"sess-936ee46abbc4","input_length":460,"output_length":576,"hash_ids":[4012058],"delay":10829.9} +{"session_id":"sess-936ee46abbc4","input_length":1696,"output_length":330,"hash_ids":[4012059,4012060,4012061,4012062],"delay":4096.1} +{"session_id":"sess-936ee46abbc4","input_length":178,"output_length":236,"hash_ids":[4012063],"delay":2804.9} +{"session_id":"sess-936ee46abbc4","input_length":403,"output_length":94,"hash_ids":[4012064],"delay":1227.4} +{"session_id":"sess-936ee46abbc4","input_length":2959,"output_length":90,"hash_ids":[4012065,4012066,4012067,4012068,4012069,4012070],"delay":221.7} +{"session_id":"sess-936ee46abbc4","input_length":1034,"output_length":84,"hash_ids":[4012071,4012072,4012073],"delay":7524.8} +{"session_id":"sess-936ee46abbc4","input_length":443,"output_length":197,"hash_ids":[4012074],"delay":129.7} +{"session_id":"sess-936ee46abbc4","input_length":1363,"output_length":130,"hash_ids":[4012075,4012076,4012077],"delay":34631.5} +{"session_id":"sess-936ee46abbc4","input_length":943,"output_length":1158,"hash_ids":[4012078,4012079],"delay":1641.6} +{"session_id":"sess-936ee46abbc4","input_length":238,"output_length":111,"hash_ids":[4012080],"delay":1200.7} +{"session_id":"sess-936ee46abbc4","input_length":377,"output_length":551,"hash_ids":[4012081],"delay":2057.1} +{"session_id":"sess-936ee46abbc4","input_length":694,"output_length":368,"hash_ids":[4012082,4012083],"delay":4870.4} +{"session_id":"sess-936ee46abbc4","input_length":487,"output_length":168,"hash_ids":[4012084],"delay":5252.5} +{"session_id":"sess-936ee46abbc4","input_length":958,"output_length":99,"hash_ids":[4012085,4012086],"delay":912.7} +{"session_id":"sess-936ee46abbc4","input_length":516,"output_length":77,"hash_ids":[4012087,4012088],"delay":750.1} +{"session_id":"sess-936ee46abbc4","input_length":1709,"output_length":289,"hash_ids":[4012089,4012090,4012091,4012092],"delay":28180.5} +{"session_id":"sess-936ee46abbc4","input_length":1730,"output_length":204,"hash_ids":[4012093,4012094,4012095,4012096],"delay":1440.1} +{"session_id":"sess-936ee46abbc4","input_length":160,"output_length":314,"hash_ids":[4012097],"delay":822.6} +{"session_id":"sess-936ee46abbc4","input_length":875,"output_length":86,"hash_ids":[4012098,4012099],"delay":1026.9} +{"session_id":"sess-936ee46abbc4","input_length":829,"output_length":210,"hash_ids":[4012100,4012101],"delay":538.9} +{"session_id":"sess-936ee46abbc4","input_length":799,"output_length":239,"hash_ids":[4012102,4012103],"delay":516.8} +{"session_id":"sess-936ee46abbc4","input_length":769,"output_length":93,"hash_ids":[4012104,4012105],"delay":549.1} +{"session_id":"sess-936ee46abbc4","input_length":1051,"output_length":600,"hash_ids":[4012106,4012107,4012108],"delay":7993.6} +{"session_id":"sess-58e0de99e501","input_length":26792,"output_length":217,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,4016032],"timestamp":0.0,"group_id":49} +{"session_id":"sess-58e0de99e501","input_length":1162,"output_length":395,"hash_ids":[4016033,4016034,4016035],"delay":4995.3} +{"session_id":"sess-58e0de99e501","input_length":1630,"output_length":486,"hash_ids":[4016036,4016037,4016038,4016039],"delay":6122.5} +{"session_id":"sess-58e0de99e501","input_length":815,"output_length":47,"hash_ids":[4016040,4016041],"delay":33347.9} +{"session_id":"sess-58e0de99e501","input_length":844,"output_length":50,"hash_ids":[4016042,4016043],"delay":2221.3} +{"session_id":"sess-58e0de99e501","input_length":1372,"output_length":195,"hash_ids":[4016044,4016045,4016046],"delay":826.1} +{"session_id":"sess-58e0de99e501","input_length":1011,"output_length":324,"hash_ids":[4016047,4016048],"delay":888.3} +{"session_id":"sess-58e0de99e501","input_length":697,"output_length":30,"hash_ids":[4016049,4016050],"delay":1006.3} +{"session_id":"sess-58e0de99e501","input_length":91,"output_length":80,"hash_ids":[4016051],"delay":1275.3} +{"session_id":"sess-58e0de99e501","input_length":122,"output_length":288,"hash_ids":[4016052],"delay":20369.3} +{"session_id":"sess-58e0de99e501","input_length":1086,"output_length":265,"hash_ids":[4016053,4016054,4016055],"delay":408.5} +{"session_id":"sess-58e0de99e501","input_length":1223,"output_length":206,"hash_ids":[4016056,4016057,4016058],"delay":16623.5} +{"session_id":"sess-58e0de99e501","input_length":492,"output_length":61,"hash_ids":[4016059],"delay":880.2} +{"session_id":"sess-58e0de99e501","input_length":2209,"output_length":1251,"hash_ids":[4016060,4016061,4016062,4016063,4016064],"delay":14709.2} +{"session_id":"sess-58e0de99e501","input_length":1252,"output_length":209,"hash_ids":[4016065,4016066,4016067],"delay":4690.5} +{"session_id":"sess-58e0de99e501","input_length":293,"output_length":145,"hash_ids":[4016068],"delay":308.1} +{"session_id":"sess-58e0de99e501","input_length":651,"output_length":1194,"hash_ids":[4016069,4016070],"delay":226.8} +{"session_id":"sess-58e0de99e501","input_length":1351,"output_length":218,"hash_ids":[4016071,4016072,4016073],"delay":1434.9} +{"session_id":"sess-58e0de99e501","input_length":1102,"output_length":965,"hash_ids":[4016074,4016075,4016076],"delay":922.8} +{"session_id":"sess-58e0de99e501","input_length":2150,"output_length":503,"hash_ids":[4016077,4016078,4016079,4016080,4016081],"delay":8081.2} +{"session_id":"sess-58e0de99e501","input_length":348,"output_length":88,"hash_ids":[4016082],"delay":1680.8} +{"session_id":"sess-58e0de99e501","input_length":597,"output_length":271,"hash_ids":[4016083,4016084],"delay":1657.4} +{"session_id":"sess-58e0de99e501","input_length":2356,"output_length":757,"hash_ids":[4016085,4016086,4016087,4016088,4016089],"delay":2216.3} +{"session_id":"sess-58e0de99e501","input_length":1355,"output_length":47,"hash_ids":[4016090,4016091,4016092],"delay":4173.6} +{"session_id":"sess-58e0de99e501","input_length":2964,"output_length":172,"hash_ids":[4016093,4016094,4016095,4016096,4016097,4016098],"delay":178.1} +{"session_id":"sess-58e0de99e501","input_length":2033,"output_length":919,"hash_ids":[4016099,4016100,4016101,4016102],"delay":537.2} +{"session_id":"sess-eb3a81eef221","input_length":30869,"output_length":491,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,4020032,4020033,4020034,4020035,4020036,4020037,4020038,4020039,4020040],"timestamp":0.0,"group_id":2} +{"session_id":"sess-eb3a81eef221","input_length":1891,"output_length":314,"hash_ids":[4020041,4020042,4020043,4020044],"delay":2351.9} +{"session_id":"sess-eb3a81eef221","input_length":715,"output_length":220,"hash_ids":[4020045,4020046],"delay":3216.4} +{"session_id":"sess-eb3a81eef221","input_length":2110,"output_length":232,"hash_ids":[4020047,4020048,4020049,4020050,4020051],"delay":10663.0} +{"session_id":"sess-eb3a81eef221","input_length":435,"output_length":160,"hash_ids":[4020052],"delay":356.7} +{"session_id":"sess-eb3a81eef221","input_length":472,"output_length":118,"hash_ids":[4020053],"delay":491.3} +{"session_id":"sess-eb3a81eef221","input_length":2691,"output_length":442,"hash_ids":[4020054,4020055,4020056,4020057,4020058,4020059],"delay":1420.2} +{"session_id":"sess-eb3a81eef221","input_length":346,"output_length":224,"hash_ids":[4020060],"delay":367.0} +{"session_id":"sess-eb3a81eef221","input_length":1289,"output_length":415,"hash_ids":[4020061,4020062,4020063],"delay":1795.0} +{"session_id":"sess-eb3a81eef221","input_length":390,"output_length":449,"hash_ids":[4020064],"delay":442.2} +{"session_id":"sess-eb3a81eef221","input_length":1217,"output_length":113,"hash_ids":[4020065,4020066,4020067],"delay":1067.1} +{"session_id":"sess-eb3a81eef221","input_length":1245,"output_length":240,"hash_ids":[4020068,4020069,4020070],"delay":1207.8} +{"session_id":"sess-eb3a81eef221","input_length":253,"output_length":202,"hash_ids":[4020071],"delay":487.3} +{"session_id":"sess-eb3a81eef221","input_length":1866,"output_length":579,"hash_ids":[4020072,4020073,4020074,4020075],"delay":2637.2} +{"session_id":"sess-b5899cf8f1ca","input_length":26391,"output_length":162,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851],"timestamp":0.0,"group_id":44} +{"session_id":"sess-b5899cf8f1ca","input_length":2167,"output_length":503,"hash_ids":[4020076,4020077,4020078,4020079,4020080],"delay":18813.4} +{"session_id":"sess-b5899cf8f1ca","input_length":756,"output_length":201,"hash_ids":[4020081,4020082],"delay":713.0} +{"session_id":"sess-b5899cf8f1ca","input_length":2861,"output_length":687,"hash_ids":[4020083,4020084,4020085,4020086,4020087,4020088],"delay":4725.9} +{"session_id":"sess-b5899cf8f1ca","input_length":296,"output_length":60,"hash_ids":[4020089],"delay":2892.8} +{"session_id":"sess-b5899cf8f1ca","input_length":397,"output_length":274,"hash_ids":[4020090],"delay":16340.4} +{"session_id":"sess-b5899cf8f1ca","input_length":604,"output_length":100,"hash_ids":[4020091,4020092],"delay":6254.3} +{"session_id":"sess-b5899cf8f1ca","input_length":1065,"output_length":57,"hash_ids":[4020093,4020094,4020095],"delay":806.4} +{"session_id":"sess-b5899cf8f1ca","input_length":1503,"output_length":124,"hash_ids":[4020096,4020097,4020098],"delay":1100.4} +{"session_id":"sess-b5899cf8f1ca","input_length":410,"output_length":157,"hash_ids":[4020099],"delay":1780.9} +{"session_id":"sess-b5899cf8f1ca","input_length":647,"output_length":1222,"hash_ids":[4020100,4020101],"delay":4855.3} +{"session_id":"sess-b5899cf8f1ca","input_length":406,"output_length":719,"hash_ids":[4020102],"delay":3655.9} +{"session_id":"sess-b5899cf8f1ca","input_length":682,"output_length":82,"hash_ids":[4020103,4020104],"delay":1167.3} +{"session_id":"sess-b5899cf8f1ca","input_length":770,"output_length":884,"hash_ids":[4020105,4020106],"delay":607.7} +{"session_id":"sess-b5899cf8f1ca","input_length":646,"output_length":114,"hash_ids":[4020107,4020108],"delay":17760.2} +{"session_id":"sess-b5899cf8f1ca","input_length":975,"output_length":803,"hash_ids":[4020109,4020110],"delay":3473.6} +{"session_id":"sess-b5899cf8f1ca","input_length":1244,"output_length":109,"hash_ids":[4020111,4020112,4020113],"delay":1031.0} +{"session_id":"sess-b5899cf8f1ca","input_length":1850,"output_length":157,"hash_ids":[4020114,4020115,4020116,4020117],"delay":539.8} +{"session_id":"sess-b5899cf8f1ca","input_length":983,"output_length":73,"hash_ids":[4020118,4020119],"delay":2123.3} +{"session_id":"sess-b5899cf8f1ca","input_length":166,"output_length":142,"hash_ids":[4020120],"delay":190.4} +{"session_id":"sess-b5899cf8f1ca","input_length":986,"output_length":704,"hash_ids":[4020121,4020122],"delay":415.2} +{"session_id":"sess-b5899cf8f1ca","input_length":928,"output_length":1007,"hash_ids":[4020123,4020124],"delay":1987.8} +{"session_id":"sess-b5899cf8f1ca","input_length":2375,"output_length":577,"hash_ids":[4020125,4020126,4020127,4020128,4020129],"delay":14311.2} +{"session_id":"sess-b5899cf8f1ca","input_length":502,"output_length":70,"hash_ids":[4020130],"delay":760.2} +{"session_id":"sess-b5899cf8f1ca","input_length":2773,"output_length":252,"hash_ids":[4020131,4020132,4020133,4020134,4020135,4020136],"delay":605.6} +{"session_id":"sess-b5899cf8f1ca","input_length":510,"output_length":317,"hash_ids":[4020137],"delay":872.3} +{"session_id":"sess-b5899cf8f1ca","input_length":1486,"output_length":206,"hash_ids":[4020138,4020139,4020140],"delay":5245.4} +{"session_id":"sess-f9cc081a2b9c","input_length":31325,"output_length":567,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,4028032,4028033,4028034,4028035,4028036,4028037,4028038,4028039,4028040,4028041],"timestamp":0.0,"group_id":10} +{"session_id":"sess-f9cc081a2b9c","input_length":110,"output_length":49,"hash_ids":[4028042],"delay":6035.0} +{"session_id":"sess-f9cc081a2b9c","input_length":639,"output_length":199,"hash_ids":[4028043,4028044],"delay":693.1} +{"session_id":"sess-f9cc081a2b9c","input_length":2632,"output_length":129,"hash_ids":[4028045,4028046,4028047,4028048,4028049,4028050],"delay":726.6} +{"session_id":"sess-f9cc081a2b9c","input_length":297,"output_length":65,"hash_ids":[4028051],"delay":25652.0} +{"session_id":"sess-f9cc081a2b9c","input_length":1267,"output_length":171,"hash_ids":[4028052,4028053,4028054],"delay":664.8} +{"session_id":"sess-f9cc081a2b9c","input_length":617,"output_length":140,"hash_ids":[4028055,4028056],"delay":913.3} +{"session_id":"sess-f9cc081a2b9c","input_length":548,"output_length":30,"hash_ids":[4028057,4028058],"delay":6653.0} +{"session_id":"sess-f9cc081a2b9c","input_length":294,"output_length":103,"hash_ids":[4028059],"delay":596.6} +{"session_id":"sess-f9cc081a2b9c","input_length":2263,"output_length":164,"hash_ids":[4028060,4028061,4028062,4028063,4028064],"delay":842.9} +{"session_id":"sess-f9cc081a2b9c","input_length":1333,"output_length":556,"hash_ids":[4028065,4028066,4028067],"delay":3351.8} +{"session_id":"sess-f9cc081a2b9c","input_length":668,"output_length":104,"hash_ids":[4028068,4028069],"delay":888.5} +{"session_id":"sess-f9cc081a2b9c","input_length":912,"output_length":322,"hash_ids":[4028070,4028071],"delay":920.2} +{"session_id":"sess-f9cc081a2b9c","input_length":2956,"output_length":130,"hash_ids":[4028072,4028073,4028074,4028075,4028076,4028077],"delay":7318.4} +{"session_id":"sess-f9cc081a2b9c","input_length":1466,"output_length":178,"hash_ids":[4028078,4028079,4028080],"delay":612.2} +{"session_id":"sess-f9cc081a2b9c","input_length":980,"output_length":75,"hash_ids":[4028081,4028082],"delay":24920.2} +{"session_id":"sess-f9cc081a2b9c","input_length":650,"output_length":233,"hash_ids":[4028083,4028084],"delay":957.9} +{"session_id":"sess-f9cc081a2b9c","input_length":457,"output_length":55,"hash_ids":[4028085],"delay":2625.4} +{"session_id":"sess-f9cc081a2b9c","input_length":1766,"output_length":214,"hash_ids":[4028086,4028087,4028088,4028089],"delay":2100.4} +{"session_id":"sess-f9cc081a2b9c","input_length":1459,"output_length":208,"hash_ids":[4028090,4028091,4028092],"delay":3924.7} +{"session_id":"sess-f9cc081a2b9c","input_length":587,"output_length":83,"hash_ids":[4028093,4028094],"delay":343.8} +{"session_id":"sess-eb8912f9d545","input_length":27832,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4032032,4032033,4032034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-eb8912f9d545","input_length":1788,"output_length":116,"hash_ids":[4032035,4032036,4032037,4032038],"delay":2067.8} +{"session_id":"sess-eb8912f9d545","input_length":1425,"output_length":809,"hash_ids":[4032039,4032040,4032041],"delay":18975.3} +{"session_id":"sess-eb8912f9d545","input_length":2142,"output_length":372,"hash_ids":[4032042,4032043,4032044,4032045,4032046],"delay":770.7} +{"session_id":"sess-eb8912f9d545","input_length":873,"output_length":461,"hash_ids":[4032047,4032048],"delay":8660.0} +{"session_id":"sess-eb8912f9d545","input_length":438,"output_length":248,"hash_ids":[4032049],"delay":3768.8} +{"session_id":"sess-eb8912f9d545","input_length":1998,"output_length":193,"hash_ids":[4032050,4032051,4032052,4032053],"delay":354.0} +{"session_id":"sess-eb8912f9d545","input_length":545,"output_length":278,"hash_ids":[4032054,4032055],"delay":1203.9} +{"session_id":"sess-eb8912f9d545","input_length":1297,"output_length":363,"hash_ids":[4032056,4032057,4032058],"delay":5030.8} +{"session_id":"sess-eb8912f9d545","input_length":944,"output_length":473,"hash_ids":[4032059,4032060],"delay":1273.4} +{"session_id":"sess-eb8912f9d545","input_length":663,"output_length":222,"hash_ids":[4032061,4032062],"delay":277.6} +{"session_id":"sess-eb8912f9d545","input_length":430,"output_length":473,"hash_ids":[4032063],"delay":291.5} +{"session_id":"sess-eb8912f9d545","input_length":337,"output_length":84,"hash_ids":[4032064],"delay":7079.2} +{"session_id":"sess-eb8912f9d545","input_length":1170,"output_length":281,"hash_ids":[4032065,4032066,4032067],"delay":1347.1} +{"session_id":"sess-eb8912f9d545","input_length":1674,"output_length":221,"hash_ids":[4032068,4032069,4032070,4032071],"delay":443.4} +{"session_id":"sess-eb8912f9d545","input_length":1536,"output_length":132,"hash_ids":[4032072,4032073,4032074],"delay":1348.8} +{"session_id":"sess-eb8912f9d545","input_length":346,"output_length":279,"hash_ids":[4032075],"delay":209.8} +{"session_id":"sess-eb8912f9d545","input_length":865,"output_length":218,"hash_ids":[4032076,4032077],"delay":783.7} +{"session_id":"sess-eb8912f9d545","input_length":625,"output_length":607,"hash_ids":[4032078,4032079],"delay":10107.8} +{"session_id":"sess-eb8912f9d545","input_length":729,"output_length":210,"hash_ids":[4032080,4032081],"delay":251.4} +{"session_id":"sess-eb8912f9d545","input_length":287,"output_length":69,"hash_ids":[4032082],"delay":368.4} +{"session_id":"sess-eb8912f9d545","input_length":1334,"output_length":275,"hash_ids":[4032083,4032084,4032085],"delay":515.6} +{"session_id":"sess-eb8912f9d545","input_length":1660,"output_length":833,"hash_ids":[4032086,4032087,4032088,4032089],"delay":3272.4} +{"session_id":"sess-eb8912f9d545","input_length":579,"output_length":211,"hash_ids":[4032090,4032091],"delay":30945.0} +{"session_id":"sess-eb8912f9d545","input_length":1572,"output_length":337,"hash_ids":[4032092,4032093,4032094,4032095],"delay":733.5} +{"session_id":"sess-eb8912f9d545","input_length":1686,"output_length":112,"hash_ids":[4032096,4032097,4032098,4032099],"delay":1756.7} +{"session_id":"sess-eb8912f9d545","input_length":465,"output_length":172,"hash_ids":[4032100],"delay":185.3} +{"session_id":"sess-eb8912f9d545","input_length":524,"output_length":128,"hash_ids":[4032101,4032102],"delay":232.2} +{"session_id":"sess-eb8912f9d545","input_length":552,"output_length":638,"hash_ids":[4032103,4032104],"delay":307.0} +{"session_id":"sess-b2c13e5e4a40","input_length":26300,"output_length":284,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051],"timestamp":0.0,"group_id":40} +{"session_id":"sess-b2c13e5e4a40","input_length":1575,"output_length":95,"hash_ids":[4032105,4032106,4032107,4032108],"delay":1876.7} +{"session_id":"sess-b2c13e5e4a40","input_length":830,"output_length":623,"hash_ids":[4032109,4032110],"delay":13500.7} +{"session_id":"sess-b2c13e5e4a40","input_length":403,"output_length":70,"hash_ids":[4032111],"delay":25700.2} +{"session_id":"sess-b2c13e5e4a40","input_length":2136,"output_length":345,"hash_ids":[4032112,4032113,4032114,4032115,4032116],"delay":380.9} +{"session_id":"sess-b2c13e5e4a40","input_length":1013,"output_length":74,"hash_ids":[4032117,4032118],"delay":17189.8} +{"session_id":"sess-b2c13e5e4a40","input_length":1299,"output_length":401,"hash_ids":[4032119,4032120,4032121],"delay":15117.7} +{"session_id":"sess-b2c13e5e4a40","input_length":808,"output_length":471,"hash_ids":[4032122,4032123],"delay":858.9} +{"session_id":"sess-b2c13e5e4a40","input_length":841,"output_length":176,"hash_ids":[4032124,4032125],"delay":5810.4} +{"session_id":"sess-b2c13e5e4a40","input_length":863,"output_length":39,"hash_ids":[4032126,4032127],"delay":5747.3} +{"session_id":"sess-b2c13e5e4a40","input_length":1259,"output_length":1144,"hash_ids":[4032128,4032129,4032130],"delay":647.5} +{"session_id":"sess-b2c13e5e4a40","input_length":455,"output_length":40,"hash_ids":[4032131],"delay":1074.8} +{"session_id":"sess-b2c13e5e4a40","input_length":131,"output_length":396,"hash_ids":[4032132],"delay":2939.2} +{"session_id":"sess-b2c13e5e4a40","input_length":179,"output_length":214,"hash_ids":[4032133],"delay":1141.1} +{"session_id":"sess-b2c13e5e4a40","input_length":2519,"output_length":192,"hash_ids":[4032134,4032135,4032136,4032137,4032138],"delay":185.6} +{"session_id":"sess-b2c13e5e4a40","input_length":944,"output_length":192,"hash_ids":[4032139,4032140],"delay":15213.1} +{"session_id":"sess-b2c13e5e4a40","input_length":1225,"output_length":54,"hash_ids":[4032141,4032142,4032143],"delay":300.9} +{"session_id":"sess-b2c13e5e4a40","input_length":868,"output_length":254,"hash_ids":[4032144,4032145],"delay":843.9} +{"session_id":"sess-b2c13e5e4a40","input_length":691,"output_length":47,"hash_ids":[4032146,4032147],"delay":1014.8} +{"session_id":"sess-b2c13e5e4a40","input_length":91,"output_length":217,"hash_ids":[4032148],"delay":221.6} +{"session_id":"sess-b2c13e5e4a40","input_length":1700,"output_length":555,"hash_ids":[4032149,4032150,4032151,4032152],"delay":680.7} +{"session_id":"sess-b2c13e5e4a40","input_length":1064,"output_length":63,"hash_ids":[4032153,4032154,4032155],"delay":4588.4} +{"session_id":"sess-b2c13e5e4a40","input_length":828,"output_length":142,"hash_ids":[4032156,4032157],"delay":407.7} +{"session_id":"sess-b2c13e5e4a40","input_length":2784,"output_length":325,"hash_ids":[4032158,4032159,4032160,4032161,4032162,4032163],"delay":385.2} +{"session_id":"sess-b2c13e5e4a40","input_length":1208,"output_length":248,"hash_ids":[4032164,4032165,4032166],"delay":18614.7} +{"session_id":"sess-b2c13e5e4a40","input_length":655,"output_length":421,"hash_ids":[4032167,4032168],"delay":4159.0} +{"session_id":"sess-b2c13e5e4a40","input_length":1300,"output_length":50,"hash_ids":[4032169,4032170,4032171],"delay":5849.4} +{"session_id":"sess-b2c13e5e4a40","input_length":837,"output_length":262,"hash_ids":[4032172,4032173],"delay":6278.6} +{"session_id":"sess-b2c13e5e4a40","input_length":372,"output_length":45,"hash_ids":[4032174],"delay":353.9} +{"session_id":"sess-b2c13e5e4a40","input_length":1646,"output_length":171,"hash_ids":[4032175,4032176,4032177,4032178],"delay":6483.2} +{"session_id":"sess-266629294800","input_length":28553,"output_length":70,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,4040032,4040033,4040034,4040035],"timestamp":0.0,"group_id":2} +{"session_id":"sess-266629294800","input_length":2134,"output_length":79,"hash_ids":[4040036,4040037,4040038,4040039,4040040],"delay":832.3} +{"session_id":"sess-266629294800","input_length":1071,"output_length":383,"hash_ids":[4040041,4040042,4040043],"delay":1622.9} +{"session_id":"sess-266629294800","input_length":101,"output_length":252,"hash_ids":[4040044],"delay":422.3} +{"session_id":"sess-266629294800","input_length":1041,"output_length":393,"hash_ids":[4040045,4040046,4040047],"delay":916.1} +{"session_id":"sess-266629294800","input_length":680,"output_length":138,"hash_ids":[4040048,4040049],"delay":649.3} +{"session_id":"sess-266629294800","input_length":1201,"output_length":85,"hash_ids":[4040050,4040051,4040052],"delay":484.6} +{"session_id":"sess-266629294800","input_length":658,"output_length":70,"hash_ids":[4040053,4040054],"delay":2183.2} +{"session_id":"sess-266629294800","input_length":506,"output_length":110,"hash_ids":[4040055],"delay":6737.4} +{"session_id":"sess-266629294800","input_length":1135,"output_length":344,"hash_ids":[4040056,4040057,4040058],"delay":11539.1} +{"session_id":"sess-266629294800","input_length":1744,"output_length":1129,"hash_ids":[4040059,4040060,4040061,4040062],"delay":8376.0} +{"session_id":"sess-266629294800","input_length":781,"output_length":69,"hash_ids":[4040063,4040064],"delay":17080.6} +{"session_id":"sess-266629294800","input_length":767,"output_length":167,"hash_ids":[4040065,4040066],"delay":1802.8} +{"session_id":"sess-266629294800","input_length":693,"output_length":142,"hash_ids":[4040067,4040068],"delay":3629.1} +{"session_id":"sess-266629294800","input_length":821,"output_length":49,"hash_ids":[4040069,4040070],"delay":3008.4} +{"session_id":"sess-266629294800","input_length":443,"output_length":173,"hash_ids":[4040071],"delay":883.2} +{"session_id":"sess-266629294800","input_length":543,"output_length":203,"hash_ids":[4040072,4040073],"delay":3067.3} +{"session_id":"sess-266629294800","input_length":2158,"output_length":228,"hash_ids":[4040074,4040075,4040076,4040077,4040078],"delay":22039.4} +{"session_id":"sess-266629294800","input_length":138,"output_length":390,"hash_ids":[4040079],"delay":1140.8} +{"session_id":"sess-266629294800","input_length":161,"output_length":181,"hash_ids":[4040080],"delay":13653.4} +{"session_id":"sess-8c58208f2d01","input_length":27247,"output_length":367,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4044032,4044033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-8c58208f2d01","input_length":2373,"output_length":560,"hash_ids":[4044034,4044035,4044036,4044037,4044038],"delay":79375.1} +{"session_id":"sess-f386389adcca","input_length":27058,"output_length":180,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4048032],"timestamp":0.0,"group_id":0} +{"session_id":"sess-f386389adcca","input_length":318,"output_length":107,"hash_ids":[4048033],"delay":2408.3} +{"session_id":"sess-f386389adcca","input_length":435,"output_length":185,"hash_ids":[4048034],"delay":444.7} +{"session_id":"sess-f386389adcca","input_length":504,"output_length":39,"hash_ids":[4048035],"delay":1299.7} +{"session_id":"sess-f386389adcca","input_length":446,"output_length":288,"hash_ids":[4048036],"delay":1330.7} +{"session_id":"sess-f386389adcca","input_length":791,"output_length":822,"hash_ids":[4048037,4048038],"delay":16529.2} +{"session_id":"sess-f386389adcca","input_length":1915,"output_length":260,"hash_ids":[4048039,4048040,4048041,4048042],"delay":56009.7} +{"session_id":"sess-f386389adcca","input_length":409,"output_length":326,"hash_ids":[4048043],"delay":773.9} +{"session_id":"sess-f386389adcca","input_length":533,"output_length":72,"hash_ids":[4048044,4048045],"delay":1901.8} +{"session_id":"sess-f386389adcca","input_length":2287,"output_length":433,"hash_ids":[4048046,4048047,4048048,4048049,4048050],"delay":211.4} +{"session_id":"sess-f386389adcca","input_length":657,"output_length":460,"hash_ids":[4048051,4048052],"delay":1478.2} +{"session_id":"sess-f386389adcca","input_length":101,"output_length":150,"hash_ids":[4048053],"delay":38648.2} +{"session_id":"sess-f386389adcca","input_length":155,"output_length":92,"hash_ids":[4048054],"delay":16071.4} +{"session_id":"sess-f386389adcca","input_length":749,"output_length":168,"hash_ids":[4048055,4048056],"delay":175.1} +{"session_id":"sess-f386389adcca","input_length":469,"output_length":548,"hash_ids":[4048057],"delay":798.7} +{"session_id":"sess-f386389adcca","input_length":1065,"output_length":140,"hash_ids":[4048058,4048059,4048060],"delay":623.1} +{"session_id":"sess-f386389adcca","input_length":791,"output_length":83,"hash_ids":[4048061,4048062],"delay":2678.5} +{"session_id":"sess-df9bab00fec9","input_length":35517,"output_length":844,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4052032,4052033,4052034,4052035,4052036,4052037,4052038,4052039,4052040,4052041,4052042,4052043,4052044,4052045,4052046,4052047,4052048,4052049],"timestamp":0.0,"group_id":0} +{"session_id":"sess-df9bab00fec9","input_length":1962,"output_length":421,"hash_ids":[4052050,4052051,4052052,4052053],"delay":516.3} +{"session_id":"sess-df9bab00fec9","input_length":1278,"output_length":133,"hash_ids":[4052054,4052055,4052056],"delay":247.3} +{"session_id":"sess-df9bab00fec9","input_length":753,"output_length":243,"hash_ids":[4052057,4052058],"delay":5915.6} +{"session_id":"sess-df9bab00fec9","input_length":151,"output_length":30,"hash_ids":[4052059],"delay":545.4} +{"session_id":"sess-df9bab00fec9","input_length":517,"output_length":167,"hash_ids":[4052060,4052061],"delay":19583.3} +{"session_id":"sess-df9bab00fec9","input_length":765,"output_length":32,"hash_ids":[4052062,4052063],"delay":826.2} +{"session_id":"sess-df9bab00fec9","input_length":1002,"output_length":54,"hash_ids":[4052064,4052065],"delay":8057.8} +{"session_id":"sess-df9bab00fec9","input_length":913,"output_length":105,"hash_ids":[4052066,4052067],"delay":907.9} +{"session_id":"sess-df9bab00fec9","input_length":619,"output_length":424,"hash_ids":[4052068,4052069],"delay":295.9} +{"session_id":"sess-df9bab00fec9","input_length":841,"output_length":522,"hash_ids":[4052070,4052071],"delay":1256.8} +{"session_id":"sess-df9bab00fec9","input_length":1147,"output_length":113,"hash_ids":[4052072,4052073,4052074],"delay":731.3} +{"session_id":"sess-df9bab00fec9","input_length":474,"output_length":303,"hash_ids":[4052075],"delay":4602.1} +{"session_id":"sess-df9bab00fec9","input_length":2588,"output_length":301,"hash_ids":[4052076,4052077,4052078,4052079,4052080,4052081],"delay":17148.9} +{"session_id":"sess-df9bab00fec9","input_length":687,"output_length":609,"hash_ids":[4052082,4052083],"delay":7707.5} +{"session_id":"sess-df9bab00fec9","input_length":241,"output_length":102,"hash_ids":[4052084],"delay":181.8} +{"session_id":"sess-df9bab00fec9","input_length":2006,"output_length":499,"hash_ids":[4052085,4052086,4052087,4052088],"delay":1609.7} +{"session_id":"sess-df9bab00fec9","input_length":618,"output_length":72,"hash_ids":[4052089,4052090],"delay":478.4} +{"session_id":"sess-df9bab00fec9","input_length":1009,"output_length":91,"hash_ids":[4052091,4052092],"delay":11299.7} +{"session_id":"sess-df9bab00fec9","input_length":1235,"output_length":453,"hash_ids":[4052093,4052094,4052095],"delay":911.3} +{"session_id":"sess-df9bab00fec9","input_length":1797,"output_length":80,"hash_ids":[4052096,4052097,4052098,4052099],"delay":275.2} +{"session_id":"sess-892d0236df8d","input_length":27000,"output_length":511,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,4056032],"timestamp":0.0,"group_id":25} +{"session_id":"sess-892d0236df8d","input_length":976,"output_length":493,"hash_ids":[4056033,4056034],"delay":23230.9} +{"session_id":"sess-892d0236df8d","input_length":1995,"output_length":937,"hash_ids":[4056035,4056036,4056037,4056038],"delay":356.5} +{"session_id":"sess-892d0236df8d","input_length":400,"output_length":79,"hash_ids":[4056039],"delay":1483.6} +{"session_id":"sess-892d0236df8d","input_length":2360,"output_length":614,"hash_ids":[4056040,4056041,4056042,4056043,4056044],"delay":17527.7} +{"session_id":"sess-892d0236df8d","input_length":315,"output_length":104,"hash_ids":[4056045],"delay":2735.3} +{"session_id":"sess-892d0236df8d","input_length":1986,"output_length":251,"hash_ids":[4056046,4056047,4056048,4056049],"delay":32069.5} +{"session_id":"sess-892d0236df8d","input_length":643,"output_length":179,"hash_ids":[4056050,4056051],"delay":6407.9} +{"session_id":"sess-892d0236df8d","input_length":2433,"output_length":197,"hash_ids":[4056052,4056053,4056054,4056055,4056056],"delay":2854.0} +{"session_id":"sess-892d0236df8d","input_length":1591,"output_length":61,"hash_ids":[4056057,4056058,4056059,4056060],"delay":6618.7} +{"session_id":"sess-892d0236df8d","input_length":1424,"output_length":62,"hash_ids":[4056061,4056062,4056063],"delay":22365.2} +{"session_id":"sess-892d0236df8d","input_length":506,"output_length":85,"hash_ids":[4056064],"delay":324.6} +{"session_id":"sess-892d0236df8d","input_length":133,"output_length":391,"hash_ids":[4056065],"delay":2249.7} +{"session_id":"sess-892d0236df8d","input_length":458,"output_length":90,"hash_ids":[4056066],"delay":263.6} +{"session_id":"sess-892d0236df8d","input_length":296,"output_length":258,"hash_ids":[4056067],"delay":9485.4} +{"session_id":"sess-892d0236df8d","input_length":910,"output_length":30,"hash_ids":[4056068,4056069],"delay":256.8} +{"session_id":"sess-892d0236df8d","input_length":2238,"output_length":184,"hash_ids":[4056070,4056071,4056072,4056073,4056074],"delay":497.1} +{"session_id":"sess-892d0236df8d","input_length":2650,"output_length":144,"hash_ids":[4056075,4056076,4056077,4056078,4056079,4056080],"delay":1422.4} +{"session_id":"sess-892d0236df8d","input_length":1367,"output_length":463,"hash_ids":[4056081,4056082,4056083],"delay":1766.8} +{"session_id":"sess-892d0236df8d","input_length":1170,"output_length":97,"hash_ids":[4056084,4056085,4056086],"delay":3128.1} +{"session_id":"sess-2c3e0ce602b1","input_length":27497,"output_length":507,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4060032,4060033],"timestamp":0.0,"group_id":0} +{"session_id":"sess-2c3e0ce602b1","input_length":375,"output_length":230,"hash_ids":[4060034],"delay":2854.9} +{"session_id":"sess-2c3e0ce602b1","input_length":2620,"output_length":121,"hash_ids":[4060035,4060036,4060037,4060038,4060039,4060040],"delay":18718.2} +{"session_id":"sess-2c3e0ce602b1","input_length":639,"output_length":109,"hash_ids":[4060041,4060042],"delay":10216.9} +{"session_id":"sess-2c3e0ce602b1","input_length":295,"output_length":149,"hash_ids":[4060043],"delay":4687.0} +{"session_id":"sess-2c3e0ce602b1","input_length":1198,"output_length":105,"hash_ids":[4060044,4060045,4060046],"delay":14535.7} +{"session_id":"sess-2c3e0ce602b1","input_length":127,"output_length":313,"hash_ids":[4060047],"delay":1419.6} +{"session_id":"sess-2c3e0ce602b1","input_length":686,"output_length":125,"hash_ids":[4060048,4060049],"delay":690.4} +{"session_id":"sess-2c3e0ce602b1","input_length":339,"output_length":247,"hash_ids":[4060050],"delay":2222.5} +{"session_id":"sess-2c3e0ce602b1","input_length":672,"output_length":126,"hash_ids":[4060051,4060052],"delay":12855.6} +{"session_id":"sess-2c3e0ce602b1","input_length":1636,"output_length":1267,"hash_ids":[4060053,4060054,4060055,4060056],"delay":1164.1} +{"session_id":"sess-2c3e0ce602b1","input_length":1051,"output_length":38,"hash_ids":[4060057,4060058,4060059],"delay":19090.9} +{"session_id":"sess-2c3e0ce602b1","input_length":1908,"output_length":342,"hash_ids":[4060060,4060061,4060062,4060063],"delay":4924.4} +{"session_id":"sess-2c3e0ce602b1","input_length":1215,"output_length":268,"hash_ids":[4060064,4060065,4060066],"delay":1088.8} +{"session_id":"sess-2c3e0ce602b1","input_length":1785,"output_length":234,"hash_ids":[4060067,4060068,4060069,4060070],"delay":955.5} +{"session_id":"sess-2c3e0ce602b1","input_length":143,"output_length":134,"hash_ids":[4060071],"delay":5317.2} +{"session_id":"sess-2c3e0ce602b1","input_length":532,"output_length":243,"hash_ids":[4060072,4060073],"delay":1629.8} +{"session_id":"sess-2c3e0ce602b1","input_length":441,"output_length":297,"hash_ids":[4060074],"delay":399.8} +{"session_id":"sess-2c3e0ce602b1","input_length":445,"output_length":203,"hash_ids":[4060075],"delay":17354.3} +{"session_id":"sess-2c3e0ce602b1","input_length":880,"output_length":157,"hash_ids":[4060076,4060077],"delay":588.3} +{"session_id":"sess-2c3e0ce602b1","input_length":285,"output_length":30,"hash_ids":[4060078],"delay":228.6} +{"session_id":"sess-2c3e0ce602b1","input_length":776,"output_length":97,"hash_ids":[4060079,4060080],"delay":563.4} +{"session_id":"sess-2c3e0ce602b1","input_length":472,"output_length":124,"hash_ids":[4060081],"delay":697.5} +{"session_id":"sess-a4518238091b","input_length":28503,"output_length":84,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,4064032,4064033,4064034,4064035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-a4518238091b","input_length":496,"output_length":57,"hash_ids":[4064036],"delay":22464.3} +{"session_id":"sess-a4518238091b","input_length":552,"output_length":298,"hash_ids":[4064037,4064038],"delay":951.1} +{"session_id":"sess-a4518238091b","input_length":697,"output_length":105,"hash_ids":[4064039,4064040],"delay":532.3} +{"session_id":"sess-a4518238091b","input_length":1472,"output_length":169,"hash_ids":[4064041,4064042,4064043],"delay":990.3} +{"session_id":"sess-a4518238091b","input_length":530,"output_length":318,"hash_ids":[4064044,4064045],"delay":1729.8} +{"session_id":"sess-a4518238091b","input_length":868,"output_length":33,"hash_ids":[4064046,4064047],"delay":772.1} +{"session_id":"sess-a4518238091b","input_length":726,"output_length":63,"hash_ids":[4064048,4064049],"delay":30257.8} +{"session_id":"sess-a4518238091b","input_length":738,"output_length":690,"hash_ids":[4064050,4064051],"delay":1017.3} +{"session_id":"sess-a4518238091b","input_length":2210,"output_length":209,"hash_ids":[4064052,4064053,4064054,4064055,4064056],"delay":2109.4} +{"session_id":"sess-a4518238091b","input_length":1512,"output_length":217,"hash_ids":[4064057,4064058,4064059],"delay":1340.8} +{"session_id":"sess-a4518238091b","input_length":636,"output_length":362,"hash_ids":[4064060,4064061],"delay":58114.7} +{"session_id":"sess-a4518238091b","input_length":319,"output_length":258,"hash_ids":[4064062],"delay":1203.5} +{"session_id":"sess-a4518238091b","input_length":681,"output_length":68,"hash_ids":[4064063,4064064],"delay":12899.5} +{"session_id":"sess-a4518238091b","input_length":643,"output_length":769,"hash_ids":[4064065,4064066],"delay":1618.0} +{"session_id":"sess-a4518238091b","input_length":594,"output_length":124,"hash_ids":[4064067,4064068],"delay":1030.8} +{"session_id":"sess-a4518238091b","input_length":1689,"output_length":68,"hash_ids":[4064069,4064070,4064071,4064072],"delay":4378.2} +{"session_id":"sess-a4518238091b","input_length":958,"output_length":288,"hash_ids":[4064073,4064074],"delay":353.4} +{"session_id":"sess-a4518238091b","input_length":2148,"output_length":459,"hash_ids":[4064075,4064076,4064077,4064078,4064079],"delay":1450.6} +{"session_id":"sess-a4518238091b","input_length":304,"output_length":149,"hash_ids":[4064080],"delay":384.4} +{"session_id":"sess-a4518238091b","input_length":322,"output_length":258,"hash_ids":[4064081],"delay":745.2} +{"session_id":"sess-a4518238091b","input_length":1320,"output_length":221,"hash_ids":[4064082,4064083,4064084],"delay":1253.2} +{"session_id":"sess-a4518238091b","input_length":358,"output_length":83,"hash_ids":[4064085],"delay":516.3} +{"session_id":"sess-a4518238091b","input_length":683,"output_length":1067,"hash_ids":[4064086,4064087],"delay":692.7} +{"session_id":"sess-a4518238091b","input_length":1207,"output_length":302,"hash_ids":[4064088,4064089,4064090],"delay":432.4} +{"session_id":"sess-a4518238091b","input_length":528,"output_length":542,"hash_ids":[4064091,4064092],"delay":1347.8} +{"session_id":"sess-a4518238091b","input_length":1383,"output_length":749,"hash_ids":[4064093,4064094,4064095],"delay":369.1} +{"session_id":"sess-a4518238091b","input_length":265,"output_length":351,"hash_ids":[4064096],"delay":1568.3} +{"session_id":"sess-a4518238091b","input_length":938,"output_length":76,"hash_ids":[4064097,4064098],"delay":10042.1} +{"session_id":"sess-a4518238091b","input_length":505,"output_length":1080,"hash_ids":[4064099],"delay":14265.5} +{"session_id":"sess-a4518238091b","input_length":555,"output_length":219,"hash_ids":[4064100,4064101],"delay":128.3} +{"session_id":"sess-a4518238091b","input_length":136,"output_length":1418,"hash_ids":[4064102],"delay":519.4} +{"session_id":"sess-d671e350b3ce","input_length":35954,"output_length":655,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4068032,4068033,4068034,4068035,4068036,4068037,4068038,4068039,4068040,4068041,4068042,4068043,4068044,4068045,4068046,4068047,4068048,4068049,4068050],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d671e350b3ce","input_length":1485,"output_length":117,"hash_ids":[4068051,4068052,4068053],"delay":356.7} +{"session_id":"sess-d671e350b3ce","input_length":321,"output_length":940,"hash_ids":[4068054],"delay":5927.0} +{"session_id":"sess-d671e350b3ce","input_length":2613,"output_length":159,"hash_ids":[4068055,4068056,4068057,4068058,4068059,4068060],"delay":1119.7} +{"session_id":"sess-d671e350b3ce","input_length":1315,"output_length":46,"hash_ids":[4068061,4068062,4068063],"delay":2068.0} +{"session_id":"sess-d671e350b3ce","input_length":2659,"output_length":87,"hash_ids":[4068064,4068065,4068066,4068067,4068068,4068069],"delay":13565.1} +{"session_id":"sess-d671e350b3ce","input_length":2420,"output_length":865,"hash_ids":[4068070,4068071,4068072,4068073,4068074],"delay":1787.6} +{"session_id":"sess-d671e350b3ce","input_length":411,"output_length":229,"hash_ids":[4068075],"delay":834.3} +{"session_id":"sess-d671e350b3ce","input_length":227,"output_length":424,"hash_ids":[4068076],"delay":346.1} +{"session_id":"sess-d671e350b3ce","input_length":2087,"output_length":337,"hash_ids":[4068077,4068078,4068079,4068080,4068081],"delay":15439.8} +{"session_id":"sess-d671e350b3ce","input_length":617,"output_length":719,"hash_ids":[4068082,4068083],"delay":1477.0} +{"session_id":"sess-d671e350b3ce","input_length":1182,"output_length":240,"hash_ids":[4068084,4068085,4068086],"delay":269.7} +{"session_id":"sess-d671e350b3ce","input_length":89,"output_length":67,"hash_ids":[4068087],"delay":2369.8} +{"session_id":"sess-d671e350b3ce","input_length":1074,"output_length":246,"hash_ids":[4068088,4068089,4068090],"delay":491.5} +{"session_id":"sess-d671e350b3ce","input_length":664,"output_length":339,"hash_ids":[4068091,4068092],"delay":415.7} +{"session_id":"sess-d671e350b3ce","input_length":2321,"output_length":91,"hash_ids":[4068093,4068094,4068095,4068096,4068097],"delay":394.2} +{"session_id":"sess-d671e350b3ce","input_length":1478,"output_length":118,"hash_ids":[4068098,4068099,4068100],"delay":4264.6} +{"session_id":"sess-d671e350b3ce","input_length":773,"output_length":81,"hash_ids":[4068101,4068102],"delay":631.4} +{"session_id":"sess-d671e350b3ce","input_length":884,"output_length":71,"hash_ids":[4068103,4068104],"delay":1003.2} +{"session_id":"sess-beeeef3bc0a4","input_length":28076,"output_length":40,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,4072032,4072033,4072034],"timestamp":0.0,"group_id":2} +{"session_id":"sess-beeeef3bc0a4","input_length":317,"output_length":184,"hash_ids":[4072035],"delay":5310.0} +{"session_id":"sess-beeeef3bc0a4","input_length":1441,"output_length":1058,"hash_ids":[4072036,4072037,4072038],"delay":8036.1} +{"session_id":"sess-beeeef3bc0a4","input_length":1135,"output_length":58,"hash_ids":[4072039,4072040,4072041],"delay":24595.7} +{"session_id":"sess-beeeef3bc0a4","input_length":671,"output_length":53,"hash_ids":[4072042,4072043],"delay":13780.7} +{"session_id":"sess-beeeef3bc0a4","input_length":324,"output_length":43,"hash_ids":[4072044],"delay":385.3} +{"session_id":"sess-beeeef3bc0a4","input_length":1860,"output_length":63,"hash_ids":[4072045,4072046,4072047,4072048],"delay":2509.9} +{"session_id":"sess-beeeef3bc0a4","input_length":574,"output_length":1014,"hash_ids":[4072049,4072050],"delay":14951.2} +{"session_id":"sess-beeeef3bc0a4","input_length":196,"output_length":106,"hash_ids":[4072051],"delay":11067.6} +{"session_id":"sess-beeeef3bc0a4","input_length":2804,"output_length":357,"hash_ids":[4072052,4072053,4072054,4072055,4072056,4072057],"delay":563.5} +{"session_id":"sess-beeeef3bc0a4","input_length":2058,"output_length":205,"hash_ids":[4072058,4072059,4072060,4072061,4072062],"delay":546.8} +{"session_id":"sess-beeeef3bc0a4","input_length":1751,"output_length":97,"hash_ids":[4072063,4072064,4072065,4072066],"delay":802.0} +{"session_id":"sess-beeeef3bc0a4","input_length":498,"output_length":295,"hash_ids":[4072067],"delay":2484.1} +{"session_id":"sess-beeeef3bc0a4","input_length":1409,"output_length":512,"hash_ids":[4072068,4072069,4072070],"delay":296.9} +{"session_id":"sess-beeeef3bc0a4","input_length":1078,"output_length":132,"hash_ids":[4072071,4072072,4072073],"delay":1327.7} +{"session_id":"sess-beeeef3bc0a4","input_length":282,"output_length":148,"hash_ids":[4072074],"delay":225.0} +{"session_id":"sess-beeeef3bc0a4","input_length":2618,"output_length":1349,"hash_ids":[4072075,4072076,4072077,4072078,4072079,4072080],"delay":507.8} +{"session_id":"sess-beeeef3bc0a4","input_length":2617,"output_length":230,"hash_ids":[4072081,4072082,4072083,4072084,4072085,4072086],"delay":170.8} +{"session_id":"sess-beeeef3bc0a4","input_length":1699,"output_length":891,"hash_ids":[4072087,4072088,4072089,4072090],"delay":331.1} +{"session_id":"sess-beeeef3bc0a4","input_length":584,"output_length":117,"hash_ids":[4072091,4072092],"delay":9117.3} +{"session_id":"sess-beeeef3bc0a4","input_length":560,"output_length":151,"hash_ids":[4072093,4072094],"delay":15731.4} +{"session_id":"sess-beeeef3bc0a4","input_length":273,"output_length":280,"hash_ids":[4072095],"delay":1218.4} +{"session_id":"sess-beeeef3bc0a4","input_length":173,"output_length":206,"hash_ids":[4072096],"delay":418.6} +{"session_id":"sess-beeeef3bc0a4","input_length":1142,"output_length":436,"hash_ids":[4072097,4072098,4072099],"delay":644.3} +{"session_id":"sess-beeeef3bc0a4","input_length":432,"output_length":979,"hash_ids":[4072100],"delay":1927.0} +{"session_id":"sess-d99cf29065f4","input_length":27987,"output_length":44,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,4076032,4076033,4076034],"timestamp":0.0,"group_id":9} +{"session_id":"sess-d99cf29065f4","input_length":993,"output_length":50,"hash_ids":[4076035,4076036],"delay":8675.8} +{"session_id":"sess-d99cf29065f4","input_length":2262,"output_length":679,"hash_ids":[4076037,4076038,4076039,4076040,4076041],"delay":674.3} +{"session_id":"sess-d99cf29065f4","input_length":829,"output_length":837,"hash_ids":[4076042,4076043],"delay":1265.2} +{"session_id":"sess-d99cf29065f4","input_length":286,"output_length":157,"hash_ids":[4076044],"delay":1117.3} +{"session_id":"sess-d99cf29065f4","input_length":2401,"output_length":611,"hash_ids":[4076045,4076046,4076047,4076048,4076049],"delay":9068.7} +{"session_id":"sess-d99cf29065f4","input_length":369,"output_length":84,"hash_ids":[4076050],"delay":2877.3} +{"session_id":"sess-d99cf29065f4","input_length":713,"output_length":78,"hash_ids":[4076051,4076052],"delay":428.4} +{"session_id":"sess-d99cf29065f4","input_length":561,"output_length":85,"hash_ids":[4076053,4076054],"delay":14694.6} +{"session_id":"sess-d99cf29065f4","input_length":1958,"output_length":128,"hash_ids":[4076055,4076056,4076057,4076058],"delay":10973.9} +{"session_id":"sess-d99cf29065f4","input_length":384,"output_length":136,"hash_ids":[4076059],"delay":1190.8} +{"session_id":"sess-d99cf29065f4","input_length":1053,"output_length":149,"hash_ids":[4076060,4076061,4076062],"delay":2324.5} +{"session_id":"sess-d99cf29065f4","input_length":820,"output_length":1096,"hash_ids":[4076063,4076064],"delay":2057.8} +{"session_id":"sess-d99cf29065f4","input_length":226,"output_length":164,"hash_ids":[4076065],"delay":1079.4} +{"session_id":"sess-d99cf29065f4","input_length":2115,"output_length":124,"hash_ids":[4076066,4076067,4076068,4076069,4076070],"delay":2574.9} +{"session_id":"sess-d99cf29065f4","input_length":2172,"output_length":93,"hash_ids":[4076071,4076072,4076073,4076074,4076075],"delay":3875.9} +{"session_id":"sess-d99cf29065f4","input_length":702,"output_length":45,"hash_ids":[4076076,4076077],"delay":1056.9} +{"session_id":"sess-d99cf29065f4","input_length":2006,"output_length":461,"hash_ids":[4076078,4076079,4076080,4076081],"delay":572.1} +{"session_id":"sess-d99cf29065f4","input_length":339,"output_length":84,"hash_ids":[4076082],"delay":607.5} +{"session_id":"sess-d99cf29065f4","input_length":851,"output_length":57,"hash_ids":[4076083,4076084],"delay":16840.3} +{"session_id":"sess-d99cf29065f4","input_length":743,"output_length":198,"hash_ids":[4076085,4076086],"delay":1020.8} +{"session_id":"sess-d99cf29065f4","input_length":2203,"output_length":645,"hash_ids":[4076087,4076088,4076089,4076090,4076091],"delay":184.2} +{"session_id":"sess-d99cf29065f4","input_length":322,"output_length":40,"hash_ids":[4076092],"delay":6776.1} +{"session_id":"sess-d99cf29065f4","input_length":235,"output_length":158,"hash_ids":[4076093],"delay":6448.7} +{"session_id":"sess-d99cf29065f4","input_length":99,"output_length":436,"hash_ids":[4076094],"delay":19001.9} +{"session_id":"sess-d99cf29065f4","input_length":299,"output_length":199,"hash_ids":[4076095],"delay":496.3} +{"session_id":"sess-d99cf29065f4","input_length":621,"output_length":374,"hash_ids":[4076096,4076097],"delay":624.3} +{"session_id":"sess-d99cf29065f4","input_length":893,"output_length":46,"hash_ids":[4076098,4076099],"delay":314.5} +{"session_id":"sess-d99cf29065f4","input_length":674,"output_length":534,"hash_ids":[4076100,4076101],"delay":11191.6} +{"session_id":"sess-d99cf29065f4","input_length":584,"output_length":218,"hash_ids":[4076102,4076103],"delay":5956.0} +{"session_id":"sess-d99cf29065f4","input_length":609,"output_length":64,"hash_ids":[4076104,4076105],"delay":1125.6} +{"session_id":"sess-d99cf29065f4","input_length":460,"output_length":181,"hash_ids":[4076106],"delay":358.5} +{"session_id":"sess-540adc156c0c","input_length":27538,"output_length":238,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,4080032,4080033],"timestamp":0.0,"group_id":12} +{"session_id":"sess-540adc156c0c","input_length":1885,"output_length":324,"hash_ids":[4080034,4080035,4080036,4080037],"delay":4139.3} +{"session_id":"sess-540adc156c0c","input_length":670,"output_length":392,"hash_ids":[4080038,4080039],"delay":647.8} +{"session_id":"sess-540adc156c0c","input_length":695,"output_length":290,"hash_ids":[4080040,4080041],"delay":940.6} +{"session_id":"sess-540adc156c0c","input_length":963,"output_length":121,"hash_ids":[4080042,4080043],"delay":3363.4} +{"session_id":"sess-540adc156c0c","input_length":1311,"output_length":64,"hash_ids":[4080044,4080045,4080046],"delay":1314.8} +{"session_id":"sess-540adc156c0c","input_length":153,"output_length":130,"hash_ids":[4080047],"delay":2834.1} +{"session_id":"sess-540adc156c0c","input_length":187,"output_length":727,"hash_ids":[4080048],"delay":1323.7} +{"session_id":"sess-540adc156c0c","input_length":539,"output_length":76,"hash_ids":[4080049,4080050],"delay":897.4} +{"session_id":"sess-540adc156c0c","input_length":1955,"output_length":793,"hash_ids":[4080051,4080052,4080053,4080054],"delay":4110.7} +{"session_id":"sess-540adc156c0c","input_length":2505,"output_length":172,"hash_ids":[4080055,4080056,4080057,4080058,4080059],"delay":885.9} +{"session_id":"sess-540adc156c0c","input_length":1960,"output_length":175,"hash_ids":[4080060,4080061,4080062,4080063],"delay":480.4} +{"session_id":"sess-540adc156c0c","input_length":2244,"output_length":312,"hash_ids":[4080064,4080065,4080066,4080067,4080068],"delay":6523.2} +{"session_id":"sess-540adc156c0c","input_length":670,"output_length":117,"hash_ids":[4080069,4080070],"delay":1753.5} +{"session_id":"sess-540adc156c0c","input_length":2287,"output_length":576,"hash_ids":[4080071,4080072,4080073,4080074,4080075],"delay":6112.1} +{"session_id":"sess-540adc156c0c","input_length":144,"output_length":145,"hash_ids":[4080076],"delay":874.6} +{"session_id":"sess-540adc156c0c","input_length":80,"output_length":1253,"hash_ids":[4080077],"delay":410.1} +{"session_id":"sess-540adc156c0c","input_length":654,"output_length":373,"hash_ids":[4080078,4080079],"delay":16678.7} +{"session_id":"sess-540adc156c0c","input_length":1668,"output_length":201,"hash_ids":[4080080,4080081,4080082,4080083],"delay":1202.8} +{"session_id":"sess-540adc156c0c","input_length":767,"output_length":128,"hash_ids":[4080084,4080085],"delay":411.0} +{"session_id":"sess-540adc156c0c","input_length":1873,"output_length":51,"hash_ids":[4080086,4080087,4080088,4080089],"delay":716.1} +{"session_id":"sess-540adc156c0c","input_length":1130,"output_length":107,"hash_ids":[4080090,4080091,4080092],"delay":843.3} +{"session_id":"sess-540adc156c0c","input_length":441,"output_length":175,"hash_ids":[4080093],"delay":1624.4} +{"session_id":"sess-540adc156c0c","input_length":990,"output_length":36,"hash_ids":[4080094,4080095],"delay":613.7} +{"session_id":"sess-540adc156c0c","input_length":612,"output_length":76,"hash_ids":[4080096,4080097],"delay":414.5} +{"session_id":"sess-540adc156c0c","input_length":925,"output_length":83,"hash_ids":[4080098,4080099],"delay":8612.4} +{"session_id":"sess-540adc156c0c","input_length":404,"output_length":164,"hash_ids":[4080100],"delay":1291.4} +{"session_id":"sess-540adc156c0c","input_length":586,"output_length":754,"hash_ids":[4080101,4080102],"delay":396.9} +{"session_id":"sess-540adc156c0c","input_length":438,"output_length":206,"hash_ids":[4080103],"delay":609.8} +{"session_id":"sess-540adc156c0c","input_length":879,"output_length":369,"hash_ids":[4080104,4080105],"delay":323.4} +{"session_id":"sess-259daf62e61b","input_length":30319,"output_length":213,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4084032,4084033,4084034,4084035,4084036,4084037,4084038,4084039],"timestamp":0.0,"group_id":0} +{"session_id":"sess-259daf62e61b","input_length":128,"output_length":328,"hash_ids":[4084040],"delay":1522.0} +{"session_id":"sess-259daf62e61b","input_length":219,"output_length":197,"hash_ids":[4084041],"delay":876.7} +{"session_id":"sess-259daf62e61b","input_length":610,"output_length":267,"hash_ids":[4084042,4084043],"delay":3449.8} +{"session_id":"sess-259daf62e61b","input_length":388,"output_length":55,"hash_ids":[4084044],"delay":2607.1} +{"session_id":"sess-259daf62e61b","input_length":2422,"output_length":76,"hash_ids":[4084045,4084046,4084047,4084048,4084049],"delay":520.8} +{"session_id":"sess-259daf62e61b","input_length":1318,"output_length":698,"hash_ids":[4084050,4084051,4084052],"delay":3339.8} +{"session_id":"sess-259daf62e61b","input_length":552,"output_length":83,"hash_ids":[4084053,4084054],"delay":11093.9} +{"session_id":"sess-259daf62e61b","input_length":499,"output_length":42,"hash_ids":[4084055],"delay":774.1} +{"session_id":"sess-259daf62e61b","input_length":552,"output_length":290,"hash_ids":[4084056,4084057],"delay":2406.9} +{"session_id":"sess-259daf62e61b","input_length":1289,"output_length":334,"hash_ids":[4084058,4084059,4084060],"delay":404.0} +{"session_id":"sess-259daf62e61b","input_length":1727,"output_length":61,"hash_ids":[4084061,4084062,4084063,4084064],"delay":9641.5} +{"session_id":"sess-259daf62e61b","input_length":649,"output_length":438,"hash_ids":[4084065,4084066],"delay":260.1} +{"session_id":"sess-259daf62e61b","input_length":557,"output_length":82,"hash_ids":[4084067,4084068],"delay":239.1} +{"session_id":"sess-259daf62e61b","input_length":1414,"output_length":556,"hash_ids":[4084069,4084070,4084071],"delay":856.6} +{"session_id":"sess-f36a90820651","input_length":32737,"output_length":66,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,4088032,4088033,4088034,4088035,4088036,4088037,4088038,4088039,4088040,4088041,4088042,4088043],"timestamp":0.0,"group_id":10} +{"session_id":"sess-f36a90820651","input_length":770,"output_length":83,"hash_ids":[4088044,4088045],"delay":324.1} +{"session_id":"sess-f36a90820651","input_length":368,"output_length":267,"hash_ids":[4088046],"delay":204.7} +{"session_id":"sess-f36a90820651","input_length":629,"output_length":77,"hash_ids":[4088047,4088048],"delay":346.5} +{"session_id":"sess-f36a90820651","input_length":1262,"output_length":274,"hash_ids":[4088049,4088050,4088051],"delay":985.4} +{"session_id":"sess-f36a90820651","input_length":997,"output_length":712,"hash_ids":[4088052,4088053],"delay":2240.3} +{"session_id":"sess-f36a90820651","input_length":1498,"output_length":82,"hash_ids":[4088054,4088055,4088056],"delay":2125.0} +{"session_id":"sess-f36a90820651","input_length":1903,"output_length":135,"hash_ids":[4088057,4088058,4088059,4088060],"delay":11506.0} +{"session_id":"sess-f36a90820651","input_length":452,"output_length":157,"hash_ids":[4088061],"delay":1444.0} +{"session_id":"sess-f36a90820651","input_length":463,"output_length":30,"hash_ids":[4088062],"delay":637.4} +{"session_id":"sess-f36a90820651","input_length":347,"output_length":246,"hash_ids":[4088063],"delay":25988.5} +{"session_id":"sess-f36a90820651","input_length":1480,"output_length":164,"hash_ids":[4088064,4088065,4088066],"delay":591.0} +{"session_id":"sess-f36a90820651","input_length":2263,"output_length":289,"hash_ids":[4088067,4088068,4088069,4088070,4088071],"delay":661.3} +{"session_id":"sess-f36a90820651","input_length":728,"output_length":298,"hash_ids":[4088072,4088073],"delay":3604.2} +{"session_id":"sess-f36a90820651","input_length":335,"output_length":1421,"hash_ids":[4088074],"delay":16402.4} +{"session_id":"sess-f36a90820651","input_length":1969,"output_length":161,"hash_ids":[4088075,4088076,4088077,4088078],"delay":1878.2} +{"session_id":"sess-f36a90820651","input_length":1069,"output_length":1189,"hash_ids":[4088079,4088080,4088081],"delay":332.7} +{"session_id":"sess-f36a90820651","input_length":1249,"output_length":155,"hash_ids":[4088082,4088083,4088084],"delay":243.9} +{"session_id":"sess-f36a90820651","input_length":310,"output_length":158,"hash_ids":[4088085],"delay":559.0} +{"session_id":"sess-f36a90820651","input_length":1378,"output_length":30,"hash_ids":[4088086,4088087,4088088],"delay":91.2} +{"session_id":"sess-f36a90820651","input_length":1932,"output_length":392,"hash_ids":[4088089,4088090,4088091,4088092],"delay":337.1} +{"session_id":"sess-f36a90820651","input_length":308,"output_length":76,"hash_ids":[4088093],"delay":129.3} +{"session_id":"sess-f36a90820651","input_length":90,"output_length":370,"hash_ids":[4088094],"delay":1999.4} +{"session_id":"sess-f36a90820651","input_length":1023,"output_length":597,"hash_ids":[4088095,4088096],"delay":5258.9} +{"session_id":"sess-f36a90820651","input_length":1502,"output_length":154,"hash_ids":[4088097,4088098,4088099],"delay":4913.2} +{"session_id":"sess-f36a90820651","input_length":388,"output_length":78,"hash_ids":[4088100],"delay":109.2} +{"session_id":"sess-11eb28e8ad8a","input_length":27505,"output_length":72,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,4092032,4092033],"timestamp":0.0,"group_id":47} +{"session_id":"sess-11eb28e8ad8a","input_length":1111,"output_length":1249,"hash_ids":[4092034,4092035,4092036],"delay":1558.3} +{"session_id":"sess-11eb28e8ad8a","input_length":343,"output_length":340,"hash_ids":[4092037],"delay":49523.7} +{"session_id":"sess-11eb28e8ad8a","input_length":1318,"output_length":43,"hash_ids":[4092038,4092039,4092040],"delay":12202.3} +{"session_id":"sess-11eb28e8ad8a","input_length":216,"output_length":130,"hash_ids":[4092041],"delay":26211.7} +{"session_id":"sess-11eb28e8ad8a","input_length":1413,"output_length":53,"hash_ids":[4092042,4092043,4092044],"delay":1019.2} +{"session_id":"sess-11eb28e8ad8a","input_length":952,"output_length":202,"hash_ids":[4092045,4092046],"delay":17958.4} +{"session_id":"sess-11eb28e8ad8a","input_length":309,"output_length":761,"hash_ids":[4092047],"delay":409.8} +{"session_id":"sess-11eb28e8ad8a","input_length":781,"output_length":333,"hash_ids":[4092048,4092049],"delay":1444.0} +{"session_id":"sess-11eb28e8ad8a","input_length":2909,"output_length":115,"hash_ids":[4092050,4092051,4092052,4092053,4092054,4092055],"delay":721.4} +{"session_id":"sess-11eb28e8ad8a","input_length":357,"output_length":73,"hash_ids":[4092056],"delay":1659.6} +{"session_id":"sess-11eb28e8ad8a","input_length":748,"output_length":287,"hash_ids":[4092057,4092058],"delay":283.1} +{"session_id":"sess-11eb28e8ad8a","input_length":1188,"output_length":167,"hash_ids":[4092059,4092060,4092061],"delay":1353.0} +{"session_id":"sess-11eb28e8ad8a","input_length":867,"output_length":94,"hash_ids":[4092062,4092063],"delay":840.0} +{"session_id":"sess-11eb28e8ad8a","input_length":949,"output_length":30,"hash_ids":[4092064,4092065],"delay":8039.9} +{"session_id":"sess-11eb28e8ad8a","input_length":845,"output_length":152,"hash_ids":[4092066,4092067],"delay":610.7} +{"session_id":"sess-11eb28e8ad8a","input_length":1461,"output_length":63,"hash_ids":[4092068,4092069,4092070],"delay":13969.4} +{"session_id":"sess-11eb28e8ad8a","input_length":188,"output_length":203,"hash_ids":[4092071],"delay":1094.4} +{"session_id":"sess-11eb28e8ad8a","input_length":269,"output_length":66,"hash_ids":[4092072],"delay":14134.7} +{"session_id":"sess-11eb28e8ad8a","input_length":705,"output_length":271,"hash_ids":[4092073,4092074],"delay":2015.7} +{"session_id":"sess-11eb28e8ad8a","input_length":471,"output_length":82,"hash_ids":[4092075],"delay":5085.2} +{"session_id":"sess-11eb28e8ad8a","input_length":478,"output_length":1046,"hash_ids":[4092076],"delay":6532.1} +{"session_id":"sess-11eb28e8ad8a","input_length":1445,"output_length":440,"hash_ids":[4092077,4092078,4092079],"delay":5296.9} +{"session_id":"sess-11eb28e8ad8a","input_length":1317,"output_length":41,"hash_ids":[4092080,4092081,4092082],"delay":323.7} +{"session_id":"sess-11eb28e8ad8a","input_length":123,"output_length":208,"hash_ids":[4092083],"delay":2405.3} +{"session_id":"sess-11eb28e8ad8a","input_length":1498,"output_length":150,"hash_ids":[4092084,4092085,4092086],"delay":919.2} +{"session_id":"sess-11eb28e8ad8a","input_length":323,"output_length":61,"hash_ids":[4092087],"delay":137.9} +{"session_id":"sess-11eb28e8ad8a","input_length":1535,"output_length":882,"hash_ids":[4092088,4092089,4092090],"delay":1737.0} +{"session_id":"sess-11eb28e8ad8a","input_length":2006,"output_length":328,"hash_ids":[4092091,4092092,4092093,4092094],"delay":641.4} +{"session_id":"sess-11eb28e8ad8a","input_length":182,"output_length":660,"hash_ids":[4092095],"delay":646.6} +{"session_id":"sess-11eb28e8ad8a","input_length":2292,"output_length":72,"hash_ids":[4092096,4092097,4092098,4092099,4092100],"delay":27642.5} +{"session_id":"sess-3a15f60c8587","input_length":29481,"output_length":102,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,4096032,4096033,4096034,4096035,4096036,4096037],"timestamp":0.0,"group_id":47} +{"session_id":"sess-3a15f60c8587","input_length":690,"output_length":1225,"hash_ids":[4096038,4096039],"delay":1940.4} +{"session_id":"sess-3a15f60c8587","input_length":166,"output_length":43,"hash_ids":[4096040],"delay":884.6} +{"session_id":"sess-3a15f60c8587","input_length":599,"output_length":385,"hash_ids":[4096041,4096042],"delay":1553.6} +{"session_id":"sess-3a15f60c8587","input_length":1810,"output_length":258,"hash_ids":[4096043,4096044,4096045,4096046],"delay":1561.0} +{"session_id":"sess-3a15f60c8587","input_length":587,"output_length":195,"hash_ids":[4096047,4096048],"delay":28907.7} +{"session_id":"sess-b9eab9178375","input_length":30424,"output_length":164,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,4100032,4100033,4100034,4100035,4100036,4100037,4100038,4100039],"timestamp":0.0,"group_id":26} +{"session_id":"sess-b9eab9178375","input_length":443,"output_length":947,"hash_ids":[4100040],"delay":805.3} +{"session_id":"sess-b9eab9178375","input_length":548,"output_length":395,"hash_ids":[4100041,4100042],"delay":10183.2} +{"session_id":"sess-b9eab9178375","input_length":421,"output_length":385,"hash_ids":[4100043],"delay":2315.5} +{"session_id":"sess-b9eab9178375","input_length":660,"output_length":181,"hash_ids":[4100044,4100045],"delay":34434.2} +{"session_id":"sess-b9eab9178375","input_length":292,"output_length":349,"hash_ids":[4100046],"delay":1700.7} +{"session_id":"sess-b9eab9178375","input_length":232,"output_length":51,"hash_ids":[4100047],"delay":352.3} +{"session_id":"sess-ae16f8f73e4e","input_length":27925,"output_length":115,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,4104032,4104033,4104034],"timestamp":0.0,"group_id":10} +{"session_id":"sess-ae16f8f73e4e","input_length":653,"output_length":203,"hash_ids":[4104035,4104036],"delay":348.3} +{"session_id":"sess-ae16f8f73e4e","input_length":288,"output_length":30,"hash_ids":[4104037],"delay":738.0} +{"session_id":"sess-ae16f8f73e4e","input_length":1839,"output_length":30,"hash_ids":[4104038,4104039,4104040,4104041],"delay":1986.9} +{"session_id":"sess-ae16f8f73e4e","input_length":405,"output_length":46,"hash_ids":[4104042],"delay":1129.9} +{"session_id":"sess-ae16f8f73e4e","input_length":247,"output_length":146,"hash_ids":[4104043],"delay":2225.9} +{"session_id":"sess-ae16f8f73e4e","input_length":305,"output_length":208,"hash_ids":[4104044],"delay":27548.7} +{"session_id":"sess-ae16f8f73e4e","input_length":1616,"output_length":370,"hash_ids":[4104045,4104046,4104047,4104048],"delay":407.8} +{"session_id":"sess-ae16f8f73e4e","input_length":686,"output_length":127,"hash_ids":[4104049,4104050],"delay":28128.1} +{"session_id":"sess-ae16f8f73e4e","input_length":1234,"output_length":238,"hash_ids":[4104051,4104052,4104053],"delay":670.7} +{"session_id":"sess-ae16f8f73e4e","input_length":931,"output_length":174,"hash_ids":[4104054,4104055],"delay":883.6} +{"session_id":"sess-ae16f8f73e4e","input_length":1269,"output_length":188,"hash_ids":[4104056,4104057,4104058],"delay":512.9} +{"session_id":"sess-ae16f8f73e4e","input_length":1785,"output_length":141,"hash_ids":[4104059,4104060,4104061,4104062],"delay":660.3} +{"session_id":"sess-0a495cf52d50","input_length":30337,"output_length":81,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,4108032,4108033,4108034,4108035,4108036,4108037,4108038,4108039],"timestamp":0.0,"group_id":16} +{"session_id":"sess-0a495cf52d50","input_length":645,"output_length":76,"hash_ids":[4108040,4108041],"delay":1345.6} +{"session_id":"sess-0a495cf52d50","input_length":1617,"output_length":328,"hash_ids":[4108042,4108043,4108044,4108045],"delay":2706.7} +{"session_id":"sess-0a495cf52d50","input_length":2822,"output_length":151,"hash_ids":[4108046,4108047,4108048,4108049,4108050,4108051],"delay":5233.3} +{"session_id":"sess-0a495cf52d50","input_length":519,"output_length":157,"hash_ids":[4108052,4108053],"delay":1622.1} +{"session_id":"sess-0a495cf52d50","input_length":1301,"output_length":109,"hash_ids":[4108054,4108055,4108056],"delay":339.3} +{"session_id":"sess-0a495cf52d50","input_length":188,"output_length":570,"hash_ids":[4108057],"delay":904.9} +{"session_id":"sess-0a495cf52d50","input_length":2926,"output_length":370,"hash_ids":[4108058,4108059,4108060,4108061,4108062,4108063],"delay":10653.1} +{"session_id":"sess-9d6875c27543","input_length":27374,"output_length":208,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,4112032,4112033],"timestamp":0.0,"group_id":5} +{"session_id":"sess-9d6875c27543","input_length":652,"output_length":220,"hash_ids":[4112034,4112035],"delay":5341.7} +{"session_id":"sess-9d6875c27543","input_length":2343,"output_length":369,"hash_ids":[4112036,4112037,4112038,4112039,4112040],"delay":12324.7} +{"session_id":"sess-1a19aeaff218","input_length":29004,"output_length":256,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,4116032,4116033,4116034,4116035,4116036],"timestamp":0.0,"group_id":14} +{"session_id":"sess-1a19aeaff218","input_length":1351,"output_length":618,"hash_ids":[4116037,4116038,4116039],"delay":32692.0} +{"session_id":"sess-1a19aeaff218","input_length":1602,"output_length":233,"hash_ids":[4116040,4116041,4116042,4116043],"delay":1549.3} +{"session_id":"sess-1a19aeaff218","input_length":854,"output_length":114,"hash_ids":[4116044,4116045],"delay":1214.0} +{"session_id":"sess-1a19aeaff218","input_length":1095,"output_length":72,"hash_ids":[4116046,4116047,4116048],"delay":477.9} +{"session_id":"sess-1a19aeaff218","input_length":461,"output_length":35,"hash_ids":[4116049],"delay":3048.2} +{"session_id":"sess-1a19aeaff218","input_length":178,"output_length":48,"hash_ids":[4116050],"delay":639.5} +{"session_id":"sess-1a19aeaff218","input_length":1182,"output_length":587,"hash_ids":[4116051,4116052,4116053],"delay":14422.7} +{"session_id":"sess-1a19aeaff218","input_length":2508,"output_length":173,"hash_ids":[4116054,4116055,4116056,4116057,4116058],"delay":2142.9} +{"session_id":"sess-1a19aeaff218","input_length":301,"output_length":280,"hash_ids":[4116059],"delay":1575.9} +{"session_id":"sess-911dbd3dae95","input_length":32297,"output_length":125,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,4120032,4120033,4120034,4120035,4120036,4120037,4120038,4120039,4120040,4120041,4120042,4120043],"timestamp":0.0,"group_id":7} +{"session_id":"sess-911dbd3dae95","input_length":460,"output_length":268,"hash_ids":[4120044],"delay":817.6} +{"session_id":"sess-911dbd3dae95","input_length":1952,"output_length":276,"hash_ids":[4120045,4120046,4120047,4120048],"delay":516.5} +{"session_id":"sess-911dbd3dae95","input_length":731,"output_length":842,"hash_ids":[4120049,4120050],"delay":647.7} +{"session_id":"sess-911dbd3dae95","input_length":694,"output_length":259,"hash_ids":[4120051,4120052],"delay":23116.0} +{"session_id":"sess-911dbd3dae95","input_length":1158,"output_length":49,"hash_ids":[4120053,4120054,4120055],"delay":676.2} +{"session_id":"sess-911dbd3dae95","input_length":839,"output_length":101,"hash_ids":[4120056,4120057],"delay":2439.1} +{"session_id":"sess-911dbd3dae95","input_length":94,"output_length":406,"hash_ids":[4120058],"delay":514.3} +{"session_id":"sess-911dbd3dae95","input_length":623,"output_length":63,"hash_ids":[4120059,4120060],"delay":17265.8} +{"session_id":"sess-911dbd3dae95","input_length":720,"output_length":244,"hash_ids":[4120061,4120062],"delay":5420.2} +{"session_id":"sess-911dbd3dae95","input_length":330,"output_length":222,"hash_ids":[4120063],"delay":8512.3} +{"session_id":"sess-911dbd3dae95","input_length":116,"output_length":98,"hash_ids":[4120064],"delay":3319.7} +{"session_id":"sess-911dbd3dae95","input_length":325,"output_length":349,"hash_ids":[4120065],"delay":11201.7} +{"session_id":"sess-911dbd3dae95","input_length":218,"output_length":323,"hash_ids":[4120066],"delay":1227.6} +{"session_id":"sess-911dbd3dae95","input_length":621,"output_length":313,"hash_ids":[4120067,4120068],"delay":9091.8} +{"session_id":"sess-911dbd3dae95","input_length":446,"output_length":49,"hash_ids":[4120069],"delay":2016.6} +{"session_id":"sess-911dbd3dae95","input_length":338,"output_length":96,"hash_ids":[4120070],"delay":608.2} +{"session_id":"sess-911dbd3dae95","input_length":1113,"output_length":90,"hash_ids":[4120071,4120072,4120073],"delay":5376.7} +{"session_id":"sess-911dbd3dae95","input_length":1745,"output_length":277,"hash_ids":[4120074,4120075,4120076,4120077],"delay":6039.0} +{"session_id":"sess-911dbd3dae95","input_length":1302,"output_length":291,"hash_ids":[4120078,4120079,4120080],"delay":444.9} +{"session_id":"sess-911dbd3dae95","input_length":1163,"output_length":57,"hash_ids":[4120081,4120082,4120083],"delay":946.7} +{"session_id":"sess-911dbd3dae95","input_length":783,"output_length":193,"hash_ids":[4120084,4120085],"delay":3216.3} +{"session_id":"sess-911dbd3dae95","input_length":417,"output_length":105,"hash_ids":[4120086],"delay":27702.2} +{"session_id":"sess-911dbd3dae95","input_length":1057,"output_length":729,"hash_ids":[4120087,4120088,4120089],"delay":266.7} +{"session_id":"sess-911dbd3dae95","input_length":1925,"output_length":760,"hash_ids":[4120090,4120091,4120092,4120093],"delay":7601.3} +{"session_id":"sess-911dbd3dae95","input_length":498,"output_length":98,"hash_ids":[4120094],"delay":857.6} +{"session_id":"sess-911dbd3dae95","input_length":497,"output_length":74,"hash_ids":[4120095],"delay":513.0} +{"session_id":"sess-911dbd3dae95","input_length":706,"output_length":136,"hash_ids":[4120096,4120097],"delay":192.6} +{"session_id":"sess-911dbd3dae95","input_length":335,"output_length":258,"hash_ids":[4120098],"delay":642.5} +{"session_id":"sess-911dbd3dae95","input_length":483,"output_length":269,"hash_ids":[4120099],"delay":376.6} +{"session_id":"sess-911dbd3dae95","input_length":1221,"output_length":44,"hash_ids":[4120100,4120101,4120102],"delay":11938.8} +{"session_id":"sess-691be01d0e3b","input_length":28142,"output_length":59,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4124032,4124033,4124034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-691be01d0e3b","input_length":1494,"output_length":194,"hash_ids":[4124035,4124036,4124037],"delay":679.0} +{"session_id":"sess-691be01d0e3b","input_length":329,"output_length":30,"hash_ids":[4124038],"delay":22129.2} +{"session_id":"sess-691be01d0e3b","input_length":1339,"output_length":162,"hash_ids":[4124039,4124040,4124041],"delay":2980.9} +{"session_id":"sess-691be01d0e3b","input_length":1566,"output_length":216,"hash_ids":[4124042,4124043,4124044,4124045],"delay":1234.6} +{"session_id":"sess-691be01d0e3b","input_length":1703,"output_length":125,"hash_ids":[4124046,4124047,4124048,4124049],"delay":936.0} +{"session_id":"sess-691be01d0e3b","input_length":241,"output_length":91,"hash_ids":[4124050],"delay":5271.1} +{"session_id":"sess-691be01d0e3b","input_length":460,"output_length":129,"hash_ids":[4124051],"delay":4815.5} +{"session_id":"sess-691be01d0e3b","input_length":1301,"output_length":55,"hash_ids":[4124052,4124053,4124054],"delay":33844.7} +{"session_id":"sess-691be01d0e3b","input_length":2564,"output_length":192,"hash_ids":[4124055,4124056,4124057,4124058,4124059,4124060],"delay":346.3} +{"session_id":"sess-691be01d0e3b","input_length":1198,"output_length":103,"hash_ids":[4124061,4124062,4124063],"delay":1649.7} +{"session_id":"sess-691be01d0e3b","input_length":1907,"output_length":271,"hash_ids":[4124064,4124065,4124066,4124067],"delay":299.2} +{"session_id":"sess-691be01d0e3b","input_length":372,"output_length":68,"hash_ids":[4124068],"delay":1214.3} +{"session_id":"sess-691be01d0e3b","input_length":159,"output_length":45,"hash_ids":[4124069],"delay":917.2} +{"session_id":"sess-691be01d0e3b","input_length":339,"output_length":81,"hash_ids":[4124070],"delay":225.8} +{"session_id":"sess-691be01d0e3b","input_length":381,"output_length":323,"hash_ids":[4124071],"delay":11497.7} +{"session_id":"sess-691be01d0e3b","input_length":949,"output_length":247,"hash_ids":[4124072,4124073],"delay":1239.8} +{"session_id":"sess-691be01d0e3b","input_length":393,"output_length":316,"hash_ids":[4124074],"delay":435.4} +{"session_id":"sess-691be01d0e3b","input_length":308,"output_length":483,"hash_ids":[4124075],"delay":902.3} +{"session_id":"sess-691be01d0e3b","input_length":1606,"output_length":252,"hash_ids":[4124076,4124077,4124078,4124079],"delay":5411.4} +{"session_id":"sess-691be01d0e3b","input_length":645,"output_length":552,"hash_ids":[4124080,4124081],"delay":40868.5} +{"session_id":"sess-691be01d0e3b","input_length":952,"output_length":65,"hash_ids":[4124082,4124083],"delay":2904.0} +{"session_id":"sess-691be01d0e3b","input_length":88,"output_length":790,"hash_ids":[4124084],"delay":313.1} +{"session_id":"sess-691be01d0e3b","input_length":229,"output_length":79,"hash_ids":[4124085],"delay":3179.2} +{"session_id":"sess-691be01d0e3b","input_length":400,"output_length":474,"hash_ids":[4124086],"delay":550.7} +{"session_id":"sess-691be01d0e3b","input_length":624,"output_length":45,"hash_ids":[4124087,4124088],"delay":307.5} +{"session_id":"sess-691be01d0e3b","input_length":442,"output_length":620,"hash_ids":[4124089],"delay":1937.8} +{"session_id":"sess-691be01d0e3b","input_length":1013,"output_length":112,"hash_ids":[4124090,4124091],"delay":346.6} +{"session_id":"sess-691be01d0e3b","input_length":2252,"output_length":826,"hash_ids":[4124092,4124093,4124094,4124095,4124096],"delay":485.1} +{"session_id":"sess-691be01d0e3b","input_length":117,"output_length":78,"hash_ids":[4124097],"delay":6619.5} +{"session_id":"sess-691be01d0e3b","input_length":2366,"output_length":74,"hash_ids":[4124098,4124099,4124100,4124101,4124102],"delay":229.8} +{"session_id":"sess-691be01d0e3b","input_length":2224,"output_length":108,"hash_ids":[4124103,4124104,4124105,4124106,4124107],"delay":2228.7} +{"session_id":"sess-691be01d0e3b","input_length":140,"output_length":156,"hash_ids":[4124108],"delay":3395.4} +{"session_id":"sess-ee62a789172d","input_length":27159,"output_length":65,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,4128032,4128033],"timestamp":0.0,"group_id":2} +{"session_id":"sess-ee62a789172d","input_length":392,"output_length":456,"hash_ids":[4128034],"delay":12829.3} +{"session_id":"sess-ee62a789172d","input_length":426,"output_length":472,"hash_ids":[4128035],"delay":3242.1} +{"session_id":"sess-ee62a789172d","input_length":781,"output_length":46,"hash_ids":[4128036,4128037],"delay":727.1} +{"session_id":"sess-136b5fd7fbc7","input_length":28346,"output_length":170,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,4132032,4132033,4132034,4132035],"timestamp":0.0,"group_id":9} +{"session_id":"sess-136b5fd7fbc7","input_length":376,"output_length":529,"hash_ids":[4132036],"delay":217.1} +{"session_id":"sess-136b5fd7fbc7","input_length":1274,"output_length":380,"hash_ids":[4132037,4132038,4132039],"delay":3169.7} +{"session_id":"sess-136b5fd7fbc7","input_length":1796,"output_length":227,"hash_ids":[4132040,4132041,4132042,4132043],"delay":674.9} +{"session_id":"sess-136b5fd7fbc7","input_length":392,"output_length":108,"hash_ids":[4132044],"delay":510.2} +{"session_id":"sess-136b5fd7fbc7","input_length":1620,"output_length":702,"hash_ids":[4132045,4132046,4132047,4132048],"delay":1186.7} +{"session_id":"sess-136b5fd7fbc7","input_length":752,"output_length":920,"hash_ids":[4132049,4132050],"delay":4851.6} +{"session_id":"sess-136b5fd7fbc7","input_length":1354,"output_length":139,"hash_ids":[4132051,4132052,4132053],"delay":16673.0} +{"session_id":"sess-136b5fd7fbc7","input_length":2510,"output_length":346,"hash_ids":[4132054,4132055,4132056,4132057,4132058],"delay":16648.7} +{"session_id":"sess-136b5fd7fbc7","input_length":898,"output_length":30,"hash_ids":[4132059,4132060],"delay":697.2} +{"session_id":"sess-136b5fd7fbc7","input_length":197,"output_length":93,"hash_ids":[4132061],"delay":2889.2} +{"session_id":"sess-136b5fd7fbc7","input_length":93,"output_length":57,"hash_ids":[4132062],"delay":1727.6} +{"session_id":"sess-136b5fd7fbc7","input_length":2198,"output_length":554,"hash_ids":[4132063,4132064,4132065,4132066,4132067],"delay":5852.9} +{"session_id":"sess-136b5fd7fbc7","input_length":2144,"output_length":130,"hash_ids":[4132068,4132069,4132070,4132071,4132072],"delay":975.2} +{"session_id":"sess-136b5fd7fbc7","input_length":1350,"output_length":191,"hash_ids":[4132073,4132074,4132075],"delay":8648.0} +{"session_id":"sess-8e3889d108f0","input_length":28282,"output_length":456,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,4136032,4136033,4136034,4136035],"timestamp":0.0,"group_id":19} +{"session_id":"sess-8e3889d108f0","input_length":1567,"output_length":69,"hash_ids":[4136036,4136037,4136038,4136039],"delay":2299.7} +{"session_id":"sess-8e3889d108f0","input_length":995,"output_length":57,"hash_ids":[4136040,4136041],"delay":56273.7} +{"session_id":"sess-8e3889d108f0","input_length":873,"output_length":278,"hash_ids":[4136042,4136043],"delay":830.9} +{"session_id":"sess-8e3889d108f0","input_length":1340,"output_length":107,"hash_ids":[4136044,4136045,4136046],"delay":956.0} +{"session_id":"sess-b606947d063d","input_length":26726,"output_length":484,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,4140032],"timestamp":0.0,"group_id":1} +{"session_id":"sess-ff4adb445c67","input_length":37776,"output_length":240,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,4144032,4144033,4144034,4144035,4144036,4144037,4144038,4144039,4144040,4144041,4144042,4144043,4144044,4144045,4144046,4144047,4144048,4144049,4144050,4144051,4144052,4144053],"timestamp":0.0,"group_id":14} +{"session_id":"sess-ff4adb445c67","input_length":1161,"output_length":767,"hash_ids":[4144054,4144055,4144056],"delay":11200.7} +{"session_id":"sess-ff4adb445c67","input_length":319,"output_length":124,"hash_ids":[4144057],"delay":5093.0} +{"session_id":"sess-ff4adb445c67","input_length":1633,"output_length":60,"hash_ids":[4144058,4144059,4144060,4144061],"delay":427.1} +{"session_id":"sess-ff4adb445c67","input_length":1202,"output_length":30,"hash_ids":[4144062,4144063,4144064],"delay":210.9} +{"session_id":"sess-ff4adb445c67","input_length":1582,"output_length":59,"hash_ids":[4144065,4144066,4144067,4144068],"delay":9292.1} +{"session_id":"sess-ff4adb445c67","input_length":2459,"output_length":151,"hash_ids":[4144069,4144070,4144071,4144072,4144073],"delay":2110.6} +{"session_id":"sess-ff4adb445c67","input_length":2163,"output_length":70,"hash_ids":[4144074,4144075,4144076,4144077,4144078],"delay":415.4} +{"session_id":"sess-ff4adb445c67","input_length":2556,"output_length":295,"hash_ids":[4144079,4144080,4144081,4144082,4144083],"delay":526.7} +{"session_id":"sess-ff4adb445c67","input_length":545,"output_length":571,"hash_ids":[4144084,4144085],"delay":896.8} +{"session_id":"sess-ff4adb445c67","input_length":2092,"output_length":34,"hash_ids":[4144086,4144087,4144088,4144089,4144090],"delay":626.3} +{"session_id":"sess-ff4adb445c67","input_length":1066,"output_length":149,"hash_ids":[4144091,4144092,4144093],"delay":1251.7} +{"session_id":"sess-ff4adb445c67","input_length":630,"output_length":729,"hash_ids":[4144094,4144095],"delay":1718.0} +{"session_id":"sess-ff4adb445c67","input_length":2072,"output_length":119,"hash_ids":[4144096,4144097,4144098,4144099,4144100],"delay":125.1} +{"session_id":"sess-ff4adb445c67","input_length":82,"output_length":82,"hash_ids":[4144101],"delay":1532.8} +{"session_id":"sess-ff4adb445c67","input_length":1011,"output_length":154,"hash_ids":[4144102,4144103],"delay":365.3} +{"session_id":"sess-ff4adb445c67","input_length":240,"output_length":221,"hash_ids":[4144104],"delay":794.6} +{"session_id":"sess-ff4adb445c67","input_length":440,"output_length":284,"hash_ids":[4144105],"delay":8906.6} +{"session_id":"sess-ff4adb445c67","input_length":401,"output_length":90,"hash_ids":[4144106],"delay":1656.5} +{"session_id":"sess-ff4adb445c67","input_length":322,"output_length":80,"hash_ids":[4144107],"delay":11124.7} +{"session_id":"sess-ff4adb445c67","input_length":1333,"output_length":89,"hash_ids":[4144108,4144109,4144110],"delay":828.7} +{"session_id":"sess-b12bc3a493a0","input_length":32887,"output_length":897,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4148032,4148033,4148034,4148035,4148036,4148037,4148038,4148039,4148040,4148041,4148042,4148043,4148044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-b12bc3a493a0","input_length":926,"output_length":281,"hash_ids":[4148045,4148046],"delay":4055.9} +{"session_id":"sess-b12bc3a493a0","input_length":223,"output_length":384,"hash_ids":[4148047],"delay":7873.4} +{"session_id":"sess-b12bc3a493a0","input_length":2377,"output_length":303,"hash_ids":[4148048,4148049,4148050,4148051,4148052],"delay":6164.6} +{"session_id":"sess-b12bc3a493a0","input_length":224,"output_length":139,"hash_ids":[4148053],"delay":1068.0} +{"session_id":"sess-b12bc3a493a0","input_length":1385,"output_length":436,"hash_ids":[4148054,4148055,4148056],"delay":641.8} +{"session_id":"sess-b12bc3a493a0","input_length":547,"output_length":128,"hash_ids":[4148057,4148058],"delay":973.1} +{"session_id":"sess-b12bc3a493a0","input_length":963,"output_length":276,"hash_ids":[4148059,4148060],"delay":2232.1} +{"session_id":"sess-b12bc3a493a0","input_length":866,"output_length":95,"hash_ids":[4148061,4148062],"delay":9559.3} +{"session_id":"sess-b12bc3a493a0","input_length":1744,"output_length":410,"hash_ids":[4148063,4148064,4148065,4148066],"delay":529.6} +{"session_id":"sess-b12bc3a493a0","input_length":2288,"output_length":58,"hash_ids":[4148067,4148068,4148069,4148070,4148071],"delay":3285.1} +{"session_id":"sess-b12bc3a493a0","input_length":570,"output_length":176,"hash_ids":[4148072,4148073],"delay":2191.9} +{"session_id":"sess-b12bc3a493a0","input_length":571,"output_length":336,"hash_ids":[4148074,4148075],"delay":645.5} +{"session_id":"sess-b12bc3a493a0","input_length":289,"output_length":191,"hash_ids":[4148076],"delay":336.8} +{"session_id":"sess-b12bc3a493a0","input_length":561,"output_length":444,"hash_ids":[4148077,4148078],"delay":228.0} +{"session_id":"sess-b12bc3a493a0","input_length":635,"output_length":199,"hash_ids":[4148079,4148080],"delay":411.3} +{"session_id":"sess-b12bc3a493a0","input_length":2825,"output_length":241,"hash_ids":[4148081,4148082,4148083,4148084,4148085,4148086],"delay":91.6} +{"session_id":"sess-b12bc3a493a0","input_length":1817,"output_length":418,"hash_ids":[4148087,4148088,4148089,4148090],"delay":487.5} +{"session_id":"sess-b12bc3a493a0","input_length":2031,"output_length":390,"hash_ids":[4148091,4148092,4148093,4148094],"delay":238.8} +{"session_id":"sess-b12bc3a493a0","input_length":738,"output_length":34,"hash_ids":[4148095,4148096],"delay":440.4} +{"session_id":"sess-b12bc3a493a0","input_length":1801,"output_length":306,"hash_ids":[4148097,4148098,4148099,4148100],"delay":731.2} +{"session_id":"sess-b12bc3a493a0","input_length":121,"output_length":42,"hash_ids":[4148101],"delay":1380.1} +{"session_id":"sess-bf16626ed00c","input_length":26106,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650],"timestamp":0.0,"group_id":3} +{"session_id":"sess-bf16626ed00c","input_length":638,"output_length":314,"hash_ids":[4148102,4148103],"delay":490.7} +{"session_id":"sess-bf16626ed00c","input_length":371,"output_length":343,"hash_ids":[4148104],"delay":549.4} +{"session_id":"sess-bf16626ed00c","input_length":943,"output_length":601,"hash_ids":[4148105,4148106],"delay":4216.7} +{"session_id":"sess-bf16626ed00c","input_length":1189,"output_length":1234,"hash_ids":[4148107,4148108,4148109],"delay":423.0} +{"session_id":"sess-bf16626ed00c","input_length":665,"output_length":107,"hash_ids":[4148110,4148111],"delay":17709.0} +{"session_id":"sess-bf16626ed00c","input_length":769,"output_length":140,"hash_ids":[4148112,4148113],"delay":763.7} +{"session_id":"sess-bf16626ed00c","input_length":1395,"output_length":144,"hash_ids":[4148114,4148115,4148116],"delay":991.9} +{"session_id":"sess-bf16626ed00c","input_length":2396,"output_length":59,"hash_ids":[4148117,4148118,4148119,4148120,4148121],"delay":26798.2} +{"session_id":"sess-bf16626ed00c","input_length":429,"output_length":87,"hash_ids":[4148122],"delay":2541.6} +{"session_id":"sess-bf16626ed00c","input_length":1077,"output_length":357,"hash_ids":[4148123,4148124,4148125],"delay":2400.9} +{"session_id":"sess-bf16626ed00c","input_length":2087,"output_length":463,"hash_ids":[4148126,4148127,4148128,4148129,4148130],"delay":1131.0} +{"session_id":"sess-bf16626ed00c","input_length":2990,"output_length":139,"hash_ids":[4148131,4148132,4148133,4148134,4148135,4148136],"delay":17775.6} +{"session_id":"sess-bf16626ed00c","input_length":914,"output_length":159,"hash_ids":[4148137,4148138],"delay":413.9} +{"session_id":"sess-bf16626ed00c","input_length":121,"output_length":145,"hash_ids":[4148139],"delay":3902.2} +{"session_id":"sess-bf16626ed00c","input_length":935,"output_length":579,"hash_ids":[4148140,4148141],"delay":22388.4} +{"session_id":"sess-bf16626ed00c","input_length":732,"output_length":556,"hash_ids":[4148142,4148143],"delay":18835.4} +{"session_id":"sess-bf16626ed00c","input_length":1297,"output_length":398,"hash_ids":[4148144,4148145,4148146],"delay":1015.1} +{"session_id":"sess-bf16626ed00c","input_length":2443,"output_length":253,"hash_ids":[4148147,4148148,4148149,4148150,4148151],"delay":480.7} +{"session_id":"sess-bf16626ed00c","input_length":995,"output_length":460,"hash_ids":[4148152,4148153],"delay":382.6} +{"session_id":"sess-bf16626ed00c","input_length":267,"output_length":92,"hash_ids":[4148154],"delay":437.8} +{"session_id":"sess-bf16626ed00c","input_length":1752,"output_length":266,"hash_ids":[4148155,4148156,4148157,4148158],"delay":1004.5} +{"session_id":"sess-bf16626ed00c","input_length":2903,"output_length":105,"hash_ids":[4148159,4148160,4148161,4148162,4148163,4148164],"delay":666.7} +{"session_id":"sess-bf16626ed00c","input_length":271,"output_length":126,"hash_ids":[4148165],"delay":375.7} +{"session_id":"sess-bf16626ed00c","input_length":1636,"output_length":1384,"hash_ids":[4148166,4148167,4148168,4148169],"delay":736.7} +{"session_id":"sess-ff4001a5cf1f","input_length":33277,"output_length":832,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4156032,4156033,4156034,4156035,4156036,4156037,4156038,4156039,4156040,4156041,4156042,4156043,4156044],"timestamp":0.0,"group_id":0} +{"session_id":"sess-ff4001a5cf1f","input_length":2219,"output_length":140,"hash_ids":[4156045,4156046,4156047,4156048,4156049],"delay":8245.6} +{"session_id":"sess-ff4001a5cf1f","input_length":1493,"output_length":301,"hash_ids":[4156050,4156051,4156052],"delay":2470.8} +{"session_id":"sess-ff4001a5cf1f","input_length":1821,"output_length":516,"hash_ids":[4156053,4156054,4156055,4156056],"delay":963.7} +{"session_id":"sess-ff4001a5cf1f","input_length":272,"output_length":123,"hash_ids":[4156057],"delay":1688.9} +{"session_id":"sess-9259657824d1","input_length":28497,"output_length":401,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,4160032,4160033,4160034,4160035],"timestamp":0.0,"group_id":1} +{"session_id":"sess-9259657824d1","input_length":1244,"output_length":379,"hash_ids":[4160036,4160037,4160038],"delay":6908.3} +{"session_id":"sess-9259657824d1","input_length":700,"output_length":162,"hash_ids":[4160039,4160040],"delay":1891.6} +{"session_id":"sess-9259657824d1","input_length":634,"output_length":447,"hash_ids":[4160041,4160042],"delay":494.4} +{"session_id":"sess-9259657824d1","input_length":252,"output_length":248,"hash_ids":[4160043],"delay":2698.4} +{"session_id":"sess-9259657824d1","input_length":2086,"output_length":106,"hash_ids":[4160044,4160045,4160046,4160047,4160048],"delay":251.0} +{"session_id":"sess-9259657824d1","input_length":1165,"output_length":30,"hash_ids":[4160049,4160050,4160051],"delay":4505.3} +{"session_id":"sess-9259657824d1","input_length":930,"output_length":86,"hash_ids":[4160052,4160053],"delay":2538.2} +{"session_id":"sess-9259657824d1","input_length":659,"output_length":34,"hash_ids":[4160054,4160055],"delay":3186.4} +{"session_id":"sess-9259657824d1","input_length":1785,"output_length":204,"hash_ids":[4160056,4160057,4160058,4160059],"delay":648.7} +{"session_id":"sess-9259657824d1","input_length":403,"output_length":294,"hash_ids":[4160060],"delay":9994.2} +{"session_id":"sess-9259657824d1","input_length":835,"output_length":116,"hash_ids":[4160061,4160062],"delay":2779.3} +{"session_id":"sess-9259657824d1","input_length":907,"output_length":373,"hash_ids":[4160063,4160064],"delay":181.5} +{"session_id":"sess-9259657824d1","input_length":117,"output_length":319,"hash_ids":[4160065],"delay":540.4} +{"session_id":"sess-9259657824d1","input_length":199,"output_length":39,"hash_ids":[4160066],"delay":1269.7} +{"session_id":"sess-9259657824d1","input_length":635,"output_length":591,"hash_ids":[4160067,4160068],"delay":423.0} +{"session_id":"sess-9259657824d1","input_length":2963,"output_length":475,"hash_ids":[4160069,4160070,4160071,4160072,4160073,4160074],"delay":543.7} +{"session_id":"sess-9259657824d1","input_length":437,"output_length":65,"hash_ids":[4160075],"delay":26154.8} +{"session_id":"sess-9259657824d1","input_length":2790,"output_length":45,"hash_ids":[4160076,4160077,4160078,4160079,4160080,4160081],"delay":217.3} +{"session_id":"sess-9259657824d1","input_length":2087,"output_length":62,"hash_ids":[4160082,4160083,4160084,4160085,4160086],"delay":432.0} +{"session_id":"sess-9259657824d1","input_length":477,"output_length":117,"hash_ids":[4160087],"delay":655.7} +{"session_id":"sess-9259657824d1","input_length":173,"output_length":757,"hash_ids":[4160088],"delay":581.5} +{"session_id":"sess-9259657824d1","input_length":601,"output_length":234,"hash_ids":[4160089,4160090],"delay":359.6} +{"session_id":"sess-9259657824d1","input_length":1493,"output_length":335,"hash_ids":[4160091,4160092,4160093],"delay":115.8} +{"session_id":"sess-9259657824d1","input_length":312,"output_length":90,"hash_ids":[4160094],"delay":2520.6} +{"session_id":"sess-9259657824d1","input_length":331,"output_length":92,"hash_ids":[4160095],"delay":222.9} +{"session_id":"sess-9259657824d1","input_length":1464,"output_length":68,"hash_ids":[4160096,4160097,4160098],"delay":377.0} +{"session_id":"sess-9259657824d1","input_length":888,"output_length":201,"hash_ids":[4160099,4160100],"delay":3218.7} +{"session_id":"sess-9259657824d1","input_length":782,"output_length":99,"hash_ids":[4160101,4160102],"delay":993.1} +{"session_id":"sess-9259657824d1","input_length":825,"output_length":723,"hash_ids":[4160103,4160104],"delay":363.5} +{"session_id":"sess-c75d0854eacf","input_length":29951,"output_length":128,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,4164032,4164033,4164034,4164035,4164036,4164037,4164038],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c75d0854eacf","input_length":1563,"output_length":643,"hash_ids":[4164039,4164040,4164041,4164042],"delay":10631.6} +{"session_id":"sess-c75d0854eacf","input_length":243,"output_length":262,"hash_ids":[4164043],"delay":19890.4} +{"session_id":"sess-c75d0854eacf","input_length":711,"output_length":252,"hash_ids":[4164044,4164045],"delay":4296.4} +{"session_id":"sess-c75d0854eacf","input_length":1234,"output_length":202,"hash_ids":[4164046,4164047,4164048],"delay":985.6} +{"session_id":"sess-c75d0854eacf","input_length":534,"output_length":163,"hash_ids":[4164049,4164050],"delay":2147.2} +{"session_id":"sess-c75d0854eacf","input_length":232,"output_length":341,"hash_ids":[4164051],"delay":2914.7} +{"session_id":"sess-c75d0854eacf","input_length":740,"output_length":61,"hash_ids":[4164052,4164053],"delay":1741.6} +{"session_id":"sess-c75d0854eacf","input_length":1906,"output_length":567,"hash_ids":[4164054,4164055,4164056,4164057],"delay":2170.2} +{"session_id":"sess-c75d0854eacf","input_length":591,"output_length":543,"hash_ids":[4164058,4164059],"delay":28980.2} +{"session_id":"sess-c75d0854eacf","input_length":963,"output_length":931,"hash_ids":[4164060,4164061],"delay":1526.2} +{"session_id":"sess-c75d0854eacf","input_length":2590,"output_length":376,"hash_ids":[4164062,4164063,4164064,4164065,4164066,4164067],"delay":5077.7} +{"session_id":"sess-c75d0854eacf","input_length":541,"output_length":123,"hash_ids":[4164068,4164069],"delay":47469.4} +{"session_id":"sess-c75d0854eacf","input_length":242,"output_length":43,"hash_ids":[4164070],"delay":271.4} +{"session_id":"sess-c75d0854eacf","input_length":1793,"output_length":330,"hash_ids":[4164071,4164072,4164073,4164074],"delay":500.4} +{"session_id":"sess-c75d0854eacf","input_length":755,"output_length":650,"hash_ids":[4164075,4164076],"delay":900.3} +{"session_id":"sess-c75d0854eacf","input_length":400,"output_length":140,"hash_ids":[4164077],"delay":1199.2} +{"session_id":"sess-c75d0854eacf","input_length":2651,"output_length":179,"hash_ids":[4164078,4164079,4164080,4164081,4164082,4164083],"delay":458.5} +{"session_id":"sess-c75d0854eacf","input_length":1155,"output_length":223,"hash_ids":[4164084,4164085,4164086],"delay":3320.2} +{"session_id":"sess-c75d0854eacf","input_length":1207,"output_length":219,"hash_ids":[4164087,4164088,4164089],"delay":517.7} +{"session_id":"sess-c75d0854eacf","input_length":107,"output_length":56,"hash_ids":[4164090],"delay":5859.8} +{"session_id":"sess-c75d0854eacf","input_length":1373,"output_length":78,"hash_ids":[4164091,4164092,4164093],"delay":3077.8} +{"session_id":"sess-c75d0854eacf","input_length":708,"output_length":151,"hash_ids":[4164094,4164095],"delay":1641.2} +{"session_id":"sess-c75d0854eacf","input_length":1048,"output_length":75,"hash_ids":[4164096,4164097,4164098],"delay":748.4} +{"session_id":"sess-5e477e960b8f","input_length":31040,"output_length":811,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,4168032,4168033,4168034,4168035,4168036,4168037,4168038,4168039,4168040],"timestamp":0.0,"group_id":1} +{"session_id":"sess-5e477e960b8f","input_length":2387,"output_length":1258,"hash_ids":[4168041,4168042,4168043,4168044,4168045],"delay":1261.7} +{"session_id":"sess-5e477e960b8f","input_length":438,"output_length":336,"hash_ids":[4168046],"delay":36278.2} +{"session_id":"sess-5e477e960b8f","input_length":1932,"output_length":182,"hash_ids":[4168047,4168048,4168049,4168050],"delay":418.4} +{"session_id":"sess-5e477e960b8f","input_length":460,"output_length":186,"hash_ids":[4168051],"delay":1092.3} +{"session_id":"sess-5e477e960b8f","input_length":134,"output_length":269,"hash_ids":[4168052],"delay":1034.8} +{"session_id":"sess-5e477e960b8f","input_length":2320,"output_length":168,"hash_ids":[4168053,4168054,4168055,4168056,4168057],"delay":4610.5} +{"session_id":"sess-5e477e960b8f","input_length":838,"output_length":366,"hash_ids":[4168058,4168059],"delay":4318.7} +{"session_id":"sess-5e477e960b8f","input_length":298,"output_length":369,"hash_ids":[4168060],"delay":238.1} +{"session_id":"sess-5e477e960b8f","input_length":2839,"output_length":290,"hash_ids":[4168061,4168062,4168063,4168064,4168065,4168066],"delay":14992.7} +{"session_id":"sess-5e477e960b8f","input_length":1532,"output_length":134,"hash_ids":[4168067,4168068,4168069],"delay":778.7} +{"session_id":"sess-5e477e960b8f","input_length":303,"output_length":773,"hash_ids":[4168070],"delay":558.1} +{"session_id":"sess-5e477e960b8f","input_length":386,"output_length":177,"hash_ids":[4168071],"delay":1101.3} +{"session_id":"sess-5e477e960b8f","input_length":108,"output_length":179,"hash_ids":[4168072],"delay":43092.1} +{"session_id":"sess-5e477e960b8f","input_length":292,"output_length":114,"hash_ids":[4168073],"delay":67.6} +{"session_id":"sess-5e477e960b8f","input_length":1952,"output_length":393,"hash_ids":[4168074,4168075,4168076,4168077],"delay":886.3} +{"session_id":"sess-5e477e960b8f","input_length":991,"output_length":85,"hash_ids":[4168078,4168079],"delay":807.9} +{"session_id":"sess-5e477e960b8f","input_length":683,"output_length":58,"hash_ids":[4168080,4168081],"delay":1461.0} +{"session_id":"sess-5e477e960b8f","input_length":1823,"output_length":58,"hash_ids":[4168082,4168083,4168084,4168085],"delay":132.2} +{"session_id":"sess-5e477e960b8f","input_length":541,"output_length":206,"hash_ids":[4168086,4168087],"delay":6803.2} +{"session_id":"sess-5e477e960b8f","input_length":558,"output_length":116,"hash_ids":[4168088,4168089],"delay":857.3} +{"session_id":"sess-5e477e960b8f","input_length":921,"output_length":109,"hash_ids":[4168090,4168091],"delay":17024.9} +{"session_id":"sess-5e477e960b8f","input_length":492,"output_length":241,"hash_ids":[4168092],"delay":758.3} +{"session_id":"sess-5e477e960b8f","input_length":944,"output_length":580,"hash_ids":[4168093,4168094],"delay":682.2} +{"session_id":"sess-5e477e960b8f","input_length":474,"output_length":727,"hash_ids":[4168095],"delay":587.7} +{"session_id":"sess-5e477e960b8f","input_length":845,"output_length":445,"hash_ids":[4168096,4168097],"delay":426.2} +{"session_id":"sess-82cc32a60ac6","input_length":28629,"output_length":999,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4172032,4172033,4172034,4172035],"timestamp":0.0,"group_id":0} +{"session_id":"sess-82cc32a60ac6","input_length":1139,"output_length":432,"hash_ids":[4172036,4172037,4172038],"delay":833.8} +{"session_id":"sess-82cc32a60ac6","input_length":533,"output_length":516,"hash_ids":[4172039,4172040],"delay":273.1} +{"session_id":"sess-82cc32a60ac6","input_length":1390,"output_length":232,"hash_ids":[4172041,4172042,4172043],"delay":756.8} +{"session_id":"sess-82cc32a60ac6","input_length":369,"output_length":156,"hash_ids":[4172044],"delay":23813.7} +{"session_id":"sess-82cc32a60ac6","input_length":705,"output_length":719,"hash_ids":[4172045,4172046],"delay":1259.2} +{"session_id":"sess-82cc32a60ac6","input_length":604,"output_length":58,"hash_ids":[4172047,4172048],"delay":361.5} +{"session_id":"sess-82cc32a60ac6","input_length":286,"output_length":287,"hash_ids":[4172049],"delay":11480.6} +{"session_id":"sess-82cc32a60ac6","input_length":122,"output_length":89,"hash_ids":[4172050],"delay":48460.1} +{"session_id":"sess-82cc32a60ac6","input_length":508,"output_length":130,"hash_ids":[4172051],"delay":19047.1} +{"session_id":"sess-82cc32a60ac6","input_length":1032,"output_length":73,"hash_ids":[4172052,4172053,4172054],"delay":2897.0} +{"session_id":"sess-82cc32a60ac6","input_length":111,"output_length":121,"hash_ids":[4172055],"delay":430.9} +{"session_id":"sess-82cc32a60ac6","input_length":1507,"output_length":124,"hash_ids":[4172056,4172057,4172058],"delay":659.8} +{"session_id":"sess-82cc32a60ac6","input_length":243,"output_length":130,"hash_ids":[4172059],"delay":1388.2} +{"session_id":"sess-82cc32a60ac6","input_length":2003,"output_length":434,"hash_ids":[4172060,4172061,4172062,4172063],"delay":1285.7} +{"session_id":"sess-82cc32a60ac6","input_length":591,"output_length":44,"hash_ids":[4172064,4172065],"delay":706.5} +{"session_id":"sess-82cc32a60ac6","input_length":528,"output_length":240,"hash_ids":[4172066,4172067],"delay":7389.5} +{"session_id":"sess-82cc32a60ac6","input_length":1699,"output_length":181,"hash_ids":[4172068,4172069,4172070,4172071],"delay":5174.2} +{"session_id":"sess-82cc32a60ac6","input_length":338,"output_length":119,"hash_ids":[4172072],"delay":3802.7} +{"session_id":"sess-82cc32a60ac6","input_length":498,"output_length":217,"hash_ids":[4172073],"delay":2509.6} +{"session_id":"sess-82cc32a60ac6","input_length":478,"output_length":333,"hash_ids":[4172074],"delay":8178.0} +{"session_id":"sess-82cc32a60ac6","input_length":430,"output_length":172,"hash_ids":[4172075],"delay":3091.0} +{"session_id":"sess-82cc32a60ac6","input_length":2117,"output_length":140,"hash_ids":[4172076,4172077,4172078,4172079,4172080],"delay":8444.0} +{"session_id":"sess-82cc32a60ac6","input_length":326,"output_length":30,"hash_ids":[4172081],"delay":1070.0} +{"session_id":"sess-82cc32a60ac6","input_length":394,"output_length":236,"hash_ids":[4172082],"delay":5026.5} +{"session_id":"sess-82cc32a60ac6","input_length":1153,"output_length":377,"hash_ids":[4172083,4172084,4172085],"delay":1558.3} +{"session_id":"sess-82cc32a60ac6","input_length":562,"output_length":125,"hash_ids":[4172086,4172087],"delay":14767.8} +{"session_id":"sess-82cc32a60ac6","input_length":433,"output_length":343,"hash_ids":[4172088],"delay":1596.5} +{"session_id":"sess-82cc32a60ac6","input_length":274,"output_length":49,"hash_ids":[4172089],"delay":284.0} +{"session_id":"sess-82cc32a60ac6","input_length":653,"output_length":277,"hash_ids":[4172090,4172091],"delay":297.8} +{"session_id":"sess-82cc32a60ac6","input_length":785,"output_length":103,"hash_ids":[4172092,4172093],"delay":12565.8} +{"session_id":"sess-82cc32a60ac6","input_length":269,"output_length":156,"hash_ids":[4172094],"delay":243.3} +{"session_id":"sess-82cc32a60ac6","input_length":1859,"output_length":734,"hash_ids":[4172095,4172096,4172097,4172098],"delay":325.0} +{"session_id":"sess-82cc32a60ac6","input_length":1013,"output_length":625,"hash_ids":[4172099,4172100],"delay":148.6} +{"session_id":"sess-82cc32a60ac6","input_length":682,"output_length":129,"hash_ids":[4172101,4172102],"delay":883.4} +{"session_id":"sess-82cc32a60ac6","input_length":513,"output_length":135,"hash_ids":[4172103,4172104],"delay":753.7} +{"session_id":"sess-82cc32a60ac6","input_length":274,"output_length":122,"hash_ids":[4172105],"delay":8727.2} +{"session_id":"sess-82cc32a60ac6","input_length":55,"output_length":124,"hash_ids":[4172106],"delay":477.4} +{"session_id":"sess-82cc32a60ac6","input_length":459,"output_length":85,"hash_ids":[4172107],"delay":470.8} +{"session_id":"sess-9d6373dcb8e5","input_length":26474,"output_length":658,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251],"timestamp":0.0,"group_id":1} +{"session_id":"sess-9d6373dcb8e5","input_length":653,"output_length":112,"hash_ids":[4172108,4172109],"delay":1451.3} +{"session_id":"sess-9d6373dcb8e5","input_length":392,"output_length":135,"hash_ids":[4172110],"delay":1168.4} +{"session_id":"sess-9d6373dcb8e5","input_length":1448,"output_length":37,"hash_ids":[4172111,4172112,4172113],"delay":1495.6} +{"session_id":"sess-9d6373dcb8e5","input_length":317,"output_length":298,"hash_ids":[4172114],"delay":618.9} +{"session_id":"sess-9d6373dcb8e5","input_length":381,"output_length":259,"hash_ids":[4172115],"delay":665.9} +{"session_id":"sess-9d6373dcb8e5","input_length":1794,"output_length":476,"hash_ids":[4172116,4172117,4172118,4172119],"delay":622.0} +{"session_id":"sess-9d6373dcb8e5","input_length":777,"output_length":110,"hash_ids":[4172120,4172121],"delay":1059.0} +{"session_id":"sess-9d6373dcb8e5","input_length":1330,"output_length":31,"hash_ids":[4172122,4172123,4172124],"delay":600.9} +{"session_id":"sess-9d6373dcb8e5","input_length":2633,"output_length":1126,"hash_ids":[4172125,4172126,4172127,4172128,4172129,4172130],"delay":6195.0} +{"session_id":"sess-9d6373dcb8e5","input_length":755,"output_length":252,"hash_ids":[4172131,4172132],"delay":850.2} +{"session_id":"sess-9d6373dcb8e5","input_length":192,"output_length":194,"hash_ids":[4172133],"delay":5579.6} +{"session_id":"sess-9d6373dcb8e5","input_length":641,"output_length":82,"hash_ids":[4172134,4172135],"delay":738.0} +{"session_id":"sess-9d6373dcb8e5","input_length":612,"output_length":305,"hash_ids":[4172136,4172137],"delay":48095.5} +{"session_id":"sess-9d6373dcb8e5","input_length":457,"output_length":293,"hash_ids":[4172138],"delay":1376.0} +{"session_id":"sess-9d6373dcb8e5","input_length":602,"output_length":106,"hash_ids":[4172139,4172140],"delay":13830.5} +{"session_id":"sess-9d6373dcb8e5","input_length":678,"output_length":139,"hash_ids":[4172141,4172142],"delay":1061.5} +{"session_id":"sess-9d6373dcb8e5","input_length":1121,"output_length":83,"hash_ids":[4172143,4172144,4172145],"delay":4391.0} +{"session_id":"sess-9d6373dcb8e5","input_length":2283,"output_length":30,"hash_ids":[4172146,4172147,4172148,4172149,4172150],"delay":438.1} +{"session_id":"sess-9d6373dcb8e5","input_length":600,"output_length":513,"hash_ids":[4172151,4172152],"delay":896.0} +{"session_id":"sess-9d6373dcb8e5","input_length":499,"output_length":534,"hash_ids":[4172153],"delay":1424.4} +{"session_id":"sess-76480863d59e","input_length":28055,"output_length":552,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,4180032,4180033,4180034],"timestamp":0.0,"group_id":7} +{"session_id":"sess-76480863d59e","input_length":612,"output_length":30,"hash_ids":[4180035,4180036],"delay":1318.7} +{"session_id":"sess-76480863d59e","input_length":2416,"output_length":80,"hash_ids":[4180037,4180038,4180039,4180040,4180041],"delay":14557.5} +{"session_id":"sess-76480863d59e","input_length":607,"output_length":30,"hash_ids":[4180042,4180043],"delay":674.6} +{"session_id":"sess-76480863d59e","input_length":1247,"output_length":93,"hash_ids":[4180044,4180045,4180046],"delay":846.7} +{"session_id":"sess-76480863d59e","input_length":886,"output_length":331,"hash_ids":[4180047,4180048],"delay":473.5} +{"session_id":"sess-76480863d59e","input_length":2789,"output_length":72,"hash_ids":[4180049,4180050,4180051,4180052,4180053,4180054],"delay":6445.4} +{"session_id":"sess-76480863d59e","input_length":1639,"output_length":110,"hash_ids":[4180055,4180056,4180057,4180058],"delay":62654.2} +{"session_id":"sess-76480863d59e","input_length":462,"output_length":193,"hash_ids":[4180059],"delay":9477.4} +{"session_id":"sess-76480863d59e","input_length":1001,"output_length":90,"hash_ids":[4180060,4180061],"delay":1103.4} +{"session_id":"sess-76480863d59e","input_length":875,"output_length":144,"hash_ids":[4180062,4180063],"delay":453.6} +{"session_id":"sess-76480863d59e","input_length":410,"output_length":235,"hash_ids":[4180064],"delay":398.5} +{"session_id":"sess-76480863d59e","input_length":812,"output_length":58,"hash_ids":[4180065,4180066],"delay":7766.0} +{"session_id":"sess-76480863d59e","input_length":1173,"output_length":230,"hash_ids":[4180067,4180068,4180069],"delay":17400.7} +{"session_id":"sess-76480863d59e","input_length":760,"output_length":83,"hash_ids":[4180070,4180071],"delay":2185.8} +{"session_id":"sess-76480863d59e","input_length":309,"output_length":472,"hash_ids":[4180072],"delay":15172.9} +{"session_id":"sess-76480863d59e","input_length":235,"output_length":257,"hash_ids":[4180073],"delay":253.5} +{"session_id":"sess-5babcfcd9fdd","input_length":27865,"output_length":104,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4184032,4184033,4184034],"timestamp":0.0,"group_id":0} +{"session_id":"sess-5babcfcd9fdd","input_length":2038,"output_length":325,"hash_ids":[4184035,4184036,4184037,4184038],"delay":1534.8} +{"session_id":"sess-5babcfcd9fdd","input_length":131,"output_length":194,"hash_ids":[4184039],"delay":11396.1} +{"session_id":"sess-5babcfcd9fdd","input_length":1086,"output_length":228,"hash_ids":[4184040,4184041,4184042],"delay":815.0} +{"session_id":"sess-5babcfcd9fdd","input_length":1069,"output_length":53,"hash_ids":[4184043,4184044,4184045],"delay":1199.1} +{"session_id":"sess-5babcfcd9fdd","input_length":256,"output_length":135,"hash_ids":[4184046],"delay":2619.5} +{"session_id":"sess-5babcfcd9fdd","input_length":2813,"output_length":282,"hash_ids":[4184047,4184048,4184049,4184050,4184051,4184052],"delay":1922.5} +{"session_id":"sess-5babcfcd9fdd","input_length":710,"output_length":262,"hash_ids":[4184053,4184054],"delay":2041.0} +{"session_id":"sess-5babcfcd9fdd","input_length":1132,"output_length":53,"hash_ids":[4184055,4184056,4184057],"delay":8411.5} +{"session_id":"sess-5babcfcd9fdd","input_length":149,"output_length":646,"hash_ids":[4184058],"delay":14255.4} +{"session_id":"sess-5babcfcd9fdd","input_length":1683,"output_length":311,"hash_ids":[4184059,4184060,4184061,4184062],"delay":11246.7} +{"session_id":"sess-5babcfcd9fdd","input_length":1636,"output_length":454,"hash_ids":[4184063,4184064,4184065,4184066],"delay":333.0} +{"session_id":"sess-5babcfcd9fdd","input_length":1792,"output_length":243,"hash_ids":[4184067,4184068,4184069,4184070],"delay":8779.9} +{"session_id":"sess-5babcfcd9fdd","input_length":1330,"output_length":45,"hash_ids":[4184071,4184072,4184073],"delay":1540.2} +{"session_id":"sess-5babcfcd9fdd","input_length":2352,"output_length":146,"hash_ids":[4184074,4184075,4184076,4184077,4184078],"delay":714.6} +{"session_id":"sess-5babcfcd9fdd","input_length":639,"output_length":147,"hash_ids":[4184079,4184080],"delay":850.3} +{"session_id":"sess-5babcfcd9fdd","input_length":604,"output_length":136,"hash_ids":[4184081,4184082],"delay":16096.0} +{"session_id":"sess-5babcfcd9fdd","input_length":212,"output_length":70,"hash_ids":[4184083],"delay":536.7} +{"session_id":"sess-5babcfcd9fdd","input_length":686,"output_length":156,"hash_ids":[4184084,4184085],"delay":1771.4} +{"session_id":"sess-5babcfcd9fdd","input_length":280,"output_length":146,"hash_ids":[4184086],"delay":2604.4} +{"session_id":"sess-5babcfcd9fdd","input_length":1954,"output_length":253,"hash_ids":[4184087,4184088,4184089,4184090],"delay":253.8} +{"session_id":"sess-5babcfcd9fdd","input_length":965,"output_length":30,"hash_ids":[4184091,4184092],"delay":2703.6} +{"session_id":"sess-5babcfcd9fdd","input_length":514,"output_length":450,"hash_ids":[4184093,4184094],"delay":262.8} +{"session_id":"sess-5babcfcd9fdd","input_length":156,"output_length":31,"hash_ids":[4184095],"delay":512.6} +{"session_id":"sess-5babcfcd9fdd","input_length":2687,"output_length":765,"hash_ids":[4184096,4184097,4184098,4184099,4184100,4184101],"delay":1946.9} +{"session_id":"sess-c4c626cb00d6","input_length":34170,"output_length":159,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,4188032,4188033,4188034,4188035,4188036,4188037,4188038,4188039,4188040,4188041,4188042,4188043,4188044,4188045,4188046],"timestamp":0.0,"group_id":19} +{"session_id":"sess-c4c626cb00d6","input_length":255,"output_length":214,"hash_ids":[4188047],"delay":1109.1} +{"session_id":"sess-c4c626cb00d6","input_length":1529,"output_length":94,"hash_ids":[4188048,4188049,4188050],"delay":1210.0} +{"session_id":"sess-c4c626cb00d6","input_length":1794,"output_length":62,"hash_ids":[4188051,4188052,4188053,4188054],"delay":2858.8} +{"session_id":"sess-c4c626cb00d6","input_length":83,"output_length":548,"hash_ids":[4188055],"delay":3426.5} +{"session_id":"sess-c4c626cb00d6","input_length":128,"output_length":168,"hash_ids":[4188056],"delay":1143.1} +{"session_id":"sess-8f94129d81cd","input_length":27878,"output_length":239,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,4192032,4192033,4192034],"timestamp":0.0,"group_id":5} +{"session_id":"sess-8f94129d81cd","input_length":746,"output_length":30,"hash_ids":[4192035,4192036],"delay":612.2} +{"session_id":"sess-8f94129d81cd","input_length":876,"output_length":339,"hash_ids":[4192037,4192038],"delay":1026.6} +{"session_id":"sess-8f94129d81cd","input_length":816,"output_length":151,"hash_ids":[4192039,4192040],"delay":1492.6} +{"session_id":"sess-8f94129d81cd","input_length":1200,"output_length":1357,"hash_ids":[4192041,4192042,4192043],"delay":46916.8} +{"session_id":"sess-8f94129d81cd","input_length":458,"output_length":47,"hash_ids":[4192044],"delay":39154.7} +{"session_id":"sess-8f94129d81cd","input_length":794,"output_length":69,"hash_ids":[4192045,4192046],"delay":664.6} +{"session_id":"sess-8f94129d81cd","input_length":461,"output_length":64,"hash_ids":[4192047],"delay":637.0} +{"session_id":"sess-8f94129d81cd","input_length":2836,"output_length":275,"hash_ids":[4192048,4192049,4192050,4192051,4192052,4192053],"delay":7989.0} +{"session_id":"sess-8f94129d81cd","input_length":216,"output_length":125,"hash_ids":[4192054],"delay":1916.0} +{"session_id":"sess-8f94129d81cd","input_length":1029,"output_length":449,"hash_ids":[4192055,4192056,4192057],"delay":3632.5} +{"session_id":"sess-8f94129d81cd","input_length":793,"output_length":176,"hash_ids":[4192058,4192059],"delay":679.1} +{"session_id":"sess-8f94129d81cd","input_length":2763,"output_length":71,"hash_ids":[4192060,4192061,4192062,4192063,4192064,4192065],"delay":1043.6} +{"session_id":"sess-8f94129d81cd","input_length":2130,"output_length":49,"hash_ids":[4192066,4192067,4192068,4192069,4192070],"delay":745.4} +{"session_id":"sess-8f94129d81cd","input_length":74,"output_length":212,"hash_ids":[4192071],"delay":29455.2} +{"session_id":"sess-8f94129d81cd","input_length":894,"output_length":43,"hash_ids":[4192072,4192073],"delay":903.4} +{"session_id":"sess-8f94129d81cd","input_length":586,"output_length":52,"hash_ids":[4192074,4192075],"delay":46812.5} +{"session_id":"sess-8f94129d81cd","input_length":270,"output_length":422,"hash_ids":[4192076],"delay":773.0} +{"session_id":"sess-8f94129d81cd","input_length":1331,"output_length":77,"hash_ids":[4192077,4192078,4192079],"delay":18831.9} +{"session_id":"sess-8f94129d81cd","input_length":1501,"output_length":162,"hash_ids":[4192080,4192081,4192082],"delay":4795.2} +{"session_id":"sess-8f94129d81cd","input_length":824,"output_length":108,"hash_ids":[4192083,4192084],"delay":918.8} +{"session_id":"sess-8f94129d81cd","input_length":850,"output_length":59,"hash_ids":[4192085,4192086],"delay":9649.5} +{"session_id":"sess-8f94129d81cd","input_length":1242,"output_length":140,"hash_ids":[4192087,4192088,4192089],"delay":401.3} +{"session_id":"sess-8f94129d81cd","input_length":303,"output_length":87,"hash_ids":[4192090],"delay":3969.6} +{"session_id":"sess-8f94129d81cd","input_length":469,"output_length":142,"hash_ids":[4192091],"delay":758.9} +{"session_id":"sess-8f94129d81cd","input_length":1435,"output_length":74,"hash_ids":[4192092,4192093,4192094],"delay":742.0} +{"session_id":"sess-8f94129d81cd","input_length":1653,"output_length":735,"hash_ids":[4192095,4192096,4192097,4192098],"delay":1372.0} +{"session_id":"sess-8f94129d81cd","input_length":2958,"output_length":318,"hash_ids":[4192099,4192100,4192101,4192102,4192103,4192104],"delay":586.5} +{"session_id":"sess-8f94129d81cd","input_length":452,"output_length":146,"hash_ids":[4192105],"delay":670.7} +{"session_id":"sess-8f94129d81cd","input_length":342,"output_length":409,"hash_ids":[4192106],"delay":1891.4} +{"session_id":"sess-8f94129d81cd","input_length":719,"output_length":83,"hash_ids":[4192107,4192108],"delay":604.3} +{"session_id":"sess-9a9dbf186079","input_length":29488,"output_length":123,"hash_ids":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,4196032,4196033,4196034,4196035,4196036,4196037],"timestamp":0.0,"group_id":0} +{"session_id":"sess-9a9dbf186079","input_length":1488,"output_length":113,"hash_ids":[4196038,4196039,4196040],"delay":1043.7} diff --git a/benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl b/benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl new file mode 100644 index 000000000..4fc955151 --- /dev/null +++ b/benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl @@ -0,0 +1,12 @@ +{"session_id":"sess-c1ff91a76156","input_length":1415,"output_length":30,"hash_ids":[0,1,202],"timestamp":0.0,"group_id":1} +{"session_id":"sess-c1ff91a76156","input_length":120,"output_length":161,"hash_ids":[203],"delay":2134.3} +{"session_id":"sess-c1ff91a76156","input_length":119,"output_length":33,"hash_ids":[204],"delay":650.9} +{"session_id":"sess-c1ff91a76156","input_length":142,"output_length":69,"hash_ids":[205],"delay":1591.9} +{"session_id":"sess-d4c82aec8ebb","input_length":1457,"output_length":139,"hash_ids":[0,1,2],"timestamp":0.0,"group_id":0} +{"session_id":"sess-d4c82aec8ebb","input_length":123,"output_length":156,"hash_ids":[206],"delay":191.3} +{"session_id":"sess-d4c82aec8ebb","input_length":144,"output_length":88,"hash_ids":[207],"delay":3450.5} +{"session_id":"sess-bbf4c5c76daa","input_length":1486,"output_length":45,"hash_ids":[0,1,402],"timestamp":0.0,"group_id":2} +{"session_id":"sess-bbf4c5c76daa","input_length":703,"output_length":59,"hash_ids":[403,404],"delay":964.9} +{"session_id":"sess-4ebe94fb6705","input_length":1439,"output_length":34,"hash_ids":[0,1,602],"timestamp":0.0,"group_id":3} +{"session_id":"sess-4ebe94fb6705","input_length":181,"output_length":140,"hash_ids":[603],"delay":249.1} +{"session_id":"sess-15925fb20e96","input_length":1664,"output_length":119,"hash_ids":[0,1,202,203],"timestamp":0.0,"group_id":1} diff --git a/benchmarks/single_node/gemma4-agentic_fp8_h100_sglang.sh b/benchmarks/single_node/gemma4-agentic_fp8_h100_sglang.sh new file mode 100755 index 000000000..981883de5 --- /dev/null +++ b/benchmarks/single_node/gemma4-agentic_fp8_h100_sglang.sh @@ -0,0 +1,114 @@ +#!/usr/bin/env bash +# +# Agentic-replay launcher: gemma-4-31B-it (fp8, TP=2) on SGLang, driven by a recorded +# mooncake_trace JSONL through official AIPerf. Engine-vs-engine sibling of +# gemma4-agentic_fp8_h100_vllm.sh on the SAME model/hardware/trace (2x H100, TP=2, +# cache ON). The trace is replayed once; --request-count equals the dataset record +# count and isl/osl do not apply (the trace defines per-request lengths). +# +# Uses the pre-quantized RedHatAI/gemma-4-31B-it-FP8-dynamic checkpoint (compressed- +# tensors, vision tower kept bf16 via its ignore list) rather than on-the-fly +# --quantization fp8 — SGLang's dynamic fp8 quantizes the vision tower and crashes in +# triton_scaled_mm. SGLang auto-detects compressed-tensors, so NO --quantization flag. +# fp8_e4m3 KV cache matches the vLLM sibling. RadixAttention prefix caching is +# default-ON (we do NOT pass --disable-radix-cache) — the "cache ON" requirement. +# AIPerf is engine-agnostic on the client path; --backend sglang is cosmetic. +# +# --attention-backend fa3: SGLang otherwise auto-selects the slow `triton` backend +# for the Gemma multimodal family (bidirectional image-token attention is triton- +# only), which made SGLang ~3-4x slower than vLLM/FlashInfer on the first run. This +# trace is TEXT-ONLY (no image tokens), so the bidirectional path is never needed +# and FA3 (the Hopper default, supports Gemma SWA) is both correct and fast. See +# docs/AIPERF_INTEGRATION.md "Backend-fairness trap". + +source "$(dirname "$0")/../benchmark_lib.sh" + +check_env_vars \ + MODEL \ + TP \ + CONC \ + MAX_MODEL_LEN \ + INPUT_FILE \ + CUSTOM_DATASET_TYPE \ + RESULT_FILENAME + +if [[ -n "$SLURM_JOB_ID" ]]; then + echo "JOB $SLURM_JOB_ID running on $SLURMD_NODENAME" +fi + +nvidia-smi + +SERVED_MODEL_NAME="${SERVED_MODEL_NAME:-google/gemma-4-31B-it}" +MAX_MODEL_LEN="${MAX_MODEL_LEN:-8192}" + +if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi + +# An optional "#N" suffix on the input-file path replays only the first N +# records (a low-resource subset of a large committed trace). +trace_limit="" +if [[ "$INPUT_FILE" == *"#"* ]]; then + trace_limit="${INPUT_FILE##*#}" + INPUT_FILE="${INPUT_FILE%#*}" +fi + +# The trace JSONL path is repo-relative; the container runs with cwd=/workspace. +if [[ ! -f "$INPUT_FILE" ]]; then + echo "Error: trace input file not found: $INPUT_FILE (cwd=$(pwd))" >&2 + exit 1 +fi + +if [[ -n "$trace_limit" ]]; then + head -n "$trace_limit" "$INPUT_FILE" > /workspace/_trace_subset.jsonl + INPUT_FILE=/workspace/_trace_subset.jsonl + echo "Subset trace to first $trace_limit records -> $INPUT_FILE" +fi + +SERVER_LOG=/workspace/server.log +PORT=${PORT:-8888} + +start_gpu_monitor + +set -x +python3 -m sglang.launch_server \ + --model "$MODEL" \ + --host 0.0.0.0 \ + --port "$PORT" \ + --served-model-name "$SERVED_MODEL_NAME" \ + --tp "$TP" \ + --attention-backend fa3 \ + --kv-cache-dtype fp8_e4m3 \ + --mem-fraction-static 0.85 \ + --chunked-prefill-size 8192 \ + --context-length "$MAX_MODEL_LEN" \ + --max-running-requests "$CONC" \ + --cuda-graph-max-bs "$CONC" \ + --decode-log-interval 1 \ + --trust-remote-code \ + > "$SERVER_LOG" 2>&1 & + +SERVER_PID=$! + +wait_for_server_ready --port "$PORT" --server-log "$SERVER_LOG" --server-pid "$SERVER_PID" + +# Replay the trace exactly once: one request per dataset record. +REQUEST_COUNT=$(grep -c . "$INPUT_FILE") +echo "Replaying trace $INPUT_FILE: $REQUEST_COUNT records at concurrency $CONC" + +run_client_benchmark \ + --model "$SERVED_MODEL_NAME" \ + --port "$PORT" \ + --backend sglang \ + --endpoint-type chat \ + --concurrency "$CONC" \ + --input-file "$INPUT_FILE" \ + --custom-dataset-type "$CUSTOM_DATASET_TYPE" \ + --request-count "$REQUEST_COUNT" \ + --result-filename "$RESULT_FILENAME" \ + --result-dir /workspace/ \ + --bench-serving-dir "${INFMAX_CONTAINER_WORKSPACE:-$(pwd)}" \ + --trust-remote-code \ + --server-pid "$SERVER_PID" \ + --random-seed "${RANDOM_SEED:-0}" + +stop_gpu_monitor +set +x diff --git a/benchmarks/single_node/gemma4-agentic_fp8_h100_vllm.sh b/benchmarks/single_node/gemma4-agentic_fp8_h100_vllm.sh new file mode 100755 index 000000000..374010b8d --- /dev/null +++ b/benchmarks/single_node/gemma4-agentic_fp8_h100_vllm.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash +# +# Agentic-replay launcher: google/gemma-4-31B-it (fp8, TP=2) on vLLM, driven by a +# recorded mooncake_trace JSONL through official AIPerf. Engine-vs-engine sibling of +# gemma4-agentic_fp8_h100_sglang.sh on the SAME model/hardware/trace (2x H100, TP=2, +# cache ON). The trace is replayed once; --request-count equals the dataset record +# count and isl/osl do not apply (the trace defines per-request lengths). +# +# fp8 recipe matches the existing gemma4_fp8_h100.sh bench: on-the-fly --quantization +# fp8 over google/gemma-4-31B-it + fp8_e4m3 KV cache. vLLM V1 keeps automatic prefix +# caching ON by default (NOT disabled here) — that is the "cache ON" requirement. +# See docs/AIPERF_INTEGRATION.md and docs/adr/0001-agentic-on-official-aiperf.md. + +source "$(dirname "$0")/../benchmark_lib.sh" + +check_env_vars \ + MODEL \ + TP \ + CONC \ + MAX_MODEL_LEN \ + INPUT_FILE \ + CUSTOM_DATASET_TYPE \ + RESULT_FILENAME + +if [[ -n "$SLURM_JOB_ID" ]]; then + echo "JOB $SLURM_JOB_ID running on $SLURMD_NODENAME" +fi + +nvidia-smi + +SERVED_MODEL_NAME="${SERVED_MODEL_NAME:-google/gemma-4-31B-it}" +MAX_MODEL_LEN="${MAX_MODEL_LEN:-8192}" + +if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi + +# An optional "#N" suffix on the input-file path replays only the first N +# records (a low-resource subset of a large committed trace). +trace_limit="" +if [[ "$INPUT_FILE" == *"#"* ]]; then + trace_limit="${INPUT_FILE##*#}" + INPUT_FILE="${INPUT_FILE%#*}" +fi + +# The trace JSONL path is repo-relative; the container runs with cwd=/workspace. +if [[ ! -f "$INPUT_FILE" ]]; then + echo "Error: trace input file not found: $INPUT_FILE (cwd=$(pwd))" >&2 + exit 1 +fi + +if [[ -n "$trace_limit" ]]; then + head -n "$trace_limit" "$INPUT_FILE" > /workspace/_trace_subset.jsonl + INPUT_FILE=/workspace/_trace_subset.jsonl + echo "Subset trace to first $trace_limit records -> $INPUT_FILE" +fi + +SERVER_LOG=/workspace/server.log +PORT=${PORT:-8888} + +start_gpu_monitor + +set -x +vllm serve "$MODEL" --host 0.0.0.0 --port "$PORT" \ +--served-model-name "$SERVED_MODEL_NAME" \ +--tensor-parallel-size "$TP" \ +--quantization fp8 \ +--kv-cache-dtype fp8_e4m3 \ +--gpu-memory-utilization 0.9 \ +--max-model-len "$MAX_MODEL_LEN" \ +--max-num-seqs "$CONC" \ +--trust-remote-code > "$SERVER_LOG" 2>&1 & + +SERVER_PID=$! + +wait_for_server_ready --port "$PORT" --server-log "$SERVER_LOG" --server-pid "$SERVER_PID" + +# Replay the trace exactly once: one request per dataset record. +REQUEST_COUNT=$(grep -c . "$INPUT_FILE") +echo "Replaying trace $INPUT_FILE: $REQUEST_COUNT records at concurrency $CONC" + +run_client_benchmark \ + --model "$SERVED_MODEL_NAME" \ + --port "$PORT" \ + --backend vllm \ + --endpoint-type chat \ + --concurrency "$CONC" \ + --input-file "$INPUT_FILE" \ + --custom-dataset-type "$CUSTOM_DATASET_TYPE" \ + --request-count "$REQUEST_COUNT" \ + --result-filename "$RESULT_FILENAME" \ + --result-dir /workspace/ \ + --bench-serving-dir "${INFMAX_CONTAINER_WORKSPACE:-$(pwd)}" \ + --trust-remote-code \ + --server-pid "$SERVER_PID" \ + --random-seed "${RANDOM_SEED:-0}" + +stop_gpu_monitor +set +x diff --git a/benchmarks/single_node/gemma4_bf16_h100.sh b/benchmarks/single_node/gemma4_bf16_h100.sh index e2c74c669..112415171 100755 --- a/benchmarks/single_node/gemma4_bf16_h100.sh +++ b/benchmarks/single_node/gemma4_bf16_h100.sh @@ -19,6 +19,9 @@ nvidia-smi SERVED_MODEL_NAME="${SERVED_MODEL_NAME:-google/gemma-4-31B-it}" MAX_MODEL_LEN="${MAX_MODEL_LEN:-8192}" +# Gemma4 MM encoder needs max_tokens_per_mm_item=2496; floor ensures +# max_num_batched_tokens >= that even when max_model_len is computed small. +MAX_NUM_BATCHED_TOKENS="${MAX_NUM_BATCHED_TOKENS:-$MAX_MODEL_LEN}" if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi @@ -39,6 +42,7 @@ vllm serve "$MODEL" --host 0.0.0.0 --port "$PORT" \ --dtype bfloat16 \ --gpu-memory-utilization 0.85 \ --max-model-len "$MAX_MODEL_LEN" \ +--max-num-batched-tokens "$MAX_NUM_BATCHED_TOKENS" \ --max-num-seqs "$CONC" \ --trust-remote-code > "$SERVER_LOG" 2>&1 & diff --git a/benchmarks/single_node/qwen3-4b-2507_bf16_h100_vllm.sh b/benchmarks/single_node/qwen3-4b-2507_bf16_h100_vllm.sh new file mode 100755 index 000000000..9fe1a2df2 --- /dev/null +++ b/benchmarks/single_node/qwen3-4b-2507_bf16_h100_vllm.sh @@ -0,0 +1,91 @@ +#!/usr/bin/env bash +# +# Agentic-replay smoke launcher: Qwen/Qwen3-4B-Instruct-2507 (bf16, TP=1) on vLLM, driven by +# a recorded mooncake_trace JSONL through official AIPerf. The trace is replayed +# once; --request-count equals the dataset record count and isl/osl do not apply +# (the trace defines per-request lengths). See docs/AIPERF_INTEGRATION.md and +# docs/adr/0001-agentic-on-official-aiperf.md. + +source "$(dirname "$0")/../benchmark_lib.sh" + +check_env_vars \ + MODEL \ + TP \ + CONC \ + MAX_MODEL_LEN \ + INPUT_FILE \ + CUSTOM_DATASET_TYPE \ + RESULT_FILENAME + +if [[ -n "$SLURM_JOB_ID" ]]; then + echo "JOB $SLURM_JOB_ID running on $SLURMD_NODENAME" +fi + +nvidia-smi + +SERVED_MODEL_NAME="${SERVED_MODEL_NAME:-Qwen/Qwen3-4B-Instruct-2507}" +MAX_MODEL_LEN="${MAX_MODEL_LEN:-8192}" + +if [[ "$MODEL" != /* ]]; then hf download "$MODEL"; fi + +# An optional "#N" suffix on the input-file path replays only the first N +# records (a low-resource subset of a large committed trace). +trace_limit="" +if [[ "$INPUT_FILE" == *"#"* ]]; then + trace_limit="${INPUT_FILE##*#}" + INPUT_FILE="${INPUT_FILE%#*}" +fi + +# The trace JSONL path is repo-relative; the container runs with cwd=/workspace. +if [[ ! -f "$INPUT_FILE" ]]; then + echo "Error: trace input file not found: $INPUT_FILE (cwd=$(pwd))" >&2 + exit 1 +fi + +if [[ -n "$trace_limit" ]]; then + head -n "$trace_limit" "$INPUT_FILE" > /workspace/_trace_subset.jsonl + INPUT_FILE=/workspace/_trace_subset.jsonl + echo "Subset trace to first $trace_limit records -> $INPUT_FILE" +fi + +SERVER_LOG=/workspace/server.log +PORT=${PORT:-8888} + +start_gpu_monitor + +set -x +vllm serve "$MODEL" --host 0.0.0.0 --port "$PORT" \ +--served-model-name "$SERVED_MODEL_NAME" \ +--tensor-parallel-size "$TP" \ +--dtype bfloat16 \ +--gpu-memory-utilization 0.85 \ +--max-model-len "$MAX_MODEL_LEN" \ +--max-num-seqs "$CONC" \ +--trust-remote-code > "$SERVER_LOG" 2>&1 & + +SERVER_PID=$! + +wait_for_server_ready --port "$PORT" --server-log "$SERVER_LOG" --server-pid "$SERVER_PID" + +# Replay the trace exactly once: one request per dataset record. +REQUEST_COUNT=$(grep -c . "$INPUT_FILE") +echo "Replaying trace $INPUT_FILE: $REQUEST_COUNT records at concurrency $CONC" + +run_client_benchmark \ + --model "$SERVED_MODEL_NAME" \ + --port "$PORT" \ + --backend vllm \ + --endpoint-type chat \ + --concurrency "$CONC" \ + --input-file "$INPUT_FILE" \ + --custom-dataset-type "$CUSTOM_DATASET_TYPE" \ + --request-count "$REQUEST_COUNT" \ + --result-filename "$RESULT_FILENAME" \ + --result-dir /workspace/ \ + --bench-serving-dir "${INFMAX_CONTAINER_WORKSPACE:-$(pwd)}" \ + --trust-remote-code \ + --server-pid "$SERVER_PID" \ + --random-seed "${RANDOM_SEED:-0}" + +stop_gpu_monitor +set +x diff --git a/docs/AIPERF_INTEGRATION.md b/docs/AIPERF_INTEGRATION.md index 1506c7ad7..cff69d291 100644 --- a/docs/AIPERF_INTEGRATION.md +++ b/docs/AIPERF_INTEGRATION.md @@ -1,17 +1,18 @@ # AIPerf Benchmark Client Integration -This document covers the fixed-sequence AIPerf integration in InferenceX: current -status, how it is wired, and how to run it in GitHub Actions. +This document is the operating guide for the AIPerf benchmark-client path in +InferenceX: fixed-sequence sweeps, `agentic-replay`, validation rules, and GitHub +Actions usage. For agentic replay decisions, see [`docs/adr/0001-agentic-on-official-aiperf.md`](adr/0001-agentic-on-official-aiperf.md). ## Status -As of 2026-06-02, AIPerf is integrated as a benchmark client for the -fixed-sequence single-node benchmark path. It is not a serving framework; vLLM, -SGLang, TRT, and other frameworks still start the model server, while AIPerf can -replace the native InferenceX HTTP load generator. +As of 2026-06-04, AIPerf is integrated as a benchmark client for fixed-sequence +single-node benchmarks and for `agentic-replay` Mooncake traces. It is not a +serving framework; vLLM, SGLang, TRT, and other frameworks still start the model +server, while AIPerf replaces the native InferenceX HTTP load generator. The current GreenNode config is `gemma4-bf16-h100-vllm` in `.github/configs/nvidia-master.yaml`: @@ -31,6 +32,17 @@ Validated so far: concurrency `2` and `4`. - The same smoke workflow failed only at `compare-results` because `NEON_PROD_RO_URL` was not configured, so `DATABASE_URL` was missing. +- **Agentic-replay path validated end-to-end** on the dual-engine run + ([26883861332](https://github.com/vngcloud/InferenceX/actions/runs/26883861332), + `conclusion: success`). Both legs of the gemma4-31B 64k `#1000` trace produced + valid AIPerf results with the *identical* engine-agnostic client: + `benchmark_client=aiperf` on both `vllm/vllm-openai:v0.21.0` and + `lmsysorg/sglang:v0.5.12`; vLLM server log shows **1000/1000 `POST + /v1/chat/completions` → 200, zero 4xx/5xx**; full metric schema (TTFT/TPOT/ITL/ + E2E p50–p99, `tput_per_gpu`, `tok_per_watt`) parsed into `agg_bmk.json`. This + confirms the AIPerf integration and the agentic-coding benchmark flow on + InferenceX both work; the engine-config issue below (SGLang FA3) is independent + of the integration. Pending if benchmark gating is required before merge: @@ -38,6 +50,52 @@ Pending if benchmark gating is required before merge: - Run the final AIPerf-only PR sweep, usually with `full-sweep-enabled` if every concurrency point matters. +## Agentic-Replay Quick Path + +Use `agentic-replay` when the workload is a multi-turn coding-agent trace. The +canonical path is official AIPerf plus `custom-dataset-type: mooncake_trace`; do +not use the retired `cquil11/aiperf` fork pipeline. + +Minimal scenario config: + +```yaml +scenarios: + agentic-replay: + - input-file: benchmarks/single_node/agentic/datasets/agentic-coding-64k.jsonl#2000 + custom-dataset-type: mooncake_trace + max-model-len: 73728 + search-space: + - { tp: 1, conc-list: [32] } +``` + +Configuration rules: + +- `benchmark-client` defaults to `[aiperf]` for `agentic-replay`; it is the only + supported client for trace replay. You may still write `benchmark-client: + [aiperf]` explicitly for readability. +- `input-file` is repo-relative. A `#N` suffix replays the first `N` JSONL rows + and is resolved by the launcher before calling AIPerf. +- `custom-dataset-type` should be `mooncake_trace` for the agentic-code datasets + generated by AIPerf's agentic-code generator. +- `max-model-len` must be sized from the **session-cumulative** context maximum, + not the per-row `input_length`; see the sizing table below. +- `conc` is still part of the matrix, but for trace datasets with `timestamp` + fields AIPerf auto-enables fixed-schedule replay. In that mode, concurrency is + a ceiling while requests follow the trace timing. This scenario intentionally + does not expose `--no-fixed-schedule` / `--ignore-trace-delays`; add a separate + scenario if you want burst-throughput stress against the same trace content. + +Result validity is now fail-closed in the adapter: + +- `aiperf_adapter.py` runs the standard `aiperf profile` CLI supported by + `aiperf==0.9.0`. +- After the run, the adapter refuses to write the InferenceX result JSON unless + AIPerf reports `request_count == expected_request_count` and + `error_request_count == 0` in `profile_export_aiperf.json`. +- Still inspect server logs for cache hit rate, backend selection, and KV + preemption. The adapter can tell that the request set was complete; it cannot + tell whether the engine used the intended fast path. + ## Integration Path The fixed-sequence path is wired through one config field: @@ -68,6 +126,285 @@ The value flows through: `utils/process_result.py` then includes the selected client in aggregated output as `benchmark_client`. +## Agentic Replay (mooncake_trace) + +The `agentic-replay` scenario-type replays a recorded **mooncake_trace** JSONL +(`session_id`, `input_length`, `output_length`, `hash_ids`, `delay`) through +official AIPerf, riding the same `aiperf` client and the **standard** `bmk_*` +aggregation (`process_result.py`) — fully off the retired `cquil11/aiperf` fork +pipeline. See [`docs/adr/0001-agentic-on-official-aiperf.md`](adr/0001-agentic-on-official-aiperf.md). + +The first committed config is `qwen3-4b-2507-bf16-h100-vllm` (a dense transformer +chosen so vLLM keeps prefix caching ON; the original `Qwen/Qwen3.5-4B` was a +hybrid-Mamba model for which vLLM auto-disables prefix caching): + +```yaml +qwen3-4b-2507-bf16-h100-vllm: + image: vllm/vllm-openai:v0.21.0 + model: Qwen/Qwen3-4B-Instruct-2507 + model-prefix: qwen3-4b-2507 + runner: h100-2x + precision: bf16 + framework: vllm + multinode: false + scenarios: + agentic-replay: + - input-file: benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl + custom-dataset-type: mooncake_trace + max-model-len: 8192 + benchmark-client: [aiperf] # optional; agentic-replay defaults to AIPerf + search-space: + - { tp: 1, conc-list: [2] } +``` + +How it differs from the fixed-sequence path: + +- The trace is replayed **once**. `--request-count` equals the dataset record + count (`grep -c .` on the JSONL — 12 for the smoke set), and `isl`/`osl` are + **not** passed to AIPerf (the trace defines per-request lengths). The matrix + entry still carries placeholder `isl=4096`/`osl=512` purely to satisfy + downstream env checks in `process_result.py`. +- Wiring: a dedicated `single_node['agentic-replay']` bucket + (`process_changelog.py`) feeds the `sweep-single-node-agentic-replay` job in + `run-sweep.yml`, which uses `benchmark-tmpl.yml` with two new inputs + (`input-file`, `custom-dataset-type`). Because the artifact gates key on + `scenario-type != 'agentic-coding'`, results flow through `process_result.py` + → `bmk_*` automatically. `SCENARIO_SUBDIR` stays empty, so the launcher + resolves `benchmarks/single_node/qwen3-4b-2507_bf16_h100_vllm.sh`. +- The launcher starts vLLM (`Qwen/Qwen3-4B-Instruct-2507`, TP=1, bf16, + `--max-model-len 8192`) and calls `run_client_benchmark --input-file ... + --custom-dataset-type mooncake_trace --request-count ` with **no** + `--isl/--osl`. +- AIPerf auto-enables fixed-schedule mode for Mooncake traces whose first JSONL + record has `timestamp`, which is true for the committed agentic-code datasets. + `conc` limits the number of concurrent in-flight sessions; it does not turn + this path into a burst-mode load test. + +### Context-length requirements per dataset (size `max-model-len` from the *session-cumulative* max) + +**Critical:** the mooncake_trace records of one `session_id` are replayed as a +**multi-turn conversation** — context **accumulates** across turns (each turn +carries the prior turns + their responses as prefix; this is exactly why prefix +caching matters here and drives a **high** cache-hit rate on warm late-turn +requests). So the prompt size that +hits the server is **not** a record's `input_length` — it is the running +`sum(input_length + output_length)` over the session up to that turn. Size +`max-model-len` from that **session-cumulative max**, not the per-record max. + +Empirically derived from the committed traces (per-record vs realized +session-cumulative `input+output`): + +| Dataset | records | per-record max(in+out) | **session-cumulative max** | `max-model-len` to use | +|---|---|---|---|---| +| `qwen3.5-4b-smoke.jsonl` | 12 | 1,783 | 2,293 | **8192** (ample) | +| `agentic-coding-64k.jsonl#1000` | 1,000 | 35,922 | 65,847 | **73728** | +| `agentic-coding-64k.jsonl#2000` | 2,000 | 38,416 | 65,847 | **73728** | +| `agentic-coding-64k.jsonl` | 18,595 | 38,613 | 66,655 | **73728** | +| `agentic-coding-128k.jsonl#2000` | 2,000 | 79,106 | 132,346 | **147456** | +| `agentic-coding-128k.jsonl` | 16,957 | 82,159 | 133,851 | **147456** | + +(Recompute with the one-off script in the handoff if traces change: group by +`session_id`, take the max running `sum(input_length+output_length)`.) + +**Why this matters — silent truncation.** Sizing from the per-record length is the +trap that produced the 64k run [26874210796](https://github.com/vngcloud/InferenceX/actions/runs/26874210796): +`max-model-len 40960` (chosen from the 37,818 per-record input max) rejected +**1100/2000 (55%)** requests with HTTP 400 (`input+output > context window`, every +failure landing at exactly `max_model_len + 1`). AIPerf can emit metrics from the +survivors, so the adapter now rejects any run whose successful `request_count` +does not equal the expected dataset count or whose `error_request_count` is +non-zero. Use the server-log 200/400 ratio to diagnose the failure cause. +Qwen3-4B-Instruct-2507 supports 256K context, so these `max-model-len` values +carry no model-side limit; the real constraint is KV pressure at high concurrency +(expect preemptions for 128k at conc=32 — lower the concurrency rather than the +window). + +Local dry-run against a running vLLM server (no CI): + +```bash +source .venv/bin/activate +uv run python utils/bench_serving/aiperf_adapter.py \ + --model Qwen/Qwen3-4B-Instruct-2507 --url http://0.0.0.0:8000 --endpoint-type chat \ + --concurrency 2 --request-count 12 \ + --input-file benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl \ + --custom-dataset-type mooncake_trace \ + --result-filename qwen-smoke --result-dir /tmp/qwen-smoke +``` + +To run the smoke in CI, append a `perf-changelog.yaml` entry for +`qwen3-4b-2507-bf16-h100-vllm` (with `scenario-type: [agentic-replay]`) and open a +PR to `dev` with the `sweep-enabled` label. + +## Verifying a run is valid + +The adapter now fails closed on incomplete AIPerf request sets, but a green job +still only proves that every request completed. Check the server log, per engine, +before trusting performance numbers: + +1. **HTTP 200/400 ratio** — every benchmark request must return 200. Any 400 + usually means over-context rejection. Health/`/metrics` probes (`GET /health` + 503, `/metrics` 404) during startup are normal and not request failures — + filter to `POST /v1/chat/completions`. + ```bash + grep -oE '"POST /v1/chat/completions HTTP/1.1" [0-9]+' server.log | awk '{print $NF}' | sort | uniq -c + ``` +2. **Cache actually engaged** — confirm prefix/radix caching is ON *and hitting*: + - vLLM logs a cumulative `Prefix cache hit rate: NN%`. + - SGLang logs per prefill-batch `#new-token: A, #cached-token: B`; token-weighted + hit = `B/(A+B)`. +3. **KV pressure / preemptions** — grep `preempt` and watch peak `GPU KV cache + usage` (vLLM) / `full token usage` (SGLang). Preemptions are a valid stress + signal; if heavy, lower concurrency rather than the context window. + +**Measured reality of the ~95% cache claim.** The hit rate is *not* a fixed +property — it depends on KV pressure and model architecture: + +| Run | Engine | Peak KV | Realized prefix/radix hit | +|---|---|---|---| +| qwen3-4b-2507 64k `#2000` conc=32 (1×H100) | vLLM | **99.8%** | ~49% avg (evicts prefixes between turns under pressure; warm batches still hit 90%+) | +| gemma4-31B 64k `#1000` conc=16 (2×H100) | vLLM | 26% | **~94%** avg (low KV → prefixes retained) | +| gemma4-31B 64k `#1000` conc=16 (2×H100) | SGLang | ~21% | ~65% token-weighted (Gemma SWA layers only cache a window; global layers ~97%) | + +The earlier "~95%" figure came from a *truncated* run whose survivor set was biased +to short, high-overlap early turns. A correctly-sized, KV-unpressured run lands +~94% (vLLM, dense/SWA); under KV pressure the realized hit drops sharply. + +## Engine-vs-engine comparison (vLLM vs SGLang on one trace) + +AIPerf is **engine-agnostic on the client path**: `run_client_benchmark`'s `aiperf` +branch builds `--url http://0.0.0.0:$port --endpoint-type chat ...` and **never +passes `--backend`** to AIPerf (it's consumed only by the `inferencex_native` +path). So the identical client drives both engines — to compare, add a parallel +config key per engine and dispatch both together. + +**Setup (see the committed `gemma4-agentic-fp8-h100-2x-{vllm,sglang}` pair):** + +- **Distinct `model-prefix`.** The launcher resolves the per-engine script from + `benchmarks/single_node/${model-prefix}_${precision}_h100_${framework}.sh` + (`SCENARIO_SUBDIR` is empty for agentic-replay). If a fixed-seq-len `gemma4_*.sh` + already exists, reusing `model-prefix: gemma4` would resolve to it and fail + (no `INPUT_FILE` handling). Use a dedicated prefix (e.g. `gemma4-agentic`) and + dedicated trace-replay scripts. +- **Equivalent serving config**, cache ON for both: vLLM prefix caching is + default-ON (don't pass `--no-enable-prefix-caching`); SGLang RadixAttention is + default-ON (don't pass `--disable-radix-cache`). Match KV dtype and mem fraction. +- **Dispatch both keys in one run.** `--config-keys` is `nargs='+'` (also accepts + globs), and each `(key × scenario × search-space point)` becomes a parallel + matrix job. They share the runner pool, so on a single `h100-2x` runner they + **serialize** (same wall-clock as two dispatches, grouped under one run). + ```bash + gh api -X POST /repos/vngcloud/InferenceX/actions/workflows/e2e-tests.yml/dispatches \ + -f ref='feature/aiperf' \ + -f 'inputs[ref]=feature/aiperf' \ + -f 'inputs[generate-cli-command]=test-config --config-keys gemma4-agentic-fp8-h100-2x-vllm gemma4-agentic-fp8-h100-2x-sglang --config-files .github/configs/nvidia-master.yaml --no-evals --scenario-type agentic-replay' + ``` + > ⚠️ **Workflow ref must contain the `agentic-replay` wiring.** During branch + > validation, use the feature branch for the top-level `ref`; after merge, use + > `main`. Dispatching from a ref without the `agentic-replay` job routes entries + > into the ordinary `single-node` bucket, which never sets + > `INPUT_FILE`/`CUSTOM_DATASET_TYPE` and fails immediately. Job names show the + > routing: `agentic-replay /...` (correct) vs `single-node /...` (wrong ref). + +### ⚠️ Backend-fairness trap — check the attention backend each engine used + +Equivalent *config* does not guarantee equivalent *engine optimization*. Before +comparing, grep each server log for the attention backend actually selected — an +engine on a slow fallback backend is not a fair datapoint. + +**Observed: SGLang forces the `triton` backend for the Gemma family.** Gemma-3/4 +are multimodal and use bidirectional attention between image tokens during +prefill, which SGLang implements **only in the triton backend** — so it logs +`Use triton as default attention backend for Gemma4` and runs its slowest path, +while vLLM uses FlashInfer. On the gemma4-31B 64k `#1000` conc=16 run this made +SGLang **~3–4× slower** on throughput/TPOT and **~15× slower on TTFT** — a backend +artifact, *not* a genuine engine verdict. Bumping the SGLang version does **not** +fix it (it's an architecture decision, not a version bug). + +**Fix for text-only agentic traces:** the bidirectional path is for *image* +tokens; an agentic-coding trace has none, so force the fast backend: +`--attention-backend fa3` (FA3 is the Hopper default and supports Gemma's sliding- +window attention; CUDA Graph + chunked prefill also become usable). The +`gemma4-agentic_fp8_h100_sglang.sh` script pins `fa3` for this reason. + +**Measured: FA3 is incompatible with `fp8_e4m3` KV cache here.** The first fa3 +re-run ([26892488520](https://github.com/vngcloud/InferenceX/actions/runs/26892488520)) +**failed at server startup** — `RuntimeError: query and key must have the same +dtype` in `flashattention_backend.py:forward_decode`, raised during *Capture cuda +graph* (`kv_cache_dtype='fp8_e4m3'` while the query is bf16). FA3's decode kernel +requires matching query/KV dtypes; the `triton` backend tolerated fp8 KV, FA3 does +not. **This is a server-side engine-config crash, not an AIPerf-integration or +flow failure** — the SGLang server never reached ready, so AIPerf sent no requests +(routing was correct: the job ran under `agentic-replay /`). +**Fix:** to keep `fa3`, drop `--kv-cache-dtype fp8_e4m3` so KV is bf16 (matches the +bf16 query); this creates a small KV-dtype inequivalence vs the vLLM leg (fp8 KV) +that must be documented, or dropped on vLLM too for strict parity. Alternative: +`--attention-backend flashinfer` (may accept fp8 KV with bf16 query). If every +backend that accepts Gemma4 falls back to triton, *that* is the citable finding +(SGLang Gemma is triton-only). + +The clean, uncontaminated engine comparison remains a **dense, +non-multimodal** model (e.g. Qwen3-4B), where both engines run optimized backends. + +## Energy Efficiency (tokens/Watt) + +Every benchmark run reports energy-efficiency metrics in the published +results table, in **two conventions** so the number is never ambiguous: + +```text +tok/W total = total_token_throughput (input+output tok/s) / mean total GPU power (W) +tok/W output = output_token_throughput (decoded tok/s) / mean total GPU power (W) +``` + +`tok/W total` is the GTC-2026 "AI Factory" efficiency KPI (tokens per watt). Both +ratios are GPU-count-invariant — per-GPU and whole-node give the same number — so +each is reported as a single whole-system value, not divided per GPU. + +**Why both?** On input-heavy workloads (e.g. agentic-trace replay) or any run +where prefix caching is disabled, prefill tokens dominate the total, so +`tok/W total` reads high while `tok/W output` (useful decoded work per watt) can +be orders of magnitude lower. Always state which convention a reported figure +uses. + +**Power source — no DCGM required.** Power comes from the `power.draw` column +that `start_gpu_monitor` (in `benchmarks/benchmark_lib.sh`) already logs to +`gpu_metrics.csv` via `nvidia-smi` on every run. This works for both the +`inferencex_native` and `aiperf` clients and for all serving frameworks, and is +independent of AIPerf's own GPU-telemetry subsystem (which, for the `aiperf` +client, additionally supports DCGM/pynvml — see `aiperf --gpu-telemetry`). When +AIPerf logs `DCGM telemetry skipped: no DCGM endpoints reachable`, the +`nvidia-smi` CSV is still captured and the metric is still computed. + +**How it flows** (`utils/process_result.py`): + +1. `mean_total_power_w()` parses `gpu_metrics.csv` and computes the per-GPU mean + `power.draw`. +2. It sums only the **N busiest GPUs** — `N = TP` for single-node, `total_gpus` + for multi-node — so an idle second card on a shared host (e.g. a TP=1 job on + `h100-2x`) does not inflate power and understate efficiency. +3. Samples are clipped to the **last `duration` seconds** so model-load and + warmup power (the monitor starts before the server) is excluded. The `aiperf` + client supplies `duration` via AIPerf's `benchmark_duration` metric + (`aiperf_adapter.py`); the native client already emits it. +4. The aggregated result JSON gains three fields, surfaced as the + `Token/Watt total (tok/s/W)`, `Token/Watt output (tok/s/W)` and + `Power Mean (W)` columns in `utils/summarize.py` (`tok_per_watt` is kept as an + alias of `tok_per_watt_total` for backward compatibility): + + ```json + { "tok_per_watt_total": 6.7093, "tok_per_watt_output": 5.1230, "mean_power_w": 355.0 } + ``` + +Power telemetry is **best-effort**: a missing or empty `gpu_metrics.csv` (e.g. a +script that does not call `start_gpu_monitor`) leaves both fields `null`, which +renders as `0` in the table and never fails a run. Override the CSV path with the +`GPU_METRICS_CSV` environment variable if needed (default `gpu_metrics.csv`, +relative to the `process_result.py` working directory). + +> Caveat: `nvidia-smi power.draw` is an instantaneous 1 Hz board-power gauge. +> For a more precise energy figure, AIPerf's `energy_consumption` hardware +> accumulator (DCGM/pynvml only) integrates power internally; it is not yet wired +> into the InferenceX result pipeline. + ## AIPerf Installation Serving images do not need to include AIPerf. `ensure_aiperf` in @@ -87,6 +424,11 @@ Useful overrides: - `AIPERF_SOURCE_DIR=/path/to/aiperf` uses a local checkout. - `AIPERF_VENV_DIR=/tmp/custom-aiperf-venv` changes the venv path. +For the canonical path, leave `AIPERF_SOURCE_DIR` unset unless you are explicitly +testing a local AIPerf checkout. The in-repo `utils/aiperf` tree may lag the PyPI +version assumed by this integration, so accidentally pointing `AIPERF_SOURCE_DIR` +there can change CLI/schema behavior. + ## Config Usage Use AIPerf only: @@ -173,7 +515,9 @@ gpu_metrics.csv `.json` is the adapted InferenceX result consumed by `utils/process_result.py`. The `_aiperf` directory contains the raw AIPerf -artifact for debugging. +artifact for debugging. `gpu_metrics.csv` is the `nvidia-smi` power/utilization +log; `process_result.py` reads its `power.draw` column to compute the +tokens/Watt metric (see [Energy Efficiency](#energy-efficiency-tokenswatt)). ## Troubleshooting @@ -181,6 +525,10 @@ artifact for debugging. `h100-2x` for TP=2 Gemma4 jobs. - `aiperf` install fails: set `AIPERF_SOURCE_DIR` to a local checkout, or set an installable `AIPERF_VERSION`. +- Adapter fails with `failed requests` or `completed N/M successful requests`: + inspect `server.log` for `POST /v1/chat/completions` status codes. The common + agentic-replay cause is `max-model-len` below the session-cumulative context + requirement. - AIPerf job passes but `compare-results` fails on PostgreSQL connection or missing `DATABASE_URL`: configure repo secret `NEON_PROD_RO_URL`. - Result aggregation misses the client name: confirm `BENCHMARK_CLIENT=aiperf` diff --git a/perf-changelog.yaml b/perf-changelog.yaml index e917721db..9237d50d9 100644 --- a/perf-changelog.yaml +++ b/perf-changelog.yaml @@ -3095,3 +3095,17 @@ description: - "Enable native and AIPerf benchmark-client runs for Gemma4 BF16 H100 vLLM fixed-seq sweeps" pr-link: https://github.com/vngcloud/InferenceX/pull/3 + +- config-keys: + - gemma4-bf16-h100-vllm + description: + - "Narrow sweep to 1k1k only at conc=1 to smoke-test AIPerf benchmark client" + pr-link: https://github.com/vngcloud/InferenceX/pull/4 + +- config-keys: + - qwen3.5-4b-bf16-h100-vllm + description: + - "Add agentic-replay (mooncake_trace) smoke on official AIPerf for Qwen3.5-4B (vLLM bf16 TP=1, conc=2)" + pr-link: https://github.com/vngcloud/InferenceX/pull/7 + scenario-type: + - agentic-replay diff --git a/runners/launch_h100-greennode.sh b/runners/launch_h100-greennode.sh index 54226a80b..687399e5d 100755 --- a/runners/launch_h100-greennode.sh +++ b/runners/launch_h100-greennode.sh @@ -17,10 +17,11 @@ RUN_ENV=( HF_TOKEN HF_HUB_CACHE PORT RANDOM_RANGE_RATIO EXP_NAME MODEL MODEL_PREFIX ISL OSL MAX_MODEL_LEN MAX_NUM_BATCHED_TOKENS - IMAGE FRAMEWORK PRECISION TP EP_SIZE DP_ATTENTION + IMAGE FRAMEWORK BENCHMARK_CLIENT PRECISION TP EP_SIZE DP_ATTENTION CONC SPEC_DECODING NUM_SPECULATIVE_TOKENS DISAGG RUN_EVAL EVAL_ONLY SCENARIO_TYPE SCENARIO_SUBDIR IS_AGENTIC OFFLOADING TOTAL_CPU_DRAM_GB DURATION + INPUT_FILE CUSTOM_DATASET_TYPE RESULT_DIR RESULT_FILENAME PYTHONDONTWRITEBYTECODE PYTHONPYCACHEPREFIX RUNNER_NAME RUNNER_TYPE diff --git a/utils/bench_serving/aiperf_adapter.py b/utils/bench_serving/aiperf_adapter.py index 2a4493102..7f00f2456 100644 --- a/utils/bench_serving/aiperf_adapter.py +++ b/utils/bench_serving/aiperf_adapter.py @@ -12,11 +12,69 @@ PROFILE_EXPORT = "profile_export_aiperf.json" SEARCH_HISTORY = "search_history.json" +# Percentiles surfaced from AIPerf for every latency metric. AIPerf computes the +# full distribution (avg/min/max/p1..p99); InferenceX summary tables use the mean +# plus this set. p50 (median) and p99 (tail) round out the p75/p90/p95 the +# summary already renders. +_PCTL_KEYS = ("p50", "p75", "p90", "p95", "p99") + + +def _latency_stats(metric: dict, name: str) -> dict: + """Map one AIPerf metric block to InferenceX __ms keys. + + process_result.py strips the `_ms` suffix and converts to seconds, and for + `tpot` keys also derives the matching `intvty` (1000/value), so adding a + percentile here automatically flows through to the aggregate JSON. + """ + stats = {f"mean_{name}_ms": metric["avg"]} + for pctl in _PCTL_KEYS: + stats[f"{pctl}_{name}_ms"] = metric[pctl] + return stats + def detect_mode(artifact_dir: Path) -> str: """Return the AIPerf artifact mode for a completed run.""" return "search" if (artifact_dir / SEARCH_HISTORY).exists() else "fixed" +def _metric_avg(artifact: dict, metric_name: str) -> float | None: + metric = artifact.get(metric_name) + if not isinstance(metric, dict): + return None + value = metric.get("avg") + return float(value) if value is not None else None + +def _whole_count(value: float | None, metric_name: str) -> int | None: + if value is None: + return None + rounded = round(value) + if abs(value - rounded) > 1e-6: + raise ValueError(f"AIPerf metric {metric_name} is not an integer count: {value}") + return int(rounded) + +def validate_request_counts(artifact: dict, expected_request_count: int) -> None: + """Fail closed when AIPerf produced a partial or error-tainted run.""" + successful = _whole_count(_metric_avg(artifact, "request_count"), "request_count") + errors = _whole_count(_metric_avg(artifact, "error_request_count"), "error_request_count") or 0 + + if successful is None: + raise ValueError( + "AIPerf artifact is missing request_count; refusing to aggregate an " + "unverifiable benchmark result." + ) + + if errors > 0: + raise ValueError( + f"AIPerf reported {errors} failed requests " + f"({successful} successful, expected {expected_request_count}); " + "refusing to aggregate partial results." + ) + + if successful != expected_request_count: + raise ValueError( + f"AIPerf completed {successful}/{expected_request_count} successful " + "requests; refusing to aggregate partial results." + ) + def extract_max_concurrency(artifact: dict, search_history: dict | None, mode: str) -> int: """Extract the concurrency value InferenceX should record.""" @@ -40,21 +98,29 @@ def extract_max_concurrency(artifact: dict, search_history: dict | None, mode: s def build_result(artifact: dict, max_concurrency: int) -> dict: """Build the intermediate schema consumed by utils/process_result.py.""" - return { + # AIPerf reports a single inter-token-latency block; InferenceX records it as + # both tpot and itl (process_result derives interactivity from the tpot keys). + itl = artifact["inter_token_latency"] + result = { "model_id": artifact["input_config"]["models"]["items"][0]["name"], "max_concurrency": max_concurrency, "total_token_throughput": artifact["total_token_throughput"]["avg"], "output_throughput": artifact["output_token_throughput"]["avg"], - "mean_ttft_ms": artifact["time_to_first_token"]["avg"], - "p99_ttft_ms": artifact["time_to_first_token"]["p99"], - "mean_tpot_ms": artifact["inter_token_latency"]["avg"], - "p99_tpot_ms": artifact["inter_token_latency"]["p99"], - "mean_itl_ms": artifact["inter_token_latency"]["avg"], - "p99_itl_ms": artifact["inter_token_latency"]["p99"], - "mean_e2el_ms": artifact["request_latency"]["avg"], - "p99_e2el_ms": artifact["request_latency"]["p99"], + **_latency_stats(artifact["time_to_first_token"], "ttft"), + **_latency_stats(itl, "tpot"), + **_latency_stats(itl, "itl"), + **_latency_stats(artifact["request_latency"], "e2el"), } + # Benchmark duration (seconds) lets process_result.py window the power log + # to the load-generation interval. Best-effort: omitted if AIPerf didn't + # emit it (e.g. older artifacts). + duration = artifact.get("benchmark_duration", {}).get("avg") + if duration is not None: + result["duration"] = duration + + return result + def run_aiperf(args: argparse.Namespace) -> Path: """Run `aiperf profile` and return the artifact directory.""" @@ -132,6 +198,7 @@ def main() -> None: artifact_dir = run_aiperf(args) artifact = json.loads((artifact_dir / PROFILE_EXPORT).read_text()) + validate_request_counts(artifact, args.request_count) mode = detect_mode(artifact_dir) search_history = None if mode == "search": diff --git a/utils/bench_serving/test_aiperf_adapter.py b/utils/bench_serving/test_aiperf_adapter.py index e19463b88..5ed0878eb 100644 --- a/utils/bench_serving/test_aiperf_adapter.py +++ b/utils/bench_serving/test_aiperf_adapter.py @@ -9,14 +9,19 @@ import pytest -from aiperf_adapter import build_result, detect_mode, extract_max_concurrency +from aiperf_adapter import ( + build_result, + detect_mode, + extract_max_concurrency, + validate_request_counts, +) ADAPTER = Path(__file__).resolve().parent / "aiperf_adapter.py" PROCESS_RESULT = Path(__file__).resolve().parents[1] / "process_result.py" -def _artifact(concurrency: int = 16) -> dict: +def _artifact(concurrency: int = 16, request_count: int = 160) -> dict: return { "input_config": { "models": {"items": [{"name": "meta-llama/Llama-3.1-8B-Instruct"}]}, @@ -27,9 +32,16 @@ def _artifact(concurrency: int = 16) -> dict: }, "total_token_throughput": {"avg": 1234.5}, "output_token_throughput": {"avg": 987.6}, - "time_to_first_token": {"avg": 101.0, "p99": 202.0}, - "inter_token_latency": {"avg": 11.0, "p99": 22.0}, - "request_latency": {"avg": 1111.0, "p99": 2222.0}, + "time_to_first_token": { + "avg": 101.0, "p50": 150.0, "p75": 160.0, "p90": 180.0, "p95": 190.0, "p99": 202.0, + }, + "inter_token_latency": { + "avg": 11.0, "p50": 12.0, "p75": 14.0, "p90": 16.0, "p95": 18.0, "p99": 22.0, + }, + "request_latency": { + "avg": 1111.0, "p50": 1500.0, "p75": 1600.0, "p90": 1800.0, "p95": 1900.0, "p99": 2222.0, + }, + "request_count": {"avg": float(request_count)}, } @@ -42,16 +54,35 @@ def test_build_result_maps_aiperf_profile_export(): "total_token_throughput": 1234.5, "output_throughput": 987.6, "mean_ttft_ms": 101.0, - "p99_ttft_ms": 202.0, + "p50_ttft_ms": 150.0, "p75_ttft_ms": 160.0, "p90_ttft_ms": 180.0, + "p95_ttft_ms": 190.0, "p99_ttft_ms": 202.0, "mean_tpot_ms": 11.0, - "p99_tpot_ms": 22.0, + "p50_tpot_ms": 12.0, "p75_tpot_ms": 14.0, "p90_tpot_ms": 16.0, + "p95_tpot_ms": 18.0, "p99_tpot_ms": 22.0, "mean_itl_ms": 11.0, - "p99_itl_ms": 22.0, + "p50_itl_ms": 12.0, "p75_itl_ms": 14.0, "p90_itl_ms": 16.0, + "p95_itl_ms": 18.0, "p99_itl_ms": 22.0, "mean_e2el_ms": 1111.0, - "p99_e2el_ms": 2222.0, + "p50_e2el_ms": 1500.0, "p75_e2el_ms": 1600.0, "p90_e2el_ms": 1800.0, + "p95_e2el_ms": 1900.0, "p99_e2el_ms": 2222.0, } +def test_build_result_maps_benchmark_duration_when_present(): + artifact = _artifact(concurrency=32) + artifact["benchmark_duration"] = {"avg": 42.5} + + result = build_result(artifact, max_concurrency=32) + + assert result["duration"] == 42.5 + + +def test_build_result_omits_duration_when_absent(): + result = build_result(_artifact(concurrency=32), max_concurrency=32) + + assert "duration" not in result + + def test_detect_mode_fixed_without_search_history(tmp_path: Path): assert detect_mode(tmp_path) == "fixed" @@ -73,6 +104,27 @@ def test_extract_max_concurrency_search_reads_best_trial(): } assert extract_max_concurrency(_artifact(), search_history, "search") == 128 +def test_validate_request_counts_accepts_complete_run(): + validate_request_counts(_artifact(request_count=20), expected_request_count=20) + +def test_validate_request_counts_rejects_failed_requests(): + artifact = _artifact(request_count=19) + artifact["error_request_count"] = {"avg": 1.0} + + with pytest.raises(ValueError, match="failed requests"): + validate_request_counts(artifact, expected_request_count=20) + +def test_validate_request_counts_rejects_short_success_count(): + with pytest.raises(ValueError, match="19/20"): + validate_request_counts(_artifact(request_count=19), expected_request_count=20) + +def test_validate_request_counts_rejects_missing_metric(): + artifact = _artifact(request_count=20) + del artifact["request_count"] + + with pytest.raises(ValueError, match="missing request_count"): + validate_request_counts(artifact, expected_request_count=20) + @pytest.mark.integration def test_main_against_live_server(tmp_path: Path): @@ -148,6 +200,9 @@ def test_main_writes_result_consumed_by_process_result(tmp_path: Path): "#!/usr/bin/env python3\n" "import json, sys\n" "from pathlib import Path\n" + "if '--failed-request-threshold' in sys.argv:\n" + " print('Unknown option: --failed-request-threshold', file=sys.stderr)\n" + " sys.exit(2)\n" "artifact_dir = Path(sys.argv[sys.argv.index('--artifact-dir') + 1])\n" "artifact_dir.mkdir(parents=True, exist_ok=True)\n" f"artifact = {json.dumps(_artifact(concurrency=16))!r}\n" diff --git a/utils/matrix_logic/generate_sweep_configs.py b/utils/matrix_logic/generate_sweep_configs.py index 80d425c09..3fc19094c 100644 --- a/utils/matrix_logic/generate_sweep_configs.py +++ b/utils/matrix_logic/generate_sweep_configs.py @@ -10,6 +10,7 @@ from validation import ( validate_matrix_entry, validate_agentic_matrix_entry, + validate_agentic_replay_matrix_entry, load_config_files, load_runner_file, Fields @@ -124,7 +125,7 @@ def _max_eval_conc(ie): # Mark the selected entries (skip agentic entries which don't support evals) for i, entry in enumerate(matrix_values): - if entry.get(Fields.SCENARIO_TYPE.value) == 'agentic-coding': + if entry.get(Fields.SCENARIO_TYPE.value) in ('agentic-coding', 'agentic-replay'): continue entry[Fields.RUN_EVAL.value] = i in eval_indices if i in mn_eval_conc: @@ -481,6 +482,83 @@ def generate_full_sweep(args, all_config_data, runner_data): validate_agentic_matrix_entry(entry) matrix_values.append(entry) + # ---- Agentic-replay scenarios (single-node only) ---- + agentic_replay_configs = scenarios.get(Fields.AGENTIC_REPLAY.value, []) if ( + scenario_filter is None or 'agentic-replay' in scenario_filter) else [] + + for replay_config in agentic_replay_configs: + # agentic-replay is single-node only; skip if this config is multinode + if is_multinode: + continue + + bmk_space = replay_config[Fields.SEARCH_SPACE.value] + duration = replay_config.get(Fields.DURATION.value, 1800) + input_file = replay_config[Fields.INPUT_FILE.value] + custom_dataset_type = replay_config[Fields.CUSTOM_DATASET_TYPE.value] + replay_max_model_len = replay_config[Fields.MAX_MODEL_LEN.value] + benchmark_clients = replay_config.get( + Fields.BENCHMARK_CLIENT.value, ["aiperf"]) + + for bmk in bmk_space: + tp = bmk[Fields.TP.value] + ep = bmk.get(Fields.EP.value) + dp_attn = bmk.get(Fields.DP_ATTN.value) + + conc_list = bmk.get(Fields.CONC_LIST.value) + if conc_list: + conc_values = conc_list + else: + conc_start = bmk[Fields.CONC_START.value] + conc_end = bmk[Fields.CONC_END.value] + conc_values = [] + conc = conc_start + while conc <= conc_end: + conc_values.append(conc) + if conc == conc_end: + break + conc *= args.step_size + if conc > conc_end: + conc = conc_end + + if args.min_conc is not None: + conc_values = [c for c in conc_values if c >= args.min_conc] + if args.max_conc is not None: + conc_values = [c for c in conc_values if c <= args.max_conc] + if not conc_values: + continue + + runners_for_entry = runner_nodes_to_use if runner_nodes_to_use else [runner] + + for benchmark_client in benchmark_clients: + for conc in conc_values: + for runner_value in runners_for_entry: + entry = { + Fields.IMAGE.value: image, + Fields.MODEL.value: model, + Fields.MODEL_PREFIX.value: model_code, + Fields.PRECISION.value: precision, + Fields.FRAMEWORK.value: framework, + Fields.BENCHMARK_CLIENT.value: benchmark_client, + Fields.RUNNER.value: runner_value, + Fields.TP.value: tp, + Fields.EP.value: ep if ep is not None else 1, + Fields.DP_ATTN.value: dp_attn if dp_attn is not None else False, + Fields.CONC.value: conc, + # ISL/OSL are placeholders to satisfy downstream + # env checks; the trace defines real lengths. + Fields.ISL.value: 4096, + Fields.OSL.value: 512, + Fields.MAX_MODEL_LEN.value: replay_max_model_len, + Fields.INPUT_FILE.value: input_file, + Fields.CUSTOM_DATASET_TYPE.value: custom_dataset_type, + Fields.DURATION.value: duration, + Fields.EXP_NAME.value: f"{model_code}_tp{tp}_conc{conc}", + Fields.DISAGG.value: disagg, + Fields.SCENARIO_TYPE.value: "agentic-replay", + } + validate_agentic_replay_matrix_entry(entry) + matrix_values.append(entry) + return matrix_values @@ -912,6 +990,76 @@ def generate_test_config_sweep(args, all_config_data, runner_data=None): } matrix_values.append(validate_agentic_matrix_entry(entry)) + # ---- Agentic-replay scenarios (single-node only) ---- + agentic_replay_configs = val[Fields.SCENARIOS.value].get(Fields.AGENTIC_REPLAY.value, []) if ( + scenario_filter is None or 'agentic-replay' in scenario_filter) else [] + for replay_config in agentic_replay_configs: + # agentic-replay is single-node only; skip if this config is multinode + if is_multinode: + continue + + duration = replay_config.get(Fields.DURATION.value, 1800) + input_file = replay_config[Fields.INPUT_FILE.value] + custom_dataset_type = replay_config[Fields.CUSTOM_DATASET_TYPE.value] + replay_max_model_len = replay_config[Fields.MAX_MODEL_LEN.value] + benchmark_clients = replay_config.get( + Fields.BENCHMARK_CLIENT.value, ["aiperf"]) + + for bmk in replay_config[Fields.SEARCH_SPACE.value]: + tp = bmk[Fields.TP.value] + ep = bmk.get(Fields.EP.value) + dp_attn = bmk.get(Fields.DP_ATTN.value) + + conc_list = bmk.get(Fields.CONC_LIST.value) + if conc_list: + conc_values = conc_list + else: + conc_start = bmk[Fields.CONC_START.value] + conc_end = bmk[Fields.CONC_END.value] + conc_values = [] + conc = conc_start + while conc <= conc_end: + conc_values.append(conc) + if conc == conc_end: + break + conc *= 2 + if conc > conc_end: + conc = conc_end + + if getattr(args, 'conc', None): + conc_values = [c for c in conc_values if c in args.conc] + if not conc_values: + continue + + for benchmark_client in benchmark_clients: + for conc in conc_values: + for runner_value in runners_for_entry: + entry = { + Fields.IMAGE.value: image, + Fields.MODEL.value: model, + Fields.MODEL_PREFIX.value: model_code, + Fields.PRECISION.value: precision, + Fields.FRAMEWORK.value: framework, + Fields.BENCHMARK_CLIENT.value: benchmark_client, + Fields.RUNNER.value: runner_value, + Fields.TP.value: tp, + Fields.EP.value: ep if ep is not None else 1, + Fields.DP_ATTN.value: dp_attn if dp_attn is not None else False, + Fields.CONC.value: conc, + # ISL/OSL are placeholders to satisfy downstream + # env checks; the trace defines real lengths. + Fields.ISL.value: 4096, + Fields.OSL.value: 512, + Fields.MAX_MODEL_LEN.value: replay_max_model_len, + Fields.INPUT_FILE.value: input_file, + Fields.CUSTOM_DATASET_TYPE.value: custom_dataset_type, + Fields.DURATION.value: duration, + Fields.EXP_NAME.value: f"{model_code}_tp{tp}_conc{conc}", + Fields.DISAGG.value: disagg, + Fields.SCENARIO_TYPE.value: "agentic-replay", + } + matrix_values.append(validate_agentic_replay_matrix_entry(entry)) + return matrix_values @@ -988,7 +1136,7 @@ def main(): parent_parser.add_argument( '--scenario-type', nargs='+', - choices=['fixed-seq-len', 'agentic-coding'], + choices=['fixed-seq-len', 'agentic-coding', 'agentic-replay'], required=False, help='Scenario type(s) to include. If not specified, all scenario types are generated.' ) diff --git a/utils/matrix_logic/test_generate_sweep_configs.py b/utils/matrix_logic/test_generate_sweep_configs.py index 750ed848d..0a305ef83 100644 --- a/utils/matrix_logic/test_generate_sweep_configs.py +++ b/utils/matrix_logic/test_generate_sweep_configs.py @@ -116,6 +116,31 @@ def sample_runner_config(): "gb200": ["gb200-nv_0"], } +@pytest.fixture +def sample_agentic_replay_config(): + """Single-node agentic-replay config without an explicit benchmark client.""" + return { + "qwen-agentic-bf16-h100-vllm": { + "image": "vllm/vllm-openai:v0.21.0", + "model": "Qwen/Qwen3-4B-Instruct-2507", + "model-prefix": "qwen-agentic", + "precision": "bf16", + "framework": "vllm", + "runner": "h100-2x", + "multinode": False, + "scenarios": { + "agentic-replay": [ + { + "input-file": "benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl", + "custom-dataset-type": "mooncake_trace", + "max-model-len": 8192, + "search-space": [{"tp": 1, "conc-list": [2]}], + } + ] + }, + } + } + @pytest.fixture def full_sweep_args_single_node(): @@ -438,6 +463,20 @@ def test_benchmark_client_opt_in_doubles_entries(self, sample_single_node_config assert {entry["benchmark-client"] for entry in result} == {"inferencex_native", "aiperf"} assert {(entry["tp"], entry["conc"], entry["runner"]) for entry in result} == {(8, 4, "mi300x")} + def test_agentic_replay_defaults_to_aiperf(self, sample_agentic_replay_config, sample_runner_config, full_sweep_args_single_node): + """agentic-replay should default to the only supported client: AIPerf.""" + full_sweep_args_single_node.scenario_type = ["agentic-replay"] + + result = generate_full_sweep( + full_sweep_args_single_node, + sample_agentic_replay_config, + sample_runner_config, + ) + + assert len(result) == 1 + assert result[0]["benchmark-client"] == "aiperf" + assert result[0]["input-file"].endswith("qwen3.5-4b-smoke.jsonl") + def test_matrix_entry_structure(self, sample_single_node_config, sample_runner_config, full_sweep_args_single_node): """Generated entries should have correct structure.""" result = generate_full_sweep( @@ -1644,6 +1683,22 @@ def test_benchmark_client_opt_in_doubles_entries(self, sample_single_node_config assert {entry["benchmark-client"] for entry in result} == {"inferencex_native", "aiperf"} assert {(entry["tp"], entry["conc"], entry["runner"]) for entry in result} == {(8, 4, "mi300x")} + def test_agentic_replay_defaults_to_aiperf(self, sample_agentic_replay_config): + """test-config should default agentic-replay entries to AIPerf.""" + args = argparse.Namespace( + config_keys=["qwen-agentic-bf16-h100-vllm"], + seq_lens=None, + conc=None, + runner_node_filter=None, + scenario_type=["agentic-replay"], + ) + + result = generate_test_config_sweep(args, sample_agentic_replay_config) + + assert len(result) == 1 + assert result[0]["benchmark-client"] == "aiperf" + assert result[0]["scenario-type"] == "agentic-replay" + def test_runner_node_filter_expands_config_runner(self, sample_multinode_config, sample_runner_config): """test-config should allow targeting one concrete runner node.""" args = argparse.Namespace( diff --git a/utils/matrix_logic/test_validation.py b/utils/matrix_logic/test_validation.py index 9d3c499f4..927ec0ad6 100644 --- a/utils/matrix_logic/test_validation.py +++ b/utils/matrix_logic/test_validation.py @@ -6,15 +6,18 @@ MultiNodeMatrixEntry, SingleNodeAgenticMatrixEntry, MultiNodeAgenticMatrixEntry, + SingleNodeAgenticReplayMatrixEntry, WorkerConfig, SingleNodeSearchSpaceEntry, MultiNodeSearchSpaceEntry, SingleNodeSeqLenConfig, MultiNodeSeqLenConfig, AgenticCodingConfig, + AgenticReplayConfig, SingleNodeMasterConfigEntry, MultiNodeMasterConfigEntry, validate_matrix_entry, + validate_agentic_replay_matrix_entry, validate_master_config, validate_runner_config, load_config_files, @@ -528,6 +531,120 @@ def test_multinode_agentic_invalid_benchmark_client(self): "scenario-type": "agentic-coding", }) +# ============================================================================= +# Test Agentic-Replay Entries +# ============================================================================= + +class TestAgenticReplayMatrixEntries: + """Tests for the single-node agentic-replay matrix entry and validator.""" + + def _entry(self, **overrides): + entry = { + "image": "vllm/vllm-openai:v0.21.0", + "model": "Qwen/Qwen3.5-4B", + "model-prefix": "qwen3.5-4b", + "precision": "bf16", + "framework": "vllm", + "benchmark-client": "aiperf", + "runner": "h100-2x", + "tp": 1, + "ep": 1, + "dp-attn": False, + "conc": 2, + "isl": 4096, + "osl": 512, + "max-model-len": 8192, + "input-file": "benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl", + "custom-dataset-type": "mooncake_trace", + "exp-name": "qwen3.5-4b_tp1_conc2", + "disagg": False, + "scenario-type": "agentic-replay", + } + entry.update(overrides) + return entry + + def test_valid_entry(self): + entry = SingleNodeAgenticReplayMatrixEntry(**self._entry()) + assert entry.benchmark_client == "aiperf" + assert entry.input_file.endswith("qwen3.5-4b-smoke.jsonl") + assert entry.custom_dataset_type == "mooncake_trace" + assert entry.duration == 1800 # default + + def test_benchmark_client_defaults_to_aiperf(self): + raw = self._entry() + del raw["benchmark-client"] + + entry = SingleNodeAgenticReplayMatrixEntry(**raw) + + assert entry.benchmark_client == "aiperf" + + def test_validator_passes(self): + # validator returns the original dict on success + e = self._entry() + assert validate_agentic_replay_matrix_entry(e) is e + + def test_missing_input_file_rejected(self): + bad = self._entry() + del bad["input-file"] + with pytest.raises(ValueError): + validate_agentic_replay_matrix_entry(bad) + + def test_extra_field_rejected(self): + with pytest.raises(Exception): + SingleNodeAgenticReplayMatrixEntry(**self._entry(offloading="none")) + + def test_invalid_benchmark_client_rejected(self): + with pytest.raises(Exception): + SingleNodeAgenticReplayMatrixEntry(**self._entry(**{"benchmark-client": "foo"})) + + def test_native_benchmark_client_rejected(self): + with pytest.raises(Exception): + SingleNodeAgenticReplayMatrixEntry(**self._entry(**{"benchmark-client": "inferencex_native"})) + + +class TestAgenticReplayConfig: + """Tests for the input-side agentic-replay scenario config.""" + + def _config(self, **overrides): + cfg = { + "input-file": "benchmarks/single_node/agentic/datasets/qwen3.5-4b-smoke.jsonl", + "custom-dataset-type": "mooncake_trace", + "max-model-len": 8192, + "benchmark-client": ["aiperf"], + "search-space": [{"tp": 1, "conc-list": [2]}], + } + cfg.update(overrides) + return cfg + + def test_valid_config(self): + cfg = AgenticReplayConfig(**self._config()) + assert cfg.custom_dataset_type == "mooncake_trace" + assert cfg.max_model_len == 8192 + assert cfg.benchmark_client == ["aiperf"] + + def test_benchmark_client_defaults_to_aiperf(self): + raw = self._config() + del raw["benchmark-client"] + + cfg = AgenticReplayConfig(**raw) + + assert cfg.benchmark_client == ["aiperf"] + + def test_native_benchmark_client_rejected(self): + with pytest.raises(Exception): + AgenticReplayConfig(**self._config(**{"benchmark-client": ["inferencex_native"]})) + + def test_requires_input_file(self): + bad = self._config() + del bad["input-file"] + with pytest.raises(Exception): + AgenticReplayConfig(**bad) + + def test_conc_range_or_list_required(self): + with pytest.raises(Exception): + AgenticReplayConfig(**self._config(**{"search-space": [{"tp": 1}]})) + + # ============================================================================= # Test SingleNodeSearchSpaceEntry # ============================================================================= diff --git a/utils/matrix_logic/validation.py b/utils/matrix_logic/validation.py index ac13f6670..64c7f03fa 100644 --- a/utils/matrix_logic/validation.py +++ b/utils/matrix_logic/validation.py @@ -27,6 +27,7 @@ class Fields(Enum): # Scenario type keys FIXED_SEQ_LEN = 'fixed-seq-len' AGENTIC_CODING = 'agentic-coding' + AGENTIC_REPLAY = 'agentic-replay' # Seq-len-config fields ISL = 'isl' @@ -56,6 +57,10 @@ class Fields(Enum): OFFLOADING = 'offloading' DURATION = 'duration' + # Agentic replay fields (mooncake_trace on official AIPerf) + INPUT_FILE = 'input-file' + CUSTOM_DATASET_TYPE = 'custom-dataset-type' + # Matrix entry fields CONC = 'conc' MAX_MODEL_LEN = 'max-model-len' @@ -208,6 +213,39 @@ class MultiNodeAgenticMatrixEntry(BaseModel): AgenticMatrixEntry = Union[SingleNodeAgenticMatrixEntry, MultiNodeAgenticMatrixEntry] +class SingleNodeAgenticReplayMatrixEntry(BaseModel): + """Pydantic model for validating single-node agentic-replay matrix entries. + + Agentic-replay drives a recorded mooncake_trace JSONL through official AIPerf + (the ``aiperf`` benchmark client) and rides the standard ``process_result.py`` + aggregation. ``isl``/``osl`` are placeholders required by downstream env + checks; the trace defines the real per-request lengths.""" + model_config = ConfigDict(extra='forbid', populate_by_name=True) + + image: str + model: str + model_prefix: str = Field(alias=Fields.MODEL_PREFIX.value) + precision: str + framework: str + benchmark_client: Literal["aiperf"] = Field( + default="aiperf", alias=Fields.BENCHMARK_CLIENT.value + ) + runner: str + tp: int + ep: int + dp_attn: bool = Field(alias=Fields.DP_ATTN.value) + conc: int + isl: int + osl: int + max_model_len: int = Field(alias=Fields.MAX_MODEL_LEN.value) + input_file: str = Field(alias=Fields.INPUT_FILE.value) + custom_dataset_type: str = Field(alias=Fields.CUSTOM_DATASET_TYPE.value) + duration: int = Field(default=1800, alias=Fields.DURATION.value) + exp_name: str = Field(alias=Fields.EXP_NAME.value) + disagg: bool + scenario_type: str = Field(alias=Fields.SCENARIO_TYPE.value) + + def validate_agentic_matrix_entry(entry: dict) -> dict: """Validate that an agentic matrix entry matches the expected structure.""" try: @@ -221,6 +259,16 @@ def validate_agentic_matrix_entry(entry: dict) -> dict: return entry +def validate_agentic_replay_matrix_entry(entry: dict) -> dict: + """Validate that an agentic-replay matrix entry matches the expected structure.""" + try: + SingleNodeAgenticReplayMatrixEntry(**entry) + except ValidationError as e: + raise ValueError( + f"The following parsed agentic-replay matrix entry failed validation:\n{pprint.pformat(entry)}\n{e}") + return entry + + def validate_matrix_entry(entry: dict, is_multinode: bool) -> dict: """Validate that matrix_values entries match the expected structure. @@ -413,6 +461,38 @@ class AgenticCodingConfig(BaseModel): duration: int = Field(default=1800, alias=Fields.DURATION.value) +class AgenticReplaySearchSpaceEntry(BaseModel): + """Single-node agentic-replay search space configuration.""" + model_config = ConfigDict(extra='forbid', populate_by_name=True) + + tp: int + ep: Optional[int] = None + dp_attn: Optional[bool] = Field(default=None, alias=Fields.DP_ATTN.value) + conc_start: Optional[int] = Field(default=None, alias=Fields.CONC_START.value) + conc_end: Optional[int] = Field(default=None, alias=Fields.CONC_END.value) + conc_list: Optional[List[int]] = Field(default=None, alias=Fields.CONC_LIST.value) + + @model_validator(mode='after') + def validate_conc_fields(self): + return _validate_conc_fields(self) + + +class AgenticReplayConfig(BaseModel): + """Single-node agentic-replay scenario: a recorded trace replayed once + through official AIPerf. ``input-file`` is a repo-relative mooncake_trace + JSONL; the run is bounded by the record count, not a duration sweep.""" + model_config = ConfigDict(extra='forbid', populate_by_name=True) + + input_file: str = Field(alias=Fields.INPUT_FILE.value) + custom_dataset_type: str = Field(alias=Fields.CUSTOM_DATASET_TYPE.value) + max_model_len: int = Field(alias=Fields.MAX_MODEL_LEN.value) + benchmark_client: List[Literal["aiperf"]] = Field( + default=["aiperf"], alias=Fields.BENCHMARK_CLIENT.value) + duration: int = Field(default=1800, alias=Fields.DURATION.value) + search_space: List[AgenticReplaySearchSpaceEntry] = Field( + alias=Fields.SEARCH_SPACE.value) + + class SingleNodeScenarios(BaseModel): """Scenarios wrapper for single-node configs.""" model_config = ConfigDict(extra='forbid', populate_by_name=True) @@ -421,10 +501,12 @@ class SingleNodeScenarios(BaseModel): default=None, alias=Fields.FIXED_SEQ_LEN.value) agentic_coding: Optional[List[AgenticCodingConfig]] = Field( default=None, alias=Fields.AGENTIC_CODING.value) + agentic_replay: Optional[List[AgenticReplayConfig]] = Field( + default=None, alias=Fields.AGENTIC_REPLAY.value) @model_validator(mode='after') def at_least_one_scenario(self): - if not self.fixed_seq_len and not self.agentic_coding: + if not self.fixed_seq_len and not self.agentic_coding and not self.agentic_replay: raise ValueError("At least one scenario type must be specified") return self @@ -548,7 +630,7 @@ class ChangelogMatrixEntry(BaseModel): """ model_config = ConfigDict(extra="forbid", populate_by_name=True) - single_node: dict[str, list[Union[SingleNodeMatrixEntry, SingleNodeAgenticMatrixEntry]] + single_node: dict[str, list[Union[SingleNodeMatrixEntry, SingleNodeAgenticMatrixEntry, SingleNodeAgenticReplayMatrixEntry]] ] = Field(default_factory=dict) multi_node: dict[str, list[Union[MultiNodeMatrixEntry, MultiNodeAgenticMatrixEntry]] ] = Field(default_factory=dict) diff --git a/utils/process_changelog.py b/utils/process_changelog.py index 4c8c07864..27bccbd00 100644 --- a/utils/process_changelog.py +++ b/utils/process_changelog.py @@ -212,6 +212,10 @@ def main(): final_results["multi_node"]["agentic"].append(result) else: final_results["single_node"]["agentic"].append(result) + elif result.get("scenario-type") == "agentic-replay": + # agentic-replay is single-node only and rides the standard bmk_* + # aggregation; it gets its own dispatch bucket/job. + final_results["single_node"]["agentic-replay"].append(result) elif "prefill" in result and result["prefill"] is not None: seq_len_str = seq_len_to_str(result["isl"], result["osl"]) final_results["multi_node"][seq_len_str].append(result) diff --git a/utils/process_result.py b/utils/process_result.py index a07786186..695ec5780 100644 --- a/utils/process_result.py +++ b/utils/process_result.py @@ -1,9 +1,77 @@ import sys import json import os +import csv +from datetime import datetime from pathlib import Path +def mean_total_power_w(csv_path, num_gpus, window_s=None): + """Mean total GPU power (W) over the benchmark window from an nvidia-smi CSV. + + The CSV is the one written by start_gpu_monitor() in benchmark_lib.sh + (`nvidia-smi --query-gpu=timestamp,index,power.draw,... --format=csv -l 1`). + + Sums the per-GPU mean power of the `num_gpus` busiest GPUs so idle GPUs on a + shared host (e.g. an unused second card on a TP=1 run) don't inflate the + figure. When `window_s` is given, only samples within the last `window_s` + seconds are used so model-load/warmup power (the monitor starts before the + server) is excluded. Returns None when no usable data is found. + """ + try: + with open(csv_path, newline='') as f: + rows = list(csv.reader(f)) + except (FileNotFoundError, OSError): + return None + + if len(rows) < 2: + return None + + header = [h.strip() for h in rows[0]] + + def col(prefix): + for i, h in enumerate(header): + if h.startswith(prefix): + return i + return None + + ts_i, idx_i, pw_i = col('timestamp'), col('index'), col('power.draw') + if ts_i is None or idx_i is None or pw_i is None: + return None + + samples = [] # (ts_seconds, gpu_index, power_w) + for r in rows[1:]: + if len(r) <= max(ts_i, idx_i, pw_i): + continue + try: + ts = datetime.strptime( + r[ts_i].strip(), "%Y/%m/%d %H:%M:%S.%f").timestamp() + gpu = r[idx_i].strip() + # values look like "350.12 W"; "[N/A]" and similar are skipped + power = float(r[pw_i].strip().split()[0]) + except (ValueError, IndexError): + continue + samples.append((ts, gpu, power)) + + if not samples: + return None + + if window_s and window_s > 0: + end = max(s[0] for s in samples) + windowed = [s for s in samples if s[0] >= end - window_s] + if windowed: + samples = windowed + + per_gpu = {} + for _, gpu, power in samples: + per_gpu.setdefault(gpu, []).append(power) + + gpu_means = sorted( + (sum(v) / len(v) for v in per_gpu.values()), reverse=True) + n = max(1, min(num_gpus, len(gpu_means))) + return sum(gpu_means[:n]) + + def get_required_env_vars(required_vars): """Load and validate required environment variables.""" env_values = {} @@ -90,6 +158,7 @@ def _opt_int(env_name): decode_dp_attn = multinode_env['DECODE_DP_ATTN'] total_gpus = prefill_gpus + decode_gpus + num_gpus_used = total_gpus if total_gpus <= 0: raise ValueError("Multinode results require at least one GPU.") if prefill_gpus <= 0: @@ -125,6 +194,7 @@ def _opt_int(env_name): tp_size = int(single_node_env['TP']) ep_size = int(single_node_env['EP_SIZE']) dp_attention = single_node_env['DP_ATTENTION'] + num_gpus_used = tp_size single_node_data = { 'is_multinode': False, @@ -145,6 +215,23 @@ def _opt_int(env_name): data[key.replace('_ms', '').replace( 'tpot', 'intvty')] = 1000.0 / float(value) +# Energy efficiency: tokens per watt (tok/s/W) from the nvidia-smi power log. +# Power telemetry is best-effort; a missing/empty CSV leaves the fields null. +gpu_metrics_csv = os.environ.get('GPU_METRICS_CSV', 'gpu_metrics.csv') +window_s = bmk_result.get('duration') +mean_power = mean_total_power_w(gpu_metrics_csv, num_gpus_used, window_s) +data['mean_power_w'] = round(mean_power, 2) if mean_power else None +# Two tokens/Watt conventions, both emitted so reports aren't ambiguous: +# - total = (input + output) tokens / W. Dominated by prefill on input-heavy +# or no-prefix-cache workloads, so it reads high. +# - output = decoded tokens only / W. The stricter "useful work per Watt". +# `tok_per_watt` is kept as an alias of the total for backward compatibility. +total_tput = float(bmk_result['total_token_throughput']) +output_tput = float(bmk_result['output_throughput']) +data['tok_per_watt_total'] = round(total_tput / mean_power, 4) if mean_power else None +data['tok_per_watt_output'] = round(output_tput / mean_power, 4) if mean_power else None +data['tok_per_watt'] = data['tok_per_watt_total'] + print(json.dumps(data, indent=2)) with open(f'agg_{result_filename}.json', 'w') as f: diff --git a/utils/summarize.py b/utils/summarize.py index 9829cd518..883df4777 100644 --- a/utils/summarize.py +++ b/utils/summarize.py @@ -16,23 +16,16 @@ EP = "EP" DP_ATTENTION = "DP Attention" CONC = "Conc" -TTFT_MEAN = "TTFT Mean (ms)" -TTFT_P75 = "TTFT P75 (ms)" -TTFT_P90 = "TTFT P90 (ms)" -TTFT_P95 = "TTFT P95 (ms)" -TPOT_MEAN = "TPOT Mean (ms)" -TPOT_P75 = "TPOT P75 (ms)" -INTVTY_MEAN = "Intvty Mean (tok/s/user)" -INTVTY_AT_P75_TPOT = "Intvty at P75 TPOT (tok/s/user)" -INTVTY_AT_P90_TPOT = "Intvty at P90 TPOT (tok/s/user)" -INTVTY_AT_P95_TPOT = "Intvty at P95 TPOT (tok/s/user)" -E2EL_MEAN = "E2EL Mean (s)" -E2EL_P75 = "E2EL P75 (s)" -E2EL_P90 = "E2EL P90 (s)" -E2EL_P95 = "E2EL P95 (s)" +# Latency columns (TTFT / TPOT / Intvty / E2EL) are generated for the full +# mean + p50/p75/p90/p95/p99 distribution by the _*_headers/_*_cells helpers below. TPUT_PER_GPU = "TPUT per GPU" OUTPUT_TPUT_PER_GPU = "Output TPUT per GPU" INPUT_TPUT_PER_GPU = "Input TPUT per GPU" +# Two tokens/Watt conventions (see process_result.py): total counts input+output +# tokens (prefill-dominated, reads high); output counts decoded tokens only. +TOK_PER_WATT_TOTAL = "Token/Watt total (tok/s/W)" +TOK_PER_WATT_OUTPUT = "Token/Watt output (tok/s/W)" +POWER_MEAN = "Power Mean (W)" PREFILL_TP = "Prefill TP" PREFILL_EP = "Prefill EP" PREFILL_DP_ATTN = "Prefill DP Attn" @@ -52,6 +45,45 @@ N_EFF = "N (eff)" SPEC_DECODING = "Spec Decode" +# Latency percentiles surfaced in the summary tables (mean is always shown too). +LATENCY_PCTLS = ("p50", "p75", "p90", "p95", "p99") + + +def _ms_headers(label: str) -> list: + """mean + percentile headers for a millisecond latency metric (e.g. TTFT).""" + return [f"{label} Mean (ms)"] + [f"{label} {p.upper()} (ms)" for p in LATENCY_PCTLS] + + +def _ms_cells(r: dict, key: str) -> list: + """mean + percentile cells; values are stored in seconds, rendered as ms.""" + return [f"{r.get(f'mean_{key}', 0) * 1000:.4f}"] + [ + f"{r.get(f'{p}_{key}', 0) * 1000:.4f}" for p in LATENCY_PCTLS + ] + + +def _sec_headers(label: str) -> list: + """mean + percentile headers for a second-scale latency metric (e.g. E2EL).""" + return [f"{label} Mean (s)"] + [f"{label} {p.upper()} (s)" for p in LATENCY_PCTLS] + + +def _sec_cells(r: dict, key: str) -> list: + return [f"{r.get(f'mean_{key}', 0):.4f}"] + [ + f"{r.get(f'{p}_{key}', 0):.4f}" for p in LATENCY_PCTLS + ] + + +def _intvty_headers() -> list: + """Interactivity (tok/s/user) is 1/TPOT, so each column tracks a TPOT pctl.""" + return ["Intvty Mean (tok/s/user)"] + [ + f"Intvty at {p.upper()} TPOT (tok/s/user)" for p in LATENCY_PCTLS + ] + + +def _intvty_cells(r: dict) -> list: + return [f"{r.get('mean_intvty', 0):.4f}"] + [ + f"{r.get(f'{p}_intvty', 0):.4f}" for p in LATENCY_PCTLS + ] + def load_json(path: Path) -> Optional[Dict[str, Any]]: """Load JSON file and return dict, or None on error.""" @@ -86,11 +118,12 @@ def main(): single_node_headers = [ MODEL, SERVED_MODEL, HARDWARE, FRAMEWORK, PRECISION, ISL, OSL, TP, EP, DP_ATTENTION, CONC, - TTFT_MEAN, TTFT_P75, TTFT_P90, TTFT_P95, - TPOT_MEAN, TPOT_P75, - INTVTY_MEAN, INTVTY_AT_P75_TPOT, INTVTY_AT_P90_TPOT, INTVTY_AT_P95_TPOT, - E2EL_MEAN, E2EL_P75, E2EL_P90, E2EL_P95, - TPUT_PER_GPU, OUTPUT_TPUT_PER_GPU, INPUT_TPUT_PER_GPU + *_ms_headers("TTFT"), + *_ms_headers("TPOT"), + *_intvty_headers(), + *_sec_headers("E2EL"), + TPUT_PER_GPU, OUTPUT_TPUT_PER_GPU, INPUT_TPUT_PER_GPU, + TOK_PER_WATT_TOTAL, TOK_PER_WATT_OUTPUT, POWER_MEAN ] single_node_rows = [ @@ -106,23 +139,16 @@ def main(): r['ep'], r['dp_attention'], r['conc'], - f"{r['mean_ttft'] * 1000:.4f}", - f"{r.get('p75_ttft', 0) * 1000:.4f}", - f"{r.get('p90_ttft', 0) * 1000:.4f}", - f"{r.get('p95_ttft', 0) * 1000:.4f}", - f"{r['mean_tpot'] * 1000:.4f}", - f"{r.get('p75_tpot', 0) * 1000:.4f}", - f"{r.get('mean_intvty', 0):.4f}", - f"{r.get('p75_intvty', 0):.4f}", - f"{r.get('p90_intvty', 0):.4f}", - f"{r.get('p95_intvty', 0):.4f}", - f"{r.get('mean_e2el', 0):.4f}", - f"{r.get('p75_e2el', 0):.4f}", - f"{r.get('p90_e2el', 0):.4f}", - f"{r.get('p95_e2el', 0):.4f}", + *_ms_cells(r, "ttft"), + *_ms_cells(r, "tpot"), + *_intvty_cells(r), + *_sec_cells(r, "e2el"), f"{r['tput_per_gpu']:.4f}", f"{r['output_tput_per_gpu']:.4f}", f"{r['input_tput_per_gpu']:.4f}", + f"{r.get('tok_per_watt_total') or 0:.4f}", + f"{r.get('tok_per_watt_output') or 0:.4f}", + f"{r.get('mean_power_w') or 0:.2f}", ] for r in single_node_results ] @@ -141,11 +167,12 @@ def main(): PREFILL_TP, PREFILL_EP, PREFILL_DP_ATTN, PREFILL_WORKERS, PREFILL_GPUS, DECODE_TP, DECODE_EP, DECODE_DP_ATTN, DECODE_WORKERS, DECODE_GPUS, CONC, - TTFT_MEAN, TTFT_P75, TTFT_P90, TTFT_P95, - TPOT_MEAN, TPOT_P75, - INTVTY_MEAN, INTVTY_AT_P75_TPOT, INTVTY_AT_P90_TPOT, INTVTY_AT_P95_TPOT, - E2EL_MEAN, E2EL_P75, E2EL_P90, E2EL_P95, - TPUT_PER_GPU, OUTPUT_TPUT_PER_GPU, INPUT_TPUT_PER_GPU + *_ms_headers("TTFT"), + *_ms_headers("TPOT"), + *_intvty_headers(), + *_sec_headers("E2EL"), + TPUT_PER_GPU, OUTPUT_TPUT_PER_GPU, INPUT_TPUT_PER_GPU, + TOK_PER_WATT_TOTAL, TOK_PER_WATT_OUTPUT, POWER_MEAN ] multinode_rows = [ @@ -168,23 +195,16 @@ def main(): r['decode_num_workers'], r['num_decode_gpu'], r['conc'], - f"{r['mean_ttft'] * 1000:.4f}", - f"{r.get('p75_ttft', 0) * 1000:.4f}", - f"{r.get('p90_ttft', 0) * 1000:.4f}", - f"{r.get('p95_ttft', 0) * 1000:.4f}", - f"{r['mean_tpot'] * 1000:.4f}", - f"{r.get('p75_tpot', 0) * 1000:.4f}", - f"{r.get('mean_intvty', 0):.4f}", - f"{r.get('p75_intvty', 0):.4f}", - f"{r.get('p90_intvty', 0):.4f}", - f"{r.get('p95_intvty', 0):.4f}", - f"{r.get('mean_e2el', 0):.4f}", - f"{r.get('p75_e2el', 0):.4f}", - f"{r.get('p90_e2el', 0):.4f}", - f"{r.get('p95_e2el', 0):.4f}", + *_ms_cells(r, "ttft"), + *_ms_cells(r, "tpot"), + *_intvty_cells(r), + *_sec_cells(r, "e2el"), f"{r['tput_per_gpu']:.4f}", f"{r['output_tput_per_gpu']:.4f}", f"{r['input_tput_per_gpu']:.4f}", + f"{r.get('tok_per_watt_total') or 0:.4f}", + f"{r.get('tok_per_watt_output') or 0:.4f}", + f"{r.get('mean_power_w') or 0:.2f}", ] for r in multinode_results ] diff --git a/utils/test_process_result.py b/utils/test_process_result.py index b044242be..42ab7c45b 100644 --- a/utils/test_process_result.py +++ b/utils/test_process_result.py @@ -208,6 +208,61 @@ def test_single_node_processing(self, tmp_path, sample_benchmark_result, single_ output_file = tmp_path / "agg_benchmark_result.json" assert output_file.exists() + def test_token_per_watt_uses_busiest_gpus(self, tmp_path, sample_benchmark_result, single_node_env_vars): + """tok/W should sum only the TP busiest GPUs, ignoring idle cards.""" + csv_lines = [ + "timestamp, index, power.draw [W], temperature.gpu, " + "clocks.current.sm [MHz], clocks.current.memory [MHz], " + "utilization.gpu [%], utilization.memory [%]", + "2026/06/03 12:00:00.000, 0, 700.00 W, 65, 1980 MHz, 2619 MHz, 99 %, 50 %", + "2026/06/03 12:00:01.000, 0, 700.00 W, 65, 1980 MHz, 2619 MHz, 99 %, 50 %", + "2026/06/03 12:00:00.000, 1, 70.00 W, 35, 210 MHz, 2619 MHz, 0 %, 0 %", + "2026/06/03 12:00:01.000, 1, 70.00 W, 35, 210 MHz, 2619 MHz, 0 %, 0 %", + ] + (tmp_path / "gpu_metrics.csv").write_text("\n".join(csv_lines) + "\n") + + env = single_node_env_vars.copy() + env["TP"] = "1" # only one GPU used; the second is idle on the host + result_with_duration = {**sample_benchmark_result, "duration": 30.0} + + result = run_script(tmp_path, env, result_with_duration) + assert result.returncode == 0, f"Script failed: {result.stderr}" + output_data = json.loads(result.stdout) + + # TP=1 -> only the 700W GPU counts, the idle 70W card is excluded. + assert output_data["mean_power_w"] == pytest.approx(700.0) + assert output_data["tok_per_watt"] == pytest.approx(15000.5 / 700.0) + + def test_token_per_watt_windows_out_warmup(self, tmp_path, sample_benchmark_result, single_node_env_vars): + """Samples older than `duration` (model load/warmup) are excluded.""" + csv_lines = [ + "timestamp, index, power.draw [W]", + "2026/06/03 12:00:00.000, 0, 100.00 W", # warmup, well before window + "2026/06/03 12:05:00.000, 0, 600.00 W", + "2026/06/03 12:05:01.000, 0, 600.00 W", + ] + (tmp_path / "gpu_metrics.csv").write_text("\n".join(csv_lines) + "\n") + + env = single_node_env_vars.copy() + env["TP"] = "1" + result_with_duration = {**sample_benchmark_result, "duration": 10.0} + + result = run_script(tmp_path, env, result_with_duration) + assert result.returncode == 0, f"Script failed: {result.stderr}" + output_data = json.loads(result.stdout) + + # Only the two 600W samples fall within the last 10s; warmup is dropped. + assert output_data["mean_power_w"] == pytest.approx(600.0) + + def test_token_per_watt_null_without_csv(self, tmp_path, sample_benchmark_result, single_node_env_vars): + """Missing power log leaves the efficiency fields null (best-effort).""" + result = run_script(tmp_path, single_node_env_vars, sample_benchmark_result) + assert result.returncode == 0, f"Script failed: {result.stderr}" + output_data = json.loads(result.stdout) + + assert output_data["mean_power_w"] is None + assert output_data["tok_per_watt"] is None + def test_benchmark_client_from_env(self, tmp_path, sample_benchmark_result, single_node_env_vars): """BENCHMARK_CLIENT should be passed through to processed output.""" env = single_node_env_vars.copy()