Merserk commited on
Commit
d895b3e
·
verified ·
1 Parent(s): 879c597

Add files using upload-large-folder tool

Browse files
reproduction/benchmark/comparison_sheets.py CHANGED
@@ -1,15 +1,13 @@
1
  from __future__ import annotations
2
 
3
  import json
 
4
  from pathlib import Path
5
 
6
  import numpy as np
7
  from PIL import Image, ImageDraw, ImageFont
8
 
9
 
10
- FORMAT_ORDER = ["bf16", "fp8_scaled", "int8_convrot", "mxfp8", "nvfp4"]
11
-
12
-
13
  def font(size: int):
14
  candidates = [Path("C:/Windows/Fonts/segoeui.ttf"), Path("C:/Windows/Fonts/arial.ttf")]
15
  for candidate in candidates:
@@ -22,18 +20,21 @@ def capture_image(results_dir: Path, run_id: str) -> Image.Image:
22
  return Image.open(results_dir / "captures" / run_id / "image.png").convert("RGB")
23
 
24
 
25
- def labeled_grid(images: list[Image.Image], labels: list[str], title: str, cell_size: int = 384) -> Image.Image:
26
- header = 86
27
  title_height = 52
28
- canvas = Image.new("RGB", (cell_size * len(images), title_height + header + cell_size), "#111111")
 
29
  draw = ImageDraw.Draw(canvas)
30
  draw.text((16, 12), title, fill="white", font=font(24))
31
  label_font = font(20)
32
  for index, (image, label) in enumerate(zip(images, labels)):
33
- x = index * cell_size
34
- draw.rectangle((x, title_height, x + cell_size, title_height + header), fill="#202020")
35
- draw.text((x + 12, title_height + 27), label, fill="white", font=label_font)
36
- canvas.paste(image.resize((cell_size, cell_size), Image.Resampling.LANCZOS), (x, title_height + header))
 
 
37
  return canvas
38
 
39
 
@@ -74,19 +75,23 @@ def detail_regions(reference: np.ndarray, crop_size: int = 256, count: int = 3)
74
  ]
75
 
76
 
77
- def detail_sheet(images: list[Image.Image], labels: list[str], regions: list[tuple[int, int, int, int]], title: str, cell: int = 320) -> Image.Image:
78
  title_height = 58
79
- label_height = 48
80
- canvas = Image.new("RGB", (cell * len(images), title_height + label_height + cell * len(regions)), "#111111")
 
 
81
  draw = ImageDraw.Draw(canvas)
82
  draw.text((16, 14), title, fill="white", font=font(24))
83
- for column, label in enumerate(labels):
84
- draw.text((column * cell + 10, title_height + 12), label, fill="white", font=font(18))
85
- for row, region in enumerate(regions):
86
- for column, image in enumerate(images):
 
 
87
  crop = image.crop(region).resize((cell, cell), Image.Resampling.NEAREST)
88
- canvas.paste(crop, (column * cell, title_height + label_height + row * cell))
89
- draw.text((8, title_height + label_height + row * cell + 8), f"detail {row + 1}", fill="#ffdf80", font=font(16), stroke_width=2, stroke_fill="#111111")
90
  return canvas
91
 
92
 
@@ -99,13 +104,14 @@ def generate(config: dict, results_dir: Path) -> None:
99
  detail_dir = sheets_dir / "details"
100
  for directory in (full_dir, diff_dir, detail_dir):
101
  directory.mkdir(parents=True, exist_ok=True)
102
- labels = [config["formats"][format_id]["label"] for format_id in FORMAT_ORDER]
 
103
  index = []
104
  contact_rows = []
105
 
106
  for prompt in config["prompts"]:
107
  for replicate in range(int(config["campaign"]["replicates"])):
108
- run_ids = [f"{prompt['id']}__r{replicate}__{format_id}" for format_id in FORMAT_ORDER]
109
  images = [capture_image(results_dir, run_id) for run_id in run_ids]
110
  title = f"{prompt['id']} · replicate {replicate} �� seed {json.loads((results_dir / 'captures' / run_ids[0] / 'metadata.json').read_text(encoding='utf-8'))['output']['seed']}"
111
  full_path = full_dir / f"{prompt['id']}__r{replicate}.png"
@@ -137,16 +143,19 @@ def generate(config: dict, results_dir: Path) -> None:
137
  thumb = 192
138
  row_header = 180
139
  top = 62
140
- contact = Image.new("RGB", (row_header + thumb * len(FORMAT_ORDER), top + thumb * len(contact_rows)), "#111111")
 
 
 
141
  draw = ImageDraw.Draw(contact)
142
  draw.text((12, 14), "Krea 2 Turbo format contact sheet · replicate 0", fill="white", font=font(24))
143
  for row, (prompt_id, images) in enumerate(contact_rows):
144
- y = top + row * thumb
145
- draw.text((8, y + 76), prompt_id, fill="white", font=font(16))
146
- for column, image in enumerate(images):
147
- contact.paste(image.resize((thumb, thumb), Image.Resampling.LANCZOS), (row_header + column * thumb, y))
148
- for column, label in enumerate(labels):
149
- draw.text((row_header + column * thumb + 5, 40), label, fill="#ffdf80", font=font(14))
150
  contact.save(sheets_dir / "contact_sheet_replicate0.png", format="PNG", compress_level=4)
151
  (sheets_dir / "index.json").write_text(json.dumps(index, indent=2), encoding="utf-8")
152
  (sheets_dir / "complete.json").write_text(json.dumps({"complete": True, "groups": len(index)}, indent=2), encoding="utf-8")
 
1
  from __future__ import annotations
2
 
3
  import json
4
+ import math
5
  from pathlib import Path
6
 
7
  import numpy as np
8
  from PIL import Image, ImageDraw, ImageFont
9
 
10
 
 
 
 
11
  def font(size: int):
12
  candidates = [Path("C:/Windows/Fonts/segoeui.ttf"), Path("C:/Windows/Fonts/arial.ttf")]
13
  for candidate in candidates:
 
20
  return Image.open(results_dir / "captures" / run_id / "image.png").convert("RGB")
21
 
22
 
23
+ def labeled_grid(images: list[Image.Image], labels: list[str], title: str, cell_size: int = 384, columns: int = 4) -> Image.Image:
24
+ header = 64
25
  title_height = 52
26
+ rows = math.ceil(len(images) / columns)
27
+ canvas = Image.new("RGB", (cell_size * columns, title_height + rows * (header + cell_size)), "#111111")
28
  draw = ImageDraw.Draw(canvas)
29
  draw.text((16, 12), title, fill="white", font=font(24))
30
  label_font = font(20)
31
  for index, (image, label) in enumerate(zip(images, labels)):
32
+ row, column = divmod(index, columns)
33
+ x = column * cell_size
34
+ y = title_height + row * (header + cell_size)
35
+ draw.rectangle((x, y, x + cell_size, y + header), fill="#202020")
36
+ draw.text((x + 12, y + 18), label, fill="white", font=label_font)
37
+ canvas.paste(image.resize((cell_size, cell_size), Image.Resampling.LANCZOS), (x, y + header))
38
  return canvas
39
 
40
 
 
75
  ]
76
 
77
 
78
+ def detail_sheet(images: list[Image.Image], labels: list[str], regions: list[tuple[int, int, int, int]], title: str, cell: int = 320, columns: int = 4) -> Image.Image:
79
  title_height = 58
80
+ label_height = 42
81
+ format_rows = math.ceil(len(images) / columns)
82
+ region_height = format_rows * (label_height + cell)
83
+ canvas = Image.new("RGB", (cell * columns, title_height + region_height * len(regions)), "#111111")
84
  draw = ImageDraw.Draw(canvas)
85
  draw.text((16, 14), title, fill="white", font=font(24))
86
+ for region_index, region in enumerate(regions):
87
+ base_y = title_height + region_index * region_height
88
+ for index, (image, label) in enumerate(zip(images, labels)):
89
+ row, column = divmod(index, columns)
90
+ y = base_y + row * (label_height + cell)
91
+ draw.text((column * cell + 10, y + 10), label, fill="white", font=font(18))
92
  crop = image.crop(region).resize((cell, cell), Image.Resampling.NEAREST)
93
+ canvas.paste(crop, (column * cell, y + label_height))
94
+ draw.text((8, base_y + label_height + 8), f"detail {region_index + 1}", fill="#ffdf80", font=font(16), stroke_width=2, stroke_fill="#111111")
95
  return canvas
96
 
97
 
 
104
  detail_dir = sheets_dir / "details"
105
  for directory in (full_dir, diff_dir, detail_dir):
106
  directory.mkdir(parents=True, exist_ok=True)
107
+ format_order = list(config["formats"])
108
+ labels = [config["formats"][format_id]["label"] for format_id in format_order]
109
  index = []
110
  contact_rows = []
111
 
112
  for prompt in config["prompts"]:
113
  for replicate in range(int(config["campaign"]["replicates"])):
114
+ run_ids = [f"{prompt['id']}__r{replicate}__{format_id}" for format_id in format_order]
115
  images = [capture_image(results_dir, run_id) for run_id in run_ids]
116
  title = f"{prompt['id']} · replicate {replicate} �� seed {json.loads((results_dir / 'captures' / run_ids[0] / 'metadata.json').read_text(encoding='utf-8'))['output']['seed']}"
117
  full_path = full_dir / f"{prompt['id']}__r{replicate}.png"
 
143
  thumb = 192
144
  row_header = 180
145
  top = 62
146
+ contact_columns = 4
147
+ contact_format_rows = math.ceil(len(format_order) / contact_columns)
148
+ prompt_block_height = thumb * contact_format_rows
149
+ contact = Image.new("RGB", (row_header + thumb * contact_columns, top + prompt_block_height * len(contact_rows)), "#111111")
150
  draw = ImageDraw.Draw(contact)
151
  draw.text((12, 14), "Krea 2 Turbo format contact sheet · replicate 0", fill="white", font=font(24))
152
  for row, (prompt_id, images) in enumerate(contact_rows):
153
+ y = top + row * prompt_block_height
154
+ draw.text((8, y + prompt_block_height // 2 - 10), prompt_id, fill="white", font=font(16))
155
+ for format_index, image in enumerate(images):
156
+ format_row, column = divmod(format_index, contact_columns)
157
+ contact.paste(image.resize((thumb, thumb), Image.Resampling.LANCZOS), (row_header + column * thumb, y + format_row * thumb))
158
+ draw.text((row_header + column * thumb + 5, y + format_row * thumb + 5), labels[format_index], fill="#ffdf80", font=font(13), stroke_width=2, stroke_fill="#111111")
159
  contact.save(sheets_dir / "contact_sheet_replicate0.png", format="PNG", compress_level=4)
160
  (sheets_dir / "index.json").write_text(json.dumps(index, indent=2), encoding="utf-8")
161
  (sheets_dir / "complete.json").write_text(json.dumps({"complete": True, "groups": len(index)}, indent=2), encoding="utf-8")
reproduction/benchmark/config_base.example.json ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": 1,
3
+ "benchmark_id": "krea2-format-benchmark-v1",
4
+ "paths": {
5
+ "portable_root": "<COMFYUI_PORTABLE_ROOT>",
6
+ "models_dir": "<KREA_MODEL_DIRECTORY>",
7
+ "results_dir": "results/krea2_formats_v1"
8
+ },
9
+ "server": {
10
+ "host": "127.0.0.1",
11
+ "port": 8190,
12
+ "startup_timeout_seconds": 180,
13
+ "prompt_timeout_seconds": 3600,
14
+ "telemetry_interval_seconds": 0.1,
15
+ "memory_mode": "default"
16
+ },
17
+ "integrity": {
18
+ "publisher_repository": "Comfy-Org/Krea-2",
19
+ "publisher_revision": "8038ce89b91b042141541ad0fa51b985ca262c5f",
20
+ "expected_sha256": {
21
+ "krea2_turbo_bf16.safetensors": "78bbf8f4165eda19cea3cb06c78089221932a39e2eed8af9da741f942c47ffb3",
22
+ "krea2_turbo_fp8_scaled.safetensors": "eb4dd8c612cfd10f64f25b057e6e6bbcb5737c94a7372177e456dbf7579502f1",
23
+ "krea2_turbo_int8_convrot.safetensors": "8e4eeda70dd5037ab1ba2bef6b417f9f901e26093117cf397f741fc1fdaaf3f1",
24
+ "krea2_turbo_mxfp8.safetensors": "4c09131a442c3a01e95f934b43c76c1e691b9f683694a7b68d6fc707d5ecfce3",
25
+ "krea2_turbo_nvfp4.safetensors": "61527003b2d537055494d01bc8efe51d6e86e64192ba23e3721a5647231fe394",
26
+ "qwen3vl_4b_bf16.safetensors": "36f3ff447ef59201722e8f9ce6020c9819fdcfba6aa2608c4e09b1c0ce114e34",
27
+ "qwen_image_vae.safetensors": "a70580f0213e67967ee9c95f05bb400e8fb08307e017a924bf3441223e023d1f"
28
+ }
29
+ },
30
+ "controls": {
31
+ "width": 1024,
32
+ "height": 1024,
33
+ "batch_size": 1,
34
+ "steps": 8,
35
+ "cfg": 1.0,
36
+ "sampler_name": "euler",
37
+ "scheduler": "simple",
38
+ "denoise": 1.0,
39
+ "text_encoder": "qwen3vl_4b_bf16.safetensors",
40
+ "clip_type": "krea2",
41
+ "clip_device": "default",
42
+ "vae": "qwen_image_vae.safetensors",
43
+ "negative_mode": "zero_positive_conditioning",
44
+ "prompt_rewriting": false,
45
+ "loras": []
46
+ },
47
+ "formats": {
48
+ "bf16": {
49
+ "label": "BF16",
50
+ "checkpoint": "krea2_turbo_bf16.safetensors"
51
+ },
52
+ "fp8_scaled": {
53
+ "label": "FP8 Scaled",
54
+ "checkpoint": "krea2_turbo_fp8_scaled.safetensors"
55
+ },
56
+ "int8_convrot": {
57
+ "label": "INT8 ConvRot",
58
+ "checkpoint": "krea2_turbo_int8_convrot.safetensors"
59
+ },
60
+ "mxfp8": {
61
+ "label": "MXFP8",
62
+ "checkpoint": "krea2_turbo_mxfp8.safetensors"
63
+ },
64
+ "nvfp4": {
65
+ "label": "NVFP4",
66
+ "checkpoint": "krea2_turbo_nvfp4.safetensors"
67
+ }
68
+ },
69
+ "campaign": {
70
+ "replicates": 2,
71
+ "format_order_seed": 20260712,
72
+ "unscored_warmups_per_format": 1,
73
+ "unscored_repeatability_runs_per_format": 2,
74
+ "capture_steps": true
75
+ },
76
+ "prompts": [
77
+ {
78
+ "id": "p01_portrait",
79
+ "category": "portrait_microdetail",
80
+ "text": "Ultra-realistic close-up editorial portrait of an elderly woman by a north-facing window, natural unretouched skin with visible pores and fine wrinkles, individual silver-gray hairs and eyelashes, wet catchlights in both eyes, a dark indigo wool coat with clearly visible fabric weave, soft neutral background bokeh, restrained color grading, high micro-contrast only on the face."
81
+ },
82
+ {
83
+ "id": "p02_hands_group",
84
+ "category": "anatomy_occlusion_counting",
85
+ "text": "Candid documentary photograph of exactly four adult friends seated around a small round wooden table, each person exchanging a different small object with another person, all eight hands fully visible, natural overlapping arms and fingers, ceramic cups and folded paper on the table, warm side lighting, realistic anatomy, medium-wide composition."
86
+ },
87
+ {
88
+ "id": "p03_package_text",
89
+ "category": "product_typography",
90
+ "expected_text": [
91
+ "NORTHSTAR LAB",
92
+ "SERIES 08",
93
+ "250 ML"
94
+ ],
95
+ "text": "Front-facing studio product photograph of a premium matte white beverage carton on a pale gray seamless background. The package has only three lines of crisp black printed text: ‘NORTHSTAR LAB’, ‘SERIES 08’, and ‘250 ml’. Add a thin cobalt-blue geometric border, a small silver cap, straight edges, subtle paper texture, and a soft contact shadow."
96
+ },
97
+ {
98
+ "id": "p04_storefront_text",
99
+ "category": "environment_typography_lowlight",
100
+ "expected_text": [
101
+ "OPEN 24 HOURS",
102
+ "CAFE LUMEN",
103
+ "7TH STREET"
104
+ ],
105
+ "text": "Rainy nighttime street photograph of a small corner cafe, viewed straight on through wet air and reflections. Three clearly readable signs say ‘OPEN 24 HOURS’, ‘CAFE LUMEN’, and ‘7TH STREET’. Deep blue shadows, warm amber windows, red neon reflections on asphalt, fine rain streaks, realistic perspective and restrained cinematic contrast."
106
+ },
107
+ {
108
+ "id": "p05_architecture",
109
+ "category": "geometry_repetition",
110
+ "text": "Perfectly symmetrical photograph of a contemporary museum interior in strict one-point perspective, long rows of repeating concrete columns, hair-thin black railings, large glass panels, precisely aligned pale stone floor tiles, a distant centered doorway, diffuse skylight, clean straight verticals, fine architectural detail from foreground to background."
111
+ },
112
+ {
113
+ "id": "p06_reflections",
114
+ "category": "specular_transparency",
115
+ "text": "Luxury studio still life of a polished chrome mechanical wristwatch beside a transparent rectangular perfume bottle on glossy black glass, tiny engraved numerals and gear details, controlled white strip reflections, realistic glass refraction and caustics, faint condensation, crisp edges, black background with smooth tonal falloff."
116
+ },
117
+ {
118
+ "id": "p07_foliage_bird",
119
+ "category": "high_frequency_natural",
120
+ "text": "Backlit wildlife photograph of a small kingfisher perched among dense wet foliage, individually resolved blue and orange feathers, leaf veins, tiny droplets, thin crossing branches and spider silk, layered depth separation, soft forest background, natural green color variation, sharp subject without oversharpening."
121
+ },
122
+ {
123
+ "id": "p08_fog_neon",
124
+ "category": "gradients_lowlight",
125
+ "text": "Empty foggy city street before dawn in monochromatic navy and cobalt blue, one distant magenta neon tube glowing through mist, extremely smooth sky and fog gradients, subtle shadow transitions, faint wet pavement reflections, preserved near-black detail, no crushed blacks, no visible banding, quiet minimalist composition."
126
+ },
127
+ {
128
+ "id": "p09_material_macro",
129
+ "category": "material_texture",
130
+ "text": "Museum-style macro material study arranged as five adjacent samples: coarse woven natural linen, brushed stainless steel, cracked celadon ceramic glaze, porous wet black stone, and translucent handmade paper. Raking side light reveals microtexture while every material remains clearly distinct and neutrally colored."
131
+ },
132
+ {
133
+ "id": "p10_vector_gradient",
134
+ "category": "flat_graphics_banding",
135
+ "text": "Minimalist Swiss-style vector poster with a warm ivory background, three perfectly aligned ultramarine circles, hair-thin black geometric construction lines, one large coral rectangle, and a perfectly smooth pale-yellow to orange gradient band. Precise spacing, clean flat fills, razor-sharp edges, no texture and no shadows."
136
+ },
137
+ {
138
+ "id": "p11_retro_anime",
139
+ "category": "line_art_stylized",
140
+ "text": "Single frame from a refined 1980s retro-anime film: a young mechanic adjusting a tiny radio with both hands, expressive face, thin confident ink outlines, intricate patterned jacket, limited teal cream and burgundy palette, cel shading, detailed fingers and radio controls, clean line intersections, subtle analog film grain."
141
+ },
142
+ {
143
+ "id": "p12_watercolor",
144
+ "category": "soft_stylized_gradients",
145
+ "text": "Delicate transparent watercolor landscape on cold-pressed cotton paper, pale dawn sky fading from cool gray-blue to warm peach, mist drifting between layered hills, translucent washes, granulating pigment, soft wet edges, sparse fine tree silhouettes and untouched white paper highlights."
146
+ },
147
+ {
148
+ "id": "p13_food",
149
+ "category": "commercial_complex_scene",
150
+ "text": "High-end commercial food photograph of handmade mushroom ravioli in glossy brown butter sauce, visible steam, tiny sage leaves, grated cheese, crumbs and pepper, a transparent water glass, polished fork and folded linen, warm window light, shallow depth of field, appetizing natural color and detailed highlights."
151
+ },
152
+ {
153
+ "id": "p14_spatial_counts",
154
+ "category": "spatial_reasoning_counting",
155
+ "text": "Surreal gallery installation containing exactly three red cubes beneath a clear glass arch, exactly two blue spheres behind the arch, and exactly one yellow cone in front, all six objects reflected in a shallow sheet of water, centered wide composition, neutral white room, physically consistent shadows and reflections."
156
+ },
157
+ {
158
+ "id": "p15_scientific_poster",
159
+ "category": "diagram_labels",
160
+ "expected_text": [
161
+ "AIR",
162
+ "WATER",
163
+ "ROOTS",
164
+ "LIGHT"
165
+ ],
166
+ "text": "Clean scientific cutaway poster of a compact greenhouse system on a white background, precise pipes, roots, vents and sunlight paths, four simple arrows with clearly readable uppercase labels ‘AIR’, ‘WATER’, ‘ROOTS’, and ‘LIGHT’, restrained green and blue palette, thin technical linework, balanced educational infographic layout."
167
+ }
168
+ ]
169
+ }
reproduction/benchmark/config_extended.example.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schema_version": 2,
3
+ "extends": "config.json",
4
+ "paths": {
5
+ "results_dir": "results/krea2_formats_v2_extended",
6
+ "base_results_dir": "results/krea2_formats_v1"
7
+ },
8
+ "integrity": {
9
+ "expected_sha256": {
10
+ "krea2_turbo_int4_convrot.safetensors": "4c74e8fc00d121aeb4f75cdf066b70d33f6a59e36f143b0bfd53d6467ffc13bd",
11
+ "krea2_turbo-Q8_0.gguf": "1fa2da08a7a708827c2100d0af41c8371d79efd9f7c5490c23ebc65408536490",
12
+ "krea2_turbo-Q4_K_M.gguf": "bc12f539de7a7a6ddf9bac17ec6e5bfecd42c3517190f491131d8464a1034b40"
13
+ }
14
+ },
15
+ "formats": {
16
+ "int4_convrot": {
17
+ "label": "INT4 ConvRot W4A4",
18
+ "checkpoint": "krea2_turbo_int4_convrot.safetensors",
19
+ "loader": "unet",
20
+ "source": {
21
+ "repository": "Winnougan/INT4-Convrot-Comfy-Models",
22
+ "revision": "f01ad8da8c799f1da5ffe92f82e2a75a51dd7447",
23
+ "url": "https://huggingface.co/Winnougan/INT4-Convrot-Comfy-Models/resolve/main/krea2_turbo-int4_convrot.safetensors"
24
+ }
25
+ },
26
+ "gguf_q8_0": {
27
+ "label": "GGUF Q8_0",
28
+ "checkpoint": "krea2_turbo-Q8_0.gguf",
29
+ "loader": "gguf",
30
+ "source": {
31
+ "repository": "vantagewithai/Krea-2-Turbo-GGUF",
32
+ "revision": "3ddc3b8a70209d9da1e327701ab96b15bafc4d28",
33
+ "url": "https://huggingface.co/vantagewithai/Krea-2-Turbo-GGUF/resolve/main/krea2_turbo-Q8_0.gguf"
34
+ }
35
+ },
36
+ "gguf_q4_k_m": {
37
+ "label": "GGUF Q4_K_M",
38
+ "checkpoint": "krea2_turbo-Q4_K_M.gguf",
39
+ "loader": "gguf",
40
+ "source": {
41
+ "repository": "vantagewithai/Krea-2-Turbo-GGUF",
42
+ "revision": "6658a30c67045ec72799333eb42f3bf10b3d107a",
43
+ "url": "https://huggingface.co/vantagewithai/Krea-2-Turbo-GGUF/resolve/main/krea2_turbo-Q4_K_M.gguf"
44
+ }
45
+ }
46
+ },
47
+ "campaign": {
48
+ "active_formats": [
49
+ "int4_convrot",
50
+ "gguf_q8_0",
51
+ "gguf_q4_k_m"
52
+ ],
53
+ "bridge_formats": [
54
+ "bf16",
55
+ "int8_convrot"
56
+ ],
57
+ "bridge_repeats": 5
58
+ }
59
+ }
reproduction/benchmark/krea_benchmark.py CHANGED
@@ -64,6 +64,32 @@ def sha256_json(value: Any) -> str:
64
  return hashlib.sha256(raw).hexdigest()
65
 
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  def run_command(command: list[str], cwd: Path | None = None, timeout: int = 60) -> dict[str, Any]:
68
  started = time.time()
69
  completed = subprocess.run(command, cwd=cwd, capture_output=True, text=True, encoding="utf-8", errors="replace", timeout=timeout)
@@ -77,19 +103,34 @@ def run_command(command: list[str], cwd: Path | None = None, timeout: int = 60)
77
 
78
 
79
  def load_configuration(path: Path) -> dict[str, Any]:
80
- config = json.loads(path.read_text(encoding="utf-8"))
81
- if config.get("schema_version") != 1:
82
  raise ValueError(f"Unsupported configuration schema: {config.get('schema_version')}")
83
  base = path.resolve().parent
84
  resolved = dict(config)
85
  resolved["_config_path"] = str(path.resolve())
86
- resolved["_config_sha256"] = sha256_file(path)
 
87
  resolved["_portable_root"] = str((base / config["paths"]["portable_root"]).resolve())
88
  resolved["_models_dir"] = str((base / config["paths"]["models_dir"]).resolve())
89
  resolved["_results_dir"] = str((base / config["paths"]["results_dir"]).resolve())
 
 
90
  return resolved
91
 
92
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  def benchmark_seed(benchmark_id: str, prompt_id: str, replicate: int) -> int:
94
  value = f"{benchmark_id}|{prompt_id}|{replicate}".encode("utf-8")
95
  return int.from_bytes(hashlib.sha256(value).digest()[:8], "big") & 0x7FFFFFFFFFFFFFFF
@@ -326,7 +367,17 @@ def build_workflow(config: dict[str, Any], format_id: str, prompt: dict[str, str
326
  workflow = json.loads(API_WORKFLOW_PATH.read_text(encoding="utf-8"))
327
  controls = config["controls"]
328
  seed = benchmark_seed(config["benchmark_id"], prompt["id"], replicate)
329
- workflow["1"]["inputs"].update({"unet_name": config["formats"][format_id]["checkpoint"], "weight_dtype": "default"})
 
 
 
 
 
 
 
 
 
 
330
  workflow["2"]["inputs"].update(
331
  {
332
  "clip_name": controls["text_encoder"],
@@ -385,6 +436,31 @@ def inspect_safetensors(path: Path) -> dict[str, Any]:
385
  }
386
 
387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any]:
389
  import importlib.metadata
390
 
@@ -402,8 +478,15 @@ def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any
402
  "path": str(path),
403
  "bytes": path.stat().st_size,
404
  "gib": path.stat().st_size / (1024 ** 3),
405
- "safetensors": inspect_safetensors(path),
406
  }
 
 
 
 
 
 
 
407
  if not skip_hashes:
408
  print(f"Hashing {name}...", flush=True)
409
  entry["sha256"] = sha256_file(path)
@@ -426,7 +509,7 @@ def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any
426
  [
427
  str(python),
428
  "-c",
429
- "import json,torch,importlib.metadata as m; print(json.dumps({'python':__import__('sys').version,'torch':torch.__version__,'cuda':torch.version.cuda,'device':torch.cuda.get_device_name(0),'capability':torch.cuda.get_device_capability(0),'comfy_kitchen':m.version('comfy-kitchen'),'transformers':m.version('transformers'),'numpy':m.version('numpy')}))",
430
  ],
431
  timeout=60,
432
  )
@@ -437,6 +520,15 @@ def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any
437
  name = distribution.metadata.get("Name")
438
  if name:
439
  vendor_versions[name] = distribution.version
 
 
 
 
 
 
 
 
 
440
  return {
441
  "benchmark_id": config["benchmark_id"],
442
  "created_unix": time.time(),
@@ -447,12 +539,84 @@ def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any
447
  "comfy_git": git,
448
  "gpu": gpu,
449
  "runtime": runtime,
 
 
450
  "analysis_vendor_versions": dict(sorted(vendor_versions.items(), key=lambda item: item[0].lower())),
451
  "disk": {"total_bytes": disk.total, "used_bytes": disk.used, "free_bytes": disk.free},
452
  "models": models,
453
  }
454
 
455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
456
  def completed_capture(results_dir: Path, run_id: str) -> dict[str, Any] | None:
457
  directory = results_dir / "captures" / run_id
458
  metadata_path = directory / "metadata.json"
@@ -528,7 +692,7 @@ def write_run_matrix(config: dict[str, Any], results_dir: Path) -> list[dict[str
528
 
529
  def run_preflight(config: dict[str, Any], results_dir: Path, capture_steps: bool) -> None:
530
  prompt = config["prompts"][0]
531
- for format_id in config["formats"]:
532
  print(f"Preflight: {format_id}", flush=True)
533
  server = ComfyServer(config, f"preflight_{format_id}", results_dir)
534
  try:
@@ -561,9 +725,36 @@ def run_campaign(config: dict[str, Any], results_dir: Path, capture_steps: bool)
561
  preflight_path = results_dir / "preflight.json"
562
  if not preflight_path.is_file() or not json.loads(preflight_path.read_text(encoding="utf-8")).get("passed"):
563
  raise RuntimeError("Preflight must pass before the scored generation campaign")
564
- format_order = list(config["formats"])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  random.Random(int(config["campaign"]["format_order_seed"])).shuffle(format_order)
566
- atomic_json(results_dir / "format_order.json", format_order)
567
  first_prompt = config["prompts"][0]
568
  for format_id in format_order:
569
  print(f"Campaign format: {format_id}", flush=True)
@@ -613,7 +804,15 @@ def run_campaign(config: dict[str, Any], results_dir: Path, capture_steps: bool)
613
  missing.append(run_id)
614
  if missing:
615
  raise RuntimeError(f"Campaign incomplete; missing {len(missing)} captures: {missing[:10]}")
616
- atomic_json(results_dir / "campaign_complete.json", {"passed": True, "completed_unix": time.time(), "scored_runs": 150})
 
 
 
 
 
 
 
 
617
 
618
 
619
  def ensure_results(config: dict[str, Any], skip_hashes: bool) -> Path:
@@ -627,6 +826,7 @@ def ensure_results(config: dict[str, Any], skip_hashes: bool) -> Path:
627
  else:
628
  atomic_json(manifest_path, collect_manifest(config, skip_hashes=skip_hashes))
629
  write_run_matrix(config, results_dir)
 
630
  return results_dir
631
 
632
 
 
64
  return hashlib.sha256(raw).hexdigest()
65
 
66
 
67
+ def deep_merge(base: dict[str, Any], overlay: dict[str, Any]) -> dict[str, Any]:
68
+ merged = dict(base)
69
+ for key, value in overlay.items():
70
+ if key == "extends":
71
+ continue
72
+ if isinstance(value, dict) and isinstance(merged.get(key), dict):
73
+ merged[key] = deep_merge(merged[key], value)
74
+ else:
75
+ merged[key] = value
76
+ return merged
77
+
78
+
79
+ def read_configuration(path: Path, seen: set[Path] | None = None) -> tuple[dict[str, Any], list[Path]]:
80
+ resolved = path.resolve()
81
+ seen = set() if seen is None else seen
82
+ if resolved in seen:
83
+ raise ValueError(f"Configuration inheritance cycle: {resolved}")
84
+ seen.add(resolved)
85
+ raw = json.loads(resolved.read_text(encoding="utf-8"))
86
+ parent_name = raw.get("extends")
87
+ if not parent_name:
88
+ return raw, [resolved]
89
+ parent, sources = read_configuration((resolved.parent / parent_name).resolve(), seen)
90
+ return deep_merge(parent, raw), sources + [resolved]
91
+
92
+
93
  def run_command(command: list[str], cwd: Path | None = None, timeout: int = 60) -> dict[str, Any]:
94
  started = time.time()
95
  completed = subprocess.run(command, cwd=cwd, capture_output=True, text=True, encoding="utf-8", errors="replace", timeout=timeout)
 
103
 
104
 
105
  def load_configuration(path: Path) -> dict[str, Any]:
106
+ config, sources = read_configuration(path)
107
+ if config.get("schema_version") not in {1, 2}:
108
  raise ValueError(f"Unsupported configuration schema: {config.get('schema_version')}")
109
  base = path.resolve().parent
110
  resolved = dict(config)
111
  resolved["_config_path"] = str(path.resolve())
112
+ resolved["_config_sources"] = [str(source) for source in sources]
113
+ resolved["_config_sha256"] = sha256_file(path) if len(sources) == 1 else sha256_json(config)
114
  resolved["_portable_root"] = str((base / config["paths"]["portable_root"]).resolve())
115
  resolved["_models_dir"] = str((base / config["paths"]["models_dir"]).resolve())
116
  resolved["_results_dir"] = str((base / config["paths"]["results_dir"]).resolve())
117
+ if config["paths"].get("base_results_dir"):
118
+ resolved["_base_results_dir"] = str((base / config["paths"]["base_results_dir"]).resolve())
119
  return resolved
120
 
121
 
122
+ def active_formats(config: dict[str, Any]) -> list[str]:
123
+ selected = list(config["campaign"].get("active_formats", config["formats"]))
124
+ unknown = [format_id for format_id in selected if format_id not in config["formats"]]
125
+ if unknown:
126
+ raise ValueError(f"Unknown active formats: {unknown}")
127
+ return selected
128
+
129
+
130
+ def expected_scored_runs(config: dict[str, Any]) -> int:
131
+ return len(config["prompts"]) * int(config["campaign"]["replicates"]) * len(config["formats"])
132
+
133
+
134
  def benchmark_seed(benchmark_id: str, prompt_id: str, replicate: int) -> int:
135
  value = f"{benchmark_id}|{prompt_id}|{replicate}".encode("utf-8")
136
  return int.from_bytes(hashlib.sha256(value).digest()[:8], "big") & 0x7FFFFFFFFFFFFFFF
 
367
  workflow = json.loads(API_WORKFLOW_PATH.read_text(encoding="utf-8"))
368
  controls = config["controls"]
369
  seed = benchmark_seed(config["benchmark_id"], prompt["id"], replicate)
370
+ format_config = config["formats"][format_id]
371
+ if format_config.get("loader", "unet") == "gguf":
372
+ workflow["1"] = {
373
+ "class_type": "UnetLoaderGGUF",
374
+ "inputs": {"unet_name": format_config["checkpoint"]},
375
+ }
376
+ else:
377
+ workflow["1"] = {
378
+ "class_type": "UNETLoader",
379
+ "inputs": {"unet_name": format_config["checkpoint"], "weight_dtype": "default"},
380
+ }
381
  workflow["2"]["inputs"].update(
382
  {
383
  "clip_name": controls["text_encoder"],
 
436
  }
437
 
438
 
439
+ def inspect_gguf(path: Path) -> dict[str, Any]:
440
+ import gguf
441
+
442
+ reader = gguf.GGUFReader(str(path), mode="r")
443
+ qtypes = Counter(getattr(tensor.tensor_type, "name", str(tensor.tensor_type)) for tensor in reader.tensors)
444
+ metadata = {}
445
+ for key in ("general.architecture", "general.name", "general.description", "general.file_type", "general.quantization_version"):
446
+ field = reader.get_field(key)
447
+ if field is None:
448
+ continue
449
+ try:
450
+ part = field.parts[field.data[-1]]
451
+ metadata[key] = part.decode("utf-8") if isinstance(part, (bytes, bytearray)) else part.item() if hasattr(part, "item") else str(part)
452
+ except Exception:
453
+ metadata[key] = "unreadable"
454
+ return {
455
+ "tensor_count": len(reader.tensors),
456
+ "quantization_type_counts": dict(sorted(qtypes.items())),
457
+ "metadata": metadata,
458
+ "metadata_field_count": len(reader.fields),
459
+ "original_shape_fields": sum(key.startswith("comfy.gguf.orig_shape.") for key in reader.fields),
460
+ "first_tensor_keys": [tensor.name for tensor in reader.tensors[:10]],
461
+ }
462
+
463
+
464
  def collect_manifest(config: dict[str, Any], skip_hashes: bool) -> dict[str, Any]:
465
  import importlib.metadata
466
 
 
478
  "path": str(path),
479
  "bytes": path.stat().st_size,
480
  "gib": path.stat().st_size / (1024 ** 3),
481
+ "file_format": path.suffix.lower().lstrip("."),
482
  }
483
+ if path.suffix.lower() == ".gguf":
484
+ entry["gguf"] = inspect_gguf(path)
485
+ else:
486
+ entry["safetensors"] = inspect_safetensors(path)
487
+ matching_formats = [item for item in config["formats"].values() if item["checkpoint"] == name]
488
+ if matching_formats and matching_formats[0].get("source"):
489
+ entry["source"] = matching_formats[0]["source"]
490
  if not skip_hashes:
491
  print(f"Hashing {name}...", flush=True)
492
  entry["sha256"] = sha256_file(path)
 
509
  [
510
  str(python),
511
  "-c",
512
+ "import json,torch,importlib.metadata as m,importlib.util as u; print(json.dumps({'python':__import__('sys').version,'torch':torch.__version__,'cuda':torch.version.cuda,'device':torch.cuda.get_device_name(0),'capability':torch.cuda.get_device_capability(0),'comfy_kitchen':m.version('comfy-kitchen'),'gguf':m.version('gguf') if u.find_spec('gguf') else None,'transformers':m.version('transformers'),'numpy':m.version('numpy')}))",
513
  ],
514
  timeout=60,
515
  )
 
520
  name = distribution.metadata.get("Name")
521
  if name:
522
  vendor_versions[name] = distribution.version
523
+ gguf_node_dir = comfy / "custom_nodes" / "ComfyUI-GGUF"
524
+ gguf_node = run_command(["git", "-C", str(gguf_node_dir), "rev-parse", "HEAD"], timeout=30) if gguf_node_dir.is_dir() else None
525
+ lineage = None
526
+ if config.get("_base_results_dir"):
527
+ base_manifest = Path(config["_base_results_dir"]) / "manifest.json"
528
+ lineage = {
529
+ "base_results_dir": config["_base_results_dir"],
530
+ "base_manifest_sha256": sha256_file(base_manifest) if base_manifest.is_file() else None,
531
+ }
532
  return {
533
  "benchmark_id": config["benchmark_id"],
534
  "created_unix": time.time(),
 
539
  "comfy_git": git,
540
  "gpu": gpu,
541
  "runtime": runtime,
542
+ "comfyui_gguf": gguf_node,
543
+ "lineage": lineage,
544
  "analysis_vendor_versions": dict(sorted(vendor_versions.items(), key=lambda item: item[0].lower())),
545
  "disk": {"total_bytes": disk.total, "used_bytes": disk.used, "free_bytes": disk.free},
546
  "models": models,
547
  }
548
 
549
 
550
+ def import_base_results(config: dict[str, Any], results_dir: Path) -> None:
551
+ if not config.get("_base_results_dir"):
552
+ return
553
+ base_dir = Path(config["_base_results_dir"])
554
+ marker = results_dir / "extension_import.json"
555
+ base_manifest_path = base_dir / "manifest.json"
556
+ if not base_manifest_path.is_file():
557
+ raise FileNotFoundError(base_manifest_path)
558
+ base_manifest_hash = sha256_file(base_manifest_path)
559
+ if marker.is_file():
560
+ recorded = json.loads(marker.read_text(encoding="utf-8"))
561
+ if recorded.get("base_manifest_sha256") != base_manifest_hash:
562
+ raise RuntimeError("The base benchmark manifest changed after the extension import")
563
+ return
564
+ base_manifest = json.loads(base_manifest_path.read_text(encoding="utf-8"))
565
+ base_config = base_manifest["configuration"]
566
+ for key in ("benchmark_id", "controls", "prompts"):
567
+ if base_config.get(key) != config.get(key):
568
+ raise RuntimeError(f"Cannot extend results: base {key} differs from the extension configuration")
569
+ imported_formats = list(base_config["formats"])
570
+ if any(format_id not in config["formats"] for format_id in imported_formats):
571
+ raise RuntimeError("The extension configuration omits a base format")
572
+
573
+ linked_files = 0
574
+ source_captures = base_dir / "captures"
575
+ for source in source_captures.rglob("*"):
576
+ if not source.is_file():
577
+ continue
578
+ relative = source.relative_to(source_captures)
579
+ destination = results_dir / "captures" / relative
580
+ destination.parent.mkdir(parents=True, exist_ok=True)
581
+ if destination.exists():
582
+ if destination.stat().st_size != source.stat().st_size:
583
+ raise RuntimeError(f"Imported capture size mismatch: {destination}")
584
+ continue
585
+ os.link(source, destination)
586
+ linked_files += 1
587
+
588
+ copied_files = 0
589
+ for directory_name in ("telemetry", "advanced_metric_cache", "validation"):
590
+ source_root = base_dir / directory_name
591
+ if not source_root.is_dir():
592
+ continue
593
+ for source in source_root.rglob("*"):
594
+ if not source.is_file():
595
+ continue
596
+ destination = results_dir / directory_name / source.relative_to(source_root)
597
+ destination.parent.mkdir(parents=True, exist_ok=True)
598
+ if not destination.exists():
599
+ shutil.copy2(source, destination)
600
+ copied_files += 1
601
+ source_runs = base_dir / "runs.jsonl"
602
+ destination_runs = results_dir / "runs.jsonl"
603
+ if source_runs.is_file() and not destination_runs.exists():
604
+ shutil.copy2(source_runs, destination_runs)
605
+ copied_files += 1
606
+ atomic_json(
607
+ marker,
608
+ {
609
+ "complete": True,
610
+ "base_results_dir": str(base_dir),
611
+ "base_manifest_sha256": base_manifest_hash,
612
+ "imported_formats": imported_formats,
613
+ "hardlinked_capture_files": linked_files,
614
+ "copied_support_files": copied_files,
615
+ "completed_unix": time.time(),
616
+ },
617
+ )
618
+
619
+
620
  def completed_capture(results_dir: Path, run_id: str) -> dict[str, Any] | None:
621
  directory = results_dir / "captures" / run_id
622
  metadata_path = directory / "metadata.json"
 
692
 
693
  def run_preflight(config: dict[str, Any], results_dir: Path, capture_steps: bool) -> None:
694
  prompt = config["prompts"][0]
695
+ for format_id in active_formats(config):
696
  print(f"Preflight: {format_id}", flush=True)
697
  server = ComfyServer(config, f"preflight_{format_id}", results_dir)
698
  try:
 
725
  preflight_path = results_dir / "preflight.json"
726
  if not preflight_path.is_file() or not json.loads(preflight_path.read_text(encoding="utf-8")).get("passed"):
727
  raise RuntimeError("Preflight must pass before the scored generation campaign")
728
+ bridge_formats = list(config["campaign"].get("bridge_formats", []))
729
+ bridge_repeats = int(config["campaign"].get("bridge_repeats", 0))
730
+ bridge_marker = results_dir / "bridge_complete.json"
731
+ if bridge_formats and bridge_repeats and not bridge_marker.is_file():
732
+ first_prompt = config["prompts"][0]
733
+ bridge_rows = []
734
+ for format_id in bridge_formats:
735
+ server = ComfyServer(config, f"bridge_{format_id}", results_dir)
736
+ try:
737
+ server.start()
738
+ for repeat in range(bridge_repeats):
739
+ record = run_one(
740
+ server,
741
+ config,
742
+ format_id,
743
+ first_prompt,
744
+ 0,
745
+ f"bridge__{format_id}__{repeat}",
746
+ scored=False,
747
+ capture_steps=False,
748
+ phase="bridge",
749
+ )
750
+ bridge_rows.append({"format_id": format_id, "repeat": repeat, "sampling_seconds": record["metadata"]["sampling"]["duration_seconds"]})
751
+ finally:
752
+ server.stop()
753
+ atomic_json(bridge_marker, {"complete": True, "rows": bridge_rows, "completed_unix": time.time()})
754
+
755
+ format_order = active_formats(config)
756
  random.Random(int(config["campaign"]["format_order_seed"])).shuffle(format_order)
757
+ atomic_json(results_dir / "format_order.json", {"active_extension_order": format_order})
758
  first_prompt = config["prompts"][0]
759
  for format_id in format_order:
760
  print(f"Campaign format: {format_id}", flush=True)
 
804
  missing.append(run_id)
805
  if missing:
806
  raise RuntimeError(f"Campaign incomplete; missing {len(missing)} captures: {missing[:10]}")
807
+ atomic_json(
808
+ results_dir / "campaign_complete.json",
809
+ {
810
+ "passed": True,
811
+ "completed_unix": time.time(),
812
+ "scored_runs": expected_scored_runs(config),
813
+ "new_scored_runs": len(config["prompts"]) * int(config["campaign"]["replicates"]) * len(active_formats(config)),
814
+ },
815
+ )
816
 
817
 
818
  def ensure_results(config: dict[str, Any], skip_hashes: bool) -> Path:
 
826
  else:
827
  atomic_json(manifest_path, collect_manifest(config, skip_hashes=skip_hashes))
828
  write_run_matrix(config, results_dir)
829
+ import_base_results(config, results_dir)
830
  return results_dir
831
 
832
 
reproduction/benchmark/performance_analysis.py CHANGED
@@ -12,6 +12,10 @@ import numpy as np
12
  import analysis_core
13
 
14
 
 
 
 
 
15
  def number(value: str) -> float:
16
  value = value.strip()
17
  return float(value) if value not in {"", "N/A", "[N/A]"} else float("nan")
@@ -110,8 +114,9 @@ def analyze(config: dict[str, Any], results_dir: Path) -> None:
110
  **system_summary,
111
  }
112
  )
113
- if len(output) != 150:
114
- raise RuntimeError(f"Expected 150 scored performance records, found {len(output)}")
 
115
  analysis_core.write_csv(results_dir / "metrics" / "performance_runs.csv", output)
116
  summary = []
117
  numeric = [key for key, value in output[0].items() if isinstance(value, (int, float)) and key != "replicate"]
@@ -135,3 +140,41 @@ def analyze(config: dict[str, Any], results_dir: Path) -> None:
135
  }
136
  )
137
  analysis_core.write_csv(results_dir / "metrics" / "performance_summary.csv", summary)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  import analysis_core
13
 
14
 
15
+ def expected_scored_runs(config: dict[str, Any]) -> int:
16
+ return len(config["prompts"]) * int(config["campaign"]["replicates"]) * len(config["formats"])
17
+
18
+
19
  def number(value: str) -> float:
20
  value = value.strip()
21
  return float(value) if value not in {"", "N/A", "[N/A]"} else float("nan")
 
114
  **system_summary,
115
  }
116
  )
117
+ expected = expected_scored_runs(config)
118
+ if len(output) != expected:
119
+ raise RuntimeError(f"Expected {expected} scored performance records, found {len(output)}")
120
  analysis_core.write_csv(results_dir / "metrics" / "performance_runs.csv", output)
121
  summary = []
122
  numeric = [key for key, value in output[0].items() if isinstance(value, (int, float)) and key != "replicate"]
 
140
  }
141
  )
142
  analysis_core.write_csv(results_dir / "metrics" / "performance_summary.csv", summary)
143
+
144
+ bridge_marker = results_dir / "bridge_complete.json"
145
+ base_results_dir = Path(config.get("_base_results_dir", "")) if config.get("_base_results_dir") else None
146
+ if bridge_marker.is_file() and base_results_dir is not None:
147
+ bridge = json.loads(bridge_marker.read_text(encoding="utf-8"))["rows"]
148
+ base_summary_path = base_results_dir / "metrics" / "performance_summary.csv"
149
+ with base_summary_path.open("r", encoding="utf-8", newline="") as stream:
150
+ base_summary = list(csv.DictReader(stream))
151
+ bridge_rows = []
152
+ for format_id in config["campaign"].get("bridge_formats", []):
153
+ current = np.array([float(row["sampling_seconds"]) for row in bridge if row["format_id"] == format_id], dtype=np.float64)
154
+ base_row = next(row for row in base_summary if row["format_id"] == format_id and row["metric"] == "sampling_seconds")
155
+ base_median = float(base_row["median"])
156
+ current_median = float(np.median(current))
157
+ drift = current_median / base_median - 1.0
158
+ bridge_rows.append(
159
+ {
160
+ "format_id": format_id,
161
+ "base_session_median_seconds": base_median,
162
+ "extension_session_median_seconds": current_median,
163
+ "relative_drift": drift,
164
+ "absolute_drift_percent": abs(drift) * 100.0,
165
+ "within_5_percent": abs(drift) < 0.05,
166
+ "extension_repeats": len(current),
167
+ }
168
+ )
169
+ analysis_core.write_csv(results_dir / "metrics" / "performance_bridge.csv", bridge_rows)
170
+ (results_dir / "metrics" / "performance_bridge.json").write_text(
171
+ json.dumps(
172
+ {
173
+ "direct_cross_session_comparison_allowed": all(bool(row["within_5_percent"]) for row in bridge_rows),
174
+ "threshold_percent": 5.0,
175
+ "rows": bridge_rows,
176
+ },
177
+ indent=2,
178
+ ),
179
+ encoding="utf-8",
180
+ )
reproduction/benchmark/report_generator.py CHANGED
@@ -38,6 +38,8 @@ def markdown_table(headers: list[str], rows: list[list[Any]]) -> str:
38
 
39
 
40
  def generate(config: dict[str, Any], results_dir: Path) -> None:
 
 
41
  required = [
42
  results_dir / "campaign_complete.json",
43
  results_dir / "metrics" / "weight_summary.json",
@@ -60,6 +62,10 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
60
  format_ids = list(config["formats"])
61
  quantized = [format_id for format_id in format_ids if format_id != "bf16"]
62
  labels = {format_id: config["formats"][format_id]["label"] for format_id in format_ids}
 
 
 
 
63
 
64
  lpips_ranking = sorted(quantized, key=lambda format_id: value(advanced, format_id, "lpips_alex"))
65
  best_quantized = lpips_ranking[0]
@@ -87,6 +93,8 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
87
  f"- **Primary-endpoint separation from the next quantized format:** {'statistically separated after Holm correction' if separated else 'not statistically separated at α=0.05; treat the numerical ordering as a near-tie'}.",
88
  f"- **Smallest checkpoint:** {labels[smallest]}.",
89
  "- **Ada performance warning:** MXFP8 and NVFP4 use fallback/dequantized matrix multiplication on this SM 8.9 GPU; their recorded speed must not be projected to Blackwell hardware.",
 
 
90
  "- Automated results establish original-model fidelity, prompt alignment, and measurable artifact behavior. They do not establish universal human aesthetic preference.",
91
  "",
92
  "### Decision table",
@@ -109,6 +117,28 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
109
  fmt(value(performance, format_id, "gpu_energy_joules"), 1),
110
  ]
111
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  lines.extend(
113
  [
114
  markdown_table(
@@ -118,6 +148,7 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
118
  "",
119
  "The decision table is multidimensional by design. No weighted composite score is used.",
120
  "",
 
121
  "## Test system and immutable controls",
122
  "",
123
  f"- GPU: `{gpu}`",
@@ -128,7 +159,7 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
128
  f"- Sampler: {config['controls']['sampler_name']}; scheduler: {config['controls']['scheduler']}; steps: {config['controls']['steps']}; CFG: {config['controls']['cfg']}; denoise: {config['controls']['denoise']}",
129
  f"- Shared text encoder: `{config['controls']['text_encoder']}`; shared VAE: `{config['controls']['vae']}`",
130
  "- Negative conditioning is a zeroed copy of positive conditioning. Prompt rewriting, LoRAs, previews, upscaling, and post-processing are disabled.",
131
- "- Each prompt/seed pair uses the same initial-noise tensor SHA-256 across all five formats.",
132
  "",
133
  "## Checkpoint structure",
134
  "",
@@ -138,21 +169,31 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
138
  for format_id in format_ids:
139
  checkpoint = config["formats"][format_id]["checkpoint"]
140
  model = manifest["models"][checkpoint]
141
- safetensors = model["safetensors"]
 
 
 
 
 
 
 
 
 
142
  checkpoint_rows.append(
143
  [
144
  labels[format_id],
145
  checkpoint,
146
  str(model.get("sha256", "hash skipped")),
147
  fmt(model["gib"], 3),
148
- safetensors["tensor_count"],
149
- "<br>".join(f"{key}: {count}" for key, count in safetensors["dtype_tensor_counts"].items()),
150
- ", ".join(safetensors["metadata_keys"]) or "none",
 
151
  ]
152
  )
153
  lines.extend(
154
  [
155
- markdown_table(["Format", "File", "SHA-256", "GiB", "Tensors", "Stored dtypes", "Metadata"], checkpoint_rows),
156
  "",
157
  "### What the formats actually do",
158
  "",
@@ -161,6 +202,9 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
161
  "- **INT8 ConvRot:** 224 row-wise INT8 linear weights with group-size-256 online/offline Hadamard rotation. Sensitive input/output, conditioning, and text-fusion components remain higher precision.",
162
  "- **MXFP8:** E4M3 values with E8M0 power-of-two block scales over 32-element blocks. It marks 256 linear layers; native fast multiplication requires SM 10.0 in this runtime.",
163
  "- **NVFP4:** packed 4-bit floating-point values with per-tensor and 16-element block scales. It marks 256 linear layers; native fast multiplication likewise requires SM 10.0.",
 
 
 
164
  "",
165
  "## Weight reconstruction fidelity",
166
  "",
@@ -214,7 +258,7 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
214
  [
215
  markdown_table(["Format", "LPIPS Alex↓", "LPIPS VGG↓", "DISTS↓", "MS-SSIM↑", "DINO cosine↑", "SSIM RGB↑", "ΔE2000↓"], image_rows),
216
  "",
217
- "Statistics use 50,000 prompt-cluster BCa bootstrap resamples. Quantized-format pairwise tests use all 2^15 exact prompt-level sign permutations with Holm correction across the six pairs per metric.",
218
  "",
219
  "## Prompt adherence and no-reference quality",
220
  "",
@@ -304,11 +348,17 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
304
  markdown_table(["Format", "End-to-end s", "Sampling s", "VAE s", "Peak VRAM MiB", "Peak process RAM GiB", "Mean W", "Energy J", "Peak °C"], perf_rows),
305
  "",
306
  "Latency summaries use 30 scored runs per format after three repeatability/warmup executions. GPU and system telemetry were sampled every 100 ms. Model-load and warmup records remain available in `runs.jsonl` and telemetry files but are excluded from steady-state medians.",
 
 
 
 
 
 
307
  "",
308
  "## Comparison sheets",
309
  "",
310
  "- [Master contact sheet](comparison_sheets/contact_sheet_replicate0.png)",
311
- "- [`comparison_sheets/full/`](comparison_sheets/full/) — labeled five-format images",
312
  "- [`comparison_sheets/details/`](comparison_sheets/details/) — three automatically selected high-detail crops per pair",
313
  "- [`comparison_sheets/differences/`](comparison_sheets/differences/) — BF16-relative absolute-difference maps with a shared per-pair scale",
314
  "",
@@ -327,12 +377,13 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
327
  "## Reproduction",
328
  "",
329
  "```powershell",
330
- ".\\run_benchmark.ps1 preflight",
331
- ".\\run_benchmark.ps1 weights",
332
- ".\\run_benchmark.ps1 generate",
333
- ".\\run_benchmark.ps1 analyze",
334
- ".\\run_benchmark.ps1 sheets",
335
- ".\\run_benchmark.ps1 report",
 
336
  "```",
337
  "",
338
  "The runner resumes only complete captures and rejects an existing result directory when the configuration hash differs. It never silently retries with different image settings.",
@@ -344,12 +395,16 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
344
  "2. BF16 is the original-checkpoint fidelity reference, not an external ground truth for semantic correctness.",
345
  "3. Pixel metrics become conservative when quantization changes composition rather than producing a local defect.",
346
  "4. No human preference test was requested; conclusions about aesthetics remain outside scope.",
347
- "5. FP8 and INT8 have accelerated Ada execution in this runtime. MXFP8 and NVFP4 do not, so only their storage and quality results are portable from this system.",
 
348
  "",
349
  "## Primary sources",
350
  "",
351
  "- [Krea 2 Turbo model card and official inference settings](https://huggingface.co/krea/Krea-2-Turbo)",
352
  "- [Comfy-Org Krea 2 repackaged checkpoints](https://huggingface.co/Comfy-Org/Krea-2)",
 
 
 
353
  "- [LPIPS paper](https://arxiv.org/abs/1801.03924)",
354
  "- [DISTS paper](https://arxiv.org/abs/2004.07728)",
355
  "- [DINOv2 paper](https://arxiv.org/abs/2304.07193)",
@@ -361,7 +416,7 @@ def generate(config: dict[str, Any], results_dir: Path) -> None:
361
  "## Raw artifact index",
362
  "",
363
  "- `manifest.json`: environment, dependency versions, checkpoint metadata, and hashes",
364
- "- `run_matrix.json`: all 150 preregistered scored runs",
365
  "- `runs.jsonl`: execution ledger including failures and timings",
366
  "- `captures/`: float decoded images, final latents, trajectories, PNGs, and per-run metadata",
367
  "- `metrics/`: all raw, summary, and inferential CSV/JSON tables",
 
38
 
39
 
40
  def generate(config: dict[str, Any], results_dir: Path) -> None:
41
+ config_name = Path(config["_config_path"]).name
42
+ config_arg = f" -Config .\\{config_name}" if config_name != "config.json" else ""
43
  required = [
44
  results_dir / "campaign_complete.json",
45
  results_dir / "metrics" / "weight_summary.json",
 
62
  format_ids = list(config["formats"])
63
  quantized = [format_id for format_id in format_ids if format_id != "bf16"]
64
  labels = {format_id: config["formats"][format_id]["label"] for format_id in format_ids}
65
+ scored_runs = len(config["prompts"]) * int(config["campaign"]["replicates"]) * len(format_ids)
66
+ pairwise_comparisons = len(quantized) * (len(quantized) - 1) // 2
67
+ bridge_path = results_dir / "metrics" / "performance_bridge.json"
68
+ bridge = json.loads(bridge_path.read_text(encoding="utf-8")) if bridge_path.is_file() else None
69
 
70
  lpips_ranking = sorted(quantized, key=lambda format_id: value(advanced, format_id, "lpips_alex"))
71
  best_quantized = lpips_ranking[0]
 
93
  f"- **Primary-endpoint separation from the next quantized format:** {'statistically separated after Holm correction' if separated else 'not statistically separated at α=0.05; treat the numerical ordering as a near-tie'}.",
94
  f"- **Smallest checkpoint:** {labels[smallest]}.",
95
  "- **Ada performance warning:** MXFP8 and NVFP4 use fallback/dequantized matrix multiplication on this SM 8.9 GPU; their recorded speed must not be projected to Blackwell hardware.",
96
+ "- **INT4 execution note:** ConvRot W4A4 is eligible for the native SM 8.x signed-INT4 MMA path in this comfy-kitchen runtime.",
97
+ "- **GGUF execution note:** Q8_0 and Q4_K_M use the pinned ComfyUI-GGUF loader and its on-demand dequantized matrix-multiplication path, not ComfyUI's native safetensors quantization layouts.",
98
  "- Automated results establish original-model fidelity, prompt alignment, and measurable artifact behavior. They do not establish universal human aesthetic preference.",
99
  "",
100
  "### Decision table",
 
117
  fmt(value(performance, format_id, "gpu_energy_joules"), 1),
118
  ]
119
  )
120
+ extension_section: list[str] = []
121
+ extension_ids = list(config.get("campaign", {}).get("active_formats", []))
122
+ if set(extension_ids) == {"int4_convrot", "gguf_q8_0", "gguf_q4_k_m"}:
123
+ int4_size = manifest["models"][config["formats"]["int4_convrot"]["checkpoint"]]["gib"]
124
+ q4_size = manifest["models"][config["formats"]["gguf_q4_k_m"]["checkpoint"]]["gib"]
125
+ q8_size = manifest["models"][config["formats"]["gguf_q8_0"]["checkpoint"]]["gib"]
126
+ int4_time = value(performance, "int4_convrot", "sampling_seconds")
127
+ q4_time = value(performance, "gguf_q4_k_m", "sampling_seconds")
128
+ q8_time = value(performance, "gguf_q8_0", "sampling_seconds")
129
+ int4_lpips = value(advanced, "int4_convrot", "lpips_alex")
130
+ q4_lpips = value(advanced, "gguf_q4_k_m", "lpips_alex")
131
+ q8_lpips = value(advanced, "gguf_q8_0", "lpips_alex")
132
+ extension_section = [
133
+ "## Three-format extension conclusion",
134
+ "",
135
+ f"- **Best fidelity among the three additions: GGUF Q8_0.** It records LPIPS {q8_lpips:.6f}, DISTS {value(advanced, 'gguf_q8_0', 'dists'):.6f}, DINO cosine {value(advanced, 'gguf_q8_0', 'dinov2_large_image_cosine_to_bf16'):.6f}, and {weight['gguf_q8_0']['snr_db']:.2f} dB reconstructed-weight SNR. It is also effectively tied with INT8 ConvRot on the primary endpoint (Holm-adjusted permutation p={float(relevant_pair['permutation_p_holm']):.4f}), while leading INT8 on DISTS, DINO cosine, and weight SNR.",
136
+ f"- **Best minimum-size/speed option among the three: INT4 ConvRot W4A4.** It is {int4_size:.3f} GiB and sampled in {int4_time:.3f} s on this RTX 4060 Ti, but it has the largest quality loss: LPIPS {int4_lpips:.6f}, final-latent relative L2 {value(core, 'int4_convrot', 'final_latent_relative_l2'):.6f}, and {weight['int4_convrot']['snr_db']:.2f} dB weight SNR.",
137
+ f"- **Storage-quality compromise: GGUF Q4_K_M.** At {q4_size:.3f} GiB it is only {(q4_size / int4_size - 1.0) * 100.0:.1f}% larger than INT4 ConvRot, while reducing LPIPS by {(1.0 - q4_lpips / int4_lpips) * 100.0:.1f}%. Its {q4_time:.3f} s sampling time is {q4_time / int4_time:.2f}× INT4's time because this Ada test uses ComfyUI-GGUF's dequantized execution path.",
138
+ f"- **Q8_0 costs size and Ada runtime for fidelity.** Its {q8_size:.3f} GiB checkpoint is {q8_size / int4_size:.2f}× the INT4 file and its {q8_time:.3f} s sampling time is {q8_time / int4_time:.2f}× INT4's, but it preserves the BF16 result far more closely on every paired fidelity endpoint.",
139
+ "- The three extension formats ran in the same session, so their timing comparison is direct. Exact timing comparisons against the original five-format session remain caveated by the bridge test.",
140
+ "",
141
+ ]
142
  lines.extend(
143
  [
144
  markdown_table(
 
148
  "",
149
  "The decision table is multidimensional by design. No weighted composite score is used.",
150
  "",
151
+ *extension_section,
152
  "## Test system and immutable controls",
153
  "",
154
  f"- GPU: `{gpu}`",
 
159
  f"- Sampler: {config['controls']['sampler_name']}; scheduler: {config['controls']['scheduler']}; steps: {config['controls']['steps']}; CFG: {config['controls']['cfg']}; denoise: {config['controls']['denoise']}",
160
  f"- Shared text encoder: `{config['controls']['text_encoder']}`; shared VAE: `{config['controls']['vae']}`",
161
  "- Negative conditioning is a zeroed copy of positive conditioning. Prompt rewriting, LoRAs, previews, upscaling, and post-processing are disabled.",
162
+ f"- Each prompt/seed pair uses the same initial-noise tensor SHA-256 across all {len(format_ids)} formats.",
163
  "",
164
  "## Checkpoint structure",
165
  "",
 
169
  for format_id in format_ids:
170
  checkpoint = config["formats"][format_id]["checkpoint"]
171
  model = manifest["models"][checkpoint]
172
+ if model["file_format"] == "gguf":
173
+ structure = model["gguf"]
174
+ tensor_count = structure["tensor_count"]
175
+ dtype_counts = "<br>".join(f"{key}: {count}" for key, count in structure["quantization_type_counts"].items())
176
+ metadata_keys = ", ".join(structure["metadata"].keys()) or "none"
177
+ else:
178
+ structure = model["safetensors"]
179
+ tensor_count = structure["tensor_count"]
180
+ dtype_counts = "<br>".join(f"{key}: {count}" for key, count in structure["dtype_tensor_counts"].items())
181
+ metadata_keys = ", ".join(structure["metadata_keys"]) or "none"
182
  checkpoint_rows.append(
183
  [
184
  labels[format_id],
185
  checkpoint,
186
  str(model.get("sha256", "hash skipped")),
187
  fmt(model["gib"], 3),
188
+ config["formats"][format_id].get("loader", "unet"),
189
+ tensor_count,
190
+ dtype_counts,
191
+ metadata_keys,
192
  ]
193
  )
194
  lines.extend(
195
  [
196
+ markdown_table(["Format", "File", "SHA-256", "GiB", "Loader", "Tensors", "Stored dtypes/qtypes", "Metadata"], checkpoint_rows),
197
  "",
198
  "### What the formats actually do",
199
  "",
 
202
  "- **INT8 ConvRot:** 224 row-wise INT8 linear weights with group-size-256 online/offline Hadamard rotation. Sensitive input/output, conditioning, and text-fusion components remain higher precision.",
203
  "- **MXFP8:** E4M3 values with E8M0 power-of-two block scales over 32-element blocks. It marks 256 linear layers; native fast multiplication requires SM 10.0 in this runtime.",
204
  "- **NVFP4:** packed 4-bit floating-point values with per-tensor and 16-element block scales. It marks 256 linear layers; native fast multiplication likewise requires SM 10.0.",
205
+ "- **INT4 ConvRot W4A4:** 256 packed signed-INT4 linear weights with FP32 scales, ConvRot group size 256, quantization group size 64, and 174 BF16 tensors. ComfyUI 0.27 loads it through the native diffusion-model loader.",
206
+ "- **GGUF Q8_0:** third-party GGUF representation loaded by ComfyUI-GGUF. Its exact tensor qtype distribution is recorded in the manifest and its dequantized logical weights are audited against BF16.",
207
+ "- **GGUF Q4_K_M:** mixed K-quant GGUF representation using the same pinned loader. File size is not treated as proof of quality; reconstructed weights and matched outputs determine fidelity.",
208
  "",
209
  "## Weight reconstruction fidelity",
210
  "",
 
258
  [
259
  markdown_table(["Format", "LPIPS Alex↓", "LPIPS VGG↓", "DISTS↓", "MS-SSIM↑", "DINO cosine↑", "SSIM RGB↑", "ΔE2000↓"], image_rows),
260
  "",
261
+ f"Statistics use 50,000 prompt-cluster BCa bootstrap resamples. Quantized-format pairwise tests use all 2^15 exact prompt-level sign permutations with Holm correction across {pairwise_comparisons} pairs per metric.",
262
  "",
263
  "## Prompt adherence and no-reference quality",
264
  "",
 
348
  markdown_table(["Format", "End-to-end s", "Sampling s", "VAE s", "Peak VRAM MiB", "Peak process RAM GiB", "Mean W", "Energy J", "Peak °C"], perf_rows),
349
  "",
350
  "Latency summaries use 30 scored runs per format after three repeatability/warmup executions. GPU and system telemetry were sampled every 100 ms. Model-load and warmup records remain available in `runs.jsonl` and telemetry files but are excluded from steady-state medians.",
351
+ "The original five formats and the three extension formats were measured in separate sessions. Five unscored BF16 and INT8 ConvRot bridge repetitions quantify session drift; no timing is automatically rescaled.",
352
+ (
353
+ f"Bridge verdict: **{'direct cross-session timing comparison allowed' if bridge and bridge['direct_cross_session_comparison_allowed'] else 'keep cross-session timing comparisons caveated'}** using a 5% median-drift threshold."
354
+ if bridge
355
+ else "Bridge verdict is unavailable."
356
+ ),
357
  "",
358
  "## Comparison sheets",
359
  "",
360
  "- [Master contact sheet](comparison_sheets/contact_sheet_replicate0.png)",
361
+ f"- [`comparison_sheets/full/`](comparison_sheets/full/) — labeled {len(format_ids)}-format images",
362
  "- [`comparison_sheets/details/`](comparison_sheets/details/) — three automatically selected high-detail crops per pair",
363
  "- [`comparison_sheets/differences/`](comparison_sheets/differences/) — BF16-relative absolute-difference maps with a shared per-pair scale",
364
  "",
 
377
  "## Reproduction",
378
  "",
379
  "```powershell",
380
+ f".\\run_benchmark.ps1 preflight{config_arg}",
381
+ f".\\run_benchmark.ps1 weights{config_arg}",
382
+ f".\\run_benchmark.ps1 generate{config_arg}",
383
+ f".\\run_benchmark.ps1 analyze{config_arg}",
384
+ f".\\run_benchmark.ps1 sheets{config_arg}",
385
+ f".\\run_benchmark.ps1 report{config_arg}",
386
+ f".\\run_benchmark.ps1 verify{config_arg}",
387
  "```",
388
  "",
389
  "The runner resumes only complete captures and rejects an existing result directory when the configuration hash differs. It never silently retries with different image settings.",
 
395
  "2. BF16 is the original-checkpoint fidelity reference, not an external ground truth for semantic correctness.",
396
  "3. Pixel metrics become conservative when quantization changes composition rather than producing a local defect.",
397
  "4. No human preference test was requested; conclusions about aesthetics remain outside scope.",
398
+ "5. Performance is hardware- and loader-specific. Native safetensors quantization, ConvRot W4A4, and ComfyUI-GGUF follow different execution paths; storage and paired fidelity are more portable than timing.",
399
+ "6. The extension adds three formats in a later session. Bridge runs quantify drift, but a future single-session eight-format rerun remains the strongest timing design.",
400
  "",
401
  "## Primary sources",
402
  "",
403
  "- [Krea 2 Turbo model card and official inference settings](https://huggingface.co/krea/Krea-2-Turbo)",
404
  "- [Comfy-Org Krea 2 repackaged checkpoints](https://huggingface.co/Comfy-Org/Krea-2)",
405
+ "- [Winnougan INT4 ConvRot Comfy models](https://huggingface.co/Winnougan/INT4-Convrot-Comfy-Models)",
406
+ "- [vantagewithai Krea 2 Turbo GGUF](https://huggingface.co/vantagewithai/Krea-2-Turbo-GGUF)",
407
+ "- [ComfyUI-GGUF](https://github.com/city96/ComfyUI-GGUF)",
408
  "- [LPIPS paper](https://arxiv.org/abs/1801.03924)",
409
  "- [DISTS paper](https://arxiv.org/abs/2004.07728)",
410
  "- [DINOv2 paper](https://arxiv.org/abs/2304.07193)",
 
416
  "## Raw artifact index",
417
  "",
418
  "- `manifest.json`: environment, dependency versions, checkpoint metadata, and hashes",
419
+ f"- `run_matrix.json`: all {scored_runs} preregistered scored runs",
420
  "- `runs.jsonl`: execution ledger including failures and timings",
421
  "- `captures/`: float decoded images, final latents, trajectories, PNGs, and per-run metadata",
422
  "- `metrics/`: all raw, summary, and inferential CSV/JSON tables",
reproduction/benchmark/verify_results.py CHANGED
@@ -15,6 +15,11 @@ def csv_count(path: Path) -> tuple[int, set[str]]:
15
 
16
  def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
17
  failures = []
 
 
 
 
 
18
 
19
  def require(condition: bool, message: str) -> None:
20
  if not condition:
@@ -30,13 +35,16 @@ def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
30
  for name in ("preflight.json", "campaign_complete.json", "report_complete.json"):
31
  require((results_dir / name).is_file(), f"Missing completion marker {name}")
32
  require(json.loads((results_dir / "preflight.json").read_text(encoding="utf-8"))["passed"] is True, "Preflight marker is not passed")
33
- require(json.loads((results_dir / "campaign_complete.json").read_text(encoding="utf-8"))["scored_runs"] == 150, "Campaign marker does not declare 150 runs")
 
 
 
34
 
35
  matrix = json.loads((results_dir / "run_matrix.json").read_text(encoding="utf-8"))
36
- require(len(matrix) == 150, f"Run matrix has {len(matrix)} rows instead of 150")
37
- require(len({row["run_id"] for row in matrix}) == 150, "Run matrix contains duplicate run ids")
38
  counts = Counter(row["format_id"] for row in matrix)
39
- require(all(counts[format_id] == 30 for format_id in config["formats"]), f"Format counts are wrong: {dict(counts)}")
40
 
41
  noise_groups = defaultdict(list)
42
  for row in matrix:
@@ -47,9 +55,9 @@ def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
47
  metadata = json.loads((directory / "metadata.json").read_text(encoding="utf-8"))
48
  require({"sampling", "vae_decode", "output"}.issubset(metadata), f"Metadata sections missing: {row['run_id']}")
49
  noise_groups[(row["prompt_id"], row["replicate"])].append(metadata["sampling"]["noise_sha256"])
50
- require(len(noise_groups) == 30, f"Expected 30 prompt-seed noise groups, found {len(noise_groups)}")
51
  for key, values in noise_groups.items():
52
- require(len(values) == 5 and len(set(values)) == 1, f"Noise mismatch for {key}: {values}")
53
 
54
  for format_id in config["formats"]:
55
  hashes = []
@@ -61,12 +69,12 @@ def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
61
  require(len(hashes) == 3 and len(set(hashes)) == 1, f"Repeatability mismatch for {format_id}: {hashes}")
62
 
63
  expected_tables = {
64
- "image_core.csv": 150,
65
- "image_advanced.csv": 150,
66
- "latency_components.csv": 150,
67
- "performance_runs.csv": 150,
68
- "trajectory.csv": 1920,
69
- "weight_parameters_all.csv": 1720,
70
  }
71
  for name, expected_count in expected_tables.items():
72
  path = results_dir / "metrics" / name
@@ -122,7 +130,7 @@ def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
122
  require(report_path.is_file(), "Technical report is missing")
123
  if report_path.is_file():
124
  report = report_path.read_text(encoding="utf-8")
125
- for phrase in ("Best quantized BF16 fidelity", "INT8 ConvRot", "OCR on prompts", "bit-identical", "Primary sources"):
126
  require(phrase in report, f"Technical report is missing required section/claim: {phrase}")
127
 
128
  workflows = [Path(config["_config_path"]).parent / "workflows" / "krea2_benchmark_api.json", Path(config["_config_path"]).parent / "workflows" / "krea2_benchmark_interactive.json"]
 
15
 
16
  def verify(config: dict[str, Any], results_dir: Path) -> dict[str, Any]:
17
  failures = []
18
+ expected_runs = len(config["prompts"]) * int(config["campaign"]["replicates"]) * len(config["formats"])
19
+ expected_per_format = len(config["prompts"]) * int(config["campaign"]["replicates"])
20
+ expected_noise_groups = len(config["prompts"]) * int(config["campaign"]["replicates"])
21
+ expected_trajectory_rows = (len(config["formats"]) - 1) * expected_per_format * int(config["controls"]["steps"]) * 2
22
+ expected_weight_rows = (len(config["formats"]) - 1) * 430
23
 
24
  def require(condition: bool, message: str) -> None:
25
  if not condition:
 
35
  for name in ("preflight.json", "campaign_complete.json", "report_complete.json"):
36
  require((results_dir / name).is_file(), f"Missing completion marker {name}")
37
  require(json.loads((results_dir / "preflight.json").read_text(encoding="utf-8"))["passed"] is True, "Preflight marker is not passed")
38
+ require(json.loads((results_dir / "campaign_complete.json").read_text(encoding="utf-8"))["scored_runs"] == expected_runs, f"Campaign marker does not declare {expected_runs} runs")
39
+ if config.get("_base_results_dir"):
40
+ require((results_dir / "extension_import.json").is_file(), "Extension import marker is missing")
41
+ require((results_dir / "metrics" / "performance_bridge.json").is_file(), "Performance bridge evidence is missing")
42
 
43
  matrix = json.loads((results_dir / "run_matrix.json").read_text(encoding="utf-8"))
44
+ require(len(matrix) == expected_runs, f"Run matrix has {len(matrix)} rows instead of {expected_runs}")
45
+ require(len({row["run_id"] for row in matrix}) == expected_runs, "Run matrix contains duplicate run ids")
46
  counts = Counter(row["format_id"] for row in matrix)
47
+ require(all(counts[format_id] == expected_per_format for format_id in config["formats"]), f"Format counts are wrong: {dict(counts)}")
48
 
49
  noise_groups = defaultdict(list)
50
  for row in matrix:
 
55
  metadata = json.loads((directory / "metadata.json").read_text(encoding="utf-8"))
56
  require({"sampling", "vae_decode", "output"}.issubset(metadata), f"Metadata sections missing: {row['run_id']}")
57
  noise_groups[(row["prompt_id"], row["replicate"])].append(metadata["sampling"]["noise_sha256"])
58
+ require(len(noise_groups) == expected_noise_groups, f"Expected {expected_noise_groups} prompt-seed noise groups, found {len(noise_groups)}")
59
  for key, values in noise_groups.items():
60
+ require(len(values) == len(config["formats"]) and len(set(values)) == 1, f"Noise mismatch for {key}: {values}")
61
 
62
  for format_id in config["formats"]:
63
  hashes = []
 
69
  require(len(hashes) == 3 and len(set(hashes)) == 1, f"Repeatability mismatch for {format_id}: {hashes}")
70
 
71
  expected_tables = {
72
+ "image_core.csv": expected_runs,
73
+ "image_advanced.csv": expected_runs,
74
+ "latency_components.csv": expected_runs,
75
+ "performance_runs.csv": expected_runs,
76
+ "trajectory.csv": expected_trajectory_rows,
77
+ "weight_parameters_all.csv": expected_weight_rows,
78
  }
79
  for name, expected_count in expected_tables.items():
80
  path = results_dir / "metrics" / name
 
130
  require(report_path.is_file(), "Technical report is missing")
131
  if report_path.is_file():
132
  report = report_path.read_text(encoding="utf-8")
133
+ for phrase in ("Best quantized BF16 fidelity", "INT8 ConvRot", "INT4 ConvRot", "GGUF Q8_0", "GGUF Q4_K_M", "OCR on prompts", "bit-identical", "Primary sources"):
134
  require(phrase in report, f"Technical report is missing required section/claim: {phrase}")
135
 
136
  workflows = [Path(config["_config_path"]).parent / "workflows" / "krea2_benchmark_api.json", Path(config["_config_path"]).parent / "workflows" / "krea2_benchmark_interactive.json"]
reproduction/benchmark/weight_audit.py CHANGED
@@ -3,6 +3,8 @@ from __future__ import annotations
3
  import argparse
4
  import csv
5
  import gc
 
 
6
  import json
7
  import math
8
  import sys
@@ -71,6 +73,15 @@ def endpoint_rate(parameter: torch.Tensor) -> float | None:
71
  if qdata is None:
72
  return None
73
  qdata = qdata.detach().cpu()
 
 
 
 
 
 
 
 
 
74
  if qdata.dtype == torch.int8:
75
  return float((qdata.to(torch.int16).abs() >= 127).float().mean())
76
  if qdata.dtype in {torch.float8_e4m3fn, torch.float8_e5m2}:
@@ -79,6 +90,22 @@ def endpoint_rate(parameter: torch.Tensor) -> float | None:
79
  return None
80
 
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  def parameter_metrics(reference: torch.Tensor, candidate: torch.Tensor, sample_limit: int = 65536, chunk_size: int = 4_194_304) -> dict[str, float]:
83
  if reference.shape != candidate.shape:
84
  raise ValueError(f"Shape mismatch: reference={reference.shape}, candidate={candidate.shape}")
@@ -194,42 +221,81 @@ def audit(config: dict[str, Any], results_dir: Path) -> None:
194
  }
195
  combined_rows = []
196
 
 
197
  for format_id, format_config in config["formats"].items():
198
  if format_id == "bf16":
199
  continue
200
  print(f"Weight audit: {format_id}", flush=True)
201
  started = time.time()
202
- patcher = comfy.sd.load_diffusion_model(str(models_dir / format_config["checkpoint"]))
203
- model = patcher.model.diffusion_model
204
  rows = []
 
 
205
  with safe_open(reference_path, framework="pt", device="cpu") as reference_file:
206
  reference_keys = set(reference_file.keys())
207
- for index, (name, parameter) in enumerate(model.named_parameters(), start=1):
208
- if name not in reference_keys:
209
- raise KeyError(f"Logical parameter {name!r} is absent from BF16 checkpoint")
210
- is_quantized = isinstance(parameter, QuantizedTensor)
211
- candidate = parameter.dequantize() if is_quantized else parameter.detach()
212
- reference = reference_file.get_tensor(name)
213
- metrics = parameter_metrics(reference, candidate)
214
- row = {
215
- "format_id": format_id,
216
- "parameter": name,
217
- "subsystem": subsystem(name),
218
- "quantized": is_quantized,
219
- "reference_dtype": str(reference.dtype),
220
- "candidate_dtype": str(candidate.dtype),
221
- "storage_dtype": str(getattr(parameter, "_qdata", parameter).dtype),
222
- "storage_endpoint_rate": endpoint_rate(parameter),
223
- **metrics,
224
- }
225
- rows.append(row)
226
- if index % 20 == 0:
227
- print(f" {index}/430 parameters", flush=True)
228
- del reference, candidate
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  write_rows(output_dir / f"weight_parameters_{format_id}.csv", rows)
230
  combined_rows.extend(rows)
231
  summary = aggregate(rows)
232
  summary["duration_seconds"] = time.time() - started
 
233
  by_subsystem = {}
234
  for group in sorted({row["subsystem"] for row in rows}):
235
  by_subsystem[group] = aggregate([row for row in rows if row["subsystem"] == group])
 
3
  import argparse
4
  import csv
5
  import gc
6
+ import importlib
7
+ import importlib.util
8
  import json
9
  import math
10
  import sys
 
73
  if qdata is None:
74
  return None
75
  qdata = qdata.detach().cpu()
76
+ layout = str(getattr(parameter, "_layout_cls", getattr(parameter, "layout_type", "")))
77
+ if "ConvRotW4A4" in layout:
78
+ packed = qdata.to(torch.uint8).reshape(-1)
79
+ low = (packed & 0x0F).to(torch.int16)
80
+ high = ((packed >> 4) & 0x0F).to(torch.int16)
81
+ low = torch.where(low >= 8, low - 16, low)
82
+ high = torch.where(high >= 8, high - 16, high)
83
+ values = torch.cat((low, high))
84
+ return float(((values <= -8) | (values >= 7)).float().mean())
85
  if qdata.dtype == torch.int8:
86
  return float((qdata.to(torch.int16).abs() >= 127).float().mean())
87
  if qdata.dtype in {torch.float8_e4m3fn, torch.float8_e5m2}:
 
90
  return None
91
 
92
 
93
+ def load_comfyui_gguf(comfy_dir: Path):
94
+ package_dir = comfy_dir / "custom_nodes" / "ComfyUI-GGUF"
95
+ init_path = package_dir / "__init__.py"
96
+ if not init_path.is_file():
97
+ raise RuntimeError(f"ComfyUI-GGUF is not installed at {package_dir}")
98
+ package_name = "krea_benchmark_comfyui_gguf"
99
+ if package_name not in sys.modules:
100
+ spec = importlib.util.spec_from_file_location(package_name, init_path, submodule_search_locations=[str(package_dir)])
101
+ if spec is None or spec.loader is None:
102
+ raise RuntimeError(f"Could not load ComfyUI-GGUF from {init_path}")
103
+ module = importlib.util.module_from_spec(spec)
104
+ sys.modules[package_name] = module
105
+ spec.loader.exec_module(module)
106
+ return importlib.import_module(f"{package_name}.loader"), importlib.import_module(f"{package_name}.dequant")
107
+
108
+
109
  def parameter_metrics(reference: torch.Tensor, candidate: torch.Tensor, sample_limit: int = 65536, chunk_size: int = 4_194_304) -> dict[str, float]:
110
  if reference.shape != candidate.shape:
111
  raise ValueError(f"Shape mismatch: reference={reference.shape}, candidate={candidate.shape}")
 
221
  }
222
  combined_rows = []
223
 
224
+ gguf_loader = gguf_dequant = None
225
  for format_id, format_config in config["formats"].items():
226
  if format_id == "bf16":
227
  continue
228
  print(f"Weight audit: {format_id}", flush=True)
229
  started = time.time()
 
 
230
  rows = []
231
+ ignored_storage_tensors = []
232
+ patcher = model = None
233
  with safe_open(reference_path, framework="pt", device="cpu") as reference_file:
234
  reference_keys = set(reference_file.keys())
235
+ checkpoint_path = models_dir / format_config["checkpoint"]
236
+ if format_config.get("loader", "unet") == "gguf":
237
+ if gguf_loader is None:
238
+ gguf_loader, gguf_dequant = load_comfyui_gguf(comfy_dir)
239
+ state_dict, _extra = gguf_loader.gguf_sd_loader(str(checkpoint_path))
240
+ ignored_storage_tensors = sorted(set(state_dict) - reference_keys)
241
+ candidates = [(name, value) for name, value in state_dict.items() if name in reference_keys]
242
+ for index, (name, parameter) in enumerate(candidates, start=1):
243
+ if name not in reference_keys:
244
+ raise KeyError(f"Logical GGUF parameter {name!r} is absent from BF16 checkpoint")
245
+ is_quantized = bool(gguf_dequant.is_quantized(parameter))
246
+ candidate = gguf_dequant.dequantize_tensor(parameter, dtype=torch.float32) if is_quantized else parameter.detach()
247
+ reference = reference_file.get_tensor(name)
248
+ metrics = parameter_metrics(reference, candidate)
249
+ tensor_type = getattr(parameter, "tensor_type", None)
250
+ rows.append(
251
+ {
252
+ "format_id": format_id,
253
+ "parameter": name,
254
+ "subsystem": subsystem(name),
255
+ "quantized": is_quantized,
256
+ "reference_dtype": str(reference.dtype),
257
+ "candidate_dtype": str(candidate.dtype),
258
+ "storage_dtype": getattr(tensor_type, "name", str(tensor_type or parameter.dtype)),
259
+ "storage_endpoint_rate": None,
260
+ **metrics,
261
+ }
262
+ )
263
+ if index % 20 == 0:
264
+ print(f" {index}/{len(candidates)} parameters", flush=True)
265
+ del reference, candidate
266
+ del state_dict, candidates
267
+ else:
268
+ patcher = comfy.sd.load_diffusion_model(str(checkpoint_path))
269
+ model = patcher.model.diffusion_model
270
+ candidates = list(model.named_parameters())
271
+ for index, (name, parameter) in enumerate(candidates, start=1):
272
+ if name not in reference_keys:
273
+ raise KeyError(f"Logical parameter {name!r} is absent from BF16 checkpoint")
274
+ is_quantized = isinstance(parameter, QuantizedTensor)
275
+ candidate = parameter.dequantize() if is_quantized else parameter.detach()
276
+ reference = reference_file.get_tensor(name)
277
+ metrics = parameter_metrics(reference, candidate)
278
+ rows.append(
279
+ {
280
+ "format_id": format_id,
281
+ "parameter": name,
282
+ "subsystem": subsystem(name),
283
+ "quantized": is_quantized,
284
+ "reference_dtype": str(reference.dtype),
285
+ "candidate_dtype": str(candidate.dtype),
286
+ "storage_dtype": str(getattr(parameter, "_qdata", parameter).dtype),
287
+ "storage_endpoint_rate": endpoint_rate(parameter),
288
+ **metrics,
289
+ }
290
+ )
291
+ if index % 20 == 0:
292
+ print(f" {index}/{len(candidates)} parameters", flush=True)
293
+ del reference, candidate
294
  write_rows(output_dir / f"weight_parameters_{format_id}.csv", rows)
295
  combined_rows.extend(rows)
296
  summary = aggregate(rows)
297
  summary["duration_seconds"] = time.time() - started
298
+ summary["ignored_storage_tensors"] = ignored_storage_tensors
299
  by_subsystem = {}
300
  for group in sorted({row["subsystem"] for row in rows}):
301
  by_subsystem[group] = aggregate([row for row in rows if row["subsystem"] == group])
scripts/upload_to_huggingface.py CHANGED
@@ -25,7 +25,15 @@ def main() -> int:
25
  return 0
26
  api = HfApi()
27
  api.create_repo(repo_id=args.repo_id, repo_type="dataset", private=args.private, exist_ok=True)
28
- api.upload_folder(repo_id=args.repo_id, repo_type="dataset", folder_path=str(root), commit_message="Publish Krea 2 Turbo format benchmark")
 
 
 
 
 
 
 
 
29
  print(f"https://huggingface.co/datasets/{args.repo_id}")
30
  return 0
31
 
 
25
  return 0
26
  api = HfApi()
27
  api.create_repo(repo_id=args.repo_id, repo_type="dataset", private=args.private, exist_ok=True)
28
+ api.upload_large_folder(
29
+ repo_id=args.repo_id,
30
+ repo_type="dataset",
31
+ folder_path=str(root),
32
+ private=args.private,
33
+ ignore_patterns=[".cache/**", "**/__pycache__/**", "*.pyc"],
34
+ num_workers=4,
35
+ print_report_every=30,
36
+ )
37
  print(f"https://huggingface.co/datasets/{args.repo_id}")
38
  return 0
39
 
scripts/validate_release.py CHANGED
@@ -10,7 +10,7 @@ from pathlib import Path
10
  from urllib.parse import unquote
11
 
12
 
13
- FORMATS = ("bf16", "fp8_scaled", "int8_convrot", "mxfp8", "nvfp4")
14
 
15
 
16
  def checksum(path: Path) -> str:
@@ -35,8 +35,9 @@ def main() -> int:
35
  errors: list[str] = []
36
  metadata_path = root / "data" / "train" / "metadata.jsonl"
37
  rows = [json.loads(line) for line in metadata_path.read_text(encoding="utf-8").splitlines() if line.strip()]
38
- fail(len(rows) != 150, f"metadata rows: expected 150, found {len(rows)}", errors)
39
- fail(len({row["run_id"] for row in rows}) != 150, "run_id values are not unique", errors)
 
40
  counts = Counter(row["format_id"] for row in rows)
41
  for fmt in FORMATS:
42
  fail(counts[fmt] != 30, f"{fmt}: expected 30, found {counts[fmt]}", errors)
@@ -47,25 +48,25 @@ def main() -> int:
47
  path = base / row[key]
48
  required_paths.append(path)
49
  fail(not path.is_file(), f"missing {key}: {path}", errors)
50
- fail(len(list((root / "data" / "train" / "images").rglob("*.png"))) != 150, "expected 150 PNG images", errors)
51
- fail(len(list((root / "raw").rglob("*.npy"))) != 300, "expected 300 NPY files", errors)
52
- fail(len(list((root / "raw").rglob("*.npz"))) != 150, "expected 150 NPZ files", errors)
53
  fail(len(list((root / "comparison_sheets").rglob("*.*"))) != 93, "expected 93 comparison artifacts", errors)
54
- fail(len(list((root / "telemetry").glob("*.csv"))) != 10, "expected 10 scored telemetry files", errors)
55
  expected_metric_rows = {
56
- "image_core.csv": 150,
57
- "image_advanced.csv": 150,
58
- "latency_components.csv": 150,
59
- "performance_runs.csv": 150,
60
- "trajectory.csv": 1920,
61
- "weight_parameters_all.csv": 1720,
62
  }
63
  for filename, expected in expected_metric_rows.items():
64
  with (root / "metrics" / filename).open("r", encoding="utf-8", newline="") as stream:
65
  metric_rows = list(csv.DictReader(stream))
66
  fail(len(metric_rows) != expected, f"{filename}: expected {expected} rows, found {len(metric_rows)}", errors)
67
  if filename in {"image_core.csv", "image_advanced.csv", "latency_components.csv", "performance_runs.csv"}:
68
- fail(len({row["run_id"] for row in metric_rows}) != 150, f"{filename}: run_id values are not unique", errors)
69
  forbidden_names = {".vendor", "advanced_metric_cache", "logs", "comfy_output", "__pycache__", ".cache", "cache"}
70
  for path in root.rglob("*"):
71
  fail(any(part in forbidden_names for part in path.parts), f"forbidden path: {path}", errors)
@@ -123,8 +124,8 @@ def main() -> int:
123
  try:
124
  from datasets import load_dataset
125
 
126
- dataset = load_dataset("imagefolder", data_dir=str(root / "data"), split="train")
127
- fail(dataset.num_rows != 150, f"ImageFolder rows: {dataset.num_rows}", errors)
128
  _ = dataset[0]["image"]
129
  except Exception as exc:
130
  errors.append(f"ImageFolder load failed: {exc}")
 
10
  from urllib.parse import unquote
11
 
12
 
13
+ FORMATS = ("bf16", "fp8_scaled", "int8_convrot", "mxfp8", "nvfp4", "int4_convrot", "gguf_q8_0", "gguf_q4_k_m")
14
 
15
 
16
  def checksum(path: Path) -> str:
 
35
  errors: list[str] = []
36
  metadata_path = root / "data" / "train" / "metadata.jsonl"
37
  rows = [json.loads(line) for line in metadata_path.read_text(encoding="utf-8").splitlines() if line.strip()]
38
+ expected_rows = 30 * len(FORMATS)
39
+ fail(len(rows) != expected_rows, f"metadata rows: expected {expected_rows}, found {len(rows)}", errors)
40
+ fail(len({row["run_id"] for row in rows}) != expected_rows, "run_id values are not unique", errors)
41
  counts = Counter(row["format_id"] for row in rows)
42
  for fmt in FORMATS:
43
  fail(counts[fmt] != 30, f"{fmt}: expected 30, found {counts[fmt]}", errors)
 
48
  path = base / row[key]
49
  required_paths.append(path)
50
  fail(not path.is_file(), f"missing {key}: {path}", errors)
51
+ fail(len(list((root / "data" / "train" / "images").rglob("*.png"))) != expected_rows, f"expected {expected_rows} PNG images", errors)
52
+ fail(len(list((root / "raw").rglob("*.npy"))) != expected_rows * 2, f"expected {expected_rows * 2} NPY files", errors)
53
+ fail(len(list((root / "raw").rglob("*.npz"))) != expected_rows, f"expected {expected_rows} NPZ files", errors)
54
  fail(len(list((root / "comparison_sheets").rglob("*.*"))) != 93, "expected 93 comparison artifacts", errors)
55
+ fail(len(list((root / "telemetry").glob("*.csv"))) != 20, "expected 20 scored/bridge telemetry files", errors)
56
  expected_metric_rows = {
57
+ "image_core.csv": 240,
58
+ "image_advanced.csv": 240,
59
+ "latency_components.csv": 240,
60
+ "performance_runs.csv": 240,
61
+ "trajectory.csv": 3360,
62
+ "weight_parameters_all.csv": 3010,
63
  }
64
  for filename, expected in expected_metric_rows.items():
65
  with (root / "metrics" / filename).open("r", encoding="utf-8", newline="") as stream:
66
  metric_rows = list(csv.DictReader(stream))
67
  fail(len(metric_rows) != expected, f"{filename}: expected {expected} rows, found {len(metric_rows)}", errors)
68
  if filename in {"image_core.csv", "image_advanced.csv", "latency_components.csv", "performance_runs.csv"}:
69
+ fail(len({row["run_id"] for row in metric_rows}) != expected_rows, f"{filename}: run_id values are not unique", errors)
70
  forbidden_names = {".vendor", "advanced_metric_cache", "logs", "comfy_output", "__pycache__", ".cache", "cache"}
71
  for path in root.rglob("*"):
72
  fail(any(part in forbidden_names for part in path.parts), f"forbidden path: {path}", errors)
 
124
  try:
125
  from datasets import load_dataset
126
 
127
+ dataset = load_dataset(str(root), split="train")
128
+ fail(dataset.num_rows != expected_rows, f"ImageFolder rows: {dataset.num_rows}", errors)
129
  _ = dataset[0]["image"]
130
  except Exception as exc:
131
  errors.append(f"ImageFolder load failed: {exc}")
tables/decision_table.csv CHANGED
@@ -1,6 +1,9 @@
1
- format,file_gib,lpips_alex_mean,dists_mean,dinov2_cosine_mean,final_latent_relative_l2_mean,weight_snr_db,sampling_seconds_mean,peak_vram_mib,energy_joules_mean
2
  BF16,24.478,0.000000,0.000000,1.000000,0.000000,n/a,25.783,15221.0,3656.0
3
  FP8 Scaled,12.239,0.093701,0.042738,0.971012,0.223618,31.585775,19.503,14397.0,3013.5
4
  INT8 ConvRot,12.566,0.041864,0.026796,0.983833,0.132571,41.157030,12.417,15165.0,1944.8
5
  MXFP8,12.603,0.071229,0.035132,0.979443,0.201900,31.604820,31.929,14750.0,4142.8
6
  NVFP4,7.147,0.205124,0.084436,0.934769,0.381361,20.600707,24.925,14459.0,3679.3
 
 
 
 
1
+ format,file_gib,lpips_alex_median,dists_median,dinov2_cosine_median,final_latent_relative_l2_median,weight_snr_db,sampling_seconds_median,peak_vram_mib,energy_joules_mean
2
  BF16,24.478,0.000000,0.000000,1.000000,0.000000,n/a,25.783,15221.0,3656.0
3
  FP8 Scaled,12.239,0.093701,0.042738,0.971012,0.223618,31.585775,19.503,14397.0,3013.5
4
  INT8 ConvRot,12.566,0.041864,0.026796,0.983833,0.132571,41.157030,12.417,15165.0,1944.8
5
  MXFP8,12.603,0.071229,0.035132,0.979443,0.201900,31.604820,31.929,14750.0,4142.8
6
  NVFP4,7.147,0.205124,0.084436,0.934769,0.381361,20.600707,24.925,14459.0,3679.3
7
+ INT4 ConvRot W4A4,6.426,0.314728,0.132647,0.911258,0.490868,15.715704,9.537,14623.0,1440.8
8
+ GGUF Q8_0,12.765,0.042618,0.024559,0.990568,0.145688,44.813097,27.493,14267.0,3997.6
9
+ GGUF Q4_K_M,6.972,0.153252,0.066291,0.954597,0.340616,22.973296,31.407,14333.0,4487.2
tables/format_ranking.csv CHANGED
@@ -1,6 +1,9 @@
1
  fidelity_rank,format_id,format_label,scope,basis
2
  1,bf16,BF16,BF16-relative checkpoint fidelity; no aesthetic composite score,BF16 reference
3
  2,int8_convrot,INT8 ConvRot,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
4
- 3,mxfp8,MXFP8,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
5
- 4,fp8_scaled,FP8 Scaled,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
6
- 5,nvfp4,NVFP4,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
 
 
 
 
1
  fidelity_rank,format_id,format_label,scope,basis
2
  1,bf16,BF16,BF16-relative checkpoint fidelity; no aesthetic composite score,BF16 reference
3
  2,int8_convrot,INT8 ConvRot,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
4
+ 3,gguf_q8_0,GGUF Q8_0,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
5
+ 4,mxfp8,MXFP8,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
6
+ 5,fp8_scaled,FP8 Scaled,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
7
+ 6,gguf_q4_k_m,GGUF Q4_K_M,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
8
+ 7,nvfp4,NVFP4,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
9
+ 8,int4_convrot,INT4 ConvRot W4A4,BF16-relative checkpoint fidelity; no aesthetic composite score,"LPIPS-Alex primary endpoint with supporting DISTS, DINOv2, latent, and weight evidence"
tables/metadata_schema.json CHANGED
@@ -23,6 +23,7 @@
23
  "cfg",
24
  "checkpoint_filename",
25
  "checkpoint_sha256",
 
26
  "core_artifact_channel_clipping_fraction",
27
  "core_artifact_clip_black_fraction",
28
  "core_artifact_clip_white_fraction",
@@ -135,6 +136,6 @@
135
  "trajectory_path",
136
  "capture_metadata_path"
137
  ],
138
- "rows": 150,
139
  "schema_version": 1
140
  }
 
23
  "cfg",
24
  "checkpoint_filename",
25
  "checkpoint_sha256",
26
+ "checkpoint_source_url",
27
  "core_artifact_channel_clipping_fraction",
28
  "core_artifact_clip_black_fraction",
29
  "core_artifact_clip_white_fraction",
 
136
  "trajectory_path",
137
  "capture_metadata_path"
138
  ],
139
+ "rows": 240,
140
  "schema_version": 1
141
  }
telemetry/bridge_bf16.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/bridge_int8_convrot.csv ADDED
@@ -0,0 +1,771 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ timestamp,name,utilization_gpu_percent,utilization_memory_percent,memory_used_mib,memory_total_mib,power_draw_w,temperature_gpu_c,clocks_sm_mhz,clocks_memory_mhz,pstate
2
+ 2026/07/13 04:29:48.617, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 36.60, 55, 2745, 9001, P0
3
+ 2026/07/13 04:29:48.727, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 36.62, 55, 2745, 9001, P0
4
+ 2026/07/13 04:29:48.830, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 36.62, 55, 2745, 9001, P0
5
+ 2026/07/13 04:29:48.946, NVIDIA GeForce RTX 4060 Ti, 0, 0, 8, 16380, 36.62, 55, 2745, 9001, P0
6
+ 2026/07/13 04:29:49.058, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 36.62, 55, 2745, 9001, P0
7
+ 2026/07/13 04:29:49.168, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 36.62, 55, 2745, 9001, P0
8
+ 2026/07/13 04:29:49.279, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 33.61, 54, 2535, 9001, P0
9
+ 2026/07/13 04:29:49.390, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 33.61, 54, 2535, 9001, P0
10
+ 2026/07/13 04:29:49.502, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 33.61, 54, 2535, 9001, P0
11
+ 2026/07/13 04:29:49.613, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 33.61, 54, 2535, 9001, P0
12
+ 2026/07/13 04:29:49.724, NVIDIA GeForce RTX 4060 Ti, 1, 0, 0, 16380, 31.50, 54, 2535, 9001, P0
13
+ 2026/07/13 04:29:49.830, NVIDIA GeForce RTX 4060 Ti, 1, 0, 0, 16380, 31.50, 54, 2535, 9001, P0
14
+ 2026/07/13 04:29:49.941, NVIDIA GeForce RTX 4060 Ti, 1, 0, 0, 16380, 31.50, 54, 2535, 9001, P0
15
+ 2026/07/13 04:29:50.051, NVIDIA GeForce RTX 4060 Ti, 1, 0, 0, 16380, 31.50, 54, 2535, 9001, P0
16
+ 2026/07/13 04:29:50.162, NVIDIA GeForce RTX 4060 Ti, 1, 0, 0, 16380, 31.50, 54, 2535, 9001, P0
17
+ 2026/07/13 04:29:50.273, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.49, 53, 2535, 9001, P0
18
+ 2026/07/13 04:29:50.384, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.49, 53, 2535, 9001, P0
19
+ 2026/07/13 04:29:50.495, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.49, 53, 2535, 9001, P0
20
+ 2026/07/13 04:29:50.607, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.49, 53, 2535, 9001, P0
21
+ 2026/07/13 04:29:50.718, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.42, 53, 2535, 9001, P0
22
+ 2026/07/13 04:29:50.830, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.42, 53, 2535, 9001, P0
23
+ 2026/07/13 04:29:50.940, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.42, 53, 2535, 9001, P0
24
+ 2026/07/13 04:29:51.051, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.42, 53, 2535, 9001, P0
25
+ 2026/07/13 04:29:51.162, NVIDIA GeForce RTX 4060 Ti, 0, 0, 0, 16380, 31.42, 53, 2535, 9001, P0
26
+ 2026/07/13 04:29:51.273, NVIDIA GeForce RTX 4060 Ti, 0, 0, 9, 16380, 31.42, 53, 2535, 9001, P0
27
+ 2026/07/13 04:29:51.384, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.42, 53, 2535, 9001, P0
28
+ 2026/07/13 04:29:51.494, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.42, 53, 2535, 9001, P0
29
+ 2026/07/13 04:29:51.605, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.42, 53, 2535, 9001, P0
30
+ 2026/07/13 04:29:51.715, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.32, 53, 2535, 8751, P2
31
+ 2026/07/13 04:29:51.829, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.32, 53, 2535, 8751, P2
32
+ 2026/07/13 04:29:51.941, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.32, 53, 2535, 8751, P2
33
+ 2026/07/13 04:29:52.051, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.32, 53, 2535, 8751, P2
34
+ 2026/07/13 04:29:52.161, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.32, 53, 2535, 8751, P2
35
+ 2026/07/13 04:29:52.272, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.21, 52, 2535, 8751, P2
36
+ 2026/07/13 04:29:52.383, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.21, 52, 2535, 8751, P2
37
+ 2026/07/13 04:29:52.493, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.21, 52, 2535, 8751, P2
38
+ 2026/07/13 04:29:52.603, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.21, 52, 2535, 8751, P2
39
+ 2026/07/13 04:29:52.713, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
40
+ 2026/07/13 04:29:52.830, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
41
+ 2026/07/13 04:29:52.942, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
42
+ 2026/07/13 04:29:53.054, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
43
+ 2026/07/13 04:29:53.165, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
44
+ 2026/07/13 04:29:53.275, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
45
+ 2026/07/13 04:29:53.385, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
46
+ 2026/07/13 04:29:53.496, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
47
+ 2026/07/13 04:29:53.606, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 31.19, 52, 2535, 8751, P2
48
+ 2026/07/13 04:29:53.716, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
49
+ 2026/07/13 04:29:53.829, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
50
+ 2026/07/13 04:29:53.940, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
51
+ 2026/07/13 04:29:54.047, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
52
+ 2026/07/13 04:29:54.158, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
53
+ 2026/07/13 04:29:54.267, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
54
+ 2026/07/13 04:29:54.379, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
55
+ 2026/07/13 04:29:54.490, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
56
+ 2026/07/13 04:29:54.600, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.61, 52, 2535, 8751, P2
57
+ 2026/07/13 04:29:54.711, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
58
+ 2026/07/13 04:29:54.812, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
59
+ 2026/07/13 04:29:54.926, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
60
+ 2026/07/13 04:29:55.030, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
61
+ 2026/07/13 04:29:55.143, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
62
+ 2026/07/13 04:29:55.254, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
63
+ 2026/07/13 04:29:55.364, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
64
+ 2026/07/13 04:29:55.474, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
65
+ 2026/07/13 04:29:55.585, NVIDIA GeForce RTX 4060 Ti, 0, 0, 107, 16380, 30.57, 52, 2535, 8751, P2
66
+ 2026/07/13 04:29:55.695, NVIDIA GeForce RTX 4060 Ti, 0, 0, 919, 16380, 30.51, 51, 2535, 8751, P2
67
+ 2026/07/13 04:29:55.796, NVIDIA GeForce RTX 4060 Ti, 0, 0, 919, 16380, 30.51, 51, 2535, 8751, P2
68
+ 2026/07/13 04:29:55.911, NVIDIA GeForce RTX 4060 Ti, 0, 0, 919, 16380, 30.51, 51, 2535, 8751, P2
69
+ 2026/07/13 04:29:56.022, NVIDIA GeForce RTX 4060 Ti, 0, 0, 937, 16380, 30.51, 51, 2535, 8751, P2
70
+ 2026/07/13 04:29:56.133, NVIDIA GeForce RTX 4060 Ti, 0, 0, 1011, 16380, 30.51, 51, 2535, 8751, P2
71
+ 2026/07/13 04:29:56.244, NVIDIA GeForce RTX 4060 Ti, 1, 0, 1331, 16380, 30.90, 51, 2535, 8751, P2
72
+ 2026/07/13 04:29:56.353, NVIDIA GeForce RTX 4060 Ti, 1, 0, 1779, 16380, 30.90, 51, 2535, 8751, P2
73
+ 2026/07/13 04:29:56.464, NVIDIA GeForce RTX 4060 Ti, 1, 0, 2227, 16380, 30.90, 51, 2535, 8751, P2
74
+ 2026/07/13 04:29:56.565, NVIDIA GeForce RTX 4060 Ti, 1, 0, 2547, 16380, 30.90, 51, 2535, 8751, P2
75
+ 2026/07/13 04:29:56.681, NVIDIA GeForce RTX 4060 Ti, 29, 9, 2899, 16380, 33.94, 52, 2535, 8751, P2
76
+ 2026/07/13 04:29:56.781, NVIDIA GeForce RTX 4060 Ti, 29, 9, 3219, 16380, 33.94, 52, 2535, 8751, P2
77
+ 2026/07/13 04:29:56.881, NVIDIA GeForce RTX 4060 Ti, 29, 9, 3475, 16380, 33.94, 52, 2535, 8751, P2
78
+ 2026/07/13 04:29:56.981, NVIDIA GeForce RTX 4060 Ti, 29, 9, 3667, 16380, 33.94, 52, 2535, 8751, P2
79
+ 2026/07/13 04:29:57.082, NVIDIA GeForce RTX 4060 Ti, 29, 9, 3923, 16380, 33.94, 52, 2535, 8751, P2
80
+ 2026/07/13 04:29:57.195, NVIDIA GeForce RTX 4060 Ti, 25, 8, 4243, 16380, 38.15, 52, 2535, 8751, P2
81
+ 2026/07/13 04:29:57.295, NVIDIA GeForce RTX 4060 Ti, 25, 8, 4467, 16380, 38.15, 52, 2535, 8751, P2
82
+ 2026/07/13 04:29:57.397, NVIDIA GeForce RTX 4060 Ti, 25, 8, 4723, 16380, 38.15, 52, 2535, 8751, P2
83
+ 2026/07/13 04:29:57.512, NVIDIA GeForce RTX 4060 Ti, 25, 8, 5043, 16380, 38.15, 52, 2535, 8751, P2
84
+ 2026/07/13 04:29:57.613, NVIDIA GeForce RTX 4060 Ti, 25, 8, 5267, 16380, 38.15, 52, 2535, 8751, P2
85
+ 2026/07/13 04:29:57.724, NVIDIA GeForce RTX 4060 Ti, 28, 9, 5491, 16380, 37.67, 51, 1875, 8751, P2
86
+ 2026/07/13 04:29:57.830, NVIDIA GeForce RTX 4060 Ti, 28, 9, 5779, 16380, 37.67, 51, 1875, 8751, P2
87
+ 2026/07/13 04:29:57.941, NVIDIA GeForce RTX 4060 Ti, 28, 9, 6099, 16380, 37.67, 51, 1875, 8751, P2
88
+ 2026/07/13 04:29:58.052, NVIDIA GeForce RTX 4060 Ti, 28, 9, 6419, 16380, 37.67, 51, 1875, 8751, P2
89
+ 2026/07/13 04:29:58.162, NVIDIA GeForce RTX 4060 Ti, 28, 9, 6643, 16380, 37.67, 51, 1875, 8751, P2
90
+ 2026/07/13 04:29:58.272, NVIDIA GeForce RTX 4060 Ti, 27, 8, 6931, 16380, 34.34, 51, 1800, 8751, P2
91
+ 2026/07/13 04:29:58.384, NVIDIA GeForce RTX 4060 Ti, 27, 8, 7155, 16380, 34.34, 51, 1800, 8751, P2
92
+ 2026/07/13 04:29:58.496, NVIDIA GeForce RTX 4060 Ti, 27, 8, 7443, 16380, 34.34, 51, 1800, 8751, P2
93
+ 2026/07/13 04:29:58.607, NVIDIA GeForce RTX 4060 Ti, 27, 8, 7667, 16380, 34.34, 51, 1800, 8751, P2
94
+ 2026/07/13 04:29:58.721, NVIDIA GeForce RTX 4060 Ti, 29, 8, 7987, 16380, 32.24, 51, 1665, 8751, P2
95
+ 2026/07/13 04:29:58.830, NVIDIA GeForce RTX 4060 Ti, 29, 8, 8211, 16380, 32.24, 51, 1665, 8751, P2
96
+ 2026/07/13 04:29:58.941, NVIDIA GeForce RTX 4060 Ti, 29, 8, 7923, 16380, 32.24, 51, 1665, 8751, P2
97
+ 2026/07/13 04:29:59.051, NVIDIA GeForce RTX 4060 Ti, 29, 8, 3445, 16380, 32.24, 51, 1665, 8751, P2
98
+ 2026/07/13 04:29:59.161, NVIDIA GeForce RTX 4060 Ti, 29, 8, 3545, 16380, 32.24, 51, 1665, 8751, P2
99
+ 2026/07/13 04:29:59.271, NVIDIA GeForce RTX 4060 Ti, 5, 1, 3993, 16380, 30.37, 50, 1530, 5001, P3
100
+ 2026/07/13 04:29:59.382, NVIDIA GeForce RTX 4060 Ti, 5, 1, 4153, 16380, 30.37, 50, 1530, 5001, P3
101
+ 2026/07/13 04:29:59.493, NVIDIA GeForce RTX 4060 Ti, 5, 1, 4377, 16380, 30.37, 50, 1530, 5001, P3
102
+ 2026/07/13 04:29:59.605, NVIDIA GeForce RTX 4060 Ti, 5, 1, 4601, 16380, 30.37, 50, 1530, 5001, P3
103
+ 2026/07/13 04:29:59.715, NVIDIA GeForce RTX 4060 Ti, 21, 5, 4761, 16380, 26.66, 50, 1350, 5001, P3
104
+ 2026/07/13 04:29:59.829, NVIDIA GeForce RTX 4060 Ti, 21, 5, 5433, 16380, 26.66, 50, 1350, 5001, P3
105
+ 2026/07/13 04:29:59.940, NVIDIA GeForce RTX 4060 Ti, 21, 5, 5561, 16380, 26.66, 50, 1350, 5001, P3
106
+ 2026/07/13 04:30:00.046, NVIDIA GeForce RTX 4060 Ti, 21, 5, 5657, 16380, 26.66, 50, 1350, 5001, P3
107
+ 2026/07/13 04:30:00.157, NVIDIA GeForce RTX 4060 Ti, 21, 5, 6073, 16380, 26.66, 50, 1350, 5001, P3
108
+ 2026/07/13 04:30:00.268, NVIDIA GeForce RTX 4060 Ti, 54, 18, 6329, 16380, 34.56, 55, 2550, 8751, P2
109
+ 2026/07/13 04:30:00.379, NVIDIA GeForce RTX 4060 Ti, 54, 18, 6649, 16380, 34.56, 55, 2550, 8751, P2
110
+ 2026/07/13 04:30:00.494, NVIDIA GeForce RTX 4060 Ti, 54, 18, 7001, 16380, 34.56, 55, 2550, 8751, P2
111
+ 2026/07/13 04:30:00.605, NVIDIA GeForce RTX 4060 Ti, 54, 18, 7225, 16380, 34.56, 55, 2550, 8751, P2
112
+ 2026/07/13 04:30:00.716, NVIDIA GeForce RTX 4060 Ti, 38, 9, 7513, 16380, 57.52, 54, 2745, 8751, P2
113
+ 2026/07/13 04:30:00.830, NVIDIA GeForce RTX 4060 Ti, 38, 9, 7705, 16380, 57.52, 54, 2745, 8751, P2
114
+ 2026/07/13 04:30:00.940, NVIDIA GeForce RTX 4060 Ti, 38, 9, 7993, 16380, 57.52, 54, 2745, 8751, P2
115
+ 2026/07/13 04:30:01.050, NVIDIA GeForce RTX 4060 Ti, 38, 9, 8249, 16380, 57.52, 54, 2745, 8751, P2
116
+ 2026/07/13 04:30:01.160, NVIDIA GeForce RTX 4060 Ti, 38, 9, 8505, 16380, 57.52, 54, 2745, 8751, P2
117
+ 2026/07/13 04:30:01.270, NVIDIA GeForce RTX 4060 Ti, 53, 22, 8825, 16380, 75.22, 56, 2745, 8751, P2
118
+ 2026/07/13 04:30:01.380, NVIDIA GeForce RTX 4060 Ti, 53, 22, 9017, 16380, 75.22, 56, 2745, 8751, P2
119
+ 2026/07/13 04:30:01.490, NVIDIA GeForce RTX 4060 Ti, 53, 22, 9241, 16380, 75.22, 56, 2745, 8751, P2
120
+ 2026/07/13 04:30:01.601, NVIDIA GeForce RTX 4060 Ti, 53, 22, 9465, 16380, 75.22, 56, 2745, 8751, P2
121
+ 2026/07/13 04:30:01.711, NVIDIA GeForce RTX 4060 Ti, 50, 22, 9721, 16380, 74.83, 54, 2745, 8751, P2
122
+ 2026/07/13 04:30:01.812, NVIDIA GeForce RTX 4060 Ti, 50, 22, 9913, 16380, 74.83, 54, 2745, 8751, P2
123
+ 2026/07/13 04:30:01.925, NVIDIA GeForce RTX 4060 Ti, 50, 22, 10265, 16380, 74.83, 54, 2745, 8751, P2
124
+ 2026/07/13 04:30:02.036, NVIDIA GeForce RTX 4060 Ti, 50, 22, 10489, 16380, 74.83, 54, 2745, 8751, P2
125
+ 2026/07/13 04:30:02.145, NVIDIA GeForce RTX 4060 Ti, 50, 22, 10777, 16380, 74.83, 54, 2745, 8751, P2
126
+ 2026/07/13 04:30:02.255, NVIDIA GeForce RTX 4060 Ti, 52, 25, 10969, 16380, 77.13, 55, 2730, 8751, P2
127
+ 2026/07/13 04:30:02.366, NVIDIA GeForce RTX 4060 Ti, 52, 25, 11321, 16380, 77.13, 55, 2730, 8751, P2
128
+ 2026/07/13 04:30:02.476, NVIDIA GeForce RTX 4060 Ti, 52, 25, 11609, 16380, 77.13, 55, 2730, 8751, P2
129
+ 2026/07/13 04:30:02.587, NVIDIA GeForce RTX 4060 Ti, 52, 25, 11801, 16380, 77.13, 55, 2730, 8751, P2
130
+ 2026/07/13 04:30:02.696, NVIDIA GeForce RTX 4060 Ti, 59, 34, 12089, 16380, 76.50, 56, 2745, 8751, P2
131
+ 2026/07/13 04:30:02.797, NVIDIA GeForce RTX 4060 Ti, 59, 34, 12345, 16380, 76.50, 56, 2745, 8751, P2
132
+ 2026/07/13 04:30:02.907, NVIDIA GeForce RTX 4060 Ti, 59, 34, 12633, 16380, 76.50, 56, 2745, 8751, P2
133
+ 2026/07/13 04:30:03.017, NVIDIA GeForce RTX 4060 Ti, 59, 34, 12825, 16380, 76.50, 56, 2745, 8751, P2
134
+ 2026/07/13 04:30:03.127, NVIDIA GeForce RTX 4060 Ti, 59, 34, 13145, 16380, 76.50, 56, 2745, 8751, P2
135
+ 2026/07/13 04:30:03.238, NVIDIA GeForce RTX 4060 Ti, 59, 34, 13337, 16380, 76.90, 54, 2745, 8751, P2
136
+ 2026/07/13 04:30:03.348, NVIDIA GeForce RTX 4060 Ti, 59, 34, 13561, 16380, 76.90, 54, 2745, 8751, P2
137
+ 2026/07/13 04:30:03.458, NVIDIA GeForce RTX 4060 Ti, 59, 34, 13881, 16380, 76.90, 54, 2745, 8751, P2
138
+ 2026/07/13 04:30:03.569, NVIDIA GeForce RTX 4060 Ti, 59, 34, 14105, 16380, 76.90, 54, 2745, 8751, P2
139
+ 2026/07/13 04:30:03.679, NVIDIA GeForce RTX 4060 Ti, 55, 33, 14393, 16380, 77.92, 56, 2745, 8751, P2
140
+ 2026/07/13 04:30:03.781, NVIDIA GeForce RTX 4060 Ti, 55, 33, 14617, 16380, 77.92, 56, 2745, 8751, P2
141
+ 2026/07/13 04:30:03.894, NVIDIA GeForce RTX 4060 Ti, 55, 33, 14905, 16380, 77.92, 56, 2745, 8751, P2
142
+ 2026/07/13 04:30:04.003, NVIDIA GeForce RTX 4060 Ti, 55, 33, 15129, 16380, 77.92, 56, 2745, 8751, P2
143
+ 2026/07/13 04:30:04.114, NVIDIA GeForce RTX 4060 Ti, 55, 33, 15001, 16380, 77.92, 56, 2745, 8751, P2
144
+ 2026/07/13 04:30:04.225, NVIDIA GeForce RTX 4060 Ti, 47, 27, 15161, 16380, 76.37, 55, 2745, 8751, P2
145
+ 2026/07/13 04:30:04.336, NVIDIA GeForce RTX 4060 Ti, 47, 27, 15033, 16380, 76.37, 55, 2745, 8751, P2
146
+ 2026/07/13 04:30:04.446, NVIDIA GeForce RTX 4060 Ti, 47, 27, 15161, 16380, 76.37, 55, 2745, 8751, P2
147
+ 2026/07/13 04:30:04.557, NVIDIA GeForce RTX 4060 Ti, 47, 27, 15193, 16380, 76.37, 55, 2745, 8751, P2
148
+ 2026/07/13 04:30:04.667, NVIDIA GeForce RTX 4060 Ti, 47, 27, 15097, 16380, 76.37, 55, 2745, 8751, P2
149
+ 2026/07/13 04:30:04.781, NVIDIA GeForce RTX 4060 Ti, 47, 17, 15161, 16380, 72.54, 54, 2730, 8751, P2
150
+ 2026/07/13 04:30:04.893, NVIDIA GeForce RTX 4060 Ti, 47, 17, 15065, 16380, 72.54, 54, 2730, 8751, P2
151
+ 2026/07/13 04:30:05.002, NVIDIA GeForce RTX 4060 Ti, 47, 17, 15033, 16380, 72.54, 54, 2730, 8751, P2
152
+ 2026/07/13 04:30:05.112, NVIDIA GeForce RTX 4060 Ti, 47, 17, 15033, 16380, 72.54, 54, 2730, 8751, P2
153
+ 2026/07/13 04:30:05.223, NVIDIA GeForce RTX 4060 Ti, 100, 61, 15033, 16380, 87.41, 64, 2685, 8751, P2
154
+ 2026/07/13 04:30:05.334, NVIDIA GeForce RTX 4060 Ti, 100, 61, 15033, 16380, 87.41, 64, 2685, 8751, P2
155
+ 2026/07/13 04:30:05.445, NVIDIA GeForce RTX 4060 Ti, 100, 61, 15033, 16380, 87.41, 64, 2685, 8751, P2
156
+ 2026/07/13 04:30:05.557, NVIDIA GeForce RTX 4060 Ti, 100, 61, 15033, 16380, 87.41, 64, 2685, 8751, P2
157
+ 2026/07/13 04:30:05.666, NVIDIA GeForce RTX 4060 Ti, 100, 61, 15033, 16380, 87.41, 64, 2685, 8751, P2
158
+ 2026/07/13 04:30:05.781, NVIDIA GeForce RTX 4060 Ti, 100, 69, 15033, 16380, 121.85, 64, 2715, 8751, P2
159
+ 2026/07/13 04:30:05.894, NVIDIA GeForce RTX 4060 Ti, 100, 69, 15033, 16380, 121.85, 64, 2715, 8751, P2
160
+ 2026/07/13 04:30:06.005, NVIDIA GeForce RTX 4060 Ti, 100, 69, 15033, 16380, 121.85, 64, 2715, 8751, P2
161
+ 2026/07/13 04:30:06.116, NVIDIA GeForce RTX 4060 Ti, 100, 69, 15033, 16380, 121.85, 64, 2715, 8751, P2
162
+ 2026/07/13 04:30:06.227, NVIDIA GeForce RTX 4060 Ti, 100, 67, 15033, 16380, 148.28, 67, 2700, 8751, P2
163
+ 2026/07/13 04:30:06.338, NVIDIA GeForce RTX 4060 Ti, 100, 67, 15033, 16380, 148.28, 67, 2700, 8751, P2
164
+ 2026/07/13 04:30:06.449, NVIDIA GeForce RTX 4060 Ti, 100, 67, 15033, 16380, 148.28, 67, 2700, 8751, P2
165
+ 2026/07/13 04:30:06.558, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14617, 16380, 148.28, 67, 2700, 8751, P2
166
+ 2026/07/13 04:30:06.666, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14617, 16380, 148.28, 67, 2700, 8751, P2
167
+ 2026/07/13 04:30:06.781, NVIDIA GeForce RTX 4060 Ti, 96, 65, 14617, 16380, 146.92, 64, 2685, 8751, P2
168
+ 2026/07/13 04:30:06.895, NVIDIA GeForce RTX 4060 Ti, 96, 65, 14617, 16380, 146.92, 64, 2685, 8751, P2
169
+ 2026/07/13 04:30:07.006, NVIDIA GeForce RTX 4060 Ti, 96, 65, 14617, 16380, 146.92, 64, 2685, 8751, P2
170
+ 2026/07/13 04:30:07.117, NVIDIA GeForce RTX 4060 Ti, 96, 65, 14617, 16380, 146.92, 64, 2685, 8751, P2
171
+ 2026/07/13 04:30:07.228, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14617, 16380, 148.13, 68, 2700, 8751, P2
172
+ 2026/07/13 04:30:07.337, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14617, 16380, 148.13, 68, 2700, 8751, P2
173
+ 2026/07/13 04:30:07.447, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14617, 16380, 148.13, 68, 2700, 8751, P2
174
+ 2026/07/13 04:30:07.555, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14617, 16380, 148.13, 68, 2700, 8751, P2
175
+ 2026/07/13 04:30:07.665, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14617, 16380, 148.13, 68, 2700, 8751, P2
176
+ 2026/07/13 04:30:07.769, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14617, 16380, 148.64, 67, 2730, 8751, P2
177
+ 2026/07/13 04:30:07.878, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14617, 16380, 148.64, 67, 2730, 8751, P2
178
+ 2026/07/13 04:30:07.989, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14617, 16380, 148.64, 67, 2730, 8751, P2
179
+ 2026/07/13 04:30:08.099, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14617, 16380, 148.64, 67, 2730, 8751, P2
180
+ 2026/07/13 04:30:08.208, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 149.22, 64, 2730, 8751, P2
181
+ 2026/07/13 04:30:08.317, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 149.22, 64, 2730, 8751, P2
182
+ 2026/07/13 04:30:08.428, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 149.22, 64, 2730, 8751, P2
183
+ 2026/07/13 04:30:08.538, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 149.22, 64, 2730, 8751, P2
184
+ 2026/07/13 04:30:08.649, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 149.22, 64, 2730, 8751, P2
185
+ 2026/07/13 04:30:08.764, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 148.50, 66, 2640, 8751, P2
186
+ 2026/07/13 04:30:08.878, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 148.50, 66, 2640, 8751, P2
187
+ 2026/07/13 04:30:08.987, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 148.50, 66, 2640, 8751, P2
188
+ 2026/07/13 04:30:09.096, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14617, 16380, 148.50, 66, 2640, 8751, P2
189
+ 2026/07/13 04:30:09.206, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14617, 16380, 148.13, 67, 2730, 8751, P2
190
+ 2026/07/13 04:30:09.316, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14617, 16380, 148.13, 67, 2730, 8751, P2
191
+ 2026/07/13 04:30:09.427, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14617, 16380, 148.13, 67, 2730, 8751, P2
192
+ 2026/07/13 04:30:09.539, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14617, 16380, 148.13, 67, 2730, 8751, P2
193
+ 2026/07/13 04:30:09.650, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14617, 16380, 148.13, 67, 2730, 8751, P2
194
+ 2026/07/13 04:30:09.763, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14617, 16380, 148.68, 67, 2655, 8751, P2
195
+ 2026/07/13 04:30:09.878, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14617, 16380, 148.68, 67, 2655, 8751, P2
196
+ 2026/07/13 04:30:09.988, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14617, 16380, 148.68, 67, 2655, 8751, P2
197
+ 2026/07/13 04:30:10.100, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14617, 16380, 148.68, 67, 2655, 8751, P2
198
+ 2026/07/13 04:30:10.211, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14617, 16380, 148.30, 67, 2730, 8751, P2
199
+ 2026/07/13 04:30:10.322, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14617, 16380, 148.30, 67, 2730, 8751, P2
200
+ 2026/07/13 04:30:10.433, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14617, 16380, 148.30, 67, 2730, 8751, P2
201
+ 2026/07/13 04:30:10.544, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14617, 16380, 148.30, 67, 2730, 8751, P2
202
+ 2026/07/13 04:30:10.656, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14617, 16380, 148.30, 67, 2730, 8751, P2
203
+ 2026/07/13 04:30:10.763, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 148.00, 66, 2685, 8751, P2
204
+ 2026/07/13 04:30:10.879, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 148.00, 66, 2685, 8751, P2
205
+ 2026/07/13 04:30:10.991, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 148.00, 66, 2685, 8751, P2
206
+ 2026/07/13 04:30:11.103, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 148.00, 66, 2685, 8751, P2
207
+ 2026/07/13 04:30:11.215, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.41, 68, 2670, 8751, P2
208
+ 2026/07/13 04:30:11.327, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.41, 68, 2670, 8751, P2
209
+ 2026/07/13 04:30:11.437, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.41, 68, 2670, 8751, P2
210
+ 2026/07/13 04:30:11.546, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.41, 68, 2670, 8751, P2
211
+ 2026/07/13 04:30:11.658, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.41, 68, 2670, 8751, P2
212
+ 2026/07/13 04:30:11.763, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 147.19, 66, 2715, 8751, P2
213
+ 2026/07/13 04:30:11.878, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 147.19, 66, 2715, 8751, P2
214
+ 2026/07/13 04:30:11.990, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 147.19, 66, 2715, 8751, P2
215
+ 2026/07/13 04:30:12.102, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14617, 16380, 147.19, 66, 2715, 8751, P2
216
+ 2026/07/13 04:30:12.211, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.24, 69, 2655, 8751, P2
217
+ 2026/07/13 04:30:12.320, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.24, 69, 2655, 8751, P2
218
+ 2026/07/13 04:30:12.430, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.24, 69, 2655, 8751, P2
219
+ 2026/07/13 04:30:12.539, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.24, 69, 2655, 8751, P2
220
+ 2026/07/13 04:30:12.648, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14617, 16380, 148.24, 69, 2655, 8751, P2
221
+ 2026/07/13 04:30:12.763, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14617, 16380, 148.46, 68, 2655, 8751, P2
222
+ 2026/07/13 04:30:12.878, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14617, 16380, 148.46, 68, 2655, 8751, P2
223
+ 2026/07/13 04:30:12.989, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14617, 16380, 148.46, 68, 2655, 8751, P2
224
+ 2026/07/13 04:30:13.099, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14585, 16380, 148.46, 68, 2655, 8751, P2
225
+ 2026/07/13 04:30:13.209, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14585, 16380, 148.36, 68, 2670, 8751, P2
226
+ 2026/07/13 04:30:13.320, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14585, 16380, 148.36, 68, 2670, 8751, P2
227
+ 2026/07/13 04:30:13.432, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14585, 16380, 148.36, 68, 2670, 8751, P2
228
+ 2026/07/13 04:30:13.543, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14585, 16380, 148.36, 68, 2670, 8751, P2
229
+ 2026/07/13 04:30:13.655, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14585, 16380, 148.36, 68, 2670, 8751, P2
230
+ 2026/07/13 04:30:13.764, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14585, 16380, 148.36, 68, 2610, 8751, P2
231
+ 2026/07/13 04:30:13.878, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14585, 16380, 148.36, 68, 2610, 8751, P2
232
+ 2026/07/13 04:30:13.989, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14585, 16380, 148.36, 68, 2610, 8751, P2
233
+ 2026/07/13 04:30:14.100, NVIDIA GeForce RTX 4060 Ti, 100, 62, 14585, 16380, 148.36, 68, 2610, 8751, P2
234
+ 2026/07/13 04:30:14.211, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.55, 68, 2730, 8751, P2
235
+ 2026/07/13 04:30:14.322, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.55, 68, 2730, 8751, P2
236
+ 2026/07/13 04:30:14.434, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.55, 68, 2730, 8751, P2
237
+ 2026/07/13 04:30:14.545, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.55, 68, 2730, 8751, P2
238
+ 2026/07/13 04:30:14.656, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.55, 68, 2730, 8751, P2
239
+ 2026/07/13 04:30:14.763, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.85, 66, 2730, 8751, P2
240
+ 2026/07/13 04:30:14.877, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.85, 66, 2730, 8751, P2
241
+ 2026/07/13 04:30:14.989, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.85, 66, 2730, 8751, P2
242
+ 2026/07/13 04:30:15.099, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.85, 66, 2730, 8751, P2
243
+ 2026/07/13 04:30:15.210, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14585, 16380, 148.29, 68, 2730, 8751, P2
244
+ 2026/07/13 04:30:15.322, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14585, 16380, 148.29, 68, 2730, 8751, P2
245
+ 2026/07/13 04:30:15.432, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14585, 16380, 148.29, 68, 2730, 8751, P2
246
+ 2026/07/13 04:30:15.533, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14585, 16380, 148.29, 68, 2730, 8751, P2
247
+ 2026/07/13 04:30:15.635, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14585, 16380, 148.29, 68, 2730, 8751, P2
248
+ 2026/07/13 04:30:15.739, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.89, 68, 2670, 8751, P2
249
+ 2026/07/13 04:30:15.848, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.89, 68, 2670, 8751, P2
250
+ 2026/07/13 04:30:15.961, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.89, 68, 2670, 8751, P2
251
+ 2026/07/13 04:30:16.076, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14585, 16380, 148.89, 68, 2670, 8751, P2
252
+ 2026/07/13 04:30:16.187, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14585, 16380, 149.12, 68, 2505, 8751, P2
253
+ 2026/07/13 04:30:16.298, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13785, 16380, 149.12, 68, 2505, 8751, P2
254
+ 2026/07/13 04:30:16.398, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13915, 16380, 149.12, 68, 2505, 8751, P2
255
+ 2026/07/13 04:30:16.510, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14747, 16380, 149.12, 68, 2505, 8751, P2
256
+ 2026/07/13 04:30:16.621, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14907, 16380, 149.12, 68, 2505, 8751, P2
257
+ 2026/07/13 04:30:16.730, NVIDIA GeForce RTX 4060 Ti, 96, 64, 14907, 16380, 128.39, 64, 2730, 8751, P2
258
+ 2026/07/13 04:30:16.845, NVIDIA GeForce RTX 4060 Ti, 96, 64, 13627, 16380, 128.39, 64, 2730, 8751, P2
259
+ 2026/07/13 04:30:16.955, NVIDIA GeForce RTX 4060 Ti, 96, 64, 13627, 16380, 128.39, 64, 2730, 8751, P2
260
+ 2026/07/13 04:30:17.056, NVIDIA GeForce RTX 4060 Ti, 96, 64, 13627, 16380, 128.39, 64, 2730, 8751, P2
261
+ 2026/07/13 04:30:17.163, NVIDIA GeForce RTX 4060 Ti, 96, 64, 13627, 16380, 128.39, 64, 2730, 8751, P2
262
+ 2026/07/13 04:30:17.274, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14331, 16380, 87.98, 55, 2730, 8751, P2
263
+ 2026/07/13 04:30:17.385, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14331, 16380, 87.98, 55, 2730, 8751, P2
264
+ 2026/07/13 04:30:17.496, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14331, 16380, 87.98, 55, 2730, 8751, P2
265
+ 2026/07/13 04:30:17.607, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14331, 16380, 87.98, 55, 2730, 8751, P2
266
+ 2026/07/13 04:30:17.708, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 90.63, 67, 2595, 8751, P2
267
+ 2026/07/13 04:30:17.813, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 90.63, 67, 2595, 8751, P2
268
+ 2026/07/13 04:30:17.915, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 90.63, 67, 2595, 8751, P2
269
+ 2026/07/13 04:30:18.029, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 90.63, 67, 2595, 8751, P2
270
+ 2026/07/13 04:30:18.138, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 90.63, 67, 2595, 8751, P2
271
+ 2026/07/13 04:30:18.249, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 124.06, 68, 2730, 8751, P2
272
+ 2026/07/13 04:30:18.360, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 124.06, 68, 2730, 8751, P2
273
+ 2026/07/13 04:30:18.471, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 124.06, 68, 2730, 8751, P2
274
+ 2026/07/13 04:30:18.579, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 124.06, 68, 2730, 8751, P2
275
+ 2026/07/13 04:30:18.692, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.86, 67, 2685, 8751, P2
276
+ 2026/07/13 04:30:18.797, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.86, 67, 2685, 8751, P2
277
+ 2026/07/13 04:30:18.909, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.86, 67, 2685, 8751, P2
278
+ 2026/07/13 04:30:19.017, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.86, 67, 2685, 8751, P2
279
+ 2026/07/13 04:30:19.128, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.86, 67, 2685, 8751, P2
280
+ 2026/07/13 04:30:19.238, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 148.31, 69, 2730, 8751, P2
281
+ 2026/07/13 04:30:19.349, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 148.31, 69, 2730, 8751, P2
282
+ 2026/07/13 04:30:19.460, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 148.31, 69, 2730, 8751, P2
283
+ 2026/07/13 04:30:19.572, NVIDIA GeForce RTX 4060 Ti, 100, 63, 14331, 16380, 148.31, 69, 2730, 8751, P2
284
+ 2026/07/13 04:30:19.682, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.72, 68, 2640, 8751, P2
285
+ 2026/07/13 04:30:19.797, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.72, 68, 2640, 8751, P2
286
+ 2026/07/13 04:30:19.909, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.72, 68, 2640, 8751, P2
287
+ 2026/07/13 04:30:20.019, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.72, 68, 2640, 8751, P2
288
+ 2026/07/13 04:30:20.129, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 148.72, 68, 2640, 8751, P2
289
+ 2026/07/13 04:30:20.239, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14331, 16380, 148.46, 69, 2505, 8751, P2
290
+ 2026/07/13 04:30:20.349, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14331, 16380, 148.46, 69, 2505, 8751, P2
291
+ 2026/07/13 04:30:20.458, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14331, 16380, 148.46, 69, 2505, 8751, P2
292
+ 2026/07/13 04:30:20.568, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14331, 16380, 148.46, 69, 2505, 8751, P2
293
+ 2026/07/13 04:30:20.683, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 148.36, 68, 2640, 8751, P2
294
+ 2026/07/13 04:30:20.797, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 148.36, 68, 2640, 8751, P2
295
+ 2026/07/13 04:30:20.909, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 148.36, 68, 2640, 8751, P2
296
+ 2026/07/13 04:30:21.021, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 148.36, 68, 2640, 8751, P2
297
+ 2026/07/13 04:30:21.132, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 148.36, 68, 2640, 8751, P2
298
+ 2026/07/13 04:30:21.243, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 149.42, 69, 2520, 8751, P2
299
+ 2026/07/13 04:30:21.354, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 149.42, 69, 2520, 8751, P2
300
+ 2026/07/13 04:30:21.464, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 149.42, 69, 2520, 8751, P2
301
+ 2026/07/13 04:30:21.576, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 149.42, 69, 2520, 8751, P2
302
+ 2026/07/13 04:30:21.686, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.57, 68, 2715, 8751, P2
303
+ 2026/07/13 04:30:21.797, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.57, 68, 2715, 8751, P2
304
+ 2026/07/13 04:30:21.909, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.57, 68, 2715, 8751, P2
305
+ 2026/07/13 04:30:22.020, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.57, 68, 2715, 8751, P2
306
+ 2026/07/13 04:30:22.122, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.57, 68, 2715, 8751, P2
307
+ 2026/07/13 04:30:22.231, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.48, 67, 2700, 8751, P2
308
+ 2026/07/13 04:30:22.332, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.48, 67, 2700, 8751, P2
309
+ 2026/07/13 04:30:22.435, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.48, 67, 2700, 8751, P2
310
+ 2026/07/13 04:30:22.547, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.48, 67, 2700, 8751, P2
311
+ 2026/07/13 04:30:22.661, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.48, 67, 2700, 8751, P2
312
+ 2026/07/13 04:30:22.763, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.09, 67, 2700, 8751, P2
313
+ 2026/07/13 04:30:22.878, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.09, 67, 2700, 8751, P2
314
+ 2026/07/13 04:30:22.989, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.09, 67, 2700, 8751, P2
315
+ 2026/07/13 04:30:23.101, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.09, 67, 2700, 8751, P2
316
+ 2026/07/13 04:30:23.212, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.90, 67, 2700, 8751, P2
317
+ 2026/07/13 04:30:23.324, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.90, 67, 2700, 8751, P2
318
+ 2026/07/13 04:30:23.435, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.90, 67, 2700, 8751, P2
319
+ 2026/07/13 04:30:23.546, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.90, 67, 2700, 8751, P2
320
+ 2026/07/13 04:30:23.658, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.90, 67, 2700, 8751, P2
321
+ 2026/07/13 04:30:23.763, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
322
+ 2026/07/13 04:30:23.878, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
323
+ 2026/07/13 04:30:23.990, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
324
+ 2026/07/13 04:30:24.101, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
325
+ 2026/07/13 04:30:24.211, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.91, 67, 2715, 8751, P2
326
+ 2026/07/13 04:30:24.323, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.91, 67, 2715, 8751, P2
327
+ 2026/07/13 04:30:24.434, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.91, 67, 2715, 8751, P2
328
+ 2026/07/13 04:30:24.545, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.91, 67, 2715, 8751, P2
329
+ 2026/07/13 04:30:24.654, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 147.91, 67, 2715, 8751, P2
330
+ 2026/07/13 04:30:24.759, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
331
+ 2026/07/13 04:30:24.862, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
332
+ 2026/07/13 04:30:24.973, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
333
+ 2026/07/13 04:30:25.084, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14331, 16380, 148.90, 70, 2670, 8751, P2
334
+ 2026/07/13 04:30:25.195, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.92, 69, 2715, 8751, P2
335
+ 2026/07/13 04:30:25.305, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.92, 69, 2715, 8751, P2
336
+ 2026/07/13 04:30:25.417, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.92, 69, 2715, 8751, P2
337
+ 2026/07/13 04:30:25.528, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.92, 69, 2715, 8751, P2
338
+ 2026/07/13 04:30:25.639, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14331, 16380, 148.92, 69, 2715, 8751, P2
339
+ 2026/07/13 04:30:25.752, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.83, 71, 2655, 8751, P2
340
+ 2026/07/13 04:30:25.862, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.83, 71, 2655, 8751, P2
341
+ 2026/07/13 04:30:25.973, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.83, 71, 2655, 8751, P2
342
+ 2026/07/13 04:30:26.080, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14331, 16380, 148.83, 71, 2655, 8751, P2
343
+ 2026/07/13 04:30:26.192, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14331, 16380, 148.39, 69, 2700, 8751, P2
344
+ 2026/07/13 04:30:26.303, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14331, 16380, 148.39, 69, 2700, 8751, P2
345
+ 2026/07/13 04:30:26.414, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14331, 16380, 148.39, 69, 2700, 8751, P2
346
+ 2026/07/13 04:30:26.525, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14331, 16380, 148.39, 69, 2700, 8751, P2
347
+ 2026/07/13 04:30:26.628, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14331, 16380, 148.39, 69, 2700, 8751, P2
348
+ 2026/07/13 04:30:26.739, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 149.43, 70, 2730, 8751, P2
349
+ 2026/07/13 04:30:26.847, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 149.43, 70, 2730, 8751, P2
350
+ 2026/07/13 04:30:26.958, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 149.43, 70, 2730, 8751, P2
351
+ 2026/07/13 04:30:27.070, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 149.43, 70, 2730, 8751, P2
352
+ 2026/07/13 04:30:27.181, NVIDIA GeForce RTX 4060 Ti, 98, 64, 14331, 16380, 148.97, 69, 2670, 8751, P2
353
+ 2026/07/13 04:30:27.291, NVIDIA GeForce RTX 4060 Ti, 98, 64, 14331, 16380, 148.97, 69, 2670, 8751, P2
354
+ 2026/07/13 04:30:27.402, NVIDIA GeForce RTX 4060 Ti, 98, 64, 14331, 16380, 148.97, 69, 2670, 8751, P2
355
+ 2026/07/13 04:30:27.513, NVIDIA GeForce RTX 4060 Ti, 98, 64, 14331, 16380, 148.97, 69, 2670, 8751, P2
356
+ 2026/07/13 04:30:27.615, NVIDIA GeForce RTX 4060 Ti, 98, 64, 14331, 16380, 148.97, 69, 2670, 8751, P2
357
+ 2026/07/13 04:30:27.726, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 148.54, 70, 2730, 8751, P2
358
+ 2026/07/13 04:30:27.831, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 148.54, 70, 2730, 8751, P2
359
+ 2026/07/13 04:30:27.931, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 148.54, 70, 2730, 8751, P2
360
+ 2026/07/13 04:30:28.031, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 148.54, 70, 2730, 8751, P2
361
+ 2026/07/13 04:30:28.146, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14331, 16380, 148.54, 70, 2730, 8751, P2
362
+ 2026/07/13 04:30:28.256, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.70, 69, 2655, 8751, P2
363
+ 2026/07/13 04:30:28.363, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.70, 69, 2655, 8751, P2
364
+ 2026/07/13 04:30:28.474, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.70, 69, 2655, 8751, P2
365
+ 2026/07/13 04:30:28.579, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.70, 69, 2655, 8751, P2
366
+ 2026/07/13 04:30:28.690, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 149.99, 69, 2595, 8751, P2
367
+ 2026/07/13 04:30:28.797, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 149.99, 69, 2595, 8751, P2
368
+ 2026/07/13 04:30:28.909, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 149.99, 69, 2595, 8751, P2
369
+ 2026/07/13 04:30:29.020, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 149.99, 69, 2595, 8751, P2
370
+ 2026/07/13 04:30:29.130, NVIDIA GeForce RTX 4060 Ti, 100, 64, 14331, 16380, 149.99, 69, 2595, 8751, P2
371
+ 2026/07/13 04:30:29.241, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.52, 69, 2655, 8751, P2
372
+ 2026/07/13 04:30:29.352, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.52, 69, 2655, 8751, P2
373
+ 2026/07/13 04:30:29.463, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.52, 69, 2655, 8751, P2
374
+ 2026/07/13 04:30:29.573, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14331, 16380, 149.52, 69, 2655, 8751, P2
375
+ 2026/07/13 04:30:29.683, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 149.40, 70, 2625, 8751, P2
376
+ 2026/07/13 04:30:29.797, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 149.40, 70, 2625, 8751, P2
377
+ 2026/07/13 04:30:29.909, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 149.40, 70, 2625, 8751, P2
378
+ 2026/07/13 04:30:30.020, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 149.40, 70, 2625, 8751, P2
379
+ 2026/07/13 04:30:30.131, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 149.40, 70, 2625, 8751, P2
380
+ 2026/07/13 04:30:30.240, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14331, 16380, 150.07, 69, 2730, 8751, P2
381
+ 2026/07/13 04:30:30.350, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14523, 16380, 150.07, 69, 2730, 8751, P2
382
+ 2026/07/13 04:30:30.461, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14523, 16380, 150.07, 69, 2730, 8751, P2
383
+ 2026/07/13 04:30:30.572, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14587, 16380, 150.07, 69, 2730, 8751, P2
384
+ 2026/07/13 04:30:30.683, NVIDIA GeForce RTX 4060 Ti, 100, 87, 13275, 16380, 137.48, 65, 2730, 8751, P2
385
+ 2026/07/13 04:30:30.797, NVIDIA GeForce RTX 4060 Ti, 100, 87, 13275, 16380, 137.48, 65, 2730, 8751, P2
386
+ 2026/07/13 04:30:30.908, NVIDIA GeForce RTX 4060 Ti, 100, 87, 13275, 16380, 137.48, 65, 2730, 8751, P2
387
+ 2026/07/13 04:30:31.019, NVIDIA GeForce RTX 4060 Ti, 100, 87, 13275, 16380, 137.48, 65, 2730, 8751, P2
388
+ 2026/07/13 04:30:31.132, NVIDIA GeForce RTX 4060 Ti, 100, 87, 13275, 16380, 137.48, 65, 2730, 8751, P2
389
+ 2026/07/13 04:30:31.244, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13339, 16380, 91.13, 56, 2745, 8751, P2
390
+ 2026/07/13 04:30:31.352, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 91.13, 56, 2745, 8751, P2
391
+ 2026/07/13 04:30:31.462, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 91.13, 56, 2745, 8751, P2
392
+ 2026/07/13 04:30:31.573, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 91.13, 56, 2745, 8751, P2
393
+ 2026/07/13 04:30:31.684, NVIDIA GeForce RTX 4060 Ti, 100, 63, 13947, 16380, 82.78, 69, 2730, 8751, P2
394
+ 2026/07/13 04:30:31.796, NVIDIA GeForce RTX 4060 Ti, 100, 63, 13947, 16380, 82.78, 69, 2730, 8751, P2
395
+ 2026/07/13 04:30:31.910, NVIDIA GeForce RTX 4060 Ti, 100, 63, 13947, 16380, 82.78, 69, 2730, 8751, P2
396
+ 2026/07/13 04:30:32.021, NVIDIA GeForce RTX 4060 Ti, 100, 63, 13979, 16380, 82.78, 69, 2730, 8751, P2
397
+ 2026/07/13 04:30:32.132, NVIDIA GeForce RTX 4060 Ti, 100, 63, 13979, 16380, 82.78, 69, 2730, 8751, P2
398
+ 2026/07/13 04:30:32.243, NVIDIA GeForce RTX 4060 Ti, 100, 65, 13979, 16380, 123.37, 69, 2655, 8751, P2
399
+ 2026/07/13 04:30:32.354, NVIDIA GeForce RTX 4060 Ti, 100, 65, 13979, 16380, 123.37, 69, 2655, 8751, P2
400
+ 2026/07/13 04:30:32.465, NVIDIA GeForce RTX 4060 Ti, 100, 65, 13979, 16380, 123.37, 69, 2655, 8751, P2
401
+ 2026/07/13 04:30:32.576, NVIDIA GeForce RTX 4060 Ti, 100, 65, 13979, 16380, 123.37, 69, 2655, 8751, P2
402
+ 2026/07/13 04:30:32.687, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 149.38, 70, 2505, 8751, P2
403
+ 2026/07/13 04:30:32.798, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 149.38, 70, 2505, 8751, P2
404
+ 2026/07/13 04:30:32.910, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.38, 70, 2505, 8751, P2
405
+ 2026/07/13 04:30:33.019, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.38, 70, 2505, 8751, P2
406
+ 2026/07/13 04:30:33.130, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.38, 70, 2505, 8751, P2
407
+ 2026/07/13 04:30:33.241, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14043, 16380, 148.82, 69, 2640, 8751, P2
408
+ 2026/07/13 04:30:33.351, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14043, 16380, 148.82, 69, 2640, 8751, P2
409
+ 2026/07/13 04:30:33.461, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14043, 16380, 148.82, 69, 2640, 8751, P2
410
+ 2026/07/13 04:30:33.572, NVIDIA GeForce RTX 4060 Ti, 100, 65, 14043, 16380, 148.82, 69, 2640, 8751, P2
411
+ 2026/07/13 04:30:33.681, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.43, 70, 2505, 8751, P2
412
+ 2026/07/13 04:30:33.782, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.43, 70, 2505, 8751, P2
413
+ 2026/07/13 04:30:33.894, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.43, 70, 2505, 8751, P2
414
+ 2026/07/13 04:30:34.004, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.43, 70, 2505, 8751, P2
415
+ 2026/07/13 04:30:34.116, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 149.43, 70, 2505, 8751, P2
416
+ 2026/07/13 04:30:34.227, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.56, 68, 2715, 8751, P2
417
+ 2026/07/13 04:30:34.337, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.56, 68, 2715, 8751, P2
418
+ 2026/07/13 04:30:34.448, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.56, 68, 2715, 8751, P2
419
+ 2026/07/13 04:30:34.563, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.56, 68, 2715, 8751, P2
420
+ 2026/07/13 04:30:34.673, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.56, 68, 2715, 8751, P2
421
+ 2026/07/13 04:30:34.781, NVIDIA GeForce RTX 4060 Ti, 97, 69, 14043, 16380, 148.87, 70, 2505, 8751, P2
422
+ 2026/07/13 04:30:34.895, NVIDIA GeForce RTX 4060 Ti, 97, 69, 14043, 16380, 148.87, 70, 2505, 8751, P2
423
+ 2026/07/13 04:30:34.996, NVIDIA GeForce RTX 4060 Ti, 97, 69, 14043, 16380, 148.87, 70, 2505, 8751, P2
424
+ 2026/07/13 04:30:35.109, NVIDIA GeForce RTX 4060 Ti, 97, 69, 14043, 16380, 148.87, 70, 2505, 8751, P2
425
+ 2026/07/13 04:30:35.221, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.24, 68, 2715, 8751, P2
426
+ 2026/07/13 04:30:35.331, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.24, 68, 2715, 8751, P2
427
+ 2026/07/13 04:30:35.442, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.24, 68, 2715, 8751, P2
428
+ 2026/07/13 04:30:35.544, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.24, 68, 2715, 8751, P2
429
+ 2026/07/13 04:30:35.647, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.24, 68, 2715, 8751, P2
430
+ 2026/07/13 04:30:35.747, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.65, 69, 2640, 8751, P2
431
+ 2026/07/13 04:30:35.848, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.65, 69, 2640, 8751, P2
432
+ 2026/07/13 04:30:35.963, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.65, 69, 2640, 8751, P2
433
+ 2026/07/13 04:30:36.076, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.65, 69, 2640, 8751, P2
434
+ 2026/07/13 04:30:36.179, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.29, 70, 2505, 8751, P2
435
+ 2026/07/13 04:30:36.281, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.29, 70, 2505, 8751, P2
436
+ 2026/07/13 04:30:36.396, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.29, 70, 2505, 8751, P2
437
+ 2026/07/13 04:30:36.497, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.29, 70, 2505, 8751, P2
438
+ 2026/07/13 04:30:36.612, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.29, 70, 2505, 8751, P2
439
+ 2026/07/13 04:30:36.713, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.35, 69, 2640, 8751, P2
440
+ 2026/07/13 04:30:36.813, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.35, 69, 2640, 8751, P2
441
+ 2026/07/13 04:30:36.927, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.35, 69, 2640, 8751, P2
442
+ 2026/07/13 04:30:37.037, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.35, 69, 2640, 8751, P2
443
+ 2026/07/13 04:30:37.147, NVIDIA GeForce RTX 4060 Ti, 100, 66, 14043, 16380, 148.35, 69, 2640, 8751, P2
444
+ 2026/07/13 04:30:37.256, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.84, 70, 2505, 8751, P2
445
+ 2026/07/13 04:30:37.367, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.84, 70, 2505, 8751, P2
446
+ 2026/07/13 04:30:37.477, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.84, 70, 2505, 8751, P2
447
+ 2026/07/13 04:30:37.588, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.84, 70, 2505, 8751, P2
448
+ 2026/07/13 04:30:37.698, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.19, 69, 2715, 8751, P2
449
+ 2026/07/13 04:30:37.798, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.19, 69, 2715, 8751, P2
450
+ 2026/07/13 04:30:37.909, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.19, 69, 2715, 8751, P2
451
+ 2026/07/13 04:30:38.019, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.19, 69, 2715, 8751, P2
452
+ 2026/07/13 04:30:38.131, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.19, 69, 2715, 8751, P2
453
+ 2026/07/13 04:30:38.245, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.83, 70, 2505, 8751, P2
454
+ 2026/07/13 04:30:38.346, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.83, 70, 2505, 8751, P2
455
+ 2026/07/13 04:30:38.447, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.83, 70, 2505, 8751, P2
456
+ 2026/07/13 04:30:38.561, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.83, 70, 2505, 8751, P2
457
+ 2026/07/13 04:30:38.665, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.83, 70, 2505, 8751, P2
458
+ 2026/07/13 04:30:38.765, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.68, 69, 2715, 8751, P2
459
+ 2026/07/13 04:30:38.879, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.68, 69, 2715, 8751, P2
460
+ 2026/07/13 04:30:38.990, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.68, 69, 2715, 8751, P2
461
+ 2026/07/13 04:30:39.101, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.68, 69, 2715, 8751, P2
462
+ 2026/07/13 04:30:39.212, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 149.02, 68, 2640, 8751, P2
463
+ 2026/07/13 04:30:39.323, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 149.02, 68, 2640, 8751, P2
464
+ 2026/07/13 04:30:39.434, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 149.02, 68, 2640, 8751, P2
465
+ 2026/07/13 04:30:39.548, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 149.02, 68, 2640, 8751, P2
466
+ 2026/07/13 04:30:39.660, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 149.02, 68, 2640, 8751, P2
467
+ 2026/07/13 04:30:39.765, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.62, 69, 2715, 8751, P2
468
+ 2026/07/13 04:30:39.878, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.62, 69, 2715, 8751, P2
469
+ 2026/07/13 04:30:39.979, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.62, 69, 2715, 8751, P2
470
+ 2026/07/13 04:30:40.080, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.62, 69, 2715, 8751, P2
471
+ 2026/07/13 04:30:40.182, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.21, 68, 2640, 8751, P2
472
+ 2026/07/13 04:30:40.297, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.21, 68, 2640, 8751, P2
473
+ 2026/07/13 04:30:40.398, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.21, 68, 2640, 8751, P2
474
+ 2026/07/13 04:30:40.513, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.21, 68, 2640, 8751, P2
475
+ 2026/07/13 04:30:40.629, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.21, 68, 2640, 8751, P2
476
+ 2026/07/13 04:30:40.740, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.98, 70, 2505, 8751, P2
477
+ 2026/07/13 04:30:40.847, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.98, 70, 2505, 8751, P2
478
+ 2026/07/13 04:30:40.959, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.98, 70, 2505, 8751, P2
479
+ 2026/07/13 04:30:41.069, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.98, 70, 2505, 8751, P2
480
+ 2026/07/13 04:30:41.178, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.98, 70, 2505, 8751, P2
481
+ 2026/07/13 04:30:41.289, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 147.97, 69, 2640, 8751, P2
482
+ 2026/07/13 04:30:41.400, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 147.97, 69, 2640, 8751, P2
483
+ 2026/07/13 04:30:41.511, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 147.97, 69, 2640, 8751, P2
484
+ 2026/07/13 04:30:41.622, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 147.97, 69, 2640, 8751, P2
485
+ 2026/07/13 04:30:41.733, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.69, 70, 2505, 8751, P2
486
+ 2026/07/13 04:30:41.847, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.69, 70, 2505, 8751, P2
487
+ 2026/07/13 04:30:41.957, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.69, 70, 2505, 8751, P2
488
+ 2026/07/13 04:30:42.059, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.69, 70, 2505, 8751, P2
489
+ 2026/07/13 04:30:42.164, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.69, 70, 2505, 8751, P2
490
+ 2026/07/13 04:30:42.282, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 68, 2715, 8751, P2
491
+ 2026/07/13 04:30:42.398, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 68, 2715, 8751, P2
492
+ 2026/07/13 04:30:42.513, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 68, 2715, 8751, P2
493
+ 2026/07/13 04:30:42.614, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 68, 2715, 8751, P2
494
+ 2026/07/13 04:30:42.715, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.91, 69, 2640, 8751, P2
495
+ 2026/07/13 04:30:42.829, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.91, 69, 2640, 8751, P2
496
+ 2026/07/13 04:30:42.931, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.91, 69, 2640, 8751, P2
497
+ 2026/07/13 04:30:43.032, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.91, 69, 2640, 8751, P2
498
+ 2026/07/13 04:30:43.142, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.91, 69, 2640, 8751, P2
499
+ 2026/07/13 04:30:43.253, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.51, 68, 2715, 8751, P2
500
+ 2026/07/13 04:30:43.364, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.51, 68, 2715, 8751, P2
501
+ 2026/07/13 04:30:43.475, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.51, 68, 2715, 8751, P2
502
+ 2026/07/13 04:30:43.578, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.51, 68, 2715, 8751, P2
503
+ 2026/07/13 04:30:43.694, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 70, 2640, 8751, P2
504
+ 2026/07/13 04:30:43.798, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 70, 2640, 8751, P2
505
+ 2026/07/13 04:30:43.898, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 70, 2640, 8751, P2
506
+ 2026/07/13 04:30:44.014, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 70, 2640, 8751, P2
507
+ 2026/07/13 04:30:44.114, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 70, 2640, 8751, P2
508
+ 2026/07/13 04:30:44.226, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 71, 2550, 8751, P2
509
+ 2026/07/13 04:30:44.330, NVIDIA GeForce RTX 4060 Ti, 100, 69, 13339, 16380, 148.88, 71, 2550, 8751, P2
510
+ 2026/07/13 04:30:44.444, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14811, 16380, 148.88, 71, 2550, 8751, P2
511
+ 2026/07/13 04:30:44.554, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14811, 16380, 148.88, 71, 2550, 8751, P2
512
+ 2026/07/13 04:30:44.665, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14811, 16380, 148.88, 71, 2550, 8751, P2
513
+ 2026/07/13 04:30:44.766, NVIDIA GeForce RTX 4060 Ti, 100, 83, 13339, 16380, 140.91, 66, 2730, 8751, P2
514
+ 2026/07/13 04:30:44.878, NVIDIA GeForce RTX 4060 Ti, 100, 83, 13339, 16380, 140.91, 66, 2730, 8751, P2
515
+ 2026/07/13 04:30:44.988, NVIDIA GeForce RTX 4060 Ti, 100, 83, 13339, 16380, 140.91, 66, 2730, 8751, P2
516
+ 2026/07/13 04:30:45.099, NVIDIA GeForce RTX 4060 Ti, 100, 83, 13339, 16380, 140.91, 66, 2730, 8751, P2
517
+ 2026/07/13 04:30:45.210, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14043, 16380, 95.13, 57, 2745, 8751, P2
518
+ 2026/07/13 04:30:45.320, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14043, 16380, 95.13, 57, 2745, 8751, P2
519
+ 2026/07/13 04:30:45.430, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14043, 16380, 95.13, 57, 2745, 8751, P2
520
+ 2026/07/13 04:30:45.541, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14043, 16380, 95.13, 57, 2745, 8751, P2
521
+ 2026/07/13 04:30:45.652, NVIDIA GeForce RTX 4060 Ti, 0, 0, 14043, 16380, 95.13, 57, 2745, 8751, P2
522
+ 2026/07/13 04:30:45.765, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 93.30, 70, 2505, 8751, P2
523
+ 2026/07/13 04:30:45.879, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 93.30, 70, 2505, 8751, P2
524
+ 2026/07/13 04:30:45.988, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 93.30, 70, 2505, 8751, P2
525
+ 2026/07/13 04:30:46.097, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 93.30, 70, 2505, 8751, P2
526
+ 2026/07/13 04:30:46.206, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 131.95, 69, 2715, 8751, P2
527
+ 2026/07/13 04:30:46.315, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 131.95, 69, 2715, 8751, P2
528
+ 2026/07/13 04:30:46.424, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 131.95, 69, 2715, 8751, P2
529
+ 2026/07/13 04:30:46.532, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 131.95, 69, 2715, 8751, P2
530
+ 2026/07/13 04:30:46.642, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 131.95, 69, 2715, 8751, P2
531
+ 2026/07/13 04:30:46.748, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.53, 69, 2655, 8751, P2
532
+ 2026/07/13 04:30:46.862, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.53, 69, 2655, 8751, P2
533
+ 2026/07/13 04:30:46.972, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.53, 69, 2655, 8751, P2
534
+ 2026/07/13 04:30:47.084, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.53, 69, 2655, 8751, P2
535
+ 2026/07/13 04:30:47.195, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.27, 69, 2715, 8751, P2
536
+ 2026/07/13 04:30:47.306, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.27, 69, 2715, 8751, P2
537
+ 2026/07/13 04:30:47.418, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.27, 69, 2715, 8751, P2
538
+ 2026/07/13 04:30:47.529, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.27, 69, 2715, 8751, P2
539
+ 2026/07/13 04:30:47.640, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.27, 69, 2715, 8751, P2
540
+ 2026/07/13 04:30:47.749, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 69, 2655, 8751, P2
541
+ 2026/07/13 04:30:47.863, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 69, 2655, 8751, P2
542
+ 2026/07/13 04:30:47.974, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 69, 2655, 8751, P2
543
+ 2026/07/13 04:30:48.085, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.15, 69, 2655, 8751, P2
544
+ 2026/07/13 04:30:48.196, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.03, 69, 2595, 8751, P2
545
+ 2026/07/13 04:30:48.306, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.03, 69, 2595, 8751, P2
546
+ 2026/07/13 04:30:48.417, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.03, 69, 2595, 8751, P2
547
+ 2026/07/13 04:30:48.527, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.03, 69, 2595, 8751, P2
548
+ 2026/07/13 04:30:48.636, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.03, 69, 2595, 8751, P2
549
+ 2026/07/13 04:30:48.749, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.13, 69, 2655, 8751, P2
550
+ 2026/07/13 04:30:48.863, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.13, 69, 2655, 8751, P2
551
+ 2026/07/13 04:30:48.974, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.13, 69, 2655, 8751, P2
552
+ 2026/07/13 04:30:49.084, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.13, 69, 2655, 8751, P2
553
+ 2026/07/13 04:30:49.196, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.85, 69, 2595, 8751, P2
554
+ 2026/07/13 04:30:49.305, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.85, 69, 2595, 8751, P2
555
+ 2026/07/13 04:30:49.415, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.85, 69, 2595, 8751, P2
556
+ 2026/07/13 04:30:49.528, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.85, 69, 2595, 8751, P2
557
+ 2026/07/13 04:30:49.639, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.85, 69, 2595, 8751, P2
558
+ 2026/07/13 04:30:49.751, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.75, 68, 2700, 8751, P2
559
+ 2026/07/13 04:30:49.863, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.75, 68, 2700, 8751, P2
560
+ 2026/07/13 04:30:49.974, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.75, 68, 2700, 8751, P2
561
+ 2026/07/13 04:30:50.077, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.75, 68, 2700, 8751, P2
562
+ 2026/07/13 04:30:50.186, NVIDIA GeForce RTX 4060 Ti, 98, 71, 14043, 16380, 147.01, 69, 2505, 8751, P2
563
+ 2026/07/13 04:30:50.297, NVIDIA GeForce RTX 4060 Ti, 98, 71, 14043, 16380, 147.01, 69, 2505, 8751, P2
564
+ 2026/07/13 04:30:50.408, NVIDIA GeForce RTX 4060 Ti, 98, 71, 14043, 16380, 147.01, 69, 2505, 8751, P2
565
+ 2026/07/13 04:30:50.518, NVIDIA GeForce RTX 4060 Ti, 98, 71, 14043, 16380, 147.01, 69, 2505, 8751, P2
566
+ 2026/07/13 04:30:50.630, NVIDIA GeForce RTX 4060 Ti, 98, 71, 14043, 16380, 147.01, 69, 2505, 8751, P2
567
+ 2026/07/13 04:30:50.740, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 147.22, 68, 2715, 8751, P2
568
+ 2026/07/13 04:30:50.848, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 147.22, 68, 2715, 8751, P2
569
+ 2026/07/13 04:30:50.959, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 147.22, 68, 2715, 8751, P2
570
+ 2026/07/13 04:30:51.070, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 147.22, 68, 2715, 8751, P2
571
+ 2026/07/13 04:30:51.181, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 147.17, 68, 2670, 8751, P2
572
+ 2026/07/13 04:30:51.292, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 147.17, 68, 2670, 8751, P2
573
+ 2026/07/13 04:30:51.404, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 147.17, 68, 2670, 8751, P2
574
+ 2026/07/13 04:30:51.515, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 147.17, 68, 2670, 8751, P2
575
+ 2026/07/13 04:30:51.626, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 147.17, 68, 2670, 8751, P2
576
+ 2026/07/13 04:30:51.726, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.83, 70, 2595, 8751, P2
577
+ 2026/07/13 04:30:51.832, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.83, 70, 2595, 8751, P2
578
+ 2026/07/13 04:30:51.942, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.83, 70, 2595, 8751, P2
579
+ 2026/07/13 04:30:52.053, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.83, 70, 2595, 8751, P2
580
+ 2026/07/13 04:30:52.164, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.83, 70, 2595, 8751, P2
581
+ 2026/07/13 04:30:52.276, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.13, 68, 2670, 8751, P2
582
+ 2026/07/13 04:30:52.387, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.13, 68, 2670, 8751, P2
583
+ 2026/07/13 04:30:52.498, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.13, 68, 2670, 8751, P2
584
+ 2026/07/13 04:30:52.608, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.13, 68, 2670, 8751, P2
585
+ 2026/07/13 04:30:52.718, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.27, 71, 2625, 8751, P2
586
+ 2026/07/13 04:30:52.830, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.27, 71, 2625, 8751, P2
587
+ 2026/07/13 04:30:52.941, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.27, 71, 2625, 8751, P2
588
+ 2026/07/13 04:30:53.051, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.27, 71, 2625, 8751, P2
589
+ 2026/07/13 04:30:53.161, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.27, 71, 2625, 8751, P2
590
+ 2026/07/13 04:30:53.271, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.73, 68, 2730, 8751, P2
591
+ 2026/07/13 04:30:53.382, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.73, 68, 2730, 8751, P2
592
+ 2026/07/13 04:30:53.493, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.73, 68, 2730, 8751, P2
593
+ 2026/07/13 04:30:53.604, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.73, 68, 2730, 8751, P2
594
+ 2026/07/13 04:30:53.715, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.26, 71, 2610, 8751, P2
595
+ 2026/07/13 04:30:53.831, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.26, 71, 2610, 8751, P2
596
+ 2026/07/13 04:30:53.942, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.26, 71, 2610, 8751, P2
597
+ 2026/07/13 04:30:54.053, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.26, 71, 2610, 8751, P2
598
+ 2026/07/13 04:30:54.163, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.26, 71, 2610, 8751, P2
599
+ 2026/07/13 04:30:54.273, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.63, 69, 2700, 8751, P2
600
+ 2026/07/13 04:30:54.381, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.63, 69, 2700, 8751, P2
601
+ 2026/07/13 04:30:54.492, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.63, 69, 2700, 8751, P2
602
+ 2026/07/13 04:30:54.601, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.63, 69, 2700, 8751, P2
603
+ 2026/07/13 04:30:54.711, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.08, 69, 2700, 8751, P2
604
+ 2026/07/13 04:30:54.813, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.08, 69, 2700, 8751, P2
605
+ 2026/07/13 04:30:54.928, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.08, 69, 2700, 8751, P2
606
+ 2026/07/13 04:30:55.038, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.08, 69, 2700, 8751, P2
607
+ 2026/07/13 04:30:55.140, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.08, 69, 2700, 8751, P2
608
+ 2026/07/13 04:30:55.246, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.07, 69, 2700, 8751, P2
609
+ 2026/07/13 04:30:55.357, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.07, 69, 2700, 8751, P2
610
+ 2026/07/13 04:30:55.462, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.07, 69, 2700, 8751, P2
611
+ 2026/07/13 04:30:55.571, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.07, 69, 2700, 8751, P2
612
+ 2026/07/13 04:30:55.681, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 147.76, 69, 2700, 8751, P2
613
+ 2026/07/13 04:30:55.782, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 147.76, 69, 2700, 8751, P2
614
+ 2026/07/13 04:30:55.884, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 147.76, 69, 2700, 8751, P2
615
+ 2026/07/13 04:30:55.988, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 147.76, 69, 2700, 8751, P2
616
+ 2026/07/13 04:30:56.092, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 147.76, 69, 2700, 8751, P2
617
+ 2026/07/13 04:30:56.193, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.10, 70, 2670, 8751, P2
618
+ 2026/07/13 04:30:56.300, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.10, 70, 2670, 8751, P2
619
+ 2026/07/13 04:30:56.411, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.10, 70, 2670, 8751, P2
620
+ 2026/07/13 04:30:56.523, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.10, 70, 2670, 8751, P2
621
+ 2026/07/13 04:30:56.628, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 149.10, 70, 2670, 8751, P2
622
+ 2026/07/13 04:30:56.740, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.77, 69, 2730, 8751, P2
623
+ 2026/07/13 04:30:56.849, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.77, 69, 2730, 8751, P2
624
+ 2026/07/13 04:30:56.964, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.77, 69, 2730, 8751, P2
625
+ 2026/07/13 04:30:57.078, NVIDIA GeForce RTX 4060 Ti, 100, 61, 14043, 16380, 148.77, 69, 2730, 8751, P2
626
+ 2026/07/13 04:30:57.189, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.97, 70, 2655, 8751, P2
627
+ 2026/07/13 04:30:57.300, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.97, 70, 2655, 8751, P2
628
+ 2026/07/13 04:30:57.411, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.97, 70, 2655, 8751, P2
629
+ 2026/07/13 04:30:57.523, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.97, 70, 2655, 8751, P2
630
+ 2026/07/13 04:30:57.633, NVIDIA GeForce RTX 4060 Ti, 100, 70, 14043, 16380, 148.97, 70, 2655, 8751, P2
631
+ 2026/07/13 04:30:57.744, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.34, 68, 2715, 8751, P2
632
+ 2026/07/13 04:30:57.848, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.34, 68, 2715, 8751, P2
633
+ 2026/07/13 04:30:57.959, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.34, 68, 2715, 8751, P2
634
+ 2026/07/13 04:30:58.068, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.34, 68, 2715, 8751, P2
635
+ 2026/07/13 04:30:58.178, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.34, 68, 2715, 8751, P2
636
+ 2026/07/13 04:30:58.293, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14235, 16380, 148.89, 69, 2715, 8751, P2
637
+ 2026/07/13 04:30:58.401, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14235, 16380, 148.89, 69, 2715, 8751, P2
638
+ 2026/07/13 04:30:58.511, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14587, 16380, 148.89, 69, 2715, 8751, P2
639
+ 2026/07/13 04:30:58.621, NVIDIA GeForce RTX 4060 Ti, 100, 69, 13275, 16380, 148.89, 69, 2715, 8751, P2
640
+ 2026/07/13 04:30:58.729, NVIDIA GeForce RTX 4060 Ti, 98, 93, 13275, 16380, 137.60, 61, 2730, 8751, P2
641
+ 2026/07/13 04:30:58.831, NVIDIA GeForce RTX 4060 Ti, 98, 93, 13275, 16380, 137.60, 61, 2730, 8751, P2
642
+ 2026/07/13 04:30:58.931, NVIDIA GeForce RTX 4060 Ti, 98, 93, 13275, 16380, 137.60, 61, 2730, 8751, P2
643
+ 2026/07/13 04:30:59.046, NVIDIA GeForce RTX 4060 Ti, 98, 93, 13275, 16380, 137.60, 61, 2730, 8751, P2
644
+ 2026/07/13 04:30:59.157, NVIDIA GeForce RTX 4060 Ti, 98, 93, 13947, 16380, 137.60, 61, 2730, 8751, P2
645
+ 2026/07/13 04:30:59.261, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 85.69, 61, 2745, 8751, P2
646
+ 2026/07/13 04:30:59.362, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 85.69, 61, 2745, 8751, P2
647
+ 2026/07/13 04:30:59.463, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 85.69, 61, 2745, 8751, P2
648
+ 2026/07/13 04:30:59.575, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 85.69, 61, 2745, 8751, P2
649
+ 2026/07/13 04:30:59.678, NVIDIA GeForce RTX 4060 Ti, 0, 0, 13947, 16380, 85.69, 61, 2745, 8751, P2
650
+ 2026/07/13 04:30:59.782, NVIDIA GeForce RTX 4060 Ti, 100, 60, 13947, 16380, 92.02, 68, 2640, 8751, P2
651
+ 2026/07/13 04:30:59.894, NVIDIA GeForce RTX 4060 Ti, 100, 60, 13979, 16380, 92.02, 68, 2640, 8751, P2
652
+ 2026/07/13 04:31:00.004, NVIDIA GeForce RTX 4060 Ti, 100, 60, 13979, 16380, 92.02, 68, 2640, 8751, P2
653
+ 2026/07/13 04:31:00.114, NVIDIA GeForce RTX 4060 Ti, 100, 60, 13979, 16380, 92.02, 68, 2640, 8751, P2
654
+ 2026/07/13 04:31:00.224, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 136.57, 69, 2700, 8751, P2
655
+ 2026/07/13 04:31:00.336, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 136.57, 69, 2700, 8751, P2
656
+ 2026/07/13 04:31:00.446, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 136.57, 69, 2700, 8751, P2
657
+ 2026/07/13 04:31:00.558, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 136.57, 69, 2700, 8751, P2
658
+ 2026/07/13 04:31:00.669, NVIDIA GeForce RTX 4060 Ti, 100, 68, 13979, 16380, 136.57, 69, 2700, 8751, P2
659
+ 2026/07/13 04:31:00.781, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.74, 69, 2655, 8751, P2
660
+ 2026/07/13 04:31:00.893, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.74, 69, 2655, 8751, P2
661
+ 2026/07/13 04:31:01.003, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.74, 69, 2655, 8751, P2
662
+ 2026/07/13 04:31:01.114, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.74, 69, 2655, 8751, P2
663
+ 2026/07/13 04:31:01.225, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.24, 69, 2700, 8751, P2
664
+ 2026/07/13 04:31:01.336, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.24, 69, 2700, 8751, P2
665
+ 2026/07/13 04:31:01.447, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.24, 69, 2700, 8751, P2
666
+ 2026/07/13 04:31:01.558, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.24, 69, 2700, 8751, P2
667
+ 2026/07/13 04:31:01.670, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.24, 69, 2700, 8751, P2
668
+ 2026/07/13 04:31:01.782, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.07, 70, 2655, 8751, P2
669
+ 2026/07/13 04:31:01.895, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.07, 70, 2655, 8751, P2
670
+ 2026/07/13 04:31:02.006, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.07, 70, 2655, 8751, P2
671
+ 2026/07/13 04:31:02.115, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.07, 70, 2655, 8751, P2
672
+ 2026/07/13 04:31:02.224, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.14, 68, 2595, 8751, P2
673
+ 2026/07/13 04:31:02.333, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.14, 68, 2595, 8751, P2
674
+ 2026/07/13 04:31:02.443, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.14, 68, 2595, 8751, P2
675
+ 2026/07/13 04:31:02.552, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.14, 68, 2595, 8751, P2
676
+ 2026/07/13 04:31:02.664, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.14, 68, 2595, 8751, P2
677
+ 2026/07/13 04:31:02.766, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.24, 70, 2640, 8751, P2
678
+ 2026/07/13 04:31:02.880, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.24, 70, 2640, 8751, P2
679
+ 2026/07/13 04:31:02.991, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.24, 70, 2640, 8751, P2
680
+ 2026/07/13 04:31:03.103, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.24, 70, 2640, 8751, P2
681
+ 2026/07/13 04:31:03.213, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.61, 68, 2565, 8751, P2
682
+ 2026/07/13 04:31:03.324, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.61, 68, 2565, 8751, P2
683
+ 2026/07/13 04:31:03.433, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.61, 68, 2565, 8751, P2
684
+ 2026/07/13 04:31:03.548, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.61, 68, 2565, 8751, P2
685
+ 2026/07/13 04:31:03.659, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.61, 68, 2565, 8751, P2
686
+ 2026/07/13 04:31:03.764, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.96, 69, 2700, 8751, P2
687
+ 2026/07/13 04:31:03.879, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.96, 69, 2700, 8751, P2
688
+ 2026/07/13 04:31:03.991, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.96, 69, 2700, 8751, P2
689
+ 2026/07/13 04:31:04.093, NVIDIA GeForce RTX 4060 Ti, 100, 68, 14043, 16380, 148.96, 69, 2700, 8751, P2
690
+ 2026/07/13 04:31:04.203, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 148.21, 69, 2505, 8751, P2
691
+ 2026/07/13 04:31:04.304, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 148.21, 69, 2505, 8751, P2
692
+ 2026/07/13 04:31:04.419, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 148.21, 69, 2505, 8751, P2
693
+ 2026/07/13 04:31:04.530, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 148.21, 69, 2505, 8751, P2
694
+ 2026/07/13 04:31:04.641, NVIDIA GeForce RTX 4060 Ti, 98, 62, 14043, 16380, 148.21, 69, 2505, 8751, P2
695
+ 2026/07/13 04:31:04.749, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 147.84, 69, 2700, 8751, P2
696
+ 2026/07/13 04:31:04.863, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 147.84, 69, 2700, 8751, P2
697
+ 2026/07/13 04:31:04.975, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 147.84, 69, 2700, 8751, P2
698
+ 2026/07/13 04:31:05.085, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 147.84, 69, 2700, 8751, P2
699
+ 2026/07/13 04:31:05.195, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 70, 2655, 8751, P2
700
+ 2026/07/13 04:31:05.306, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 70, 2655, 8751, P2
701
+ 2026/07/13 04:31:05.416, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 70, 2655, 8751, P2
702
+ 2026/07/13 04:31:05.527, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 70, 2655, 8751, P2
703
+ 2026/07/13 04:31:05.637, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.88, 70, 2655, 8751, P2
704
+ 2026/07/13 04:31:05.747, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.24, 68, 2595, 8751, P2
705
+ 2026/07/13 04:31:05.860, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.24, 68, 2595, 8751, P2
706
+ 2026/07/13 04:31:05.970, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.24, 68, 2595, 8751, P2
707
+ 2026/07/13 04:31:06.081, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.24, 68, 2595, 8751, P2
708
+ 2026/07/13 04:31:06.192, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.11, 70, 2640, 8751, P2
709
+ 2026/07/13 04:31:06.303, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.11, 70, 2640, 8751, P2
710
+ 2026/07/13 04:31:06.414, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.11, 70, 2640, 8751, P2
711
+ 2026/07/13 04:31:06.523, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.11, 70, 2640, 8751, P2
712
+ 2026/07/13 04:31:06.632, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.11, 70, 2640, 8751, P2
713
+ 2026/07/13 04:31:06.742, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.60, 68, 2535, 8751, P2
714
+ 2026/07/13 04:31:06.848, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.60, 68, 2535, 8751, P2
715
+ 2026/07/13 04:31:06.958, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.60, 68, 2535, 8751, P2
716
+ 2026/07/13 04:31:07.068, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.60, 68, 2535, 8751, P2
717
+ 2026/07/13 04:31:07.178, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.60, 68, 2535, 8751, P2
718
+ 2026/07/13 04:31:07.288, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.87, 69, 2700, 8751, P2
719
+ 2026/07/13 04:31:07.398, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.87, 69, 2700, 8751, P2
720
+ 2026/07/13 04:31:07.508, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.87, 69, 2700, 8751, P2
721
+ 2026/07/13 04:31:07.619, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.87, 69, 2700, 8751, P2
722
+ 2026/07/13 04:31:07.730, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.69, 69, 2520, 8751, P2
723
+ 2026/07/13 04:31:07.831, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.69, 69, 2520, 8751, P2
724
+ 2026/07/13 04:31:07.942, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.69, 69, 2520, 8751, P2
725
+ 2026/07/13 04:31:08.054, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.69, 69, 2520, 8751, P2
726
+ 2026/07/13 04:31:08.165, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.69, 69, 2520, 8751, P2
727
+ 2026/07/13 04:31:08.276, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.72, 70, 2700, 8751, P2
728
+ 2026/07/13 04:31:08.388, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.72, 70, 2700, 8751, P2
729
+ 2026/07/13 04:31:08.499, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.72, 70, 2700, 8751, P2
730
+ 2026/07/13 04:31:08.610, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.72, 70, 2700, 8751, P2
731
+ 2026/07/13 04:31:08.721, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.33, 71, 2655, 8751, P2
732
+ 2026/07/13 04:31:08.832, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.33, 71, 2655, 8751, P2
733
+ 2026/07/13 04:31:08.943, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.33, 71, 2655, 8751, P2
734
+ 2026/07/13 04:31:09.053, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.33, 71, 2655, 8751, P2
735
+ 2026/07/13 04:31:09.164, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 149.33, 71, 2655, 8751, P2
736
+ 2026/07/13 04:31:09.275, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.42, 70, 2700, 8751, P2
737
+ 2026/07/13 04:31:09.386, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.42, 70, 2700, 8751, P2
738
+ 2026/07/13 04:31:09.497, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.42, 70, 2700, 8751, P2
739
+ 2026/07/13 04:31:09.609, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.42, 70, 2700, 8751, P2
740
+ 2026/07/13 04:31:09.720, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.93, 71, 2640, 8751, P2
741
+ 2026/07/13 04:31:09.832, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.93, 71, 2640, 8751, P2
742
+ 2026/07/13 04:31:09.943, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.93, 71, 2640, 8751, P2
743
+ 2026/07/13 04:31:10.055, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.93, 71, 2640, 8751, P2
744
+ 2026/07/13 04:31:10.166, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14043, 16380, 148.93, 71, 2640, 8751, P2
745
+ 2026/07/13 04:31:10.277, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.21, 69, 2535, 8751, P2
746
+ 2026/07/13 04:31:10.388, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.21, 69, 2535, 8751, P2
747
+ 2026/07/13 04:31:10.498, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.21, 69, 2535, 8751, P2
748
+ 2026/07/13 04:31:10.609, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 149.21, 69, 2535, 8751, P2
749
+ 2026/07/13 04:31:10.717, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14043, 16380, 148.71, 71, 2640, 8751, P2
750
+ 2026/07/13 04:31:10.831, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14043, 16380, 148.71, 71, 2640, 8751, P2
751
+ 2026/07/13 04:31:10.942, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14043, 16380, 148.71, 71, 2640, 8751, P2
752
+ 2026/07/13 04:31:11.053, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14043, 16380, 148.71, 71, 2640, 8751, P2
753
+ 2026/07/13 04:31:11.164, NVIDIA GeForce RTX 4060 Ti, 98, 70, 14043, 16380, 148.71, 71, 2640, 8751, P2
754
+ 2026/07/13 04:31:11.276, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 69, 2505, 8751, P2
755
+ 2026/07/13 04:31:11.387, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 69, 2505, 8751, P2
756
+ 2026/07/13 04:31:11.497, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 69, 2505, 8751, P2
757
+ 2026/07/13 04:31:11.607, NVIDIA GeForce RTX 4060 Ti, 100, 60, 14043, 16380, 148.24, 69, 2505, 8751, P2
758
+ 2026/07/13 04:31:11.718, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.00, 70, 2700, 8751, P2
759
+ 2026/07/13 04:31:11.831, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.00, 70, 2700, 8751, P2
760
+ 2026/07/13 04:31:11.941, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.00, 70, 2700, 8751, P2
761
+ 2026/07/13 04:31:12.052, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.00, 70, 2700, 8751, P2
762
+ 2026/07/13 04:31:12.162, NVIDIA GeForce RTX 4060 Ti, 100, 67, 14043, 16380, 148.00, 70, 2700, 8751, P2
763
+ 2026/07/13 04:31:12.272, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14235, 16380, 149.17, 71, 2640, 8751, P2
764
+ 2026/07/13 04:31:12.380, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14235, 16380, 149.17, 71, 2640, 8751, P2
765
+ 2026/07/13 04:31:12.491, NVIDIA GeForce RTX 4060 Ti, 100, 69, 14587, 16380, 149.17, 71, 2640, 8751, P2
766
+ 2026/07/13 04:31:12.599, NVIDIA GeForce RTX 4060 Ti, 100, 69, 13275, 16380, 149.17, 71, 2640, 8751, P2
767
+ 2026/07/13 04:31:12.709, NVIDIA GeForce RTX 4060 Ti, 70, 64, 13275, 16380, 134.20, 60, 2730, 8751, P2
768
+ 2026/07/13 04:31:12.814, NVIDIA GeForce RTX 4060 Ti, 70, 64, 13275, 16380, 134.20, 60, 2730, 8751, P2
769
+ 2026/07/13 04:31:12.928, NVIDIA GeForce RTX 4060 Ti, 70, 64, 13275, 16380, 134.20, 60, 2730, 8751, P2
770
+ 2026/07/13 04:31:13.040, NVIDIA GeForce RTX 4060 Ti, 70, 64, 6233, 16380, 134.20, 60, 2730, 8751, P2
771
+ 2026/07/13 04:31:13.151, NVIDIA GeForce RTX 4060 Ti, 70, 64, 0, 16380, 134.20, 60, 2730, 8751, P2
telemetry/gguf_q4_k_m.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/gguf_q8_0.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/int4_convrot.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/system_bridge_bf16.csv ADDED
@@ -0,0 +1,1359 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ unix_time,system_ram_used_bytes,system_ram_available_bytes,comfy_process_tree_rss_bytes,system_cpu_percent
2
+ 1783906038.3006115,8009678848,42629791744,15114240,0.0
3
+ 1783906038.4158354,8028741632,42610728960,33345536,20.2
4
+ 1783906038.5260334,8067870720,42571599872,50212864,13.4
5
+ 1783906038.6353137,8088649728,42550820864,63938560,8.9
6
+ 1783906038.74708,8096301056,42543169536,69132288,7.1
7
+ 1783906038.8571427,8357523456,42281947136,308445184,6.2
8
+ 1783906038.9669878,8451686400,42187784192,420061184,15.2
9
+ 1783906039.079567,8507514880,42131955712,483041280,6.2
10
+ 1783906039.190116,8553943040,42085527552,503484416,18.8
11
+ 1783906039.2996962,8593027072,42046443520,514883584,13.4
12
+ 1783906039.4103014,8612687872,42026782720,524562432,12.5
13
+ 1783906039.520481,8588955648,42050514944,533438464,18.6
14
+ 1783906039.6311378,8607870976,42031599616,533880832,12.5
15
+ 1783906039.7408135,8619823104,42019647488,537657344,14.0
16
+ 1783906039.8510814,8630542336,42008928256,548630528,7.1
17
+ 1783906039.9604917,8637825024,42001645568,556818432,8.8
18
+ 1783906040.070373,8620060672,42019409920,568434688,14.7
19
+ 1783906040.1816385,8634613760,42004856832,584466432,6.6
20
+ 1783906040.2920735,8652292096,41987178496,598814720,8.9
21
+ 1783906040.40336,8666329088,41973141504,607072256,7.1
22
+ 1783906040.5126145,8698150912,41941319680,609808384,17.7
23
+ 1783906040.6230354,8720326656,41919143936,619474944,11.6
24
+ 1783906040.732153,8699174912,41940295680,622608384,13.4
25
+ 1783906040.8433087,8722800640,41916669952,637272064,17.9
26
+ 1783906040.9542406,8837328896,41802141696,745172992,13.4
27
+ 1783906041.0646555,8859865088,41779605504,755695616,9.8
28
+ 1783906041.1754382,8802476032,41836994560,764293120,6.2
29
+ 1783906041.28615,8845717504,41793753088,786399232,7.1
30
+ 1783906041.394892,8788787200,41850683392,793915392,14.3
31
+ 1783906041.506637,8808718336,41830752256,803586048,7.1
32
+ 1783906041.6164463,8809226240,41830244352,804724736,8.0
33
+ 1783906041.726128,8806342656,41833127936,805421056,6.3
34
+ 1783906041.8368096,8812445696,41827024896,806117376,8.0
35
+ 1783906041.947099,8811859968,41827610624,807165952,6.3
36
+ 1783906042.058489,8828178432,41811292160,810323968,15.9
37
+ 1783906042.1691525,8867799040,41771671552,813371392,17.0
38
+ 1783906042.2768831,8891654144,41747816448,814256128,11.6
39
+ 1783906042.3894484,8868536320,41770934272,815206400,17.9
40
+ 1783906042.5003626,8892485632,41746984960,815620096,13.4
41
+ 1783906042.6088421,8876453888,41763016704,815845376,12.5
42
+ 1783906042.7211974,8891383808,41748086784,816726016,6.2
43
+ 1783906042.8326845,8897499136,41741971456,824418304,6.2
44
+ 1783906042.9423995,8920375296,41719095296,838508544,10.7
45
+ 1783906043.0542147,8886099968,41753370624,849854464,15.1
46
+ 1783906043.1659718,8913645568,41725825024,851779584,14.9
47
+ 1783906043.2758682,8940544000,41698926592,857649152,15.2
48
+ 1783906043.386093,8947621888,41691848704,874496000,8.9
49
+ 1783906043.497232,8966377472,41673093120,884568064,6.2
50
+ 1783906043.6061525,8975265792,41664204800,898154496,9.8
51
+ 1783906043.7182505,8945221632,41694248960,903909376,15.2
52
+ 1783906043.8293386,8948551680,41690918912,911360000,6.2
53
+ 1783906043.9391136,8897253376,41742217216,919207936,6.2
54
+ 1783906044.049314,8920268800,41719201792,930619392,6.2
55
+ 1783906044.1604097,8921481216,41717989376,939909120,6.2
56
+ 1783906044.2709737,8942198784,41697271808,948621312,6.2
57
+ 1783906044.3812816,8942198784,41697271808,958091264,7.1
58
+ 1783906044.4921052,8939864064,41699606528,959184896,8.8
59
+ 1783906044.6025734,8940556288,41698914304,965558272,7.2
60
+ 1783906044.7116237,8954638336,41684832256,967430144,6.3
61
+ 1783906044.8240666,8956788736,41682681856,967430144,0.0
62
+ 1783906044.9360278,8957407232,41682063360,973398016,12.5
63
+ 1783906045.0446374,8970649600,41668820992,983748608,52.7
64
+ 1783906045.1529503,9000386560,41639084032,1022160896,50.9
65
+ 1783906045.2635632,9026162688,41613307904,1043636224,18.8
66
+ 1783906045.3863387,9243918336,41395552256,1263390720,25.6
67
+ 1783906045.5027416,9537073152,41102397440,1547415552,7.7
68
+ 1783906045.6171615,9817526272,40821944320,1740017664,21.0
69
+ 1783906045.7262444,9949585408,40689885184,1740316672,28.6
70
+ 1783906045.8368018,10127769600,40511700992,1740611584,32.7
71
+ 1783906045.9501214,10215993344,40423477248,1740992512,32.5
72
+ 1783906046.0586238,10305175552,40334295040,1741234176,22.9
73
+ 1783906046.1702127,10419924992,40219545600,1741287424,45.1
74
+ 1783906046.2817152,10548408320,40091062272,1741598720,41.6
75
+ 1783906046.3863795,10642853888,39996616704,1767690240,39.3
76
+ 1783906046.4965982,10966310912,39673159680,2087432192,50.0
77
+ 1783906046.605418,11251933184,39387537408,2367115264,50.0
78
+ 1783906046.715012,11260866560,39378604032,2367184896,9.7
79
+ 1783906046.8255806,11264323584,39375147008,2367184896,3.6
80
+ 1783906046.9354417,11263746048,39375724544,2367250432,2.7
81
+ 1783906047.0454574,11260231680,39379238912,2367279104,2.7
82
+ 1783906047.1558142,11453788160,39185682432,2567753728,2.7
83
+ 1783906047.2662482,11673178112,38966292480,2804084736,14.9
84
+ 1783906047.3768742,11917733888,38721736704,3033325568,9.7
85
+ 1783906047.4877415,12207140864,38432329728,3318075392,10.6
86
+ 1783906047.5984037,12383207424,38256263168,3507322880,11.5
87
+ 1783906047.708262,12482461696,38157008896,3589308416,14.3
88
+ 1783906047.820199,12474757120,38164713472,3589308416,12.0
89
+ 1783906047.9295573,12545273856,38094196736,3664805888,17.7
90
+ 1783906048.0389574,12797022208,37842448384,3853557760,35.6
91
+ 1783906048.1493866,12808392704,37831077888,3853557760,7.3
92
+ 1783906048.2589211,12803698688,37835771904,3853557760,4.9
93
+ 1783906048.3690891,13082103808,37557366784,4117819392,21.2
94
+ 1783906048.479722,13062918144,37576552448,4117819392,8.8
95
+ 1783906048.5895212,13063512064,37575958528,4117819392,8.8
96
+ 1783906048.700055,13156917248,37482553344,4193316864,17.4
97
+ 1783906048.8094049,13349052416,37290418176,4382060544,11.6
98
+ 1783906048.9194317,13322547200,37316923392,4382060544,3.6
99
+ 1783906049.0300002,13297086464,37342384128,4382060544,5.4
100
+ 1783906049.1395264,13410308096,37229162496,4476436480,22.3
101
+ 1783906049.2501862,13599399936,37040070656,4646305792,20.5
102
+ 1783906049.361585,13599850496,37039620096,4646305792,3.5
103
+ 1783906049.4720745,13597315072,37042155520,4646305792,6.2
104
+ 1783906049.5829916,13869723648,36769746944,4910555136,17.9
105
+ 1783906049.693458,13856665600,36782804992,4910555136,6.2
106
+ 1783906049.803229,13874143232,36765327360,4910559232,8.8
107
+ 1783906049.9135046,13977505792,36661964800,5037154304,10.7
108
+ 1783906050.0236375,14345003008,36294467584,5376139264,26.9
109
+ 1783906050.1343591,14549278720,36090191872,5577465856,23.0
110
+ 1783906050.2445667,14512508928,36126961664,5577465856,7.3
111
+ 1783906050.3548782,14781816832,35857653760,5841723392,19.6
112
+ 1783906050.4654331,14979743744,35659726848,6043049984,11.5
113
+ 1783906050.5760539,15309000704,35330469888,6377734144,17.9
114
+ 1783906050.685833,15453970432,35185500160,6521208832,9.8
115
+ 1783906050.7971072,15791370240,34848100352,6852653056,31.2
116
+ 1783906050.9060044,16078618624,34560851968,7112613888,13.4
117
+ 1783906051.0156486,16291745792,34347724800,7313944576,8.9
118
+ 1783906051.1258883,16487948288,34151522304,7502700544,10.7
119
+ 1783906051.235748,16765124608,33874345984,7779524608,24.8
120
+ 1783906051.345622,16969601024,33669869568,7980855296,21.9
121
+ 1783906051.4570217,17222799360,33416671232,8242171904,13.4
122
+ 1783906051.5667791,17445601280,33193869312,8446435328,19.6
123
+ 1783906051.6775224,17427812352,33211658240,8446435328,5.4
124
+ 1783906051.7882419,17431179264,33208291328,8446439424,9.2
125
+ 1783906051.898564,17700155392,32939315200,8710701056,14.3
126
+ 1783906052.008164,17709547520,32929923072,8710701056,7.2
127
+ 1783906052.1186764,17695727616,32943742976,8710705152,8.9
128
+ 1783906052.229168,17894289408,32745181184,8899457024,19.3
129
+ 1783906052.3407686,17983934464,32655536128,8974954496,9.7
130
+ 1783906052.4509885,17973719040,32665751552,8974962688,8.8
131
+ 1783906052.5607188,18146357248,32493113344,9143095296,13.3
132
+ 1783906052.670297,18259075072,32380395520,9239216128,14.2
133
+ 1783906052.780994,18255335424,32384135168,9239216128,4.5
134
+ 1783906052.8911061,18349395968,32290074624,9344606208,16.1
135
+ 1783906053.0009723,18530557952,32108912640,9503477760,10.6
136
+ 1783906053.1119447,18516299776,32123170816,9503481856,5.3
137
+ 1783906053.2215128,18610282496,32029188096,9593044992,5.3
138
+ 1783906053.332808,18806292480,31833178112,9767723008,20.4
139
+ 1783906053.4431071,18810679296,31828791296,9767723008,4.5
140
+ 1783906053.5539844,18894110720,31745359872,9843224576,10.3
141
+ 1783906053.663956,19086032896,31553437696,10031968256,13.0
142
+ 1783906053.7749681,19092766720,31546703872,10031968256,9.8
143
+ 1783906053.8862083,19148201984,31491268608,10102120448,21.4
144
+ 1783906053.9956768,19348389888,31291080704,10296221696,6.2
145
+ 1783906054.105901,19359862784,31279607808,10296221696,8.0
146
+ 1783906054.2170196,19367120896,31272349696,10296221696,8.8
147
+ 1783906054.3272696,19601043456,31038427136,10536902656,27.4
148
+ 1783906054.4370158,19648499712,30990970880,10560471040,7.1
149
+ 1783906054.5471487,19644608512,30994862080,10560471040,3.5
150
+ 1783906054.657992,19836493824,30802976768,10749222912,13.4
151
+ 1783906054.7690318,19916939264,30722531328,10824724480,10.7
152
+ 1783906054.8794408,19920400384,30719070208,10824724480,8.9
153
+ 1783906054.989142,20010520576,30628950016,10930057216,11.6
154
+ 1783906055.1003218,20204978176,30434492416,11088994304,13.2
155
+ 1783906055.2099226,20190580736,30448889856,11088994304,8.1
156
+ 1783906055.3205879,20267491328,30371979264,11164491776,6.1
157
+ 1783906055.430653,20463906816,30175563776,11353247744,13.3
158
+ 1783906055.541221,20473020416,30166450176,11353251840,6.4
159
+ 1783906055.6515365,20469850112,30169620480,11353251840,7.1
160
+ 1783906055.7608864,20659929088,29979541504,11542003712,14.3
161
+ 1783906055.8711972,20751654912,29887815680,11617505280,13.4
162
+ 1783906055.9811935,20748238848,29891231744,11617501184,5.4
163
+ 1783906056.0914264,20868198400,29771272192,11730759680,10.7
164
+ 1783906056.2016752,21034291200,29605179392,11881758720,14.0
165
+ 1783906056.3120916,21028270080,29611200512,11881758720,3.6
166
+ 1783906056.4223855,21106016256,29533454336,11957260288,7.1
167
+ 1783906056.5327382,21311582208,29327888384,12146020352,15.2
168
+ 1783906056.6427274,21303705600,29335764992,12146024448,6.2
169
+ 1783906056.7534318,21291720704,29347749888,12146028544,6.2
170
+ 1783906056.8627656,21566525440,29072945152,12410093568,23.2
171
+ 1783906056.973367,21566369792,29073100800,12410286080,7.1
172
+ 1783906057.0839474,21568458752,29071011840,12410286080,7.1
173
+ 1783906057.1940484,21646094336,28993376256,12485791744,17.4
174
+ 1783906057.3049538,21847625728,28791844864,12674543616,10.2
175
+ 1783906057.4154148,21851762688,28787707904,12674543616,9.8
176
+ 1783906057.526371,21846589440,28792881152,12674543616,8.2
177
+ 1783906057.6369147,21963476992,28675993600,12787798016,7.1
178
+ 1783906057.7472687,22114631680,28524838912,12938805248,7.1
179
+ 1783906057.857169,22120628224,28518842368,12938805248,8.0
180
+ 1783906057.9674716,22121406464,28518064128,12938805248,7.1
181
+ 1783906058.0778599,22116667392,28522803200,12938981376,31.0
182
+ 1783906058.1869884,22334697472,28304773120,13141897216,57.1
183
+ 1783906058.2965074,22536962048,28102508544,13343227904,30.4
184
+ 1783906058.4072928,22748356608,27891113984,13575598080,15.2
185
+ 1783906058.5175862,23139250176,27500220416,13947215872,23.0
186
+ 1783906058.6273024,23331811328,27307659264,14148546560,17.9
187
+ 1783906058.738181,23551422464,27088048128,14349873152,26.8
188
+ 1783906058.8483162,23756099584,26883371008,14551199744,17.7
189
+ 1783906058.9584057,23752978432,26886492160,14551367680,7.1
190
+ 1783906059.0705183,23752925184,26886545408,14551367680,0.9
191
+ 1783906059.1819737,23752921088,26886549504,14551375872,1.6
192
+ 1783906059.2929547,23746920448,26892550144,14541545472,5.4
193
+ 1783906059.403108,23746953216,26892517376,14541545472,7.1
194
+ 1783906059.5136364,23747178496,26892292096,14541545472,8.8
195
+ 1783906059.6244462,23747006464,26892464128,14541545472,6.2
196
+ 1783906059.735378,23746523136,26892947456,14541545472,6.2
197
+ 1783906059.846133,23747350528,26892120064,14541545472,8.0
198
+ 1783906059.9580655,23747620864,26891849728,14541545472,8.9
199
+ 1783906060.066773,23747424256,26892046336,14541545472,6.2
200
+ 1783906060.177321,23747026944,26892443648,14541545472,6.2
201
+ 1783906060.2884023,23746961408,26892509184,14541545472,7.9
202
+ 1783906060.399067,23746879488,26892591104,14541545472,9.5
203
+ 1783906060.5096138,23747252224,26892218368,14541545472,6.2
204
+ 1783906060.6208577,23747035136,26892435456,14541545472,6.2
205
+ 1783906060.7317424,23744372736,26895097856,14541545472,6.2
206
+ 1783906060.8435686,23744217088,26895253504,14541545472,6.2
207
+ 1783906060.9556394,23746494464,26892976128,14541545472,8.9
208
+ 1783906061.0646267,23746252800,26893217792,14541545472,6.2
209
+ 1783906061.175738,23745826816,26893643776,14541545472,6.2
210
+ 1783906061.2865334,23753330688,26886139904,14551400448,25.0
211
+ 1783906061.3961933,23955177472,26684293120,14752727040,61.9
212
+ 1783906061.5088792,24093114368,26546356224,14902370304,45.2
213
+ 1783906061.6188362,24165060608,26474409984,14954065920,7.6
214
+ 1783906061.7301464,24165060608,26474409984,14954070016,0.9
215
+ 1783906061.842478,24165060608,26474409984,14954074112,0.0
216
+ 1783906061.9540296,24167297024,26472173568,14954074112,1.8
217
+ 1783906062.06561,24167481344,26471989248,14954078208,0.0
218
+ 1783906062.1772535,24167444480,26472026112,14954078208,1.8
219
+ 1783906062.2893794,24167395328,26472075264,14954082304,2.6
220
+ 1783906062.4022799,24161148928,26478321664,14944256000,2.4
221
+ 1783906062.511376,24161181696,26478288896,14944256000,6.2
222
+ 1783906062.6210504,24161148928,26478321664,14944256000,6.2
223
+ 1783906062.7307734,24160563200,26478907392,14944256000,6.2
224
+ 1783906062.8405163,24160501760,26478968832,14944256000,7.1
225
+ 1783906062.950576,24161017856,26478452736,14944256000,7.1
226
+ 1783906063.0596235,24160899072,26478571520,14944256000,6.2
227
+ 1783906063.1697724,24160780288,26478690304,14944256000,6.2
228
+ 1783906063.2801728,24160358400,26479112192,14944256000,6.2
229
+ 1783906063.3909583,24160075776,26479394816,14944256000,6.2
230
+ 1783906063.4996183,24161050624,26478419968,14944256000,6.2
231
+ 1783906063.6094675,24160907264,26478563328,14944256000,6.2
232
+ 1783906063.71834,24160690176,26478780416,14944256000,6.2
233
+ 1783906063.8287358,24156459008,26483011584,14944256000,8.0
234
+ 1783906063.9388201,24160157696,26479312896,14944256000,7.1
235
+ 1783906064.0473795,24159776768,26479693824,14944256000,6.2
236
+ 1783906064.157034,24159535104,26479935488,14944256000,6.2
237
+ 1783906064.265787,24159285248,26480185344,14944256000,6.2
238
+ 1783906064.3761756,24159055872,26480414720,14944256000,6.2
239
+ 1783906064.4886224,24164270080,26475200512,14954160128,26.8
240
+ 1783906064.5966325,24164274176,26475196416,14954160128,44.6
241
+ 1783906064.7063744,24164278272,26475192320,14954160128,18.8
242
+ 1783906064.8196099,24164278272,26475192320,14954160128,0.9
243
+ 1783906064.9321387,24167301120,26472169472,14954160128,3.1
244
+ 1783906065.0431616,24167272448,26472198144,14954160128,0.0
245
+ 1783906065.1552742,24167219200,26472251392,14954164224,0.0
246
+ 1783906065.2675574,24167211008,26472259584,14954164224,0.0
247
+ 1783906065.3796234,24167186432,26472284160,14954164224,0.0
248
+ 1783906065.4906921,24169025536,26470445056,14954164224,1.8
249
+ 1783906065.6026762,24164179968,26475290624,14944333824,3.5
250
+ 1783906065.7114358,24163926016,26475544576,14944333824,6.4
251
+ 1783906065.821993,24163442688,26476027904,14944333824,8.9
252
+ 1783906065.9328773,24164081664,26475388928,14944333824,6.2
253
+ 1783906066.0435517,24163827712,26475642880,14944333824,6.2
254
+ 1783906066.1541677,24163573760,26475896832,14944333824,6.2
255
+ 1783906066.264547,24163397632,26476072960,14944333824,6.2
256
+ 1783906066.3751254,24163213312,26476257280,14944333824,6.2
257
+ 1783906066.486286,24164220928,26475249664,14944333824,6.2
258
+ 1783906066.5969288,24163954688,26475515904,14944333824,6.2
259
+ 1783906066.7086816,24163737600,26475732992,14944333824,6.2
260
+ 1783906066.8202546,24159903744,26479566848,14944333824,8.8
261
+ 1783906066.9309285,24163397632,26476072960,14944333824,6.3
262
+ 1783906067.0419672,24163078144,26476392448,14944333824,6.2
263
+ 1783906067.1523707,24162824192,26476646400,14944333824,6.2
264
+ 1783906067.26343,24162476032,26476994560,14944333824,6.2
265
+ 1783906067.3739636,24162209792,26477260800,14944333824,6.2
266
+ 1783906067.483937,24163799040,26475671552,14944333824,9.8
267
+ 1783906067.5942366,24163135488,26476335104,14944333824,8.9
268
+ 1783906067.7059095,24169021440,26470449152,14954229760,36.6
269
+ 1783906067.8129873,24169123840,26470346752,14954229760,44.2
270
+ 1783906067.9246712,24169893888,26469576704,14954229760,6.2
271
+ 1783906068.037183,24169697280,26469773312,14954229760,0.0
272
+ 1783906068.1493108,24169263104,26470207488,14954229760,0.8
273
+ 1783906068.2610803,24169336832,26470133760,14954229760,2.7
274
+ 1783906068.372883,24169152512,26470318080,14954229760,0.0
275
+ 1783906068.484366,24167981056,26471489536,14954229760,0.0
276
+ 1783906068.596184,24167927808,26471542784,14954229760,0.0
277
+ 1783906068.7083926,24167854080,26471616512,14954229760,0.0
278
+ 1783906068.8189824,24163717120,26475753472,14944399360,3.5
279
+ 1783906068.9276648,24163557376,26475913216,14944399360,6.3
280
+ 1783906069.0371137,24163299328,26476171264,14944399360,6.2
281
+ 1783906069.1467397,24162496512,26476974080,14944399360,7.1
282
+ 1783906069.2571857,24162308096,26477162496,14944399360,7.9
283
+ 1783906069.365871,24162119680,26477350912,14944399360,7.2
284
+ 1783906069.4753246,24161824768,26477645824,14944399360,8.6
285
+ 1783906069.585228,24163573760,26475896832,14944399360,7.3
286
+ 1783906069.6942127,24163319808,26476150784,14944399360,6.3
287
+ 1783906069.8044105,24163106816,26476363776,14944399360,8.0
288
+ 1783906069.9127324,24160059392,26479411200,14944399360,7.2
289
+ 1783906070.023077,24162947072,26476523520,14944399360,8.0
290
+ 1783906070.1325598,24162689024,26476781568,14944399360,7.1
291
+ 1783906070.2421317,24162164736,26477305856,14944399360,7.1
292
+ 1783906070.3507643,24161849344,26477621248,14944399360,8.0
293
+ 1783906070.4601552,24161595392,26477875200,14944399360,7.1
294
+ 1783906070.5692751,24162861056,26476609536,14944399360,8.9
295
+ 1783906070.6788049,24162607104,26476863488,14944399360,8.0
296
+ 1783906070.788329,24162422784,26477047808,14944399360,6.3
297
+ 1783906070.9010687,24168497152,26470973440,14954233856,33.9
298
+ 1783906071.009603,24169349120,26470121472,14954237952,43.8
299
+ 1783906071.1202495,24169320448,26470150144,14954237952,0.0
300
+ 1783906071.2339804,24169320448,26470150144,14954237952,0.0
301
+ 1783906071.3458402,24169230336,26470240256,14954237952,0.0
302
+ 1783906071.458049,24169144320,26470326272,14954242048,0.0
303
+ 1783906071.5695066,24167583744,26471886848,14954242048,0.9
304
+ 1783906071.6822293,24167444480,26472026112,14954250240,0.0
305
+ 1783906071.7941647,24167411712,26472058880,14954254336,1.8
306
+ 1783906071.904826,24167149568,26472321024,14954258432,0.0
307
+ 1783906072.0166395,24163569664,26475900928,14944428032,2.7
308
+ 1783906072.1275866,24163266560,26476204032,14944428032,6.2
309
+ 1783906072.2385397,24163110912,26476359680,14944428032,6.2
310
+ 1783906072.3502595,24162856960,26476613632,14944428032,8.7
311
+ 1783906072.461571,24162623488,26476847104,14944428032,7.2
312
+ 1783906072.5729518,24163696640,26475773952,14944428032,6.2
313
+ 1783906072.6843987,24163438592,26476032000,14944428032,6.2
314
+ 1783906072.7956092,24163184640,26476285952,14944428032,6.2
315
+ 1783906072.906578,24160477184,26478993408,14944428032,6.2
316
+ 1783906073.017347,24163192832,26476277760,14944428032,7.1
317
+ 1783906073.1283772,24162938880,26476531712,14944428032,7.1
318
+ 1783906073.2394147,24162684928,26476785664,14944428032,6.2
319
+ 1783906073.3500571,24162443264,26477027328,14944428032,7.1
320
+ 1783906073.461052,24162099200,26477371392,14944428032,8.8
321
+ 1783906073.571856,24163155968,26476314624,14944428032,5.6
322
+ 1783906073.6833467,24162865152,26476605440,14944428032,6.2
323
+ 1783906073.7942235,24162611200,26476859392,14944428032,6.2
324
+ 1783906073.904681,24162349056,26477121536,14944428032,6.2
325
+ 1783906074.0158021,24162119680,26477350912,14944428032,6.2
326
+ 1783906074.126202,24167337984,26472132608,14954299392,47.8
327
+ 1783906074.2343168,24167428096,26472042496,14954299392,37.5
328
+ 1783906074.3470905,24167464960,26472005632,14954299392,0.0
329
+ 1783906074.4587753,24167432192,26472038400,14954299392,0.0
330
+ 1783906074.5709002,24167202816,26472267776,14954299392,0.9
331
+ 1783906074.682528,24166711296,26472759296,14954303488,0.0
332
+ 1783906074.7945943,24166674432,26472796160,14954303488,0.0
333
+ 1783906074.9065945,24166617088,26472853504,14954303488,0.0
334
+ 1783906075.0183523,24169222144,26470248448,14954303488,0.0
335
+ 1783906075.13057,24168845312,26470625280,14954303488,0.0
336
+ 1783906075.2425582,24163454976,26476015616,14944473088,6.1
337
+ 1783906075.3506155,24163266560,26476204032,14944473088,7.1
338
+ 1783906075.4624763,24163061760,26476408832,14944473088,8.7
339
+ 1783906075.5713835,24163430400,26476040192,14944473088,8.0
340
+ 1783906075.6811068,24163205120,26476265472,14944473088,9.7
341
+ 1783906075.7918336,24162983936,26476486656,14944473088,6.2
342
+ 1783906075.9019208,24162783232,26476687360,14944473088,6.2
343
+ 1783906076.0125988,24160604160,26478866432,14944473088,7.1
344
+ 1783906076.1227682,24162807808,26476662784,14944473088,6.2
345
+ 1783906076.2332482,24162619392,26476851200,14944473088,6.2
346
+ 1783906076.3431134,24162455552,26477015040,14944473088,6.2
347
+ 1783906076.4536533,24162205696,26477264896,14944473088,6.2
348
+ 1783906076.5642323,24163008512,26476462080,14944473088,6.2
349
+ 1783906076.6740086,24162754560,26476716032,14944473088,6.2
350
+ 1783906076.7837954,24162557952,26476912640,14944473088,6.2
351
+ 1783906076.8934095,24162361344,26477109248,14944473088,6.2
352
+ 1783906077.003885,24158027776,26481442816,14944473088,6.2
353
+ 1783906077.1138263,24162123776,26477346816,14944473088,6.2
354
+ 1783906077.224914,24167784448,26471686144,14954307584,10.2
355
+ 1783906077.3351424,24167567360,26471903232,14954352640,51.3
356
+ 1783906077.4432378,24167579648,26471890944,14954352640,33.7
357
+ 1783906077.5563765,24167075840,26472394752,14954352640,3.9
358
+ 1783906077.6680148,24166993920,26472476672,14954352640,0.9
359
+ 1783906077.7801216,24166739968,26472730624,14954352640,0.0
360
+ 1783906077.8927116,24166686720,26472783872,14954352640,1.8
361
+ 1783906078.0047867,24166604800,26472865792,14954352640,0.0
362
+ 1783906078.1163244,24169562112,26469908480,14954352640,0.9
363
+ 1783906078.2286177,24169299968,26470170624,14954352640,2.4
364
+ 1783906078.3408432,24168914944,26470555648,14954352640,1.8
365
+ 1783906078.4508467,24163995648,26475474944,14944522240,4.5
366
+ 1783906078.5619233,24164065280,26475405312,14944522240,6.2
367
+ 1783906078.6729803,24163766272,26475704320,14944522240,6.2
368
+ 1783906078.7837636,24163549184,26475921408,14944522240,6.2
369
+ 1783906078.894771,24163348480,26476122112,14944522240,6.2
370
+ 1783906079.0057037,24163127296,26476343296,14944522240,6.2
371
+ 1783906079.1167736,24163856384,26475614208,14944522240,7.9
372
+ 1783906079.227771,24163409920,26476060672,14944522240,5.6
373
+ 1783906079.3387794,24163221504,26476249088,14944522240,6.2
374
+ 1783906079.4498904,24162934784,26476535808,14944522240,6.2
375
+ 1783906079.561595,24162893824,26476576768,14944522240,6.2
376
+ 1783906079.6719673,24163860480,26475610112,14944522240,6.2
377
+ 1783906079.7824817,24164335616,26475134976,14944522240,6.2
378
+ 1783906079.8932114,24164163584,26475307008,14944522240,6.2
379
+ 1783906080.0041063,24164040704,26475429888,14944522240,6.2
380
+ 1783906080.1149292,24165834752,26473635840,14944522240,7.1
381
+ 1783906080.2255518,24165511168,26473959424,14944522240,8.8
382
+ 1783906080.3367484,24165347328,26474123264,14944522240,6.3
383
+ 1783906080.4500952,24160882688,26478587904,14943780864,5.4
384
+ 1783906080.5594172,24240766976,26398703616,15041953792,49.1
385
+ 1783906080.6686523,24247672832,26391797760,15049736192,43.8
386
+ 1783906080.7794485,24254504960,26384965632,15050219520,6.2
387
+ 1783906080.8910239,24316649472,26322821120,15114379264,7.1
388
+ 1783906081.0011077,24368025600,26271444992,15150415872,44.6
389
+ 1783906081.1108978,24365424640,26274045952,15130497024,50.0
390
+ 1783906081.2211564,24365236224,26274234368,15130497024,13.4
391
+ 1783906081.3335733,24364974080,26274496512,15130497024,0.0
392
+ 1783906081.446908,24364793856,26274676736,15130497024,1.6
393
+ 1783906081.5584369,24372203520,26267267072,15143350272,55.8
394
+ 1783906081.6666605,24371560448,26267910144,15143350272,51.8
395
+ 1783906081.777059,24371453952,26268016640,15143350272,12.5
396
+ 1783906081.887197,24371417088,26268053504,15143350272,6.2
397
+ 1783906081.9983993,24371331072,26268139520,15143358464,6.2
398
+ 1783906082.1100385,24361074688,26278395904,15143358464,6.2
399
+ 1783906082.2214587,24360243200,26279227392,15143358464,7.1
400
+ 1783906082.333331,24359698432,26279772160,15143407616,6.2
401
+ 1783906082.4448743,24359698432,26279772160,15143444480,1.7
402
+ 1783906082.5574753,24359690240,26279780352,15143448576,2.4
403
+ 1783906082.6694653,24352288768,26287181824,15133618176,0.9
404
+ 1783906082.7788637,24352055296,26287415296,15133618176,6.2
405
+ 1783906082.8891602,24352026624,26287443968,15133618176,6.2
406
+ 1783906083.000249,24351932416,26287538176,15133618176,6.2
407
+ 1783906083.1124022,24359444480,26280026112,15133618176,6.2
408
+ 1783906083.2230163,24359030784,26280439808,15133618176,7.1
409
+ 1783906083.3340404,24358555648,26280914944,15133618176,6.2
410
+ 1783906083.4449954,24358137856,26281332736,15133618176,7.8
411
+ 1783906083.5560472,24357683200,26281787392,15133618176,5.6
412
+ 1783906083.667187,24353603584,26285867008,15133618176,7.1
413
+ 1783906083.7780957,24353292288,26286178304,15133618176,8.0
414
+ 1783906083.888968,24353087488,26286383104,15133618176,6.2
415
+ 1783906083.999948,24352858112,26286612480,15133618176,8.0
416
+ 1783906084.1116338,24359792640,26279677952,15133618176,6.2
417
+ 1783906084.222958,24354820096,26284650496,15133618176,7.1
418
+ 1783906084.3343275,24354242560,26285228032,15133618176,7.0
419
+ 1783906084.4450753,24353964032,26285506560,15133618176,8.0
420
+ 1783906084.555459,24353402880,26286067712,15133618176,7.9
421
+ 1783906084.6666434,24349515776,26289954816,15133618176,8.8
422
+ 1783906084.7779353,24350695424,26288775168,15143464960,31.2
423
+ 1783906084.8869758,24350593024,26288877568,15143473152,50.0
424
+ 1783906084.997373,24350593024,26288877568,15143473152,13.3
425
+ 1783906085.1104531,24360878080,26278592512,15143473152,1.8
426
+ 1783906085.2217238,24360861696,26278608896,15143473152,0.9
427
+ 1783906085.3332994,24360853504,26278617088,15143473152,1.8
428
+ 1783906085.4451864,24360685568,26278785024,15143477248,0.9
429
+ 1783906085.5572002,24360681472,26278789120,15143477248,0.8
430
+ 1783906085.6684678,24360267776,26279202816,15143481344,4.4
431
+ 1783906085.7801256,24360210432,26279260160,15143481344,0.0
432
+ 1783906085.8921971,24354172928,26285297664,15133650944,0.9
433
+ 1783906086.0004299,24353804288,26285666304,15133650944,6.2
434
+ 1783906086.1108181,24359309312,26280161280,15133650944,6.2
435
+ 1783906086.2205212,24358146048,26281324544,15133650944,7.1
436
+ 1783906086.3304613,24357634048,26281836544,15133650944,6.2
437
+ 1783906086.4422336,24361345024,26278125568,15133650944,8.0
438
+ 1783906086.5512722,24398393344,26241077248,15133650944,12.5
439
+ 1783906086.6611445,24398372864,26241097728,15133650944,6.2
440
+ 1783906086.7693098,24398417920,26241052672,15133650944,7.1
441
+ 1783906086.878448,24398483456,26240987136,15133650944,6.2
442
+ 1783906086.9882562,24398483456,26240987136,15133650944,6.2
443
+ 1783906087.098076,24400412672,26239057920,15133650944,6.2
444
+ 1783906087.2088082,24408190976,26231279616,15133650944,8.8
445
+ 1783906087.3180795,24408158208,26231312384,15133650944,6.2
446
+ 1783906087.4269965,24407511040,26231959552,15133650944,6.2
447
+ 1783906087.536788,24366739456,26272731136,15133650944,7.1
448
+ 1783906087.646771,24366706688,26272763904,15133650944,7.1
449
+ 1783906087.75663,24366772224,26272698368,15133650944,7.1
450
+ 1783906087.8656282,24366649344,26272821248,15133650944,7.1
451
+ 1783906087.9774618,24367104000,26272366592,15143550976,26.8
452
+ 1783906088.084989,24369864704,26269605888,15143550976,46.4
453
+ 1783906088.195318,24387211264,26252259328,15143550976,15.0
454
+ 1783906088.307732,24387211264,26252259328,15143550976,0.8
455
+ 1783906088.4202774,24386940928,26252529664,15143550976,0.0
456
+ 1783906088.5325665,24386863104,26252607488,15143555072,0.0
457
+ 1783906088.6452115,24386719744,26252750848,15143555072,0.0
458
+ 1783906088.7575767,24385155072,26254315520,15143555072,2.6
459
+ 1783906088.8694434,24385146880,26254323712,15143555072,2.4
460
+ 1783906088.982101,24384946176,26254524416,15143555072,0.0
461
+ 1783906089.0940485,24362913792,26276556800,15133724672,0.0
462
+ 1783906089.2037609,24374243328,26265227264,15133724672,6.2
463
+ 1783906089.3137035,24373751808,26265718784,15133724672,6.2
464
+ 1783906089.4235883,24373432320,26266038272,15133724672,6.2
465
+ 1783906089.533648,24373178368,26266292224,15133724672,6.2
466
+ 1783906089.643578,24372924416,26266546176,15133724672,6.2
467
+ 1783906089.7547033,24367484928,26271985664,15133724672,6.2
468
+ 1783906089.864709,24367267840,26272202752,15133724672,6.2
469
+ 1783906089.9746804,24367087616,26272382976,15133724672,6.2
470
+ 1783906090.085131,24366735360,26272735232,15133724672,8.8
471
+ 1783906090.1963916,24373641216,26265829376,15133724672,7.1
472
+ 1783906090.3074915,24370151424,26269319168,15133724672,6.2
473
+ 1783906090.4171846,24369926144,26269544448,15133724672,6.2
474
+ 1783906090.5276072,24369672192,26269798400,15133724672,6.2
475
+ 1783906090.6386602,24369418240,26270052352,15133724672,8.0
476
+ 1783906090.7484071,24364122112,26275348480,15133724672,6.2
477
+ 1783906090.8582578,24363868160,26275602432,15133724672,8.0
478
+ 1783906090.9683177,24363614208,26275856384,15133724672,6.2
479
+ 1783906091.078273,24363237376,26276233216,15133724672,6.2
480
+ 1783906091.1901965,24377905152,26261565440,15143604224,25.0
481
+ 1783906091.2981234,24377901056,26261569536,15143624704,44.7
482
+ 1783906091.4092107,24377896960,26261573632,15143624704,18.8
483
+ 1783906091.5221827,24377442304,26262028288,15143624704,0.9
484
+ 1783906091.634219,24377405440,26262065152,15143624704,0.8
485
+ 1783906091.7465155,24374018048,26265452544,15143624704,2.7
486
+ 1783906091.8582134,24373837824,26265632768,15143624704,0.0
487
+ 1783906091.969814,24373465088,26266005504,15143624704,0.0
488
+ 1783906092.0815413,24374059008,26265411584,15143624704,0.0
489
+ 1783906092.1939437,24379703296,26259767296,15143624704,0.0
490
+ 1783906092.3052263,24369430528,26270040064,15133794304,4.4
491
+ 1783906092.4112864,24369176576,26270294016,15133794304,5.5
492
+ 1783906092.5216799,24367980544,26271490048,15133794304,8.0
493
+ 1783906092.6308959,24367587328,26271883264,15133794304,6.2
494
+ 1783906092.73997,24362975232,26276495360,15133794304,7.1
495
+ 1783906092.8501422,24362958848,26276511744,15133794304,7.1
496
+ 1783906092.9589958,24363130880,26276339712,15133794304,6.3
497
+ 1783906093.0682473,24363266048,26276204544,15133794304,6.2
498
+ 1783906093.17912,24374738944,26264731648,15133794304,10.2
499
+ 1783906093.2879739,24374317056,26265153536,15133794304,9.9
500
+ 1783906093.397849,24370454528,26269016064,15133794304,8.8
501
+ 1783906093.5059772,24368439296,26271031296,15133794304,5.6
502
+ 1783906093.6143286,24367923200,26271547392,15133794304,6.2
503
+ 1783906093.724937,24362119168,26277351424,15133794304,6.2
504
+ 1783906093.834128,24361537536,26277933056,15133794304,7.1
505
+ 1783906093.9438887,24360955904,26278514688,15133794304,7.9
506
+ 1783906094.0533113,24360341504,26279129088,15133794304,8.9
507
+ 1783906094.1627016,24372330496,26267140096,15133794304,7.1
508
+ 1783906094.27289,24371666944,26267803648,15133794304,8.0
509
+ 1783906094.3840497,24366505984,26272964608,15143628800,25.4
510
+ 1783906094.492265,24366505984,26272964608,15143641088,48.2
511
+ 1783906094.6020372,24366505984,26272964608,15143641088,20.4
512
+ 1783906094.7146084,24366505984,26272964608,15143641088,0.0
513
+ 1783906094.825909,24383401984,26256068608,15143645184,0.0
514
+ 1783906094.9375763,24382947328,26256523264,15143645184,0.9
515
+ 1783906095.0486898,24382435328,26257035264,15143645184,1.8
516
+ 1783906095.1607676,24382132224,26257338368,15143649280,1.8
517
+ 1783906095.272724,24386220032,26253250560,15143649280,3.4
518
+ 1783906095.3844705,24385220608,26254249984,15143649280,3.2
519
+ 1783906095.4955277,24383918080,26255552512,15143657472,1.8
520
+ 1783906095.6051683,24373559296,26265911296,15133827072,6.2
521
+ 1783906095.7160575,24373112832,26266357760,15133827072,6.2
522
+ 1783906095.826733,24367013888,26272456704,15133827072,8.0
523
+ 1783906095.9374487,24366428160,26273042432,15133827072,6.2
524
+ 1783906096.0482771,24365830144,26273640448,15133827072,6.2
525
+ 1783906096.159611,24365228032,26274242560,15133827072,6.2
526
+ 1783906096.270209,24375758848,26263711744,15133827072,6.2
527
+ 1783906096.381369,24372928512,26266542080,15133827072,7.1
528
+ 1783906096.492257,24372391936,26267078656,15133827072,7.9
529
+ 1783906096.6022987,24371769344,26267701248,15133827072,7.2
530
+ 1783906096.7125778,24371306496,26268164096,15133827072,6.2
531
+ 1783906096.8229473,24365174784,26274295808,15133827072,6.2
532
+ 1783906096.9332218,24364593152,26274877440,15133827072,6.2
533
+ 1783906097.044392,24363970560,26275500032,15133827072,6.2
534
+ 1783906097.1551125,24363380736,26276089856,15133827072,8.0
535
+ 1783906097.2657588,24373772288,26265698304,15133827072,6.2
536
+ 1783906097.375375,24373092352,26266378240,15133827072,6.2
537
+ 1783906097.4847946,24368107520,26271363072,15133827072,6.2
538
+ 1783906097.5972,24367656960,26271813632,15143694336,27.7
539
+ 1783906097.7058861,24367656960,26271813632,15143698432,49.1
540
+ 1783906097.814904,24381104128,26258366464,15143698432,20.5
541
+ 1783906097.9271412,24383979520,26255491072,15143698432,0.0
542
+ 1783906098.0406349,24383389696,26256080896,15143698432,3.1
543
+ 1783906098.151204,24400171008,26239299584,15143698432,15.9
544
+ 1783906098.2630806,24419983360,26219487232,15143698432,9.8
545
+ 1783906098.3735473,24435691520,26203779072,15143628800,19.6
546
+ 1783906098.4844904,24478285824,26161184768,15143628800,18.8
547
+ 1783906098.5953233,24489431040,26150039552,15143628800,13.4
548
+ 1783906098.7046616,24440459264,26199011328,15133798400,6.2
549
+ 1783906098.8176467,24468803584,26170667008,15133798400,15.9
550
+ 1783906098.927386,24479789056,26159681536,15133798400,12.5
551
+ 1783906099.0364683,24481214464,26158256128,15133798400,8.0
552
+ 1783906099.147857,24480780288,26158690304,15133798400,9.6
553
+ 1783906099.2595978,24489357312,26150113280,15133798400,13.5
554
+ 1783906099.369458,24406753280,26232717312,15133798400,18.6
555
+ 1783906099.4798899,24396423168,26243047424,15133798400,8.9
556
+ 1783906099.590306,24395665408,26243805184,15133798400,6.2
557
+ 1783906099.7012663,24394461184,26245009408,15133798400,6.2
558
+ 1783906099.8126574,24394444800,26245025792,15133798400,6.2
559
+ 1783906099.9230154,24395812864,26243657728,15133798400,6.2
560
+ 1783906100.0328622,24395812864,26243657728,15133798400,6.2
561
+ 1783906100.142201,24395812864,26243657728,15133798400,6.2
562
+ 1783906100.25195,24412651520,26226819072,15133798400,7.1
563
+ 1783906100.3622737,24412573696,26226896896,15133798400,6.2
564
+ 1783906100.472047,24408518656,26230951936,15133798400,6.2
565
+ 1783906100.5815794,24402456576,26237014016,15133798400,6.2
566
+ 1783906100.6901608,24402333696,26237136896,15133798400,6.2
567
+ 1783906100.802153,24399605760,26239864832,15143665664,18.8
568
+ 1783906100.910294,24388431872,26251038720,15143677952,46.0
569
+ 1783906101.019633,24388112384,26251358208,15143677952,18.8
570
+ 1783906101.132553,24387010560,26252460032,15143677952,0.0
571
+ 1783906101.2450788,24391708672,26247761920,15143677952,7.8
572
+ 1783906101.3561668,24403472384,26235998208,15143677952,0.0
573
+ 1783906101.4682624,24402833408,26236637184,15143677952,0.0
574
+ 1783906101.5808654,24400719872,26238750720,15143677952,0.0
575
+ 1783906101.6919122,24400400384,26239070208,15143677952,0.0
576
+ 1783906101.803723,24394330112,26245140480,15143677952,0.9
577
+ 1783906101.9159102,24383897600,26255572992,15133847552,2.4
578
+ 1783906102.026286,24383643648,26255826944,15133847552,6.2
579
+ 1783906102.1367023,24383307776,26256162816,15133847552,6.2
580
+ 1783906102.2478347,24382590976,26256879616,15133847552,6.2
581
+ 1783906102.358796,24391933952,26247536640,15133847552,6.2
582
+ 1783906102.4698036,24391467008,26248003584,15133847552,6.2
583
+ 1783906102.5829177,24391376896,26248093696,15133847552,8.0
584
+ 1783906102.6921635,24390795264,26248675328,15133847552,8.0
585
+ 1783906102.802849,24384733184,26254737408,15133847552,6.2
586
+ 1783906102.9157033,24384004096,26255466496,15133847552,8.6
587
+ 1783906103.0260403,24383422464,26256048128,15133847552,7.1
588
+ 1783906103.136601,24382844928,26256625664,15133847552,6.2
589
+ 1783906103.248185,24382357504,26257113088,15133847552,6.2
590
+ 1783906103.3589005,24393400320,26246070272,15133847552,6.2
591
+ 1783906103.4695454,24392749056,26246721536,15133847552,6.2
592
+ 1783906103.5813723,24386920448,26252550144,15133847552,6.2
593
+ 1783906103.692278,24386215936,26253254656,15133847552,6.2
594
+ 1783906103.8028266,24380137472,26259333120,15133847552,6.2
595
+ 1783906103.9130301,24379555840,26259914752,15133847552,7.9
596
+ 1783906104.025466,24396800000,26242670592,15143690240,28.6
597
+ 1783906104.1352994,24397066240,26242404352,15143702528,48.7
598
+ 1783906104.2441473,24397066240,26242404352,15143706624,14.3
599
+ 1783906104.3570025,24404201472,26235269120,15143710720,0.0
600
+ 1783906104.4683332,24404193280,26235277312,15143710720,0.0
601
+ 1783906104.5806274,24403894272,26235576320,15143718912,0.0
602
+ 1783906104.6917565,24403513344,26235957248,15143723008,0.0
603
+ 1783906104.803841,24397709312,26241761280,15143727104,0.9
604
+ 1783906104.914584,24397127680,26242342912,15143727104,0.9
605
+ 1783906105.0270221,24396603392,26242867200,15143731200,4.0
606
+ 1783906105.1395645,24385904640,26253565952,15133900800,0.9
607
+ 1783906105.2501202,24385454080,26254016512,15133900800,6.2
608
+ 1783906105.3601816,24396206080,26243264512,15133900800,6.2
609
+ 1783906105.4709325,24395857920,26243612672,15133900800,6.2
610
+ 1783906105.5818858,24394444800,26245025792,15133900800,8.0
611
+ 1783906105.6925232,24393891840,26245578752,15133900800,6.2
612
+ 1783906105.8035681,24387829760,26251640832,15133900800,7.9
613
+ 1783906105.9145124,24387231744,26252238848,15133900800,7.1
614
+ 1783906106.0254147,24386678784,26252791808,15133900800,6.2
615
+ 1783906106.1363788,24386060288,26253410304,15133900800,6.2
616
+ 1783906106.2472186,24385187840,26254282752,15133900800,6.2
617
+ 1783906106.3580847,24395251712,26244218880,15133900800,6.2
618
+ 1783906106.4696238,24394661888,26244808704,15133900800,6.2
619
+ 1783906106.5806918,24394096640,26245373952,15133900800,6.2
620
+ 1783906106.6925156,24389136384,26250334208,15133900800,6.2
621
+ 1783906106.8036354,24382926848,26256543744,15133900800,7.1
622
+ 1783906106.913962,24381300736,26258169856,15133900800,8.0
623
+ 1783906107.0247364,24380751872,26258718720,15133900800,7.1
624
+ 1783906107.1350114,24380182528,26259288064,15133900800,6.2
625
+ 1783906107.246582,24354074624,26285395968,15119400960,24.8
626
+ 1783906107.3560882,24344252416,26295218176,15119400960,51.8
627
+ 1783906107.46607,24348745728,26290724864,15119400960,19.6
628
+ 1783906107.5777898,24349736960,26289733632,15131983872,12.5
629
+ 1783906107.6859791,24361578496,26277892096,15132106752,50.9
630
+ 1783906107.795379,24361377792,26278092800,15132106752,43.8
631
+ 1783906107.9060433,24357081088,26282389504,15132106752,2.7
632
+ 1783906108.0174527,24358445056,26281025536,15144058880,42.9
633
+ 1783906108.1254723,24359952384,26279518208,15144058880,50.0
634
+ 1783906108.2349484,24359952384,26279518208,15144058880,25.0
635
+ 1783906108.3459122,24367742976,26271727616,15144058880,8.0
636
+ 1783906108.4572847,24367538176,26271932416,15144058880,6.2
637
+ 1783906108.5686326,24366919680,26272550912,15144058880,6.2
638
+ 1783906108.68022,24362246144,26277224448,15144058880,8.4
639
+ 1783906108.7910779,24361377792,26278092800,15144058880,7.4
640
+ 1783906108.9034483,24357441536,26282029056,15144058880,2.7
641
+ 1783906109.0156958,24357441536,26282029056,15144058880,0.0
642
+ 1783906109.1280913,24357441536,26282029056,15144058880,0.0
643
+ 1783906109.2373018,24354586624,26284883968,15134228480,6.2
644
+ 1783906109.345506,24367210496,26272260096,15134228480,6.2
645
+ 1783906109.4557178,24366567424,26272903168,15134228480,6.2
646
+ 1783906109.5659673,24365973504,26273497088,15134228480,6.2
647
+ 1783906109.6765885,24363868160,26275602432,15134228480,6.2
648
+ 1783906109.7860553,24363560960,26275909632,15134228480,6.2
649
+ 1783906109.8964128,24357474304,26281996288,15134228480,7.1
650
+ 1783906110.0062444,24356876288,26282594304,15134228480,7.9
651
+ 1783906110.1164305,24356384768,26283085824,15134228480,7.1
652
+ 1783906110.2269893,24355880960,26283589632,15134228480,6.4
653
+ 1783906110.3379858,24355397632,26284072960,15134228480,8.0
654
+ 1783906110.4486446,24366436352,26273034240,15134228480,6.2
655
+ 1783906110.5597942,24365854720,26273615872,15134228480,6.2
656
+ 1783906110.6699424,24360198144,26279272448,15134228480,6.2
657
+ 1783906110.7793014,24359800832,26279669760,15134228480,7.1
658
+ 1783906110.889555,24353943552,26285527040,15134228480,6.2
659
+ 1783906110.9995706,24353402880,26286067712,15134228480,6.2
660
+ 1783906111.110467,24352829440,26286641152,15134228480,6.2
661
+ 1783906111.2224407,24354463744,26285006848,15144058880,6.2
662
+ 1783906111.3303335,24354426880,26285043712,15144058880,47.3
663
+ 1783906111.4404132,24368074752,26271395840,15144058880,37.5
664
+ 1783906111.5531497,24368074752,26271395840,15144058880,0.0
665
+ 1783906111.6651218,24368074752,26271395840,15144058880,3.1
666
+ 1783906111.7774131,24368074752,26271395840,15144058880,2.7
667
+ 1783906111.8894587,24367083520,26272387072,15144058880,1.8
668
+ 1783906112.0019372,24366804992,26272665600,15144058880,0.0
669
+ 1783906112.1135209,24366161920,26273308672,15144058880,0.0
670
+ 1783906112.2256024,24365580288,26273890304,15144058880,0.9
671
+ 1783906112.3371382,24365142016,26274328576,15144058880,0.8
672
+ 1783906112.4455462,24366153728,26273316864,15134228480,8.2
673
+ 1783906112.5548623,24365703168,26273767424,15134228480,7.1
674
+ 1783906112.6648796,24365244416,26274226176,15134228480,7.1
675
+ 1783906112.7756727,24364216320,26275254272,15134228480,7.1
676
+ 1783906112.8856514,24358301696,26281168896,15134228480,6.2
677
+ 1783906112.9961598,24357736448,26281734144,15134228480,6.2
678
+ 1783906113.1073833,24357126144,26282344448,15134228480,7.1
679
+ 1783906113.2175908,24356081664,26283388928,15134228480,6.2
680
+ 1783906113.3277555,24355569664,26283900928,15134228480,8.0
681
+ 1783906113.4382403,24364896256,26274574336,15134228480,6.2
682
+ 1783906113.549167,24364318720,26275151872,15134228480,6.2
683
+ 1783906113.6588902,24363737088,26275733504,15134228480,6.2
684
+ 1783906113.7683978,24359325696,26280144896,15134228480,6.2
685
+ 1783906113.8794103,24353402880,26286067712,15134228480,6.2
686
+ 1783906113.9891303,24352952320,26286518272,15134228480,6.2
687
+ 1783906114.0987597,24352423936,26287046656,15134228480,6.2
688
+ 1783906114.208117,24352010240,26287460352,15134228480,6.2
689
+ 1783906114.3189814,24351645696,26287824896,15134228480,7.9
690
+ 1783906114.430485,24363085824,26276384768,15144058880,14.2
691
+ 1783906114.539933,24362438656,26277031936,15144058880,50.0
692
+ 1783906114.6477947,24362442752,26277027840,15144058880,34.3
693
+ 1783906114.7603252,24362438656,26277031936,15144058880,4.8
694
+ 1783906114.8717082,24362369024,26277101568,15144058880,0.0
695
+ 1783906114.983199,24360812544,26278658048,15144058880,0.0
696
+ 1783906115.0950274,24361099264,26278371328,15144058880,0.0
697
+ 1783906115.2058334,24360706048,26278764544,15144058880,1.8
698
+ 1783906115.3184185,24360505344,26278965248,15144058880,0.0
699
+ 1783906115.4309096,24366604288,26272866304,15144058880,2.3
700
+ 1783906115.5429044,24366145536,26273325056,15144058880,2.7
701
+ 1783906115.6535556,24355794944,26283675648,15134228480,4.5
702
+ 1783906115.7625225,24355041280,26284429312,15134228480,6.2
703
+ 1783906115.8723216,24354562048,26284908544,15134228480,6.2
704
+ 1783906115.9825442,24350666752,26288803840,15134228480,6.2
705
+ 1783906116.0925915,24350441472,26289029120,15134228480,8.0
706
+ 1783906116.2045677,24350347264,26289123328,15134228480,6.2
707
+ 1783906116.3141124,24350187520,26289283072,15134228480,6.2
708
+ 1783906116.4240494,24364449792,26275020800,15134228480,6.2
709
+ 1783906116.533823,24363941888,26275528704,15134228480,8.0
710
+ 1783906116.6442103,24363450368,26276020224,15134228480,6.2
711
+ 1783906116.7554345,24362848256,26276622336,15134228480,6.2
712
+ 1783906116.865848,24358797312,26280673280,15134228480,7.1
713
+ 1783906116.9764924,24352485376,26286985216,15134228480,8.8
714
+ 1783906117.0866323,24351932416,26287538176,15134228480,6.4
715
+ 1783906117.1971495,24351498240,26287972352,15134228480,6.2
716
+ 1783906117.3074207,24350941184,26288529408,15134228480,6.2
717
+ 1783906117.4174345,24362319872,26277150720,15134228480,8.0
718
+ 1783906117.5278656,24361697280,26277773312,15134228480,6.2
719
+ 1783906117.6389022,24361119744,26278350848,15144058880,12.5
720
+ 1783906117.7481787,24360554496,26278916096,15144071168,46.4
721
+ 1783906117.8558357,24360550400,26278920192,15144075264,31.2
722
+ 1783906117.968476,24361381888,26278088704,15144075264,0.0
723
+ 1783906118.0803292,24361029632,26278440960,15144075264,1.8
724
+ 1783906118.191701,24360816640,26278653952,15144075264,0.0
725
+ 1783906118.3043597,24360538112,26278932480,15144075264,1.8
726
+ 1783906118.416885,24360255488,26279215104,15144075264,1.6
727
+ 1783906118.5289452,24366108672,26273361920,15144075264,1.8
728
+ 1783906118.6406183,24365522944,26273947648,15144075264,0.0
729
+ 1783906118.7524467,24364986368,26274484224,15144075264,0.0
730
+ 1783906118.8628645,24354471936,26284998656,15134244864,4.5
731
+ 1783906118.9718838,24350298112,26289172480,15134244864,6.2
732
+ 1783906119.081681,24350040064,26289430528,15134244864,6.2
733
+ 1783906119.1916492,24349954048,26289516544,15134244864,6.2
734
+ 1783906119.3038585,24349712384,26289758208,15134244864,8.8
735
+ 1783906119.414066,24349663232,26289807360,15134244864,7.0
736
+ 1783906119.5240278,24364171264,26275299328,15134244864,8.0
737
+ 1783906119.63371,24363741184,26275729408,15134244864,7.1
738
+ 1783906119.7432773,24363167744,26276302848,15134244864,6.5
739
+ 1783906119.8542855,24359460864,26280009728,15134244864,6.2
740
+ 1783906119.9639075,24353214464,26286256128,15134244864,6.2
741
+ 1783906120.0740604,24352632832,26286837760,15134244864,6.2
742
+ 1783906120.1842828,24352088064,26287382528,15134244864,6.2
743
+ 1783906120.2942836,24351498240,26287972352,15134244864,6.2
744
+ 1783906120.4049454,24350924800,26288545792,15134244864,6.2
745
+ 1783906120.51503,24362356736,26277113856,15134244864,6.2
746
+ 1783906120.6252792,24361713664,26277756928,15134244864,6.2
747
+ 1783906120.7350469,24361250816,26278219776,15134244864,6.2
748
+ 1783906120.8460095,24360869888,26278600704,15144079360,8.0
749
+ 1783906120.956274,24359669760,26279800832,15144087552,48.2
750
+ 1783906121.0642564,24359792640,26279677952,15144087552,31.2
751
+ 1783906121.1772578,24360292352,26279178240,15144087552,0.0
752
+ 1783906121.2901928,24360091648,26279378944,15144087552,1.6
753
+ 1783906121.4020853,24359936000,26279534592,15144087552,0.9
754
+ 1783906121.5132506,24366546944,26272923648,15144091648,1.8
755
+ 1783906121.6254392,24366288896,26273181696,15144095744,0.0
756
+ 1783906121.7376468,24365936640,26273533952,15144095744,0.0
757
+ 1783906121.849547,24365637632,26273832960,15144099840,0.0
758
+ 1783906121.9612963,24360988672,26278481920,15144103936,0.9
759
+ 1783906122.0721564,24351068160,26288402432,15134273536,5.6
760
+ 1783906122.1806343,24350937088,26288533504,15134273536,7.1
761
+ 1783906122.292011,24350756864,26288713728,15134273536,6.2
762
+ 1783906122.4025009,24350642176,26288828416,15134273536,6.2
763
+ 1783906122.5118604,24364376064,26275094528,15134273536,6.2
764
+ 1783906122.6227677,24363819008,26275651584,15134273536,6.2
765
+ 1783906122.7329257,24363323392,26276147200,15134273536,6.2
766
+ 1783906122.8424523,24362913792,26276556800,15134273536,6.2
767
+ 1783906122.9533722,24356798464,26282672128,15134273536,6.2
768
+ 1783906123.0629113,24353021952,26286448640,15134273536,6.2
769
+ 1783906123.1720347,24352460800,26287009792,15134273536,6.2
770
+ 1783906123.2814772,24351748096,26287722496,15134273536,6.2
771
+ 1783906123.3917644,24351084544,26288386048,15134273536,6.2
772
+ 1783906123.5015628,24362577920,26276892672,15134273536,6.2
773
+ 1783906123.611109,24361975808,26277494784,15134273536,6.2
774
+ 1783906123.7212315,24361345024,26278125568,15134273536,6.2
775
+ 1783906123.8312392,24360812544,26278658048,15134273536,6.2
776
+ 1783906123.9413319,24354672640,26284797952,15134273536,6.2
777
+ 1783906124.0529633,24353800192,26285670400,15144116224,6.2
778
+ 1783906124.1623564,24353652736,26285817856,15144128512,47.3
779
+ 1783906124.2712443,24353652736,26285817856,15144128512,38.4
780
+ 1783906124.3849957,24353652736,26285817856,15144128512,3.9
781
+ 1783906124.4973638,24366514176,26272956416,15144128512,1.8
782
+ 1783906124.6101153,24366514176,26272956416,15144128512,0.0
783
+ 1783906124.7210774,24366514176,26272956416,15144132608,0.0
784
+ 1783906124.8328404,24366514176,26272956416,15144132608,0.0
785
+ 1783906124.9452937,24365961216,26273509376,15144132608,0.9
786
+ 1783906125.056562,24365473792,26273996800,15144132608,1.6
787
+ 1783906125.16843,24365060096,26274410496,15144132608,1.8
788
+ 1783906125.27683,24355041280,26284429312,15134302208,4.5
789
+ 1783906125.3865159,24354459648,26285010944,15134302208,8.0
790
+ 1783906125.4959633,24364744704,26274725888,15134302208,6.2
791
+ 1783906125.6058621,24364068864,26275401728,15134302208,7.1
792
+ 1783906125.7147923,24363556864,26275913728,15134302208,8.0
793
+ 1783906125.824061,24362930176,26276540416,15134302208,6.2
794
+ 1783906125.9343839,24362393600,26277076992,15134302208,6.2
795
+ 1783906126.0441382,24353693696,26285776896,15134302208,6.2
796
+ 1783906126.1552129,24353128448,26286342144,15134302208,6.2
797
+ 1783906126.264885,24352665600,26286804992,15134302208,6.2
798
+ 1783906126.3750632,24352169984,26287300608,15134302208,6.2
799
+ 1783906126.4858594,24363769856,26275700736,15134302208,6.2
800
+ 1783906126.5953314,24363085824,26276384768,15134302208,6.2
801
+ 1783906126.70423,24362496000,26276974592,15134302208,6.2
802
+ 1783906126.8131573,24361955328,26277515264,15134302208,6.2
803
+ 1783906126.9238477,24361447424,26278023168,15134302208,6.2
804
+ 1783906127.0350783,24350027776,26289442816,15134302208,6.2
805
+ 1783906127.1451547,24349450240,26290020352,15134302208,6.2
806
+ 1783906127.2561333,24352411648,26287058944,15144140800,7.8
807
+ 1783906127.3663573,24352325632,26287144960,15144177664,50.8
808
+ 1783906127.4747498,24366632960,26272837632,15144177664,34.0
809
+ 1783906127.587795,24366632960,26272837632,15144177664,4.7
810
+ 1783906127.6980321,24366641152,26272829440,15144177664,1.8
811
+ 1783906127.808686,24366641152,26272829440,15144177664,4.5
812
+ 1783906127.9220564,24366641152,26272829440,15144177664,0.0
813
+ 1783906128.033953,24366235648,26273234944,15144177664,0.0
814
+ 1783906128.1466463,24365957120,26273513472,15144177664,0.0
815
+ 1783906128.2587094,24365690880,26273779712,15144177664,0.8
816
+ 1783906128.3709948,24365318144,26274152448,15144177664,8.8
817
+ 1783906128.4805248,24355119104,26284351488,15134347264,5.3
818
+ 1783906128.5905356,24364687360,26274783232,15134347264,6.2
819
+ 1783906128.7013261,24364019712,26275450880,15134347264,6.2
820
+ 1783906128.8108535,24363515904,26275954688,15134347264,6.2
821
+ 1783906128.9207985,24362962944,26276507648,15134347264,6.2
822
+ 1783906129.0309417,24356913152,26282557440,15134347264,6.2
823
+ 1783906129.141007,24354574336,26284896256,15134347264,6.2
824
+ 1783906129.2515125,24354066432,26285404160,15134347264,6.2
825
+ 1783906129.3614414,24353615872,26285854720,15134347264,6.2
826
+ 1783906129.4723392,24353091584,26286379008,15134347264,6.2
827
+ 1783906129.5832822,24364113920,26275356672,15134347264,6.2
828
+ 1783906129.6939044,24363466752,26276003840,15134347264,7.9
829
+ 1783906129.805137,24362803200,26276667392,15134347264,8.7
830
+ 1783906129.9162323,24360538112,26278932480,15134347264,8.9
831
+ 1783906130.0273802,24354418688,26285051904,15134347264,6.2
832
+ 1783906130.1389096,24348364800,26291105792,15134347264,6.2
833
+ 1783906130.249851,24347799552,26291671040,15134347264,6.2
834
+ 1783906130.361428,24347328512,26292142080,15134347264,6.2
835
+ 1783906130.4735222,24349863936,26289606656,15144181760,6.2
836
+ 1783906130.5817254,24365309952,26274160640,15144202240,46.9
837
+ 1783906130.6912076,24365309952,26274160640,15144202240,31.2
838
+ 1783906130.804159,24365309952,26274160640,15144206336,0.0
839
+ 1783906130.915663,24365309952,26274160640,15144206336,2.3
840
+ 1783906131.0266654,24365039616,26274430976,15144206336,1.8
841
+ 1783906131.1382093,24364781568,26274689024,15144210432,0.0
842
+ 1783906131.249353,24364609536,26274861056,15144218624,0.0
843
+ 1783906131.3619606,24364302336,26275168256,15144222720,0.0
844
+ 1783906131.4743085,24363986944,26275483648,15144222720,0.0
845
+ 1783906131.5867846,24365309952,26274160640,15144222720,2.5
846
+ 1783906131.6955183,24355155968,26284314624,15134392320,7.2
847
+ 1783906131.8063135,24354570240,26284900352,15134392320,7.3
848
+ 1783906131.916298,24354021376,26285449216,15134392320,6.2
849
+ 1783906132.027407,24349958144,26289512448,15134392320,6.2
850
+ 1783906132.1379921,24349802496,26289668096,15134392320,8.0
851
+ 1783906132.2472603,24348692480,26290778112,15134392320,6.2
852
+ 1783906132.357127,24348692480,26290778112,15134392320,6.2
853
+ 1783906132.4682345,24348635136,26290835456,15134392320,6.2
854
+ 1783906132.5792363,24363102208,26276368384,15134392320,6.2
855
+ 1783906132.6892617,24362803200,26276667392,15134392320,6.2
856
+ 1783906132.8004136,24362225664,26277244928,15134392320,6.2
857
+ 1783906132.909262,24361721856,26277748736,15134392320,7.1
858
+ 1783906133.0183187,24355491840,26283978752,15134392320,6.2
859
+ 1783906133.1274908,24354918400,26284552192,15134392320,6.2
860
+ 1783906133.237248,24349294592,26290176000,15134392320,6.2
861
+ 1783906133.3464444,24348807168,26290663424,15134392320,6.2
862
+ 1783906133.455489,24348274688,26291195904,15134392320,6.2
863
+ 1783906133.5655494,24360099840,26279370752,15134392320,6.2
864
+ 1783906133.676209,24357265408,26282205184,15133343744,6.2
865
+ 1783906133.7872112,24316231680,26323238912,15119900672,45.6
866
+ 1783906133.897096,24316645376,26322825216,15119900672,50.9
867
+ 1783906134.0075645,24316846080,26322624512,15119908864,7.9
868
+ 1783906134.118544,24367718400,26271752192,15152480256,35.5
869
+ 1783906134.2293386,24350605312,26288865280,15132553216,52.7
870
+ 1783906134.3399146,24350605312,26288865280,15132553216,18.8
871
+ 1783906134.4502285,24364662784,26274807808,15144509440,36.6
872
+ 1783906134.557087,24375468032,26264002560,15144509440,50.4
873
+ 1783906134.6662035,24375443456,26264027136,15144509440,25.0
874
+ 1783906134.7760599,24375189504,26264281088,15144509440,6.2
875
+ 1783906134.8862963,24374886400,26264584192,15144509440,6.2
876
+ 1783906134.9958556,24374534144,26264936448,15144509440,6.2
877
+ 1783906135.107746,24370823168,26268647424,15144509440,8.0
878
+ 1783906135.2194216,24351772672,26287697920,15144509440,6.2
879
+ 1783906135.33083,24351657984,26287812608,15144509440,3.6
880
+ 1783906135.4444182,24351657984,26287812608,15144509440,0.9
881
+ 1783906135.5567074,24360669184,26278801408,15144509440,2.4
882
+ 1783906135.6669314,24358301696,26281168896,15134679040,5.3
883
+ 1783906135.7754006,24357789696,26281680896,15134679040,6.2
884
+ 1783906135.8849185,24357150720,26282319872,15134679040,6.2
885
+ 1783906135.9957132,24356614144,26282856448,15134679040,6.2
886
+ 1783906136.1064599,24351952896,26287517696,15134679040,6.2
887
+ 1783906136.216878,24350494720,26288975872,15134679040,6.2
888
+ 1783906136.3268194,24350339072,26289131520,15134679040,6.2
889
+ 1783906136.4378095,24350224384,26289246208,15134679040,6.2
890
+ 1783906136.548432,24359940096,26279530496,15134679040,6.2
891
+ 1783906136.6584575,24359366656,26280103936,15134679040,6.2
892
+ 1783906136.7689142,24358768640,26280701952,15134679040,6.2
893
+ 1783906136.8789048,24358297600,26281172992,15134679040,6.2
894
+ 1783906136.992438,24396722176,26242748416,15134679040,19.1
895
+ 1783906137.1037734,24396722176,26242748416,15134679040,9.6
896
+ 1783906137.2152238,24397316096,26242154496,15134679040,10.6
897
+ 1783906137.3242557,24397316096,26242154496,15134679040,6.2
898
+ 1783906137.4347372,24363343872,26276126720,15134679040,6.2
899
+ 1783906137.5450757,24363331584,26276139008,15134679040,6.2
900
+ 1783906137.6552076,24380162048,26259308544,15134679040,6.2
901
+ 1783906137.7669687,24379584512,26259886080,15144509440,48.2
902
+ 1783906137.8758993,24379584512,26259886080,15144509440,37.5
903
+ 1783906137.9890146,24379584512,26259886080,15144509440,0.0
904
+ 1783906138.1007843,24389869568,26249601024,15144509440,0.9
905
+ 1783906138.2123418,24389705728,26249764864,15144509440,0.8
906
+ 1783906138.323809,24388972544,26250498048,15144509440,4.4
907
+ 1783906138.4349241,24388403200,26251067392,15144509440,0.9
908
+ 1783906138.5465786,24387780608,26251689984,15144509440,1.8
909
+ 1783906138.6583254,24392351744,26247118848,15144509440,0.0
910
+ 1783906138.770118,24392019968,26247450624,15144509440,0.0
911
+ 1783906138.880357,24381784064,26257686528,15134679040,3.6
912
+ 1783906138.9881368,24381091840,26258378752,15134679040,6.2
913
+ 1783906139.0976844,24375095296,26264375296,15134679040,6.2
914
+ 1783906139.208029,24376868864,26262601728,15134679040,7.1
915
+ 1783906139.3163967,24376074240,26263396352,15134679040,6.2
916
+ 1783906139.4265678,24375439360,26264031232,15134679040,6.2
917
+ 1783906139.5367844,24375386112,26264084480,15134679040,6.2
918
+ 1783906139.6472933,24374112256,26265358336,15134679040,8.8
919
+ 1783906139.7576602,24373530624,26265939968,15134679040,7.1
920
+ 1783906139.8677514,24372989952,26266480640,15134679040,6.3
921
+ 1783906139.977764,24372461568,26267009024,15134679040,6.2
922
+ 1783906140.089364,24363847680,26275622912,15134679040,7.1
923
+ 1783906140.198847,24363257856,26276212736,15134679040,6.2
924
+ 1783906140.309005,24357548032,26281922560,15134679040,6.2
925
+ 1783906140.4195771,24356966400,26282504192,15134679040,6.2
926
+ 1783906140.529742,24356360192,26283110400,15134679040,8.0
927
+ 1783906140.6404042,24369324032,26270146560,15134679040,6.2
928
+ 1783906140.751404,24368717824,26270752768,15134679040,6.2
929
+ 1783906140.861565,24368283648,26271186944,15134679040,8.0
930
+ 1783906140.9726286,24367702016,26271768576,15144509440,42.5
931
+ 1783906141.0810013,24367738880,26271731712,15144509440,37.5
932
+ 1783906141.1938548,24378388480,26261082112,15144509440,1.8
933
+ 1783906141.305126,24380665856,26258804736,15144509440,1.8
934
+ 1783906141.416697,24379715584,26259755008,15144509440,3.9
935
+ 1783906141.5289679,24379133952,26260336640,15144509440,0.0
936
+ 1783906141.6402485,24382062592,26257408000,15144509440,0.0
937
+ 1783906141.7520938,24381538304,26257932288,15144509440,0.0
938
+ 1783906141.8645532,24381005824,26258464768,15144509440,0.0
939
+ 1783906141.9763422,24380469248,26259001344,15144509440,0.9
940
+ 1783906142.0881186,24370102272,26269368320,15134679040,6.4
941
+ 1783906142.1990044,24362926080,26276544512,15134679040,9.7
942
+ 1783906142.3110113,24377249792,26262220800,15134679040,13.4
943
+ 1783906142.4235427,24398536704,26240933888,15134679040,17.0
944
+ 1783906142.5334594,24426586112,26212884480,15134679040,14.3
945
+ 1783906142.642049,24443105280,26196365312,15134679040,14.3
946
+ 1783906142.7535622,24407994368,26231476224,15134679040,17.9
947
+ 1783906142.864301,24433958912,26205511680,15134679040,16.1
948
+ 1783906142.974992,24444530688,26194939904,15134679040,14.0
949
+ 1783906143.08399,24445128704,26194341888,15134679040,6.4
950
+ 1783906143.196715,24449691648,26189778944,15134679040,13.3
951
+ 1783906143.306102,24465448960,26174021632,15134679040,18.8
952
+ 1783906143.4160051,24403628032,26235842560,15134679040,28.6
953
+ 1783906143.5252168,24402817024,26236653568,15134679040,9.7
954
+ 1783906143.6345005,24400179200,26239291392,15134679040,8.0
955
+ 1783906143.7439811,24399380480,26240090112,15134679040,6.2
956
+ 1783906143.8548632,24399126528,26240344064,15134679040,6.2
957
+ 1783906143.9651215,24398217216,26241253376,15134679040,6.2
958
+ 1783906144.0752995,24398086144,26241384448,15134679040,6.2
959
+ 1783906144.1869824,24401698816,26237771776,15144529920,47.3
960
+ 1783906144.2944722,24401666048,26237804544,15144529920,37.5
961
+ 1783906144.4068313,24401547264,26237923328,15144529920,0.0
962
+ 1783906144.519076,24401403904,26238066688,15144529920,1.8
963
+ 1783906144.6310463,24406732800,26232737792,15144529920,0.0
964
+ 1783906144.7429166,24406126592,26233344000,15144529920,0.9
965
+ 1783906144.8550425,24405614592,26233856000,15144529920,1.6
966
+ 1783906144.9669347,24405037056,26234433536,15144529920,1.8
967
+ 1783906145.0789063,24404348928,26235121664,15144529920,0.0
968
+ 1783906145.1895173,24398028800,26241441792,15144529920,0.0
969
+ 1783906145.300282,24396824576,26242646016,15134699520,3.6
970
+ 1783906145.4111035,24396288000,26243182592,15134699520,6.2
971
+ 1783906145.5207708,24396021760,26243448832,15134699520,6.2
972
+ 1783906145.6314266,24396873728,26242596864,15134699520,7.9
973
+ 1783906145.742624,24396591104,26242879488,15134699520,7.1
974
+ 1783906145.8536544,24396337152,26243133440,15134699520,5.6
975
+ 1783906145.9637156,24396148736,26243321856,15134699520,7.1
976
+ 1783906146.0739388,24395915264,26243555328,15134699520,6.2
977
+ 1783906146.184762,24396898304,26242572288,15134699520,7.1
978
+ 1783906146.2966347,24396529664,26242940928,15134699520,7.1
979
+ 1783906146.4076803,24391434240,26248036352,15134699520,6.2
980
+ 1783906146.5173528,24391180288,26248290304,15134699520,6.2
981
+ 1783906146.6276538,24390926336,26248544256,15134699520,8.0
982
+ 1783906146.7378438,24392269824,26247200768,15134699520,6.2
983
+ 1783906146.8482099,24392015872,26247454720,15134699520,6.2
984
+ 1783906146.958287,24391749632,26247720960,15134699520,6.2
985
+ 1783906147.0683248,24391557120,26247913472,15134699520,6.2
986
+ 1783906147.1793597,24392581120,26246889472,15134699520,9.4
987
+ 1783906147.2907023,24400519168,26238951424,15144529920,13.7
988
+ 1783906147.3992715,24399921152,26239549440,15144529920,54.7
989
+ 1783906147.5086713,24399904768,26239565824,15144529920,31.4
990
+ 1783906147.6216328,24399904768,26239565824,15144529920,2.7
991
+ 1783906147.7325916,24417570816,26221899776,15144529920,8.8
992
+ 1783906147.8431048,24435781632,26203688960,15144534016,10.7
993
+ 1783906147.9549747,24423276544,26216194048,15144534016,14.3
994
+ 1783906148.0647268,24462671872,26176798720,15144534016,18.8
995
+ 1783906148.1756403,24479899648,26159570944,15144534016,10.6
996
+ 1783906148.2857728,24481329152,26158141440,15144538112,6.2
997
+ 1783906148.3958852,24450273280,26189197312,15144538112,13.4
998
+ 1783906148.5077198,24465547264,26173923328,15134707712,15.4
999
+ 1783906148.6166208,24471638016,26167832576,15134707712,12.5
1000
+ 1783906148.7280827,24481402880,26158067712,15134707712,9.5
1001
+ 1783906148.8388982,24481226752,26158243840,15134707712,6.2
1002
+ 1783906148.9505386,24468094976,26171375616,15134707712,11.6
1003
+ 1783906149.0603356,24411688960,26227781632,15134707712,8.0
1004
+ 1783906149.1714597,24419868672,26219601920,15134707712,7.1
1005
+ 1783906149.2815552,24415416320,26224054272,15134707712,8.0
1006
+ 1783906149.3915794,24396668928,26242801664,15134707712,6.2
1007
+ 1783906149.5016007,24394715136,26244755456,15134707712,6.2
1008
+ 1783906149.6111872,24394715136,26244755456,15134707712,6.2
1009
+ 1783906149.7217274,24411230208,26228240384,15134707712,7.1
1010
+ 1783906149.8322413,24411049984,26228420608,15134707712,6.2
1011
+ 1783906149.9425461,24410767360,26228703232,15134707712,6.2
1012
+ 1783906150.0526512,24410554368,26228916224,15134707712,6.2
1013
+ 1783906150.162645,24410456064,26229014528,15134707712,8.6
1014
+ 1783906150.2732553,24406310912,26233159680,15134707712,7.3
1015
+ 1783906150.383026,24391495680,26247974912,15134707712,8.0
1016
+ 1783906150.4951081,24384311296,26255159296,15134724096,8.8
1017
+ 1783906150.6039724,24385429504,26254041088,15144562688,47.8
1018
+ 1783906150.7128494,24400257024,26239213568,15144562688,31.2
1019
+ 1783906150.825816,24400257024,26239213568,15144562688,0.0
1020
+ 1783906150.9381084,24400252928,26239217664,15144566784,0.0
1021
+ 1783906151.0490117,24400252928,26239217664,15144566784,0.0
1022
+ 1783906151.161141,24404893696,26234576896,15144566784,0.9
1023
+ 1783906151.2740145,24403382272,26236088320,15144566784,0.9
1024
+ 1783906151.3855839,24402796544,26236674048,15144566784,1.6
1025
+ 1783906151.4980867,24401678336,26237792256,15144566784,0.0
1026
+ 1783906151.6098616,24401088512,26238382080,15144566784,0.0
1027
+ 1783906151.7198792,24401375232,26238095360,15134736384,3.6
1028
+ 1783906151.8294694,24401121280,26238349312,15134736384,6.2
1029
+ 1783906151.9400532,24400961536,26238509056,15134736384,6.2
1030
+ 1783906152.049084,24400351232,26239119360,15134736384,6.2
1031
+ 1783906152.1592875,24399626240,26239844352,15134736384,6.2
1032
+ 1783906152.270826,24396238848,26243231744,15134736384,6.2
1033
+ 1783906152.3829103,24397651968,26241818624,15134736384,9.6
1034
+ 1783906152.4909472,24397070336,26242400256,15134736384,7.1
1035
+ 1783906152.6000867,24393883648,26245586944,15134736384,7.1
1036
+ 1783906152.7085376,24399855616,26239614976,15134736384,5.5
1037
+ 1783906152.81925,24399486976,26239983616,15134736384,8.6
1038
+ 1783906152.92783,24398950400,26240520192,15134736384,5.6
1039
+ 1783906153.0370703,24398368768,26241101824,15134736384,6.2
1040
+ 1783906153.1459591,24397795328,26241675264,15134736384,6.2
1041
+ 1783906153.2566857,24391872512,26247598080,15134736384,10.4
1042
+ 1783906153.3638322,24391249920,26248220672,15134736384,7.2
1043
+ 1783906153.4722035,24390275072,26249195520,15134736384,6.2
1044
+ 1783906153.5830047,24384274432,26255196160,15134736384,6.2
1045
+ 1783906153.69267,24396107776,26243362816,15134736384,6.2
1046
+ 1783906153.8045733,24395644928,26243825664,15144607744,45.8
1047
+ 1783906153.9119673,24395653120,26243817472,15144607744,40.4
1048
+ 1783906154.02476,24395653120,26243817472,15144607744,0.8
1049
+ 1783906154.1364222,24395653120,26243817472,15144607744,1.8
1050
+ 1783906154.2480927,24412774400,26226696192,15144607744,0.0
1051
+ 1783906154.3591766,24412536832,26226933760,15144607744,0.0
1052
+ 1783906154.471314,24411947008,26227523584,15144607744,0.0
1053
+ 1783906154.5828538,24410980352,26228490240,15144607744,0.0
1054
+ 1783906154.6949637,24413376512,26226094080,15144607744,0.9
1055
+ 1783906154.8062894,24412880896,26226589696,15144607744,0.8
1056
+ 1783906154.9164789,24402489344,26236981248,15134777344,8.9
1057
+ 1783906155.0262694,24401821696,26237648896,15134777344,6.2
1058
+ 1783906155.1370828,24401379328,26238091264,15134777344,7.1
1059
+ 1783906155.2488234,24395210752,26244259840,15134777344,7.1
1060
+ 1783906155.3578415,24394629120,26244841472,15134777344,8.0
1061
+ 1783906155.468251,24394047488,26245423104,15134777344,6.2
1062
+ 1783906155.5782735,24393469952,26246000640,15134777344,6.2
1063
+ 1783906155.6896253,24404946944,26234523648,15134777344,6.2
1064
+ 1783906155.7995894,24404414464,26235056128,15134777344,7.1
1065
+ 1783906155.9093933,24403828736,26235641856,15134777344,6.2
1066
+ 1783906156.0203607,24398319616,26241150976,15134777344,6.2
1067
+ 1783906156.1314697,24397717504,26241753088,15134777344,8.6
1068
+ 1783906156.242342,24391573504,26247897088,15134777344,8.0
1069
+ 1783906156.3531415,24391057408,26248413184,15134777344,6.4
1070
+ 1783906156.463431,24367620096,26271850496,15134777344,6.2
1071
+ 1783906156.5736916,24367366144,26272104448,15134777344,6.2
1072
+ 1783906156.685744,24360886272,26278584320,15134777344,6.2
1073
+ 1783906156.7954059,24371253248,26268217344,15134777344,6.2
1074
+ 1783906156.906343,24371027968,26268442624,15134777344,6.2
1075
+ 1783906157.0176086,24371646464,26267824128,15144636416,47.3
1076
+ 1783906157.1248972,24371646464,26267824128,15144640512,37.5
1077
+ 1783906157.2375152,24382771200,26256699392,15144640512,0.0
1078
+ 1783906157.3500922,24386338816,26253131776,15144640512,0.0
1079
+ 1783906157.4614172,24388009984,26251460608,15144644608,3.5
1080
+ 1783906157.5736663,24387436544,26252034048,15144648704,0.8
1081
+ 1783906157.6863794,24386347008,26253123584,15144652800,0.0
1082
+ 1783906157.7965453,24388395008,26251075584,15144652800,0.9
1083
+ 1783906157.9077594,24387809280,26251661312,15144652800,5.4
1084
+ 1783906158.0213842,24387170304,26252300288,15144656896,0.0
1085
+ 1783906158.1318376,24376737792,26262732800,15134826496,5.2
1086
+ 1783906158.241261,24371249152,26268221440,15134826496,6.4
1087
+ 1783906158.350544,24370995200,26268475392,15134826496,7.8
1088
+ 1783906158.4600868,24370741248,26268729344,15134826496,7.1
1089
+ 1783906158.570094,24370417664,26269052928,15134826496,8.0
1090
+ 1783906158.6803887,24369106944,26270363648,15134826496,7.3
1091
+ 1783906158.790976,24377872384,26261598208,15134826496,9.8
1092
+ 1783906158.9004433,24377618432,26261852160,15134826496,6.2
1093
+ 1783906159.0103178,24377364480,26262106112,15134826496,6.2
1094
+ 1783906159.1201432,24377139200,26262331392,15134826496,8.0
1095
+ 1783906159.2309523,24376897536,26262573056,15134826496,7.1
1096
+ 1783906159.340587,24371507200,26267963392,15134826496,6.2
1097
+ 1783906159.450762,24371253248,26268217344,15134826496,6.2
1098
+ 1783906159.5609148,24370933760,26268536832,15134826496,6.2
1099
+ 1783906159.6708179,24370630656,26268839936,15134826496,6.2
1100
+ 1783906159.7825,24373211136,26266259456,15134826496,6.2
1101
+ 1783906159.8921416,24372977664,26266492928,15134826496,6.2
1102
+ 1783906160.0020645,24372731904,26266738688,15134826496,6.2
1103
+ 1783906160.111962,24372568064,26266902528,15134826496,6.2
1104
+ 1783906160.2237322,24335679488,26303791104,15120347136,35.7
1105
+ 1783906160.3315327,24331210752,26308259840,15120347136,50.0
1106
+ 1783906160.4413795,24330661888,26308808704,15120347136,11.6
1107
+ 1783906160.5520248,24381923328,26257547264,15152861184,18.8
1108
+ 1783906160.6615238,24366505984,26272964608,15132930048,50.0
1109
+ 1783906160.7721546,24380309504,26259161088,15132930048,31.9
1110
+ 1783906160.882617,24378400768,26261069824,15144869888,36.3
1111
+ 1783906160.991245,24387334144,26252136448,15144869888,53.2
1112
+ 1783906161.0994577,24390688768,26248781824,15144873984,33.0
1113
+ 1783906161.2091007,24375828480,26263642112,15144857600,7.1
1114
+ 1783906161.3193283,24371945472,26267525120,15144857600,6.9
1115
+ 1783906161.4284945,24368709632,26270760960,15144857600,9.1
1116
+ 1783906161.5400248,24368525312,26270945280,15144857600,8.0
1117
+ 1783906161.6494684,24368230400,26271240192,15144857600,6.3
1118
+ 1783906161.7610457,24378462208,26261008384,15144857600,5.4
1119
+ 1783906161.8739696,24378462208,26261008384,15144857600,1.8
1120
+ 1783906161.9860551,24378462208,26261008384,15144857600,0.0
1121
+ 1783906162.0970159,24371351552,26268119040,15135027200,2.7
1122
+ 1783906162.2034426,24371097600,26268372992,15135027200,6.2
1123
+ 1783906162.313088,24366088192,26273382400,15135027200,6.2
1124
+ 1783906162.4221115,24365821952,26273648640,15135027200,8.0
1125
+ 1783906162.5318081,24365576192,26273894400,15135027200,8.0
1126
+ 1783906162.6414325,24365387776,26274082816,15135027200,6.2
1127
+ 1783906162.7522087,24375980032,26263490560,15135027200,6.2
1128
+ 1783906162.8625867,24374427648,26265042944,15135027200,6.2
1129
+ 1783906162.9714692,24374173696,26265296896,15135027200,6.2
1130
+ 1783906163.0816214,24374001664,26265468928,15135027200,6.2
1131
+ 1783906163.1914003,24373747712,26265722880,15135027200,6.2
1132
+ 1783906163.3009636,24368807936,26270662656,15135027200,6.2
1133
+ 1783906163.4107423,24368541696,26270928896,15135027200,6.2
1134
+ 1783906163.5202227,24368287744,26271182848,15135027200,6.2
1135
+ 1783906163.6297467,24367964160,26271506432,15135027200,6.2
1136
+ 1783906163.741223,24375271424,26264199168,15135027200,7.9
1137
+ 1783906163.8517108,24369491968,26269978624,15135027200,8.8
1138
+ 1783906163.9611473,24369156096,26270314496,15135027200,7.2
1139
+ 1783906164.0710497,24368930816,26270539776,15135027200,6.3
1140
+ 1783906164.1830666,24369397760,26270072832,15144857600,35.7
1141
+ 1783906164.2908914,24371757056,26267713536,15144857600,43.8
1142
+ 1783906164.4033065,24371859456,26267611136,15144857600,6.2
1143
+ 1783906164.5170462,24372293632,26267176960,15144857600,0.0
1144
+ 1783906164.6285725,24372494336,26266976256,15144857600,0.0
1145
+ 1783906164.740886,24372428800,26267041792,15144857600,0.0
1146
+ 1783906164.8531694,24379662336,26259808256,15144857600,2.3
1147
+ 1783906164.9657855,24379203584,26260267008,15144857600,2.7
1148
+ 1783906165.0773911,24378634240,26260836352,15144857600,0.0
1149
+ 1783906165.1889522,24378241024,26261229568,15144857600,0.0
1150
+ 1783906165.2998435,24363614208,26275856384,15135027200,1.8
1151
+ 1783906165.4072886,24363405312,26276065280,15135027200,6.2
1152
+ 1783906165.5166261,24363175936,26276294656,15135027200,6.2
1153
+ 1783906165.626443,24362942464,26276528128,15135027200,6.2
1154
+ 1783906165.7356746,24362766336,26276704256,15135027200,6.2
1155
+ 1783906165.8455288,24375463936,26264006656,15135027200,6.2
1156
+ 1783906165.9550679,24374120448,26265350144,15135027200,8.0
1157
+ 1783906166.065931,24373805056,26265665536,15135027200,6.2
1158
+ 1783906166.1755095,24373551104,26265919488,15135027200,6.2
1159
+ 1783906166.2869186,24368406528,26271064064,15135027200,6.2
1160
+ 1783906166.3959687,24368152576,26271318016,15135027200,8.0
1161
+ 1783906166.5055757,24367898624,26271571968,15135027200,6.2
1162
+ 1783906166.6156352,24367644672,26271825920,15135027200,7.9
1163
+ 1783906166.7259424,24367407104,26272063488,15135027200,7.1
1164
+ 1783906166.835545,24374685696,26264784896,15135027200,7.1
1165
+ 1783906166.9438984,24369287168,26270183424,15135027200,8.8
1166
+ 1783906167.0537953,24368922624,26270547968,15135027200,7.3
1167
+ 1783906167.163663,24368676864,26270793728,15135027200,8.0
1168
+ 1783906167.2725816,24368451584,26271019008,15135027200,7.8
1169
+ 1783906167.3850985,24365588480,26273882112,15144857600,35.8
1170
+ 1783906167.4931023,24366198784,26273271808,15144857600,50.0
1171
+ 1783906167.60475,24367509504,26271961088,15144857600,8.9
1172
+ 1783906167.7173586,24368627712,26270842880,15144857600,0.0
1173
+ 1783906167.828491,24379142144,26260328448,15144857600,0.0
1174
+ 1783906167.9404397,24379097088,26260373504,15144857600,1.8
1175
+ 1783906168.0522509,24378863616,26260606976,15144857600,0.0
1176
+ 1783906168.163481,24378798080,26260672512,15144857600,0.0
1177
+ 1783906168.2750573,24378691584,26260779008,15144857600,2.3
1178
+ 1783906168.3865314,24374243328,26265227264,15144857600,0.0
1179
+ 1783906168.4981394,24363847680,26275622912,15135027200,1.8
1180
+ 1783906168.6084626,24363679744,26275790848,15135027200,6.2
1181
+ 1783906168.7200477,24363438080,26276032512,15135027200,6.2
1182
+ 1783906168.8314705,24375353344,26264117248,15135027200,8.0
1183
+ 1783906168.942823,24375099392,26264371200,15135027200,8.0
1184
+ 1783906169.0541859,24374214656,26265255936,15135027200,8.8
1185
+ 1783906169.165426,24373989376,26265481216,15135027200,7.9
1186
+ 1783906169.2762573,24373665792,26265804800,15135027200,6.2
1187
+ 1783906169.386971,24368463872,26271006720,15135027200,6.2
1188
+ 1783906169.4978948,24368205824,26271264768,15135027200,8.0
1189
+ 1783906169.6089284,24367886336,26271584256,15135027200,8.0
1190
+ 1783906169.7199593,24367632384,26271838208,15135027200,6.2
1191
+ 1783906169.8309445,24374849536,26264621056,15135027200,6.2
1192
+ 1783906169.9419315,24374640640,26264829952,15135027200,6.2
1193
+ 1783906170.0532014,24368840704,26270629888,15135027200,8.0
1194
+ 1783906170.1639707,24368586752,26270883840,15135027200,7.9
1195
+ 1783906170.275129,24368332800,26271137792,15135027200,5.6
1196
+ 1783906170.3865757,24363491328,26275979264,15135027200,6.2
1197
+ 1783906170.4974885,24363237376,26276233216,15135027200,6.2
1198
+ 1783906170.6084235,24365182976,26274287616,15144869888,43.0
1199
+ 1783906170.7172794,24365973504,26273497088,15144869888,43.8
1200
+ 1783906170.8303192,24367198208,26272272384,15144869888,0.0
1201
+ 1783906170.9419703,24377671680,26261798912,15144869888,0.0
1202
+ 1783906171.0534906,24377655296,26261815296,15144869888,0.9
1203
+ 1783906171.1653602,24377634816,26261835776,15144869888,2.3
1204
+ 1783906171.2770278,24377618432,26261852160,15144869888,2.7
1205
+ 1783906171.3886194,24373387264,26266083328,15144869888,0.0
1206
+ 1783906171.5004263,24373002240,26266468352,15144869888,0.0
1207
+ 1783906171.612603,24372432896,26267037696,15144869888,1.8
1208
+ 1783906171.723743,24362643456,26276827136,15135039488,2.7
1209
+ 1783906171.8343914,24393351168,26246119424,15135039488,24.0
1210
+ 1783906171.9349291,24452689920,26186780672,15135039488,37.4
1211
+ 1783906172.046703,24482652160,26156818432,15135039488,34.8
1212
+ 1783906172.16005,24478683136,26160787456,15135039488,18.8
1213
+ 1783906172.2794673,24499666944,26139803648,15135039488,46.1
1214
+ 1783906172.3906062,24599322624,26040147968,15135023104,42.0
1215
+ 1783906172.5000248,24653369344,25986101248,15135023104,37.7
1216
+ 1783906172.6114452,24656064512,25983406080,15135023104,35.7
1217
+ 1783906172.7220373,24654196736,25985273856,15135023104,36.3
1218
+ 1783906172.8237057,24658776064,25980694528,15135023104,55.8
1219
+ 1783906172.9336727,24658386944,25981083648,15135023104,50.9
1220
+ 1783906173.0430262,24654598144,25984872448,15135023104,40.7
1221
+ 1783906173.152866,24652713984,25986756608,15135023104,27.7
1222
+ 1783906173.2655947,24699777024,25939693568,15135023104,33.9
1223
+ 1783906173.3749444,24713003008,25926467584,15135023104,50.0
1224
+ 1783906173.4863138,24713240576,25926230016,15135023104,29.5
1225
+ 1783906173.597808,24713318400,25926152192,15135023104,30.4
1226
+ 1783906173.70821,24717758464,25921712128,15135023104,34.5
1227
+ 1783906173.8172402,24741707776,25897762816,15144853504,58.4
1228
+ 1783906173.9292676,24746647552,25892823040,15144853504,67.4
1229
+ 1783906174.0398817,24749953024,25889517568,15144853504,25.9
1230
+ 1783906174.1510334,24750379008,25889091584,15144853504,26.5
1231
+ 1783906174.2620435,24753008640,25886461952,15144853504,20.4
1232
+ 1783906174.3732336,24754524160,25884946432,15144853504,10.6
1233
+ 1783906174.4833128,24757833728,25881636864,15144853504,11.5
1234
+ 1783906174.593513,24759693312,25879777280,15144853504,11.6
1235
+ 1783906174.7035282,24765132800,25874337792,15144853504,8.9
1236
+ 1783906174.8187768,24776826880,25862643712,15144853504,8.6
1237
+ 1783906174.9280298,24766808064,25872662528,15135023104,9.2
1238
+ 1783906175.0380576,24765804544,25873666048,15135023104,12.2
1239
+ 1783906175.147697,24763564032,25875906560,15135023104,13.0
1240
+ 1783906175.2594137,24768172032,25871298560,15135023104,11.5
1241
+ 1783906175.3707216,24750694400,25888776192,15135023104,12.5
1242
+ 1783906175.4811654,24748027904,25891442688,15135023104,9.8
1243
+ 1783906175.592129,24743084032,25896386560,15135023104,11.6
1244
+ 1783906175.7049344,24742834176,25896636416,15135023104,12.5
1245
+ 1783906175.8185468,24748703744,25890766848,15135023104,10.7
1246
+ 1783906175.928382,24755425280,25884045312,15135023104,21.5
1247
+ 1783906176.0362816,24757817344,25881653248,15135023104,25.0
1248
+ 1783906176.1467752,24761356288,25878114304,15135023104,24.6
1249
+ 1783906176.254663,24717152256,25922318336,15135023104,19.5
1250
+ 1783906176.364604,24713445376,25926025216,15135023104,32.1
1251
+ 1783906176.4750865,24741085184,25898385408,15135023104,58.9
1252
+ 1783906176.5845609,24742232064,25897238528,15135023104,44.1
1253
+ 1783906176.6938307,24711278592,25928192000,15135023104,24.8
1254
+ 1783906176.8006113,24730652672,25908817920,15135023104,22.7
1255
+ 1783906176.9134796,24730984448,25908486144,15135023104,20.5
1256
+ 1783906177.0235107,24738263040,25901207552,15144869888,50.8
1257
+ 1783906177.1342604,24737890304,25901580288,15144869888,55.7
1258
+ 1783906177.2442644,24737435648,25902034944,15144869888,15.0
1259
+ 1783906177.3547177,24736280576,25903190016,15144869888,13.3
1260
+ 1783906177.4659712,24732487680,25906982912,15144869888,7.1
1261
+ 1783906177.578287,24730214400,25909256192,15144869888,0.0
1262
+ 1783906177.6901286,24729321472,25910149120,15144873984,1.8
1263
+ 1783906177.800554,24729214976,25910255616,15144873984,4.5
1264
+ 1783906177.9146037,24728772608,25910697984,15144873984,1.7
1265
+ 1783906178.0241954,24731631616,25907838976,15144873984,3.6
1266
+ 1783906178.1335597,24723009536,25916461056,15135043584,9.5
1267
+ 1783906178.250431,24722481152,25916989440,15135043584,7.5
1268
+ 1783906178.3631659,24721620992,25917849600,15135043584,12.5
1269
+ 1783906178.4750943,24721141760,25918328832,15135043584,12.3
1270
+ 1783906178.5873547,24721018880,25918451712,15135043584,10.5
1271
+ 1783906178.7016644,24736743424,25902727168,15135043584,12.1
1272
+ 1783906178.8179014,24736858112,25902612480,15135043584,8.0
1273
+ 1783906178.9294434,24737079296,25902391296,15135043584,10.4
1274
+ 1783906179.0406513,24737128448,25902342144,15135043584,9.6
1275
+ 1783906179.1519368,24737026048,25902444544,15135043584,9.7
1276
+ 1783906179.2638974,24736903168,25902567424,15135043584,7.1
1277
+ 1783906179.3748956,24736546816,25902923776,15135043584,6.2
1278
+ 1783906179.4867027,24736284672,25903185920,15135043584,8.9
1279
+ 1783906179.597057,24736284672,25903185920,15135043584,8.0
1280
+ 1783906179.7077982,24736276480,25903194112,15135043584,6.2
1281
+ 1783906179.8161974,24736153600,25903316992,15135043584,6.2
1282
+ 1783906179.9298592,24736587776,25902882816,15135043584,13.0
1283
+ 1783906180.0392833,24736636928,25902833664,15135043584,7.1
1284
+ 1783906180.1505003,24739364864,25900105728,15144144896,12.7
1285
+ 1783906180.2606227,24742772736,25896697856,15144919040,49.1
1286
+ 1783906180.3692296,24742809600,25896660992,15144919040,33.9
1287
+ 1783906180.4815583,24748838912,25890631680,15144919040,4.4
1288
+ 1783906180.5932715,24748097536,25891373056,15144919040,0.0
1289
+ 1783906180.7060788,24747872256,25891598336,15144919040,3.5
1290
+ 1783906180.8180459,24741359616,25898110976,15144919040,0.9
1291
+ 1783906180.9305263,24741289984,25898180608,15144919040,1.7
1292
+ 1783906181.035152,24744579072,25894891520,15144919040,3.7
1293
+ 1783906181.1419735,24744546304,25894924288,15144919040,0.9
1294
+ 1783906181.250348,24744112128,25895358464,15144919040,0.9
1295
+ 1783906181.3571317,24736665600,25902804992,15135088640,6.2
1296
+ 1783906181.4642599,24735420416,25904050176,15135088640,9.8
1297
+ 1783906181.5742905,24735420416,25904050176,15135088640,6.2
1298
+ 1783906181.6851883,24735354880,25904115712,15135088640,12.5
1299
+ 1783906181.801216,24735113216,25904357376,15135088640,8.9
1300
+ 1783906181.914028,24735035392,25904435200,15135088640,7.1
1301
+ 1783906182.0251796,24738836480,25900634112,15135088640,8.7
1302
+ 1783906182.135101,24738775040,25900695552,15135088640,8.0
1303
+ 1783906182.2467895,24735010816,25904459776,15135088640,6.2
1304
+ 1783906182.35049,24670773248,25968697344,15135088640,18.0
1305
+ 1783906182.4611223,24672268288,25967202304,15135088640,15.5
1306
+ 1783906182.5740104,24668909568,25970561024,15135088640,12.5
1307
+ 1783906182.678879,24667840512,25971630080,15135088640,16.2
1308
+ 1783906182.7851317,24668991488,25970479104,15135088640,5.5
1309
+ 1783906182.9015336,24667099136,25972371456,15135088640,10.9
1310
+ 1783906183.0156643,24673579008,25965891584,15135088640,6.2
1311
+ 1783906183.134207,24673275904,25966194688,15135088640,9.2
1312
+ 1783906183.246567,24666587136,25972883456,15135088640,6.7
1313
+ 1783906183.3507698,24665747456,25973723136,15135088640,8.0
1314
+ 1783906183.4634116,24680734720,25958735872,15144939520,47.6
1315
+ 1783906183.5739386,24680755200,25958715392,15144939520,39.3
1316
+ 1783906183.6854215,24680886272,25958584320,15144939520,0.0
1317
+ 1783906183.8011723,24659714048,25979756544,15144943616,0.0
1318
+ 1783906183.9160547,24658960384,25980510208,15144947712,3.1
1319
+ 1783906184.0277412,24658894848,25980575744,15144955904,4.4
1320
+ 1783906184.1398337,24656760832,25982709760,15144955904,1.8
1321
+ 1783906184.2514331,24654184448,25985286144,15144955904,0.0
1322
+ 1783906184.361211,24653127680,25986342912,15144960000,5.4
1323
+ 1783906184.4731488,24616054784,26023415808,15144960000,3.6
1324
+ 1783906184.5844753,24603529216,26035941376,15135129600,5.3
1325
+ 1783906184.6946108,24602513408,26036957184,15135129600,7.1
1326
+ 1783906184.801867,24588455936,26051014656,15135129600,9.9
1327
+ 1783906184.9168706,24587935744,26051534848,15135129600,9.4
1328
+ 1783906185.034237,24603410432,26036060160,15135129600,9.8
1329
+ 1783906185.1522205,24644124672,25995345920,15135129600,14.0
1330
+ 1783906185.2634487,24636071936,26003398656,15135129600,8.9
1331
+ 1783906185.3718674,24633602048,26005868544,15135129600,8.0
1332
+ 1783906185.483225,24626749440,26012721152,15135129600,6.2
1333
+ 1783906185.5900388,24625868800,26013601792,15135129600,8.0
1334
+ 1783906185.6978557,24626511872,26012958720,15135129600,7.1
1335
+ 1783906185.816,24622927872,26016542720,15135129600,8.0
1336
+ 1783906185.9326236,24623509504,26015961088,15135129600,7.0
1337
+ 1783906186.0378342,24560836608,26078633984,15135129600,13.5
1338
+ 1783906186.1487815,24585736192,26053734400,15135129600,9.8
1339
+ 1783906186.2596364,24585465856,26054004736,15135129600,7.5
1340
+ 1783906186.3708045,24578707456,26060763136,15135129600,11.6
1341
+ 1783906186.4825723,24588525568,26050945024,15135129600,10.7
1342
+ 1783906186.594233,24563118080,26076352512,15120629760,6.2
1343
+ 1783906186.7045197,24534761472,26104709120,15120629760,48.2
1344
+ 1783906186.8179176,24535552000,26103918592,15120629760,48.2
1345
+ 1783906186.9301875,24534806528,26104664064,15120637952,9.6
1346
+ 1783906187.0393443,24604868608,26034601984,15153307648,36.1
1347
+ 1783906187.1488326,24568741888,26070728704,15133376512,51.8
1348
+ 1783906187.2585566,24569819136,26069651456,15133376512,21.9
1349
+ 1783906187.3692508,24567898112,26071572480,15133376512,3.3
1350
+ 1783906187.481573,24561405952,26078064640,15133376512,4.4
1351
+ 1783906187.5931826,24550879232,26088591360,15133343744,7.1
1352
+ 1783906187.70397,24518705152,26120765440,15133343744,15.5
1353
+ 1783906187.8181257,23939190784,26700279808,14542467072,17.5
1354
+ 1783906187.9302378,20498477056,30140993536,11110006784,24.8
1355
+ 1783906188.0352852,18328039424,32311431168,8916385792,36.5
1356
+ 1783906188.145445,15745646592,34893824000,6336888832,24.1
1357
+ 1783906188.2560177,13923958784,36715511808,4485103616,53.5
1358
+ 1783906188.368719,11849805824,38789664768,2438283264,25.0
1359
+ 1783906188.4801261,9461444608,41178025984,1148534784,22.6
telemetry/system_bridge_int8_convrot.csv ADDED
@@ -0,0 +1,766 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ unix_time,system_ram_used_bytes,system_ram_available_bytes,comfy_process_tree_rss_bytes,system_cpu_percent
2
+ 1783906188.5878546,8288956416,42350514176,1732608,0.0
3
+ 1783906188.7060516,8318361600,42321108992,22495232,33.0
4
+ 1783906188.818358,8336842752,42302627840,38735872,20.5
5
+ 1783906188.919818,8350081024,42289389568,51580928,17.9
6
+ 1783906189.0309591,8361791488,42277679104,65073152,17.0
7
+ 1783906189.1413288,8358412288,42281058304,70758400,16.1
8
+ 1783906189.252704,8634175488,42005295104,314052608,17.0
9
+ 1783906189.3632674,8752054272,41887416320,419897344,17.9
10
+ 1783906189.4748106,8815468544,41824002048,470605824,17.0
11
+ 1783906189.5859685,8873205760,41766264832,499494912,26.2
12
+ 1783906189.6973853,8882847744,41756622848,510865408,18.5
13
+ 1783906189.8023727,8882458624,41757011968,521617408,27.1
14
+ 1783906189.9122205,8857747456,41781723136,531955712,24.6
15
+ 1783906190.0245817,8869699584,41769771008,533233664,12.2
16
+ 1783906190.1356041,8869568512,41769902080,533688320,8.8
17
+ 1783906190.2463372,8871194624,41768275968,544813056,8.0
18
+ 1783906190.3573859,8885047296,41754423296,555593728,6.2
19
+ 1783906190.4684086,8888389632,41751080960,563261440,9.7
20
+ 1783906190.5794332,8915443712,41724026880,581091328,6.2
21
+ 1783906190.6908894,8936497152,41702973440,593489920,13.4
22
+ 1783906190.8012712,8953217024,41686253568,606035968,12.5
23
+ 1783906190.913499,8953024512,41686446080,607588352,10.5
24
+ 1783906191.0244079,8976424960,41663045632,618577920,9.8
25
+ 1783906191.1351242,8977125376,41662345216,622972928,6.3
26
+ 1783906191.2467196,8953692160,41685778432,639840256,6.2
27
+ 1783906191.3577383,9057660928,41581809664,747917312,8.9
28
+ 1783906191.467968,9072697344,41566773248,757145600,7.1
29
+ 1783906191.5781486,9085214720,41554255872,768118784,7.1
30
+ 1783906191.6893723,9107972096,41531498496,789086208,13.3
31
+ 1783906191.7950447,9120378880,41519091712,797753344,14.3
32
+ 1783906191.914874,9126535168,41512935424,804487168,15.1
33
+ 1783906192.025318,9138626560,41500844032,805572608,14.8
34
+ 1783906192.1344476,9138593792,41500876800,806821888,6.3
35
+ 1783906192.2444034,9138978816,41500491776,807260160,6.2
36
+ 1783906192.356046,9136390144,41503080448,808312832,6.2
37
+ 1783906192.4662862,9140658176,41498812416,812990464,6.2
38
+ 1783906192.5767798,9121763328,41517707264,814149632,6.2
39
+ 1783906192.686838,9141383168,41498087424,815521792,8.0
40
+ 1783906192.8020494,9144975360,41494495232,816316416,6.2
41
+ 1783906192.914791,9154355200,41485115392,816885760,8.5
42
+ 1783906193.0276442,9121460224,41518010368,817709056,8.2
43
+ 1783906193.1381912,9126993920,41512476672,820711424,6.2
44
+ 1783906193.2486463,9134690304,41504780288,833081344,6.2
45
+ 1783906193.3587968,9155641344,41483829248,847261696,6.2
46
+ 1783906193.4697394,9155416064,41484054528,852561920,6.2
47
+ 1783906193.580499,9172619264,41466851328,857808896,6.2
48
+ 1783906193.6903696,9185804288,41453666304,873324544,8.0
49
+ 1783906193.8009605,9191411712,41448058880,883970048,6.2
50
+ 1783906193.9133003,9156997120,41482473472,898822144,10.6
51
+ 1783906194.0184572,9181372416,41458098176,904884224,16.2
52
+ 1783906194.1313157,9214316544,41425154048,911130624,19.3
53
+ 1783906194.2418594,9211973632,41427496960,916070400,28.8
54
+ 1783906194.351773,9293295616,41346174976,923369472,31.0
55
+ 1783906194.4642408,9339584512,41299886080,934293504,19.2
56
+ 1783906194.5728338,9359360000,41280110592,942608384,16.1
57
+ 1783906194.6830883,9328279552,41311191040,949702656,23.9
58
+ 1783906194.785344,9364172800,41275297792,958328832,15.6
59
+ 1783906194.8995378,9365884928,41273585664,960528384,18.5
60
+ 1783906195.0137298,9367523328,41271947264,962793472,9.1
61
+ 1783906195.1322188,9379217408,41260253184,968257536,8.0
62
+ 1783906195.2431943,9351397376,41288073216,980537344,28.0
63
+ 1783906195.3532217,9308495872,41330974720,997744640,57.9
64
+ 1783906195.4634304,9328742400,41310728192,1028657152,53.6
65
+ 1783906195.5744047,9346617344,41292853248,1054949376,31.2
66
+ 1783906195.6842585,9459781632,41179688960,1144406016,8.8
67
+ 1783906195.7861261,9610326016,41029144576,1278664704,6.2
68
+ 1783906195.900073,9617354752,41022115840,1278664704,20.3
69
+ 1783906196.0113368,9635627008,41003843584,1316126720,4.2
70
+ 1783906196.1220176,9940369408,40699101184,1619935232,9.8
71
+ 1783906196.2341428,10074161152,40565309440,1755799552,7.1
72
+ 1783906196.342909,10090549248,40548921344,1755811840,5.4
73
+ 1783906196.4536061,10099568640,40539901952,1755815936,4.4
74
+ 1783906196.5589764,10120413184,40519057408,1755820032,6.2
75
+ 1783906196.6704695,10129879040,40509591552,1756094464,11.6
76
+ 1783906196.7858403,10120339456,40519131136,1756172288,4.5
77
+ 1783906196.8953729,10117898240,40521572352,1756180480,7.1
78
+ 1783906197.0023458,10111569920,40527900672,1756450816,2.7
79
+ 1783906197.1185467,10135175168,40504295424,1756459008,6.8
80
+ 1783906197.2324178,10126823424,40512647168,1756536832,4.9
81
+ 1783906197.3436644,10135146496,40504324096,1756545024,8.0
82
+ 1783906197.450451,10134577152,40504893440,1757028352,9.7
83
+ 1783906197.5565498,10123161600,40516308992,1757032448,9.2
84
+ 1783906197.6664197,10137665536,40501805056,1757040640,6.0
85
+ 1783906197.7682679,10135293952,40504176640,1757118464,9.4
86
+ 1783906197.8828921,10149974016,40489496576,1757134848,6.0
87
+ 1783906197.993121,10137600000,40501870592,1757147136,5.0
88
+ 1783906198.1042047,10154536960,40484933632,1757155328,5.9
89
+ 1783906198.2141395,10153521152,40485949440,1757446144,6.2
90
+ 1783906198.326339,10150785024,40488685568,1757454336,5.4
91
+ 1783906198.437082,10155147264,40484323328,1757458432,11.5
92
+ 1783906198.5489666,10133000192,40506470400,1757474816,10.7
93
+ 1783906198.6611779,10144346112,40495124480,1757491200,10.7
94
+ 1783906198.7691834,10137178112,40502292480,1757503488,13.3
95
+ 1783906198.8845356,10147430400,40492040192,1757519872,11.9
96
+ 1783906198.9934003,10184581120,40454889472,1818988544,48.3
97
+ 1783906199.1035712,10374262784,40265207808,2019397632,61.1
98
+ 1783906199.2141979,10523836416,40115634176,2149888000,50.4
99
+ 1783906199.3257093,10524368896,40115101696,2149957632,10.6
100
+ 1783906199.4360447,10553511936,40085958656,2178580480,13.4
101
+ 1783906199.5475154,10563174400,40076296192,2188607488,11.6
102
+ 1783906199.6576757,10578485248,40060985344,2199814144,8.9
103
+ 1783906199.772483,10587492352,40051978240,2206547968,15.4
104
+ 1783906199.883115,10623881216,40015589376,2222407680,18.1
105
+ 1783906199.9923398,10607919104,40031551488,2223128576,14.0
106
+ 1783906200.1007695,10629607424,40009863168,2223128576,19.3
107
+ 1783906200.212081,10641305600,39998164992,2223144960,8.8
108
+ 1783906200.3219295,10630504448,40008966144,2223161344,14.3
109
+ 1783906200.4285111,10648641536,39990829056,2223165440,12.6
110
+ 1783906200.5471914,10644209664,39995260928,2223185920,11.2
111
+ 1783906200.6577926,10648023040,39991447552,2223374336,12.4
112
+ 1783906200.7591395,10647990272,39991480320,2223390720,15.0
113
+ 1783906200.8665981,10644590592,39994880000,2223394816,9.4
114
+ 1783906200.9764812,10643320832,39996149760,2223398912,15.7
115
+ 1783906201.086933,10645012480,39994458112,2223415296,5.2
116
+ 1783906201.1964264,10651353088,39988117504,2223427584,7.4
117
+ 1783906201.3060682,10650681344,39988789248,2223443968,5.2
118
+ 1783906201.4165437,10654572544,39984898048,2223443968,4.0
119
+ 1783906201.5264826,10642616320,39996854272,2223456256,5.4
120
+ 1783906201.637006,10658492416,39980978176,2223464448,2.7
121
+ 1783906201.748213,10639360000,40000110592,2223493120,9.7
122
+ 1783906201.8676555,10603057152,40036413440,2223501312,6.7
123
+ 1783906201.9774666,10615087104,40024383488,2223509504,7.3
124
+ 1783906202.0878065,10617589760,40021880832,2223525888,4.8
125
+ 1783906202.197935,10621284352,40018186240,2223542272,7.1
126
+ 1783906202.3080437,10624393216,40015077376,2223554560,5.4
127
+ 1783906202.4185565,10627674112,40011796480,2223558656,5.4
128
+ 1783906202.5283852,10623086592,40016384000,2223566848,5.4
129
+ 1783906202.638926,10644848640,39994621952,2223587328,12.4
130
+ 1783906202.7465057,10642362368,39997108224,2223607808,10.6
131
+ 1783906202.8653557,10641575936,39997894656,2223611904,7.1
132
+ 1783906202.9758453,10652569600,39986900992,2223620096,9.5
133
+ 1783906203.0854483,10657775616,39981694976,2223644672,7.9
134
+ 1783906203.196217,10635309056,40004161536,2223648768,8.0
135
+ 1783906203.3061993,10638839808,40000630784,2223673344,5.7
136
+ 1783906203.41617,10645094400,39994376192,2223681536,7.1
137
+ 1783906203.5263114,10654523392,39984947200,2223685632,6.2
138
+ 1783906203.6371708,10664353792,39975116800,2223702016,13.2
139
+ 1783906203.748119,10659311616,39980158976,2223722496,8.8
140
+ 1783906203.8678396,10669035520,39970435072,2223730688,9.2
141
+ 1783906203.977223,10685263872,39954206720,2223747072,3.6
142
+ 1783906204.0874364,10660179968,39979290624,2223751168,6.6
143
+ 1783906204.198326,10662850560,39976620032,2223759360,7.1
144
+ 1783906204.309337,10656763904,39982706688,2223779840,16.5
145
+ 1783906204.4194803,10671022080,39968448512,2223792128,6.2
146
+ 1783906204.5307853,10667806720,39971663872,2223800320,7.1
147
+ 1783906204.640581,10678906880,39960563712,2223800320,2.7
148
+ 1783906204.7545881,10678026240,39961444352,2223824896,8.9
149
+ 1783906204.868828,10653908992,39985561600,2223915008,15.3
150
+ 1783906204.9748528,10661953536,39977517056,2224070656,46.6
151
+ 1783906205.0829134,10661953536,39977517056,2224074752,37.5
152
+ 1783906205.1954553,10664665088,39974805504,2224074752,2.6
153
+ 1783906205.3071957,10674315264,39965155328,2224074752,4.8
154
+ 1783906205.417064,10674311168,39965159424,2224078848,0.9
155
+ 1783906205.5286834,10674282496,39965188096,2224078848,1.8
156
+ 1783906205.6398098,10667212800,39972257792,2214248448,3.5
157
+ 1783906205.7494652,10666577920,39972892672,2214248448,8.0
158
+ 1783906205.8666468,10666885120,39972585472,2214248448,7.8
159
+ 1783906205.9765105,10666840064,39972630528,2214248448,7.2
160
+ 1783906206.0871422,10666819584,39972651008,2214248448,6.4
161
+ 1783906206.1987407,10672103424,39967367168,2214248448,6.2
162
+ 1783906206.3094196,10658222080,39981248512,2214248448,6.2
163
+ 1783906206.4205213,10657910784,39981559808,2214248448,6.2
164
+ 1783906206.5307314,10665529344,39973941248,2224078848,18.8
165
+ 1783906206.639606,10666622976,39972847616,2224095232,47.3
166
+ 1783906206.7487407,10666520576,39972950016,2224095232,19.6
167
+ 1783906206.8676717,10666205184,39973265408,2224095232,1.7
168
+ 1783906206.977236,10665934848,39973535744,2224099328,4.4
169
+ 1783906207.0882926,10665607168,39973863424,2224099328,1.6
170
+ 1783906207.200133,10666823680,39972646912,2224099328,1.8
171
+ 1783906207.310393,10657562624,39981907968,2214268928,3.6
172
+ 1783906207.4186275,10656849920,39982620672,2214268928,7.1
173
+ 1783906207.5273104,10656698368,39982772224,2214268928,6.2
174
+ 1783906207.637748,10656280576,39983190016,2214268928,6.2
175
+ 1783906207.7473469,10656145408,39983325184,2214268928,8.0
176
+ 1783906207.8674483,10647277568,39992193024,2214268928,8.6
177
+ 1783906207.9771233,10647093248,39992377344,2214268928,7.1
178
+ 1783906208.0868444,10646810624,39992659968,2214268928,7.3
179
+ 1783906208.1965978,10665365504,39974105088,2224115712,43.0
180
+ 1783906208.3047678,10665365504,39974105088,2224115712,50.0
181
+ 1783906208.4147584,10665361408,39974109184,2224115712,8.5
182
+ 1783906208.5254185,10665361408,39974109184,2224123904,4.5
183
+ 1783906208.6366522,10665086976,39974383616,2224123904,1.8
184
+ 1783906208.7482536,10664792064,39974678528,2224123904,0.0
185
+ 1783906208.8673074,10657120256,39982350336,2224123904,2.6
186
+ 1783906208.9752257,10656784384,39982686208,2214293504,7.8
187
+ 1783906209.0840862,10656509952,39982960640,2214293504,7.3
188
+ 1783906209.1936655,10656976896,39982493696,2214293504,6.2
189
+ 1783906209.3032744,10656702464,39982768128,2214293504,10.3
190
+ 1783906209.4141963,10656251904,39983218688,2214293504,8.0
191
+ 1783906209.5255089,10655981568,39983489024,2214293504,7.2
192
+ 1783906209.6370761,10655219712,39984250880,2214293504,6.2
193
+ 1783906209.748607,10652360704,39987109888,2214293504,8.0
194
+ 1783906209.8673956,10655625216,39983845376,2224144384,52.1
195
+ 1783906209.9753616,10655645696,39983824896,2224144384,34.0
196
+ 1783906210.0871859,10655649792,39983820800,2224144384,3.9
197
+ 1783906210.1983008,10661384192,39978086400,2224144384,2.7
198
+ 1783906210.3096836,10661384192,39978086400,2224144384,0.0
199
+ 1783906210.4217958,10661384192,39978086400,2224144384,0.0
200
+ 1783906210.5317655,10655350784,39984119808,2214313984,1.8
201
+ 1783906210.6433218,10655076352,39984394240,2214313984,6.2
202
+ 1783906210.751366,10655236096,39984234496,2214313984,6.2
203
+ 1783906210.8674643,10646593536,39992877056,2214313984,9.6
204
+ 1783906210.9790552,10646474752,39992995840,2214313984,6.3
205
+ 1783906211.090507,10646192128,39993278464,2214313984,7.1
206
+ 1783906211.202187,10655842304,39983628288,2214313984,7.1
207
+ 1783906211.3136,10655547392,39983923200,2214313984,6.2
208
+ 1783906211.4263477,10663960576,39975510016,2224160768,25.7
209
+ 1783906211.5342724,10663530496,39975940096,2224168960,44.6
210
+ 1783906211.6462324,10663530496,39975940096,2224168960,18.8
211
+ 1783906211.751493,10664243200,39975227392,2224168960,0.0
212
+ 1783906211.8668215,10656677888,39982792704,2224168960,2.6
213
+ 1783906211.9769466,10657001472,39982469120,2224168960,0.9
214
+ 1783906212.0887637,10656727040,39982743552,2224168960,3.2
215
+ 1783906212.1992638,10657452032,39982018560,2214338560,4.5
216
+ 1783906212.307749,10657222656,39982247936,2214338560,6.2
217
+ 1783906212.4179194,10656935936,39982534656,2214338560,6.2
218
+ 1783906212.5270545,10656485376,39982985216,2214338560,6.2
219
+ 1783906212.6356626,10655772672,39983697920,2214338560,6.2
220
+ 1783906212.7453492,10653523968,39985946624,2214338560,6.2
221
+ 1783906212.8511531,10644684800,39994785792,2214338560,11.0
222
+ 1783906212.9607103,10644447232,39995023360,2214338560,7.1
223
+ 1783906213.0721433,10652868608,39986601984,2224181248,29.0
224
+ 1783906213.1811578,10663309312,39976161280,2224189440,48.2
225
+ 1783906213.29176,10663768064,39975702528,2224189440,14.2
226
+ 1783906213.4036598,10663768064,39975702528,2224189440,0.0
227
+ 1783906213.5147817,10663759872,39975710720,2224189440,0.0
228
+ 1783906213.6270895,10663743488,39975727104,2224189440,0.0
229
+ 1783906213.737642,10663960576,39975510016,2224193536,0.0
230
+ 1783906213.8493805,10656514048,39982956544,2214363136,7.1
231
+ 1783906213.9621558,10647678976,39991791616,2214363136,9.6
232
+ 1783906214.0717874,10647412736,39992057856,2214363136,7.2
233
+ 1783906214.1821425,10647171072,39992299520,2214363136,6.2
234
+ 1783906214.293739,10656002048,39983468544,2214363136,6.2
235
+ 1783906214.405375,10654396416,39985074176,2214363136,6.2
236
+ 1783906214.516475,10654019584,39985451008,2214363136,6.2
237
+ 1783906214.6279278,10653417472,39986053120,2214363136,8.0
238
+ 1783906214.7418776,10660020224,39979450368,2224209920,45.9
239
+ 1783906214.8492687,10660151296,39979319296,2224209920,41.7
240
+ 1783906214.9613743,10654793728,39984676864,2224209920,4.3
241
+ 1783906215.0709116,10654556160,39984914432,2224209920,0.9
242
+ 1783906215.182017,10654326784,39985143808,2224214016,1.6
243
+ 1783906215.2935655,10664677376,39974793216,2224214016,0.0
244
+ 1783906215.4051144,10657210368,39982260224,2214383616,2.7
245
+ 1783906215.5106072,10656960512,39982510080,2214383616,6.2
246
+ 1783906215.618639,10657083392,39982387200,2214383616,8.9
247
+ 1783906215.7346635,10655322112,39984148480,2214383616,6.2
248
+ 1783906215.839367,10654330880,39985139712,2214383616,8.0
249
+ 1783906215.9504845,10645700608,39993769984,2214383616,8.9
250
+ 1783906216.0631626,10645311488,39994159104,2214383616,6.2
251
+ 1783906216.1737826,10645192704,39994277888,2214383616,6.2
252
+ 1783906216.2796288,10653700096,39985770496,2213347328,6.2
253
+ 1783906216.3863697,10725728256,39913742336,2309664768,44.6
254
+ 1783906216.4985151,10739191808,39900278784,2323861504,50.0
255
+ 1783906216.6094017,10740543488,39898927104,2324443136,7.1
256
+ 1783906216.7199092,10780348416,39859122176,2368856064,5.4
257
+ 1783906216.833985,10864594944,39774875648,2425126912,32.1
258
+ 1783906216.944845,10845736960,39793733632,2405208064,56.6
259
+ 1783906217.0449548,10845888512,39793582080,2405208064,21.6
260
+ 1783906217.1505733,10831482880,39807987712,2405208064,8.9
261
+ 1783906217.26218,10850058240,39789412352,2417995776,29.2
262
+ 1783906217.3728855,10850058240,39789412352,2417995776,45.5
263
+ 1783906217.4833715,10850123776,39789346816,2417995776,27.4
264
+ 1783906217.595883,10850508800,39788961792,2417995776,0.0
265
+ 1783906217.695713,10850480128,39788990464,2417995776,1.0
266
+ 1783906217.8022509,10850942976,39788527616,2418003968,2.8
267
+ 1783906217.9025404,10849079296,39790391296,2418003968,3.6
268
+ 1783906218.0172179,10845274112,39794196480,2408173568,1.8
269
+ 1783906218.1261988,10844860416,39794610176,2408173568,11.6
270
+ 1783906218.2364945,10845220864,39794249728,2408173568,8.0
271
+ 1783906218.3473663,10844954624,39794515968,2408173568,6.2
272
+ 1783906218.4578485,10844454912,39795015680,2408173568,6.2
273
+ 1783906218.5582163,10844217344,39795253248,2408173568,6.2
274
+ 1783906218.6639895,10843856896,39795613696,2408173568,9.0
275
+ 1783906218.7678425,10838937600,39800532992,2408173568,8.3
276
+ 1783906218.8820236,10846986240,39792484352,2418061312,13.6
277
+ 1783906218.990933,10846109696,39793360896,2418069504,51.4
278
+ 1783906219.0992322,10846093312,39793377280,2418069504,34.6
279
+ 1783906219.21017,10846183424,39793287168,2418073600,0.9
280
+ 1783906219.3211584,10853068800,39786401792,2418073600,3.1
281
+ 1783906219.4319317,10853036032,39786434560,2418073600,5.4
282
+ 1783906219.542799,10852986880,39786483712,2418073600,0.0
283
+ 1783906219.6535013,10847711232,39791759360,2408243200,2.7
284
+ 1783906219.767235,10840281088,39799189504,2408243200,7.1
285
+ 1783906219.8818018,10839019520,39800451072,2408243200,8.5
286
+ 1783906219.9914732,10832146432,39807324160,2408243200,10.0
287
+ 1783906220.1003778,10832052224,39807418368,2408243200,6.4
288
+ 1783906220.2104564,10832125952,39807344640,2408243200,10.3
289
+ 1783906220.320831,10844958720,39794511872,2408243200,8.1
290
+ 1783906220.4304519,10844741632,39794728960,2408243200,9.5
291
+ 1783906220.5415545,10853089280,39786381312,2418085888,25.0
292
+ 1783906220.649869,10852712448,39786758144,2418089984,47.3
293
+ 1783906220.7528348,10852552704,39786917888,2418094080,24.7
294
+ 1783906220.8659775,10851872768,39787597824,2418098176,0.0
295
+ 1783906220.9773118,10844012544,39795458048,2418098176,5.3
296
+ 1783906221.0882623,10843783168,39795687424,2418098176,1.6
297
+ 1783906221.1983335,10843758592,39795712000,2418098176,0.9
298
+ 1783906221.3098803,10844626944,39794843648,2408267776,3.6
299
+ 1783906221.4204564,10844360704,39795109888,2408267776,6.2
300
+ 1783906221.5310338,10844041216,39795429376,2408267776,6.2
301
+ 1783906221.642059,10843774976,39795695616,2408267776,6.2
302
+ 1783906221.7541595,10844508160,39794962432,2408267776,7.1
303
+ 1783906221.8655367,10840002560,39799468032,2408267776,6.2
304
+ 1783906221.976997,10831388672,39808081920,2408267776,13.2
305
+ 1783906222.0787706,10830950400,39808520192,2408267776,5.5
306
+ 1783906222.1856809,10839838720,39799631872,2418122752,33.0
307
+ 1783906222.2949357,10852052992,39787417600,2418122752,43.8
308
+ 1783906222.406107,10852052992,39787417600,2418122752,13.4
309
+ 1783906222.5179572,10852118528,39787352064,2418122752,2.7
310
+ 1783906222.6329713,10852114432,39787356160,2418122752,1.7
311
+ 1783906222.7439551,10852253696,39787216896,2418122752,6.5
312
+ 1783906222.8508086,10851041280,39788429312,2418122752,1.0
313
+ 1783906222.96249,10834481152,39804989440,2408292352,8.8
314
+ 1783906223.0724583,10834206720,39805263872,2408292352,6.2
315
+ 1783906223.1837003,10834071552,39805399040,2408292352,8.8
316
+ 1783906223.2950253,10843144192,39796326400,2408292352,6.2
317
+ 1783906223.4062731,10842931200,39796539392,2408292352,6.2
318
+ 1783906223.5176995,10842652672,39796817920,2408292352,8.0
319
+ 1783906223.6288414,10842365952,39797104640,2408292352,9.6
320
+ 1783906223.7410634,10843066368,39796404224,2408292352,8.6
321
+ 1783906223.8515549,10848604160,39790866432,2418139136,41.5
322
+ 1783906223.962243,10843607040,39795863552,2418139136,45.4
323
+ 1783906224.0728068,10843987968,39795482624,2418143232,7.1
324
+ 1783906224.1829002,10844098560,39795372032,2418143232,1.8
325
+ 1783906224.2941186,10853412864,39786057728,2418143232,1.8
326
+ 1783906224.4054213,10853167104,39786303488,2418143232,0.0
327
+ 1783906224.5166378,10844721152,39794749440,2408312832,1.8
328
+ 1783906224.6265152,10843938816,39795531776,2408312832,6.2
329
+ 1783906224.7354856,10844520448,39794950144,2408312832,8.8
330
+ 1783906224.8508177,10841292800,39798177792,2408312832,7.1
331
+ 1783906224.9604788,10841026560,39798444032,2408312832,11.1
332
+ 1783906225.0734026,10833391616,39806078976,2408312832,6.6
333
+ 1783906225.1821494,10833276928,39806193664,2408312832,6.2
334
+ 1783906225.2926145,10844442624,39795027968,2408312832,6.2
335
+ 1783906225.4054668,10852761600,39786708992,2418155520,17.4
336
+ 1783906225.5164661,10852761600,39786708992,2418163712,46.9
337
+ 1783906225.6262746,10852761600,39786708992,2418163712,31.2
338
+ 1783906225.7388258,10852470784,39786999808,2418163712,0.0
339
+ 1783906225.8507721,10852212736,39787257856,2418163712,1.8
340
+ 1783906225.9610543,10851401728,39788068864,2418163712,3.4
341
+ 1783906226.0691154,10844069888,39795400704,2418167808,5.7
342
+ 1783906226.1799593,10845151232,39794319360,2408337408,4.2
343
+ 1783906226.2903578,10845245440,39794225152,2408337408,8.3
344
+ 1783906226.4010358,10845081600,39794388992,2408337408,8.0
345
+ 1783906226.5128512,10844831744,39794638848,2408337408,6.2
346
+ 1783906226.6154623,10844516352,39794954240,2408337408,6.2
347
+ 1783906226.7268562,10844192768,39795277824,2408337408,9.0
348
+ 1783906226.8356912,10845167616,39794302976,2408337408,7.6
349
+ 1783906226.9462802,10838589440,39800881152,2408337408,8.0
350
+ 1783906227.0579164,10839236608,39800233984,2418184192,23.2
351
+ 1783906227.1683304,10839384064,39800086528,2418192384,44.6
352
+ 1783906227.2782714,10839539712,39799930880,2418192384,26.5
353
+ 1783906227.3893447,10852892672,39786577920,2418196480,0.0
354
+ 1783906227.5001018,10852892672,39786577920,2418196480,0.0
355
+ 1783906227.6102517,10852892672,39786577920,2418196480,0.0
356
+ 1783906227.7136488,10852896768,39786573824,2418196480,2.7
357
+ 1783906227.817011,10856091648,39783378944,2408366080,13.4
358
+ 1783906227.9197955,10842103808,39797366784,2408366080,10.7
359
+ 1783906228.0363686,10834272256,39805198336,2408366080,9.8
360
+ 1783906228.1507695,10834223104,39805247488,2408366080,6.2
361
+ 1783906228.2598608,10834173952,39805296640,2408366080,6.2
362
+ 1783906228.3677387,10846007296,39793463296,2408366080,9.5
363
+ 1783906228.4788415,10845679616,39793790976,2408366080,7.6
364
+ 1783906228.5832953,10845540352,39793930240,2408366080,6.2
365
+ 1783906228.6936843,10852728832,39786741760,2418204672,23.3
366
+ 1783906228.8018708,10847637504,39791833088,2418204672,44.8
367
+ 1783906228.9143603,10849226752,39790243840,2418204672,38.9
368
+ 1783906229.0244334,10862841856,39776628736,2418208768,18.6
369
+ 1783906229.133606,10901610496,39737860096,2418212864,22.8
370
+ 1783906229.2458963,10933493760,39705976832,2418212864,9.8
371
+ 1783906229.3572373,10950492160,39688978432,2418212864,8.0
372
+ 1783906229.4666219,10916552704,39722917888,2408382464,17.9
373
+ 1783906229.5778801,10939592704,39699877888,2408382464,15.2
374
+ 1783906229.6867213,10945572864,39693897728,2408382464,11.6
375
+ 1783906229.80239,10947723264,39691747328,2408382464,7.1
376
+ 1783906229.912887,10947440640,39692029952,2408382464,7.0
377
+ 1783906230.023226,10949353472,39690117120,2408382464,16.7
378
+ 1783906230.1350365,10899722240,39739748352,2408382464,13.3
379
+ 1783906230.2440503,10899423232,39740047360,2408382464,13.2
380
+ 1783906230.3535318,10884325376,39755145216,2393821184,25.0
381
+ 1783906230.4643145,10884194304,39755276288,2393821184,50.0
382
+ 1783906230.5754542,10883788800,39755681792,2393829376,27.4
383
+ 1783906230.6880543,10916392960,39723077632,2426458112,20.4
384
+ 1783906230.8017385,10898894848,39740575744,2406526976,50.0
385
+ 1783906230.91269,10898583552,39740887040,2406526976,32.5
386
+ 1783906231.0242186,10900443136,39739027456,2406526976,7.1
387
+ 1783906231.1369004,10893873152,39745597440,2406526976,0.0
388
+ 1783906231.2489142,10902171648,39737298944,2418511872,21.4
389
+ 1783906231.3557174,10916913152,39722557440,2418511872,47.3
390
+ 1783906231.4650807,10916913152,39722557440,2418511872,31.2
391
+ 1783906231.5780945,10916884480,39722586112,2418511872,1.8
392
+ 1783906231.687547,10916884480,39722586112,2418511872,0.0
393
+ 1783906231.800443,10916499456,39722971136,2418511872,0.0
394
+ 1783906231.913423,10916265984,39723204608,2418511872,0.0
395
+ 1783906232.0244272,10910535680,39728934912,2408681472,10.3
396
+ 1783906232.1360714,10903420928,39736049664,2408681472,10.7
397
+ 1783906232.246603,10903277568,39736193024,2408681472,6.2
398
+ 1783906232.3571508,10903060480,39736410112,2408681472,6.2
399
+ 1783906232.4690313,10907623424,39731847168,2408681472,6.2
400
+ 1783906232.579373,10907332608,39732137984,2408681472,6.2
401
+ 1783906232.6902454,10906730496,39732740096,2408681472,6.2
402
+ 1783906232.8021939,10904961024,39734509568,2408681472,6.2
403
+ 1783906232.9145627,10912686080,39726784512,2418515968,19.8
404
+ 1783906233.0221915,10911977472,39727493120,2418515968,48.2
405
+ 1783906233.1340497,10905841664,39733628928,2418515968,20.0
406
+ 1783906233.2442994,10905878528,39733592064,2418515968,2.7
407
+ 1783906233.3554044,10943176704,39696293888,2418515968,8.0
408
+ 1783906233.4657195,10945368064,39694102528,2418515968,1.8
409
+ 1783906233.5751853,10945433600,39694036992,2418515968,0.0
410
+ 1783906233.6849382,10943070208,39696400384,2408685568,4.5
411
+ 1783906233.80176,10941501440,39697969152,2408685568,6.2
412
+ 1783906233.9137828,10941280256,39698190336,2408685568,9.6
413
+ 1783906234.024501,10941181952,39698288640,2408685568,8.5
414
+ 1783906234.1363525,10935382016,39704088576,2408685568,9.2
415
+ 1783906234.246222,10935398400,39704072192,2408685568,6.2
416
+ 1783906234.3568504,10912362496,39727108096,2408685568,6.2
417
+ 1783906234.4671726,10928189440,39711281152,2408685568,6.2
418
+ 1783906234.5836532,10929893376,39709577216,2418515968,30.4
419
+ 1783906234.6921928,10929893376,39709577216,2418515968,43.8
420
+ 1783906234.801014,10926305280,39713165312,2418515968,12.5
421
+ 1783906234.9152465,10925887488,39713583104,2418515968,3.9
422
+ 1783906235.0175762,10929274880,39710195712,2418515968,4.1
423
+ 1783906235.1293879,10925137920,39714332672,2418515968,1.8
424
+ 1783906235.2413528,10925490176,39713980416,2418515968,0.9
425
+ 1783906235.3511438,10924449792,39715020800,2408685568,8.5
426
+ 1783906235.4517033,10938925056,39700545536,2408685568,7.5
427
+ 1783906235.5631647,10938691584,39700779008,2408685568,8.0
428
+ 1783906235.666083,10938413056,39701057536,2408685568,6.2
429
+ 1783906235.7697692,10937987072,39701483520,2408685568,9.3
430
+ 1783906235.8843591,10932768768,39706701824,2408685568,8.5
431
+ 1783906235.9998608,10932248576,39707222016,2408685568,6.2
432
+ 1783906236.1119223,10922491904,39716978688,2408685568,10.6
433
+ 1783906236.2162697,10908114944,39731355648,2418515968,31.0
434
+ 1783906236.334929,10908094464,39731376128,2418515968,47.5
435
+ 1783906236.447644,10925236224,39714234368,2418515968,9.1
436
+ 1783906236.5525181,10925236224,39714234368,2418515968,2.1
437
+ 1783906236.663284,10925236224,39714234368,2418515968,0.0
438
+ 1783906236.7675927,10925309952,39714160640,2418515968,0.9
439
+ 1783906236.8835323,10924216320,39715254272,2418515968,0.9
440
+ 1783906236.992959,10914713600,39724756992,2408685568,7.9
441
+ 1783906237.1043334,10909298688,39730171904,2408685568,10.5
442
+ 1783906237.2133641,10896097280,39743373312,2408685568,6.2
443
+ 1783906237.3222804,10896019456,39743451136,2408685568,6.2
444
+ 1783906237.4332821,10906210304,39733260288,2408685568,6.2
445
+ 1783906237.5433846,10905542656,39733927936,2408685568,6.2
446
+ 1783906237.6532936,10904928256,39734542336,2408685568,6.2
447
+ 1783906237.7669022,10904936448,39734534144,2408685568,6.2
448
+ 1783906237.8826115,10901590016,39737880576,2418515968,44.6
449
+ 1783906237.9910533,10901184512,39738286080,2418515968,40.5
450
+ 1783906238.1033483,10907594752,39731875840,2418515968,10.0
451
+ 1783906238.2179196,10906841088,39732629504,2418515968,5.3
452
+ 1783906238.3348925,10906288128,39733182464,2418515968,0.0
453
+ 1783906238.4503932,10918318080,39721152512,2418515968,2.3
454
+ 1783906238.5656548,10908008448,39731462144,2408685568,1.8
455
+ 1783906238.683544,10907480064,39731990528,2408685568,9.3
456
+ 1783906238.8014126,10907156480,39732314112,2408685568,6.2
457
+ 1783906238.9142368,10903220224,39736250368,2408685568,7.9
458
+ 1783906239.0262666,10902790144,39736680448,2408685568,11.8
459
+ 1783906239.137279,10882396160,39757074432,2408685568,9.7
460
+ 1783906239.2472372,10882359296,39757111296,2408685568,6.2
461
+ 1783906239.3581955,10882306048,39757164544,2408685568,6.2
462
+ 1783906239.4697244,10895245312,39744225280,2418520064,25.9
463
+ 1783906239.5847044,10895245312,39744225280,2418520064,47.5
464
+ 1783906239.694873,10895245312,39744225280,2418520064,10.3
465
+ 1783906239.8003647,10912403456,39727067136,2418520064,23.6
466
+ 1783906239.919671,10907168768,39732301824,2418520064,0.0
467
+ 1783906240.0349214,10906443776,39733026816,2418520064,0.0
468
+ 1783906240.1493664,10910633984,39728836608,2418520064,7.6
469
+ 1783906240.2515295,10899603456,39739867136,2408689664,4.7
470
+ 1783906240.3680313,10897825792,39741644800,2408689664,10.9
471
+ 1783906240.4834833,10906316800,39733153792,2408689664,8.8
472
+ 1783906240.601521,10904330240,39735140352,2408689664,7.9
473
+ 1783906240.7121418,10903347200,39736123392,2408689664,7.1
474
+ 1783906240.8190727,10902626304,39736844288,2408689664,10.2
475
+ 1783906240.9309928,10898575360,39740895232,2408689664,7.1
476
+ 1783906241.0416768,10898268160,39741202432,2408689664,8.8
477
+ 1783906241.1523407,10904272896,39735197696,2418520064,50.0
478
+ 1783906241.2615056,10903887872,39735582720,2418520064,37.5
479
+ 1783906241.3716345,10903326720,39736143872,2418520064,0.0
480
+ 1783906241.4825337,10913726464,39725744128,2418520064,0.0
481
+ 1783906241.5935853,10912612352,39726858240,2418520064,1.8
482
+ 1783906241.7047384,10912190464,39727280128,2418520064,0.0
483
+ 1783906241.819951,10901811200,39737659392,2408689664,1.8
484
+ 1783906241.930069,10897543168,39741927424,2408689664,7.8
485
+ 1783906242.0330749,10897268736,39742201856,2408689664,7.4
486
+ 1783906242.136407,10889924608,39749545984,2408689664,13.3
487
+ 1783906242.2521782,10881044480,39758426112,2408689664,6.2
488
+ 1783906242.3700929,10883923968,39755546624,2408689664,17.8
489
+ 1783906242.4695835,10894573568,39744897024,2408689664,6.2
490
+ 1783906242.585165,10893434880,39746035712,2408689664,7.1
491
+ 1783906242.701899,10895142912,39744327680,2418524160,14.1
492
+ 1783906242.818018,10894991360,39744479232,2418524160,47.8
493
+ 1783906242.9345582,10896302080,39743168512,2418524160,30.2
494
+ 1783906243.0505352,10899410944,39740059648,2418524160,0.0
495
+ 1783906243.1628685,10892660736,39746809856,2418524160,3.5
496
+ 1783906243.2729235,10891849728,39747620864,2418524160,0.9
497
+ 1783906243.383425,10891153408,39748317184,2418524160,2.3
498
+ 1783906243.494439,10893991936,39745478656,2408693760,12.5
499
+ 1783906243.59873,10893717504,39745753088,2408693760,6.2
500
+ 1783906243.7137628,10893484032,39745986560,2408693760,9.3
501
+ 1783906243.819683,10892959744,39746510848,2408693760,9.0
502
+ 1783906243.9352643,10888470528,39751000064,2408693760,8.0
503
+ 1783906244.050985,10888433664,39751036928,2408693760,8.8
504
+ 1783906244.1516097,10909224960,39730245632,2408693760,30.1
505
+ 1783906244.2628977,10904297472,39735173120,2408693760,17.0
506
+ 1783906244.3697436,10925912064,39713558528,2393972736,41.6
507
+ 1783906244.479458,10958024704,39681445888,2393972736,63.5
508
+ 1783906244.5909302,10973433856,39666036736,2393972736,42.0
509
+ 1783906244.7024848,10977452032,39662018560,2425020416,27.7
510
+ 1783906244.8188634,10984325120,39655145472,2406666240,61.9
511
+ 1783906244.929729,10997465088,39642005504,2406666240,43.1
512
+ 1783906245.0393398,10999353344,39640117248,2406666240,5.5
513
+ 1783906245.152275,10999279616,39640190976,2408775680,18.1
514
+ 1783906245.261294,11010998272,39628472320,2418610176,52.2
515
+ 1783906245.3712702,10973011968,39666458624,2418610176,43.8
516
+ 1783906245.482368,10973175808,39666294784,2418610176,0.0
517
+ 1783906245.5920796,10972360704,39667109888,2418610176,0.0
518
+ 1783906245.7037766,10953814016,39685656576,2418610176,1.8
519
+ 1783906245.8199496,10953588736,39685881856,2418610176,2.6
520
+ 1783906245.9304855,10946347008,39693123584,2408779776,3.5
521
+ 1783906246.038285,10946072576,39693398016,2408779776,6.4
522
+ 1783906246.14757,10945363968,39694106624,2408779776,10.2
523
+ 1783906246.2572548,10937274368,39702196224,2408779776,11.1
524
+ 1783906246.3652916,10934419456,39705051136,2408779776,5.5
525
+ 1783906246.4729803,10941972480,39697498112,2408779776,6.2
526
+ 1783906246.5823927,10941767680,39697702912,2408779776,6.2
527
+ 1783906246.693548,10941317120,39698153472,2408779776,6.2
528
+ 1783906246.8023958,10919575552,39719895040,2418610176,7.1
529
+ 1783906246.9134297,10892574720,39746895872,2418610176,52.4
530
+ 1783906247.0236177,10890412032,39749058560,2418610176,38.8
531
+ 1783906247.1350374,10890616832,39748853760,2418610176,3.9
532
+ 1783906247.24706,10893295616,39746174976,2418610176,0.9
533
+ 1783906247.3576066,10893291520,39746179072,2418610176,0.0
534
+ 1783906247.4687421,10893295616,39746174976,2418610176,0.0
535
+ 1783906247.5798717,10891378688,39748091904,2408779776,2.7
536
+ 1783906247.6910112,10891264000,39748206592,2408779776,6.2
537
+ 1783906247.8013165,10891386880,39748083712,2408779776,6.2
538
+ 1783906247.914073,10892443648,39747026944,2408779776,8.6
539
+ 1783906248.0246956,10892324864,39747145728,2408779776,5.6
540
+ 1783906248.13584,10892099584,39747371008,2408779776,6.2
541
+ 1783906248.2469447,10891452416,39748018176,2408779776,13.4
542
+ 1783906248.357439,10888171520,39751299072,2408779776,8.0
543
+ 1783906248.4698718,10900533248,39738937344,2418610176,18.8
544
+ 1783906248.57674,10900529152,39738941440,2418610176,44.6
545
+ 1783906248.6869643,10900594688,39738875904,2418536448,18.8
546
+ 1783906248.8008745,10900852736,39738617856,2418536448,0.0
547
+ 1783906248.9134607,10901393408,39738077184,2418536448,2.6
548
+ 1783906249.02586,10901286912,39738183680,2418536448,4.0
549
+ 1783906249.135515,10901016576,39738454016,2418536448,0.0
550
+ 1783906249.2477038,10890928128,39748542464,2408706048,4.5
551
+ 1783906249.355973,10886787072,39752683520,2408706048,6.2
552
+ 1783906249.4685328,10895544320,39743926272,2408706048,8.8
553
+ 1783906249.57891,10895220736,39744249856,2408706048,6.2
554
+ 1783906249.6897624,10894987264,39744483328,2408706048,6.2
555
+ 1783906249.8026001,10894295040,39745175552,2408706048,7.1
556
+ 1783906249.913528,10894258176,39745212416,2408706048,8.4
557
+ 1783906250.0192778,10895773696,39743696896,2408706048,6.7
558
+ 1783906250.1280744,10903121920,39736348672,2418536448,30.4
559
+ 1783906250.2382402,10899263488,39740207104,2418536448,47.3
560
+ 1783906250.347736,10899255296,39740215296,2418536448,12.5
561
+ 1783906250.4587405,10898526208,39740944384,2418536448,0.0
562
+ 1783906250.5692718,10904416256,39735054336,2418536448,0.0
563
+ 1783906250.6807256,10904223744,39735246848,2418536448,6.3
564
+ 1783906250.786292,10903855104,39735615488,2418536448,2.1
565
+ 1783906250.898983,10897252352,39742218240,2408706048,6.0
566
+ 1783906251.010422,10897252352,39742218240,2408706048,8.0
567
+ 1783906251.120842,10896949248,39742521344,2408706048,6.2
568
+ 1783906251.2330477,10890854400,39748616192,2408706048,8.0
569
+ 1783906251.343672,10890711040,39748759552,2408706048,7.1
570
+ 1783906251.4546852,10887020544,39752450048,2408706048,6.2
571
+ 1783906251.5652318,10896707584,39742763008,2408706048,6.2
572
+ 1783906251.6763136,10896429056,39743041536,2408706048,6.2
573
+ 1783906251.7868345,10904993792,39734476800,2418536448,35.7
574
+ 1783906251.8979104,10904993792,39734476800,2418536448,47.1
575
+ 1783906252.009432,10905522176,39733948416,2418536448,4.2
576
+ 1783906252.1201432,10905497600,39733972992,2418536448,0.0
577
+ 1783906252.2328808,10899664896,39739805696,2418536448,0.9
578
+ 1783906252.343095,10899259392,39740211200,2418536448,5.2
579
+ 1783906252.4545949,10897276928,39742193664,2408706048,2.7
580
+ 1783906252.5646143,10897022976,39742447616,2408706048,6.2
581
+ 1783906252.673959,10896347136,39743123456,2408706048,6.2
582
+ 1783906252.7856343,10896334848,39743135744,2408706048,6.2
583
+ 1783906252.8966248,10896044032,39743426560,2408706048,6.2
584
+ 1783906253.0066824,10897154048,39742316544,2408706048,8.6
585
+ 1783906253.116608,10896879616,39742590976,2408706048,7.9
586
+ 1783906253.2281127,10890571776,39748898816,2408706048,10.6
587
+ 1783906253.3379433,10899185664,39740284928,2418536448,14.2
588
+ 1783906253.450123,10899017728,39740452864,2418536448,46.4
589
+ 1783906253.5597575,10903355392,39736115200,2418536448,31.2
590
+ 1783906253.6708546,10903011328,39736459264,2418536448,0.0
591
+ 1783906253.785353,10902888448,39736582144,2418536448,0.0
592
+ 1783906253.897917,10902564864,39736905728,2418536448,1.7
593
+ 1783906254.0100555,10905300992,39734169600,2418536448,4.0
594
+ 1783906254.1184888,10896052224,39743418368,2408706048,2.7
595
+ 1783906254.229748,10886914048,39752556544,2408706048,9.6
596
+ 1783906254.3380988,10886647808,39752822784,2408706048,6.2
597
+ 1783906254.448224,10884825088,39754645504,2408706048,6.2
598
+ 1783906254.5577402,10894880768,39744589824,2408706048,8.0
599
+ 1783906254.6663628,10894548992,39744921600,2408706048,6.2
600
+ 1783906254.7696738,10893307904,39746162688,2408706048,6.2
601
+ 1783906254.8845236,10893074432,39746396160,2408706048,7.8
602
+ 1783906254.9957728,10903490560,39735980032,2418536448,18.8
603
+ 1783906255.1045194,10903306240,39736164352,2418536448,44.6
604
+ 1783906255.2184064,10902999040,39736471552,2418536448,25.9
605
+ 1783906255.329604,10895425536,39744045056,2418536448,0.9
606
+ 1783906255.4315693,10895175680,39744294912,2418536448,1.8
607
+ 1783906255.5357885,10903597056,39735873536,2418536448,0.0
608
+ 1783906255.6402698,10904625152,39734845440,2418536448,2.7
609
+ 1783906255.749299,10898198528,39741272064,2408706048,1.8
610
+ 1783906255.8671038,10897911808,39741558784,2408706048,7.8
611
+ 1783906255.9694502,10898329600,39741140992,2408706048,7.3
612
+ 1783906256.0795774,10897813504,39741657088,2408706048,6.2
613
+ 1783906256.1960402,10897555456,39741915136,2408706048,8.5
614
+ 1783906256.3044946,10890747904,39748722688,2408706048,12.9
615
+ 1783906256.4149654,10891468800,39748001792,2408706048,8.8
616
+ 1783906256.5267334,10899030016,39740440576,2408706048,10.6
617
+ 1783906256.6326394,10906300416,39733170176,2418540544,27.4
618
+ 1783906256.7440174,10906607616,39732862976,2418540544,45.8
619
+ 1783906256.853744,10906791936,39732678656,2418540544,23.0
620
+ 1783906256.968305,10908020736,39731449856,2418540544,0.0
621
+ 1783906257.0819492,10908000256,39731470336,2418540544,0.0
622
+ 1783906257.1928818,10907959296,39731511296,2418540544,0.0
623
+ 1783906257.3044848,10900377600,39739092992,2418540544,4.3
624
+ 1783906257.4146223,10899750912,39739719680,2408710144,7.1
625
+ 1783906257.526203,10899488768,39739981824,2408710144,5.6
626
+ 1783906257.6367483,10895712256,39743758336,2408710144,6.2
627
+ 1783906257.7478306,10895454208,39744016384,2408710144,6.2
628
+ 1783906257.8518817,10895085568,39744385024,2408710144,8.1
629
+ 1783906257.9625356,10894819328,39744651264,2408710144,7.1
630
+ 1783906258.0714712,10898522112,39740948480,2408710144,9.8
631
+ 1783906258.1815329,10898108416,39741362176,2408710144,6.2
632
+ 1783906258.2968621,10874232832,39765237760,2393989120,28.9
633
+ 1783906258.404241,10873896960,39765573632,2393989120,50.4
634
+ 1783906258.5149567,10880397312,39759073280,2393997312,27.4
635
+ 1783906258.6249642,10910736384,39728734208,2426556416,19.5
636
+ 1783906258.733956,10903154688,39736315904,2406625280,50.0
637
+ 1783906258.8509135,10902163456,39737307136,2406625280,38.6
638
+ 1783906258.9527483,10901913600,39737556992,2406625280,0.0
639
+ 1783906259.0662436,10888466432,39751004160,2406625280,4.5
640
+ 1783906259.1762276,10932850688,39706619904,2418552832,57.5
641
+ 1783906259.2830555,10952265728,39687204864,2418552832,58.0
642
+ 1783906259.3975139,10950029312,39689441280,2418552832,18.6
643
+ 1783906259.498985,10929360896,39710109696,2418552832,9.3
644
+ 1783906259.610983,10953003008,39686467584,2418552832,14.3
645
+ 1783906259.7179139,10959486976,39679983616,2418552832,8.0
646
+ 1783906259.8345463,10953883648,39685586944,2418552832,2.6
647
+ 1783906259.9457493,10954305536,39685165056,2408722432,7.0
648
+ 1783906260.0554698,10947407872,39692062720,2408722432,13.4
649
+ 1783906260.165629,10895052800,39744417792,2408722432,12.9
650
+ 1783906260.2761533,10908971008,39730499584,2408722432,11.6
651
+ 1783906260.386951,10908495872,39730974720,2408722432,8.0
652
+ 1783906260.4973936,10908188672,39731281920,2408722432,6.2
653
+ 1783906260.6092439,10905739264,39733731328,2408722432,8.0
654
+ 1783906260.7199807,10902249472,39737221120,2408722432,6.2
655
+ 1783906260.8358552,10906566656,39732903936,2418552832,41.0
656
+ 1783906260.942734,10903388160,39736082432,2418552832,41.2
657
+ 1783906261.0533805,10902765568,39736705024,2418552832,7.1
658
+ 1783906261.1652498,10902773760,39736696832,2418552832,4.7
659
+ 1783906261.2762942,10893635584,39745835008,2418552832,4.5
660
+ 1783906261.3868904,10893291520,39746179072,2418552832,0.0
661
+ 1783906261.4978383,10903261184,39736209408,2418552832,1.8
662
+ 1783906261.6094737,10891694080,39747776512,2408722432,7.1
663
+ 1783906261.7200394,10891337728,39748132864,2408722432,7.1
664
+ 1783906261.8355987,10891034624,39748435968,2408722432,8.6
665
+ 1783906261.9455936,10890739712,39748730880,2408722432,8.0
666
+ 1783906262.0561507,10891673600,39747796992,2408722432,11.2
667
+ 1783906262.1655948,10889785344,39749685248,2408722432,10.6
668
+ 1783906262.2729735,10888155136,39751315456,2408722432,11.9
669
+ 1783906262.3840203,10880061440,39759409152,2408722432,6.5
670
+ 1783906262.4942982,10888359936,39751110656,2418552832,49.1
671
+ 1783906262.6042023,10899083264,39740387328,2418552832,45.6
672
+ 1783906262.7144454,10898939904,39740530688,2418552832,0.0
673
+ 1783906262.8183002,10897866752,39741603840,2418552832,2.1
674
+ 1783906262.931104,10897440768,39742029824,2418552832,2.3
675
+ 1783906263.0422847,10898714624,39740755968,2418552832,0.9
676
+ 1783906263.1544483,10889474048,39749996544,2408722432,1.8
677
+ 1783906263.2644994,10889207808,39750262784,2408722432,6.2
678
+ 1783906263.3751724,10879909888,39759560704,2408722432,9.7
679
+ 1783906263.4848022,10870566912,39768903680,2408722432,8.8
680
+ 1783906263.5999436,10860466176,39779004416,2408722432,11.5
681
+ 1783906263.709685,10860277760,39779192832,2408722432,11.1
682
+ 1783906263.8185537,10851160064,39788310528,2408722432,8.5
683
+ 1783906263.9300888,10850914304,39788556288,2408722432,7.8
684
+ 1783906264.0346751,10854006784,39785463808,2418552832,19.3
685
+ 1783906264.1445613,10853740544,39785730048,2418552832,46.4
686
+ 1783906264.253792,10853728256,39785742336,2418552832,31.9
687
+ 1783906264.3559575,10853974016,39785496576,2418552832,7.1
688
+ 1783906264.47112,10853888000,39785582592,2418552832,2.7
689
+ 1783906264.5820305,10854494208,39784976384,2418552832,3.6
690
+ 1783906264.6924877,10852462592,39787008000,2418552832,7.1
691
+ 1783906264.8019857,10841505792,39797964800,2408722432,1.8
692
+ 1783906264.915454,10840145920,39799324672,2408722432,7.0
693
+ 1783906265.0265322,10841214976,39798255616,2408722432,8.9
694
+ 1783906265.1358666,10840948736,39798521856,2408722432,6.2
695
+ 1783906265.2458189,10840666112,39798804480,2408722432,6.2
696
+ 1783906265.3574564,10840354816,39799115776,2408722432,8.0
697
+ 1783906265.4673812,10840178688,39799291904,2408722432,6.2
698
+ 1783906265.577782,10841120768,39798349824,2408722432,8.0
699
+ 1783906265.688382,10843787264,39795683328,2418552832,18.8
700
+ 1783906265.8019352,10844172288,39795298304,2418552832,45.5
701
+ 1783906265.9120936,10844512256,39794958336,2418552832,33.3
702
+ 1783906266.0227206,10856792064,39782678528,2418552832,62.5
703
+ 1783906266.1327643,10865553408,39773917184,2418552832,25.5
704
+ 1783906266.2436242,10865446912,39774023680,2418552832,2.4
705
+ 1783906266.3538735,10865586176,39773884416,2418552832,1.8
706
+ 1783906266.4640303,10862817280,39776653312,2408722432,3.6
707
+ 1783906266.5731552,10864328704,39775141888,2408722432,6.2
708
+ 1783906266.6828544,10863194112,39776276480,2408722432,7.1
709
+ 1783906266.786763,10863046656,39776423936,2408722432,8.2
710
+ 1783906266.899884,10859827200,39779643392,2408722432,7.8
711
+ 1783906267.0089319,10859307008,39780163584,2408722432,8.8
712
+ 1783906267.120445,10863226880,39776243712,2408722432,16.1
713
+ 1783906267.2299252,10894094336,39745376256,2408722432,37.2
714
+ 1783906267.339908,10915954688,39723515904,2418552832,33.9
715
+ 1783906267.4497,10908819456,39730651136,2418552832,51.8
716
+ 1783906267.5600069,10909999104,39729471488,2418552832,19.6
717
+ 1783906267.670123,10910240768,39729229824,2418552832,0.9
718
+ 1783906267.786296,10906554368,39732916224,2418552832,3.5
719
+ 1783906267.8992558,10902462464,39737008128,2418552832,4.3
720
+ 1783906268.0099323,10902188032,39737282560,2418552832,3.2
721
+ 1783906268.1216035,10893238272,39746232320,2408722432,4.5
722
+ 1783906268.232399,10893099008,39746371584,2408722432,6.2
723
+ 1783906268.3435047,10892804096,39746666496,2408722432,8.0
724
+ 1783906268.4544914,10892591104,39746879488,2408722432,6.2
725
+ 1783906268.5656083,10892300288,39747170304,2408722432,6.2
726
+ 1783906268.676931,10893107200,39746363392,2408722432,6.2
727
+ 1783906268.7864914,10888425472,39751045120,2408722432,6.2
728
+ 1783906268.900124,10887942144,39751528448,2408722432,8.5
729
+ 1783906269.010294,10896297984,39743172608,2418552832,44.2
730
+ 1783906269.1204414,10898960384,39740510208,2418552832,43.8
731
+ 1783906269.231507,10898837504,39740633088,2418552832,0.0
732
+ 1783906269.3418765,10898784256,39740686336,2418552832,1.8
733
+ 1783906269.4529011,10898731008,39740739584,2418552832,2.7
734
+ 1783906269.5642068,10898456576,39741014016,2418552832,1.8
735
+ 1783906269.6756933,10897379328,39742091264,2415472640,0.9
736
+ 1783906269.786762,10889818112,39749652480,2408722432,6.2
737
+ 1783906269.8989172,10889539584,39749931008,2408722432,7.8
738
+ 1783906270.0104916,10888994816,39750475776,2408722432,6.4
739
+ 1783906270.121641,10889490432,39749980160,2408722432,6.2
740
+ 1783906270.2324145,10889326592,39750144000,2408722432,6.2
741
+ 1783906270.343023,10889175040,39750295552,2408722432,6.2
742
+ 1783906270.4544256,10888912896,39750557696,2408722432,6.2
743
+ 1783906270.5651467,10897199104,39742271488,2418552832,7.1
744
+ 1783906270.6747441,10897760256,39741710336,2418552832,46.9
745
+ 1783906270.786866,10896891904,39742578688,2418552832,39.3
746
+ 1783906270.8980706,10896588800,39742881792,2418552832,0.9
747
+ 1783906271.0096893,10896150528,39743320064,2418552832,6.5
748
+ 1783906271.119879,10897399808,39742070784,2418552832,2.7
749
+ 1783906271.2318547,10897133568,39742337024,2418552832,0.0
750
+ 1783906271.3427632,10887913472,39751557120,2408722432,1.8
751
+ 1783906271.453183,10887647232,39751823360,2408722432,6.2
752
+ 1783906271.5629964,10887376896,39752093696,2408722432,6.2
753
+ 1783906271.6734176,10887585792,39751884800,2408722432,8.0
754
+ 1783906271.7863414,10884726784,39754743808,2408722432,7.1
755
+ 1783906271.896963,10884460544,39755010048,2408722432,7.1
756
+ 1783906272.0078382,10884026368,39755444224,2408722432,8.7
757
+ 1783906272.118073,10885246976,39754223616,2408722432,7.3
758
+ 1783906272.2291415,10774441984,39865028608,2394013696,17.5
759
+ 1783906272.3372905,10774167552,39865303040,2394013696,50.9
760
+ 1783906272.4461465,10773843968,39865626624,2394021888,41.6
761
+ 1783906272.5554419,10773577728,39865892864,2394021888,7.6
762
+ 1783906272.6661499,10797658112,39841812480,2406649856,53.8
763
+ 1783906272.7718797,10794070016,39845400576,2406649856,54.5
764
+ 1783906272.8845959,10794205184,39845265408,2406649856,6.5
765
+ 1783906272.996503,10750369792,39889100800,2406649856,0.9
766
+ 1783906273.1082356,10143342592,40496128000,1815973888,8.0
telemetry/system_gguf_q4_k_m.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/system_gguf_q8_0.csv ADDED
The diff for this file is too large to render. See raw diff
 
telemetry/system_int4_convrot.csv ADDED
The diff for this file is too large to render. See raw diff
 
validation/completion_audit.json CHANGED
@@ -20,19 +20,22 @@
20
  "format_counts": {
21
  "bf16": 30,
22
  "fp8_scaled": 30,
 
 
 
23
  "int8_convrot": 30,
24
  "mxfp8": 30,
25
  "nvfp4": 30
26
  },
27
  "metric_tables_checked": {
28
- "image_advanced.csv": 150,
29
- "image_core.csv": 150,
30
- "latency_components.csv": 150,
31
- "performance_runs.csv": 150,
32
- "trajectory.csv": 1920,
33
- "weight_parameters_all.csv": 1720
34
  },
35
  "noise_groups": 30,
36
  "passed": true,
37
- "scored_runs": 150
38
  }
 
20
  "format_counts": {
21
  "bf16": 30,
22
  "fp8_scaled": 30,
23
+ "gguf_q4_k_m": 30,
24
+ "gguf_q8_0": 30,
25
+ "int4_convrot": 30,
26
  "int8_convrot": 30,
27
  "mxfp8": 30,
28
  "nvfp4": 30
29
  },
30
  "metric_tables_checked": {
31
+ "image_advanced.csv": 240,
32
+ "image_core.csv": 240,
33
+ "latency_components.csv": 240,
34
+ "performance_runs.csv": 240,
35
+ "trajectory.csv": 3360,
36
+ "weight_parameters_all.csv": 3010
37
  },
38
  "noise_groups": 30,
39
  "passed": true,
40
+ "scored_runs": 240
41
  }
validation/repeatability.json CHANGED
@@ -14,6 +14,27 @@
14
  "cc1e9dfae37e5a128f1d1e548a7db477ee191748c0679d876c528a162325e67c"
15
  ]
16
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  "int8_convrot": {
18
  "bit_exact": true,
19
  "runs": 3,
 
14
  "cc1e9dfae37e5a128f1d1e548a7db477ee191748c0679d876c528a162325e67c"
15
  ]
16
  },
17
+ "gguf_q4_k_m": {
18
+ "bit_exact": true,
19
+ "runs": 3,
20
+ "unique_image_hashes": [
21
+ "3a1f2fb4de171cc1ddc48da771a36d29b3d2576d9539574306a67787fbc91d21"
22
+ ]
23
+ },
24
+ "gguf_q8_0": {
25
+ "bit_exact": true,
26
+ "runs": 3,
27
+ "unique_image_hashes": [
28
+ "11aae835e6988eb8d4111bd5f56cb939c3aae2c88ba782d99f6ecbe5dcebcb52"
29
+ ]
30
+ },
31
+ "int4_convrot": {
32
+ "bit_exact": true,
33
+ "runs": 3,
34
+ "unique_image_hashes": [
35
+ "c332c0c2f98caafbed82cfcf3dad36e6a76a774b67cd5d1d43306b344e10cf9e"
36
+ ]
37
+ },
38
  "int8_convrot": {
39
  "bit_exact": true,
40
  "runs": 3,